/* ============================================================
   Little Whale Capital — styles.css
   Production stylesheet: all components, all pages
   ============================================================ */

/* ── 1. Fonts ── */
/* Neue Haas Grotesk Text Pro - official LWC font
   Place .woff2 files in /fonts/ directory to activate */
@font-face {
  font-family: 'Neue Haas Grotesk Text Pro';
  src: url('fonts/NeueHaasGroteskTextPro-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk Text Pro';
  src: url('fonts/NeueHaasGroteskTextPro-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk Text Pro';
  src: url('fonts/NeueHaasGroteskTextPro-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk Text Pro';
  src: url('fonts/NeueHaasGroteskTextPro-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Cormorant Garamond — serif heading typeface (premium dual-font system) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

/* ── 2. CSS Custom Properties ── */
:root {
  /* Colors */
  --navy:       #0A1628;
  --navy-mid:   #0f1e38;
  --navy-light: #152338;
  --ocean:      #1E5F8A;
  --ocean-light:#2a7aad;
  --gold:       #C4A265;
  --gold-light: #d4b87a;
  --white:      #FFFFFF;
  --warm-white: #FAFAF8;
  --off-white:  #F5F4F0;
  --text-dark:  #1A1A1A;
  --text-mid:   #4A4A4A;
  --text-muted: #7A7A7A;
  --border:     #E8E6E0;
  --border-dark:#243550;

  /* Typography */
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Neue Haas Grotesk Text Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2.5rem;
  --sp-xl:  4rem;
  --sp-2xl: 6rem;
  --sp-3xl: 9rem;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 80px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur-fast: 200ms;
  --dur-med:  400ms;
  --dur-slow: 700ms;
}

/* ── 3. Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--warm-white);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* ── 4. Typography ── */
h1, h2 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.1rem; }

p {
  line-height: 1.75;
  color: var(--text-mid);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--sp-sm);
}

.eyebrow--light {
  color: rgba(196, 162, 101, 0.8);
}

/* ── 5. Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--sp-lg);
  padding-right: var(--sp-lg);
}

.container--narrow {
  max-width: 820px;
}

.container--wide {
  max-width: 1400px;
}

.section {
  padding-top: var(--sp-3xl);
  padding-bottom: var(--sp-3xl);
}

.section--md {
  padding-top: var(--sp-2xl);
  padding-bottom: var(--sp-2xl);
}

.section--dark {
  background-color: var(--navy);
  color: var(--white);
}

.section--dark p {
  color: rgba(255,255,255,0.72);
}

.section--light {
  background-color: var(--warm-white);
}

.section--off {
  background-color: var(--off-white);
}

.section-header {
  margin-bottom: var(--sp-2xl);
}

.section-header--center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--sp-2xl);
}

.section-header p {
  margin-top: var(--sp-md);
  font-size: 1.05rem;
}

/* ── 6. Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border: 1.5px solid transparent;
  transition: all var(--dur-med) var(--ease);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn--primary:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--gold-outline:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-arrow {
  display: inline-block;
  transition: transform var(--dur-fast) var(--ease);
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* ── 7. Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background-color var(--dur-med) var(--ease),
              border-color var(--dur-med) var(--ease),
              box-shadow var(--dur-med) var(--ease);
  background-color: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 1px 12px rgba(0,0,0,0.05);
}

.nav.scrolled {
  background-color: var(--white);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 24px rgba(0,0,0,0.1);
}

.nav.nav--solid {
  background-color: var(--white);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.05);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--navy);
  transition: opacity var(--dur-fast) var(--ease);
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-logo-icon {
  width: 36px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.nav-logo-img {
  height: 28px;
  width: auto;
  max-width: 120px;
  flex-shrink: 0;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--navy);
}



/* Nav actions (right side) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  background-color: var(--gold);
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--gold);
  transition: all var(--dur-fast) var(--ease);
}

.nav-cta:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
}

/* ── Language Toggle ── */
/* Globe language selector */
.lang-globe-wrap {
  position: relative;
  margin-right: 0.5rem;
}

.lang-globe-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  color: var(--navy);
  opacity: 0.55;
  transition: opacity 200ms;
}

.lang-globe-btn:hover,
.lang-globe-btn[aria-expanded="true"] {
  opacity: 1;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  min-width: 120px;
  z-index: 1000;
  flex-direction: column;
  overflow: hidden;
}

.lang-globe-wrap.open .lang-dropdown {
  display: flex;
}

.lang-dropdown-btn {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 0.6rem 1rem;
  cursor: pointer;
  text-align: left;
  transition: background 150ms, color 150ms;
}

.lang-dropdown-btn:hover {
  background: var(--bg-warm);
  color: var(--navy);
}

.lang-dropdown-btn.active {
  color: var(--navy);
  font-weight: 500;
}

/* Mobile globe variant */
.lang-globe-wrap--mobile {
  margin-bottom: 0.75rem;
}

.lang-globe-wrap--mobile .lang-globe-btn {
  opacity: 0.6;
  color: var(--white);
}

.lang-globe-wrap--mobile .lang-globe-btn:hover,
.lang-globe-wrap--mobile .lang-globe-btn[aria-expanded="true"] {
  opacity: 1;
}

.lang-globe-wrap--mobile .lang-dropdown {
  background: rgba(10,22,40,0.95);
  border-color: rgba(255,255,255,0.15);
  left: 0;
  right: auto;
}

.lang-globe-wrap--mobile .lang-dropdown-btn {
  color: rgba(255,255,255,0.6);
}

.lang-globe-wrap--mobile .lang-dropdown-btn:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.lang-globe-wrap--mobile .lang-dropdown-btn.active {
  color: var(--white);
  font-weight: 500;
}

/* Hamburger toggle */
.nav-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: relative;
  z-index: 200;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background-color: var(--navy);
  transition: transform var(--dur-med) var(--ease),
              opacity var(--dur-fast) var(--ease),
              width var(--dur-med) var(--ease);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── 8. Navigation Overlay ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 99;
  background-color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-slow) var(--ease),
              visibility var(--dur-slow) var(--ease);
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2xl);
}

.nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.nav-menu li {
  overflow: hidden;
}

.nav-menu li a {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  padding: 0.4rem 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
  transition: color var(--dur-fast) var(--ease);
  transform: translateY(100%);
  opacity: 0;
  transition: transform var(--dur-slow) var(--ease-out),
              opacity var(--dur-slow) var(--ease-out),
              color var(--dur-fast) var(--ease);
}

.nav-overlay.open .nav-menu li a {
  transform: translateY(0);
  opacity: 1;
}

.nav-menu li:nth-child(1) a { transition-delay: 0.05s; }
.nav-menu li:nth-child(2) a { transition-delay: 0.1s; }
.nav-menu li:nth-child(3) a { transition-delay: 0.15s; }
.nav-menu li:nth-child(4) a { transition-delay: 0.2s; }
.nav-menu li:nth-child(5) a { transition-delay: 0.25s; }

.nav-menu li a:hover {
  color: var(--gold);
}

.nav-menu li a.active {
  color: var(--gold);
}

.nav-overlay-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--dur-slow) var(--ease) 0.35s,
              transform var(--dur-slow) var(--ease) 0.35s;
}

.nav-overlay.open .nav-overlay-footer {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay-footer span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.nav-overlay-footer a {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(196,162,101,0.3);
  padding-bottom: 2px;
}

.nav-overlay-footer a:hover {
  border-bottom-color: var(--gold);
}

/* ── Desktop Nav Links ── */
.nav-links {
  display: none;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: center;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
}

@media (max-width: 1023px) {
  .lang-globe-wrap:not(.lang-globe-wrap--mobile) {
    display: none;
  }
  .nav-cta {
    display: none;
  }
  .nav-logo-text {
    display: none;
  }
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 0 1.25rem;
  height: var(--nav-height);
  line-height: var(--nav-height);
  border: none;
  background: none;
  cursor: pointer;
  white-space: nowrap;
  transition: color var(--dur-fast) var(--ease);
  text-decoration: none;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--dur-fast) var(--ease);
  transform-origin: left;
}

.nav-item:hover .nav-link,
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-item:hover .nav-link::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity var(--dur-fast) var(--ease),
              visibility var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
  z-index: 200;
  pointer-events: none;
}

.nav-item--dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown-inner {
  padding: 1.5rem 1.75rem;
}

.nav-dropdown-header {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.nav-dropdown-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-dropdown-links li {
  margin: 0;
}

.nav-dropdown-links a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: color var(--dur-fast) var(--ease),
              padding-left var(--dur-fast) var(--ease);
}

.nav-dropdown-links a:hover {
  color: var(--gold);
  padding-left: 0.4rem;
}

/* ── Mobile Overlay Sub-menus ── */
.nav-menu-item--expandable {
  width: 100%;
  text-align: center;
  overflow: visible;
}

.nav-menu-expand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  padding: 0.4rem 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  transform: translateY(100%);
  opacity: 0;
  transition: transform var(--dur-slow) var(--ease-out),
              opacity var(--dur-slow) var(--ease-out),
              color var(--dur-fast) var(--ease);
}

.nav-overlay.open .nav-menu-expand {
  transform: translateY(0);
  opacity: 1;
}

.nav-menu-expand:hover {
  color: var(--gold);
}

.nav-menu-arrow {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform var(--dur-fast) var(--ease);
  display: inline-block;
}

.nav-menu-item--expandable.open .nav-menu-arrow {
  transform: rotate(45deg);
}

.nav-menu-sub {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-med) var(--ease);
}

.nav-menu-item--expandable.open .nav-menu-sub {
  max-height: 400px;
}

.nav-menu-sub li a {
  display: block;
  font-size: 0.85rem;
  font-family: var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0.4rem 0;
  transition: color var(--dur-fast) var(--ease);
}

.nav-menu-sub li a:hover {
  color: var(--gold);
}

.nav-menu-direct {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  padding: 0.4rem 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
  transform: translateY(100%);
  opacity: 0;
  transition: transform var(--dur-slow) var(--ease-out),
              opacity var(--dur-slow) var(--ease-out),
              color var(--dur-fast) var(--ease);
}

.nav-overlay.open .nav-menu-direct {
  transform: translateY(0);
  opacity: 1;
}

.nav-menu-direct:hover {
  color: var(--gold);
}

/* Transition delays for mobile menu */
.nav-menu li:nth-child(1) .nav-menu-expand,
.nav-menu li:nth-child(1) .nav-menu-direct { transition-delay: 0.05s; }
.nav-menu li:nth-child(2) .nav-menu-expand,
.nav-menu li:nth-child(2) .nav-menu-direct { transition-delay: 0.1s; }
.nav-menu li:nth-child(3) .nav-menu-expand,
.nav-menu li:nth-child(3) .nav-menu-direct { transition-delay: 0.15s; }
.nav-menu li:nth-child(4) .nav-menu-expand,
.nav-menu li:nth-child(4) .nav-menu-direct { transition-delay: 0.2s; }

/* Footer - 5 columns */
@media (min-width: 900px) {
  .footer-main {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  }
}

/* ── 9. Hero — Homepage ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 60%, rgba(30, 95, 138, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(10, 40, 70, 0.5) 0%, transparent 50%);
  pointer-events: none;
}

.hero-bg-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,162,101,0.3), transparent);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--nav-height) + var(--sp-2xl)) var(--sp-lg) var(--sp-3xl);
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: var(--sp-xl);
}

.hero-label-line {
  width: 40px;
  height: 1px;
  background-color: var(--gold);
}

.hero-label span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  color: var(--white);
  max-width: 900px;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: var(--sp-lg);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  max-width: 560px;
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: var(--sp-xl);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: var(--sp-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBob 2s ease-in-out infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(196,162,101,0.6), transparent);
}

@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ── 10. Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  background-color: var(--navy);
  overflow: hidden;
  padding-bottom: var(--sp-2xl);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(30,95,138,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: calc(var(--nav-height) + var(--sp-xl)) var(--sp-lg) 0;
}

.page-hero h1 {
  color: var(--white);
  font-weight: 300;
  margin-bottom: var(--sp-md);
  max-width: 700px;
}

.page-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 560px;
}

.page-hero-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: var(--sp-md);
}

/* ── 11. Pillars Section ── */
.pillars {
  background-color: var(--warm-white);
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pillar {
  padding: var(--sp-2xl) var(--sp-xl);
  border-right: 1px solid var(--border);
  position: relative;
  transition: background-color var(--dur-med) var(--ease);
}

.pillar:last-child {
  border-right: none;
}

.pillar:hover {
  background-color: var(--off-white);
}

.pillar-number {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: var(--sp-md);
  display: block;
  letter-spacing: 0.1em;
}

.pillar h3 {
  font-size: 1.7rem;
  margin-bottom: var(--sp-md);
  color: var(--navy);
}

.pillar p {
  font-size: 0.95rem;
  line-height: 1.8;
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--sp-md);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  transition: color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}

.pillar-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── 12. Services Overview (homepage) ── */
.services-overview {
  background-color: var(--navy);
}

.services-overview .section-header--center h2 {
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background-color: var(--border-dark);
  border: 1.5px solid var(--border-dark);
}

.service-tile {
  background-color: var(--navy-light);
  padding: var(--sp-xl) var(--sp-lg);
  transition: background-color var(--dur-med) var(--ease);
}

.service-tile:hover {
  background-color: var(--navy-mid);
}

.service-tile-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--sp-md);
  color: var(--gold);
}

.service-tile h4 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.service-tile p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
}

/* ── 13. CTA Section ── */
.cta-section {
  background-color: var(--warm-white);
  text-align: center;
  padding: var(--sp-3xl) var(--sp-lg);
}

.cta-section h2 {
  color: var(--navy);
  max-width: 680px;
  margin: 0 auto var(--sp-md);
}

.cta-section p {
  max-width: 520px;
  margin: 0 auto var(--sp-xl);
  font-size: 1.05rem;
}

.cta-rule {
  width: 1px;
  height: 60px;
  background: var(--gold);
  margin: 0 auto var(--sp-xl);
}

/* ── 14. Stats Strip ── */
.stats-strip {
  background-color: var(--navy-light);
  padding: var(--sp-xl) 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}

.stat-number span {
  color: var(--gold);
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── 15. About Page ── */
.about-mission {
  background-color: var(--warm-white);
}

.about-mission-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.about-sidebar {
  padding-top: var(--sp-sm);
}

.about-sidebar-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: var(--sp-md);
}

.about-sidebar p {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.5;
  font-style: italic;
}

.about-content h2 {
  margin-bottom: var(--sp-md);
  color: var(--navy);
}

.about-content p + p {
  margin-top: var(--sp-md);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-lg);
  margin-top: var(--sp-2xl);
}

.value-card {
  padding: var(--sp-lg);
  border: 1px solid var(--border);
  transition: border-color var(--dur-med) var(--ease),
              box-shadow var(--dur-med) var(--ease);
}

.value-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.value-card-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.value-card h4 {
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.value-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Heritage section */
.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.heritage-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--navy-light);
  overflow: hidden;
}

.heritage-visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-md);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.heritage-visual-text {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 300;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  letter-spacing: -0.02em;
}

.heritage-visual-badge {
  position: absolute;
  bottom: var(--sp-lg);
  right: var(--sp-lg);
  background: var(--gold);
  color: var(--navy);
  padding: var(--sp-sm) var(--sp-md);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.heritage-content h2 {
  margin-bottom: var(--sp-md);
  color: var(--navy);
}

.heritage-content p + p {
  margin-top: var(--sp-md);
}

/* Team section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.team-card {
  text-align: center;
}

.team-avatar {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--navy-light);
  margin-bottom: var(--sp-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-avatar-placeholder {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: rgba(255,255,255,0.15);
}

.team-card h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.team-card .title {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 0.88rem;
  line-height: 1.7;
}

/* Differentiators */
.diff-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.diff-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--sp-lg);
  padding: var(--sp-lg) 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.diff-item:first-child {
  border-top: 1px solid var(--border);
}

.diff-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  padding-top: 0.2rem;
}

.diff-content h4 {
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.diff-content p {
  font-size: 0.92rem;
}

/* ── 16. Services Page ── */
.service-detail {
  padding: var(--sp-2xl) 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: none;
}

.service-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.service-detail-inner.reverse {
  grid-template-columns: 1.5fr 1fr;
}

.service-detail-inner.reverse .service-info {
  order: 2;
}

.service-detail-inner.reverse .service-visual {
  order: 1;
}

.service-info h2 {
  color: var(--navy);
  margin-bottom: var(--sp-sm);
}

.service-info > p {
  font-size: 1.05rem;
  margin-bottom: var(--sp-lg);
}

.service-benefits {
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.service-benefit {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.service-benefit:last-child {
  border-bottom: none;
}

.service-benefit-icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--gold);
  flex-shrink: 0;
}

.service-benefit-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.service-visual {
  aspect-ratio: 4/5;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--ocean) 100%);
  opacity: 0.5;
}

.service-visual-icon {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.08);
}

.service-visual-icon svg {
  width: 160px;
  height: 160px;
}

/* ── 17. Insights Page ── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--dur-med) var(--ease),
              transform var(--dur-med) var(--ease);
  cursor: pointer;
}

.article-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.article-card-image {
  aspect-ratio: 16/9;
  background: var(--navy-light);
  position: relative;
  overflow: hidden;
}

.article-card-image-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-card-body {
  padding: var(--sp-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  margin-bottom: var(--sp-sm);
}

.article-category {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.article-date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.article-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--border);
}

.article-card h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
  flex: 1;
}

.article-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: var(--sp-md);
}

.article-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  margin-top: auto;
  width: fit-content;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}

.article-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Featured article */
.article-card--featured {
  grid-column: span 3;
  flex-direction: row;
}

.article-card--featured .article-card-image {
  width: 45%;
  flex-shrink: 0;
  aspect-ratio: auto;
}

.article-card--featured .article-card-body {
  padding: var(--sp-2xl);
}

.article-card--featured h3 {
  font-size: 2rem;
}

/* Filters */
.insights-filters {
  display: flex;
  gap: var(--sp-sm);
  flex-wrap: wrap;
  margin-bottom: var(--sp-2xl);
}

.filter-btn {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-mid);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

/* ── 18. Contact Page ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.contact-info h2 {
  color: var(--navy);
  margin-bottom: var(--sp-md);
}

.contact-info > p {
  font-size: 1.05rem;
  margin-bottom: var(--sp-xl);
}

.contact-detail {
  padding: var(--sp-md) 0;
  border-top: 1px solid var(--border);
}

.contact-detail:last-of-type {
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-xl);
}

.contact-detail-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.contact-detail p,
.contact-detail address {
  font-size: 0.95rem;
  color: var(--text-mid);
  font-style: normal;
  line-height: 1.7;
}

.contact-discretion {
  background: var(--off-white);
  padding: var(--sp-md) var(--sp-lg);
  border-left: 2px solid var(--gold);
  margin-top: var(--sp-lg);
}

.contact-discretion p {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-mid);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  padding: var(--sp-2xl);
}

.contact-form-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: var(--sp-xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}

.form-group {
  margin-bottom: var(--sp-md);
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--warm-white);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: border-color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--ocean);
  box-shadow: 0 0 0 3px rgba(30,95,138,0.08);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A4A4A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-lg);
  line-height: 1.6;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-xl);
  color: var(--navy);
}

.form-success-icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-md);
  color: var(--gold);
}

/* Map placeholder */
.map-placeholder {
  height: 280px;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--sp-lg);
  position: relative;
  overflow: hidden;
}

.map-overlay {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

.map-pin {
  width: 24px;
  height: 24px;
  color: var(--gold);
  margin: 0 auto var(--sp-sm);
}

/* ── 19. Footer ── */
.footer {
  background-color: var(--navy);
  color: var(--white);
  padding-top: var(--sp-2xl);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: var(--sp-xl);
  padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--sp-md);
}

.footer-brand-logo-icon {
  width: 32px;
  height: 18px;
  color: var(--gold);
}

.footer-logo-img {
  height: 24px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
}

.footer-brand-logo-text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: var(--sp-md);
}

.footer-brand-langs {
  display: flex;
  gap: 0.5rem;
}

.footer-lang {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(255,255,255,0.15);
}

.footer-col-title {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-md);
  display: block;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--dur-fast) var(--ease);
  line-height: 1.4;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-linkedin {
  display: inline-flex;
  align-items: center;
}

.footer-linkedin svg {
  opacity: 0.55;
  transition: opacity var(--dur-fast) var(--ease);
}

.footer-linkedin:hover svg {
  opacity: 1;
}

.footer-address {
  font-style: normal;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

.footer-bottom {
  padding: var(--sp-md) 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--sp-md);
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  max-width: 680px;
}

.footer-legal-links {
  display: flex;
  gap: var(--sp-md);
  flex-wrap: wrap;
  margin-top: var(--sp-xs);
}

.footer-legal-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--dur-fast);
}

.footer-legal-links a:hover {
  color: rgba(255,255,255,0.7);
}

.footer-reg {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  text-align: right;
  line-height: 1.6;
}

/* ── 20. Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--navy-mid);
  border-top: 1px solid var(--border-dark);
  padding: var(--sp-md) var(--sp-lg);
  transform: translateY(100%);
  transition: transform var(--dur-slow) var(--ease);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  min-width: 240px;
}

.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-actions {
  display: flex;
  gap: var(--sp-sm);
  flex-shrink: 0;
}

.cookie-accept {
  padding: 0.6rem 1.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--dur-fast);
}

.cookie-accept:hover {
  background: var(--gold-light);
}

.cookie-decline {
  padding: 0.6rem 1.25rem;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all var(--dur-fast);
}

.cookie-decline:hover {
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.7);
}

/* ── 21. Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease,
              transform 0.6s ease;
}

/* Make content visible immediately if JS hasn't loaded or for print */
@media print {
  .reveal { opacity: 1 !important; transform: none !important; }
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

.reveal--fade {
  transform: none;
}

.reveal--left {
  transform: translateX(-28px);
}

.reveal--left.revealed {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(28px);
}

.reveal--right.revealed {
  transform: translateX(0);
}

/* ── 22. Dividers & Misc ── */
.rule-gold {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: var(--sp-md) 0;
}

.rule-gold--center {
  margin-left: auto;
  margin-right: auto;
}

.text-white { color: var(--white); }
.text-navy  { color: var(--navy); }
.text-gold  { color: var(--gold); }
.text-center { text-align: center; }
.text-muted  { color: var(--text-muted); }

/* ── 23. Responsive ── */
@media (max-width: 1024px) {
  :root {
    --sp-3xl: 7rem;
    --sp-2xl: 5rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .pillar {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: var(--sp-xl) var(--sp-lg);
  }

  .pillar:last-child {
    border-bottom: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-xl);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
  }

  .about-mission-inner {
    grid-template-columns: 1fr;
  }

  .heritage-grid {
    grid-template-columns: 1fr;
  }

  .heritage-visual {
    aspect-ratio: 16/7;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-card--featured {
    grid-column: span 2;
  }

  .service-detail-inner,
  .service-detail-inner.reverse {
    grid-template-columns: 1fr;
  }

  .service-detail-inner.reverse .service-info,
  .service-detail-inner.reverse .service-visual {
    order: unset;
  }

  .service-visual {
    aspect-ratio: 16/7;
  }
}

@media (max-width: 768px) {
  :root {
    --sp-3xl: 5rem;
    --sp-2xl: 3.5rem;
    --sp-xl: 2.5rem;
    --sp-lg: 1.75rem;
    --nav-height: 68px;
  }

  .nav-cta {
    display: none;
  }

  .container {
    padding-left: var(--sp-md);
    padding-right: var(--sp-md);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile footer: hide all page link columns, show only legal/disclaimers */
  .footer-main {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    padding-top: var(--sp-lg);
  }

  .footer-reg {
    text-align: left;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: var(--sp-lg);
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .article-card--featured {
    grid-column: span 1;
    flex-direction: column;
  }

  .article-card--featured .article-card-image {
    width: 100%;
    aspect-ratio: 16/9;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-scroll {
    display: none;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-accept,
  .cookie-decline {
    flex: 1;
    text-align: center;
  }

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

  /* Touch-friendly targets */
  .btn {
    min-height: 44px;
  }
  /* nav-cta stays hidden on mobile (set above) */
  /* Form elements */
  .form-row {
    flex-direction: column;
  }
  .form-group {
    width: 100%;
  }
  input, textarea, select {
    min-height: 44px;
    font-size: 16px; /* prevent iOS zoom */
  }
  /* Hero adjustments */
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  /* Pillar grid */
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ADDITIONAL PAGE STYLES
   ============================================================ */

/* ── Team Page — Initials Cards ── */
.team-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2xl);
  align-items: start;
}

.team-member {
  background: var(--white);
  border: 1px solid var(--border);
  padding: var(--sp-2xl);
  transition: box-shadow var(--dur-med) var(--ease);
}

.team-member:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.team-initials {
  width: 100px;
  height: 100px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-lg);
  position: relative;
}

.team-initials::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: 32px;
  height: 32px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.team-initials span {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.team-member-title {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.team-member-name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: var(--sp-md);
  line-height: 1.25;
}

.team-member-bio {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-mid);
}

.team-member-bio p + p {
  margin-top: var(--sp-md);
}

.team-member-highlights {
  margin-top: var(--sp-lg);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.team-member-highlights li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.team-member-highlights li::before {
  content: '›';
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Publications Listing ── */
.publications-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--sp-2xl);
  align-items: start;
}

.pub-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--sp-lg));
}

.pub-sidebar-title {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-md);
}

.pub-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pub-sidebar-links a {
  display: block;
  padding: 0.6rem 0;
  font-size: 0.88rem;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  transition: color var(--dur-fast) var(--ease);
}

.pub-sidebar-links a:first-child {
  border-top: 1px solid var(--border);
}

.pub-sidebar-links a:hover,
.pub-sidebar-links a.active {
  color: var(--navy);
}

.pub-listing {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

/* ── Article Full View ── */
.article-page {
  padding-top: 0;
}

/* ── Content Prose ── */
.content-prose {
  max-width: 720px;
  margin: 0 auto;
}

.content-prose p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: var(--sp-md);
}

.content-prose p strong {
  color: var(--navy);
  font-weight: 600;
}

.article-page-header {
  margin-bottom: var(--sp-xl);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--border);
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-lg);
  transition: color var(--dur-fast) var(--ease);
}

.article-back:hover {
  color: var(--gold);
}

.article-page-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
  max-width: 800px;
  margin-bottom: var(--sp-md);
}

.article-body {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-mid);
}

.article-body p + p {
  margin-top: var(--sp-md);
}

.article-body .lead {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: var(--sp-lg);
  line-height: 1.75;
}

/* ── Legal Pages ── */
.legal-content {
  max-width: 780px;
}

.legal-content h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: var(--sp-xl);
  margin-bottom: var(--sp-sm);
}

.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: var(--sp-sm);
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: var(--sp-sm);
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.85;
  padding: 0.25rem 0;
  list-style: disc;
}

.legal-updated {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: var(--sp-xl);
  padding-top: var(--sp-md);
  border-top: 1px solid var(--border);
}

/* ── Contact Page Map ── */
.contact-map {
  margin-top: var(--sp-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: none;
  filter: grayscale(0.6) contrast(1.1);
}

/* ── Responsive additions ── */
@media (max-width: 1024px) {
  .team-page-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
}

@media (max-width: 768px) {
  .publications-layout {
    grid-template-columns: 1fr;
  }

  .pub-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }

  .pub-sidebar-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--sp-xs);
  }

  .pub-sidebar-links a {
    border: 1px solid var(--border);
    padding: 0.4rem 0.75rem;
    font-size: 0.78rem;
  }

  .pub-sidebar-links a:first-child {
    border-top: 1px solid var(--border);
  }

  .team-member {
    padding: var(--sp-lg);
  }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .page-hero-inner {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .diff-item {
    grid-template-columns: 40px 1fr;
    gap: var(--sp-md);
  }
}
