@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap");

:root {
  --background: #080808;
  --surface: #0a0a0a;
  --surface-2: #0d0d0d;
  --card: #111111;
  --card-soft: #151515;
  --foreground: #f0ede8;
  --muted: rgba(240, 237, 232, 0.5);
  --faint: rgba(240, 237, 232, 0.28);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.22);
  --accent: #f0ede8;
  --nav-top: 0px;
  --container: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

body.has-announcement {
  --nav-top: 38px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

::selection {
  background: rgba(240, 237, 232, 0.22);
}

.announcement {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 70;
  height: 38px;
  border-bottom: 1px solid var(--border);
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(16px);
}

.announcement__inner {
  width: min(var(--container), calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(240, 237, 232, 0.72);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

.announcement__accent {
  color: var(--accent);
  font-weight: 700;
  flex: 0 0 auto;
}

[data-announcement-text] {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  position: fixed;
  top: var(--nav-top);
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  transition: top 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.site-nav.is-scrolled,
.nav-open .site-nav {
  background: rgba(8, 8, 8, 0.78);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.site-nav__brand,
.site-footer__brand {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  letter-spacing: 0.25em;
  color: var(--foreground);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav__links a {
  color: rgba(240, 237, 232, 0.5);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.25s var(--ease);
}

.site-nav__links a:hover,
.site-nav__links a.is-active {
  color: var(--foreground);
}

.site-nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.site-nav__toggle span {
  width: 17px;
  height: 1px;
  background: currentColor;
  transition: transform 0.25s var(--ease);
}

.nav-open .site-nav__toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-open .site-nav__toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: max(600px, 100dvh);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: calc(112px + var(--nav-top)) 24px 84px;
  background: var(--background);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 190px;
  background: linear-gradient(to top, var(--background), transparent);
  pointer-events: none;
}

.hero__dots {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.45) 1px, transparent 1.7px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 0 45%, transparent 82%);
}

.hero__accent {
  position: absolute;
  fill: none;
  stroke: rgba(255, 255, 255, 0.55);
  stroke-width: 0.5;
  opacity: 0.1;
}

.hero__accent--corner {
  top: 0;
  left: 0;
  width: 260px;
  height: 260px;
}

.hero__accent--geometry {
  right: -8px;
  bottom: -8px;
  width: min(390px, 70vw);
  height: min(390px, 70vw);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: calc(100vw - 48px);
  max-width: 760px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.hero__wordmark span {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(240, 237, 232, 0.3);
}

.hero__wordmark strong {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero__subtitle,
.eyebrow {
  margin: 0;
  color: rgba(240, 237, 232, 0.42);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero__subtitle {
  margin-bottom: 36px;
  letter-spacing: 0.4em;
}

.hero__text {
  width: min(580px, 100%);
  margin: 0 auto 46px;
  color: rgba(240, 237, 232, 0.62);
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 300;
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button,
.icon-button {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--foreground);
  transition: color 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 13px 28px;
  font-size: 11px;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.button svg,
.icon-button svg,
.contact-link svg,
.site-footer__socials svg,
.modal__close svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button--primary {
  border-color: rgba(240, 237, 232, 0.6);
}

.button--primary:hover,
.button--send:hover {
  background: var(--foreground);
  color: var(--background);
  border-color: var(--foreground);
}

.button--ghost {
  color: rgba(240, 237, 232, 0.5);
}

.button--ghost:hover {
  color: var(--foreground);
  border-color: rgba(240, 237, 232, 0.6);
}

.button:active,
.icon-button:active,
.gallery-card:active,
.project-card:active {
  transform: translateY(1px) scale(0.99);
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  color: rgba(240, 237, 232, 0.24);
  transform: translateX(-50%);
  animation: scrollCue 2s var(--ease) infinite;
}

.scroll-cue svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes scrollCue {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 8px);
  }
}

.section,
.stats {
  position: relative;
  padding: 96px 24px;
  scroll-margin-top: calc(var(--nav-top) + 92px);
}

.section {
  background: var(--background);
}

.section-alt {
  background: var(--surface);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-contact {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
}

.section__head {
  width: min(var(--container), 100%);
  margin: 0 auto 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.section__head h2,
.subpage-hero h1 {
  margin: 8px 0 0;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  line-height: 1.18;
}

.section__head h2 {
  font-size: clamp(32px, 4vw, 42px);
}

.section__center {
  display: flex;
  justify-content: center;
  width: min(var(--container), 100%);
  margin: 42px auto 0;
}

.section-rule {
  width: min(980px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section-rule::before,
.section-rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.section-rule span {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
}

.stats {
  background: var(--surface);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stats__grid {
  width: min(980px, 100%);
  margin: 52px auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.stat {
  position: relative;
  min-height: 124px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -11px;
  width: 1px;
  height: 62px;
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-50%);
}

.stat__value {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1;
}

.stat__value span {
  color: rgba(240, 237, 232, 0.42);
}

.stat__label {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.control-pair {
  display: flex;
  gap: 8px;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: rgba(240, 237, 232, 0.34);
}

.icon-button:hover {
  color: var(--foreground);
  border-color: rgba(255, 255, 255, 0.3);
}

.project-rail {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.project-rail::-webkit-scrollbar {
  display: none;
}

.project-card {
  position: relative;
  flex: 0 0 224px;
  height: 356px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--card);
  cursor: pointer;
  scroll-snap-align: start;
}

.project-card--horizontal {
  flex-basis: 352px;
  height: 220px;
  align-self: end;
}

.media-fill,
.placeholder-pattern {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-pattern {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08), transparent 34%),
    #111111;
  background-size: 22px 22px, 22px 22px, 100% 100%, auto;
}

.placeholder-pattern--film {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0 1px, transparent 2px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 18px),
    #101010;
  background-size: 30px 30px, auto, auto;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.92), transparent 62%);
}

.project-card__play,
.gallery-card__plus {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(8, 8, 8, 0.6);
  color: var(--foreground);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s var(--ease);
}

.project-card:hover .project-card__play,
.gallery-card:hover .gallery-card__plus {
  opacity: 1;
}

.project-card__play svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.project-card__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  padding: 16px;
}

.project-card__category,
.modal__category,
.review-card__source,
.experience-card__meta {
  color: rgba(240, 237, 232, 0.42);
  font-size: 10px;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.project-card__title {
  margin-top: 6px;
  font-size: 14px;
}

.filter-row {
  width: min(var(--container), 100%);
  margin: -20px auto 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 34px;
  padding: 9px 13px;
  border: 1px solid var(--border);
  background: transparent;
  color: rgba(240, 237, 232, 0.46);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--foreground);
  border-color: rgba(240, 237, 232, 0.38);
  background: rgba(255, 255, 255, 0.03);
}

.masonry {
  width: min(var(--container), 100%);
  margin: 0 auto;
  column-count: 4;
  column-gap: 6px;
}

.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--card);
  break-inside: avoid;
  cursor: pointer;
}

.gallery-card img,
.gallery-card .placeholder-pattern {
  display: block;
  transition: transform 0.7s var(--ease);
}

.gallery-card:hover img,
.gallery-card:hover .placeholder-pattern {
  transform: scale(1.045);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0);
  transition: background 0.3s var(--ease);
}

.gallery-card:hover::after {
  background: rgba(8, 8, 8, 0.3);
}

.gallery-card__plus {
  width: 34px;
  height: 34px;
}

.gallery-card__plus::before,
.gallery-card__plus::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 1px;
  background: currentColor;
}

.gallery-card__plus::after {
  transform: rotate(90deg);
}

.team__grid {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  min-width: 0;
}

.team-card__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: var(--card);
}

.team-card__photo img,
.team-card__photo .placeholder-pattern {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.team-card:hover .team-card__photo img,
.team-card:hover .team-card__photo .placeholder-pattern {
  transform: scale(1.045);
}

.team-card__body {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.team-card__body::before {
  content: "";
  width: 1px;
  height: 42px;
  margin-top: 4px;
  background: rgba(240, 237, 232, 0.2);
  flex: 0 0 auto;
}

.team-card h3 {
  margin: 0 0 6px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 17px;
}

.team-card__role {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-transform: uppercase;
}

.team-card__bio {
  margin: 10px 0 0;
  color: rgba(240, 237, 232, 0.58);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.65;
  text-transform: none;
}

.contact__grid {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact__copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.75;
}

.contact__links {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-link {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  color: var(--muted);
}

.contact-link__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.contact-link:hover .contact-link__icon,
.contact-link:hover {
  color: var(--foreground);
  border-color: rgba(240, 237, 232, 0.4);
}

.contact-link strong {
  display: block;
  color: rgba(240, 237, 232, 0.72);
  font-size: 14px;
  font-weight: 400;
}

.contact-link small {
  display: block;
  margin-top: 3px;
  color: rgba(240, 237, 232, 0.34);
  font-size: 11px;
}

.contact-form {
  display: grid;
  gap: 15px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: rgba(240, 237, 232, 0.42);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
  padding: 14px 16px;
  outline: none;
  resize: vertical;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 255, 255, 0.22);
  background: #141414;
}

.button--send {
  justify-self: start;
  color: rgba(240, 237, 232, 0.62);
  border-color: rgba(255, 255, 255, 0.3);
}

.form-status {
  margin: 0;
  color: rgba(240, 237, 232, 0.56);
  font-size: 13px;
}

.site-footer {
  padding: 48px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--background);
}

.site-footer__inner {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.site-footer p {
  margin: 0;
  color: rgba(240, 237, 232, 0.26);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-align: center;
}

.site-footer__socials {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer__socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  color: rgba(240, 237, 232, 0.34);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.site-footer__socials a:hover {
  color: var(--foreground);
  border-color: rgba(255, 255, 255, 0.3);
}

.site-footer__admin {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: rgba(240, 237, 232, 0.08);
  transition: color 0.25s var(--ease);
}

.site-footer__admin:hover {
  color: rgba(240, 237, 232, 0.22);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 56px 24px;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(14px);
}

.modal__close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: rgba(240, 237, 232, 0.5);
  transition: color 0.25s var(--ease);
}

.modal__close:hover {
  color: var(--foreground);
}

.modal__panel {
  width: min(760px, 100%);
}

.modal__media {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
}

.modal__media--frame {
  aspect-ratio: 16 / 9;
  max-height: min(78vh, 620px);
  height: auto;
}

.modal__video-placeholder {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  gap: 18px;
  text-align: center;
  border: 1px solid var(--border);
  background: var(--card);
  color: rgba(240, 237, 232, 0.34);
}

.modal__video-placeholder svg {
  width: 62px;
  height: 62px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  fill: rgba(240, 237, 232, 0.55);
}

.modal h3 {
  margin: 6px 0 0;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 24px;
}

.modal p {
  color: var(--muted);
}

.subpage-hero {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: calc(124px + var(--nav-top)) 24px 76px;
  background: var(--background);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.subpage-hero__inner {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  text-align: center;
}

.subpage-hero h1 {
  font-size: clamp(42px, 7vw, 74px);
}

.subpage-hero p:not(.eyebrow) {
  width: min(640px, 100%);
  margin: 22px auto 0;
  color: rgba(240, 237, 232, 0.58);
  font-weight: 300;
  line-height: 1.75;
}

.reviews-grid {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review-card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card__rating {
  color: rgba(240, 237, 232, 0.72);
  font-size: 13px;
  letter-spacing: 0.16em;
}

.review-card blockquote {
  margin: 0;
  color: rgba(240, 237, 232, 0.72);
  font-family: "Playfair Display", serif;
  font-size: 22px;
  line-height: 1.45;
}

.review-card__footer {
  margin-top: auto;
}

.review-card__name {
  margin: 0 0 6px;
  color: var(--foreground);
  font-size: 14px;
}

.experience-list {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.experience-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  padding: 20px;
  border: 1px solid var(--border);
  background: var(--card);
}

.experience-card__image {
  min-height: 260px;
  background: var(--card-soft);
  overflow: hidden;
}

.experience-card__image img,
.experience-card__image .placeholder-pattern {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-card h2 {
  margin: 8px 0 14px;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: clamp(28px, 4vw, 38px);
}

.experience-card p {
  color: rgba(240, 237, 232, 0.58);
  line-height: 1.75;
  font-weight: 300;
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.skill-list span {
  padding: 8px 10px;
  border: 1px solid var(--border);
  color: rgba(240, 237, 232, 0.52);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.empty-state {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--border);
  background: var(--card);
  text-align: center;
  color: var(--muted);
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(8px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease), filter 0.85s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 900px) {
  body.has-announcement {
    --nav-top: 42px;
  }

  .site-nav {
    padding: 16px 18px;
  }

  .site-nav__toggle {
    display: flex;
  }

  .site-nav__links {
    position: fixed;
    top: calc(var(--nav-top) + 75px);
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    border: 1px solid var(--border);
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  }

  .nav-open .site-nav__links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav__links a {
    padding: 18px;
    border-bottom: 1px solid var(--border);
  }

  .site-nav__links a:last-child {
    border-bottom: 0;
  }

  .hero {
    padding-inline: 18px;
  }

  .hero__wordmark {
    gap: 9px;
  }

  .hero__wordmark span {
    width: 32px;
  }

  .hero__wordmark strong {
    letter-spacing: 0.22em;
  }

  .section,
  .stats {
    padding: 76px 18px;
  }

  .section__head {
    align-items: flex-start;
  }

  .stats__grid,
  .team__grid,
  .contact__grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .stat:not(:last-child)::after {
    display: none;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .masonry {
    column-count: 2;
  }

  .contact__grid {
    gap: 46px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .site-footer__socials {
    justify-content: center;
  }

  .experience-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .announcement__inner {
    width: 100%;
    padding: 0 16px;
    justify-content: flex-start;
    overflow: hidden;
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .hero__wordmark {
    max-width: 100%;
  }

  .hero__wordmark span {
    width: 22px;
  }

  .hero__wordmark strong {
    font-size: clamp(29px, 9vw, 36px);
    letter-spacing: 0.18em;
  }

  .hero__subtitle {
    letter-spacing: 0.28em;
  }

  .hero__text {
    max-width: 286px;
    font-size: 16px;
    line-height: 1.65;
  }

  .hero__actions {
    width: min(330px, 100%);
    max-width: 330px;
    margin-inline: auto;
  }

  .hero__actions,
  .control-pair {
    width: 100%;
  }

  .hero__actions .button {
    width: 100%;
  }

  .section__head {
    flex-direction: column;
  }

  .control-pair {
    justify-content: flex-start;
  }

  .project-card {
    flex-basis: 190px;
    height: 334px;
  }

  .project-card--horizontal {
    flex-basis: 286px;
    height: 196px;
  }

  .masonry {
    column-count: 1;
  }

  .reviews-grid {
    gap: 10px;
  }

  .review-card {
    padding: 22px;
  }
}
