
  :root {
    /* Brand */
    --primary:        #003333;   /* Deep Teal */
    --primary-deeper: #001f1f;
    --gold:           #B3A382;
    --gold-bright:    #d4c39a;
    --gold-deep:      #8b7d5e;
    --teal-medium:    #2D555C;
    --teal-light:     #CCD6D6;
    --linen:          #E1DACD;
    --steel:          #84595F;
    --charcoal:       #3A3A3A;
    --mid-grey:       #666666;
    --off-white:      #EDEDEF;
    --bg-warm:        #FAF9F5;
    --bg-white:       #FAFAFA;
    --white:          #FFFFFF;
    --black:          #000000;
    --ink-soft:       #1A1413;
    --ease:           cubic-bezier(0.22, 1, 0.36, 1);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg-warm);
    color: var(--ink-soft);
    font-family: 'Inter', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    overflow-x: hidden;
  }
  h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.08;
  }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; display: block; }
  ::selection { background: var(--gold); color: var(--primary); }
  ::-webkit-scrollbar { width: 10px; }
  ::-webkit-scrollbar-track { background: transparent; }
  ::-webkit-scrollbar-thumb { background: var(--linen); border-radius: 8px; }
  ::-webkit-scrollbar-thumb:hover { background: var(--gold); }

  .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
  .container-narrow { max-width: 1040px; margin: 0 auto; padding: 0 32px; }

  /* ─── NAV ─────────────────────────── */
  .nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    transition: all 600ms var(--ease);
  }
  .nav.scrolled {
    backdrop-filter: blur(20px) saturate(160%);
    background: rgba(0, 51, 51, 0.78);
    border-bottom: 1px solid rgba(179, 163, 130, 0.15);
  }
  .nav.scrolled .nav-link,
  .nav.scrolled .nav-locale,
  .nav.scrolled .logo-text { color: var(--linen); }
  .nav-inner {
    max-width: 1320px; margin: 0 auto;
    padding: 22px 36px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px;
  }
  .logo { display: flex; align-items: center; gap: 14px; }
  .logo img { width: 44px; height: 44px; }
  .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 400ms var(--ease);
  }
  .nav-links { display: flex; align-items: center; gap: 38px; }
  .nav-link {
    font-size: 12px;
    color: rgba(255,255,255,0.78);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 200ms;
    position: relative;
  }
  .nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    height: 1px; width: 0;
    background: var(--gold);
    transition: width 300ms var(--ease);
  }
  .nav-link:hover { color: var(--gold); }
  .nav-link:hover::after { width: 100%; }
  .nav-cta-wrap { display: flex; align-items: center; gap: 16px; }
  .nav-locale {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid rgba(225, 218, 205, 0.25);
    border-radius: 999px;
    padding: 7px 14px;
    transition: all 250ms;
  }
  .nav-locale:hover { border-color: var(--gold); color: var(--gold); }

  .btn-gold {
    display: inline-flex; align-items: center; gap: 10px;
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
    color: var(--primary);
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 500; font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none; cursor: pointer;
    transition: transform 350ms var(--ease), box-shadow 350ms var(--ease);
    box-shadow: 0 14px 32px -10px rgba(179, 163, 130, 0.55), inset 0 1px 0 rgba(255,255,255,0.4);
    white-space: nowrap;
  }
  .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 22px 44px -12px rgba(179, 163, 130, 0.7), inset 0 1px 0 rgba(255,255,255,0.4); }
  .btn-gold.lg { padding: 18px 36px; font-size: 13px; }

  .btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    background: transparent;
    color: var(--linen);
    padding: 14px 28px;
    border: 1px solid rgba(225, 218, 205, 0.4);
    border-radius: 999px;
    font-weight: 500; font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 350ms var(--ease);
    white-space: nowrap;
  }
  .btn-ghost:hover { background: var(--linen); color: var(--primary); border-color: var(--linen); }
  .btn-ghost.lg { padding: 18px 36px; }

  .btn-dark {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--primary);
    color: var(--linen);
    padding: 18px 36px;
    border-radius: 999px;
    font-weight: 500; font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 350ms var(--ease);
    box-shadow: 0 16px 36px -10px rgba(0, 51, 51, 0.5);
  }
  .btn-dark:hover { background: var(--primary-deeper); transform: translateY(-2px); }
  .btn-dark .arrow path { stroke: var(--gold); }

  .arrow { width: 14px; height: 14px; flex-shrink: 0; }

  /* ─── HERO ─────────────────────────── */
  .hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex; align-items: center;
    background: var(--primary);
    color: var(--linen);
    overflow: hidden;
    padding: 140px 0 100px;
  }
  #hero-canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 1;
  }
  .hero-skyline {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image: url('assets/hero-skyline.jpg');
    background-size: cover;
    background-position: center 65%;
    opacity: 0.42;
    filter: saturate(0.55) contrast(1.05);
    mask-image: linear-gradient(180deg, transparent 0%, black 38%, black 78%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 38%, black 78%, transparent 100%);
  }
  .hero-vignette {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background:
      radial-gradient(ellipse 80% 50% at 50% 100%, rgba(0,0,0,0.55) 0%, transparent 70%),
      radial-gradient(ellipse 70% 40% at 50% 0%, rgba(0, 31, 31, 0.55) 0%, transparent 60%);
  }
  .hero-grain {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    opacity: 0.06;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' /></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  }
  .hero-grid {
    position: relative; z-index: 10;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 36px;
    width: 100%;
  }
  .hero-content { max-width: 920px; }
  .eyebrow {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 0.32em;
    text-transform: uppercase;
    margin-bottom: 38px;
    display: inline-flex; align-items: center; gap: 14px;
    font-weight: 500;
  }
  .eyebrow::before {
    content: ''; width: 36px; height: 1px; background: var(--gold);
  }
  .hero h1 {
    font-size: clamp(44px, 6.6vw, 96px);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 36px;
    letter-spacing: -0.025em;
    line-height: 1.02;
    text-wrap: balance;
  }
  .hero h1 em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold-bright);
    background: linear-gradient(115deg, #e8d8af 0%, #d4c39a 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(212, 195, 154, 0.25);
  }
  .hero h1 em .word {
    background: inherit;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .hero h1 .word { display: inline-block; }
  .js-anim .hero h1 .word {
    opacity: 0;
    transform: translateY(28px);
    animation: heroIn 1.1s var(--ease) forwards;
  }
  @keyframes heroIn { to { opacity: 1; transform: none; } }
  .hero-sub {
    font-size: 19px;
    color: rgba(225, 218, 205, 0.78);
    max-width: 680px;
    line-height: 1.6;
    margin-bottom: 52px;
    text-wrap: pretty;
  }
  .js-anim .hero-sub {
    opacity: 0;
    animation: heroIn 1s var(--ease) 0.7s forwards;
  }
  .hero-ctas {
    display: flex; flex-wrap: wrap; gap: 16px;
  }
  .js-anim .hero-ctas {
    opacity: 0;
    animation: heroIn 1s var(--ease) 0.9s forwards;
  }
  .js-anim .hero-meta {
    opacity: 0;
    animation: heroIn 1s var(--ease) 1.4s forwards;
  }
  @media (prefers-reduced-motion: reduce) {
    .hero h1 .word, .hero-sub, .hero-ctas, .hero-meta {
      opacity: 1 !important; transform: none !important; animation: none !important;
    }
  }
  .hero-meta {
    position: absolute;
    bottom: 36px;
    left: 36px;
    right: 36px;
    z-index: 10;
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 20px; font-size: 11px;
    color: rgba(225, 218, 205, 0.5);
    letter-spacing: 0.22em;
    text-transform: uppercase;
  }
  .hero-meta .scroll {
    display: inline-flex; align-items: center; gap: 12px;
  }
  .hero-meta .scroll-line {
    width: 40px; height: 1px; background: var(--gold);
    position: relative; overflow: hidden;
  }
  .hero-meta .scroll-line::after {
    content: '';
    position: absolute; inset: 0; left: -100%;
    background: linear-gradient(90deg, transparent, rgba(225,218,205,0.9), transparent);
    animation: scrollLine 2.4s ease-in-out infinite;
  }
  @keyframes scrollLine { to { left: 200%; } }

  /* ─── DEFINITION ─────────────────────────── */
  .definition {
    padding: 100px 0;
    background: var(--bg-warm);
    border-bottom: 1px solid var(--linen);
  }
  .definition-inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
  }
  .definition .label {
    font-size: 11px; color: var(--gold-deep);
    letter-spacing: 0.28em; text-transform: uppercase;
    font-weight: 500;
    padding-top: 12px;
  }
  .definition blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.35;
    color: var(--primary);
    font-weight: 400;
    text-wrap: pretty;
    letter-spacing: -0.005em;
    position: relative;
  }
  .definition blockquote::before {
    content: '"';
    position: absolute;
    top: -28px; left: -22px;
    font-size: 100px;
    color: var(--gold);
    opacity: 0.45;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
  }

  /* ─── LOGO STRIP ─────────────────────────── */
  .logos {
    padding: 90px 0;
    background: var(--bg-warm);
  }
  .logos-label {
    text-align: center;
    font-size: 11px;
    color: var(--gold-deep);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 56px;
    font-weight: 500;
  }
  .logos-row {
    display: flex; flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 22px 64px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .logo-item {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--primary);
    letter-spacing: 0.01em;
    transition: color 300ms;
  }
  .logo-item:hover { color: var(--gold-deep); }
  .logos-more {
    font-size: 13px;
    color: var(--mid-grey);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
  }

  /* ─── PROBLEM ─────────────────────────── */
  .problem {
    padding: 160px 0;
    background: var(--bg-warm);
    position: relative;
  }
  .section-eyebrow {
    font-size: 11px;
    color: var(--gold-deep);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    margin-bottom: 28px;
    display: inline-flex; align-items: center; gap: 14px;
    font-weight: 500;
  }
  .section-eyebrow::before {
    content: ''; width: 28px; height: 1px;
    background: var(--gold);
  }
  .problem h2,
  .services h2,
  .why h2 {
    font-size: clamp(38px, 5.2vw, 72px);
    color: var(--primary);
    max-width: 880px;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    line-height: 1.05;
  }
  .problem h2 em,
  .services h2 em,
  .why h2 em {
    font-style: italic;
    color: var(--gold-deep);
  }
  .problem-intro {
    font-size: 18px;
    color: var(--charcoal);
    max-width: 760px;
    line-height: 1.65;
    margin-bottom: 80px;
    text-wrap: pretty;
  }
  .problem-outro {
    margin-top: 80px;
    max-width: 720px;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: clamp(20px, 1.7vw, 26px);
    line-height: 1.45;
    color: var(--primary);
    text-wrap: pretty;
    border-left: 2px solid var(--gold);
    padding-left: 28px;
  }
  .problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--linen);
  }
  .problem-card {
    padding: 52px 40px 56px;
    border-bottom: 1px solid var(--linen);
    transition: background 500ms var(--ease);
    position: relative;
  }
  .problem-card:nth-child(odd) { border-right: 1px solid var(--linen); }
  .problem-card::before {
    content: counter(item, decimal-leading-zero);
    counter-increment: item;
    position: absolute;
    top: 52px; right: 36px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-style: italic;
    color: var(--gold-deep);
    letter-spacing: 0.05em;
  }
  .problem-grid { counter-reset: item; }
  .problem-card:hover {
    background: rgba(225, 218, 205, 0.35);
  }
  .problem-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.2;
    max-width: 460px;
    letter-spacing: -0.01em;
  }
  .problem-card p {
    color: var(--charcoal);
    line-height: 1.7;
    font-size: 15.5px;
    max-width: 460px;
    text-wrap: pretty;
  }

  /* ─── SERVICES ─────────────────────────── */
  .services {
    position: relative;
    padding: 160px 0;
    background: var(--primary);
    color: var(--linen);
    overflow: hidden;
  }
  .services-glow {
    position: absolute; inset: 0; pointer-events: none; opacity: 0.4;
  }
  .services-glow .g1 {
    position: absolute; top: -120px; right: -180px;
    width: 560px; height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(179,163,130,0.5) 0%, transparent 70%);
    filter: blur(80px);
  }
  .services-glow .g2 {
    position: absolute; bottom: -200px; left: -180px;
    width: 540px; height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 85, 92, 0.7) 0%, transparent 70%);
    filter: blur(100px);
  }
  .services-inner { position: relative; }
  .services h2 { color: var(--white); }
  .services h2 em { color: var(--gold); }
  .services .section-eyebrow { color: var(--gold); }
  .services .section-eyebrow::before { background: var(--gold); }
  .services-sub {
    font-size: 18px;
    color: rgba(225, 218, 205, 0.72);
    max-width: 720px;
    line-height: 1.65;
    margin-bottom: 80px;
    text-wrap: pretty;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .service-card {
    display: block;
    background: rgba(225, 218, 205, 0.04);
    border: 1px solid rgba(225, 218, 205, 0.12);
    border-radius: 4px;
    padding: 40px;
    transition: all 500ms var(--ease);
    position: relative;
    overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 500ms;
  }
  .service-card:hover {
    background: rgba(225, 218, 205, 0.07);
    border-color: rgba(179, 163, 130, 0.4);
    transform: translateY(-4px);
  }
  .service-card:hover::before { opacity: 1; }
  .service-head {
    display: flex; align-items: flex-start; justify-content: space-between;
    margin-bottom: 36px;
  }
  .service-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-style: italic;
    color: var(--gold);
    letter-spacing: 0.08em;
  }
  .service-duration {
    font-size: 11px;
    color: rgba(225, 218, 205, 0.5);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1px solid rgba(225, 218, 205, 0.18);
    padding: 5px 12px;
    border-radius: 999px;
  }
  .service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 18px;
    color: var(--white);
    letter-spacing: -0.015em;
    line-height: 1.15;
  }
  .service-card p {
    color: rgba(225, 218, 205, 0.72);
    line-height: 1.65;
    font-size: 15.5px;
    margin-bottom: 36px;
    text-wrap: pretty;
  }
  .service-link {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transition: gap 350ms var(--ease);
  }
  .service-card:hover .service-link { gap: 16px; }
  .service-link svg { width: 16px; height: 16px; }

  /* ─── WHY ─────────────────────────── */
  .why {
    padding: 160px 0;
    background: var(--bg-warm);
  }
  .why-head { text-align: center; max-width: 880px; margin: 0 auto 80px; }
  .why h2 { margin: 0 auto; }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--linen);
    border-bottom: 1px solid var(--linen);
  }
  .why-item {
    text-align: center;
    padding: 56px 28px;
    border-right: 1px solid var(--linen);
    transition: background 400ms var(--ease);
  }
  .why-item:last-child { border-right: none; }
  .why-item:hover { background: rgba(225, 218, 205, 0.4); }
  .why-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-style: italic;
    color: var(--gold-deep);
    margin-bottom: 24px;
    letter-spacing: 0.06em;
  }
  .why-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }
  .why-item p {
    font-size: 14.5px;
    color: var(--charcoal);
    line-height: 1.65;
    text-wrap: pretty;
  }

  /* ─── FINAL CTA ─────────────────────────── */
  .cta-final {
    position: relative;
    padding: 180px 0;
    background: var(--primary);
    color: var(--white);
    overflow: hidden;
  }
  #cta-canvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 0;
    opacity: 0.55;
  }
  .cta-final::after {
    content: '';
    position: absolute; inset: 0; z-index: 1;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, transparent 0%, rgba(0, 31, 31, 0.7) 100%);
    pointer-events: none;
  }
  .cta-inner {
    max-width: 880px; margin: 0 auto;
    padding: 0 32px;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .cta-final .ornament {
    width: 64px; height: 1px;
    background: var(--gold);
    margin: 0 auto 36px;
    position: relative;
  }
  .cta-final .ornament::before,
  .cta-final .ornament::after {
    content: '';
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
  }
  .cta-final .ornament::before { left: -14px; }
  .cta-final .ornament::after { right: -14px; }
  .cta-final h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5.6vw, 76px);
    font-weight: 300;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    line-height: 1.05;
    text-wrap: balance;
  }
  .cta-final h2 em {
    font-style: italic;
    color: var(--gold-bright);
  }
  .cta-final p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 22px;
    color: rgba(225, 218, 205, 0.85);
    max-width: 560px;
    margin: 0 auto 52px;
    line-height: 1.5;
  }

  /* ─── FOOTER ─────────────────────────── */
  .footer {
    background: var(--primary-deeper);
    color: var(--linen);
  }
  .footer-inner {
    max-width: 1320px; margin: 0 auto;
    padding: 110px 36px 40px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
  }
  .footer-brand {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 28px;
  }
  .footer-brand img { width: 56px; height: 56px; }
  .footer-brand span {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 16px;
  }
  .footer-tag {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 19px;
    color: rgba(225, 218, 205, 0.78);
    line-height: 1.45;
    max-width: 380px;
    margin-bottom: 32px;
  }
  .footer-meta {
    font-size: 13px;
    color: rgba(225, 218, 205, 0.45);
    margin-top: 8px;
    letter-spacing: 0.04em;
  }
  .footer h4 {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 22px;
  }
  .footer ul { list-style: none; }
  .footer ul li { margin-bottom: 12px; }
  .footer ul a {
    font-size: 14px;
    color: rgba(225, 218, 205, 0.65);
    transition: color 200ms;
  }
  .footer ul a:hover { color: var(--gold); }
  .footer-rights {
    padding-top: 32px;
    border-top: 1px solid rgba(225, 218, 205, 0.1);
    font-size: 11px;
    color: rgba(225, 218, 205, 0.4);
    letter-spacing: 0.12em;
    display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  }

  /* ─── FOUNDER ─────────────────────────── */
  .founder {
    padding: 160px 0;
    background: var(--bg-warm);
    position: relative;
    overflow: hidden;
  }
  .founder-inner {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
  }
  .founder-portrait {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 40px 80px -30px rgba(0, 51, 51, 0.45);
  }
  .founder-portrait::before {
    content: '';
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 51, 51, 0.55) 100%);
    pointer-events: none;
  }
  .founder-portrait::after {
    content: '';
    position: absolute; bottom: -16px; right: -16px;
    width: 100%; height: 100%;
    border: 1px solid var(--gold);
    border-radius: 4px;
    z-index: 0;
    pointer-events: none;
  }
  .founder-portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
    position: relative; z-index: 1;
  }
  .founder-label {
    font-size: 11px; color: var(--gold-deep);
    letter-spacing: 0.28em; text-transform: uppercase;
    font-weight: 500; margin-bottom: 28px;
  }
  .founder h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.6vw, 60px);
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.05;
  }
  .founder h2 em { font-style: italic; color: var(--gold-deep); }
  .founder-role {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 19px;
    color: var(--gold-deep);
    margin-bottom: 32px;
  }
  .founder-bio {
    font-size: 16.5px;
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 18px;
    max-width: 560px;
    text-wrap: pretty;
  }
  .founder-creds {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 32px; margin-bottom: 36px;
  }
  .founder-creds span {
    font-size: 11px;
    color: var(--gold-deep);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 1px solid rgba(179, 163, 130, 0.4);
    padding: 7px 14px;
    border-radius: 999px;
  }
  .founder-link {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12px;
    color: var(--primary);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 6px;
    transition: gap 350ms var(--ease), color 200ms;
  }
  .founder-link:hover { gap: 16px; color: var(--gold-deep); }
  .founder-link svg { width: 14px; height: 14px; }

  /* ─── KINGDOM BAND ─────────────────────────── */
  .kingdom {
    position: relative;
    height: 60vh; min-height: 420px;
    background-image: url('assets/skyline.jpg');
    background-size: cover;
    background-position: center;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .kingdom::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0, 51, 51, 0.78) 0%, rgba(0, 31, 31, 0.62) 100%);
  }
  .kingdom-flag {
    position: absolute; right: 6%; top: 0; bottom: 0;
    width: 280px;
    background-image: url('assets/saudi-flag.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.32;
    mix-blend-mode: screen;
    mask-image: linear-gradient(to left, black 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 30%, transparent 100%);
  }
  .kingdom-inner {
    position: relative; z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 880px; padding: 0 32px;
  }
  .kingdom-eyebrow {
    font-size: 11px; color: var(--gold);
    letter-spacing: 0.32em; text-transform: uppercase;
    margin-bottom: 24px;
  }
  .kingdom h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4.4vw, 56px);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.015em;
    margin: 0;
    text-wrap: balance;
  }
  .kingdom h2 em { font-style: italic; color: var(--gold-bright); }

  /* ─── REVEAL ─────────────────────────── */
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity 900ms var(--ease), transform 900ms var(--ease); }
  .reveal.in { opacity: 1; transform: none; }

  /* ─── RESPONSIVE ─────────────────────────── */
  @media (max-width: 980px) {
    .founder-inner { grid-template-columns: 1fr; gap: 48px; max-width: 560px; }
    .founder-portrait { max-width: 420px; margin: 0 auto; }
    .nav-links { display: none; }
    .hero-meta { display: none; }
    .definition-inner { grid-template-columns: 1fr; gap: 24px; }
    .problem-grid { grid-template-columns: 1fr; }
    .problem-card { border-right: none !important; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .why-item:nth-child(2) { border-right: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .problem, .services, .why, .cta-final { padding: 100px 0; }
    .definition blockquote::before { display: none; }
  }
  @media (max-width: 640px) {
    .container, .container-narrow, .nav-inner, .hero-grid, .cta-inner, .footer-inner { padding-left: 22px; padding-right: 22px; }
    .why-grid { grid-template-columns: 1fr; }
    .why-item { border-right: none; border-bottom: 1px solid var(--linen); }
    .why-item:last-child { border-bottom: none; }
    .logo-text { display: none; }
    .nav-cta-wrap .btn-gold { display: none; }
    .problem-card { padding: 36px 28px; }
    .service-card { padding: 32px 28px; }
  }


/* ─────────── INNER PAGE STYLES ─────────── */

/* Page hero (lighter than homepage hero) */
.page-hero {
  position: relative;
  background: var(--primary);
  color: var(--linen);
  padding: 200px 0 130px;
  overflow: hidden;
  min-height: 60vh;
  display: flex; align-items: center;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 50%, rgba(179, 163, 130, 0.10), transparent 60%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}
.page-hero .eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  text-wrap: balance;
  color: var(--linen);
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold-bright);
}
.page-hero .lede {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.55;
  color: rgba(245, 240, 230, 0.78);
  max-width: 720px;
  text-wrap: pretty;
  margin: 0 0 40px;
}
.page-hero .definition {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.45;
  color: rgba(245, 240, 230, 0.85);
  max-width: 760px;
  border-left: 1px solid var(--gold);
  border-bottom: none;
  background: transparent;
  padding: 0 0 0 28px;
  margin: 0 0 40px;
  text-wrap: pretty;
}
.page-hero .definition::before { display: none; }
.page-hero .ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.breadcrumb {
  display: flex; gap: 12px; align-items: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.5);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(245, 240, 230, 0.7); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(245, 240, 230, 0.3); }

/* Active nav link */
.nav-link.is-active { color: var(--primary); }
.nav-link.is-active::after {
  content: '';
  position: absolute; left: 0; right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
}
.nav-link { position: relative; }

/* Page section base */
.page-section {
  padding: 120px 0;
  background: var(--bg-warm);
}
.page-section.alt { background: var(--linen); }
.page-section.dark { background: var(--primary); color: var(--linen); }
.page-section .container {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
}
.page-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin: 0 0 32px;
  text-wrap: balance;
}
.page-section h2 em { font-style: italic; color: var(--gold-deep); }
.page-section.dark h2 { color: var(--linen); }
.page-section.dark h2 em { color: var(--gold-bright); }
.page-section .section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 24px;
  font-weight: 500;
}
.page-section.dark .section-eyebrow { color: var(--gold); }

/* Prose */
.prose {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  text-wrap: pretty;
}
.prose p { margin: 0 0 22px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--primary); font-weight: 600; }
.prose em { font-style: italic; }
.prose a { color: var(--gold-deep); border-bottom: 1px solid rgba(179, 163, 130, 0.4); }
.prose a:hover { color: var(--primary); border-color: var(--primary); }
.page-section.dark .prose { color: rgba(245, 240, 230, 0.8); }
.page-section.dark .prose strong { color: var(--linen); }

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
}

/* Bullet list — editorial */
.bullets {
  list-style: none; padding: 0; margin: 0;
}
.bullets li {
  position: relative;
  padding: 18px 0 18px 36px;
  border-top: 1px solid rgba(0, 51, 51, 0.08);
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--charcoal);
}
.bullets li:last-child { border-bottom: 1px solid rgba(0, 51, 51, 0.08); }
.bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 28px;
  width: 22px; height: 1px;
  background: var(--gold);
}
.bullets li strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 21px;
  color: var(--primary);
  margin-bottom: 6px;
  font-style: italic;
}
.page-section.dark .bullets li {
  color: rgba(245, 240, 230, 0.78);
  border-color: rgba(255, 255, 255, 0.08);
}
.page-section.dark .bullets li:last-child { border-color: rgba(255, 255, 255, 0.08); }
.page-section.dark .bullets li strong { color: var(--linen); }

/* Pull quote / call out (italic blockquote) */
.pull {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.4;
  color: var(--primary);
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 28px;
  margin: 32px 0;
  max-width: 760px;
  text-wrap: pretty;
}
.page-section.dark .pull { color: var(--linen); }

/* Quote stack — for sounds-like-this lists */
.quote-stack {
  display: flex; flex-direction: column; gap: 18px;
  margin: 40px 0;
  max-width: 760px;
}
.quote-stack q {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.45;
  color: var(--primary);
  padding: 18px 0 18px 24px;
  border-left: 2px solid var(--gold);
  quotes: "\201C" "\201D";
  text-wrap: pretty;
}
.page-section.dark .quote-stack q { color: var(--linen); }
.quote-stack q::before { content: open-quote; color: var(--gold); }
.quote-stack q::after  { content: close-quote; color: var(--gold); }

/* Spec table — for credentials, what's included, etc. */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
  margin: 32px 0;
}
.spec-table th, .spec-table td {
  padding: 18px 0;
  text-align: left;
  border-bottom: 1px solid rgba(0, 51, 51, 0.1);
  vertical-align: top;
}
.spec-table th {
  font-weight: 500;
  color: var(--primary);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  width: 38%;
  padding-right: 24px;
}
.spec-table td {
  color: var(--charcoal);
  line-height: 1.55;
}
.page-section.dark .spec-table th { color: var(--linen); }
.page-section.dark .spec-table td { color: rgba(245, 240, 230, 0.8); }
.page-section.dark .spec-table th,
.page-section.dark .spec-table td { border-color: rgba(255, 255, 255, 0.1); }

/* Tile grid (testimonials, sub-services, etc.) */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(0, 51, 51, 0.1);
}
.tile {
  padding: 44px 36px 48px;
  border-bottom: 1px solid rgba(0, 51, 51, 0.1);
  border-right: 1px solid rgba(0, 51, 51, 0.1);
  background: var(--bg-warm);
}
.tile:nth-child(3n) { border-right: none; }
.tile-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-deep);
  font-size: 15px;
  margin-bottom: 12px;
  display: block;
}
.tile h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--primary);
  margin: 0 0 14px;
}
.tile p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--charcoal);
  margin: 0 0 18px;
}
.tile a.tile-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: gap 350ms var(--ease);
}
.tile a.tile-link:hover { gap: 14px; color: var(--gold-deep); }
.tile a.tile-link svg { width: 12px; height: 12px; }

/* FAQ accordion */
.faq {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid rgba(0, 51, 51, 0.12);
}
.faq details {
  border-bottom: 1px solid rgba(0, 51, 51, 0.12);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 48px 28px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 400;
  color: var(--primary);
  position: relative;
  line-height: 1.3;
  transition: color 200ms;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: var(--gold-deep);
  font-weight: 200;
  transition: transform 300ms var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--gold-deep); }
.faq .faq-body {
  padding: 0 48px 32px 0;
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--charcoal);
  max-width: 720px;
  text-wrap: pretty;
}

/* CTA band (reusable) */
.cta-band {
  background: var(--primary-deeper);
  color: var(--linen);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(179, 163, 130, 0.12), transparent 60%);
}
.cta-band-inner {
  position: relative; z-index: 2;
  max-width: 760px; margin: 0 auto; padding: 0 32px;
}
.cta-band .ornament {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
  position: relative;
}
.cta-band .ornament::before,
.cta-band .ornament::after {
  content: '';
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}
.cta-band .ornament::before { left: -16px; }
.cta-band .ornament::after { right: -16px; }
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.08;
  margin: 0 0 24px;
  text-wrap: balance;
  color: var(--linen);
}
.cta-band h2 em { font-style: italic; color: var(--gold-bright); }
.cta-band p {
  font-size: 17px;
  color: rgba(245, 240, 230, 0.75);
  margin: 0 0 36px;
  text-wrap: pretty;
}
.cta-band .ctas {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap;
}

/* Article card grid (for blog) */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0, 51, 51, 0.1);
}
@media (max-width: 880px) { .article-grid { grid-template-columns: 1fr; } }
.article-card {
  padding: 36px 32px 40px;
  border-bottom: 1px solid rgba(0, 51, 51, 0.1);
  border-right: 1px solid rgba(0, 51, 51, 0.1);
  background: var(--bg-warm);
  transition: background 350ms var(--ease);
  display: block;
}
.article-card:nth-child(3n) { border-right: none; }
@media (max-width: 880px) { .article-card { border-right: none; } }
.article-card:hover { background: var(--linen); }
.article-cat {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.article-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.25;
  color: var(--primary);
  margin: 0 0 14px;
  text-wrap: balance;
}
.article-meta {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(0, 51, 51, 0.5);
  display: flex; gap: 14px;
}

/* Featured article card */
.article-featured {
  padding: 60px 56px 64px;
  background: var(--primary);
  color: var(--linen);
  border: none;
}
.article-featured .article-cat { color: var(--gold); }
.article-featured h3 {
  color: var(--linen);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  max-width: 680px;
}
.article-featured h3 em { font-style: italic; color: var(--gold-bright); }
.article-featured .article-meta { color: rgba(245, 240, 230, 0.55); }
.article-featured p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(245, 240, 230, 0.78);
  max-width: 620px;
  margin: 18px 0 24px;
}

/* Category chips (filter) */
.cat-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 32px 0 56px;
}
.cat-chip {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 9px 16px;
  border: 1px solid rgba(0, 51, 51, 0.18);
  border-radius: 999px;
  color: var(--charcoal);
  background: transparent;
  cursor: pointer;
  transition: all 200ms;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}
.cat-chip:hover {
  border-color: var(--gold);
  color: var(--primary);
}
.cat-chip.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--linen);
}

/* Newsletter band */
.newsletter {
  background: var(--linen);
  padding: 100px 0;
  border-top: 1px solid rgba(0, 51, 51, 0.08);
  border-bottom: 1px solid rgba(0, 51, 51, 0.08);
}
.newsletter-inner {
  max-width: 760px; margin: 0 auto; padding: 0 32px;
  text-align: center;
}
.newsletter h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--primary);
  line-height: 1.2;
  margin: 0 0 12px;
  text-wrap: balance;
}
.newsletter h3 em { font-style: italic; color: var(--gold-deep); }
.newsletter p {
  font-size: 16px;
  color: var(--charcoal);
  margin: 0 0 32px;
}
.newsletter form {
  display: flex; gap: 8px;
  max-width: 480px; margin: 0 auto;
}
.newsletter input[type="email"] {
  flex: 1;
  padding: 16px 18px;
  border: 1px solid rgba(0, 51, 51, 0.2);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--primary);
  outline: none;
  border-radius: 0;
  transition: border-color 200ms;
}
.newsletter input[type="email"]:focus { border-color: var(--gold); }

/* Form (contact) */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 720px;
}
.contact-form .full { grid-column: 1 / -1; }
.contact-form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
  font-weight: 500;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid rgba(0, 51, 51, 0.2);
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: var(--primary);
  outline: none;
  border-radius: 0;
  transition: border-color 200ms;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-bottom-color: var(--gold);
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}
@media (max-width: 720px) {
  .contact-form { grid-template-columns: 1fr; }
}

/* Contact methods */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(0, 51, 51, 0.1);
  border-bottom: 1px solid rgba(0, 51, 51, 0.1);
  margin: 60px 0;
}
@media (max-width: 720px) { .contact-methods { grid-template-columns: 1fr; } }
.contact-method {
  padding: 36px 32px;
  border-right: 1px solid rgba(0, 51, 51, 0.1);
}
.contact-method:last-child { border-right: none; }
@media (max-width: 720px) {
  .contact-method { border-right: none; border-bottom: 1px solid rgba(0, 51, 51, 0.1); }
  .contact-method:last-child { border-bottom: none; }
}
.contact-method .label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.contact-method .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--primary);
  font-weight: 400;
}
.contact-method a.value:hover { color: var(--gold-deep); }

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 720px) { .team-grid { grid-template-columns: 1fr; } }
.team-member {
  padding: 32px 0;
  border-top: 1px solid rgba(0, 51, 51, 0.12);
}
.team-member h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--primary);
  margin: 0 0 6px;
}
.team-member .role {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.team-member p {
  font-size: 14.5px;
  color: var(--charcoal);
  line-height: 1.55;
  margin: 0;
}

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-strip .stat {
  padding: 40px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-strip .stat:last-child { border-right: none; }
.stat-strip .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 300;
  color: var(--gold-bright);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-strip .lab {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.6);
}
@media (max-width: 720px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip .stat:nth-child(2n) { border-right: none; }
  .stat-strip .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
}

