/* ═══════════════════════════════════════════════════════════════
   Lumière — Texas Tailored Tech
   Apple-style · Light · Modern · Cozy
   Primary: TTT Navy #1a3060 | Accent: #2d5fb3
═══════════════════════════════════════════════════════════════ */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

/* ─── Design Tokens ─── */
:root {
  /* Brand palette */
  --navy:          #1a3060;
  --navy-dark:     #0f1f40;
  --navy-mid:      #1e3a72;
  --blue:          #2d5fb3;
  --blue-light:    #3b7dd8;
  --blue-pale:     #e8eef8;

  /* Neutrals — Apple-style */
  --bg:            #ffffff;
  --bg-alt:        #f5f5f7;
  --bg-deep:       #e8e8ed;
  --fore:          #1d1d1f;
  --fore-2:        #424245;
  --fore-3:        #6e6e73;
  --fore-4:        #aeaeb2;
  --border:        rgba(0, 0, 0, 0.08);
  --border-mid:    rgba(0, 0, 0, 0.12);

  /* Card surfaces */
  --card-bg:       #ffffff;
  --card-border:   rgba(0, 0, 0, 0.08);
  --glass-bg:      rgba(255, 255, 255, 0.80);
  --glass-border:  rgba(255, 255, 255, 0.60);

  /* Typography */
  --font-sans:   'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display:'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
  --font-mono:   'Menlo', 'Courier New', monospace;

  /* Layout */
  --max-w:        1200px;
  --max-w-narrow: 760px;
  --max-w-wide:   1440px;
  --gutter:       clamp(1.25rem, 4vw, 3rem);
  --header-h:     70px;

  /* Motion */
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --fast:        180ms;
  --base:        380ms;
  --slow:        640ms;
  --cinematic:   1000ms;

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-full:9999px;

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:  0 4px 12px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md:  0 8px 28px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.05);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-navy:0 8px 32px rgba(26,48,96,0.22);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--fore);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: #c7c7cc; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #aeaeb2; }
::selection { background: rgba(45, 95, 179, 0.18); color: var(--fore); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }

/* Skip link */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  padding: .5rem 1rem; background: var(--navy); color: #fff;
  font-size: .85rem; z-index: 9999; border-radius: var(--r-sm);
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  padding: 0; margin: -1px; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─── Cursor glow ─── */
.cursor-glow {
  position: fixed; width: 400px; height: 400px;
  border-radius: 50%; pointer-events: none; z-index: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(45,95,179,0.06) 0%, transparent 70%);
  transition: left .12s, top .12s;
}

/* ═══════════════════════════════
   TYPOGRAPHY
═══════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--fore);
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5.5rem); }
h2 { font-size: clamp(2rem,   4.5vw, 3.8rem); }
h3 { font-size: clamp(1.4rem, 2.8vw, 2.2rem); }
h4 { font-size: clamp(1.1rem, 2vw,   1.5rem); }

p {
  font-size: clamp(.95rem, 1.5vw, 1.05rem);
  line-height: 1.75;
  color: var(--fore-3);
}

/* ═══════════════════════════════
   SCROLL REVEAL ANIMATIONS
═══════════════════════════════ */
.reveal-up,
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-clip {
  opacity: 0;
  transition: opacity var(--slow) var(--ease-out),
              transform var(--slow) var(--ease-out),
              clip-path var(--slow) var(--ease-out);
  will-change: opacity, transform;
}
.reveal-up    { transform: translateY(40px); }
.reveal       { transform: translateY(28px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.94) translateY(20px); }
.reveal-clip  { clip-path: inset(0 0 100% 0); transform: translateY(20px); }

.reveal-up.is-visible,
.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-clip.is-visible {
  opacity: 1;
  clip-path: inset(0 0 0% 0);
  transform: none;
}

/* Hero entrance */
.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--slow) var(--ease-out), transform var(--slow) var(--ease-out);
}
.hero-line.is-visible { opacity: 1; transform: none; }

.hero-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--base) var(--ease-out), transform var(--base) var(--ease-out);
}
.hero-word.is-visible { opacity: 1; transform: none; }

/* Draw line animation */
.draw-line {
  display: block; height: 2px;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.8s var(--ease-out);
  border-radius: var(--r-full);
}
.draw-line.is-drawn { transform: scaleX(1); }

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

/* ═══════════════════════════════
   BUTTONS
═══════════════════════════════ */
.btn-luxury,
.btn-outline,
.btn-ghost,
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-sans);
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--base) var(--ease);
  white-space: nowrap;
}

.btn-luxury {
  padding: .8rem 1.8rem;
  font-size: .88rem;
  letter-spacing: .01em;
  background: var(--navy);
  color: #fff;
  border-radius: var(--r-full);
  border-color: var(--navy);
  box-shadow: var(--shadow-navy);
}
.btn-luxury:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(26,48,96,0.30);
  color: #fff;
}

.btn-outline {
  padding: .8rem 1.8rem;
  font-size: .88rem;
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
  border-radius: var(--r-full);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  padding: .75rem 1.5rem;
  font-size: .85rem;
  background: transparent;
  color: var(--fore-3);
  border-color: var(--border-mid);
  border-radius: var(--r-full);
}
.btn-ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-nav-cta {
  padding: .55rem 1.2rem;
  font-size: .82rem;
  background: var(--navy);
  color: #fff;
  border-radius: var(--r-full);
  border-color: var(--navy);
}
.btn-nav-cta:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  color: #fff;
}

/* ═══════════════════════════════
   HEADER / NAVBAR
═══════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition:
    background var(--base) var(--ease),
    box-shadow  var(--base) var(--ease),
    transform   var(--base) var(--ease),
    border-color var(--base) var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 24px rgba(0,0,0,0.06);
  border-bottom-color: rgba(0,0,0,0.06);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Logo */
.site-branding { flex-shrink: 0; }
.site-logo-link { display: flex; align-items: center; text-decoration: none; }
.site-logo-img  {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity var(--fast);
}
.site-logo-link:hover .site-logo-img { opacity: .85; }
.site-logo-link .custom-logo { height: 48px; width: auto; }

/* Desktop nav */
.site-nav { flex: 1; display: flex; justify-content: center; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  list-style: none;
}
.nav-menu > li > a {
  font-family: var(--font-sans);
  font-size: .84rem;
  font-weight: 500;
  color: var(--fore-2);
  text-decoration: none;
  padding: .35rem 0;
  position: relative;
  transition: color var(--fast);
}
.nav-menu > li > a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--navy);
  border-radius: var(--r-full);
  transition: width var(--base) var(--ease);
}
.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a { color: var(--navy); }
.nav-menu > li > a:hover::after,
.nav-menu > li.current-menu-item > a::after,
.nav-menu > li > a.is-active::after { width: 100%; }

.header-cta { flex-shrink: 0; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.toggle-bar {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--fore);
  border-radius: 2px;
  transition: all var(--base) var(--ease);
  transform-origin: center;
}
.menu-toggle.is-active .toggle-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.menu-toggle.is-active .toggle-bar:nth-child(2) {
  opacity: 0; transform: scaleX(0);
}
.menu-toggle.is-active .toggle-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--base) var(--ease), transform var(--base) var(--ease);
  z-index: 999;
}
.mobile-drawer.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-drawer__inner {
  padding: 1.5rem var(--gutter) 2rem;
  max-width: var(--max-w);
  margin-inline: auto;
}
.mobile-nav-menu { display: flex; flex-direction: column; gap: .25rem; margin-bottom: 1.5rem; }
.mobile-nav-menu li a {
  display: block;
  padding: .75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--fore);
  border-bottom: 1px solid var(--border);
  transition: color var(--fast);
}
.mobile-nav-menu li a:hover { color: var(--navy); }
.mobile-drawer__cta { padding-top: .5rem; }

body.drawer-open { overflow: hidden; }

/* ═══════════════════════════════
   HERO SECTION
═══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
/* Gradient mesh */
.hero__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(45,95,179,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(26,48,96,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 90%, rgba(59,125,216,0.04) 0%, transparent 50%);
}
/* Floating shapes */
.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: .5;
}
.hero__shape--1 {
  width: clamp(240px, 35vw, 520px);
  height: clamp(240px, 35vw, 520px);
  top: -5%; right: -5%;
  background: radial-gradient(circle at 35% 35%, rgba(45,95,179,0.12), transparent 65%);
  border: 1px solid rgba(45,95,179,0.08);
  animation: shapeFloat 10s ease-in-out infinite;
}
.hero__shape--2 {
  width: clamp(120px, 18vw, 280px);
  height: clamp(120px, 18vw, 280px);
  bottom: 12%; left: 5%;
  background: radial-gradient(circle at 60% 40%, rgba(26,48,96,0.08), transparent 70%);
  animation: shapeFloat 14s ease-in-out infinite reverse;
  animation-delay: -4s;
}
.hero__shape--3 {
  width: clamp(60px, 8vw, 120px);
  height: clamp(60px, 8vw, 120px);
  top: 30%; right: 18%;
  background: rgba(45,95,179,0.06);
  border: 1px solid rgba(45,95,179,0.10);
  border-radius: var(--r-lg);
  animation: shapeFloat 8s ease-in-out infinite;
  animation-delay: -2s;
}

@keyframes shapeFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33%       { transform: translate(8px, -14px) rotate(2deg); }
  66%       { transform: translate(-6px, 8px) rotate(-1deg); }
}

.hero__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
  padding-block: clamp(4rem, 10vh, 8rem);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: .35rem .85rem;
  border-radius: var(--r-full);
  margin-bottom: 1.75rem;
}

.hero__title {
  font-size: clamp(2.6rem, 6.5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--fore);
  margin-bottom: 1.5rem;
}
.hero__title em {
  font-style: normal;
  color: var(--navy);
}

.hero__lead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.72;
  color: var(--fore-3);
  max-width: 44ch;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero visual — floating card stack */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(320px, 44vw, 560px);
}

.hero-card {
  position: absolute;
  background: var(--card-bg);
  border-radius: var(--r-xl);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  animation: cardFloat 6s ease-in-out infinite;
}
.hero-card--main {
  width: 72%; left: 0; top: 10%;
  z-index: 2;
  animation-delay: 0s;
}
.hero-card--back {
  width: 60%; right: 0; bottom: 8%;
  z-index: 1;
  background: var(--blue-pale);
  border-color: rgba(45,95,179,0.12);
  animation-delay: -3s;
}
@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-12px) rotate(0deg); }
}

.hero-card__bar {
  display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem;
}
.hero-card__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.hero-card__dot--r { background: #ff5f57; }
.hero-card__dot--y { background: #febc2e; }
.hero-card__dot--g { background: #28c840; }

.hero-card__line {
  height: 8px; border-radius: 4px;
  background: var(--bg-alt); margin-bottom: .5rem;
}
.hero-card__line--w70 { width: 70%; }
.hero-card__line--w50 { width: 50%; background: var(--blue-pale); }
.hero-card__line--w85 { width: 85%; }
.hero-card__line--accent { background: linear-gradient(90deg, var(--navy), var(--blue)); width: 40%; }

.hero-badge {
  position: absolute;
  right: 8%; top: 15%;
  background: var(--navy);
  color: #fff;
  border-radius: var(--r-md);
  padding: .6rem 1rem;
  font-size: .78rem;
  font-weight: 600;
  box-shadow: var(--shadow-navy);
  animation: badgePulse 3s ease-in-out infinite;
  z-index: 3;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: .4rem;
  z-index: 2;
}
.hero__scroll-label {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--fore-4);
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--fore-4), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  40%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ═══════════════════════════════
   SECTION CHROME
═══════════════════════════════ */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 16px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.1;
  color: var(--fore);
  margin: 0 auto 1rem auto;
  max-width: 1000px;
  text-align: center;
	  max-width: 1100px !important;
  width: 100%;
}

.section-lead {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--fore-3);
  max-width: 52ch;
  line-height: 1.72;
}

/* ═══════════════════════════════
   SERVICES / FEATURES GRID
═══════════════════════════════ */
.services-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg-alt);
}
.services-header {
  text-align: center;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
	  max-width: 1200px !important;
  width: 100%;
}
.services-header .section-eyebrow { justify-content: center; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--base) var(--ease), transform var(--base) var(--ease);
  cursor: default;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.service-card__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-pale);
  border-radius: var(--r-md);
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
  transition: background var(--base);
}
.service-card:hover .service-card__icon { background: var(--navy); }
.service-card:hover .service-card__icon svg { color: #fff; }

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--fore);
  margin-bottom: .6rem;
}
.service-card__body {
  font-size: .92rem; line-height: 1.68; color: var(--fore-3);
}

/* ═══════════════════════════════
   STORY / ABOUT SPLIT
═══════════════════════════════ */
.story-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}
.story-text .section-lead { margin-bottom: 2rem; }

.story-points { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.75rem; }
.story-point {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--bg-alt);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: border-color var(--base), box-shadow var(--base);
}
.story-point:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); }
.story-point__icon {
  width: 36px; height: 36px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: #fff;
  border-radius: var(--r-sm); font-size: .9rem;
}
.story-point__text h4 {
  font-size: .92rem; font-weight: 600; margin-bottom: .2rem; color: var(--fore);
}
.story-point__text p { font-size: .86rem; color: var(--fore-3); line-height: 1.55; }

/* Story visual */
.story-visual {
  position: relative;
  height: clamp(340px, 42vw, 540px);
}
.story-visual__card {
  position: absolute;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  padding: 1.75rem;
}
.story-visual__card--main {
  inset: 0 0 15% 0;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.story-visual__card--main::before {
  content: '';
  position: absolute; top: -30%; right: -20%;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(59,125,216,0.3), transparent 65%);
  border-radius: 50%;
}
.story-card-label {
  font-size: .72rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  margin-bottom: .4rem;
}
.story-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700; color: #fff;
  letter-spacing: -.02em; line-height: 1.2;
}
.story-visual__card--float {
  bottom: 0; right: -1.5rem;
  width: 55%;
  background: #fff;
  text-align: center;
}
.float-stat {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--navy);
  letter-spacing: -.04em; line-height: 1;
  margin-bottom: .25rem;
}
.float-label {
  font-size: .78rem; color: var(--fore-3); line-height: 1.4;
}

/* ═══════════════════════════════
   STATS BAND
═══════════════════════════════ */
.stats-section {
  padding: clamp(4rem, 7vw, 6rem) 0;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,95,179,0.3), transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { position: relative; }
.stat-item + .stat-item::before {
  content: '';
  position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,0.12);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: .5rem;
  display: block;
}
.stat-label {
  font-size: .82rem; color: rgba(255,255,255,0.60);
  font-weight: 400; line-height: 1.4;
}

/* ═══════════════════════════════
   PROCESS / NARRATIVE
═══════════════════════════════ */
.process-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg-alt);
}
.process-header {
  text-align: center; max-width: 52ch;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}
.process-header .section-eyebrow { justify-content: center; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem; left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--navy));
  opacity: .18;
}

.process-step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--base), transform var(--base);
}
.process-step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.process-step__num {
  width: 44px; height: 44px;
  background: var(--navy); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: .88rem; font-weight: 700;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px rgba(26,48,96,0.3);
}
.process-step__title {
  font-size: 1rem; font-weight: 700; color: var(--fore);
  margin-bottom: .6rem; letter-spacing: -.01em;
}
.process-step__body { font-size: .88rem; color: var(--fore-3); line-height: 1.6; }

/* ═══════════════════════════════
   TESTIMONIALS
═══════════════════════════════ */
.trust-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg);
}
.trust-header {
  text-align: center; max-width: 52ch;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}
.trust-header .section-eyebrow { justify-content: center; }

.trust-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.trust-quote {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: box-shadow var(--base), transform var(--base);
}
.trust-quote:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.trust-quote__stars {
  display: flex; gap: .25rem;
  color: #f59e0b; font-size: .9rem;
}

.trust-quote__text {
  font-size: clamp(.92rem, 1.4vw, 1rem);
  line-height: 1.7;
  color: var(--fore-2);
  font-style: italic;
  flex: 1;
}

.trust-quote__author { margin-top: auto; }
.trust-quote__name {
  font-size: .88rem; font-weight: 600; color: var(--fore);
  display: block; margin-bottom: .1rem;
}
.trust-quote__company {
  font-size: .78rem; color: var(--fore-4);
}

/* ═══════════════════════════════
   CTA SECTION
═══════════════════════════════ */
.cta-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--navy);
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 20% 50%, rgba(45,95,179,0.4), transparent 60%),
    radial-gradient(ellipse 60% 70% at 80% 30%, rgba(59,125,216,0.3), transparent 60%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-eyebrow {
  display: inline-flex;
  align-items: center; gap: .45rem;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}
.cta-lead {
  font-size: clamp(.95rem, 1.6vw, 1.08rem);
  color: rgba(255,255,255,0.65);
  max-width: 42ch;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
  padding: .9rem 2.2rem;
  font-family: var(--font-sans); font-size: .9rem; font-weight: 600;
  background: #fff; color: var(--navy);
  border: 2px solid #fff; border-radius: var(--r-full);
  text-decoration: none;
  transition: all var(--base) var(--ease);
  display: inline-block;
}
.btn-cta-primary:hover {
  background: transparent; color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.btn-cta-ghost {
  padding: .9rem 2.2rem;
  font-family: var(--font-sans); font-size: .9rem; font-weight: 600;
  background: transparent; color: rgba(255,255,255,0.85);
  border: 2px solid rgba(255,255,255,0.3); border-radius: var(--r-full);
  text-decoration: none;
  transition: all var(--base) var(--ease);
  display: inline-block;
}
.btn-cta-ghost:hover {
  border-color: rgba(255,255,255,0.8);
  color: #fff;
  transform: translateY(-2px);
}

/* ═══════════════════════════════
   JOURNAL / BLOG CARDS
═══════════════════════════════ */
.journal-section {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--bg-alt);
}
.journal-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.journal-card, .archive-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--base) var(--ease), transform var(--base) var(--ease);
  text-decoration: none;
}
.journal-card:hover, .archive-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.journal-card__image, .archive-card__image {
  aspect-ratio: 16/10; overflow: hidden;
  background: var(--bg-alt);
}
.journal-card__image img, .archive-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--slow) var(--ease);
}
.journal-card:hover .journal-card__image img,
.archive-card:hover .archive-card__image img { transform: scale(1.05); }

.journal-card__body, .archive-card__body {
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: .75rem; flex: 1;
}

.journal-card__meta, .archive-card__meta {
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
}
.journal-card__meta time, .archive-card__meta time {
  font-size: .72rem; color: var(--fore-4); font-weight: 400;
}
.archive-reading-time { font-size: .72rem; color: var(--fore-4); }

.journal-card__title, .archive-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 700; letter-spacing: -.02em; line-height: 1.3;
  color: var(--fore);
}
.journal-card__title a, .archive-card__title a {
  color: inherit; text-decoration: none;
  transition: color var(--fast);
}
.journal-card__title a:hover, .archive-card__title a:hover { color: var(--navy); }

.journal-card__excerpt, .archive-card__excerpt {
  font-size: .9rem; color: var(--fore-3); line-height: 1.65; flex: 1;
}
.journal-card__read, .archive-card__read {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .8rem; font-weight: 600;
  color: var(--navy); text-decoration: none;
  margin-top: auto;
  transition: gap var(--fast);
}
.journal-card__read:hover, .archive-card__read:hover { gap: .55rem; }

/* Category badge */
.category-badge {
  display: inline-block;
  font-size: .65rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-pale);
  padding: .2rem .65rem;
  border-radius: var(--r-full);
  text-decoration: none;
  transition: background var(--fast);
}
.category-badge:hover { background: rgba(45,95,179,0.2); }

/* ═══════════════════════════════
   ARCHIVE PAGE
═══════════════════════════════ */
.archive-hero {
  padding: calc(var(--header-h) + clamp(3rem, 7vw, 5rem)) 0 clamp(2.5rem, 4vw, 3.5rem);
  background: var(--bg);
}
.archive-section { padding-bottom: clamp(5rem, 8vw, 7rem); background: var(--bg); }

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.archive-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
}
.archive-card--featured .archive-card__image { aspect-ratio: unset; min-height: 300px; }
.archive-card--featured .archive-card__body { padding: 2.5rem; justify-content: center; }
.archive-card--featured .archive-card__title { font-size: clamp(1.4rem, 2.5vw, 2rem); }

.archive-pagination { margin-top: 3rem; display: flex; justify-content: center; }
.pagination { display: flex; }
.pagination__list { display: flex; gap: .4rem; list-style: none; }
.pagination__item a,
.pagination__item span {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  font-size: .82rem; font-weight: 500; color: var(--fore-3);
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-sm);
  text-decoration: none; transition: all var(--fast);
}
.pagination__item a:hover { border-color: var(--navy); color: var(--navy); }
.pagination__item .current { background: var(--navy); color: #fff; border-color: var(--navy); }

/* ═══════════════════════════════
   SINGLE POST
═══════════════════════════════ */
.reading-progress-bar {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 3px; z-index: 1100;
  background: var(--bg-alt);
}
.reading-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--blue));
  width: 0%; transition: width .1s linear;
}

.single-hero {
  padding: calc(var(--header-h) + clamp(3rem, 6vw, 5rem)) 0 clamp(2rem, 4vw, 3rem);
  background: var(--bg);
}
.single-hero__meta { display: flex; gap: .6rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.single-hero__title { margin-bottom: 1.5rem; }
.single-hero__byline {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
}
.byline-date, .byline-reading-time {
  font-size: .78rem; color: var(--fore-4);
}
.byline-sep { color: var(--fore-4); }

.single-featured-image { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.single-featured-image img {
  border-radius: var(--r-xl);
  width: 100%; max-height: 520px; object-fit: cover;
  box-shadow: var(--shadow-md);
}

.single-article { padding-bottom: clamp(5rem, 9vw, 8rem); }
.post-content-body {
  font-size: clamp(1rem, 1.6vw, 1.08rem);
  line-height: 1.82; color: var(--fore-2);
}
.post-content-body p { margin-bottom: 1.6rem; }
.post-content-body h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin: 3rem 0 1.25rem; color: var(--fore);
}
.post-content-body h3 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin: 2.5rem 0 1rem; color: var(--fore);
}
.post-content-body ul, .post-content-body ol {
  list-style: none; padding: 0; margin: 0 0 1.6rem;
}
.post-content-body li {
  position: relative; padding-left: 1.4rem; margin-bottom: .55rem;
  font-size: inherit; color: var(--fore-2);
}
.post-content-body ul li::before {
  content: ''; position: absolute; left: 0; top: .6em;
  width: 6px; height: 6px;
  background: var(--navy); border-radius: 50%;
}
blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.75rem;
  border-left: 3px solid var(--navy);
  background: var(--blue-pale);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-style: italic; color: var(--fore-2); line-height: 1.6;
}

.post-tags {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.post-tag {
  font-size: .72rem; font-weight: 500; color: var(--fore-3);
  border: 1px solid var(--border-mid); padding: .25rem .7rem;
  border-radius: var(--r-full); text-decoration: none;
  transition: border-color var(--fast), color var(--fast);
}
.post-tag:hover { border-color: var(--navy); color: var(--navy); }

.post-navigation { padding: 3rem 0; border-top: 1px solid var(--border); }
.post-navigation__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.post-nav-label {
  font-size: .68rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--fore-4); margin-bottom: .4rem; display: block;
}
.post-nav-title {
  font-family: var(--font-display); font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 700; letter-spacing: -.02em; line-height: 1.3;
  color: var(--fore); text-decoration: none;
  transition: color var(--fast);
}
.post-nav-title:hover { color: var(--navy); }
.post-nav-item--next { text-align: right; }

/* ═══════════════════════════════
   PAGE TEMPLATE
═══════════════════════════════ */
.page-hero {
  padding: calc(var(--header-h) + clamp(3rem, 6vw, 5rem)) 0 clamp(2.5rem, 4vw, 3.5rem);
  background: var(--bg);
}
.page-content-section { padding-bottom: clamp(5rem, 8vw, 7rem); }
.page-content p { margin-bottom: 1.4rem; }
.page-content h2 { margin: 2rem 0 1rem; }
.page-featured-image { margin-bottom: 2.5rem; }
.page-featured-image img {
  border-radius: var(--r-xl); box-shadow: var(--shadow-md);
  max-height: 480px; width: 100%; object-fit: cover;
}

/* ═══════════════════════════════
   TEAM PAGE
═══════════════════════════════ */
.team-hero {
  padding: calc(var(--header-h) + clamp(3rem, 6vw, 5rem)) 0 clamp(2.5rem, 4vw, 3.5rem);
  background: var(--bg);
}
.team-members-section { padding-bottom: clamp(5rem, 8vw, 7rem); background: var(--bg); }

.team-member {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(3rem, 5vw, 5rem) 0;
}
.team-member--reversed { direction: rtl; }
.team-member--reversed > * { direction: ltr; }

.team-member__portrait {
  aspect-ratio: 4/5; overflow: hidden;
  border-radius: var(--r-xl);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.team-member__portrait img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--slow) var(--ease);
}
.team-member:hover .team-member__portrait img { transform: scale(1.03); }

.team-member__portrait--placeholder {
  display: flex; align-items: center; justify-content: center;
}
.portrait-abstract { width: 50%; aspect-ratio: 1; position: relative; }
.portrait-circle {
  width: 100%; height: 100%; border-radius: 50%;
  border: 2px solid rgba(45,95,179,0.2);
  background: linear-gradient(135deg, var(--blue-pale), transparent);
}
.portrait-line {
  position: absolute; bottom: -20%; left: 10%;
  width: 80%; height: 2px; background: rgba(26,48,96,0.12);
}

.team-member__text {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
}
.team-member__name {
  font-size: clamp(1.5rem, 3vw, 2.4rem); margin-bottom: .4rem;
}
.team-member__role {
  font-size: .75rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 1.25rem; display: block;
}
.team-member__bio { font-size: .95rem; line-height: 1.78; }
.team-member__divider { margin: 0; border: none; height: 1px; background: var(--border); }

.team-cta-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: var(--navy); text-align: center; position: relative; overflow: hidden;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: clamp(3.5rem, 7vw, 5rem) var(--gutter) 1.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: .85rem; }
.footer-logo img {
  height: 40px; width: auto;
  object-fit: contain;
}
.footer-tagline { font-size: .88rem; color: var(--fore-3); max-width: 28ch; line-height: 1.6; }
.footer-column-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 1.1rem; display: block;
}
.footer-nav li { margin-bottom: .55rem; }
.footer-nav li a {
  font-size: .86rem; color: var(--fore-3);
  text-decoration: none;
  transition: color var(--fast);
}
.footer-nav li a:hover { color: var(--navy); }
.footer-widget .widget-title { @apply footer-column-label; }

.footer-divider { border: none; height: 1px; background: var(--border); margin-bottom: 1.25rem; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.footer-copy, .footer-credits {
  font-size: .76rem; color: var(--fore-4);
}
.footer-copy a { color: inherit; transition: color var(--fast); }
.footer-copy a:hover { color: var(--navy); }

/* ═══════════════════════════════
   404
═══════════════════════════════ */
.error-404 {
  min-height: 100svh; display: flex;
  align-items: center; background: var(--bg);
  padding-top: var(--header-h);
}

/* ═══════════════════════════════
   BREADCRUMBS
═══════════════════════════════ */
.breadcrumbs { padding: calc(var(--header-h) + 1rem) 0 0; }
.breadcrumbs__list { display: flex; gap: .4rem; flex-wrap: wrap; }
.breadcrumbs__item {
  font-size: .76rem; color: var(--fore-4);
  display: flex; align-items: center; gap: .4rem;
}
.breadcrumbs__item + .breadcrumbs__item::before { content: '/'; opacity: .4; }
.breadcrumbs__item a { color: inherit; text-decoration: none; transition: color var(--fast); }
.breadcrumbs__item a:hover { color: var(--navy); }
.breadcrumbs__item--current { color: var(--fore-3); }

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-item:nth-child(3)::before { display: none; }
  .trust-quotes { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .story-grid { grid-template-columns: 1fr; }
  .story-visual { height: 260px; }
  .journal-grid, .archive-grid { grid-template-columns: 1fr; }
  .archive-card--featured { grid-template-columns: 1fr; }
  .trust-quotes { grid-template-columns: 1fr; }
  .team-member { grid-template-columns: 1fr; }
  .team-member--reversed { direction: ltr; }
  .post-navigation__inner { grid-template-columns: 1fr; }
  .post-nav-item--next { text-align: left; }
  .journal-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal, .reveal-up, .reveal-left, .reveal-right,
  .reveal-scale, .reveal-clip, .hero-line, .hero-word {
    opacity: 1; transform: none; clip-path: none;
  }
}
