/* ============================================================
   SPACE & TIME DESIGN CONCEPTS
   Brand palette + tokens
   ============================================================ */
:root {
  --charcoal: #0e0e0e;
  --charcoal-1: #121212;
  --charcoal-2: #181818;
  --charcoal-3: #232323;
  --orange: #b54c12;
  --orange-soft: #cc6628;
  --terracotta: #b84535;
  --gold: #c5922a;
  --stone: #e8e0d4;
  --stone-soft: #f4efe6;
  --white: #ffffff;
  --muted: #8a8580;

  --font-sans: "Poppins", system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;

  --radius: 4px;
  --maxw: 1320px;
  --gutter: clamp(32px, 4vw, 64px);

  /* Spacing scale — 32px / 64px system (8pt aligned) */
  --space-sm: 32px;
  --space-lg: 64px;
  --space-xl: 128px;
  --space-section: clamp(64px, 8vw, 128px);

  --t-fast: 200ms ease;
  --t-med: 400ms cubic-bezier(.2,.7,.2,1);
  --t-slow: 800ms cubic-bezier(.2,.7,.2,1);
  --ease-out: cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--charcoal);
  color: var(--stone);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  transition: background-color 400ms var(--ease-out), color 400ms var(--ease-out);
}

/* Theme crossfade: :where() keeps specificity at 0 so any element with its
   own `transition` rule still wins (preserves hover/animation transitions). */
:where(html[data-theme] *) {
  transition-property: background-color, color, border-color;
  transition-duration: 350ms;
  transition-timing-function: var(--ease-out);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--orange); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

::selection { background: var(--orange); color: var(--white); }

/* Layout */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section {
  padding: var(--space-section) 0;
  position: relative;
}

/* Typography */
.h2 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--white);
}
.serif { font-family: var(--font-serif); font-weight: 500; }
.italic { font-style: italic; color: var(--orange); }
.eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.5rem;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 28px;
}
.section-label::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 18px; height: 1px;
  background: var(--orange);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--t-med);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--orange);
  color: var(--white);
  position: relative;
  isolation: isolate;
  transition: transform var(--t-med), box-shadow var(--t-med), letter-spacing var(--t-med);
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-soft) 0%, var(--orange) 100%);
  transform: translateY(101%);
  transition: transform 420ms var(--ease-out);
  z-index: -1;
}
.btn--primary > * { position: relative; z-index: 1; }
.btn--primary:hover {
  color: var(--white);
  transform: translateY(-3px) scale(1.015);
  box-shadow:
    0 18px 40px -16px rgba(181,76,18,0.7),
    0 0 0 1px rgba(255,180,120,0.25);
  letter-spacing: 0.14em;
}
.btn--primary:hover::before { transform: translateY(0); }
.btn--primary:active { transform: translateY(-1px) scale(1.0); }

.btn--ghost {
  background: transparent;
  color: var(--stone);
  border: 1px solid rgba(232,224,212,0.25);
  transition: all var(--t-med);
}
.btn--ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px -18px rgba(181,76,18, 0.65);
  letter-spacing: 0.14em;
}
.btn--ghost:active { transform: translateY(-1px); }

.btn--block { width: 100%; }
.btn--lg { padding: 18px 36px; font-size: 0.95rem; }

/* Cream pill — premium hero CTA on dark photography */
.btn--cream {
  background: #F1EFE7;
  color: #1A1A18;
  position: relative;
  isolation: isolate;
  transition:
    transform 200ms ease-out,
    background 200ms ease-out;
}
.btn--cream:hover {
  background: rgba(241,239,231,0.9);
  color: #1A1A18;
  transform: translateY(-2px);
}
.btn--cream:active { transform: translateY(-1px); }
.btn--cream .btn-arr { transition: transform 200ms ease-out; }
.btn--cream:hover .btn-arr { transform: translateX(7px); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 14px 0;
  background: rgba(14,14,14,0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(232,224,212,0.06);
  transition: padding var(--t-med), background var(--t-med);
}
.nav.is-scrolled {
  padding: 10px 0;
  background: rgba(14,14,14,0.92);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav__logo img {
  height: 38px;
  width: auto;
  display: block;
  background: #fff;
  padding: 4px;
  border-radius: 6px;
  box-sizing: content-box;
  transition: height var(--t-med), padding var(--t-med);
}
.nav.is-scrolled .nav__logo img { height: 32px; padding: 3px; }
.nav__brand-text {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
@media (max-width: 980px) {
  .nav__logo img { height: 36px; }
  .nav.is-scrolled .nav__logo img { height: 32px; }
  .nav__brand-text { font-size: 0.66rem; }
}
@media (max-width: 560px) {
  .nav__logo img { height: 34px; padding: 3px; border-radius: 5px; }
  .nav.is-scrolled .nav__logo img { height: 30px; }
  .nav__brand-text { font-size: 0.6rem; letter-spacing: 0.06em; }
}
@media (max-width: 400px) {
  .nav__logo { gap: 4px; }
  .nav__logo img { height: 30px; }
  .nav.is-scrolled .nav__logo img { height: 28px; }
  .nav__brand-text { font-size: 0.52rem; letter-spacing: 0.04em; }
}
.nav__links {
  display: flex;
  gap: 32px;
}
.nav__links a {
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--stone);
  position: relative;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width var(--t-med);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: 10px 20px; }

.nav__toggle {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav__toggle span {
  width: 22px; height: 1.5px;
  background: var(--stone);
  transition: transform var(--t-med), opacity var(--t-fast);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: flex;
  position: fixed;
  inset: 0;
  background: rgba(14,14,14,0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  padding: 100px var(--gutter) 40px;
  gap: 4px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 95;
  overflow-y: auto;
  transition: opacity var(--t-med), visibility var(--t-med);
}
.nav__mobile.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.nav__mobile a {
  font-size: 1.4rem;
  font-weight: 400;
  padding: 14px 0;
  border-bottom: 1px solid rgba(232,224,212,0.08);
  letter-spacing: 0.01em;
  text-align: center;
}
.nav__mobile a:hover { color: var(--orange); }
.nav__mobile .btn {
  margin-top: 24px;
  align-self: center;
  padding: 16px 32px;
  font-size: 0.85rem;
  width: 100%;
  max-width: 320px;
  justify-content: center;
}

/* ============================================================
   HERO — editorial / awwwards-tier
   ============================================================ */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  overflow: hidden;
  background: var(--charcoal);
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: -10% 0 0 0;
  z-index: 0;
}
.hero__img {
  position: absolute;
  inset: 0;
  background-image: url('assets/projects/villa-stone.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 6s ease-out;
  will-change: transform;
}
.hero.is-loaded .hero__img { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      to right,
      rgba(10, 10, 12, 0.95) 0%,
      rgba(10, 10, 12, 0.85) 25%,
      rgba(10, 10, 12, 0.55) 45%,
      rgba(10, 10, 12, 0.25) 65%,
      rgba(10, 10, 12, 0.05) 85%,
      transparent 100%
    ),
    linear-gradient(
      to bottom,
      transparent 0%,
      transparent 40%,
      rgba(0, 0, 0, 0.5) 100%
    ) !important;
}
@media (max-width: 768px) {
  .hero__overlay {
    background:
      linear-gradient(
        to bottom,
        transparent 0%,
        rgba(10, 10, 12, 0.4) 50%,
        rgba(10, 10, 12, 0.85) 100%
      ) !important;
  }
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,224,212,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,224,212,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, #000 25%, transparent 80%);
}

/* Bracket motifs (decorative) */
.hero__motifs {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
}
.hero__bracket {
  position: absolute;
  width: 120px; height: 120px;
  border: 3px solid var(--orange);
  opacity: 0;
  animation: bracketFade 1500ms var(--ease-out) 800ms forwards;
}
.hero__bracket--tl {
  top: 18%; left: 4%;
  border-right: none; border-bottom: none;
}
.hero__bracket--br {
  bottom: 22%; right: 4%;
  border-left: none; border-top: none;
  border-color: var(--stone);
  animation-delay: 1100ms;
}
.hero__diagline {
  position: absolute;
  top: 23%; left: 5%;
  width: 170px; height: 3px;
  background: var(--orange);
  transform: rotate(-50deg) scaleX(0);
  transform-origin: left center;
  animation: drawLine 1200ms var(--ease-out) 1300ms forwards;
}
@keyframes drawLine {
  to { transform: rotate(-50deg) scaleX(1); }
}

/* Top eyebrow strip */
.hero__top {
  position: relative;
  z-index: 3;
  padding: 96px 0 18px;
  border-bottom: 1px solid rgba(232,224,212,0.06);
}
.hero__top-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
}
.hero__top-item {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232,224,212,0.82);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__top-item i {
  width: 10px; height: 1px;
  background: var(--orange);
  display: inline-block;
}
.hero__top-item--live {
  color: var(--stone);
}
/* Main content — centered modern hero */
.hero__inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) clamp(32px, 5vw, 64px) clamp(64px, 8vw, 96px);
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: left;
}
.hero__inner > .hero__eyebrow {
  align-self: flex-start;
  margin-bottom: auto;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: flex-start;
  gap: var(--space-sm);
  max-width: 768px;
  width: 100%;
  text-align: left;
}
.hero__inner > .hero__meta-row {
  align-self: stretch;
  justify-content: center;
  margin-top: clamp(20px, 3vh, 40px);
}

/* Eyebrow pill (replaces the old top strip) */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border: 1px solid rgba(232,224,212,0.2);
  border-radius: 999px;
  background: rgba(14,14,14,0.32);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(232,224,212,0.92);
  font-weight: 500;
}
.hero__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.7rem, 4.8vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.04em;
  max-width: 20ch;
}
.hero__line {
  display: block;
}
.hero__line--shift { padding-left: 0; }

/* Meta row below CTAs */
.hero__meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 10px 32px;
  margin-top: clamp(8px, 1.4vw, 18px);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(232,224,212,0.72);
}
.hero__meta-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__meta-row i {
  width: 10px;
  height: 1px;
  background: var(--orange);
  display: inline-block;
}
.hero__line em {
  color: var(--orange);
  font-weight: 500;
}
.hero__num-pre {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  font-weight: 400;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: none;
  display: inline-block;
  margin-bottom: 0.6em;
}

/* Reveal-line animation (intro) */
.reveal-line {
  opacity: 0;
  transform: translateY(40%);
  transition: opacity 900ms ease, transform 900ms var(--ease-out);
}
.hero.is-loaded .reveal-line { opacity: 1; transform: translateY(0); }
.hero.is-loaded .reveal-line:nth-child(1) { transition-delay: 200ms; }
.hero.is-loaded .reveal-line:nth-child(2) { transition-delay: 320ms; }
.hero.is-loaded .reveal-line:nth-child(3) { transition-delay: 440ms; }
.hero.is-loaded .reveal-line:nth-child(4) { transition-delay: 560ms; }
.hero.is-loaded .reveal-line:nth-child(5) { transition-delay: 680ms; }

.hero__lede {
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  color: rgba(232,224,212,0.95);
  margin: 0;
  line-height: 1.6;
  max-width: 620px;
}
.hero__lede em { color: var(--white); font-weight: 500; }
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 14px;
  margin-top: 0.5rem;
}

/* Featured project card (right side) */
.hero__feature {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.hero__feature-link {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(360px, 48vh, 460px);
  overflow: hidden;
  border: 1px solid rgba(232,224,212,0.1);
  background: var(--charcoal-2);
  transition: transform var(--t-med);
}
.hero__feature-link:hover { transform: translateY(-6px); }
.hero__feature-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s var(--ease-out), filter var(--t-med);
  will-change: transform;
}
.hero__feature-link:hover .hero__feature-img {
  transform: scale(1.08);
  filter: brightness(0.95);
}
.hero__feature-link::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(14,14,14,0.92) 100%);
  pointer-events: none;
}
.hero__feature-meta {
  position: absolute;
  left: 28px; bottom: 28px;
  z-index: 2;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__feature-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 8px;
}
.hero__feature-meta h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
}
.hero__feature-loc {
  font-size: 0.88rem;
  color: rgba(232,224,212,0.85);
}
.hero__feature-arrow {
  position: absolute;
  top: 24px; right: 28px;
  z-index: 2;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(181,76,18,0.95);
  color: var(--white);
  font-size: 1.2rem;
  border-radius: 50%;
  transition: transform var(--t-med);
}
.hero__feature-link:hover .hero__feature-arrow {
  transform: rotate(-45deg);
}

/* Bottom credibility strip */
.hero__bottom {
  position: relative;
  z-index: 3;
  padding: var(--space-sm) 0;
  border-top: 1px solid rgba(232,224,212,0.1);
  background: linear-gradient(
    to top,
    rgba(14,14,14,0.92) 0%,
    rgba(14,14,14,0.78) 60%,
    rgba(14,14,14,0.45) 100%
  );
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.hero__bottom-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 48px);
  align-items: end;
}
.hero__bottom-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hero__bottom-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--orange);
  font-weight: 500;
  line-height: 1;
}
.hero__bottom-label {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(232,224,212,0.8);
}
.hero__bottom-item--quote {
  align-self: end;
  text-align: right;
  border-left: 1px solid rgba(232,224,212,0.12);
  padding-left: clamp(20px, 3vw, 40px);
}
.hero__bottom-item--quote span {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: rgba(232,224,212,0.92);
  line-height: 1.4;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--orange);
  color: var(--white);
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  position: relative;
  z-index: 3;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.marquee__track .dot {
  font-style: normal;
  font-size: 0.7em;
  opacity: 0.7;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   TRUST / RECOGNITION
   ============================================================ */
.trust {
  background: var(--charcoal-1);
  padding: 56px 0;
  border-bottom: 1px solid rgba(232,224,212,0.06);
}
.trust__label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin: 0 0 28px;
}
.trust__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-lg);
  align-items: center;
  row-gap: var(--space-sm);
}
.trust__name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  letter-spacing: 0.01em;
  color: rgba(232,224,212,0.62);
  transition: color var(--t-med);
  white-space: nowrap;
}
.trust__name:hover { color: var(--stone); }
.trust__name + .trust__name {
  border-left: 1px solid rgba(232,224,212,0.18);
  padding-left: var(--space-lg);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--charcoal); }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-lg);
  align-items: center;
}
.about__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.about__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s var(--ease-out);
  will-change: transform;
}
.about__media:hover .about__img { transform: scale(1.04); }
.about__media::before,
.about__media::after {
  content: "";
  position: absolute;
  width: 60px; height: 60px;
  border: 3px solid var(--orange);
  z-index: 2;
}
.about__media::before {
  top: -15px; left: -15px;
  border-right: none; border-bottom: none;
}
.about__media::after {
  bottom: -15px; right: -15px;
  border-left: none; border-top: none;
  border-color: var(--stone);
}
.about__badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(14,14,14,0.85);
  backdrop-filter: blur(10px);
  padding: 14px 22px;
  z-index: 3;
  border-left: 2px solid var(--orange);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about__badge span {
  font-size: 0.75rem;
  color: var(--muted);
}
.about__badge strong {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.04em;
}

.about__content p {
  font-size: 1.02rem;
  margin: 0 0 1.4rem;
  color: rgba(232,224,212,0.78);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(232,224,212,0.1);
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--orange);
  line-height: 1;
}
.stat__plus {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2rem;
  color: var(--orange);
  margin-left: -8px;
  display: inline;
}
.stat .stat__num + .stat__plus { display: inline; }
.stat__label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-1) 100%);
}
.section-head { margin-bottom: 4rem; }
.section-head--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
}
.section-head__copy {
  font-size: 1.05rem;
  color: rgba(232,224,212,0.78);
  max-width: 480px;
  justify-self: end;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(232,224,212,0.08);
  border: 1px solid rgba(232,224,212,0.08);
}
.service {
  background: var(--charcoal-1);
  padding: clamp(32px, 4vw, 56px) clamp(28px, 3vw, 44px);
  transition: background var(--t-med);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}
.service:hover { background: var(--charcoal-3); }
.service:hover::before { transform: scaleX(1); }
.service:hover .service__icon { color: var(--orange); transform: translateY(-4px); }

.service__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--orange);
  margin-bottom: 1.2rem;
}
.service__icon {
  width: 56px;
  height: 56px;
  color: var(--stone);
  margin-bottom: 1.6rem;
  transition: color var(--t-med), transform var(--t-med);
}
.service__icon svg { width: 100%; height: 100%; }
.service__title {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
.service__copy {
  color: rgba(232,224,212,0.7);
  margin: 0 0 1.5rem;
  font-size: 0.96rem;
}
.service__list {
  margin-bottom: 2rem;
}
.service__list li {
  font-size: 0.88rem;
  padding: 12px 0;
  border-top: 1px solid rgba(232,224,212,0.08);
  color: var(--stone);
  position: relative;
  padding-left: 22px;
}
.service__list li::before {
  content: "+";
  position: absolute;
  left: 0; top: 12px;
  color: var(--orange);
  font-weight: 500;
}
.service__list li:last-child {
  border-bottom: 1px solid rgba(232,224,212,0.08);
}
.service__link {
  margin-top: auto;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
}
.service__link:hover { color: var(--orange-soft); }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--charcoal-1); }
.process__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 4rem;
}
.process__line {
  position: absolute;
  top: 30px; left: 8%;
  width: 84%; height: 1px;
  background: rgba(232,224,212,0.1);
  z-index: 0;
}
.process__line-fill {
  height: 100%;
  background: var(--orange);
  width: 0%;
  transition: width 1.8s var(--ease-out);
}
.process__step {
  position: relative;
  z-index: 1;
  text-align: left;
}
.process__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--charcoal-1);
  border: 2px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
  transition: background var(--t-med), color var(--t-med);
}
.process__step:hover .process__num {
  background: var(--orange);
  color: var(--white);
}
.process__step h3 {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin: 0 0 0.8rem;
  letter-spacing: -0.01em;
}
.process__step p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(232,224,212,0.7);
  line-height: 1.6;
}

/* ============================================================
   WORK
   ============================================================ */
.work { background: var(--charcoal); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.project {
  grid-column: span 3;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.project--lg { grid-column: span 3; }
.project__media {
  aspect-ratio: 4 / 3;
  background-color: var(--charcoal-3);
  position: relative;
  overflow: hidden;
}
.project__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 1.2s var(--ease-out), filter var(--t-med);
  will-change: transform;
}
.project__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(14,14,14,0.6) 100%);
  pointer-events: none;
}
.project:hover .project__img {
  transform: scale(1.06);
  filter: brightness(0.9) saturate(1.05);
}
.project__hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(181,76,18,0.0);
  opacity: 0;
  transition: opacity var(--t-med), background var(--t-med);
  z-index: 2;
}
.project__hover span {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 500;
  padding: 14px 28px;
  border: 1px solid var(--white);
  background: rgba(14,14,14,0.6);
  backdrop-filter: blur(8px);
  transform: translateY(12px);
  transition: transform var(--t-med);
}
.project:hover .project__hover {
  opacity: 1;
  background: rgba(181,76,18,0.18);
}
.project:hover .project__hover span { transform: translateY(0); }

.project__meta {
  padding: 22px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.project__cat {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}
.project__title {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}
.project__loc {
  font-size: 0.85rem;
  color: var(--muted);
}
.work__cta {
  margin-top: 4rem;
  text-align: center;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--orange);
  padding: var(--space-lg) 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.stats-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.stats-band__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid rgba(255,255,255,0.25);
  padding-left: 24px;
}
.stats-band__num,
.stats-band__item > span:nth-child(2) {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-block;
}
.stats-band__item > span:nth-child(2) { display: inline; margin-left: 2px; }
.stats-band__label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--charcoal-1); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--charcoal);
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(232,224,212,0.08);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  transition: transform var(--t-med), border-color var(--t-med);
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -18px; left: 24px;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--orange);
  line-height: 1;
}
.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(181,76,18,0.4);
}
.testimonial--accent {
  background: linear-gradient(180deg, rgba(181,76,18,0.06), var(--charcoal));
  border-color: rgba(181,76,18,0.2);
}
.testimonial__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.55;
  color: var(--stone);
  margin: 12px 0 0;
  flex: 1;
}
.testimonial__person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(232,224,212,0.08);
}
.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 1px solid rgba(181,76,18,0.3);
}
.testimonial__person strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}
.testimonial__person span {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ============================================================
   REACH
   ============================================================ */
.reach {
  background: var(--charcoal);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.reach::before, .reach::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(181,76,18,0.12);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.reach::before { width: 600px; height: 600px; }
.reach::after {
  width: 900px; height: 900px;
  border-color: rgba(181,76,18,0.06);
}
.reach__inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.reach__copy {
  font-size: 1.08rem;
  color: rgba(232,224,212,0.78);
  margin: 0 auto 3rem;
  max-width: 560px;
}
.reach__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.reach__list li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid rgba(232,224,212,0.18);
  font-size: 0.95rem;
  color: var(--stone);
  transition: all var(--t-med);
}
.reach__list li:hover {
  border-color: var(--orange);
  background: rgba(181,76,18,0.08);
  transform: translateY(-2px);
}
.reach__list li span {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  color: var(--orange);
  background: rgba(181,76,18,0.1);
  padding: 3px 7px;
  border-radius: 2px;
}
.reach__plus {
  border-style: dashed !important;
  color: var(--muted) !important;
  font-style: italic;
  font-family: var(--font-serif);
  font-size: 1.05rem !important;
}

/* ============================================================
   QUOTE
   ============================================================ */
.quote {
  background: var(--charcoal-1);
  text-align: center;
  padding: var(--space-section) 0;
  position: relative;
}
.quote__mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  color: var(--orange);
  line-height: 0.4;
  margin: 0 0 20px;
}
.quote__body {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  margin: 0 auto 1.5rem;
  max-width: 900px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.quote__attr {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--charcoal); }
.faq__list {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.faq__item {
  border-top: 1px solid rgba(232,224,212,0.1);
}
.faq__item:last-child { border-bottom: 1px solid rgba(232,224,212,0.1); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 500;
  color: var(--white);
  transition: color var(--t-fast);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--orange); }
.faq__plus {
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform var(--t-med);
}
.faq__plus::before { width: 22px; height: 1.5px; }
.faq__plus::after { width: 1.5px; height: 22px; }
.faq__item[open] .faq__plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__body {
  padding: 0 0 28px;
  max-width: 720px;
}
.faq__body p {
  margin: 0;
  font-size: 1rem;
  color: rgba(232,224,212,0.78);
  line-height: 1.7;
}
.faq__item[open] summary { color: var(--orange); }

/* Reveal-style open animation for body */
.faq__item[open] .faq__body {
  animation: faqOpen 400ms var(--ease-out);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: var(--space-section) 0;
  overflow: hidden;
  text-align: center;
}
.cta-banner__bg {
  position: absolute;
  inset: -10% 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  will-change: transform;
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 60%, transparent 80%),
    linear-gradient(180deg, rgba(14,14,14,0.55) 0%, rgba(14,14,14,0.4) 40%, rgba(14,14,14,0.7) 100%),
    linear-gradient(135deg, rgba(181,76,18,0.18), transparent 60%);
  z-index: 1;
}
.cta-banner__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.cta-banner__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--white);
  margin: 0 0 1rem;
  text-shadow:
    0 2px 14px rgba(0,0,0,0.85),
    0 4px 40px rgba(0,0,0,0.55);
}
.cta-banner__copy {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: rgba(232,224,212,0.92);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  text-shadow:
    0 1px 8px rgba(0,0,0,0.9),
    0 2px 18px rgba(0,0,0,0.55);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--charcoal); }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}
.contact__lead p {
  color: rgba(232,224,212,0.78);
  font-size: 1.05rem;
  margin: 0 0 2.5rem;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(232,224,212,0.1);
  padding-top: 2rem;
}
.contact__info li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: center;
}
.contact__info span {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact__map {
  margin-top: var(--space-sm);
  border: 1px solid rgba(232,224,212,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  height: 260px;
  background: var(--charcoal-2);
}
.contact__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.7);
  transition: filter var(--t-med);
}
[data-theme="light"] .contact__map {
  border-color: rgba(0,0,0,0.1);
}
[data-theme="light"] .contact__map iframe {
  filter: none;
}

.contact__form {
  background: var(--charcoal-1);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(232,224,212,0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 560px) {
  .field--row { grid-template-columns: 1fr; }
}
.field label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea,
.field select {
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 300;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(232,224,212,0.18);
  color: var(--white);
  padding: 12px 2px;
  transition: border-color var(--t-fast);
  resize: vertical;
}
.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--orange) 50%),
    linear-gradient(135deg, var(--orange) 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 8px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 28px;
}
.field select option { background: var(--charcoal-1); color: var(--white); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--orange);
}
.form-status {
  font-size: 0.85rem;
  color: var(--orange);
  margin: 4px 0 0;
  min-height: 1.2em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  border-top: 1px solid rgba(232,224,212,0.06);
  padding: var(--space-lg) 0 var(--space-sm);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.footer__brand-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}
.footer__brand img {
  height: 38px;
  width: auto;
  display: block;
  background: #fff;
  padding: 4px;
  border-radius: 6px;
  box-sizing: content-box;
}
.footer__brand-text {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
.footer__brand p {
  color: rgba(232,224,212,0.78);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.65;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}
.footer__cols h4 {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 18px;
  font-weight: 500;
}
.footer__cols a, .footer__cols span {
  display: block;
  font-size: 0.92rem;
  color: var(--stone);
  padding: 6px 0;
  transition: color var(--t-fast);
}
.footer__cols a:hover { color: var(--orange); }
.footer__cols span { color: rgba(232,224,212,0.7); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(232,224,212,0.1);
  font-size: 0.8rem;
  color: rgba(232,224,212,0.7);
  letter-spacing: 0.06em;
}

/* Newsletter section temporarily hidden — remove this rule to bring it back */
.newsletter { display: none; }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 46px; height: 46px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--t-med), transform var(--t-med), visibility var(--t-med), background var(--t-fast);
  box-shadow: 0 12px 28px -10px rgba(181,76,18,0.6);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--orange-soft); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* No effects on hero text — appears instantly, no shadow, no fade, no transform */
.hero .reveal,
.hero .reveal-line {
  opacity: 1;
  transform: none;
  transition: none;
  animation: none;
  will-change: auto;
}
.reveal-img {
  position: relative;
  overflow: hidden;
}
.reveal-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 1.1s var(--ease-out);
  z-index: 5;
  pointer-events: none;
}
.reveal-img.is-visible::after { transform: scaleX(0); transform-origin: right; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  .about__grid { grid-template-columns: 1fr; }
  .about__media { aspect-ratio: 4 / 3; }

  .section-head--split { grid-template-columns: 1fr; gap: 24px; }
  .section-head__copy { justify-self: start; }

  .service-grid { grid-template-columns: 1fr; }

  .process__track { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process__line { display: none; }

  .work-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .project, .project--lg { grid-column: span 1; }

  .stats-band__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }

  .testimonial-grid { grid-template-columns: 1fr; }

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

  .newsletter__inner { grid-template-columns: 1fr; gap: 28px; }

  .contact__grid { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .hero__bracket { width: 80px; height: 80px; }
  .hero__diagline { width: 120px; }
  .hero__meta { grid-template-columns: 1fr; gap: 16px; }

  .stats { grid-template-columns: 1fr; gap: 18px; }
}

@media (max-width: 768px) {
  .section { padding: var(--space-lg) 0; }

  /* Hero: clear the fixed nav (~78px) and stop centering content into it */
  .hero { min-height: auto; }
  .hero__inner {
    padding: 96px var(--gutter) 40px;
    justify-content: flex-start;
    gap: 18px;
    min-height: calc(100svh - 80px);
  }
  .hero__inner > .hero__eyebrow { margin-bottom: 0; }
  .hero__inner > .hero__meta-row { margin-top: auto; }
  .hero__title { font-size: clamp(1.7rem, 8vw, 2.6rem); letter-spacing: -0.025em; max-width: 100%; }
  .hero__lede { font-size: 1rem; max-width: 100%; }
  .hero__meta-row { gap: 8px 18px; font-size: 0.62rem; letter-spacing: 0.18em; }
  .hero__eyebrow { font-size: 0.62rem; padding: 7px 14px; }

  .hero__cta { flex-direction: column; width: 100%; gap: 10px; }
  .hero__cta .btn { width: 100%; justify-content: center; }

  .hero__bottom { padding: 18px 0; }
  .hero__bottom-row { gap: 12px clamp(14px, 3vw, 28px); }
  .hero__bottom-num { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .hero__bottom-label { font-size: 0.66rem; letter-spacing: 0.14em; }
  .hero__scroll { display: none; } /* gives the bottom strip room on phones */

  .trust { padding: 36px 0; }
  .trust__row { gap: 12px 24px; }
  .trust__name + .trust__name { border-left: none; padding-left: 0; }
  .trust__name { white-space: normal; }

  .marquee { padding: 16px 0; font-size: 0.78rem; }
  .marquee__track { gap: 22px; }

  /* Decorative hero brackets get smaller / hidden on phones */
  .hero__bracket { width: 56px; height: 56px; }
  .hero__diagline { display: none; }

  /* Section heads tighter */
  .h2 { font-size: clamp(2rem, 7vw, 3rem); }
  .section-label { font-size: 0.7rem; }

  /* CTA banner — denser */
  .cta-banner__title { font-size: clamp(1.8rem, 7vw, 2.6rem); line-height: 1.1; }

  /* Floating widgets — smaller, no overlap */
  .back-to-top { width: 44px; height: 44px; bottom: 16px; right: 16px; }
}

@media (max-width: 560px) {
  .work-grid { grid-template-columns: 1fr; gap: 14px; }
  .process__track { grid-template-columns: 1fr; gap: 24px; }
  .reach__list { gap: 8px; }
  .reach__list li { padding: 10px 16px; font-size: 0.85rem; }
  .quote__mark { font-size: 5rem; }
  .stats-band__grid { grid-template-columns: 1fr; }
  .stats-band__item { border-left: none; border-top: 1px solid rgba(255,255,255,0.25); padding: 16px 0 0; }

  .hero__bottom-row { grid-template-columns: 1fr; gap: 14px; }
  .hero__bottom-item--quote { grid-column: span 1; text-align: left; border-left: none; padding-left: 0; }
  .hero__cta .btn { padding: 14px 20px; font-size: 0.78rem; }
  /* .nav__logo img height is set in the dedicated nav block (~line 262);
     don't override here. .nav__brand was removed in an earlier refactor. */
  .nav { padding: 10px 0; }
  .nav.is-scrolled { padding: 8px 0; }

  /* Roles last-child span: reset for single-col layout */
  .roles-grid .role:last-child { grid-column: span 1; }

  /* Footer columns: stack to single col on tiny screens for readability */
  .footer__cols { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { font-size: 0.75rem; }

  /* Forms — tighter spacing, full-width inputs */
  .field input, .field select, .field textarea { font-size: 16px; } /* 16px prevents iOS auto-zoom */
  .newsletter__form { flex-direction: column; gap: 10px; }
  .newsletter__form input { width: 100%; }
  .newsletter__form .btn { width: 100%; }

  /* Contact map shorter on phones */
  .contact__map { aspect-ratio: 4 / 3; min-height: 220px; }

  /* Testimonial padding tighter */
  .testimonial { padding: 24px; }
  .testimonial__quote { font-size: 1rem; }

  /* Service cards: tighter padding */
  .service { padding: 24px; }
  .service__title { font-size: 1.15rem; }

  /* Project / work titles smaller */
  .project__title { font-size: 1.1rem; }

  /* Section heads */
  .h2 { font-size: clamp(1.8rem, 8vw, 2.6rem); line-height: 1.1; }
  .section-label { font-size: 0.66rem; letter-spacing: 0.18em; }
}

/* Tiny phones (≤400px) — last safety net */
@media (max-width: 400px) {
  :root { --gutter: 20px; }
  .hero__title { font-size: clamp(1.5rem, 9vw, 2.2rem); }
  .hero__lede { font-size: 0.94rem; }
  .hero__inner { padding: 88px var(--gutter) 32px; gap: 14px; }
  .hero__eyebrow { font-size: 0.58rem; padding: 6px 12px; gap: 8px; }
  .hero__meta-row { font-size: 0.58rem; gap: 6px 12px; letter-spacing: 0.14em; }
  .hero__cta .btn { padding: 13px 18px; font-size: 0.74rem; letter-spacing: 0.1em; }
  .nav__inner { gap: 12px; }
  .marquee { font-size: 0.7rem; padding: 12px 0; }
  .nav__mobile a { font-size: 1.2rem; padding: 12px 0; }
}

/* Industry-standard guards — apply at all viewports */
img, video, iframe { max-width: 100%; height: auto; }
input, textarea, select, button { font-family: inherit; }
@supports (padding: env(safe-area-inset-bottom)) {
  .back-to-top { bottom: max(28px, env(safe-area-inset-bottom)); }
}

/* ============================================================
   SKIP LINK (a11y)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 18px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 200;
  transition: top var(--t-med);
}
.skip-link:focus {
  top: 16px;
  color: var(--white);
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* ============================================================
   THEME TOGGLE
   ============================================================ */
.theme-toggle {
  width: 56px;
  height: 28px;
  padding: 0;
  margin-right: 4px;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(232,224,212,0.08);
  border: 1px solid rgba(232,224,212,0.2);
  cursor: pointer;
  position: relative;
  transition: background var(--t-med), border-color var(--t-med);
}
.theme-toggle:hover { border-color: var(--orange); }
.theme-toggle__track {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.theme-toggle__thumb {
  position: absolute;
  top: 2px; left: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform var(--t-med), background var(--t-med);
  box-shadow: 0 4px 10px -3px rgba(181,76,18,0.6);
}
.theme-toggle__icon {
  width: 14px;
  height: 14px;
  position: absolute;
  transition: opacity var(--t-med), transform var(--t-med);
}
.theme-toggle__icon--moon { opacity: 1; transform: rotate(0); }
.theme-toggle__icon--sun  { opacity: 0; transform: rotate(-90deg); }

[data-theme="light"] .theme-toggle {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.15);
}
[data-theme="light"] .theme-toggle__thumb { transform: translateX(28px); }
[data-theme="light"] .theme-toggle__icon--moon { opacity: 0; transform: rotate(90deg); }
[data-theme="light"] .theme-toggle__icon--sun  { opacity: 1; transform: rotate(0); }


/* ============================================================
   TEAM
   ============================================================ */
.team { background: var(--charcoal); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.team-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--charcoal-2);
}
.team-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 600ms var(--ease-out), transform 1.2s var(--ease-out);
  will-change: transform, filter;
}
.team-card:hover .team-card__img {
  filter: grayscale(0%) contrast(1);
  transform: scale(1.04);
}
.team-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(14,14,14,0.65));
  pointer-events: none;
}
.team-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.team-card h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0;
  color: var(--white);
  letter-spacing: -0.01em;
}
.team-card span {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  background: var(--orange);
  color: var(--white);
  padding: var(--space-lg) 0;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.newsletter__copy p {
  margin: 14px 0 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.04em;
}
.newsletter__title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--white);
}
.newsletter__title .italic { color: var(--white); }
.newsletter__form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
}
.newsletter__form input {
  flex: 1;
  min-width: 240px;
  padding: 16px 20px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  border-radius: var(--radius);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.newsletter__form input::placeholder { color: rgba(255,255,255,0.65); }
.newsletter__form input:focus {
  outline: none;
  background: rgba(255,255,255,0.18);
  border-color: var(--white);
}
.newsletter__form .btn--primary {
  background: var(--charcoal);
  color: var(--white);
}
.newsletter__form .btn--primary::before { background: var(--white); }
.newsletter__form .btn--primary:hover { color: var(--orange); }
.newsletter__status {
  width: 100%;
  margin: 0;
  font-size: 0.85rem;
  color: var(--white);
  min-height: 1.2em;
}

/* ============================================================
   LIGHT THEME OVERRIDES
   ============================================================ */
[data-theme="light"] {
  color-scheme: light;
}
[data-theme="light"] body {
  background: var(--stone-soft);
  color: #2a2620;
}
[data-theme="light"] ::selection { background: var(--orange); color: var(--white); }

/* Nav */
[data-theme="light"] .nav {
  background: rgba(244,239,230,0.85);
  border-bottom-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .nav.is-scrolled { background: rgba(244,239,230,0.96); }
[data-theme="light"] .nav__links a { color: #2a2620; }
[data-theme="light"] .nav__toggle span { background: #2a2620; }
[data-theme="light"] .nav__mobile { background: rgba(244,239,230,0.98); }
[data-theme="light"] .nav__mobile a { border-bottom-color: rgba(0,0,0,0.08); color: #2a2620; }
[data-theme="light"] .nav__brand-text { color: #2a2620; }
[data-theme="light"] .btn--ghost {
  color: #2a2620;
  border-color: rgba(0,0,0,0.2);
}
[data-theme="light"] .btn--ghost:hover { color: var(--orange); border-color: var(--orange); }

/* Ghost buttons inside always-dark sections keep their light-on-dark styling */
[data-theme="light"] .hero .btn--ghost,
[data-theme="light"] .footer .btn--ghost,
[data-theme="light"] .cta-banner .btn--ghost {
  color: var(--stone);
  border-color: rgba(232,224,212,0.25);
}
[data-theme="light"] .hero .btn--ghost:hover,
[data-theme="light"] .footer .btn--ghost:hover,
[data-theme="light"] .cta-banner .btn--ghost:hover {
  color: var(--orange);
  border-color: var(--orange);
}

/* Logo theme swap (nav only — footer is dark in both themes) */

/* Sections that switch to light surfaces */
[data-theme="light"] .about,
[data-theme="light"] .services,
[data-theme="light"] .process,
[data-theme="light"] .work,
[data-theme="light"] .testimonials,
[data-theme="light"] .reach,
[data-theme="light"] .quote,
[data-theme="light"] .team,
[data-theme="light"] .faq,
[data-theme="light"] .contact,
[data-theme="light"] .trust {
  background: var(--stone-soft);
}
[data-theme="light"] .services {
  background: linear-gradient(180deg, var(--stone-soft) 0%, #ebe5d8 100%);
}
[data-theme="light"] .testimonials,
[data-theme="light"] .quote,
[data-theme="light"] .process { background: #ebe5d8; }

/* Headings / text — only sections that flip to light surfaces.
   .hero, .footer, .cta-banner stay dark in both themes (see note below)
   so they're intentionally excluded — their text must remain light. */
[data-theme="light"] .h2,
[data-theme="light"] .service__title,
[data-theme="light"] .project__title,
[data-theme="light"] .process__step h3,
[data-theme="light"] .team-card h3,
[data-theme="light"] .testimonial__person strong,
[data-theme="light"] .quote__body,
[data-theme="light"] .faq__item summary,
[data-theme="light"] .newsletter__title { color: #1a1714; }

[data-theme="light"] .about__content p,
[data-theme="light"] .reach__copy,
[data-theme="light"] .section-head__copy,
[data-theme="light"] .service__copy,
[data-theme="light"] .testimonial__quote,
[data-theme="light"] .faq__body p,
[data-theme="light"] .process__step p,
[data-theme="light"] .contact__lead p { color: #4a443d; }

[data-theme="light"] .eyebrow,
[data-theme="light"] .stat__label,
[data-theme="light"] .project__loc,
[data-theme="light"] .testimonial__person span,
[data-theme="light"] .reach__list li,
[data-theme="light"] .contact__info span { color: #6a635a; }

/* Trust */
[data-theme="light"] .trust { border-bottom-color: rgba(0,0,0,0.08); }
[data-theme="light"] .trust__label { color: #6a635a; }
[data-theme="light"] .trust__name { color: #6a635a; }
[data-theme="light"] .trust__name:hover { color: #1a1714; }
[data-theme="light"] .trust__name + .trust__name { border-left-color: rgba(0,0,0,0.12); }

/* About */
[data-theme="light"] .about__badge {
  background: rgba(244,239,230,0.92);
}
[data-theme="light"] .about__badge strong { color: #1a1714; }
[data-theme="light"] .stats { border-top-color: rgba(0,0,0,0.12); }

/* Services */
[data-theme="light"] .service-grid {
  background: rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .service { background: var(--stone-soft); }
[data-theme="light"] .service:hover { background: #ebe5d8; }
[data-theme="light"] .service__icon { color: #2a2620; }
[data-theme="light"] .service__list li {
  border-top-color: rgba(0,0,0,0.08);
  color: #2a2620;
}
[data-theme="light"] .service__list li:last-child {
  border-bottom-color: rgba(0,0,0,0.08);
}

/* Process */
[data-theme="light"] .process__line { background: rgba(0,0,0,0.1); }
[data-theme="light"] .process__num {
  background: var(--stone-soft);
  border-color: var(--orange);
  color: var(--orange);
}

/* Work */
[data-theme="light"] .project__media::after {
  background: linear-gradient(180deg, transparent 50%, rgba(244,239,230,0.4) 100%);
}

/* Testimonials */
[data-theme="light"] .testimonial {
  background: var(--stone-soft);
  border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .testimonial--accent {
  background: linear-gradient(180deg, rgba(181,76,18,0.06), var(--stone-soft));
  border-color: rgba(181,76,18,0.25);
}
[data-theme="light"] .testimonial__person { border-top-color: rgba(0,0,0,0.08); }

/* Reach */
[data-theme="light"] .reach::before { border-color: rgba(181,76,18,0.18); }
[data-theme="light"] .reach::after { border-color: rgba(181,76,18,0.1); }
[data-theme="light"] .reach__list li {
  border-color: rgba(0,0,0,0.18);
  color: #2a2620;
}
[data-theme="light"] .reach__list li:hover {
  background: rgba(181,76,18,0.08);
  border-color: var(--orange);
}

/* Team */
[data-theme="light"] .team-card__media { background: #ddd5c5; }
[data-theme="light"] .team-card__media::after {
  background: linear-gradient(180deg, transparent, rgba(244,239,230,0.4));
}

/* FAQ */
[data-theme="light"] .faq__item { border-top-color: rgba(0,0,0,0.12); }
[data-theme="light"] .faq__item:last-child { border-bottom-color: rgba(0,0,0,0.12); }

/* Contact */
[data-theme="light"] .contact__info { border-top-color: rgba(0,0,0,0.12); }
[data-theme="light"] .contact__form {
  background: var(--stone-soft);
  border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .field input,
[data-theme="light"] .field textarea,
[data-theme="light"] .field select {
  color: #1a1714;
  border-bottom-color: rgba(0,0,0,0.2);
}
[data-theme="light"] .field select option { background: var(--stone-soft); color: #1a1714; }

/* Reveal-img cover */
[data-theme="light"] .reveal-img::after { background: var(--stone-soft); }

/* Sections that stay dark in BOTH themes (intentional brand pacing):
   .hero, .marquee, .stats-band, .cta-banner, .newsletter, .footer
   — these use orange/charcoal as part of the brand expression. */

/* Keep service-grid bg matching */
[data-theme="light"] .nav__cta { color: #2a2620; border-color: rgba(0,0,0,0.2); }
[data-theme="light"] .nav__cta:hover { color: var(--orange); border-color: var(--orange); }

/* ============================================================
   VISION / MISSION / GOAL
   ============================================================ */
.vmg { background: var(--charcoal); }
.vmg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vmg-card {
  position: relative;
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3vw, 44px);
  background: var(--charcoal-1);
  border-left: 3px solid var(--orange);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--t-med), background var(--t-med);
  overflow: hidden;
}
.vmg-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, transparent 50%, rgba(181,76,18,0.18) 50%);
  opacity: 0.6;
  transition: opacity var(--t-med);
}
.vmg-card:hover {
  transform: translateY(-6px);
  background: var(--charcoal-3);
}
.vmg-card:hover::before { opacity: 1; }
.vmg-card--orange { border-left-color: var(--orange); }
.vmg-card--gold { border-left-color: var(--gold); }
.vmg-card--gold::before { background: linear-gradient(135deg, transparent 50%, rgba(197,146,42,0.18) 50%); }
.vmg-card--terracotta { border-left-color: var(--terracotta); }
.vmg-card--terracotta::before { background: linear-gradient(135deg, transparent 50%, rgba(184,69,53,0.18) 50%); }

.vmg-card__letter {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 0.9;
  color: var(--orange);
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}
.vmg-card--gold .vmg-card__letter { color: var(--gold); }
.vmg-card--terracotta .vmg-card__letter { color: var(--terracotta); }

.vmg-card h3 {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
}
.vmg-card p {
  margin: 0;
  font-size: 1rem;
  color: rgba(232,224,212,0.78);
  line-height: 1.6;
}

.vmg-tagline {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(232,224,212,0.1);
  border-bottom: 1px solid rgba(232,224,212,0.1);
}
.vmg-tagline__rule {
  width: 60px; height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}
.vmg-tagline p {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--white);
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy { background: var(--charcoal-1); }
.phil-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(232,224,212,0.08);
  border: 1px solid rgba(232,224,212,0.08);
}
.phil-card {
  position: relative;
  padding: clamp(32px, 3.5vw, 48px) clamp(24px, 2.5vw, 36px);
  background: var(--charcoal-1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--t-med);
  overflow: hidden;
  min-height: 320px;
}
.phil-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms var(--ease-out);
}
.phil-card:hover { background: var(--charcoal-3); }
.phil-card:hover::before { transform: scaleX(1); }
.phil-card:hover .phil-card__letter { transform: translateY(-4px); }

.phil-card__letter {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(3.4rem, 4.5vw, 4.6rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--orange);
  transition: transform var(--t-med);
}
.phil-card--gold .phil-card__letter { color: var(--gold); }
.phil-card--orange-deep .phil-card__letter { color: #b85a1a; }
.phil-card--terracotta .phil-card__letter { color: var(--terracotta); }

.phil-card h3 {
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0;
  color: var(--white);
  letter-spacing: -0.01em;
}
.phil-card p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(232,224,212,0.72);
  line-height: 1.6;
}

/* ============================================================
   WORDS (replaces testimonials)
   ============================================================ */
.words { background: var(--charcoal-1); }
.words-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.word-card {
  position: relative;
  margin: 0;
  padding: clamp(36px, 4vw, 56px) clamp(28px, 3vw, 40px);
  background: var(--charcoal);
  border: 1px solid rgba(232,224,212,0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med);
}
.word-card:hover {
  transform: translateY(-6px);
  border-color: rgba(181,76,18,0.4);
}
.word-card--accent {
  background: linear-gradient(180deg, rgba(181,76,18,0.07), var(--charcoal));
  border-color: rgba(181,76,18,0.25);
}
.word-card__mark {
  position: absolute;
  top: 8px; left: 24px;
  font-family: var(--font-serif);
  font-size: 7rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.45;
  pointer-events: none;
}
.word-card blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  color: var(--stone);
  margin: 24px 0 0;
  flex: 1;
  letter-spacing: -0.005em;
}
.word-card blockquote em {
  color: var(--orange);
}
.word-card figcaption {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 20px;
  border-top: 1px solid rgba(232,224,212,0.08);
}

/* ============================================================
   ROLES (replaces person-based team)
   ============================================================ */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(232,224,212,0.08);
  border: 1px solid rgba(232,224,212,0.08);
}
.roles-grid .role:last-child { grid-column: span 2; }
.role {
  background: var(--charcoal);
  padding: clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  transition: background var(--t-med);
  min-height: 220px;
}
.role:hover {
  background: var(--charcoal-3);
}
.role:hover .role__num { color: var(--orange); }
.role__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  transition: color var(--t-med);
}
.role h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
  color: var(--white);
  letter-spacing: -0.01em;
}
.role p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(232,224,212,0.7);
  line-height: 1.55;
}

/* Footer tagline addition */
.footer__tagline {
  margin-top: 12px !important;
  font-size: 0.95rem !important;
  color: var(--orange) !important;
}

/* ============================================================
   LIGHT MODE — new sections
   ============================================================ */
[data-theme="light"] .vmg,
[data-theme="light"] .philosophy,
[data-theme="light"] .words { background: var(--stone-soft); }
[data-theme="light"] .vmg-card,
[data-theme="light"] .word-card,
[data-theme="light"] .role,
[data-theme="light"] .phil-card { background: var(--stone-soft); }
[data-theme="light"] .vmg-card:hover,
[data-theme="light"] .role:hover,
[data-theme="light"] .phil-card:hover { background: #ebe5d8; }
[data-theme="light"] .word-card { background: #ffffff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .word-card--accent {
  background: linear-gradient(180deg, rgba(181,76,18,0.06), #ffffff);
  border-color: rgba(181,76,18,0.25);
}
[data-theme="light"] .vmg-card h3,
[data-theme="light"] .phil-card h3,
[data-theme="light"] .role h3 { color: #1a1714; }
[data-theme="light"] .vmg-card p,
[data-theme="light"] .phil-card p,
[data-theme="light"] .role p,
[data-theme="light"] .word-card blockquote { color: #4a443d; }
[data-theme="light"] .role__num,
[data-theme="light"] .word-card figcaption { color: #6a635a; }
[data-theme="light"] .word-card figcaption { border-top-color: rgba(0,0,0,0.08); }
[data-theme="light"] .vmg-tagline { border-color: rgba(0,0,0,0.12); }
[data-theme="light"] .vmg-tagline p { color: #1a1714; }
[data-theme="light"] .roles-grid,
[data-theme="light"] .phil-grid {
  background: rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.08);
}

/* Hero in light mode keeps dark background image, but adjust top strip border */
[data-theme="light"] .hero__top { border-bottom-color: rgba(255,255,255,0.06); }

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__feature-link { height: clamp(360px, 50vh, 480px); }
  .hero__bottom-row { grid-template-columns: 1fr 1fr; }
  .hero__bottom-item--quote { grid-column: span 2; border-left: none; padding-left: 0; padding-top: 16px; border-top: 1px solid rgba(232,224,212,0.12); text-align: left; }
}
@media (max-width: 980px) {
  .vmg-grid { grid-template-columns: 1fr; }
  .phil-grid { grid-template-columns: repeat(2, 1fr); }
  .words-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__top { padding-top: 96px; }
  .hero__top-row { gap: 12px 24px; }
  .hero__top-item { font-size: 0.66rem; }
  .hero__line--shift { padding-left: 0; }
}
@media (max-width: 560px) {
  .phil-grid { grid-template-columns: 1fr; }
  .roles-grid { grid-template-columns: 1fr; }
  .hero__bottom-row { grid-template-columns: 1fr; }
  .hero__bottom-item--quote { grid-column: span 1; }
  .hero__feature-link { height: 360px; }
  .hero__bracket { width: 60px; height: 60px; }
  .hero__diagline { width: 100px; }
}

/* ============================================================
   POLISH — micro-interactions on top of existing hover states
   ============================================================ */

/* Animated trailing arrow on buttons & links */
.btn-arr {
  display: inline-block;
  transition: transform 360ms var(--ease-out);
  will-change: transform;
}
.btn:hover .btn-arr,
.service__link:hover .btn-arr,
.project:hover .btn-arr { transform: translateX(7px); }

/* Project card subtle lift to match hero feature card */
.project { transition: transform var(--t-med); }
.project:hover { transform: translateY(-4px); }

/* Service card lift */
.service { transition: background var(--t-med), transform var(--t-med); }
.service:hover { transform: translateY(-4px); }

/* 3D Visualization tile reveals an interior render on hover */
.service--accent { position: relative; isolation: isolate; }
.service--accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(14,14,14,0.82), rgba(14,14,14,0.88)),
    url('assets/interiors/dining-luxe.jpg') center / cover no-repeat;
  opacity: 0;
  transition: opacity 600ms ease;
  z-index: -1;
}
.service--accent:hover::before { opacity: 1; }

/* Anchor links land below the fixed nav (78px nav + small breathing room).
   scroll-padding-top works with the existing html { scroll-behavior: smooth } */
html { scroll-padding-top: 96px; }

/* Hero scroll indicator hover lifts */
.hero__scroll { transition: color var(--t-med), transform var(--t-med); }
.hero__scroll:hover { color: var(--orange); transform: translateY(-3px); }

/* Logo gentle scale on hover */
.nav__logo img { transition: height var(--t-med), transform var(--t-med); }
.nav__logo:hover img { transform: scale(1.04); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .reveal-img::after { display: none; }
  .marquee__track { animation: none; }
  .reveal-line { opacity: 1; transform: none; }
}
