/* ================================================================
   MEDIA THEORY — Static Site Stylesheet
   Gloock (display) + Hanken Grotesk (body)
   Palette: Ink #0b0b16 / Cream #f7f4ee / Gold #b89a50
================================================================ */

/* ----------------------------------------------------------------
   Variables
---------------------------------------------------------------- */
:root {
  --ink:        #0b0b16;
  --ink-l:      #13131f;
  --ink-m:      #1e1e30;
  --ink-b:      #272738;
  --cream:      #f7f4ee;
  --cream-d:    #ede9df;
  --cream-dp:   #e3ddd2;
  --text:       #111122;
  --text-m:     #3a3a52;
  --muted:      #6b6b84;
  --gold:       #b89a50;
  --gold-l:     #d4b878;
  --gold-faint: rgba(184,154,80,.12);
  --white:      #ffffff;

  --disp:  'Gloock', Georgia, serif;
  --sans:  'Hanken Grotesk', -apple-system, sans-serif;

  --fs-xs:   0.72rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-md:   1.125rem;
  --fs-lg:   1.375rem;
  --fs-xl:   1.75rem;
  --fs-2xl:  2.25rem;
  --fs-3xl:  3rem;
  --fs-hero: clamp(3.25rem, 7.5vw, 7rem);
  --fs-page: clamp(2.25rem, 5vw, 4.5rem);

  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 9rem;

  --max-w:        1280px;
  --max-w-narrow: 860px;
  --gutter:       clamp(1.25rem, 4vw, 3rem);

  --r-sm: 3px;
  --r-md: 8px;
  --r-lg: 14px;

  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 150ms;
  --t-base: 280ms;
  --t-slow: 480ms;
}

/* ----------------------------------------------------------------
   Reset
---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::selection { background: var(--gold); color: var(--ink); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: var(--r-sm); }

/* ----------------------------------------------------------------
   Layout
---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--max-w-narrow); }

/* ----------------------------------------------------------------
   Typography utilities
---------------------------------------------------------------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 7px; height: 7px;
  border: 1.5px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.section-label--light { color: rgba(255,255,255,.42); }
.section-label--light::before { border-color: rgba(255,255,255,.42); }

.section-title {
  font-family: var(--disp);
  font-size: var(--fs-3xl);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 2rem;
}

/* ----------------------------------------------------------------
   Buttons
---------------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .85em 1.9em;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: var(--r-sm);
  transition: background var(--t-base) var(--ease),
              transform var(--t-base) var(--ease-bounce);
}
.btn-primary:hover { background: var(--gold-l); transform: translateY(-2px); }
.btn-primary.btn-lg { font-size: var(--fs-base); padding: 1em 2.4em; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .8em 1.7em;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: var(--r-sm);
  transition: background var(--t-base) var(--ease), color var(--t-base) var(--ease);
}
.btn-ghost:hover { background: var(--gold); color: var(--ink); }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-m);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color var(--t-base) var(--ease), border-color var(--t-base) var(--ease), gap var(--t-base) var(--ease-bounce);
}
.btn-text:hover { color: var(--gold); border-color: var(--gold); gap: .65em; }

/* ----------------------------------------------------------------
   Header / Nav
---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background var(--t-slow) var(--ease),
              border-color var(--t-slow) var(--ease);
}
.site-header.scrolled {
  background: rgba(11,11,22,.96);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--ink-b);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: 70px;
}

/* Wordmark */
.site-logo {
  display: flex;
  align-items: center;
  gap: .1em;
  color: var(--white);
  transition: opacity var(--t-base) var(--ease);
}
.site-logo:hover { opacity: .72; }
.logo-media { font-family: var(--disp); font-size: 1.15rem; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; }
.logo-div   { font-size: 1.15rem; color: var(--gold); margin: 0 .35em; font-weight: 300; }
.logo-theory{ font-family: var(--disp); font-size: 1.15rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; }
.logo-img   { height: 36px; width: auto; filter: brightness(0) invert(1); }

/* Nav links */
.primary-nav {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-menu li { position: relative; }
.nav-menu a {
  display: block;
  padding: .4em 1em;
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255,255,255,.78);
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease);
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 1em; right: 1em;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base) var(--ease);
}
.nav-menu a:hover::after,
.nav-menu li.active > a::after { transform: scaleX(1); }

/* Dropdown */
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 210px;
  background: rgba(15,15,28,.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--ink-b);
  border-radius: var(--r-md);
  padding: .5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--t-base) var(--ease),
              transform var(--t-base) var(--ease),
              visibility var(--t-base);
  z-index: 100;
}
.nav-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu .sub-menu a {
  display: block;
  padding: .6em 1.2em;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.72);
  transition: color var(--t-fast) var(--ease), padding-left var(--t-fast) var(--ease);
}
.nav-menu .sub-menu a:hover { color: var(--gold); padding-left: 1.5em; }
.nav-menu .sub-menu a::after { display: none; }

.nav-cta {
  margin-left: 1.5rem;
  padding: .5em 1.25em;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  border-radius: var(--r-sm);
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  transition: background var(--t-fast) var(--ease);
}
.nav-toggle:hover { background: rgba(255,255,255,.08); }
.hamburger { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.h-line { display: block; height: 1.5px; background: var(--white); border-radius: 2px; transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease); }
.h-line--mid { width: 16px; }
.nav-toggle[aria-expanded="true"] .h-line--top { transform: rotate(45deg) translate(4.5px,4.5px); }
.nav-toggle[aria-expanded="true"] .h-line--mid { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .h-line--bot { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* ----------------------------------------------------------------
   Scroll progress
---------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--gold), var(--gold-l));
  z-index: 9999;
  transition: width .1s linear;
}

/* ----------------------------------------------------------------
   Hero
---------------------------------------------------------------- */
.mt-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 0 100%);
}
.hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .35; mix-blend-mode: screen; }
.hero-blob--1 { width: 55vw; height: 55vw; background: radial-gradient(circle, #1e2a6e 0%, transparent 70%); top: -15%; left: -10%; animation: blobFloat1 18s ease-in-out infinite alternate; }
.hero-blob--2 { width: 38vw; height: 38vw; background: radial-gradient(circle, #b89a5018 0%, transparent 70%); bottom: 5%; right: 5%; animation: blobFloat2 14s ease-in-out infinite alternate; }
@keyframes blobFloat1 { from { transform: translate(0,0) scale(1); } to { transform: translate(4vw,3vh) scale(1.08); } }
@keyframes blobFloat2 { from { transform: translate(0,0); } to { transform: translate(-3vw,-4vh) scale(1.12); } }

.hero-inner { position: relative; z-index: 2; padding: 120px var(--gutter) 80px; max-width: var(--max-w); margin-inline: auto; width: 100%; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .85em;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .3s forwards;
}
.eyebrow-pipe { display: block; width: 1.5px; height: 20px; background: var(--gold); flex-shrink: 0; }

.hero-title {
  font-family: var(--disp);
  font-size: var(--fs-hero);
  font-weight: 400;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .5s forwards;
}
.hero-title em { color: var(--gold); font-style: normal; }

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,.58);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .8s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease) 1s forwards;
}
.hero-actions .btn-text { color: rgba(255,255,255,.55); }
.hero-actions .btn-text:hover { color: var(--gold); }

.scroll-hint {
  position: absolute;
  bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 3;
  opacity: 0;
  animation: fadeUp .8s var(--ease) 1.5s forwards;
}
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, var(--gold)); animation: scrollPulse 2s ease-in-out infinite; }
.scroll-label { font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.3); writing-mode: vertical-rl; }
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:1} }

/* ----------------------------------------------------------------
   Stats strip
---------------------------------------------------------------- */
.mt-stats {
  background: var(--ink-l);
  border-bottom: 1px solid var(--ink-b);
  clip-path: polygon(0 28px,100% 0,100% 100%,0 100%);
  margin-top: -28px;
  padding: calc(2.5rem + 28px) 0 2rem;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
@media (min-width: 768px) { .stats-row { grid-template-columns: repeat(4,1fr); } }
.stat { padding: 1.5rem; border-right: 1px solid var(--ink-b); text-align: center; }
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--disp); font-size: clamp(2.25rem,5vw,3.5rem); font-weight: 400; color: var(--gold); line-height: 1; }
.stat-unit { font-family: var(--disp); font-size: clamp(1.25rem,3vw,1.75rem); color: var(--gold); opacity: .7; }
.stat-label { font-size: .7rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: .4rem; display: block; }

/* ----------------------------------------------------------------
   About section (homepage)
---------------------------------------------------------------- */
.mt-about-home {
  background: var(--cream);
  clip-path: polygon(0 50px,100% 0,100% 100%,0 100%);
  margin-top: -50px;
  padding: calc(var(--space-2xl) + 50px) 0 var(--space-2xl);
}
.about-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 900px) { .about-home-grid { grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start; } }

.about-home-pull {
  font-family: var(--disp);
  font-size: clamp(1.65rem,3.5vw,2.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.38;
  color: var(--text);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
}
@media (min-width: 900px) { .about-home-pull { position: sticky; top: 100px; } }

.about-home-body p {
  font-size: var(--fs-md);
  color: var(--text-m);
  line-height: 1.82;
  margin-bottom: 1.25rem;
}

/* ----------------------------------------------------------------
   Services (homepage)
---------------------------------------------------------------- */
.mt-services-home {
  background: var(--ink);
  clip-path: polygon(0 0,100% 50px,100% 100%,0 100%);
  padding: calc(var(--space-2xl) + 50px) 0 calc(var(--space-2xl) + 50px);
}
.services-home-header { margin-bottom: 4rem; }
.services-home-header .section-title { color: var(--white); font-size: clamp(2rem,4.5vw,3.25rem); }

.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5px;
  border: 1.5px solid var(--ink-b);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (min-width: 640px)  { .svc-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .svc-grid { grid-template-columns: repeat(3,1fr); } }

.svc-card {
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  background: var(--ink-l);
  color: var(--white);
  border-right: 1.5px solid var(--ink-b);
  border-bottom: 1.5px solid var(--ink-b);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: background var(--t-base) var(--ease);
}
.svc-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:2px; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform var(--t-slow) var(--ease); }
.svc-card:hover { background: var(--ink-m); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-num { font-size: var(--fs-xs); letter-spacing: .1em; color: rgba(255,255,255,.18); margin-bottom: 1.25rem; }
.svc-title { font-family: var(--disp); font-size: var(--fs-xl); font-weight: 400; color: var(--white); margin-bottom: .75rem; line-height: 1.2; }
.svc-desc { font-size: var(--fs-sm); color: rgba(255,255,255,.5); line-height: 1.65; flex: 1; margin-bottom: 1.5rem; }
.svc-link { font-size: var(--fs-sm); font-weight: 500; color: var(--gold); display: inline-flex; align-items: center; gap: .4em; transition: gap var(--t-base) var(--ease-bounce); margin-top: auto; }
.svc-card:hover .svc-link { gap: .65em; }

/* ----------------------------------------------------------------
   Experience (homepage teaser)
---------------------------------------------------------------- */
.mt-exp-home {
  background: var(--cream);
  clip-path: polygon(0 50px,100% 0,100% 100%,0 100%);
  margin-top: -50px;
  padding: calc(var(--space-2xl) + 50px) 0 var(--space-2xl);
}

/* ----------------------------------------------------------------
   Experience page — client cards
---------------------------------------------------------------- */
.mt-experience-page {
  background: var(--cream);
  padding: var(--space-2xl) 0;
}
.exp-list { display: flex; flex-direction: column; gap: 0; margin-top: 3rem; }
.exp-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--cream-dp);
  transition: background var(--t-base) var(--ease);
}
@media (min-width: 768px) { .exp-item { grid-template-columns: 80px 1fr; gap: 3rem; align-items: start; } }
.exp-item:first-child { border-top: 1px solid var(--cream-dp); }
.exp-num { font-family: var(--disp); font-size: var(--fs-3xl); font-weight: 400; color: var(--gold); opacity: .35; line-height: 1; }
.exp-title { font-family: var(--disp); font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 400; color: var(--text); margin-bottom: .75rem; line-height: 1.2; }
.exp-type { font-size: var(--fs-xs); font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.exp-body p { font-size: var(--fs-base); color: var(--text-m); line-height: 1.82; margin-bottom: 1rem; }
.exp-body p:last-child { margin-bottom: 0; }
.exp-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }
.exp-tag { font-size: .7rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; padding: .35em .85em; border: 1px solid var(--cream-dp); border-radius: 100px; color: var(--text-m); background: var(--white); }

/* ----------------------------------------------------------------
   Geographic reach
---------------------------------------------------------------- */
.mt-reach {
  background: var(--ink);
  clip-path: polygon(0 0,100% 40px,100% 100%,0 100%);
  padding: calc(var(--space-2xl) + 40px) 0 var(--space-2xl);
}
.mt-reach .section-title { color: var(--white); }
.reach-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
@media (min-width: 900px) { .reach-grid { grid-template-columns: 1fr 1fr; gap: 7rem; } }
.reach-text p { font-size: var(--fs-md); color: rgba(255,255,255,.55); line-height: 1.8; margin-bottom: 1.25rem; }
.reach-regions { display: flex; flex-direction: column; }
.reach-region { display: flex; align-items: center; gap: 1.5rem; padding: 1.25rem 0; border-bottom: 1px solid var(--ink-b); }
.reach-region:first-child { border-top: 1px solid var(--ink-b); }
.reach-region-num { font-family: var(--disp); font-size: var(--fs-xl); font-weight: 400; color: var(--gold); opacity: .35; flex-shrink: 0; width: 2rem; }
.reach-region strong { font-size: var(--fs-base); font-weight: 600; color: var(--white); display: block; margin-bottom: .15rem; }
.reach-region span { font-size: var(--fs-sm); color: rgba(255,255,255,.4); }

/* ----------------------------------------------------------------
   Bio (homepage teaser + full page)
---------------------------------------------------------------- */
.mt-bio-home {
  background: var(--cream);
  clip-path: polygon(0 40px,100% 0,100% 100%,0 100%);
  margin-top: -40px;
  padding: calc(var(--space-2xl) + 40px) 0 var(--space-2xl);
}
.bio-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; }
@media (min-width: 900px) { .bio-grid { grid-template-columns: 300px 1fr; gap: 6rem; align-items: center; } }

.bio-portrait-wrap { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--cream-dp); }
.bio-portrait-wrap img { width: 100%; aspect-ratio: 5/6; object-fit: cover; object-position: top; transition: transform .6s var(--ease); }
.bio-portrait-wrap:hover img { transform: scale(1.03); }
.bio-portrait-detail { margin-top: 1.25rem; }
.bio-portrait-detail strong { font-size: var(--fs-md); font-weight: 600; color: var(--text); display: block; }
.bio-portrait-detail span { font-size: var(--fs-sm); color: var(--muted); display: block; margin-bottom: .75rem; }

.bio-quote { font-family: var(--disp); font-size: clamp(1.5rem,3vw,2.25rem); font-weight: 400; font-style: italic; line-height: 1.4; color: var(--text); border-left: 3px solid var(--gold); padding-left: 1.5rem; margin-bottom: 1.75rem; }
.bio-byline { margin-bottom: 1.25rem; }
.bio-byline strong { font-size: var(--fs-base); font-weight: 600; color: var(--text); display: block; }
.bio-byline span { font-size: var(--fs-sm); color: var(--muted); }
.bio-text p { font-size: var(--fs-base); color: var(--text-m); line-height: 1.82; margin-bottom: 1.25rem; }
.bio-text p:last-child { margin-bottom: 0; }

/* Full bio page */
.mt-bio-page { padding: var(--space-2xl) 0; background: var(--cream); }
.bio-full-grid { display: grid; grid-template-columns: 1fr; gap: 5rem; align-items: start; }
@media (min-width: 900px) { .bio-full-grid { grid-template-columns: 340px 1fr; gap: 7rem; } }
.bio-credentials { margin-top: 2rem; padding: 1.75rem; border: 1px solid var(--cream-dp); border-radius: var(--r-md); background: var(--white); display: flex; flex-direction: column; gap: 1.25rem; }
.bio-cred-label { display: block; font-size: .68rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }
.bio-cred p { font-size: var(--fs-sm); color: var(--text-m); line-height: 1.55; }

/* ----------------------------------------------------------------
   Page hero (interior pages)
---------------------------------------------------------------- */
.mt-page-hero {
  background: var(--ink);
  padding: 150px 0 80px;
  overflow: hidden;
  position: relative;
  clip-path: polygon(0 0,100% 0,100% calc(100% - 50px),0 100%);
}
.page-hero-bg { position: absolute; inset: 0; overflow: hidden; }
.page-hero-inner { position: relative; z-index: 2; }
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .85em;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .2s forwards;
}
.page-hero-title {
  font-family: var(--disp);
  font-size: var(--fs-page);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  max-width: 900px;
  opacity: 0;
  animation: fadeUp .9s var(--ease) .4s forwards;
}
.page-hero-sub {
  margin-top: 1.5rem;
  font-size: clamp(1rem,2vw,1.2rem);
  color: rgba(255,255,255,.52);
  max-width: 600px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .65s forwards;
}

/* ----------------------------------------------------------------
   Service detail page
---------------------------------------------------------------- */
.mt-service-page { background: var(--cream); padding: var(--space-2xl) 0; }
.service-page-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 900px) { .service-page-grid { grid-template-columns: 320px 1fr; gap: 7rem; align-items: start; } }
.service-page-lead { position: sticky; top: 100px; }
.service-page-lead p { font-family: var(--disp); font-size: clamp(1.3rem,2.5vw,1.75rem); font-weight: 400; font-style: italic; line-height: 1.45; color: var(--text); border-left: 3px solid var(--gold); padding-left: 1.5rem; }
.service-page-body p { font-size: var(--fs-md); color: var(--text-m); line-height: 1.85; margin-bottom: 1.5rem; }

.mt-services-nav { background: var(--cream-d); border-top: 1px solid var(--cream-dp); padding: var(--space-lg) 0; }
.services-nav-grid { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.svc-pill {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  padding: .65em 1.25em;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-m);
  border: 1.5px solid var(--cream-dp);
  border-radius: var(--r-sm);
  background: var(--white);
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-base) var(--ease-bounce);
}
.svc-pill:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ----------------------------------------------------------------
   About page
---------------------------------------------------------------- */
.mt-about-page { background: var(--cream); padding: var(--space-2xl) 0; }
.about-intro-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 900px) { .about-intro-grid { grid-template-columns: 1fr 1fr; gap: 7rem; align-items: start; } }
.about-pull { font-family: var(--disp); font-size: clamp(1.65rem,3.5vw,2.4rem); font-weight: 400; font-style: italic; line-height: 1.38; color: var(--text); }
@media (min-width: 900px) { .about-pull { position: sticky; top: 100px; } }
.about-body p { font-size: var(--fs-md); color: var(--text-m); line-height: 1.82; margin-bottom: 1.25rem; }

.mt-boutique { background: var(--ink); padding: var(--space-2xl) 0; clip-path: polygon(0 0,100% 40px,100% 100%,0 100%); padding-bottom: calc(var(--space-2xl) + 40px); }
.mt-boutique .section-title { color: var(--white); }
.boutique-grid { display: grid; grid-template-columns: 1fr; gap: 1.5px; border: 1.5px solid var(--ink-b); border-radius: var(--r-lg); overflow: hidden; margin-top: 3rem; }
@media (min-width: 640px) { .boutique-grid { grid-template-columns: 1fr 1fr; } }
.boutique-card { padding: 2.5rem 2rem; background: var(--ink-l); border-right: 1.5px solid var(--ink-b); border-bottom: 1.5px solid var(--ink-b); transition: background var(--t-base) var(--ease); }
.boutique-card:hover { background: var(--ink-m); }
.boutique-icon { width: 32px; height: 32px; color: var(--gold); margin-bottom: 1.25rem; }
.boutique-card h3 { font-family: var(--disp); font-size: var(--fs-lg); font-weight: 400; color: var(--white); margin-bottom: .75rem; }
.boutique-card p { font-size: var(--fs-sm); color: rgba(255,255,255,.48); line-height: 1.7; }

/* ----------------------------------------------------------------
   Contact page
---------------------------------------------------------------- */
.mt-contact-page { background: var(--cream); padding: var(--space-2xl) 0; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 380px; gap: 6rem; align-items: start; } }
.contact-form-title { font-family: var(--disp); font-size: clamp(1.75rem,3.5vw,2.5rem); font-weight: 400; color: var(--text); margin-bottom: 2.5rem; }
.mt-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 640px) { .form-row--half { flex-direction: row; } .form-row--half .form-group { flex: 1; } }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label { font-size: var(--fs-sm); font-weight: 500; color: var(--text); }
.form-group label .req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85em 1.1em;
  font-size: var(--fs-base);
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--cream-dp);
  border-radius: var(--r-sm);
  outline: none;
  appearance: none;
  font-family: var(--sans);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,154,80,.15); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6b84' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 140px; line-height: 1.65; }
.form-submit { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; padding-top: .5rem; }
.form-note { font-size: var(--fs-xs); color: var(--muted); font-style: italic; }
.contact-info-label { display: block; font-size: .68rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: .6rem; }
.contact-info-block { padding-bottom: 2rem; border-bottom: 1px solid var(--cream-dp); margin-bottom: 2rem; }
.contact-info-block:last-child { border-bottom: none; margin-bottom: 0; }
.contact-info-block p, .contact-info-block address p { font-size: var(--fs-base); color: var(--text-m); line-height: 1.7; }
.contact-info-block a { color: var(--text); border-bottom: 1px solid var(--cream-dp); padding-bottom: 1px; transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease); }
.contact-info-block a:hover { color: var(--gold); border-color: var(--gold); }
.contact-person { display: flex; align-items: center; gap: 1rem; margin-bottom: .75rem; }
.contact-person-avatar { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; border: 2px solid var(--cream-dp); flex-shrink: 0; }
.contact-person-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.contact-person-name { font-size: var(--fs-base); font-weight: 600; color: var(--text); display: block; }
.contact-person-role { font-size: var(--fs-sm); color: var(--muted); }

/* ----------------------------------------------------------------
   CTA Band
---------------------------------------------------------------- */
.mt-cta-band {
  background: var(--ink);
  clip-path: polygon(0 40px,100% 0,100% 100%,0 100%);
  margin-top: -40px;
  padding: calc(var(--space-xl) + 40px) 0 var(--space-xl);
}
.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 3rem;
  border: 1px solid var(--ink-b);
  border-radius: var(--r-lg);
  background: var(--ink-l);
}
@media (min-width: 900px) { .cta-band-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 4rem; } }
.cta-band-title { font-family: var(--disp); font-size: clamp(1.75rem,4vw,2.75rem); font-weight: 400; color: var(--white); line-height: 1.2; margin-bottom: .75rem; }
.cta-band-text p { color: rgba(255,255,255,.45); font-size: var(--fs-base); max-width: 480px; line-height: 1.65; }
.cta-band-action { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; flex-shrink: 0; }
@media (min-width: 900px) { .cta-band-action { align-items: flex-end; } }
.cta-band-detail { font-size: var(--fs-xs); color: rgba(255,255,255,.28); letter-spacing: .08em; }

/* ----------------------------------------------------------------
   Footer
---------------------------------------------------------------- */
.site-footer { background: var(--ink); border-top: 1px solid var(--ink-b); }
.footer-inner { max-width: var(--max-w); margin-inline: auto; padding-inline: var(--gutter); }
.footer-top { display: flex; flex-direction: column; gap: 4rem; padding: 5rem 0 4rem; border-bottom: 1px solid var(--ink-b); }
@media (min-width: 900px) { .footer-top { flex-direction: row; justify-content: space-between; gap: 6rem; } }
.footer-wordmark { display: flex; align-items: center; gap: .1em; color: var(--white); }
.footer-tagline { font-family: var(--disp); font-size: var(--fs-md); font-style: italic; font-weight: 300; color: rgba(255,255,255,.28); margin-top: .75rem; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
@media (min-width: 768px) { .footer-nav { grid-template-columns: repeat(3,1fr); } }
.footer-nav-label { display: block; font-size: .7rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 1.1rem; }
.footer-nav ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-nav li a { font-size: var(--fs-sm); color: rgba(255,255,255,.5); transition: color var(--t-fast) var(--ease); }
.footer-nav li a:hover { color: var(--gold); }
.footer-nav address p { font-size: var(--fs-sm); color: rgba(255,255,255,.38); line-height: 1.65; margin-bottom: .3rem; }
.footer-nav address a { color: rgba(255,255,255,.5); transition: color var(--t-fast) var(--ease); }
.footer-nav address a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding: 1.5rem 0; }
.footer-copy { font-size: .7rem; color: rgba(255,255,255,.2); letter-spacing: .06em; }
.footer-legal a { font-size: .7rem; color: rgba(255,255,255,.2); transition: color var(--t-fast) var(--ease); }
.footer-legal a:hover { color: rgba(255,255,255,.5); }

/* ----------------------------------------------------------------
   Scroll animations
---------------------------------------------------------------- */
.animate { opacity: 0; transition: opacity var(--t-slow) var(--ease) var(--delay, 0s), transform var(--t-slow) var(--ease) var(--delay, 0s); }
.animate.up    { transform: translateY(36px); }
.animate.left  { transform: translateX(-36px); }
.animate.right { transform: translateX(36px); }
.animate.visible { opacity: 1; transform: translate(0); }

@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .animate, .hero-title, .hero-sub, .hero-eyebrow, .hero-actions, .scroll-hint,
  .page-hero-title, .page-hero-eyebrow, .page-hero-sub,
  .hero-blob { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ----------------------------------------------------------------
   Mobile nav
---------------------------------------------------------------- */
@media (max-width: 899px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(360px, 88vw);
    height: 100vh;
    background: var(--ink-l);
    border-left: 1px solid var(--ink-b);
    padding: 80px 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--t-slow) var(--ease);
    z-index: 999;
    overflow-y: auto;
  }
  .primary-nav.open { transform: translateX(0); }
  .nav-menu { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-menu a { padding: .75em 0; font-size: var(--fs-md); color: rgba(255,255,255,.78); width: 100%; }
  .nav-menu a::after { left: 0; }
  .nav-menu .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: none; box-shadow: none; padding: 0 0 0 1rem; display: none; }
  .nav-menu li.sub-open > .sub-menu { display: block; }
  .nav-cta { margin: 2rem 0 0; }
  .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 998; backdrop-filter: blur(2px); }
  .nav-overlay.visible { display: block; }
}

/* ----------------------------------------------------------------
   Responsive misc
---------------------------------------------------------------- */
@media (max-width: 640px) {
  .cta-band-inner { padding: 1.75rem; }
  .svc-grid { border-radius: 0; }
}
@media (min-width: 1400px) { :root { --gutter: 4rem; } }
