/* ================================================================
   MEDIA THEORY — main.css
   Design: Editorial Luxury — Dark Hero / Warm Cream Body
   Fonts: Gloock (display serif) + Hanken Grotesk (body)
   Ornaments: Diamond lozenge + pipe-echo brand motif
   ================================================================ */

/* ----------------------------------------------------------------
   01. CSS Variables & Design Tokens
---------------------------------------------------------------- */
:root {
  /* Palette */
  --ink:        #0b0b16;
  --ink-light:  #13131f;
  --ink-mid:    #1e1e30;
  --ink-border: #272738;
  --cream:      #f7f4ee;
  --cream-dark: #ede9df;
  --cream-deep: #e3ddd2;
  --text:       #111122;
  --text-mid:   #3a3a52;
  --text-muted: #6b6b84;
  --gold:       #b89a50;
  --gold-light: #d4b878;
  --gold-faint: rgba(184,154,80,.12);
  --white:      #ffffff;

  /* Typography */
  --font-display: 'Gloock', Georgia, 'Times New Roman', serif;
  --font-sans:    'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Type scale */
  --fs-xs:  0.75rem;
  --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-4xl: 4rem;
  --fs-hero: clamp(3.5rem, 8vw, 7.5rem);
  --fs-page-hero: clamp(2.5rem, 5.5vw, 5rem);

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 9rem;

  /* Layout */
  --max-w:    1280px;
  --max-w-narrow: 960px;
  --gutter:   clamp(1.25rem, 4vw, 3rem);

  /* Radii */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,.14);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.22);
  --shadow-card: 0 4px 20px rgba(0,0,0,.09);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,.16);

  /* Transitions */
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:      cubic-bezier(0.55, 0, 1, 0.45);
  --ease-out:     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;
  --t-xslow: 800ms;
}

/* ----------------------------------------------------------------
   02. Reset & Base
---------------------------------------------------------------- */
*, *::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(--font-sans);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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; }
input, textarea, select { font-family: inherit; }

/* Selection */
::selection { background: var(--gold); color: var(--ink); }

/* Focus */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

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

.container--narrow {
  max-width: var(--max-w-narrow);
}

/* Long-form content (blog posts, generic pages) — comfortable reading measure */
.post-content-wrap {
  max-width: 860px;
}

.hide-sm { display: none; }
@media (min-width: 768px) { .hide-sm { display: inline; } }

/* ----------------------------------------------------------------
   04. Typography Utilities
---------------------------------------------------------------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75em;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section-label--light { color: rgba(255,255,255,.45); }

/* Diamond lozenge ornament — echoes the logo's geometric mark */
.section-label::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  background: transparent;
  border: 1.5px solid currentColor;
  transform: rotate(45deg);
  flex-shrink: 0;
  border-radius: 0;
}

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

/* ----------------------------------------------------------------
   05. Buttons
---------------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 1.9em;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: background var(--t-base) var(--ease),
              transform var(--t-base) var(--ease-bounce),
              box-shadow var(--t-base) var(--ease);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,154,80,.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-primary.btn-large { font-size: var(--fs-base); padding: 1em 2.4em; }
.btn-primary.btn-sm    { font-size: var(--fs-xs);  padding: 0.65em 1.3em; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.8em 1.7em;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
  transition: background var(--t-base) var(--ease),
              color var(--t-base) var(--ease);
}
.btn-ghost:hover { background: var(--gold); color: var(--ink); }
.btn-ghost.btn-sm { font-size: var(--fs-xs); padding: 0.55em 1.2em; }

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-mid);
  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: 0.65em; }

.btn-arrow { transition: transform var(--t-base) var(--ease-bounce); }
.btn-text:hover .btn-arrow { transform: translateX(3px); }

/* ----------------------------------------------------------------
   06. Site Header / Navigation
---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--t-slow) var(--ease),
              box-shadow var(--t-slow) var(--ease),
              border-color var(--t-slow) var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(11, 11, 22, 0.96);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom-color: var(--ink-border);
  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: 72px;
}

/* Logo / Wordmark */
.mt-wordmark,
.custom-logo-link {
  display: flex;
  align-items: center;
  gap: 0.1em;
  color: var(--white);
  text-decoration: none;
  transition: opacity var(--t-base) var(--ease);
}
.mt-wordmark:hover { opacity: 0.75; }

.wm-media {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}
.wm-divider {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gold);
  margin-inline: 0.5em;
  line-height: 1;
}
.wm-theory {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.custom-logo { height: 38px; width: auto; filter: brightness(0) invert(1); }

/* Primary Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  padding: 0.4em 1em;
  font-size: var(--fs-sm);
  font-weight: 400;
  color: rgba(255,255,255,.82);
  letter-spacing: 0.02em;
  transition: color var(--t-fast) var(--ease);
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a { color: var(--white); }

.nav-menu > li > 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 > li > a:hover::after,
.nav-menu > li.current-menu-item > a::after { transform: scaleX(1); }

/* Dropdown */
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 200px;
  background: rgba(15,15,28,.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--ink-border);
  border-radius: var(--radius-md);
  padding: 0.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;
  box-shadow: var(--shadow-lg);
}
.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-menu .sub-menu li a {
  display: block;
  padding: 0.6em 1.2em;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.75);
  transition: color var(--t-fast) var(--ease), padding-left var(--t-fast) var(--ease);
}
.nav-menu .sub-menu li a:hover { color: var(--gold); padding-left: 1.5em; }

/* Nav CTA */
.nav-cta {
  margin-left: 1.5rem;
  padding: 0.5em 1.3em;
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
}

/* Hamburger */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: transparent;
  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),
              width 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); }

/* ----------------------------------------------------------------
   07. Hero Section
---------------------------------------------------------------- */
.mt-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink);
  overflow: hidden;
}

/* Animated background */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-bg__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-bg__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  mix-blend-mode: screen;
  will-change: transform;
}
.hero-bg__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-bg__blob--2 {
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, #b89a5018 0%, transparent 70%);
  bottom: 5%; right: 5%;
  animation: blobFloat2 14s ease-in-out infinite alternate;
}
.hero-bg__blob--3 {
  width: 35vw; height: 35vw;
  background: radial-gradient(circle, #0d1a4a 0%, transparent 70%);
  top: 30%; right: -5%;
  animation: blobFloat3 22s 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) scale(1); }
  to   { transform: translate(-3vw, -4vh) scale(1.12); }
}
@keyframes blobFloat3 {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(2vw, 5vh) scale(0.93); }
}

/* Noise overlay */
.mt-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.022;
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
}

/* Hero label — pipe-echo ornament referencing the logo divider */
.animate-label {
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 2rem;
  opacity: 0;
  animation: labelReveal 0.8s var(--ease) 0.3s forwards;
}

/* The pipe mark — a vertical bar mirroring the logo's | divider */
.label-dash {
  display: block;
  width: 1.5px;
  height: 22px;
  background: var(--gold);
  flex-shrink: 0;
  opacity: 0;
  animation: pipeReveal 0.5s var(--ease) 0.2s forwards;
}

@keyframes pipeReveal {
  from { opacity: 0; height: 0; }
  to   { opacity: 1; height: 22px; }
}

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

/* ----------------------------------------------------------------
   SECTION TRANSITIONS — Diagonal angular cuts
   Replaces flat horizontal boundaries between dark/light sections
   with editorial diagonal slices for a dynamic, magazine-grade feel.
---------------------------------------------------------------- */

.mt-stats {
  clip-path: polygon(0 28px, 100% 0, 100% 100%, 0 100%);
  margin-top: -28px;
  padding-top: calc(3rem + 28px);
}

.mt-approach {
  clip-path: polygon(0 50px, 100% 0, 100% 100%, 0 100%);
  margin-top: -50px;
  padding-top: calc(var(--space-2xl) + 50px);
}

.mt-services {
  clip-path: polygon(0 0, 100% 50px, 100% 100%, 0 100%);
  padding-bottom: calc(var(--space-2xl) + 50px);
}

.mt-clients {
  clip-path: polygon(0 30px, 100% 0, 100% 100%, 0 100%);
  margin-top: -30px;
  padding-top: calc(4rem + 30px);
}

.mt-leadership {
  clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 100%);
  padding-bottom: calc(var(--space-2xl) + 40px);
}

.mt-cta-band {
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  margin-top: -40px;
  padding-top: calc(var(--space-xl) + 40px);
}

.mt-boutique {
  clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 100%);
  padding-bottom: calc(var(--space-2xl) + 40px);
}

.mt-bio {
  clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%);
  margin-top: -40px;
  padding-top: calc(var(--space-2xl) + 40px);
}

.mt-approach-callout {
  clip-path: polygon(0 0, 100% 40px, 100% 100%, 0 100%);
  padding-bottom: calc(var(--space-xl) + 40px);
}

.mt-about-intro {
  clip-path: polygon(0 0, 100% 30px, 100% 100%, 0 100%);
  padding-bottom: calc(var(--space-2xl) + 30px);
}

.mt-contact-section {
  clip-path: polygon(0 30px, 100% 0, 100% 100%, 0 100%);
  margin-top: -30px;
  padding-top: calc(var(--space-2xl) + 30px);
}
.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 500;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em;
}

.hero-word {
  display: inline-block;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}
.hero-word > span,
.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em);
  animation: wordReveal 0.9s var(--ease) both;
}
.hero-word:nth-child(1) { animation-delay: 0.5s; }
.hero-word:nth-child(2) { animation-delay: 0.72s; }
.hero-word:nth-child(3) { animation-delay: 0.94s; }
.hero-word--accent { color: var(--gold); }

@keyframes wordReveal {
  from { opacity: 0; transform: translateY(0.5em); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hero sub */
.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,.65);
  max-width: 620px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: labelReveal 0.8s var(--ease) 1.3s forwards;
}

/* Hero actions */
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  opacity: 0;
  animation: labelReveal 0.8s var(--ease) 1.55s forwards;
}

.hero-actions .btn-text { color: rgba(255,255,255,.6); }
.hero-actions .btn-text:hover { color: var(--gold); }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  opacity: 0;
  animation: labelReveal 0.8s var(--ease) 2s forwards;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-text {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  writing-mode: vertical-rl;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ----------------------------------------------------------------
   08. Stat Strip
---------------------------------------------------------------- */
.mt-stats {
  background: var(--ink-light);
  border-bottom: 1px solid var(--ink-border);
  padding: 3rem 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid var(--ink-border);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
}
.stat-unit {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--gold);
  opacity: 0.7;
}
.stat-label {
  margin-top: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ----------------------------------------------------------------
   09. Approach Section
---------------------------------------------------------------- */
.mt-approach {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 900px) {
  .approach-grid { grid-template-columns: 1fr 1fr; gap: 6rem; }
}

.approach-text .section-title { font-size: clamp(2.25rem, 4.5vw, 3.75rem); }
.approach-body {
  font-size: var(--fs-md);
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* Approach visual */
.approach-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.approach-card {
  padding: 1.5rem;
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: box-shadow var(--t-base) var(--ease),
              transform var(--t-base) var(--ease-bounce),
              border-color var(--t-base) var(--ease);
}
.approach-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.approach-card--2,
.approach-card--4 { margin-top: 1.5rem; }

.approach-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.approach-card__text {
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}

/* ----------------------------------------------------------------
   10. Services Section
---------------------------------------------------------------- */
.mt-services {
  padding: var(--space-2xl) 0;
  background: var(--ink);
}

.services-header {
  margin-bottom: 4rem;
}
.services-header .section-label { color: var(--gold); }
.services-header .section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5px;
  border: 1.5px solid var(--ink-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  background: var(--ink-light);
  border-right: 1.5px solid var(--ink-border);
  border-bottom: 1.5px solid var(--ink-border);
  color: var(--white);
  transition: background var(--t-base) var(--ease);
  overflow: hidden;
  text-decoration: none;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--t-slow) var(--ease);
}
.service-card:hover { background: var(--ink-mid); }
.service-card:hover::before { width: 100%; }

.service-card__num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.2);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: transform var(--t-base) var(--ease-bounce);
}
.service-card:hover .service-card__icon { transform: scale(1.12); }
.service-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.service-card__desc {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.5rem;
}
.service-card__link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: auto;
  transition: gap var(--t-base) var(--ease-bounce);
}
.service-card:hover .service-card__link { gap: 0.65em; }
.service-card__link span { transition: transform var(--t-base) var(--ease-bounce); }
.service-card:hover .service-card__link span { transform: translateX(3px); }

/* CTA card */
.service-card--cta {
  background: var(--gold-faint);
  border-color: rgba(184,154,80,.2);
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
}
.service-card--cta:hover { background: rgba(184,154,80,.18); }
.service-cta__text {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
}

/* ----------------------------------------------------------------
   11. Clients Marquee
---------------------------------------------------------------- */
.mt-clients {
  padding: 4rem 0;
  background: var(--cream-dark);
  border-top: 1px solid var(--cream-deep);
  border-bottom: 1px solid var(--cream-deep);
  overflow: hidden;
}

.clients-header {
  margin-bottom: 2rem;
}

.marquee-wrap {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: marquee 28s linear infinite;
  gap: 0;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-item {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 400;
  font-style: italic;
  color: var(--text-mid);
  padding-inline: 2rem;
}
.marquee-sep {
  color: var(--gold);
  font-size: 0.5rem;
  vertical-align: middle;
}

/* ----------------------------------------------------------------
   12. Leadership / Bio
---------------------------------------------------------------- */
.mt-leadership {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}
@media (min-width: 900px) {
  .leadership-grid { grid-template-columns: 300px 1fr; gap: 6rem; align-items: center; }
}

.leadership-img__placeholder {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 5/6;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--cream-deep);
}
.leadership-img__placeholder svg { width: 100%; height: 100%; }

.leadership-quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--text);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.leadership-bio {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.5rem;
}
.bio-name {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--text);
}
.bio-title {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.leadership-desc {
  font-size: var(--fs-base);
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ----------------------------------------------------------------
   13. CTA Band
---------------------------------------------------------------- */
.mt-cta-band {
  padding: var(--space-xl) 0;
  background: var(--ink);
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 3rem;
  border: 1px solid var(--ink-border);
  border-radius: var(--radius-lg);
  background: var(--ink-light);
}

@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(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.cta-band-text p {
  color: rgba(255,255,255,.5);
  font-size: var(--fs-base);
  max-width: 500px;
}

.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-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.35);
  letter-spacing: 0.08em;
}

/* ----------------------------------------------------------------
   14. Page Hero (Interior Pages)
---------------------------------------------------------------- */
.mt-page-hero,
.mt-post-hero {
  position: relative;
  background: var(--ink);
  padding: 160px 0 80px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: labelReveal 0.8s var(--ease) 0.2s forwards;
}
.page-hero-label .label-dash { animation: pipeReveal 0.5s var(--ease) 0.1s both; }

.page-hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-page-hero);
  font-weight: 400;
  line-height: 1.12;
  color: var(--white);
  max-width: 900px;
  animation: pageHeroReveal 0.9s var(--ease) 0.4s both;
}

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

.page-hero-sub {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,.55);
  max-width: 620px;
  line-height: 1.7;
  animation: pageHeroReveal 0.9s var(--ease) 0.65s both;
}

/* ----------------------------------------------------------------
   15. About Page
---------------------------------------------------------------- */
.mt-about-intro {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .about-intro-grid { grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
}

.about-pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  color: var(--text);
  position: sticky;
  top: 100px;
}

.about-intro-col-right p {
  font-size: var(--fs-md);
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Boutique cards */
.mt-boutique {
  padding: var(--space-2xl) 0;
  background: var(--ink);
}
.mt-boutique .section-label { color: var(--gold); }
.mt-boutique .section-title { color: var(--white); }
.boutique-header { margin-bottom: 4rem; }

.boutique-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5px;
  border: 1.5px solid var(--ink-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 640px) { .boutique-grid { grid-template-columns: 1fr 1fr; } }

.boutique-card {
  padding: 2.5rem 2rem;
  background: var(--ink-light);
  border-right: 1.5px solid var(--ink-border);
  border-bottom: 1.5px solid var(--ink-border);
  transition: background var(--t-base) var(--ease);
}
.boutique-card:hover { background: var(--ink-mid); }
.boutique-card__icon {
  width: 36px; height: 36px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.boutique-card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.boutique-card p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}

/* Bio Section */
.mt-bio {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-top: 2rem;
}
@media (min-width: 900px) {
  .bio-grid { grid-template-columns: 360px 1fr; gap: 6rem; align-items: start; }
}

.bio-portrait__img {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--cream-deep);
}
.bio-portrait__img img {
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s var(--ease);
}
.bio-portrait:hover .bio-portrait__img img { transform: scale(1.03); }

.bio-portrait__detail {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 1.25rem;
}
.bio-portrait__detail strong {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--text);
}
.bio-portrait__detail span {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}
.bio-portrait__detail .btn-ghost { margin-top: 0.75rem; align-self: flex-start; }

.bio-name-large {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.bio-title-large {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-deep);
}
.bio-text p {
  font-size: var(--fs-base);
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.bio-cta { margin-top: 2rem; }

/* ----------------------------------------------------------------
   16. Services Detail Page
---------------------------------------------------------------- */
.mt-services-detail {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--cream-deep);
  transition: background var(--t-base) var(--ease);
}
.service-detail:last-child { border-bottom: none; }

@media (min-width: 768px) {
  .service-detail { grid-template-columns: 80px 1fr; align-items: start; gap: 3rem; }
}

.service-detail__num {
  font-family: var(--font-mono);
  font-size: var(--fs-3xl);
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}
.service-detail__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.service-detail__lead {
  font-size: var(--fs-md);
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
}
.service-detail__content p {
  font-size: var(--fs-base);
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Services Approach Callout */
.mt-approach-callout {
  padding: var(--space-xl) 0;
  background: var(--ink);
}
.approach-callout-inner {
  max-width: 100%;
  padding: 4rem;
  border: 1px solid var(--ink-border);
  border-radius: var(--radius-lg);
  background: var(--ink-light);
}
.approach-callout-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.approach-callout-inner p {
  font-size: var(--fs-md);
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* ----------------------------------------------------------------
   17. Blog / Archive
---------------------------------------------------------------- */
.mt-archive { padding: var(--space-xl) 0; }

.archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .archive-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .archive-grid { grid-template-columns: 1fr 1fr 1fr; } }

.archive-card {
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease-bounce);
}
.archive-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.archive-card__img { overflow: hidden; aspect-ratio: 16/9; display: block; }
.archive-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.archive-card:hover .archive-card__img img { transform: scale(1.04); }
.archive-card__body { padding: 1.75rem; }
.archive-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.archive-card__cat {
  background: var(--gold-faint);
  color: var(--gold);
  padding: 0.2em 0.7em;
  border-radius: 100px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--t-fast);
}
.archive-card__cat:hover { background: var(--gold); color: var(--ink); }
.archive-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.archive-card__title a { transition: color var(--t-fast) var(--ease); }
.archive-card__title a:hover { color: var(--gold); }
.archive-card__excerpt { font-size: var(--fs-sm); color: var(--text-mid); margin-bottom: 1.25rem; }

.archive-pagination { margin-top: 3rem; }
.archive-pagination .nav-links { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.archive-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--text-mid);
  transition: all var(--t-fast) var(--ease);
}
.archive-pagination .page-numbers:hover,
.archive-pagination .page-numbers.current {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.archive-pagination .prev, .archive-pagination .next { width: auto; padding: 0 1rem; }

/* ----------------------------------------------------------------
   18. Page Content
---------------------------------------------------------------- */
.mt-page-content { padding: var(--space-xl) 0; }

.entry-content {
  font-size: var(--fs-md);
  color: var(--text-mid);
  line-height: 1.8;
}
.entry-content h2, .entry-content h3 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text);
  margin: 2.5rem 0 1rem;
  line-height: 1.25;
}
.entry-content h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.entry-content h3 { font-size: var(--fs-xl); }
.entry-content p  { margin-bottom: 1.25rem; }
.entry-content a  { color: var(--gold); border-bottom: 1px solid var(--gold-faint); transition: border-color var(--t-fast); }
.entry-content a:hover { border-color: var(--gold); }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content li { margin-bottom: 0.5rem; }
.entry-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-style: italic;
  color: var(--text);
}

/* Post Navigation */
.post-navigation {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--cream-deep);
}
.post-nav-link { display: flex; flex-direction: column; gap: 0.25rem; max-width: 45%; }
.post-nav-link--next { align-items: flex-end; text-align: right; }
.post-nav-dir { font-size: var(--fs-xs); color: var(--text-muted); letter-spacing: 0.08em; }
.post-nav-title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--text);
  transition: color var(--t-fast) var(--ease);
}
.post-nav-link:hover .post-nav-title { color: var(--gold); }

.post-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.4);
  animation: pageHeroReveal 0.8s var(--ease) 0.85s both;
}

.post-thumbnail { padding-top: var(--space-lg); }
.post-featured-img {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* ----------------------------------------------------------------
   19. Footer
---------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--ink-border);
}

.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-border);
}
@media (min-width: 900px) {
  .footer-top { flex-direction: row; justify-content: space-between; gap: 6rem; }
}

.footer-brand { flex-shrink: 0; }
.footer-tagline {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.3);
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .footer-nav { grid-template-columns: 1fr 1fr 1fr; } }

.footer-nav-label {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 1.25rem;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav-col ul a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.55);
  transition: color var(--t-fast) var(--ease);
}
.footer-nav-col ul a:hover { color: var(--gold); }

.footer-nav-col address p {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.4);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}
.footer-nav-col address a {
  color: rgba(255,255,255,.55);
  transition: color var(--t-fast) var(--ease);
}
.footer-nav-col address a:hover { color: var(--gold); }
.mt-footer-cta { margin-top: 1.5rem; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.5rem 0;
}
.footer-copy, .footer-legal {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,.22);
  letter-spacing: 0.06em;
}
.footer-legal a { transition: color var(--t-fast) var(--ease); }
.footer-legal a:hover { color: rgba(255,255,255,.55); }

/* ----------------------------------------------------------------
   20. Scroll Animations
---------------------------------------------------------------- */
.animate {
  opacity: 0;
  transition: opacity var(--t-xslow) var(--ease) var(--delay, 0s),
              transform var(--t-xslow) var(--ease) var(--delay, 0s);
}
.animate.animate-up    { transform: translateY(36px); }
.animate.animate-left  { transform: translateX(-36px); }
.animate.animate-right { transform: translateX(36px); }
.animate.animate-scale { transform: scale(0.96); }
.animate.animate-fade  { /* opacity only */ }

.animate.is-visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .animate, .hero-word, .animate-label, .hero-sub, .hero-actions,
  .scroll-indicator, .page-hero-title, .page-hero-label, .page-hero-sub,
  .hero-bg__blob { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ----------------------------------------------------------------
   21. Magnetic Hover (applied via JS)
---------------------------------------------------------------- */
.mt-magnetic {
  transition: transform 0.25s var(--ease);
  will-change: transform;
}

/* ----------------------------------------------------------------
   22. Smooth Scroll Progress Bar
---------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width 0.1s linear;
  transform-origin: left;
}

/* ----------------------------------------------------------------
   23. Responsive — Mobile Nav
---------------------------------------------------------------- */
@media (max-width: 899px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(380px, 90vw);
    height: 100vh;
    height: 100dvh;
    background: var(--ink-light);
    border-left: 1px solid var(--ink-border);
    padding: 80px 2rem 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform var(--t-slow) var(--ease);
    z-index: 999;
    overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateX(0); }
  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .nav-menu > li > a {
    padding: 0.75em 0;
    font-size: var(--fs-md);
    color: rgba(255,255,255,.8);
    width: 100%;
  }
  .nav-menu > li > 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;
    padding-left: 1rem;
    display: none;
  }
  .nav-menu li.is-open > .sub-menu { display: block; }
  .nav-cta { margin-top: 2rem; margin-left: 0; }

  /* Overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 998;
    backdrop-filter: blur(2px);
  }
  .nav-overlay.is-visible { display: block; }
}

/* ----------------------------------------------------------------
   24. Miscellaneous Responsive
---------------------------------------------------------------- */
@media (max-width: 640px) {
  .approach-visual { display: none; }
  .boutique-grid { grid-template-columns: 1fr; }
  .cta-band-inner { padding: 2rem; }
}

@media (min-width: 1400px) {
  :root { --gutter: 4rem; }
}

/* ================================================================
   EXPERIENCE PAGE
================================================================ */
.mt-experience-cases {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5px;
  border: 1.5px solid var(--cream-deep);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .case-grid { grid-template-columns: repeat(3, 1fr); }
}

.case-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-right: 1.5px solid var(--cream-deep);
  border-bottom: 1.5px solid var(--cream-deep);
  color: var(--text);
  transition: box-shadow var(--t-base) var(--ease),
              transform var(--t-base) var(--ease-bounce);
  position: relative;
  overflow: hidden;
}
.case-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--t-slow) var(--ease);
}
.case-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.case-card:hover::after { width: 100%; }

.case-card__logo {
  padding: 2rem 2rem 1.25rem;
  min-height: 100px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--cream-deep);
}
.case-card__logo img { max-height: 48px; width: auto; max-width: 160px; object-fit: contain; }

.case-card__body { padding: 1.75rem 2rem 2rem; flex: 1; display: flex; flex-direction: column; }
.case-card__type {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.case-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.case-card__body p {
  font-size: var(--fs-sm);
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}
.case-card__link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: auto;
  transition: gap var(--t-base) var(--ease-bounce);
}
.case-card:hover .case-card__link { gap: 0.65em; }
.case-card__link span { transition: transform var(--t-base) var(--ease-bounce); }
.case-card:hover .case-card__link span { transform: translateX(3px); }

/* Geographic Reach */
.mt-reach {
  padding: var(--space-2xl) 0;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 50px, 100% 100%, 0 100%);
  padding-bottom: calc(var(--space-2xl) + 50px);
}
.mt-reach .section-label { color: var(--gold); }
.mt-reach .section-title { color: var(--white); }
.mt-reach p { color: rgba(255,255,255,.55); font-size: var(--fs-base); line-height: 1.8; margin-bottom: 1.25rem; }

.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: 6rem; }
}

.reach-regions { display: flex; flex-direction: column; gap: 0; }

.reach-region {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--ink-border);
  transition: background var(--t-fast) var(--ease);
}
.reach-region:first-child { border-top: 1px solid var(--ink-border); }
.reach-region__num {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  flex-shrink: 0;
  width: 2rem;
}
.reach-region__content { display: flex; flex-direction: column; gap: 0.2rem; }
.reach-region__content strong { font-size: var(--fs-base); font-weight: 600; color: var(--white); }
.reach-region__content span  { font-size: var(--fs-sm); color: rgba(255,255,255,.4); }

/* ================================================================
   SERVICE DETAIL PAGES  (media-relations, social-media, etc.)
================================================================ */
.mt-service-detail-page {
  padding: var(--space-2xl) 0;
  background: var(--cream);
}

.service-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 900px) {
  .service-page-grid {
    grid-template-columns: 340px 1fr;
    gap: 6rem;
    align-items: start;
  }
}

.service-page-lead {
  position: sticky;
  top: 100px;
}
.service-page-lead p {
  font-family: var(--font-display);
  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-mid);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.service-page-body p:last-child { margin-bottom: 0; }

/* ── Other Services navigation strip ── */
.mt-services-nav {
  padding: var(--space-lg) 0;
  background: var(--cream-dark);
  border-top: 1px solid var(--cream-deep);
}

.services-nav-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.svc-nav-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.65em 1.25em;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-mid);
  border: 1.5px solid var(--cream-deep);
  border-radius: var(--radius-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),
              box-shadow var(--t-base) var(--ease);
}
.svc-nav-item:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.svc-nav-item span {
  transition: transform var(--t-base) var(--ease-bounce);
}
.svc-nav-item:hover span { transform: translateX(3px); }

/* ── Page featured image ── */
.page-featured-image {
  padding-top: var(--space-lg);
}
.page-feat-img {
  width: 100%;
  border-radius: var(--radius-md);
  max-height: 520px;
  object-fit: cover;
}

/* ================================================================
   WORDPRESS CONTENT IMAGES — Resets & Styling
   Handles .wp-caption, Gutenberg figure blocks, alignments,
   and all editor-inserted image markup variations.
================================================================ */

/* ── Base image resets inside content ── */
.entry-content img,
.entry-content figure img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

/* ── Figure element — Gutenberg default wrapper ── */
.entry-content figure,
.entry-content .wp-block-image {
  margin: 2rem 0;
  padding: 0;
  background: transparent;
  border: none;
  max-width: 100%;
}

/* ── Figcaption — caption text under images ── */
.entry-content figcaption,
.entry-content .wp-block-image figcaption,
.entry-content .wp-caption-text {
  margin-top: 0.6rem;
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.5;
  text-align: center;
  background: transparent;
  border: none;
  padding: 0;
}

/* ── Classic editor .wp-caption ── */
.entry-content .wp-caption {
  background: transparent;
  border: none;
  padding: 0;
  margin: 2rem 0;
  max-width: 100% !important; /* override inline width WordPress injects */
}
.entry-content .wp-caption img {
  display: block;
  width: 100%;
}
.entry-content .wp-caption-text {
  display: block;
  margin-top: 0.6rem;
}

/* ── Gutenberg image block variants ── */
.entry-content .wp-block-image.is-resized img {
  width: auto;
  max-width: 100%;
}
.entry-content .wp-block-image.size-full img,
.entry-content .wp-block-image.size-large img {
  width: 100%;
}

/* ── Alignment classes ── */
.entry-content .aligncenter,
.entry-content figure.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.entry-content .alignleft,
.entry-content figure.alignleft {
  float: left;
  margin: 0.5rem 2rem 1rem 0;
  max-width: 50%;
}
.entry-content .alignright,
.entry-content figure.alignright {
  float: right;
  margin: 0.5rem 0 1rem 2rem;
  max-width: 50%;
}
.entry-content .alignfull {
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
  max-width: calc(100% + (2 * var(--gutter)));
  border-radius: 0;
}
@media (max-width: 640px) {
  .entry-content .alignleft,
  .entry-content figure.alignleft,
  .entry-content .alignright,
  .entry-content figure.alignright {
    float: none;
    margin: 1.5rem 0;
    max-width: 100%;
  }
}

/* ── WordPress gallery block ── */
.entry-content .wp-block-gallery {
  margin: 2rem 0;
  padding: 0;
  background: transparent;
  border: none;
}
.entry-content .wp-block-gallery figure {
  margin: 0;
}

/* ── Clearfix after floated images ── */
.entry-content::after {
  content: '';
  display: table;
  clear: both;
}

/* ── Gutenberg embed blocks (video, etc.) ── */
.entry-content .wp-block-embed {
  margin: 2rem 0;
}
.entry-content .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.entry-content .wp-block-embed__wrapper iframe,
.entry-content .wp-block-embed__wrapper video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: var(--radius-md);
  border: none;
}

/* ── Suppress the page-featured-image div on pages
       where the image is already in the content ── */
.page-featured-image {
  padding-top: var(--space-lg);
  padding-bottom: 0;
}
.page-feat-img {
  width: 100%;
  border-radius: var(--radius-md);
  max-height: 520px;
  object-fit: cover;
  display: block;
}

/* ================================================================
   GUTENBERG BLOCK STYLES — entry-content overrides
   Resets and re-themes all standard WP blocks to match the
   Media Theory design system. Without these, blocks fall back
   to Gutenberg's default styles (black buttons, etc.)
================================================================ */

/* ── Button block ── */
.entry-content .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

/* Target every possible way WP renders a button block */
.entry-content .wp-block-button__link,
.entry-content .wp-block-button a,
.entry-content .wp-element-button,
.entry-content a.wp-block-button__link,
.entry-content a.wp-element-button {
  display: inline-flex !important;
  align-items: center;
  width: auto !important;
  max-width: none !important;
  padding: 0.8em 1.75em !important;
  background: var(--gold) !important;
  color: var(--ink) !important;
  font-family: var(--font-sans) !important;
  font-size: var(--fs-sm) !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  border-radius: var(--radius-sm) !important;
  border: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  transition: background var(--t-base) var(--ease),
              transform var(--t-base) var(--ease-bounce);
}
.entry-content .wp-block-button__link:hover,
.entry-content .wp-block-button a:hover,
.entry-content .wp-element-button:hover,
.entry-content a.wp-block-button__link:hover,
.entry-content a.wp-element-button:hover {
  background: var(--gold-light) !important;
  color: var(--ink) !important;
  transform: translateY(-2px);
  border-bottom: none !important;
}
/* Outline style variant */
.entry-content .wp-block-button.is-style-outline .wp-block-button__link,
.entry-content .wp-block-button.is-style-outline .wp-element-button {
  background: transparent !important;
  color: var(--gold) !important;
  border: 1.5px solid var(--gold) !important;
}
.entry-content .wp-block-button.is-style-outline .wp-block-button__link:hover,
.entry-content .wp-block-button.is-style-outline .wp-element-button:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
}

/* ── Separator / Divider ── */
.entry-content .wp-block-separator,
.entry-content hr {
  border: none;
  border-top: 1px solid var(--cream-deep);
  margin: 2.5rem 0;
  background: transparent;
}
.entry-content .wp-block-separator.is-style-wide {
  width: 100%;
}
.entry-content .wp-block-separator.is-style-dots {
  border: none;
  text-align: center;
  color: var(--gold);
  letter-spacing: 0.4em;
}
.entry-content .wp-block-separator.is-style-dots::before {
  content: '· · ·';
}

/* ── Quote block ── */
.entry-content .wp-block-quote,
.entry-content blockquote {
  margin: 2rem 0;
  padding: 1rem 0 1rem 1.5rem;
  border-left: 3px solid var(--gold);
  background: transparent;
}
.entry-content .wp-block-quote p,
.entry-content blockquote p {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.entry-content .wp-block-quote cite,
.entry-content blockquote cite {
  font-size: var(--fs-sm);
  font-style: normal;
  color: var(--text-muted);
}

/* ── Pullquote block ── */
.entry-content .wp-block-pullquote {
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  padding: 2rem 1rem;
  margin: 2.5rem 0;
  text-align: center;
  background: transparent;
}
.entry-content .wp-block-pullquote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  border: none;
  padding: 0;
  color: var(--text);
}

/* ── Heading blocks ── */
.entry-content .wp-block-heading,
.entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--text);
  line-height: 1.25;
  margin: 2.5rem 0 1rem;
}
.entry-content h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.entry-content h3 { font-size: var(--fs-xl); }
.entry-content h4 { font-size: var(--fs-lg); font-weight: 600; }

/* ── Cover block ── */
.entry-content .wp-block-cover {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 2rem 0;
}

/* ── Table block ── */
.entry-content .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
  margin: 1.5rem 0;
}
.entry-content .wp-block-table th {
  background: var(--cream-dark);
  font-weight: 600;
  text-align: left;
  padding: 0.75em 1em;
  border-bottom: 2px solid var(--cream-deep);
}
.entry-content .wp-block-table td {
  padding: 0.7em 1em;
  border-bottom: 1px solid var(--cream-deep);
  color: var(--text-mid);
}
.entry-content .wp-block-table tr:last-child td { border-bottom: none; }

/* ── Columns block ── */
.entry-content .wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 2rem 0;
}
.entry-content .wp-block-column {
  flex: 1;
  min-width: 200px;
}

/* ── Media & Text block ── */
.entry-content .wp-block-media-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}
.entry-content .wp-block-media-text img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}
@media (max-width: 640px) {
  .entry-content .wp-block-media-text {
    grid-template-columns: 1fr;
  }
}

/* ── List blocks ── */
.entry-content ul, .entry-content ol {
  padding-left: 1.5rem;
  margin: 1rem 0 1.5rem;
}
.entry-content li {
  font-size: var(--fs-base);
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 0.4rem;
}
.entry-content ul li { list-style: disc; }
.entry-content ol li { list-style: decimal; }

/* ================================================================
   GENERATEBLOCKS OVERRIDES
   The site content was built with GenerateBlocks. These selectors
   target .gb-* classes used by that plugin.
================================================================ */

/* ── GenerateBlocks Button ── */
.gb-button,
.gb-button-wrapper a,
.gb-button-wrapper .gb-button {
  display: inline-flex !important;
  align-items: center;
  padding: 0.8em 1.75em !important;
  background-color: var(--gold) !important;
  color: var(--ink) !important;
  font-family: var(--font-sans) !important;
  font-size: var(--fs-sm) !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em !important;
  border-radius: var(--radius-sm) !important;
  border: none !important;
  box-shadow: none !important;
  text-decoration: none !important;
  width: auto !important;
  max-width: fit-content !important;
  transition: background var(--t-base) var(--ease),
              transform var(--t-base) var(--ease-bounce) !important;
}
.gb-button:hover,
.gb-button-wrapper a:hover,
.gb-button-wrapper .gb-button:hover {
  background-color: var(--gold-light) !important;
  color: var(--ink) !important;
  transform: translateY(-2px) !important;
}

/* ── GenerateBlocks Container ── */
.gb-container {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* ── GenerateBlocks Grid ── */
.gb-grid-wrapper {
  display: grid;
  gap: 2rem;
}

/* ── GenerateBlocks Headline ── */
.gb-headline {
  font-family: var(--font-display) !important;
  color: var(--text) !important;
}

/* ── GenerateBlocks inner containers — remove dark bg ── */
.gb-container .gb-container,
.gb-grid-column .gb-container {
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
}
