/* ===========================================================
   The Noon — Studio Website
   Design tokens & global styles
   =========================================================== */

:root {
  --ink:   #18140F;
  --olive: #6E7438;
  --bone:  #F3EDE3;
  --paper: #FCFAF5;
  --clay:  #E4C9B8;
  --taupe: #9A8B7B;
  --body:  #4a4239;
  --muted: #6a6055;

  --serif: 'Bodoni Moda', Georgia, serif;
  --sans:  'Jost', system-ui, -apple-system, sans-serif;
  --script:'Imperial Script', cursive;

  --ease: cubic-bezier(.2,.7,.2,1);
  --maxw: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
}

body {
  font-family: var(--sans);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--olive); color: var(--paper); }

img, video, svg { display: block; max-width: 100%; }

a { color: inherit; }

input::placeholder, textarea::placeholder { color: var(--taupe); }

/* ---------- Keyframes ---------- */
@keyframes noon-pageIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes noon-pop    { 0% { opacity: 0; transform: scale(.5); } 60% { transform: scale(1.08); } 100% { opacity: 1; transform: scale(1); } }
@keyframes noon-marquee{ from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes noon-float  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes noon-cue    { 0% { transform: translateY(0); opacity:.6; } 50% { transform: translateY(8px); opacity:1; } 100% { transform: translateY(0); opacity:.6; } }
@keyframes noon-flip   { from { opacity: 0; transform: translateY(.45em) rotateX(-55deg); } to { opacity: 1; transform: none; } }

/* ===========================================================
   Shared primitives
   =========================================================== */
.container { max-width: var(--maxw); margin: 0 auto; padding-left: 40px; padding-right: 40px; }
.container--wide { max-width: 1280px; }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--olive);
  margin: 0 0 22px;
}
.eyebrow--lg { letter-spacing: 0.42em; }

.serif { font-family: var(--serif); }
.italic-olive { font-style: italic; color: var(--olive); }
.italic { font-style: italic; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 17px 30px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  -webkit-appearance: none;
}
.btn .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--olive); display: inline-block; }

.btn--solid { background: var(--ink); color: var(--paper); }
.btn--solid:hover { background: var(--olive); }
.btn--solid .dot { background: var(--olive); }
.btn--solid:hover .dot { background: var(--paper); }

.btn--ghost { background: transparent; color: var(--ink); border-color: rgba(24,20,15,0.25); }
.btn--ghost:hover { border-color: var(--olive); color: var(--olive); }

.btn--light { background: var(--paper); color: var(--ink); }
.btn--light:hover { background: var(--ink); color: var(--paper); }

.btn--outline-light { background: none; border-color: rgba(243,237,227,0.3); color: var(--bone); }
.btn--outline-light:hover { background: var(--olive); border-color: var(--olive); color: var(--paper); }

.btn--sm { font-size: 12px; padding: 14px 26px; }

/* Pill nav (compact "Book a Meeting" in header) */
.btn--pill-sm { font-size: 12px; letter-spacing: 0.18em; padding: 13px 22px; gap: 9px; }
.btn--pill-sm .dot { width: 5px; height: 5px; }

/* ===========================================================
   Navigation
   =========================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
}
.nav.is-scrolled {
  background: rgba(252,250,245,0.82);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom-color: rgba(24,20,15,0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  color: var(--ink);
}
.brand__mark { height: 34px; width: auto; color: var(--olive); }
.brand__word { display: inline-flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-weight: 600; font-size: 24px; letter-spacing: 0.04em; }
.brand__sub  { font-family: var(--sans); font-weight: 400; font-size: 8.5px; letter-spacing: 0.36em; text-transform: uppercase; color: var(--olive); margin-top: 3px; }

.nav__right { display: flex; align-items: center; gap: 38px; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link {
  background: none; border: none; padding: 4px 0;
  cursor: pointer; text-decoration: none;
  font-family: var(--sans); font-size: 13px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink);
  transition: color .25s ease;
}
.nav__link:hover { color: var(--olive); }
.nav__link.is-active { color: var(--olive); }

/* Mobile menu toggle (production enhancement — design hid links on mobile) */
.nav__burger {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid rgba(24,20,15,0.2);
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.nav__burger span,
.nav__burger span::before,
.nav__burger span::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 16px; height: 1.5px;
  background: var(--ink);
  transform: translate(-50%,-50%);
  transition: transform .3s ease, opacity .3s ease;
}
.nav__burger span::before { transform: translate(-50%,-6px); }
.nav__burger span::after  { transform: translate(-50%,6px); }
body.menu-open .nav__burger span { background: transparent; }
body.menu-open .nav__burger span::before { transform: translate(-50%,0) rotate(45deg); }
body.menu-open .nav__burger span::after  { transform: translate(-50%,0) rotate(-45deg); }

/* Mobile slide-down panel */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu a:not(.btn) {
  font-family: var(--serif);
  font-size: 34px;
  text-decoration: none;
  color: var(--ink);
  padding: 10px 0;
  transition: color .2s ease;
}
.mobile-menu a:not(.btn):hover, .mobile-menu a:not(.btn).is-active { color: var(--olive); }
.mobile-menu .btn { margin-top: 22px; }

/* ===========================================================
   Page wrapper / reveals
   =========================================================== */
.page { animation: noon-pageIn .7s var(--ease) both; }
.page--inner { padding-top: 150px; }

[data-reveal] { will-change: opacity, transform; }

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

/* ===========================================================
   HOME
   =========================================================== */
.hero {
  min-height: 100vh;
  padding: 150px 40px 40px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  background: radial-gradient(120% 90% at 50% 0%, var(--bone) 0%, var(--paper) 60%);
}
.hero__crest { color: var(--olive); margin-bottom: 34px; }
.hero__crest svg { height: 128px; width: auto; animation: noon-pop .9s cubic-bezier(.2,.8,.2,1) .1s both; }
.hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(44px, 8.5vw, 132px);
  line-height: 0.95; letter-spacing: -0.01em;
  margin: 0; max-width: 14ch;
}
.hero__sub {
  font-family: var(--sans); font-weight: 300;
  font-size: clamp(16px, 1.6vw, 20px); line-height: 1.6;
  color: var(--body); max-width: 560px; margin: 34px 0 0;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 42px; }
.scroll-cue {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: noon-cue 2s ease-in-out infinite;
}
.scroll-cue span:first-child { font-family: var(--sans); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--taupe); }
.scroll-cue .line { width: 1px; height: 28px; background: linear-gradient(var(--taupe), transparent); }

/* Ticker */
.ticker { background: var(--clay); color: var(--ink); padding: 22px 0; overflow: hidden; white-space: nowrap; }
.ticker__track { display: inline-flex; align-items: center; animation: noon-marquee 34s linear infinite; }
.ticker__word { font-family: var(--serif); font-style: italic; font-size: 30px; padding: 0 28px; }
.ticker__sep { color: var(--olive); }

/* Belief statement */
.belief { padding: clamp(80px,12vw,160px) 40px clamp(36px,5vw,60px); max-width: var(--maxw); margin: 0 auto; }
.belief__statement {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 3.6vw, 50px); line-height: 1.28;
  letter-spacing: -0.01em; margin: 0; max-width: 20ch;
}

/* Founder teaser */
.founder-teaser { padding: clamp(36px,5vw,60px) 40px clamp(80px,11vw,150px); max-width: var(--maxw); margin: 0 auto; }
.founder-teaser__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.portrait { position: relative; }
.portrait img { width: 100%; height: clamp(360px, 42vw, 480px); border-radius: 6px; object-fit: cover; object-position: center; }
.portrait__pill {
  position: absolute; bottom: 16px; left: 16px;
  display: flex; align-items: center; gap: 9px;
  background: rgba(24,20,15,0.6);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  padding: 8px 14px; border-radius: 100px;
}
.portrait__pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--olive); display: inline-block; }
.portrait__pill span:last-child { font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--bone); }
.founder-teaser h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(30px, 4.4vw, 56px); line-height: 1.06;
  margin: 0 0 22px; letter-spacing: -0.01em;
}
.founder-teaser p { font-family: var(--sans); font-weight: 300; font-size: 17px; line-height: 1.7; color: var(--body); margin: 0 0 32px; max-width: 46ch; }

/* Rotating range */
.range { background: var(--bone); padding: clamp(72px,11vw,140px) 40px; text-align: center; overflow: hidden; }
.range__headline {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(38px, 6.4vw, 92px); line-height: 1.04;
  letter-spacing: -0.01em; color: var(--ink); perspective: 600px;
}
.range__rotor { display: inline-flex; align-items: baseline; gap: 0.12em; justify-content: center; }
.range__word { font-style: italic; color: var(--olive); display: inline-block; transform-origin: center bottom; }
.range__word.is-flipping { animation: noon-flip .6s cubic-bezier(.2,.8,.2,1) both; }
.range__dot { width: 0.13em; height: 0.13em; border-radius: 50%; background: var(--olive); display: inline-block; align-self: flex-end; margin-bottom: 0.14em; }

/* Featured work (dark) */
.band-dark { background: var(--ink); color: var(--bone); }
.featured { padding: clamp(80px,11vw,150px) 40px; }
.featured__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 56px; }
.featured__head h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(34px,5vw,68px); line-height: 1; margin: 0; }
.featured__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 22px; }
.feat-card { cursor: pointer; text-decoration: none; color: inherit; display: block; }
.feat-card__media { aspect-ratio: 4/5; border-radius: 4px; overflow: hidden; position: relative; }
.feat-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.feat-card:hover .feat-card__media img { transform: scale(1.04); }
.feat-card__tag {
  position: absolute; top: 18px; left: 18px;
  font-family: var(--sans); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--paper); background: rgba(24,20,15,0.45); padding: 6px 12px; border-radius: 100px;
}
.feat-card__meta { display: flex; align-items: baseline; justify-content: space-between; margin-top: 18px; gap: 12px; }
.feat-card__meta .title { font-family: var(--serif); font-size: 24px; }
.feat-card__meta .sub { font-family: var(--sans); font-size: 12px; color: var(--taupe); }

/* CTA band */
.cta-band { background: var(--olive); color: var(--paper); padding: clamp(80px,12vw,160px) 40px; text-align: center; }
.cta-band h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(34px,6vw,86px); line-height: 1.02; margin: 0 auto; max-width: 16ch; }
.cta-band .btn { margin-top: 40px; }

/* ===========================================================
   Page headers (Work / Services / About / Contact)
   =========================================================== */
.page-head { padding: 0 40px 30px; max-width: var(--maxw); margin: 0 auto; }
.page-head--wide { max-width: 1280px; }
.page-head h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(44px, 8vw, 120px); line-height: 0.96;
  margin: 0; letter-spacing: -0.01em;
}
.page-head__lead { font-family: var(--sans); font-weight: 300; font-size: 18px; line-height: 1.6; color: var(--body); max-width: 540px; margin: 30px 0 0; }

/* ===========================================================
   WORK
   =========================================================== */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.chip {
  font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 11px 22px; border-radius: 100px;
  border: 1px solid rgba(24,20,15,0.25);
  background: transparent; color: var(--ink); cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.chip.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.gallery-wrap { padding: clamp(36px,5vw,64px) 40px 60px; max-width: 1280px; margin: 0 auto; }
.gallery { columns: 4 250px; column-gap: 18px; }
.tile {
  break-inside: avoid; margin: 0 0 18px;
  border-radius: 5px; overflow: hidden; position: relative;
  cursor: pointer; background: var(--ink);
  display: block; width: 100%; border: none; padding: 0; text-align: left;
}
.tile[hidden] { display: none; }
.tile video, .tile img { width: 100%; display: block; }
.tile video { aspect-ratio: 9/16; object-fit: cover; background: #000; }
.tile__play {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(24,20,15,0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--paper); font-size: 11px; pointer-events: none;
}
.tile__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 42px 16px 14px;
  background: linear-gradient(transparent, rgba(18,16,12,0.85));
  pointer-events: none;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 8px;
}
.tile__cap .title { font-family: var(--serif); font-size: 18px; color: var(--paper); }
.tile__cap .tag { font-family: var(--sans); font-size: 9px; letter-spacing: 0.24em; text-transform: uppercase; color: #d9d0c4; white-space: nowrap; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(18,16,12,0.93);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lb-btn {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(252,250,245,0.3);
  background: transparent; color: var(--paper);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}
.lb-btn:hover { background: rgba(110,116,56,0.25); border-color: var(--olive); }
.lb-close { top: 24px; right: 28px; width: 46px; height: 46px; font-size: 17px; }
.lb-prev  { left: 20px; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 22px; }
.lb-next  { right: 20px; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 22px; }
.lb-stage { display: flex; flex-direction: column; align-items: center; gap: 16px; max-width: 90vw; }
.lb-stage img, .lb-stage video { width: auto; height: auto; max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 6px; background: #000; }
.lb-meta { display: flex; align-items: baseline; gap: 14px; }
.lb-meta .title { font-family: var(--serif); font-size: 22px; color: var(--paper); }
.lb-meta .tag { font-family: var(--sans); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe); }

/* ===========================================================
   SERVICES
   =========================================================== */
.svc-list { padding: clamp(50px,7vw,90px) 40px 0; max-width: var(--maxw); margin: 0 auto; }
.svc-row {
  display: grid; grid-template-columns: 60px 1fr; gap: 20px; align-items: start;
  padding: 30px 0; border-top: 1px solid rgba(24,20,15,0.12);
}
.svc-row:last-child { border-bottom: 1px solid rgba(24,20,15,0.12); }
.svc-row__num { font-family: var(--sans); font-size: 13px; color: var(--olive); letter-spacing: 0.1em; }
.svc-row__body { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.1fr); gap: 24px; align-items: baseline; }
.svc-pill {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(24px, 2.9vw, 36px); margin: 0;
  white-space: nowrap; width: fit-content; justify-self: start;
  background: var(--clay); color: var(--ink);
  padding: 6px 24px; border-radius: 100px;
}
.svc-row__body p { font-family: var(--sans); font-weight: 300; font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }

.industries { padding: clamp(80px,11vw,150px) 40px; margin-top: clamp(60px,9vw,120px); }
.industries h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(30px,4.6vw,62px); line-height: 1.05; margin: 0 0 14px; max-width: 18ch; }
.industries__lead { font-family: var(--sans); font-weight: 300; font-size: 16px; line-height: 1.6; color: #c9c0b4; max-width: 560px; margin: 0 0 50px; }
.ind-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 18px; }
.ind-card { border: 1px solid rgba(243,237,227,0.16); border-radius: 4px; padding: 26px; }
.ind-card.is-new { border-color: rgba(110,116,56,0.5); background: rgba(110,116,56,0.12); }
.ind-card__name { font-family: var(--serif); font-size: 26px; }
.ind-card__name .badge { font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; color: var(--olive); vertical-align: middle; margin-left: 4px; }
.ind-card__desc { font-family: var(--sans); font-size: 13px; color: var(--taupe); margin-top: 6px; }
.ind-card.is-new .ind-card__desc { color: #c9c0b4; }

.process { padding: clamp(80px,11vw,150px) 40px; max-width: var(--maxw); margin: 0 auto; }
.process h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(30px,4.6vw,62px); line-height: 1.05; margin: 0 0 56px; }
.process__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 30px; }
.step__num { font-family: var(--serif); font-style: italic; font-size: 46px; color: var(--olive); line-height: 1; }
.step h3 { font-family: var(--serif); font-weight: 500; font-size: 24px; margin: 16px 0 8px; }
.step p { font-family: var(--sans); font-weight: 300; font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ===========================================================
   ABOUT
   =========================================================== */
.about-intro { padding: clamp(50px,7vw,90px) 40px; max-width: var(--maxw); margin: 0 auto; }
.about-intro__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 50px; align-items: center; }
.about-mark {
  aspect-ratio: 4/5; border-radius: 4px;
  background: linear-gradient(150deg, var(--olive), #2a2c18);
  position: relative; overflow: hidden;
}
.about-mark__inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(252,250,245,0.9); }
.about-mark__inner svg { height: 150px; width: auto; animation: noon-float 5s ease-in-out infinite; }
.about-mark__label { position: absolute; bottom: 20px; left: 20px; font-family: var(--sans); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(252,250,245,0.7); }
.about-lead { font-family: var(--serif); font-weight: 400; font-size: clamp(22px,2.6vw,32px); line-height: 1.4; margin: 0 0 24px; }
.about-intro__grid p.body { font-family: var(--sans); font-weight: 300; font-size: 16px; line-height: 1.7; color: var(--body); margin: 0 0 18px; }
.about-intro__grid p.body:last-child { margin-bottom: 0; }

.about-founder { padding: clamp(70px,10vw,130px) 40px; }
.about-founder__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: clamp(40px,6vw,72px); align-items: center; }
.about-founder h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(34px,4.6vw,60px); line-height: 1.02; margin: 0 0 10px; }
.about-founder__role { font-family: var(--sans); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: #c9c0b4; margin-bottom: 28px; }
.about-founder p { font-family: var(--sans); font-weight: 300; font-size: 16px; line-height: 1.75; color: #d9d0c4; margin: 0 0 18px; }
.about-founder__sign { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-top: 12px; }
.signature { font-family: var(--script); font-size: 46px; color: var(--bone); line-height: 1; }
.about-founder__ig { font-family: var(--sans); font-size: 13px; letter-spacing: 0.12em; color: var(--taupe); text-decoration: none; transition: color .25s ease; }
.about-founder__ig:hover { color: var(--olive); }
.about-founder__photo img { width: 100%; height: clamp(380px,46vw,520px); border-radius: 6px; object-fit: cover; object-position: center; }

.values { padding: clamp(70px,9vw,120px) 40px clamp(80px,11vw,140px); max-width: var(--maxw); margin: 0 auto; }
.values__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 24px; }
.value { border-top: 1px solid rgba(24,20,15,0.14); padding-top: 22px; }
.value__name { font-family: var(--serif); font-size: 17px; margin-bottom: 8px; }
.value p { font-family: var(--sans); font-weight: 300; font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

/* ===========================================================
   CONTACT
   =========================================================== */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 56px; align-items: start; padding: 0 40px clamp(80px,11vw,140px); max-width: var(--maxw); margin: 0 auto; }
.cform { display: flex; flex-direction: column; gap: 24px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea {
  font-family: var(--sans); font-size: 16px; color: var(--ink);
  background: transparent; border: none; border-bottom: 1px solid rgba(24,20,15,0.25);
  padding: 10px 0; outline: none; transition: border-color .25s ease;
}
.field input:focus, .field textarea:focus { border-bottom-color: var(--olive); }
.field textarea { resize: vertical; }
.cform .btn { align-self: flex-start; margin-top: 6px; }

.thanks { border: 1px solid rgba(110,116,56,0.4); background: rgba(110,116,56,0.08); border-radius: 6px; padding: 44px 38px; }
.thanks svg { height: 56px; width: auto; color: var(--olive); margin-bottom: 22px; }
.thanks h3 { font-family: var(--serif); font-weight: 500; font-size: 30px; margin: 0 0 10px; }
.thanks p { font-family: var(--sans); font-weight: 300; font-size: 16px; line-height: 1.6; color: var(--body); margin: 0; }
[hidden] { display: none !important; }

.contact-details { display: flex; flex-direction: column; gap: 36px; }
.contact-details__intro .label { font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.contact-details__intro p { font-family: var(--serif); font-size: 22px; line-height: 1.4; margin: 0; max-width: 28ch; }
.contact-rows { display: flex; flex-direction: column; gap: 18px; }
.contact-row { border-top: 1px solid rgba(24,20,15,0.14); padding-top: 16px; }
.contact-row .k { font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); margin-bottom: 6px; }
.contact-row .v { font-family: var(--sans); font-size: 17px; }
.contact-row .v a { color: var(--ink); text-decoration: none; transition: color .25s ease; }
.contact-row .v a:hover { color: var(--olive); }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: var(--ink); color: var(--bone); padding: clamp(70px,9vw,120px) 40px 40px; }
.footer__inner { max-width: var(--maxw); margin: 0 auto; }
.footer__top { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; align-items: flex-start; }
.footer__brand { max-width: 360px; }
.footer__lockup { display: flex; align-items: center; gap: 12px; color: var(--olive); margin-bottom: 22px; }
.footer__lockup svg { height: 40px; width: auto; }
.footer__lockup span { font-family: var(--serif); font-weight: 600; font-size: 30px; color: var(--bone); }
.footer__tag { font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1.4; color: var(--clay); margin: 0; }
.footer__cols { display: flex; gap: 60px; flex-wrap: wrap; }
.footer__col { display: flex; flex-direction: column; gap: 14px; }
.footer__col .head { font-family: var(--sans); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe); margin-bottom: 4px; }
.footer__col a { font-family: var(--sans); font-size: 15px; color: var(--bone); text-decoration: none; transition: color .25s ease; }
.footer__col a:hover { color: var(--olive); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: space-between; align-items: center;
  margin-top: clamp(50px,7vw,90px); padding-top: 26px;
  border-top: 1px solid rgba(243,237,227,0.14);
}
.footer__bottom span { font-family: var(--sans); font-size: 12px; letter-spacing: 0.1em; color: var(--taupe); }

/* ===========================================================
   Custom cursor
   =========================================================== */
.cursor-ring, .cursor-dot { position: fixed; top: 0; left: 0; pointer-events: none; border-radius: 50%; will-change: transform; }
.cursor-ring {
  width: 32px; height: 32px; margin: -16px 0 0 -16px;
  border: 1px solid rgba(110,116,56,0.5); z-index: 9998;
  transition: width .25s ease, height .25s ease, margin .25s ease, border-color .25s ease, background .25s ease;
}
.cursor-dot { width: 6px; height: 6px; margin: -3px 0 0 -3px; background: var(--olive); z-index: 9999; }
body.cursor-hot .cursor-ring { width: 50px; height: 50px; margin: -25px 0 0 -25px; border-color: var(--olive); background: rgba(110,116,56,0.08); }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav .btn--pill-sm { display: none; }
  .nav__burger { display: block; }
  .nav { padding: 14px 22px; }
  .container, .page-head, .belief, .founder-teaser, .gallery-wrap,
  .svc-list, .process, .about-intro, .values, .contact-grid { padding-left: 22px; padding-right: 22px; }
  .hero, .ticker, .range, .featured, .cta-band, .industries, .about-founder, .footer { padding-left: 22px; padding-right: 22px; }
  .svc-row__body { grid-template-columns: 1fr; gap: 12px; }
  .svc-pill { white-space: normal; }
  .cursor-ring, .cursor-dot { display: none; }
  .gallery { columns: 2 160px; column-gap: 12px; }
}

@media (max-width: 520px) {
  .gallery { columns: 2 140px; }
  .footer__top { flex-direction: column; }
}

/* Hide custom cursor on touch / coarse pointers */
@media (pointer: coarse) {
  .cursor-ring, .cursor-dot { display: none; }
}
