/* =========================================================================
   Drake Media Concepts — "Cinematic Glass"
   Editorial broadsheet × Apple keynote × frosted glass surfaces.
   ========================================================================= */

/* -------- 1. Tokens — Bright white & warm brown ----------------------- */
:root {
  /* Palette — clean white base, deep brown text, warm brown accents */
  --bg-0:     #ffffff;            /* pure white */
  --bg-1:     #fcfaf6;            /* page bg — warmest of whites, almost imperceptible cream */
  --bg-2:     #f5efe2;            /* raised tan (used sparingly) */
  --ink:      #1f160a;            /* deep espresso text */
  --ink-soft: #574028;            /* medium brown */
  --ink-mute: #8a7458;            /* light brown / captions */
  --line:     rgba(90,55,20,0.10);
  --line-2:   rgba(90,55,20,0.18);

  --accent:        #8b5a2b;       /* rich brown — primary accent */
  --accent-warm:   #c47833;       /* warm amber for highlights */
  --accent-deep:   #5e3a18;       /* deep coffee for pressed state */
  --cool:          #a67c52;       /* tan counterpoint */
  --ice:           #d4a574;       /* light caramel */

  /* Brown gradient — used for hero overlays, CTAs, accents */
  --grad-warm: linear-gradient(135deg, #8b5a2b 0%, #c47833 50%, #d4a574 100%);
  --grad-cream: linear-gradient(180deg, #ffffff 0%, #fcfaf6 100%);

  /* Glass — frosted on white, with warm brown borders */
  --glass-bg:      rgba(255,255,255,0.65);
  --glass-bg-hi:   rgba(255,255,255,0.85);
  --glass-border:  rgba(139,90,43,0.14);
  --glass-shadow:  0 1px 0 rgba(255,255,255,0.9) inset,
                   0 30px 60px -20px rgba(90,55,20,0.14),
                   0 8px 24px -8px rgba(90,55,20,0.10);

  /* Type */
  --serif: "Instrument Serif", "Iowan Old Style", "Apple Garamond", Georgia, serif;
  --sans:  "Manrope", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;

  /* Geometry */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  /* Spacing scale */
  --gutter: clamp(16px, 4vw, 40px);
  --shell-max: 1320px;

  /* Motion */
  --ease-out: cubic-bezier(.2,.7,.2,1);
  --ease-in-out: cubic-bezier(.6,.05,.2,1);
}

/* -------- 2. Reset ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  background: var(--bg-1);
}
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg-1);
  overflow-x: hidden;
  min-height: 100vh;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
::selection { background: var(--accent); color: var(--bg-0); }

/* -------- 3. Ambient layers --------------------------------------------- */
.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.ambient__aurora {
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(60% 50% at 20% 10%, rgba(196,120,51,0.20), transparent 60%),
    radial-gradient(50% 40% at 80% 0%,  rgba(139,90,43,0.16), transparent 70%),
    radial-gradient(60% 60% at 50% 100%, rgba(212,165,116,0.18), transparent 70%);
  filter: blur(20px);
}
.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .22;
  animation: float 22s var(--ease-in-out) infinite;
  will-change: transform;
}
.ambient__orb--a {
  width: 520px; height: 520px;
  left: -120px; top: -100px;
  background: radial-gradient(circle, rgba(196,120,51,0.55), transparent 65%);
}
.ambient__orb--b {
  width: 420px; height: 420px;
  right: -80px; top: 30%;
  background: radial-gradient(circle, rgba(139,90,43,0.45), transparent 65%);
  animation-duration: 28s;
  animation-direction: reverse;
}
.ambient__orb--c {
  width: 360px; height: 360px;
  left: 40%; bottom: -120px;
  background: radial-gradient(circle, rgba(212,165,116,0.40), transparent 65%);
  animation-duration: 32s;
}
@keyframes float {
  0%, 100% { transform: translate3d(0,0,0)   scale(1); }
  33%      { transform: translate3d(40px,-30px,0) scale(1.08); }
  66%      { transform: translate3d(-30px,20px,0) scale(.96); }
}
.ambient__grain {
  position: absolute;
  inset: 0;
  opacity: .08;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.4  0 0 0 0 0.25  0 0 0 0 0.1  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* -------- 4. Shell / utilities ------------------------------------------ */
.main { position: relative; z-index: 1; }
.shell {
  width: 100%;
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.italic { font-style: italic; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
  margin: clamp(40px, 8vw, 80px) auto;
  width: min(100%, var(--shell-max));
}

/* -------- 5. Announce bar ------------------------------------------------ */
.announce {
  position: relative;
  z-index: 5;
  font-size: 12.5px;
  letter-spacing: .02em;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  background: rgba(255,250,242,0.9);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}
.announce__inner {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 9px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.announce__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255,122,89,0.6);
  animation: pulse 2.4s var(--ease-out) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,122,89,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(255,122,89,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,122,89,0); }
}
.announce__link {
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease-out);
}
.announce__link:hover { border-color: var(--accent); }

/* -------- 6. Navigation -------------------------------------------------- */
.nav {
  position: sticky;
  top: 12px;
  z-index: 40;
  margin: 12px var(--gutter) 0;
  transition: top .3s var(--ease-out);
}
.nav__inner {
  max-width: var(--shell-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 12px 12px 12px 18px;
  border-radius: 999px;
  background: rgba(13,13,20,0.55);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  box-shadow: var(--glass-shadow);
}
.nav.is-stuck .nav__inner {
  background: rgba(13,13,20,0.78);
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -.01em;
  color: var(--ink);
}
.nav__mark { display: inline-flex; }
.nav__wordmark { display: inline-flex; gap: 6px; align-items: baseline; }
.nav__wordmark-d { font-style: italic; }
.nav__wordmark-m { font-family: var(--sans); font-size: 14px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }

.nav__links {
  display: flex;
  gap: 4px;
  justify-self: center;
}
.nav__link {
  position: relative;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color .2s var(--ease-out), background-color .2s var(--ease-out);
}
.nav__link:hover { color: var(--ink); background: rgba(255,255,255,0.04); }
.nav__link.is-active {
  color: var(--ink);
  background: rgba(255,255,255,0.07);
}
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
}
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg-0);
  transition: transform .25s var(--ease-out), background-color .25s var(--ease-out);
}
.nav__cta:hover { transform: translateY(-1px); background: var(--accent-warm); }
.nav__cta-arrow { transition: transform .25s var(--ease-out); }
.nav__cta:hover .nav__cta-arrow { transform: translateX(3px); }

.nav__burger { display: none; }

/* Mobile sheet */
.nav__sheet {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  padding: 16px;
  border-radius: var(--r-lg);
  background: rgba(13,13,20,0.92);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  flex-direction: column;
  gap: 4px;
}
.nav__sheet.is-open { display: flex; }
.nav__sheet-link {
  padding: 14px 16px;
  font-family: var(--serif);
  font-size: 22px;
  border-radius: var(--r-md);
}
.nav__sheet-link:hover { background: rgba(255,255,255,0.05); }

@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__inner { grid-template-columns: 1fr auto; padding: 10px 10px 10px 16px; }
  .nav__burger {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
  }
  .nav__burger span {
    width: 18px; height: 1.5px;
    background: var(--ink);
    transition: transform .3s var(--ease-out), opacity .3s var(--ease-out);
  }
  .nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

/* -------- 7. Glass primitive -------------------------------------------- */
.glass {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: var(--glass-shadow);
}
/* Conic-gradient hairline — that premium 1px rim */
.glass--rim::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from 220deg,
    rgba(255,255,255,0.30), rgba(255,255,255,0.04),
    rgba(255,255,255,0.18), rgba(255,255,255,0.04));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* -------- 8. Buttons ----------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 999px;
  letter-spacing: .01em;
  transition: transform .25s var(--ease-out), background-color .25s var(--ease-out), color .25s var(--ease-out);
  white-space: nowrap;
}
.btn--primary { background: var(--ink); color: var(--bg-0); }
.btn--primary:hover { background: var(--accent-warm); transform: translateY(-1px); }
.btn--ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink);
}
.btn--ghost:hover { background: rgba(255,255,255,0.10); }
.btn__arrow { transition: transform .25s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* -------- 9. Hero -------------------------------------------------------- */
.hero {
  padding: clamp(60px, 10vw, 120px) 0 clamp(40px, 8vw, 80px);
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: end;
}
.hero__h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 10.5vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin: 24px 0 0;
  color: var(--ink);
}
.hero__h1 em { font-style: italic; color: var(--accent-warm); }
.hero__h1-line { display: block; }
.hero__h1-line.is-indent { padding-left: clamp(40px, 8vw, 140px); }

.hero__sub {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: end;
  margin-top: clamp(32px, 5vw, 56px);
}
.hero__sub p {
  margin: 0;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero glass tile — floating preview frame, very Apple-keynote */
.hero__frame {
  margin-top: clamp(48px, 7vw, 88px);
  padding: clamp(20px, 3vw, 32px);
  border-radius: var(--r-xl);
}
.hero__frame-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  align-items: center;
}
.hero__frame-stat {
  grid-column: span 3;
  padding: 18px 20px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
}
.hero__frame-stat .n {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1;
  background: linear-gradient(180deg, var(--ink), var(--accent-warm));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.hero__frame-stat .l {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

@media (max-width: 880px) {
  .hero__sub { grid-template-columns: 1fr; align-items: start; }
  .hero__h1-line.is-indent { padding-left: 24px; }
  .hero__frame-stat { grid-column: span 6; }
}

/* -------- 10. Sections / typography ------------------------------------- */
.section { padding: clamp(60px, 9vw, 120px) 0; position: relative; }
.section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 64px);
  margin-bottom: clamp(40px, 6vw, 72px);
  align-items: end;
}
.section__h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 16px 0 0;
}
.section__h em { font-style: italic; color: var(--accent-warm); }
.section__lede {
  margin: 0;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 50ch;
  justify-self: end;
}
@media (max-width: 880px) {
  .section__head { grid-template-columns: 1fr; }
  .section__lede { justify-self: start; }
}

/* -------- 11. Marquee (broadcast ticker) -------------------------------- */
.marquee {
  position: relative;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255,255,255,0.015);
}
.marquee__track {
  display: flex;
  gap: 56px;
  animation: marquee 40s linear infinite;
  width: max-content;
  white-space: nowrap;
}
.marquee__track > span {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 56px);
  font-style: italic;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.marquee__track > span::after {
  content: "✦";
  font-size: .55em;
  color: var(--accent);
  font-style: normal;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* -------- 12. Services -------------------------------------------------- */
.services {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.service {
  grid-column: span 4;
  padding: 28px;
  border-radius: var(--r-lg);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease-out), background-color .4s var(--ease-out);
}
.service:hover { transform: translateY(-4px); background: var(--glass-bg-hi); }
.service__no {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-mute);
  font-size: 18px;
  letter-spacing: -.01em;
}
.service__kicker {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
.service__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(26px, 2.4vw, 34px);
  line-height: 1.05;
  margin: 0 0 14px;
  letter-spacing: -.02em;
}
.service__body {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}
.service__bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-top: 24px;
}
.service__more {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .25s var(--ease-out);
}
.service:hover .service__more { color: var(--accent-warm); }

/* Tilt glow that follows cursor — wired in TS */
.service::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 50%),
    rgba(255,179,138,0.15), transparent 60%);
  opacity: 0;
  transition: opacity .35s var(--ease-out);
  pointer-events: none;
}
.service:hover::after { opacity: 1; }

/* Featured larger card — first one */
.service:first-child { grid-column: span 8; min-height: 380px; }
.service:first-child .service__title { font-size: clamp(32px, 3.6vw, 52px); }

@media (max-width: 1100px) {
  .service { grid-column: span 6; min-height: 280px; }
  .service:first-child { grid-column: span 12; }
}
@media (max-width: 720px) {
  .service { grid-column: span 12; }
}

/* -------- 13. Locations ------------------------------------------------- */
.locations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.loc {
  padding: 28px 24px;
  border-radius: var(--r-lg);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease-out);
}
.loc:hover { transform: translateY(-4px); }
.loc__role {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}
.loc__city {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 38px);
  letter-spacing: -.02em;
  margin: 12px 0 4px;
}
.loc__state {
  color: var(--ink-soft);
  font-size: 14px;
}
.loc__pin {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--cool));
  position: relative;
  margin-bottom: 16px;
}
.loc__pin::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: var(--bg-1);
}
@media (max-width: 880px) { .locations { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .locations { grid-template-columns: 1fr; } }

/* -------- 14. Process numbered list ------------------------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.process__step {
  background: var(--bg-1);
  padding: 32px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  align-items: start;
  transition: background-color .3s var(--ease-out);
}
.process__step:hover { background: rgba(255,255,255,0.025); }
.process__n {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1;
  color: var(--accent-warm);
}
.process__h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  margin: 0 0 8px;
  letter-spacing: -.015em;
}
.process__b {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}
@media (max-width: 720px) { .process { grid-template-columns: 1fr; } }

/* -------- 15. CTA banner ------------------------------------------------ */
.cta {
  padding: clamp(48px, 7vw, 88px);
  border-radius: var(--r-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta__h {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 6vw, 84px);
  line-height: 0.95;
  margin: 12px 0 24px;
  letter-spacing: -.025em;
}
.cta__h em { font-style: italic; color: var(--accent-warm); }
.cta__p {
  margin: 0 auto 32px;
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.2vw, 18px);
}

/* -------- 16. Form ------------------------------------------------------ */
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { position: relative; grid-column: span 1; }
.field--full { grid-column: span 2; }
.field__label {
  position: absolute;
  top: 18px;
  left: 18px;
  font-size: 14px;
  color: var(--ink-mute);
  pointer-events: none;
  transition: transform .25s var(--ease-out), color .25s var(--ease-out), font-size .25s var(--ease-out);
}
.field__input,
.field__textarea {
  width: 100%;
  padding: 26px 18px 12px;
  font: inherit;
  color: var(--ink);
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  outline: none;
  transition: border-color .25s var(--ease-out), background-color .25s var(--ease-out);
}
.field__textarea { min-height: 160px; resize: vertical; padding-top: 28px; }
.field__input:focus,
.field__textarea:focus,
.field__input:not(:placeholder-shown),
.field__textarea:not(:placeholder-shown) {
  border-color: var(--line-2);
  background: rgba(255,255,255,0.05);
}
.field__input:focus + .field__label,
.field__textarea:focus + .field__label,
.field__input:not(:placeholder-shown) + .field__label,
.field__textarea:not(:placeholder-shown) + .field__label {
  transform: translateY(-12px);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-warm);
}
@media (max-width: 720px) { .form { grid-template-columns: 1fr; } .field, .field--full { grid-column: span 1; } }

/* -------- 17. Footer ---------------------------------------------------- */
.foot {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 8vw, 100px) var(--gutter) 32px;
  border-top: 1px solid var(--line);
  margin-top: 80px;
  background: linear-gradient(180deg, transparent, rgba(255,122,89,0.04));
}
.foot__top {
  max-width: var(--shell-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  padding-bottom: 80px;
  border-bottom: 1px solid var(--line);
}
.foot__display {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: -.025em;
  color: var(--ink);
  display: block;
  margin-bottom: 28px;
}
.foot__display em { color: var(--accent-warm); }
.foot__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.04);
  transition: background-color .25s var(--ease-out);
}
.foot__cta:hover { background: rgba(255,255,255,0.1); }
.foot__cta-arrow { transition: transform .25s var(--ease-out); }
.foot__cta:hover .foot__cta-arrow { transform: translate(3px,-3px); }

.foot__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.foot__col { display: flex; flex-direction: column; gap: 10px; }
.foot__h {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 6px;
  font-weight: 500;
}
.foot__col a, .foot__col span {
  color: var(--ink-soft);
  font-size: 14.5px;
  transition: color .2s var(--ease-out);
}
.foot__col a:hover { color: var(--ink); }

.foot__addr {
  max-width: var(--shell-max);
  margin: 32px auto 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  align-items: baseline;
  flex-wrap: wrap;
}
.foot__addr-label {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.foot__addr-value {
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 24px);
  color: var(--ink);
  letter-spacing: -.005em;
}

.foot__bot {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12.5px;
  color: var(--ink-mute);
  letter-spacing: .04em;
}
.foot__bot-mid { font-style: italic; font-family: var(--serif); font-size: 15px; }

@media (max-width: 880px) {
  .foot__top { grid-template-columns: 1fr; padding-bottom: 48px; }
  .foot__cols { grid-template-columns: repeat(2, 1fr); }
}

/* -------- 18. Reveal animations ---------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
[data-reveal][data-delay="5"] { transition-delay: .40s; }
[data-reveal][data-delay="6"] { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .001s !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* -------- 19. Scroll-driven hero parallax ------------------------------- */
.hero { transform: translateY(calc(var(--scroll, 0) * -0.04px)); }

/* -------- 20. About / Studio specific ----------------------------------- */
.studio-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.studio-grid__lede {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -.015em;
}
.studio-grid__lede em { color: var(--accent-warm); }
.studio-grid__body p {
  margin: 0 0 1.2em;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}
.studio-grid__body p:last-child { margin-bottom: 0; }
@media (max-width: 880px) { .studio-grid { grid-template-columns: 1fr; } }

/* -------- 21. Service detail (services page) --------------------------- */
.service-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 8px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding-left .3s var(--ease-out), background-color .3s var(--ease-out);
}
.service-row:hover { padding-left: 24px; background: rgba(255,255,255,0.02); }
.service-row__no { font-family: var(--serif); font-style: italic; color: var(--ink-mute); }
.service-row__title {
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -.015em;
}
.service-row__body { color: var(--ink-soft); font-size: 15.5px; }
.service-row__arrow { color: var(--ink-soft); transition: transform .3s var(--ease-out), color .3s var(--ease-out); }
.service-row:hover .service-row__arrow { transform: translateX(8px); color: var(--accent-warm); }
@media (max-width: 880px) {
  .service-row { grid-template-columns: 50px 1fr; }
  .service-row__body, .service-row__arrow { display: none; }
}

/* -------- 22. Filter pills (Completed Jobs) ----------------------------- */
.pill-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.pill {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.03);
  color: var(--ink-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out);
}
.pill:hover { background: rgba(255,255,255,0.07); color: var(--ink); }
.pill.is-active {
  background: var(--ink);
  color: var(--bg-0);
  border-color: var(--ink);
}

/* -------- 23. Completed jobs grid -------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.job {
  grid-column: span 4;
  padding: 24px;
  border-radius: var(--r-lg);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease-out), opacity .4s var(--ease-out);
}
.job.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(.96);
  position: absolute;
  visibility: hidden;
}
.job:hover { transform: translateY(-4px); }
.job__cat {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
}
.job__title {
  font-family: var(--serif);
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -.015em;
  margin: 12px 0 8px;
  line-height: 1.1;
}
.job__desc { color: var(--ink-soft); font-size: 14.5px; margin: 0 0 18px; }
.job__tag { font-size: 12px; color: var(--ink-mute); letter-spacing: .04em; }

/* Visual mock — gradient placeholder for the project image */
.job__visual {
  position: absolute;
  inset: auto 0 0 0;
  height: 60%;
  border-radius: 0 0 var(--r-lg) var(--r-lg);
  opacity: .25;
  z-index: -1;
  background: linear-gradient(135deg,
    rgba(255,122,89,0.4),
    rgba(122,92,255,0.3),
    rgba(154,230,255,0.2));
  filter: blur(10px);
}
.job:nth-child(3n) .job__visual { background: linear-gradient(135deg, rgba(122,92,255,0.4), rgba(255,122,89,0.3)); }
.job:nth-child(3n+1) .job__visual { background: linear-gradient(135deg, rgba(154,230,255,0.4), rgba(122,92,255,0.3)); }

@media (max-width: 1100px) { .job { grid-column: span 6; } }
@media (max-width: 720px) { .job { grid-column: span 12; } }

/* -------- 24. Contact grid ---------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.contact-info {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info__block { padding: 24px; border-radius: var(--r-lg); }
.contact-info__h {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 12px;
  font-weight: 500;
}
.contact-info__v {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  letter-spacing: -.01em;
  line-height: 1.3;
  display: block;
  color: var(--ink);
}
.contact-info__v + .contact-info__v { margin-top: 8px; font-size: 18px; color: var(--ink-soft); }
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
}

/* ─────────────────────────────────────────────────────────────────────
   25. Hero with editable image background
   ───────────────────────────────────────────────────────────────────── */
.hero--imaged {
  position: relative;
  padding-top: clamp(160px, 16vw, 220px);
  padding-bottom: clamp(80px, 8vw, 120px);
  margin-top: -88px;
  isolation: isolate;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-2);  /* fallback while image loads */
  background-size: cover;
  background-position: center;
  filter: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    /* Top: subtle dark wash for white-text contrast (35% top → near-zero by 60%) */
    linear-gradient(180deg,
      rgba(20,14,5,0.42) 0%,
      rgba(20,14,5,0.18) 35%,
      rgba(20,14,5,0.05) 60%,
      rgba(20,14,5,0.0)  78%,
      rgba(255,250,242,0.85) 100%),
    /* Subtle warm tint, top-left */
    linear-gradient(135deg, rgba(139,90,43,0.18), transparent 55%);
}
.hero__inner { position: relative; z-index: 1; }
.eyebrow--light { color: rgba(255,250,242,0.85); }
.hero__h1--light { color: #fffaf2; text-shadow: 0 2px 30px rgba(42,29,14,0.5); }
.hero__h1--light em { color: #ffd9a8; font-style: italic; }
.hero--imaged .hero__sub p { color: rgba(255,250,242,0.9); }
.hero--imaged .hero__frame {
  background: rgba(255,250,242,0.92);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}
.hero--imaged .hero__frame-stat .n { color: var(--accent); }
.hero--imaged .hero__frame-stat .l { color: var(--ink-soft); }

/* Light hero buttons */
.hero--imaged .btn--primary {
  background: var(--grad-warm);
  color: #fff;
  box-shadow: 0 8px 24px -6px rgba(139,90,43,0.5);
}
.hero--imaged .btn--ghost {
  background: rgba(255,250,242,0.18);
  color: #fffaf2;
  border: 1px solid rgba(255,250,242,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero--imaged .btn--ghost:hover { background: rgba(255,250,242,0.28); }

/* ─────────────────────────────────────────────────────────────────────
   26. Service cards with images
   ───────────────────────────────────────────────────────────────────── */
.service--imaged {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.service__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--glass-border);
  transition: transform .6s var(--ease-out);
}
.service--imaged:hover .service__media { transform: scale(1.04); }
.service__inner { padding: 24px 28px 12px; flex: 1; }
.service__bottom { padding: 0 28px 24px; }

/* ─────────────────────────────────────────────────────────────────────
   27. Featured strip (home page recent work)
   ───────────────────────────────────────────────────────────────────── */
.featured-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.featured-card {
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  background-color: var(--bg-2);
  color: #fffaf2;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease-out);
}
.featured-card:hover { transform: translateY(-6px); }
.featured-card__cat {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,217,168,0.95);
  margin-bottom: 8px;
}
.featured-card__title {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -.015em;
  line-height: 1.15;
  margin: 0;
}
@media (max-width: 900px)  { .featured-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px)  { .featured-strip { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────────────────
   28. Image grid (about page)
   ───────────────────────────────────────────────────────────────────── */
.img-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.img-tile {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-2);
}
.img-tile__media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s var(--ease-out);
}
.img-tile:hover .img-tile__media { transform: scale(1.06); }
.img-tile__caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 20px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  background: linear-gradient(180deg, transparent, rgba(42,29,14,0.85));
  color: #fffaf2;
}
.img-tile__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: rgba(255,217,168,0.95);
}
.img-tile__title {
  font-family: var(--serif);
  font-size: clamp(18px, 1.5vw, 22px);
  letter-spacing: -.01em;
}
@media (max-width: 800px) { .img-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .img-grid { grid-template-columns: 1fr; } }

/* ─────────────────────────────────────────────────────────────────────
   29. Service rows (services page) — alternating image / text
   ───────────────────────────────────────────────────────────────────── */
.svc-rows { display: flex; flex-direction: column; gap: clamp(48px, 7vw, 100px); }
.svc-row {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.svc-row--reverse { grid-template-columns: 5fr 6fr; }
.svc-row--reverse .svc-row__media { order: 2; }
.svc-row__media {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  background-size: cover;
  background-position: center;
  background-color: var(--bg-2);
  box-shadow: 0 30px 60px -20px rgba(90,55,20,0.25);
}
.svc-row__media--empty { background: var(--grad-warm); opacity: .15; }
.svc-row__body { display: flex; flex-direction: column; gap: 8px; }
.svc-row__no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 48px;
  color: var(--accent-warm);
  line-height: 1;
}
.svc-row__kicker {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
.svc-row__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 4px 0 12px;
  color: var(--ink);
}
.svc-row__text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.svc-row__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14.5px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  align-self: flex-start;
  transition: gap .25s var(--ease-out);
}
.svc-row__cta:hover { gap: 14px; }
@media (max-width: 800px) {
  .svc-row, .svc-row--reverse { grid-template-columns: 1fr; }
  .svc-row--reverse .svc-row__media { order: 0; }
}

/* ─────────────────────────────────────────────────────────────────────
   30. Job card with image (Completed page)
   ───────────────────────────────────────────────────────────────────── */
.job--imaged {
  color: #fffaf2;
  border: none;
  min-height: 320px;
}
.job--imaged .job__cat { color: rgba(255,217,168,0.95); }
.job--imaged .job__title { color: #fffaf2; }
.job--imaged .job__desc { color: rgba(255,250,242,0.88); }
.job--imaged .job__tag { color: rgba(255,250,242,0.7); }

/* ─────────────────────────────────────────────────────────────────────
   31. Light-theme tweaks for inherited components
   ───────────────────────────────────────────────────────────────────── */
.btn--primary {
  background: var(--grad-warm);
  color: #fffaf2;
  box-shadow: 0 6px 20px -8px rgba(139,90,43,0.5);
}
.btn--primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn--ghost {
  background: rgba(139,90,43,0.06);
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover { background: rgba(139,90,43,0.12); }

.hero:not(.hero--imaged) .hero__h1 em { color: var(--accent); }
.hero:not(.hero--imaged) .hero__h1 { color: var(--ink); }

/* CTA on light bg */
.cta__h em { color: var(--accent); }
.cta__h { color: var(--ink); }

/* Service cards on light bg */
.service__title { color: var(--ink); }
.service__body { color: var(--ink-soft); }

/* Marquee on light bg */
.marquee {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee__track span { color: var(--ink); }
.marquee__track span::after { background: var(--accent-warm); }

/* Section headings */
.section__h em { color: var(--accent); }
.section__h { color: var(--ink); }
.section__lede { color: var(--ink-soft); }

/* Field inputs on light */
.field__input, .field__textarea {
  background: rgba(255,250,242,0.5);
  color: var(--ink);
  border-bottom-color: var(--line-2);
}
.field__input:focus, .field__textarea:focus { border-bottom-color: var(--accent); }
.field__label { color: var(--ink-mute); }

/* Footer */
.foot { background: var(--bg-2); }
.foot__display em { color: var(--accent); }
.foot__col a, .foot__col span { color: var(--ink-soft); }
.foot__col a:hover { color: var(--accent); }
.foot__h { color: var(--ink-mute); }

/* Selection */
::selection { background: var(--accent); color: #fffaf2; }

/* ─────────────────────────────────────────────────────────────────────
   32. Logo image (nav + footer)
   ───────────────────────────────────────────────────────────────────── */
.nav__brand { display: inline-flex; align-items: center; }
.nav__logo {
  height: 44px;
  width: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 8px -2px rgba(15,90,120,0.25);
  transition: transform .25s var(--ease-out);
}
.nav__brand:hover .nav__logo { transform: translateY(-1px) scale(1.02); }
@media (max-width: 720px) { .nav__logo { height: 36px; } }

.foot__logo {
  display: block;
  width: 200px;
  height: auto;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px -8px rgba(15,90,120,0.3);
}

/* ─────────────────────────────────────────────────────────────────────
   33. Studio gallery (Who We Are + What We Do)
   Simple uniform grid — won't break under stale CSS or odd cache states.
   ───────────────────────────────────────────────────────────────────── */
.studio-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.studio-gallery__item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  background-size: cover;
  background-position: center;
  background-color: var(--bg-2);
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
  display: block;
}
.studio-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(31,22,10,0.78));
  z-index: 1;
}
.studio-gallery__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -16px rgba(31,22,10,0.25);
}
.studio-gallery__caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  color: #ffffff;
  font-size: 13px;
  font-family: var(--serif);
  font-style: italic;
  line-height: 1.3;
  letter-spacing: -.005em;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  display: block;
}

@media (max-width: 900px) {
  .studio-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
}
@media (max-width: 600px) {
  .studio-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
}

/* Bright-bg fix for the announce bar / nav */
.nav__inner { background: rgba(255,255,255,0.78); }

/* ─────────────────────────────────────────────────────────────────────
   34. Mobile polish — under 720px
   ───────────────────────────────────────────────────────────────────── */
@media (max-width: 720px) {
  /* Announce bar — keep just the dot + link, hide verbose text */
  .announce__inner { gap: 10px; padding: 9px 16px; }
  .announce__inner > span:nth-of-type(2) { display: none; }
  .announce__link { font-weight: 600; }

  /* Hero — image-led pages */
  .hero--imaged {
    padding-top: 140px;
    padding-bottom: 60px;
    min-height: 78vh;
  }
  /* No big indent on mobile — read straight down */
  .hero__h1-line.is-indent { padding-left: 0; }
  .hero__h1 {
    font-size: clamp(48px, 13vw, 80px);
    line-height: 0.95;
  }

  /* Stack hero buttons full-width */
  .hero__cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero__cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  /* Subtitle a touch tighter */
  .hero__sub p { font-size: 16px; }

  /* Section heads — stack vertically (was 2-col) */
  .section__head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .section__h { font-size: clamp(36px, 10vw, 56px); }
  .section__lede { font-size: 16px; }

  /* Stats panel — 2x2 instead of 4-across */
  .hero__frame { padding: 20px; }
  .hero__frame-stat .n { font-size: clamp(36px, 9vw, 56px); }
  .hero__frame-stat .l { font-size: 11px; }

  /* Marquee text smaller */
  .marquee { font-size: 13px; }

  /* CTA banner — smaller padding */
  .cta { padding: clamp(32px, 8vw, 48px); }
  .cta__h { font-size: clamp(32px, 8.5vw, 48px); }

  /* Service cards (home tiles) — full width */
  .service { padding: 22px 24px; }
  .service--imaged .service__inner { padding: 18px 22px 8px; }
  .service--imaged .service__bottom { padding: 0 22px 18px; }
  .service__title { font-size: clamp(24px, 6.5vw, 32px); }
  .service__body { font-size: 15px; }

  /* Service rows on Services page — tighter */
  .svc-row { gap: 24px; }
  .svc-row__no { font-size: 36px; }
  .svc-row__title { font-size: clamp(28px, 7vw, 40px); }
  .svc-row__text { font-size: 15.5px; }

  /* Studio gallery — tighter on mobile */
  .studio-gallery { gap: 8px; grid-auto-rows: 110px; }

  /* Featured strip aspect ratio more square */
  .featured-card { aspect-ratio: 4 / 3; padding: 18px; }
  .featured-card__title { font-size: clamp(18px, 5vw, 24px); }

  /* Contact info / form stack with less gap */
  .contact-grid { gap: 24px; }
  .contact-info__block { padding: 20px; }

  /* Footer — already stacks well, just tighten */
  .foot__top { gap: 24px; }
  .foot__cols { gap: 24px; }
  .foot__display { font-size: clamp(36px, 10vw, 56px); }

  /* Job cards on Completed page */
  .job--imaged { min-height: 280px; padding: 22px; }
  .job__title { font-size: clamp(22px, 6vw, 30px); }
}

/* Extra tight for small phones (≤ 380px iPhone SE etc) */
@media (max-width: 380px) {
  .shell { padding: 0 14px; }
  .hero--imaged { padding-top: 130px; min-height: 72vh; }
  .hero__h1 { font-size: clamp(40px, 12vw, 60px); }
  .pill-bar { gap: 6px; }
  .pill { font-size: 12px; padding: 8px 14px; }
}
