/* ===== DESIGN TOKENS ===== */
:root {
  --font-sans: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --ink: #f2ede6;
  --muted: #b8b0a4;
  --soft: #9a8e7e;
  --gold: #c9a96e;
  --gold-deep: #8b6914;
  --warm: #d4a574;
  --concrete: #3a3632;
  --coal: #0e0d0c;
  --coal-2: #141312;
  --panel: rgba(242, 237, 230, 0.06);
  --mist: rgba(201, 169, 110, 0.12);
  --mist-soft: rgba(242, 237, 230, 0.04);
  --line: rgba(242, 237, 230, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  --radius: 6px;
  --container: min(1120px, calc(100vw - 40px));
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* ===== RESET ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(120, 90, 40, .1), transparent 42%),
    linear-gradient(180deg, #080706 0%, #0e0d0c 42%, #0a0908 100%);
  font-family: var(--font-sans);
  line-height: 1.55;
  overflow-x: hidden;
}

/* Subtle grid texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .08;
  background-image:
    linear-gradient(rgba(242, 237, 230, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 237, 230, .03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 72%, transparent);
}

/* Ambient glow */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .14;
  background:
    linear-gradient(105deg, transparent 0 8%, rgba(201, 169, 110, .1) 20%, transparent 38% 100%),
    linear-gradient(165deg, transparent 0 48%, rgba(212, 165, 116, .08) 56%, transparent 74% 100%);
  filter: blur(34px);
}

img, svg { display: block; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #0c0b09;
  background: var(--gold);
  transition: transform .2s var(--ease);
}

.skip-link:focus { transform: translateY(0); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  min-height: 76px;
  margin: 0 auto;
  padding-top: env(safe-area-inset-top);
  transition: color .28s var(--ease), transform .28s var(--ease);
}

.site-header.is-scrolled {
  min-height: 76px;
  background: transparent;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-weight: 700;
  letter-spacing: .02em;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .5);
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: transparent;
}

.brand-mark svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  min-height: 44px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--muted);
  text-shadow: 0 8px 24px rgba(0, 0, 0, .5);
  transition: color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background: currentColor;
  transition: transform .22s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

.hero-stage {
  --hero-back-x: 0px;
  --hero-back-y: 0px;
  --hero-mid-x: 0px;
  --hero-mid-y: 0px;
  --hero-front-x: 0px;
  --hero-front-y: 0px;
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  background: #060504;
  isolation: isolate;
}

.hero-layer,
.hero-atmosphere,
.hero-light,
.hero-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-layer { will-change: transform; }

/* Back layer - hero image */
.hero-layer-back {
  transform: translate3d(var(--hero-back-x), var(--hero-back-y), 0);
}

.hero-layer-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  filter: contrast(1.1) saturate(.85) brightness(.7);
}

/* Mid layer - architectural lines */
.hero-layer-mid {
  opacity: .4;
  mix-blend-mode: soft-light;
  transform: translate3d(var(--hero-mid-x), var(--hero-mid-y), 0);
  background:
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(242, 237, 230, .03) 79px, rgba(242, 237, 230, .03) 80px),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(242, 237, 230, .02) 79px, rgba(242, 237, 230, .02) 80px);
  animation: hero-grid-breathe 10s var(--ease) infinite alternate;
}

/* Front layer - geometric accents */
.hero-layer-front {
  opacity: .2;
  mix-blend-mode: screen;
  transform: translate3d(var(--hero-front-x), var(--hero-front-y), 0);
  background:
    linear-gradient(62deg, transparent 0 40%, rgba(201, 169, 110, .06) 50%, transparent 60% 100%),
    linear-gradient(128deg, transparent 0 55%, rgba(242, 237, 230, .04) 65%, transparent 75% 100%);
  animation: hero-front-drift 8s var(--ease) infinite alternate;
}

/* Atmosphere layers */
.hero-atmosphere {
  z-index: 4;
  opacity: .2;
  mix-blend-mode: screen;
  filter: blur(20px);
  will-change: transform, opacity;
}

.atmo-a {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(201, 169, 110, .28), transparent 40%),
    linear-gradient(160deg, transparent 0 30%, rgba(212, 165, 116, .12) 50%, transparent 70% 100%);
  animation: atmo-drift-a 16s linear infinite alternate;
}

.atmo-b {
  opacity: .15;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(242, 237, 230, .18), transparent 35%),
    linear-gradient(45deg, transparent 0 40%, rgba(201, 169, 110, .1) 55%, transparent 70% 100%);
  animation: atmo-drift-b 22s linear infinite alternate;
}

/* Light beam */
.hero-light {
  z-index: 5;
  opacity: .4;
  mix-blend-mode: screen;
  background:
    linear-gradient(108deg, transparent 0 28%, rgba(242, 237, 230, .32) 34%, rgba(242, 237, 230, .08) 42%, transparent 50% 100%),
    radial-gradient(ellipse at 55% 10%, rgba(201, 169, 110, .18), transparent 30%);
  filter: blur(6px);
  animation: light-breathe 6s var(--ease) infinite alternate;
}

/* Vignette */
.hero-vignette {
  z-index: 8;
  background:
    radial-gradient(ellipse at 50% 44%, transparent 0 38%, rgba(0, 0, 0, .24) 62%, rgba(0, 0, 0, .8) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, .3), transparent 24%, transparent 60%, #080706 100%);
}

/* Hero content */
.hero-content {
  position: absolute;
  left: clamp(20px, 4.6vw, 58px);
  bottom: clamp(24px, 5vw, 70px);
  z-index: 10;
  max-width: min(600px, calc(100% - 40px));
  color: var(--ink);
  text-shadow: 0 3px 24px rgba(0, 0, 0, .65);
}

/* Hero animations */
@keyframes hero-grid-breathe {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: .35; }
  to { transform: translate3d(-4px, 3px, 0) scale(1.01); opacity: .45; }
}

@keyframes hero-front-drift {
  from { transform: translate3d(0, 0, 0); opacity: .18; }
  to { transform: translate3d(6px, -8px, 0); opacity: .26; }
}

@keyframes atmo-drift-a {
  from { transform: translate3d(-5%, 0, 0); opacity: .16; }
  to { transform: translate3d(5%, -1%, 0); opacity: .28; }
}

@keyframes atmo-drift-b {
  from { transform: translate3d(4%, 1%, 0); opacity: .1; }
  to { transform: translate3d(-4%, -1%, 0); opacity: .2; }
}

@keyframes light-breathe {
  from { opacity: .28; transform: translate3d(0, 0, 0) scale(1); }
  to { opacity: .48; transform: translate3d(2px, -2px, 0) scale(1.01); }
}

/* ===== TYPOGRAPHY ===== */
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  margin-right: 10px;
  vertical-align: middle;
  background: linear-gradient(90deg, transparent, currentColor);
}

h1, h2, h3, p { margin-top: 0; }

h1, h2 {
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: -.02em;
  text-shadow: 0 16px 44px rgba(0, 0, 0, .45);
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3.8rem, 9vw, 8.6rem);
  line-height: .88;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 4.6rem);
  line-height: .95;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.25;
  text-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.hero-copy,
.section-copy p,
.project-copy p,
.contact-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  text-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

/* ===== BUTTONS ===== */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 20px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 700;
  overflow: hidden;
  transition: transform .24s var(--ease), background .24s var(--ease), color .24s var(--ease), filter .24s var(--ease);
}

.button::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -55%;
  width: 42%;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-18deg);
  transition: opacity .24s var(--ease), translate .55s var(--ease);
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  transform: translateY(-2px);
  filter: saturate(1.1);
}

.button:hover::after {
  opacity: .6;
  translate: 330% 0;
}

.button:active {
  transform: translateY(0) scale(.98);
}

.button.primary {
  color: #0c0a07;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, .6), transparent 70%),
    var(--gold);
}

.button.primary:hover {
  background: var(--warm);
}

.button.ghost {
  color: var(--ink);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201, 169, 110, .1), transparent 68%),
    rgba(242, 237, 230, .04);
  backdrop-filter: blur(4px);
}

/* ===== METRICS BAND ===== */
.intro-band {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: var(--container);
  margin: 0 auto;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 18% 40%, rgba(201, 169, 110, .08), transparent 46%),
    linear-gradient(180deg, rgba(242, 237, 230, .035), rgba(242, 237, 230, .008)),
    #080706;
  backdrop-filter: blur(5px);
  overflow: hidden;
}

.intro-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .2;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(242, 237, 230, .08) 47%, transparent 51% 100%),
    radial-gradient(ellipse at 12% 20%, rgba(201, 169, 110, .14), transparent 34%);
}

.metric {
  position: relative;
  min-height: 132px;
  padding: 30px;
}

.metric::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 24px;
  width: 1px;
  opacity: .16;
  background: linear-gradient(180deg, transparent, rgba(201, 169, 110, .7), transparent);
}

.metric:last-child::after { display: none; }

.metric strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1;
}

.metric:first-child strong::after { content: "+"; }
.metric:nth-child(2) strong::after { content: "+"; }

.metric span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .06em;
}

/* ===== SECTIONS ===== */
.section {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: clamp(84px, 12vw, 150px) 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 30px auto auto 0;
  width: 1px;
  height: min(120px, 28%);
  background: linear-gradient(180deg, rgba(201, 169, 110, .5), transparent);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 120px;
}

.section-copy h2,
.contact-copy h2 {
  max-width: 720px;
}

/* ===== SERVICE CARDS ===== */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.reason-card {
  position: relative;
  min-height: 220px;
  padding: 28px;
  border: 0;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201, 169, 110, .05), transparent 58%),
    linear-gradient(145deg, rgba(242, 237, 230, .03), rgba(242, 237, 230, .008) 44%, rgba(201, 169, 110, .02)),
    #0c0b0a;
  transition: transform .28s var(--ease), background .28s var(--ease), filter .28s var(--ease);
  overflow: hidden;
}

.service-card::before,
.reason-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .3;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 35% 28%, rgba(201, 169, 110, .14), transparent 58%),
    radial-gradient(ellipse at 82% 8%, rgba(212, 165, 116, .18), transparent 38%),
    linear-gradient(115deg, transparent 0 46%, rgba(242, 237, 230, .05) 49%, transparent 52% 100%);
}

.service-card:hover,
.reason-card:hover {
  transform: translateY(-7px);
  filter: saturate(1.1);
  background:
    radial-gradient(ellipse at 40% 24%, rgba(201, 169, 110, .08), transparent 62%),
    linear-gradient(145deg, rgba(242, 237, 230, .04), rgba(201, 169, 110, .03)),
    #100f0d;
}

.service-card:hover::before,
.reason-card:hover::before {
  opacity: .5;
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--gold);
  background: radial-gradient(circle at 45% 42%, rgba(201, 169, 110, .15), rgba(201, 169, 110, .03) 68%, transparent);
  transition: transform .28s var(--ease), color .28s var(--ease);
}

.service-card:hover .service-icon {
  transform: translateY(-3px) scale(1.04);
  color: var(--ink);
}

.service-card h3,
.service-card p,
.reason-card h3,
.reason-card p,
.reason-card span {
  position: relative;
  z-index: 1;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p,
.reason-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .94rem;
}

/* ===== GALLERY STRIP ===== */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.05);
  transition: transform .7s var(--ease), filter .5s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .4));
  opacity: .6;
  transition: opacity .4s var(--ease);
}

.gallery-item:hover::after {
  opacity: .2;
}

@media (max-width: 640px) {
  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== PHILOSOPHY / REASON CARDS ===== */
.center-copy {
  max-width: 700px;
  margin: 0 auto 34px;
  text-align: center;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.reason-card { min-height: 245px; }

.reason-card span {
  display: block;
  margin-bottom: 52px;
  color: rgba(201, 169, 110, .5);
  font-family: var(--font-sans);
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 200;
  line-height: .8;
}

/* ===== PROJECT SECTION ===== */
.project-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  width: var(--container);
  margin: 0 auto;
  padding: clamp(76px, 10vw, 132px) 0;
}

.project-section::before {
  content: "";
  position: absolute;
  inset: 8% -8vw 8% auto;
  width: min(520px, 48vw);
  pointer-events: none;
  opacity: .24;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(201, 169, 110, .12), transparent 60%),
    linear-gradient(115deg, transparent 0 46%, rgba(242, 237, 230, .08) 50%, transparent 56% 100%);
  filter: blur(18px);
}

.project-media {
  position: relative;
  aspect-ratio: 1.14 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 34px 110px rgba(0, 0, 0, .32);
  isolation: isolate;
}

.project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background: linear-gradient(115deg, transparent 0 38%, rgba(201, 169, 110, .14) 49%, transparent 58% 100%);
  mix-blend-mode: screen;
  transform: translateX(-28%);
  transition: transform .8s var(--ease), opacity .45s var(--ease);
}

.project-media:hover::after {
  transform: translateX(22%);
  opacity: .42;
}

/* Project image */
.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.025);
  filter: contrast(1.08) saturate(1.06);
  transition: transform .9s var(--ease), filter .9s var(--ease);
}

.project-media:hover img {
  transform: scale(1.055);
  filter: contrast(1.12) saturate(1.12);
}

/* Project list */
.project-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
}

.project-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 15px 14px;
  background: linear-gradient(180deg, rgba(226, 220, 200, .055), rgba(226, 220, 200, .015));
  border-radius: var(--radius);
  transition: transform .24s var(--ease), background .24s var(--ease);
}

.project-list div:hover {
  transform: translateX(6px);
  background: linear-gradient(180deg, rgba(226, 220, 200, .085), rgba(226, 220, 200, .022));
}

.project-list dt {
  color: var(--soft);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-list dd {
  margin: 0;
  color: var(--ink);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(30px, 6vw, 92px);
  width: var(--container);
  margin: 0 auto 80px;
  padding: clamp(32px, 5vw, 62px);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 22% 24%, rgba(212, 175, 55, .09), transparent 54%),
    linear-gradient(140deg, rgba(226, 220, 200, .035), rgba(82, 70, 50, .14) 38%, rgba(4, 4, 3, .9)),
    #0a0a08;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .18);
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: min(560px, 70vw);
  aspect-ratio: 1;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(1, 1, 1, .72), transparent 60%),
    linear-gradient(135deg, transparent 0 36%, rgba(212, 175, 55, .12) 46%, transparent 64% 100%);
  filter: blur(20px);
  opacity: .86;
  pointer-events: none;
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, .36), transparent 48%, rgba(0, 0, 0, .52));
}

.contact-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  display: grid;
  gap: 14px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  text-shadow: 0 10px 30px rgba(0, 0, 0, .32);
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-lines a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, .6);
  text-underline-offset: 5px;
}

.email-panel {
  position: relative;
  z-index: 1;
  align-self: center;
  display: grid;
  gap: 16px;
  min-height: 250px;
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 32% 24%, rgba(212, 175, 55, .16), transparent 66%),
    linear-gradient(145deg, rgba(226, 220, 200, .065), rgba(212, 175, 55, .035)),
    rgba(5, 5, 4, .5);
  overflow: hidden;
}

.email-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(245, 240, 220, .13) 48%, transparent 56% 100%),
    radial-gradient(ellipse at 76% 82%, rgba(212, 175, 55, .16), transparent 45%);
}

.email-kicker {
  position: relative;
  z-index: 1;
  color: var(--soft);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.email-cta {
  position: relative;
  z-index: 1;
  width: min(100%, 320px);
  min-height: 62px;
  font-size: 1.02rem;
}

.email-panel p {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0;
  color: var(--muted);
}

/* ===== FOOTER ===== */
.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 24px;
  align-items: center;
  width: var(--container);
  margin: 0 auto;
  padding: 34px 0 46px;
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: end;
}

.footer-links a {
  min-height: 44px;
  padding: 12px;
  border-radius: var(--radius);
}

.footer-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, .06);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  filter: blur(8px);
  transition: opacity .8s var(--ease), transform .8s var(--ease), filter .8s var(--ease);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .site-header {
    width: calc(100vw - 28px);
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    width: min(280px, calc(100vw - 28px));
    padding: 12px;
    border-radius: var(--radius);
    background:
      radial-gradient(ellipse at 28% 18%, rgba(212, 175, 55, .12), transparent 62%),
      rgba(8, 8, 6, .36);
    backdrop-filter: blur(4px) saturate(104%);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .22s var(--ease), transform .22s var(--ease);
  }

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

  .hero-content h1 {
    font-size: clamp(3.4rem, 14vw, 6rem);
  }

  .intro-band,
  .split,
  .project-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .intro-band {
    margin-top: 0;
  }

  .metric::after {
    top: auto;
    left: 24px;
    right: 24px;
    bottom: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, .65), transparent);
  }

  .metric:last-child::after {
    display: none;
  }

  .section-copy {
    position: static;
  }

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

  .site-footer,
  .footer-links {
    justify-content: start;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 1120px);
  }

  h1 {
    font-size: clamp(3.3rem, 18vw, 5.4rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .service-card,
  .reason-card {
    min-height: auto;
  }

  .reason-card span {
    margin-bottom: 34px;
  }

  .project-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-section {
    padding: 26px 18px;
  }
}

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

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