/* ===================== Design Tokens ===================== */
:root {
  --ink: #1a1611;
  --ink-soft: #3a342c;
  --stone: #6f6659;
  --stone-light: #a89e8e;
  --cream: #faf6ef;
  --cream-deep: #f1ead9;
  --white: #ffffff;
  --gold: #a8824f;
  --gold-light: #d8bd8a;
  --gold-deep: #7c5f38;
  --line: rgba(26, 22, 17, 0.12);
  --line-light: rgba(255, 255, 255, 0.25);

  --font-display: "EB Garamond", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1400px;
  --gutter: clamp(24px, 5vw, 72px);
  --section-pad: clamp(72px, 10vw, 160px);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

@media (prefers-color-scheme: dark) {
  :root { color-scheme: dark light; }
}

/* ===================== Reset ===================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }
ul { list-style: none; }

html, body {
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 1px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(2.2rem, 4.2vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 500; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}

section { position: relative; }

/* ===================== Preloader ===================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__crest {
  width: min(340px, 62vw);
  height: auto;
  opacity: 0.35;
  transform: scale(0.94);
  animation: preloaderReveal 1.1s var(--ease-out) forwards;
}
@keyframes preloaderReveal {
  to { opacity: 1; transform: scale(1); }
}

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out), border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--solid { background: var(--gold); color: var(--white); }
.btn--solid:hover { background: var(--gold-deep); }

.btn--solid-dark { background: var(--ink); color: var(--cream); }
.btn--solid-dark:hover { background: var(--gold-deep); }

.btn--ghost-light { border-color: var(--line-light); color: var(--white); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.12); }

.btn--ghost-dark { border-color: var(--line); color: var(--ink); }
.btn--ghost-dark:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ===================== Header / Nav ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 26px 0;
  transition: padding 0.4s var(--ease-out), background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.site-header.is-scrolled {
  padding: 14px 0;
  background: rgba(250, 246, 239, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark { display: flex; align-items: center; }
.wordmark__logo {
  height: 68px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.35));
  transition: height 0.4s var(--ease-out);
  transform: translateY(-10.6%);
}
.site-header.is-scrolled .wordmark__logo {
  height: 52px;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.12));
}

.site-nav { display: flex; align-items: center; gap: 40px; }
.site-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--white);
  position: relative;
  transition: color 0.4s var(--ease-out);
}
.site-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.35s var(--ease-out);
}
.site-nav a:hover::after { width: 100%; }
.site-header.is-scrolled .site-nav a { color: var(--ink); }

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  border: 1px solid currentColor;
  padding: 10px 20px;
  line-height: 1;
}
.site-nav__cta::after { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: background 0.3s, transform 0.3s, opacity 0.3s;
}
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease-in-out);
  z-index: 190;
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
}

/* ===================== Hero ===================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  padding-top: clamp(100px, 22vh, 170px);
  padding-bottom: clamp(32px, 10vh, 110px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  box-sizing: border-box;
}
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.12);
  will-change: transform;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(10,8,6,0.82) 0%, rgba(10,8,6,0.32) 45%, rgba(10,8,6,0.28) 70%, rgba(10,8,6,0.55) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--gutter) clamp(28px, min(9vw, 7vh), 120px);
}
.hero__eyebrow { color: var(--gold-light); }
.hero__headline {
  font-size: clamp(1.8rem, min(6.4vw, 7.5vh), 5.4rem);
  color: var(--white);
  max-width: 16ch;
}
.hero__headline em { color: var(--gold-light); font-style: normal; }
.reveal-line { display: block; overflow: hidden; padding-bottom: 0.2em; margin-bottom: -0.2em; }
.reveal-line > span { display: inline-block; transform: translateY(105%); }

.hero__sub {
  margin-top: clamp(10px, 3vh, 26px);
  font-size: 1.05rem;
  max-width: 40ch;
  color: rgba(255,255,255,0.86);
  font-weight: 300;
}
.hero__sub--lg { font-size: 1.16rem; }
.hero__actions { margin-top: clamp(16px, 4vh, 40px); display: flex; gap: 16px; flex-wrap: wrap; }

.hero__scroll-cue {
  position: absolute;
  bottom: 32px; right: var(--gutter);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
}
.hero__scroll-cue span {
  width: 1px; height: 42px;
  background: rgba(255,255,255,0.4);
  position: relative;
  overflow: hidden;
}
.hero__scroll-cue span::after {
  content: "";
  position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%;
  background: var(--gold-light);
  animation: scrollcue 2.2s var(--ease-in-out) infinite;
}
@keyframes scrollcue {
  0% { top: -100%; }
  60%, 100% { top: 100%; }
}
.hero__scroll-cue em {
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* ===================== Listing ===================== */
.listing {
  background: var(--cream-deep);
  padding: var(--section-pad) var(--gutter);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 5vw, 90px);
  max-width: var(--container);
  margin: 0 auto;
  align-items: center;
}
.listing__media {
  position: relative;
  display: grid;
  gap: 20px;
}
.listing__img { overflow: hidden; border-radius: 2px; }
.listing__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.listing__img:hover img { transform: scale(1.05); }
.listing__img--a { aspect-ratio: 4/5; }
.listing__img--b {
  aspect-ratio: 5/4;
  width: 72%;
  margin-left: auto;
  transform: translateY(-14%);
  box-shadow: 0 30px 60px -20px rgba(26,22,17,0.35);
}

.listing__content h2 { margin-bottom: 6px; }
.listing__address {
  color: var(--stone);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 26px;
}
.listing__desc {
  max-width: 46ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
}
.listing__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.listing__facts li {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
}
.listing__facts li span { color: var(--gold); font-weight: 700; font-size: 0.9em; }
.listing__actions { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }

/* ===================== Stats ===================== */
.stats {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(56px, 7vw, 96px) var(--gutter);
}
.stats__grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--gold-light);
}
.stat__label {
  display: block;
  margin-top: 8px;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(250,246,239,0.65);
}

/* ===================== Portfolio ===================== */
.portfolio { padding: var(--section-pad) var(--gutter); max-width: var(--container); margin: 0 auto; }
.portfolio__head { max-width: 62ch; margin-bottom: 64px; }
.portfolio__intro { color: var(--ink-soft); font-size: 1.02rem; margin-top: 18px; }

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 14vw;
  gap: 14px;
}
.home-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  display: block;
  cursor: pointer;
}
.home-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.home-card:hover img { transform: scale(1.08); }
.home-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,8,6,0.72) 0%, rgba(10,8,6,0) 42%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}
.home-card:hover::after { opacity: 1; }
.home-card__caption {
  position: absolute; left: 20px; bottom: 18px; right: 20px;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  display: flex; flex-direction: column; gap: 2px;
}
.home-card:hover .home-card__caption { opacity: 1; transform: translateY(0); }
.home-card__caption strong { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; }
.home-card__caption em { font-style: normal; font-size: 0.72rem; letter-spacing: 0.08em; color: var(--gold-light); }
.home-card__badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(250,246,239,0.92);
  color: var(--gold-deep);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 2px;
}

.home-card:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.home-card:nth-child(2) { grid-column: span 3; grid-row: span 1; }
.home-card:nth-child(3) { grid-column: span 3; grid-row: span 1; }
.home-card:nth-child(4) { grid-column: span 3; grid-row: span 2; }
.home-card:nth-child(5) { grid-column: span 2; grid-row: span 1; }
.home-card:nth-child(6) { grid-column: span 2; grid-row: span 1; }
.home-card:nth-child(7) { grid-column: span 2; grid-row: span 1; }
.home-card:nth-child(8) { grid-column: span 2; grid-row: span 1; }
.home-card:nth-child(9) { grid-column: span 2; grid-row: span 1; }
.home-card:nth-child(10) { grid-column: span 2; grid-row: span 1; }

/* ===================== Spotlight (native horizontal gallery) ===================== */
.spotlight { padding: var(--section-pad) 0; background: var(--cream-deep); }
.spotlight__head {
  max-width: var(--container);
  margin: 0 auto 32px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.spotlight__nav { display: flex; gap: 10px; flex: none; padding-bottom: 4px; }
.spotlight__nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream-deep);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.spotlight__nav-btn:hover { background: var(--ink); border-color: var(--ink); color: var(--cream); transform: translateY(-2px); }
.spotlight__nav-btn svg { width: 18px; height: 18px; }
.spotlight__nav-btn:disabled { opacity: 0.35; cursor: default; pointer-events: none; }

.spotlight__track-wrap {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  padding-bottom: 18px;
}
.spotlight__track-wrap::-webkit-scrollbar { height: 6px; }
.spotlight__track-wrap::-webkit-scrollbar-track { background: rgba(26,22,17,0.08); border-radius: 4px; }
.spotlight__track-wrap::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
.spotlight__track {
  display: flex;
  gap: 24px;
  padding: 0 var(--gutter);
  width: max-content;
}
.spotlight__panel {
  position: relative;
  width: min(64vw, 620px);
  flex: none;
  scroll-snap-align: start;
  border-radius: 2px;
  overflow: hidden;
  background: var(--ink);
}
.spotlight__panel img { width: 100%; aspect-ratio: 4/3; object-fit: cover; opacity: 0.94; }
.spotlight__panel figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px;
  background: linear-gradient(0deg, rgba(10,8,6,0.85) 0%, rgba(10,8,6,0) 65%);
  color: var(--cream);
  font-size: 0.95rem;
}
.spotlight__panel figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 6px;
  font-weight: 500;
}

/* ===================== Why Us ===================== */
.why { padding: var(--section-pad) var(--gutter); max-width: var(--container); margin: 0 auto; }
.why__head { max-width: 62ch; margin-bottom: 56px; }
.why__people { display: flex; gap: 28px; margin-top: 28px; }
.why__person { display: flex; align-items: center; gap: 12px; }
.why__person img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold-light);
  padding: 2px;
}
.why__person span { display: flex; flex-direction: column; line-height: 1.3; }
.why__person strong { font-family: var(--font-display); font-size: 0.98rem; font-weight: 500; color: var(--ink); }
.why__person em { font-style: normal; font-size: 0.72rem; letter-spacing: 0.04em; color: var(--stone); }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.why__media { aspect-ratio: 4/5; overflow: hidden; border-radius: 2px; }
.why__media img { width: 100%; height: 100%; object-fit: cover; }

.acc-item { border-bottom: 1px solid var(--line); }
.acc-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
}
.acc-item__icon {
  position: relative;
  width: 18px; height: 18px;
  flex: none;
}
.acc-item__icon::before, .acc-item__icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
}
.acc-item__icon::before { top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.acc-item__icon::after { left: 50%; top: 0; width: 1px; height: 100%; transform: translateX(-50%); }
.acc-item.is-open .acc-item__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.acc-item.is-open .acc-item__icon::before { background: var(--gold); }

.acc-item__panel {
  height: 0;
  overflow: hidden;
  transition: height 0.5s var(--ease-in-out);
}
.acc-item__panel p {
  padding-bottom: 26px;
  max-width: 56ch;
  color: var(--ink-soft);
}

/* ===================== Cinematic Break ===================== */
.cinematic { position: relative; height: 78vh; min-height: 460px; overflow: hidden; }
.cinematic__img { position: absolute; inset: 0; }
.cinematic__img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); }
.cinematic::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,8,6,0.55) 0%, rgba(10,8,6,0.25) 40%, rgba(10,8,6,0.6) 100%);
}
.cinematic__overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--gutter);
  color: var(--white);
}
.cinematic__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  max-width: 26ch;
  line-height: 1.35;
}
.cinematic__attr {
  margin-top: 24px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ===================== FAQ ===================== */
.faq { padding: var(--section-pad) var(--gutter); max-width: 960px; margin: 0 auto; }
.faq__head { margin-bottom: 48px; }

/* ===================== Footer ===================== */
.site-footer { background: var(--ink); color: var(--cream); }
.site-footer__cta {
  text-align: center;
  padding: var(--section-pad) var(--gutter) clamp(56px, 7vw, 96px);
  max-width: 800px;
  margin: 0 auto;
}
.site-footer__cta h2 { color: var(--cream); margin-bottom: 34px; }
.site-footer__cta .eyebrow { color: var(--gold-light); }

.site-footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter) 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  border-top: 1px solid rgba(250,246,239,0.14);
  padding-top: 56px;
}
.site-footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
.site-footer__logo { width: 200px; height: auto; }
.site-footer__badge-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 14px 18px;
  background: var(--cream);
  border-radius: 6px;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.4);
}
.site-footer__badge { width: 126px; height: auto; opacity: 1; display: block; }

.site-footer__col { display: flex; flex-direction: column; gap: 12px; }
.site-footer__col h3 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 6px;
}
.site-footer__col a, .site-footer__col p {
  font-size: 0.92rem;
  color: rgba(250,246,239,0.78);
}
.site-footer__col a:hover { color: var(--gold-light); }

.site-footer__bottom {
  border-top: 1px solid rgba(250,246,239,0.14);
  padding: 22px var(--gutter);
  text-align: center;
  font-size: 0.78rem;
  color: rgba(250,246,239,0.5);
}

/* ===================== Reveal Helpers (JS-driven) ===================== */
.reveal-fade { opacity: 0; transform: translateY(24px); }
.reveal-up { opacity: 0; transform: translateY(46px); }
.reveal-clip { clip-path: inset(0 0 100% 0); }
.reveal-word { opacity: 0; transform: translateY(14px); }

/* ===================== Responsive ===================== */
@media (max-width: 1024px) {
  .listing { grid-template-columns: 1fr; }
  .listing__media { order: 2; }
  .listing__img--b { width: 60%; }
  .why__grid { grid-template-columns: 1fr; }
  .why__media { order: -1; aspect-ratio: 16/9; }
  .portfolio__grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 22vw; }
  .home-card:nth-child(1), .home-card:nth-child(4) { grid-column: span 4; grid-row: span 2; }
  .home-card:nth-child(2), .home-card:nth-child(3) { grid-column: span 4; grid-row: span 1; }
  .home-card:nth-child(n+5) { grid-column: span 2; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .site-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { white-space: normal; text-align: center; }
  .why__people { flex-wrap: wrap; gap: 20px; }
  .listing { padding: 88px var(--gutter); }
  .listing__img--b { width: 78%; }
  .stats__grid { grid-template-columns: repeat(3, 1fr); gap: 28px 14px; }
  .portfolio__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 46vw; }
  .home-card:nth-child(n) { grid-column: span 2 !important; grid-row: span 1 !important; }
  .home-card__caption { opacity: 1; transform: translateY(0); }
  .home-card::after { opacity: 0.55; }
  .spotlight__panel { width: 84vw; }
  .spotlight__nav { display: none; }
  .spotlight__head { align-items: flex-start; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__brand { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
