/* ================================================================
   LOCHSHORE MARITIME PARTNERS — Design System v5
   "Nordic Precision Meets Maritime Power"
   Aesthetic: Premium · Interactive · Alive · Institutional
   ================================================================ */

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  /* Navy spectrum */
  --navy-950:  #040C16;
  --navy-900:  #071423;
  --navy-800:  #0B1D2E;
  --navy-700:  #122C42;
  --navy-600:  #1A3D5A;
  --navy-500:  #234E70;
  --navy-400:  #326688;
  --navy-300:  #4D84A2;

  /* Accent: Maritime Blue-Steel */
  --accent-900: #1E4856;
  --accent-800: #2A5D6E;
  --accent-700: #3A6E80;
  --accent-600: #4A7B8F;
  --accent-500: #5A8D9F;
  --accent-400: #5E9AAE;
  --accent-300: #7BB3C4;
  --accent-200: #A3CCD8;
  --accent-100: #D4E8EF;
  --accent-50:  #EDF5F8;

  /* Warm gold (secondary accent for CTAs) */
  --gold-500: #C4A265;
  --gold-400: #D4B87A;
  --gold-300: #E0CA96;

  /* Neutral cool grays */
  --gray-950:  #0F1318;
  --gray-900:  #1A2332;
  --gray-800:  #2A3544;
  --gray-700:  #3D5166;
  --gray-600:  #5E6E7E;
  --gray-500:  #7A8A98;
  --gray-400:  #94A0AE;
  --gray-300:  #B0BAC5;
  --gray-200:  #C4CCD6;
  --gray-100:  #DFE3E8;
  --gray-75:   #EBEEF2;
  --gray-50:   #F5F7F9;

  /* Semantic aliases */
  --color-primary:    var(--navy-800);
  --color-accent:     var(--accent-600);
  --color-accent-light:   var(--accent-400);
  --color-accent-dark:    var(--accent-800);
  --accent:      var(--accent-600);
  --accent-dark: var(--accent-800);

  --bg-white:   #FFFFFF;
  --bg-light:   var(--gray-50);
  --bg-muted:   var(--gray-75);
  --bg-dark:    var(--navy-800);
  --bg-darker:  var(--navy-900);
  --bg-darkest: var(--navy-950);

  --text-primary:   var(--gray-900);
  --text-secondary: var(--gray-600);
  --text-muted:     var(--gray-400);
  --text-inv:       #D8E6F0;
  --text-inv-dim:   #7A9AB2;
  --text-inv-muted: #3A5468;

  --rule:          var(--gray-100);
  --rule-strong:   var(--gray-200);
  --rule-dark:     rgba(255,255,255,0.08);
  --rule-dark-str: rgba(255,255,255,0.15);

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(10,20,35,0.05), 0 1px 2px rgba(10,20,35,0.03);
  --shadow-md:  0 4px 16px rgba(10,20,35,0.07), 0 2px 6px rgba(10,20,35,0.03);
  --shadow-lg:  0 12px 40px rgba(10,20,35,0.10), 0 4px 12px rgba(10,20,35,0.05);
  --shadow-xl:  0 24px 64px rgba(10,20,35,0.14);
  --shadow-glow: 0 0 60px rgba(74,123,143,0.15);

  /* Layout */
  --container:  1240px;
  --section-y:  clamp(80px, 12vw, 160px);
  --gutter:     clamp(20px, 4vw, 48px);

  /* Radii */
  --r-xs: 3px;
  --r-sm: 6px;
  --r:    8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-2xl: 24px;

  /* Motion */
  --ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in:  cubic-bezier(0.55, 0, 1, 0.45);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast:   0.2s;
  --t:        0.35s;
  --t-slow:   0.6s;
  --t-slower: 1s;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: 'Aptos', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg-white);
  color: var(--text-primary);
  overflow-x: hidden;
}
img   { display: block; max-width: 100%; }
a     { color: inherit; text-decoration: none; }
ul,ol { list-style: none; }
button { border: none; cursor: pointer; background: none; font: inherit; }
svg   { display: block; }
::selection { background: rgba(74,123,143,0.18); }

/* ── Accessibility ────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -56px; left: 20px;
  z-index: 9999;
  background: var(--color-accent); color: #fff;
  padding: 10px 20px; border-radius: var(--r-sm);
  font-size: 0.875rem; font-weight: 600;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 20px; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Reduced Motion ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── Noise Texture Overlay ───────────────────────────────── */
.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ── Scroll Progress Bar ─────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-600), var(--accent-300));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 9999;
  pointer-events: none;
  will-change: transform;
}

/* ── Cursor Glow ────────────────────────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,123,143,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: left, top;
}

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section        { padding: var(--section-y) 0; }
.section--white { padding: var(--section-y) 0; background: var(--bg-white); }
.section--light { padding: var(--section-y) 0; background: var(--bg-light); }
.section--parch { padding: var(--section-y) 0; background: var(--bg-light); }
.section--dark  { padding: var(--section-y) 0; background: var(--bg-dark); }
.section--darker{ padding: var(--section-y) 0; background: var(--bg-darker); }
.section__header { margin-bottom: 72px; }
.section__header--center { text-align: center; }
.section__header--center .lead-text { margin: 0 auto; }

/* ── Typography ───────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.eyebrow--accent { color: var(--color-accent); }
.eyebrow--steel  { color: var(--gray-400); }
.eyebrow--dark   { color: var(--gray-500); }
.eyebrow--light  { color: var(--text-inv-muted); }
.eyebrow--no-line::before { display: none; }

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.section-title em { font-style: italic; }
.section-title--light { color: var(--text-inv); }
.section-title--light em { color: var(--accent-300); }
.section-title--dark  { color: var(--text-primary); }
.section-title--dark em { color: var(--color-accent); }

.lead-text {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.82;
  max-width: 560px;
}
.lead-text--light { color: var(--text-inv-dim); }
.lead-text--wide  { max-width: 720px; }

.pull-quote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.55;
  color: var(--text-primary);
  border-left: 2px solid var(--color-accent);
  padding-left: 28px;
}
.pull-quote--light {
  color: var(--text-inv);
  border-color: var(--accent-400);
}

.caption {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.caption--light { color: var(--text-inv-muted); }

.rule-accent {
  display: block;
  width: 40px; height: 2px;
  background: var(--color-accent);
  margin: 20px 0;
  border-radius: 1px;
}
.rule-accent--center { margin: 20px auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r);
  padding: 16px 32px;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
/* Shimmer effect on hover */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.5s var(--ease);
}
.btn:hover::before { left: 100%; }

.btn--primary {
  background: var(--navy-800);
  color: #fff;
  border: 1px solid var(--navy-700);
}
.btn--primary:hover {
  background: var(--navy-700);
  border-color: var(--navy-600);
  box-shadow: 0 8px 32px rgba(11,29,46,0.35);
  transform: translateY(-2px);
}
.btn--accent {
  background: var(--color-accent);
  color: #fff;
  border: 1px solid var(--color-accent);
}
.btn--accent:hover {
  background: var(--accent-700);
  border-color: var(--accent-700);
  box-shadow: 0 8px 32px rgba(74,123,143,0.35);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--text-inv);
  border: 1px solid rgba(255,255,255,0.22);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}
.btn--outline-dark {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--rule-strong);
}
.btn--outline-dark:hover {
  background: var(--bg-light);
  color: var(--text-primary);
  border-color: var(--gray-300);
  transform: translateY(-2px);
}
.btn .btn-arrow {
  width: 16px; height: 16px;
  transition: transform var(--t-fast) var(--ease);
}
.btn:hover .btn-arrow { transform: translateX(4px); }

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent);
  transition: gap var(--t-fast), color var(--t-fast);
  position: relative;
}
.link-arrow::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--t) var(--ease);
}
.link-arrow:hover { gap: 14px; }
.link-arrow:hover::after { width: calc(100% - 22px); }
.link-arrow svg { width: 14px; height: 14px; }
.link-arrow--light { color: var(--accent-300); }
.link-arrow--dark  { color: var(--gray-600); }

/* ── Navigation — Floating Glass ─────────────────────────── */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 48px);
  max-width: calc(var(--container) + 40px);
  padding: 0 28px;
  border-radius: var(--r-2xl);
  border: 1px solid transparent;
  transition: all var(--t-slow) var(--ease);
}
.nav--scrolled {
  background: rgba(255,255,255, var(--nav-opacity, 0.82));
  backdrop-filter: blur(var(--nav-blur, 24px)) saturate(var(--nav-saturate, 1.8));
  -webkit-backdrop-filter: blur(var(--nav-blur, 24px)) saturate(var(--nav-saturate, 1.8));
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 4px 32px rgba(10,20,35,0.08), 0 1px 0 rgba(255,255,255,0.5) inset;
  top: 12px;
}
.nav__inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity var(--t-fast);
}
.nav__logo:hover { opacity: 0.82; }
.nav__logo-mark {
  height: 42px;
  width:  42px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
  transition: filter var(--t);
}
.nav--scrolled .nav__logo-mark { filter: none; }

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.08;
  transition: color var(--t);
  white-space: nowrap;
}
.nav--scrolled .nav__logo-name { color: var(--navy-800); }
.nav__logo-sub {
  font-family: 'Aptos', 'Inter', system-ui, sans-serif;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(180, 210, 230, 0.55);
  transition: color var(--t);
  margin-top: 3px;
  white-space: nowrap;
}
.nav--scrolled .nav__logo-sub { color: var(--gray-500); }

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav__link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(216,230,240,0.72);
  padding: 8px 16px;
  border-radius: var(--r);
  transition: color var(--t-fast), background var(--t-fast);
  position: relative;
}
.nav__link:hover {
  color: rgba(216,230,240,1);
  background: rgba(255,255,255,0.07);
}
.nav__link.is-active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
/* Animated underline indicator */
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-400);
  border-radius: 1px;
  transition: width var(--t) var(--ease);
}
.nav__link.is-active::after { width: 20px; }
.nav__link:hover::after { width: 16px; }

/* Nav hover pill (sliding highlight) */
.nav__pill {
  position: absolute;
  border-radius: var(--r);
  background: rgba(255,255,255,0.07);
  opacity: 0;
  transition: all 0.3s var(--ease);
  pointer-events: none;
  z-index: -1;
}
.nav--scrolled .nav__pill {
  background: var(--bg-light);
}

/* Scrolled nav link states */
.nav--scrolled .nav__link {
  color: var(--text-secondary);
}
.nav--scrolled .nav__link:hover {
  color: var(--text-primary);
  background: var(--bg-light);
}
.nav--scrolled .nav__link.is-active {
  color: var(--navy-800);
  background: var(--accent-50);
}
.nav--scrolled .nav__link.is-active::after { background: var(--accent-600); }
.nav--scrolled .nav__link:hover::after { background: var(--gray-300); }

/* CTA */
.nav__cta {
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 10px 22px;
  border-radius: var(--r);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all var(--t-fast) var(--ease);
}
.nav__cta:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-1px);
}
.nav--scrolled .nav__cta {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}
.nav--scrolled .nav__cta:hover {
  background: var(--accent-700);
  border-color: var(--accent-700);
  box-shadow: 0 4px 16px rgba(74,123,143,0.30);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform var(--t) var(--ease), opacity var(--t), background var(--t);
}
.nav--scrolled .nav__hamburger span { background: var(--text-primary); }

/* ── Mobile Menu — Cinematic Overlay ─────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--navy-950);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  clip-path: circle(0% at calc(100% - 48px) 36px);
  pointer-events: none;
  transition: clip-path 0.7s var(--ease);
}
.mobile-menu.is-open {
  clip-path: circle(150% at calc(100% - 48px) 36px);
  pointer-events: all;
}

.mobile-menu__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
  text-decoration: none;
}
.mobile-menu__logo-mark {
  height: 40px; width: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.mobile-menu__logo-text {
  display: flex;
  flex-direction: column;
}
.mobile-menu__logo-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.mobile-menu__logo-sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(180,210,230,0.5);
  margin-top: 3px;
}
/* Staggered link animation */
.mobile-menu li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.mobile-menu.is-open li {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.is-open li:nth-child(1) { transition-delay: 0.15s; }
.mobile-menu.is-open li:nth-child(2) { transition-delay: 0.22s; }
.mobile-menu.is-open li:nth-child(3) { transition-delay: 0.29s; }
.mobile-menu.is-open li:nth-child(4) { transition-delay: 0.36s; }
.mobile-menu.is-open li:nth-child(5) { transition-delay: 0.43s; }

.mobile-menu .nav__link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: rgba(216,230,240,0.7);
  padding: 12px 40px;
  letter-spacing: 0.02em;
  text-transform: none;
  width: 100%;
  text-align: center;
  display: block;
  transition: color var(--t-fast);
}
.mobile-menu .nav__link:hover {
  color: #fff;
}
.mobile-menu .nav__cta {
  margin-top: 36px;
  font-size: 0.88rem;
  padding: 14px 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), background var(--t-fast), border-color var(--t-fast);
  background: var(--color-accent);
  border-color: var(--color-accent);
}
.mobile-menu.is-open .nav__cta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* Close button */
.mobile-menu__close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  font-size: 1.4rem;
  cursor: pointer;
  background: none;
  transition: background var(--t-fast), color var(--t-fast), transform var(--t-fast);
}
.mobile-menu__close:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  transform: rotate(90deg);
}

@media (max-width: 960px) {
  .nav__links  { display: none; }
  .nav__cta    { display: none; }
  .nav__hamburger { display: flex; }
}
@media (max-width: 380px) {
  .nav__logo-text { display: none; }
}

/* ── Hero — Interactive ──────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 var(--gutter) 100px;
  overflow: hidden;
  background: var(--navy-950);
}
/* Gradient mesh canvas sits behind content */
.hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
}
/* Particle canvas sits above mesh, below overlay */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  z-index: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(4,12,22,0.95) 0%,
    rgba(7,18,35,0.88) 35%,
    rgba(11,29,46,0.55) 70%,
    rgba(11,29,46,0.15) 100%
  );
}
.hero__container {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 120px;
}
.hero__eyebrow { color: var(--accent-300); }
.hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(3.6rem, 8vw, 7rem);
  line-height: 1.0;
  color: var(--text-inv);
  max-width: 1000px;
  margin-bottom: 32px;
  letter-spacing: -0.025em;
}
.hero__title em {
  font-style: italic;
  color: var(--accent-300);
}
/* Split text words */
.hero__title .word {
  display: inline-block;
  overflow: hidden;
}
.hero__title .word-inner {
  display: inline-block;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: rgba(180,210,230,0.75);
  max-width: 520px;
  line-height: 1.82;
  margin-bottom: 48px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  color: rgba(180,210,230,0.35);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hero__scroll svg { width: 16px; height: 16px; }
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--accent-400), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(0.6); transform-origin: top; }
}

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  padding: 160px var(--gutter) 80px;
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.page-hero--img {
  background-size: cover;
  background-position: center;
}
.page-hero--img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(4,12,22,0.93) 0%, rgba(7,20,36,0.82) 100%);
  z-index: 0;
}
.page-hero--img::before { z-index: 1; }
.page-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-300);
  margin-bottom: 18px;
}
.page-hero__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.06;
  color: var(--text-inv);
  max-width: 760px;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.page-hero__title em { font-style: italic; color: var(--accent-300); }
.page-hero__sub {
  font-size: 1.0625rem;
  color: rgba(180,210,230,0.68);
  max-width: 540px;
  line-height: 1.78;
}

/* Floating gradient orb for page heroes */
.page-hero__orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,123,143,0.12) 0%, transparent 70%);
  top: 20%;
  right: -10%;
  z-index: 0;
  animation: orbFloat 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-20px, 15px) scale(1.05); }
  66% { transform: translate(10px, -20px) scale(0.95); }
}
@media (prefers-reduced-motion: reduce) {
  .page-hero__orb { animation: none; }
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.78rem;
  color: var(--text-inv-muted);
  letter-spacing: 0.03em;
}
.breadcrumb a { color: var(--text-inv-muted); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--accent-300); }
.breadcrumb__sep { opacity: 0.38; }
.breadcrumb__current { color: rgba(180,210,230,0.6); }

/* ── Credentials Bar ─────────────────────────────────────── */
.creds-bar {
  background: var(--bg-darkest);
  border-top: 1px solid var(--rule-dark);
  border-bottom: 1px solid var(--rule-dark);
  position: relative;
  overflow: hidden;
}
.creds-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.cred-item {
  padding: 32px 24px;
  border-right: 1px solid var(--rule-dark);
  text-align: center;
  transition: background var(--t-fast);
}
.cred-item:last-child  { border-right: none; }
.cred-item:hover { background: rgba(255,255,255,0.03); }
.cred-value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--text-inv);
  line-height: 1;
  margin-bottom: 8px;
}
.cred-value sup {
  font-size: 1.1rem;
  color: var(--accent-300);
  vertical-align: super;
  margin-left: 1px;
}
.cred-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-inv-muted);
}
.cred-value--text {
  font-size: 1.7rem;
  padding-top: 15px;
}

/* ── Pillar Differentiators ──────────────────────────────── */
.pillar-differentiators {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.pillar-diff {
  padding: 36px;
  border-left: 2px solid var(--color-accent);
  background: var(--accent-50);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.pillar-diff:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pillar-diff__num {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 14px;
}
.pillar-diff__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 12px;
}
.pillar-diff__body {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.72;
}

/* ── Service List (numbered editorial) ───────────────────── */
.service-list { border-top: 1px solid var(--rule); }
.service-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
  transition: all var(--t) var(--ease);
  cursor: default;
  border-radius: var(--r);
}
.service-row:hover {
  background: var(--bg-light);
  margin: 0 -24px;
  padding-left: 24px;
  padding-right: 24px;
}
.service-row__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1.3;
  margin-top: 2px;
}
.service-row__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 8px;
}
.service-row__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.72;
  max-width: 640px;
}
.service-row__link {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--rule-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  margin-top: 4px;
  transition: all var(--t) var(--ease);
}
.service-row:hover .service-row__link {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
  transform: translateX(4px);
}

/* Service detail (services.html deep content) */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-detail--reverse { direction: rtl; }
.service-detail--reverse > * { direction: ltr; }

.service-panel {
  background: var(--bg-dark);
  border: 1px solid var(--rule-dark);
  border-radius: var(--r-xl);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.service-panel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.service-panel__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(74,123,143,0.18);
  line-height: 1;
  margin-bottom: 16px;
}
.service-panel__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-inv);
  line-height: 1.2;
  margin-bottom: 16px;
}
.service-panel__body {
  font-size: 0.9375rem;
  color: var(--text-inv-dim);
  line-height: 1.75;
}
.service-list-items {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-inv-dim);
  line-height: 1.6;
}
.service-list-item::before {
  content: '';
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent-400);
  flex-shrink: 0;
  margin-top: 9px;
}

/* Service nav pills */
.service-nav-pill {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  background: var(--accent-50);
  border: 1px solid var(--accent-200);
  padding: 10px 18px;
  border-radius: var(--r);
  transition: all var(--t-fast) var(--ease);
}
.service-nav-pill:hover {
  background: var(--accent-100);
  border-color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ── Feature Grid (2-col editorial) ──────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}
.feature-grid--equal { grid-template-columns: 1fr 1fr; }
.feature-grid--reverse { direction: rtl; }
.feature-grid--reverse > * { direction: ltr; }

/* Data panel */
.data-panel {
  background: var(--bg-dark);
  border: 1px solid var(--rule-dark);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.data-panel__header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--rule-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-inv-muted);
}
.data-panel__stat {
  padding: 24px 32px;
  border-bottom: 1px solid var(--rule-dark);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  transition: background var(--t-fast);
}
.data-panel__stat:last-child { border-bottom: none; }
.data-panel__stat:hover { background: rgba(255,255,255,0.025); }
.data-panel__val {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-inv);
  line-height: 1;
}
.data-panel__val span { color: var(--accent-300); }
.data-panel__lbl {
  font-size: 0.78rem;
  color: var(--text-inv-dim);
  letter-spacing: 0.04em;
  text-align: right;
  max-width: 160px;
  line-height: 1.4;
}

/* ── Values Grid (about page) ────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--rule-dark);
  border: 1px solid var(--rule-dark);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: 64px;
}
.value-item {
  padding: 44px 36px;
  background: var(--bg-dark);
  transition: background var(--t-fast);
}
.value-item:hover { background: rgba(11,29,46,0.95); }
.value-item__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 300;
  color: rgba(74,123,143,0.25);
  margin-bottom: 16px;
}
.value-item__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-inv);
  margin-bottom: 12px;
}
.value-item__body {
  font-size: 0.9375rem;
  color: var(--text-inv-dim);
  line-height: 1.72;
}

/* ── Team Grid ───────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}
.team-grid--wide {
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

/* 3D Tilt Team Card */
.team-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--r-xl);
  border: 1px solid var(--rule);
  background: var(--bg-white);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  will-change: transform;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.team-card__photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid var(--accent-50);
  transition: border-color var(--t-fast);
}
.team-card:hover .team-card__photo {
  border-color: var(--accent-200);
}
.team-card__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.team-card__role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.team-card__bio {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Wide variant */
.team-card--wide {
  padding: 36px 24px;
}
.team-card--wide .team-card__photo {
  width: 140px;
  height: 140px;
}

/* ── CTA Band ────────────────────────────────────────────── */
.cta-band {
  background: var(--bg-darker);
  padding: var(--section-y) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(74,123,143,0.08) 0%, transparent 70%);
}
.cta-band__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 1;
}
.cta-band__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-300);
  margin-bottom: 20px;
}
.cta-band__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text-inv);
  margin-bottom: 24px;
}
.cta-band__title em { font-style: italic; color: var(--accent-300); }
.cta-band__sub {
  font-size: 1.0625rem;
  color: var(--text-inv-dim);
  line-height: 1.78;
  margin-bottom: 40px;
}
.cta-band__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Contact Section ─────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items: start;
}
.contact-info__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.contact-info__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.contact-info__heading em { font-style: italic; color: var(--color-accent); }
.contact-info__rule {
  width: 40px; height: 2px;
  background: var(--color-accent);
  border: none;
  margin: 20px 0;
  border-radius: 1px;
}
.contact-info__body {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.78;
  margin-bottom: 32px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-detail__icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  color: var(--color-accent);
}
.contact-detail__icon svg { width: 100%; height: 100%; }
.contact-detail__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-detail__value {
  font-size: 0.9375rem;
  color: var(--text-primary);
  line-height: 1.6;
}
.contact-detail__value a {
  transition: color var(--t-fast);
}
.contact-detail__value a:hover { color: var(--color-accent); }

/* Team quick-links */
.contact-team {
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}
.contact-team__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.contact-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--r);
  transition: background var(--t-fast);
  margin-bottom: 4px;
}
.contact-person:hover {
  background: var(--bg-light);
}
.contact-person__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.contact-person__name {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
}
.contact-person__role {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.contact-person__arrow {
  margin-left: auto;
  color: var(--text-muted);
  transition: transform var(--t-fast), color var(--t-fast);
}
.contact-person:hover .contact-person__arrow {
  transform: translateX(4px);
  color: var(--color-accent);
}

/* Contact form */
.contact-form-wrap {
  background: var(--bg-light);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: 40px;
}
.contact-form-wrap__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.contact-form-wrap__sub {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field {
  margin-bottom: 16px;
}
.form-row .form-field { margin-bottom: 0; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.required-star { color: var(--accent-600); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9375rem;
  font-family: inherit;
  background: var(--bg-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  color: var(--text-primary);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(74,123,143,0.12);
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%237A8A98' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}
.form-submit-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-message {
  padding: 16px;
  border-radius: var(--r);
  margin-bottom: 20px;
  text-align: center;
  font-size: 0.9rem;
}
.form-message.success { background: #e8f5e9; color: #2e7d32; }
.form-message.error { background: #fce4ec; color: #c62828; }
.form-message.loading { background: var(--accent-50); color: var(--accent-800); }

/* Reassurance strip */
.reassurance-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.reassurance-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.reassurance-item__icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  color: var(--color-accent);
}
.reassurance-item__icon svg { width: 100%; height: 100%; }
.reassurance-item__title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.reassurance-item__body {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* Office panel */
.office-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.office-panel__map {
  position: relative;
  overflow: hidden;
}
.office-panel__map img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.office-panel:hover .office-panel__map img {
  transform: scale(1.03);
}
.office-panel__map-label {
  position: absolute;
  bottom: 20px; left: 20px;
  display: flex; align-items: center; gap: 10px;
  background: rgba(7,20,35,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 18px;
  border-radius: var(--r);
}
.office-panel__map-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-400);
  box-shadow: 0 0 8px var(--accent-400);
  animation: mapPulse 2s ease-in-out infinite;
}
@keyframes mapPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.office-panel__map-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}
.office-panel__info {
  padding: 40px;
  background: var(--bg-light);
}
.office-panel__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.office-panel__address {
  font-size: 1.0625rem;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 24px;
  font-weight: 500;
}
.office-panel__rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.office-panel__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.office-panel__row:last-child { border-bottom: none; }
.office-panel__row-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.office-panel__row-value {
  font-size: 0.9rem;
  color: var(--text-primary);
}
.office-panel__row-value a { transition: color var(--t-fast); }
.office-panel__row-value a:hover { color: var(--color-accent); }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-darkest);
  border-top: 1px solid var(--rule-dark);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding: 72px 0 56px;
}
.footer__logo {
  width: 220px;
  opacity: 0.9;
  margin-bottom: 20px;
}
.footer__tagline {
  font-size: 0.875rem;
  color: var(--text-inv-dim);
  line-height: 1.72;
  max-width: 320px;
}
.footer__col-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-inv-muted);
  margin-bottom: 20px;
}
.footer__link {
  display: block;
  font-size: 0.875rem;
  color: var(--text-inv-dim);
  padding: 5px 0;
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.footer__link:hover {
  color: var(--accent-300);
  padding-left: 4px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--rule-dark);
}
.footer__copy {
  font-size: 0.78rem;
  color: var(--text-inv-muted);
}
.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 0.78rem;
  color: var(--text-inv-muted);
  transition: color var(--t-fast);
}
.footer__legal a:hover { color: var(--accent-300); }

/* ── GSAP Animation Classes ──────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(32px);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
/* Stagger delays for data-delay */
[data-animate][data-delay="1"].is-visible { transition-delay: 0.1s; }
[data-animate][data-delay="2"].is-visible { transition-delay: 0.2s; }
[data-animate][data-delay="3"].is-visible { transition-delay: 0.3s; }

/* Clip-path reveal */
.reveal-clip {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 0.8s var(--ease);
}
.reveal-clip.is-visible {
  clip-path: inset(0 0 0% 0);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1080px) {
  .footer__top { grid-template-columns: 1.2fr repeat(3, 1fr); gap: 36px; }
}

@media (max-width: 960px) {
  .nav { width: calc(100% - 32px); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .feature-grid  { grid-template-columns: 1fr; gap: 48px; }
  .feature-grid--reverse { direction: ltr; }
  .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-detail--reverse { direction: ltr; }
  .values-grid { grid-template-columns: 1fr; }
  .office-panel { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero { padding-bottom: 80px; }
  .hero__title { font-size: clamp(2.8rem, 8vw, 4.5rem); }
  .service-row { grid-template-columns: 48px 1fr auto; gap: 20px; padding: 28px 0; }
  .reassurance-strip { grid-template-columns: 1fr; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .creds-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .cred-item { padding: 24px 16px; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta-band__actions { flex-direction: column; align-items: center; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .team-grid--wide { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .team-card { padding: 24px 16px; }
  .team-card__photo { width: 80px; height: 80px; }
  .team-card--wide .team-card__photo { width: 100px; height: 100px; }
  .pillar-differentiators { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .nav { top: 8px; width: calc(100% - 16px); padding: 0 16px; }
  .cred-value--text { font-size: 1.3rem; padding-top: 8px; }
  .page-hero { padding-top: 120px; padding-bottom: 60px; }
  .contact-form-wrap { padding: 24px; }
  .form-submit-row { flex-direction: column; align-items: flex-start; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 380px) {
  .creds-bar__inner { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-grid--wide { grid-template-columns: repeat(2, 1fr); }
}

/* ── About page stats grid ──────────────────────────────── */
.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about-stat-card {
  background: var(--bg-light);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--rule);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.about-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.about-stat-card__value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  color: var(--accent-dark);
  font-weight: 400;
  margin-bottom: 6px;
}
.about-stat-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
