    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy: #0d1b2a;
      --charcoal: #1c2b3a;
      --gold: #b8972a;
      --gold-light: #d4ae4a;
      --gold-pale: #f5edd6;
      --slate: #4a6080;
      --mist: #e8edf2;
      --white: #ffffff;
      --text: #1c2b3a;
      --muted: #6b7f94;
      --border: #dde4ec;
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }

    /* ── COMPASS ANIMATION ── */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
    @keyframes pulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }
    @keyframes glowPulse {
      0%, 100% { box-shadow: 0 0 30px rgba(184,151,42,0.35); }
      50%      { box-shadow: 0 0 55px rgba(184,151,42,0.6); }
    }
    @keyframes pointGlow {
      0%, 10%, 100% { filter: none; }
      3%            { filter: drop-shadow(0 0 9px rgba(184,151,42,0.85)); }
    }
    .fade-up { animation: fadeUp 0.7s ease forwards; opacity: 0; }
    .delay-1 { animation-delay: 0.15s; }
    .delay-2 { animation-delay: 0.3s; }
    .delay-3 { animation-delay: 0.45s; }
    .delay-4 { animation-delay: 0.6s; }

    /* ── SCROLL REVEAL (added on scroll by JS; skipped under reduced-motion) ── */
    .reveal { opacity: 0; transform: translateY(26px);
      transition: opacity 0.7s cubic-bezier(.22,.61,.36,1), transform 0.7s cubic-bezier(.22,.61,.36,1) !important; }
    .reveal.reveal-in { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 3rem; height: 70px;
      background: rgba(13, 27, 42, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(184, 151, 42, 0.2);
      transition: height 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }
    /* condense once scrolled past the hero */
    nav.scrolled {
      height: 58px;
      background: rgba(13, 27, 42, 0.98);
      box-shadow: 0 6px 26px rgba(0, 0, 0, 0.28);
      border-bottom-color: rgba(184, 151, 42, 0.4);
    }
    nav .nav-logo { transition: font-size 0.3s ease; }
    nav .nav-logo svg { transition: transform 0.3s ease; }
    nav.scrolled .nav-logo { font-size: 1.25rem; }
    nav.scrolled .nav-logo svg { transform: scale(0.88); }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 700;
      color: var(--white); letter-spacing: 0.05em;
    }
    .nav-logo span { color: var(--gold); }
    .nav-links { display: flex; gap: 0.5rem; align-items: center; }
    .nav-links a {
      color: rgba(255,255,255,0.7); text-decoration: none;
      font-size: 0.82rem; font-weight: 500; letter-spacing: 0.06em;
      text-transform: uppercase; padding: 0.4rem 0.9rem; border-radius: 3px;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold-light); }
    .nav-cta {
      background: var(--gold) !important; color: var(--navy) !important;
      font-weight: 600 !important; border-radius: 3px !important;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--gold-light) !important; }
    /* mobile menu toggle (hidden on desktop) */
    .nav-toggle { display: none; }
    .nav-burger { display: none; }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      background: var(--navy);
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden; padding: 8rem 3rem 5rem;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(184,151,42,0.07) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(74,96,128,0.15) 0%, transparent 50%);
    }
    .hero-grid {
      position: absolute; inset: 0; opacity: 0.04;
      background-image: linear-gradient(rgba(255,255,255,0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.5) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-inner {
      max-width: 1100px; width: 100%; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 420px; gap: 5rem; align-items: center;
      position: relative; z-index: 2;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 0.6rem;
      font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 1.5rem;
    }
    .hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 5vw, 4.2rem);
      color: var(--white); font-weight: 600; line-height: 1.15;
      margin-bottom: 1.5rem;
    }
    .hero h1 em { color: var(--gold); font-style: normal; }
    .hero-sub {
      color: rgba(255,255,255,0.65); font-size: 1.05rem;
      max-width: 480px; margin-bottom: 2.5rem; font-weight: 300; line-height: 1.8;
    }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn {
      padding: 0.85rem 2rem; border-radius: 3px;
      font-size: 0.88rem; font-weight: 600; letter-spacing: 0.06em;
      text-transform: uppercase; text-decoration: none;
      cursor: pointer; transition: all 0.2s; display: inline-block;
    }
    .btn-gold { background: var(--gold); color: var(--navy); border: none; }
    .btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,151,42,0.3); }
    .btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

    /* ── COMPASS VISUAL ── */
    .compass-wrap {
      display: flex; align-items: center; justify-content: center;
      position: relative;
    }
    .compass {
      width: 360px; height: 360px; position: relative;
    }
    .compass-ring {
      position: absolute; inset: 0; border-radius: 50%; border: none;
      background: conic-gradient(from 0deg, rgba(184,151,42,0.45), rgba(184,151,42,0.05) 120deg, rgba(184,151,42,0.05) 240deg, rgba(184,151,42,0.45) 360deg);
      -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1.5px));
              mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1.5px));
      animation: rotateSlow 50s linear infinite;
    }
    .compass-ring-2 {
      position: absolute; inset: 30px; border-radius: 50%; border: none;
      background: conic-gradient(from 90deg, rgba(184,151,42,0.3), rgba(184,151,42,0.03) 140deg, rgba(184,151,42,0.03) 300deg, rgba(184,151,42,0.3) 360deg);
      -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1.5px));
              mask: radial-gradient(farthest-side, transparent calc(100% - 1.5px), #000 calc(100% - 1.5px));
      animation: rotateSlow 38s linear infinite reverse;
    }
    .compass-ring-3 {
      position: absolute; inset: 60px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.06);
    }
    /* radar sweep — the signature "scanning" beam */
    .compass-sweep {
      position: absolute; inset: 0; border-radius: 50%;
      background: conic-gradient(from -20deg, rgba(184,151,42,0.28), rgba(184,151,42,0) 60deg);
      animation: rotateSlow 6s linear infinite;
      pointer-events: none;
    }
    .compass-center {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 80px; height: 80px; border-radius: 50%;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 0 40px rgba(184,151,42,0.4);
      animation: glowPulse 4s ease-in-out infinite;
    }
    .compass-center-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; font-weight: 700; color: var(--navy);
      letter-spacing: 0.05em;
    }
    .compass-point {
      position: absolute; display: flex; flex-direction: column;
      align-items: center; gap: 0.4rem;
      animation: pointGlow 6s ease-in-out infinite;
    }
    .compass-point.north { top: 10px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
    .compass-point.east { right: 10px; top: 50%; transform: translateY(-50%); align-items: flex-start; animation-delay: 1.5s; }
    .compass-point.south { bottom: 10px; left: 50%; transform: translateX(-50%); animation-delay: 3s; }
    .compass-point.west { left: 10px; top: 50%; transform: translateY(-50%); align-items: flex-end; animation-delay: 4.5s; }
    .compass-point-label {
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--gold);
    }
    .compass-point-value {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.95rem; color: rgba(255,255,255,0.85); font-weight: 500;
      text-align: center;
    }
    .compass-line-h, .compass-line-v {
      position: absolute; background: rgba(184,151,42,0.2);
    }
    .compass-line-h { height: 1px; left: 0; right: 0; top: 50%; }
    .compass-line-v { width: 1px; top: 0; bottom: 0; left: 50%; }
    .compass-dot {
      position: absolute; width: 6px; height: 6px; border-radius: 50%;
      background: var(--gold); top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }
    /* accessibility — honor reduced-motion: calm, static compass */
    @media (prefers-reduced-motion: reduce) {
      .compass-ring, .compass-ring-2, .compass-center, .compass-point {
        animation: none !important;
      }
      .compass-sweep { display: none; }
    }

    /* ── SECTIONS ── */
    section { padding: 6rem 3rem; }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-eyebrow {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--gold);
      display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.75rem;
    }
    .section-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      color: var(--navy); font-weight: 600; line-height: 1.2;
      margin-bottom: 1rem;
    }
    .section-sub { color: var(--muted); font-size: 1rem; max-width: 560px; line-height: 1.8; margin-bottom: 3rem; }

    /* ── PROBLEM ── */
    #problem { background: var(--mist); }
    .problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .problem-card {
      background: var(--white); border-radius: 4px;
      border: 1px solid var(--border); padding: 2rem;
      border-top: 3px solid var(--gold);
    }
    .problem-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--navy); margin-bottom: 0.6rem; font-weight: 600; }
    .problem-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

    /* ── COMPASS METHOD ── */
    #compass { background: var(--navy); }
    #compass .section-title { color: var(--white); }
    #compass .section-sub { color: rgba(255,255,255,0.55); }
    .compass-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .compass-card {
      background: rgba(255,255,255,0.04); border-radius: 4px;
      border: 1px solid rgba(184,151,42,0.2); padding: 2rem;
      position: relative; overflow: hidden;
      transition: background 0.2s, border-color 0.2s;
    }
    .compass-card:hover { background: rgba(184,151,42,0.06); border-color: rgba(184,151,42,0.4); }
    .compass-card-dir {
      font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
    }
    .compass-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; color: var(--white); font-weight: 600; margin-bottom: 0.6rem;
    }
    .compass-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.75; }
    .compass-card-num {
      position: absolute; top: 1.5rem; right: 1.75rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem; font-weight: 700;
      color: rgba(184,151,42,0.1); line-height: 1;
    }

    /* ── SERVICES ── */
    #services { background: var(--white); }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .service-card {
      border: 1px solid var(--border); border-radius: 4px; padding: 2rem;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .service-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-2px); }
    .service-icon { font-size: 1.75rem; margin-bottom: 1rem; }
    .service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 0.5rem; font-weight: 600; }
    .service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
    .service-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }

    /* ── PRICING ── */
    #pricing { background: var(--mist); }
    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
    .pricing-card {
      background: var(--white); border-radius: 4px;
      border: 1px solid var(--border); padding: 2.5rem 2rem;
      position: relative;
    }
    .pricing-card.featured {
      background: var(--navy);
      border-color: var(--gold);
      box-shadow: 0 20px 60px rgba(13,27,42,0.2);
      transform: translateY(-8px);
    }
    .pricing-badge {
      position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      background: var(--gold); color: var(--navy);
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; padding: 0.3rem 1rem; border-radius: 20px;
      white-space: nowrap;
    }
    .pricing-tier { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
    .pricing-card.featured .pricing-tier { color: var(--gold-light); }
    .pricing-name { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--navy); font-weight: 600; margin-bottom: 0.5rem; }
    .pricing-card.featured .pricing-name { color: var(--white); }
    .pricing-price { font-size: 2.2rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 0.25rem; }
    .pricing-card.featured .pricing-price { color: var(--white); }
    .pricing-period { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; }
    .pricing-card.featured .pricing-period { color: rgba(255,255,255,0.5); }
    .pricing-divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }
    .pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
    .pricing-features { list-style: none; margin-bottom: 2rem; }
    .pricing-features li { font-size: 0.88rem; color: var(--text); padding: 0.4rem 0; display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.5; }
    .pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.8); }
    .pricing-features li::before { content: '→'; color: var(--gold); font-size: 0.8rem; flex-shrink: 0; margin-top: 0.1rem; }
    .btn-pricing-primary { width: 100%; text-align: center; background: var(--gold); color: var(--navy); border: none; padding: 0.85rem; border-radius: 3px; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; text-decoration: none; display: block; }
    .btn-pricing-primary:hover { background: var(--gold-light); }
    .btn-pricing-outline { width: 100%; text-align: center; background: transparent; color: var(--navy); border: 1.5px solid var(--border); padding: 0.85rem; border-radius: 3px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; transition: all 0.2s; text-decoration: none; display: block; }
    .btn-pricing-outline:hover { border-color: var(--gold); color: var(--gold); }

    /* ── ABOUT ── */
    #about { background: var(--white); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
    .about-text p { color: var(--muted); font-size: 0.97rem; line-height: 1.85; margin-bottom: 1rem; }
    .about-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
    .pillar {
      padding: 1.25rem; border: 1px solid var(--border); border-radius: 4px;
      border-left: 3px solid var(--gold);
    }
    .pillar h4 { font-size: 0.82rem; font-weight: 700; color: var(--navy); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.25rem; }
    .pillar p { font-size: 0.82rem; color: var(--muted); }
    .about-visual {
      background: var(--navy); border-radius: 4px; padding: 3rem;
      display: flex; flex-direction: column; gap: 1.25rem;
    }
    .mission-block { border-left: 2px solid var(--gold); padding-left: 1.25rem; }
    .mission-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
    .mission-text { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--white); line-height: 1.65; font-weight: 500; }

    /* ── CTA ── */
    #cta { background: var(--navy); text-align: center; }
    #cta .section-title { color: var(--white); }
    #cta .section-sub { color: rgba(255,255,255,0.55); margin: 0 auto 2.5rem; }
    .cta-email { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold); margin-top: 1.5rem; }

    /* ── CTA FORM ── */
    .cta-form {
      max-width: 520px; margin: 0 auto; text-align: left;
      display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
    }
    .cta-form .field-full { grid-column: 1 / -1; }
    .cta-form label {
      display: block; font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--gold-light); margin-bottom: 0.4rem;
    }
    .cta-form input, .cta-form textarea {
      width: 100%; padding: 0.8rem 0.95rem;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 3px; color: var(--white);
      font-family: 'DM Sans', sans-serif; font-size: 0.92rem;
      transition: border-color 0.2s, background 0.2s;
    }
    .cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(255,255,255,0.35); }
    .cta-form input:focus, .cta-form textarea:focus {
      outline: none; border-color: var(--gold);
      background: rgba(255,255,255,0.08);
    }
    .cta-form textarea { resize: vertical; min-height: 110px; }
    .cta-form .btn-submit {
      grid-column: 1 / -1; width: 100%;
      padding: 0.95rem; background: var(--gold); color: var(--navy);
      border: none; border-radius: 3px; cursor: pointer;
      font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
      font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .cta-form .btn-submit:hover {
      background: var(--gold-light); transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(184,151,42,0.3);
    }
    .cta-hp { position: absolute; left: -9999px; }
    @media (max-width: 600px) { .cta-form { grid-template-columns: 1fr; } }

    /* ── FOOTER ── */
    footer {
      background: #080f17; color: rgba(255,255,255,0.4);
      padding: 2rem 3rem; text-align: center; font-size: 0.82rem;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: rgba(255,255,255,0.7); }
    .footer-logo span { color: var(--gold); }
    footer a { color: var(--gold); text-decoration: none; }

    @media (max-width: 900px) {
      nav { padding: 0 1.25rem; }
      /* hamburger */
      .nav-burger {
        display: flex; flex-direction: column; justify-content: center;
        gap: 5px; width: 44px; height: 44px; cursor: pointer; z-index: 110;
      }
      .nav-burger span {
        display: block; width: 24px; height: 2px; border-radius: 2px;
        background: var(--white); transition: transform 0.25s ease, opacity 0.2s ease;
      }
      /* slide-down menu panel */
      .nav-links {
        position: fixed; top: 70px; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0.15rem;
        padding: 0.5rem 1.25rem 1.25rem;
        background: rgba(13, 27, 42, 0.98); backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(184, 151, 42, 0.2);
        transform: translateY(-14px); opacity: 0; pointer-events: none;
        transition: transform 0.25s ease, opacity 0.25s ease;
      }
      .nav-toggle:checked ~ .nav-links { transform: translateY(0); opacity: 1; pointer-events: auto; }
      .nav-links a { padding: 0.85rem 0.5rem; font-size: 0.95rem; border-radius: 4px; }
      .nav-links a:not(.nav-cta) { border-bottom: 1px solid rgba(255,255,255,0.07); }
      .nav-links .nav-cta { text-align: center; margin-top: 0.6rem; padding: 0.9rem !important; }
      .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
      .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
      /* layout */
      section { padding: 4rem 1.5rem; }
      .hero { padding: 6.5rem 1.5rem 4rem; }
      .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
      .compass-wrap { margin-top: 0.5rem; }
      .compass { width: 280px; height: 280px; }
      .problem-grid, .services-grid, .pricing-grid, .compass-grid { grid-template-columns: 1fr; }
      .about-grid { grid-template-columns: 1fr; }
      .pricing-card.featured { transform: none; }
      footer { flex-direction: column; text-align: center; }
    }

    /* Tablet — keep cards two-up instead of dropping to the phone single column */
    @media (min-width: 601px) and (max-width: 900px) {
      .problem-grid, .services-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
    }

    /* Phones — tighten padding and drop the compass where it can't breathe */
    @media (max-width: 600px) {
      .hero { padding: 6rem 1.1rem 3.5rem; }
      section { padding: 3.25rem 1.1rem; }
      .compass-wrap { display: none; }
    }

    /* ── INNER PAGE HEAD (multi-page structure) ── */
    .page-head {
      background: var(--navy); padding: 11rem 3rem 5rem;
      position: relative; overflow: hidden;
    }
    .page-head::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 60% at 75% 40%, rgba(184,151,42,0.08) 0%, transparent 60%);
    }
    .page-head .container { position: relative; z-index: 2; }
    .page-head .section-eyebrow { color: var(--gold); }
    .page-head h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.3rem, 4.2vw, 3.4rem);
      color: var(--white); font-weight: 600; line-height: 1.15; margin-bottom: 1rem;
    }
    .page-head h1 em { color: var(--gold); font-style: normal; }
    .page-head p {
      color: rgba(255,255,255,0.6); font-size: 1.02rem;
      max-width: 620px; font-weight: 300; line-height: 1.8;
    }

    /* ── COMPACT CTA BAND (inner pages) ── */
    .cta-band { background: var(--navy); text-align: center; padding: 4.5rem 3rem; }
    .cta-band h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.7rem, 3vw, 2.3rem);
      color: var(--white); font-weight: 600; margin-bottom: 0.85rem;
    }
    .cta-band p {
      color: rgba(255,255,255,0.55); font-size: 0.97rem;
      max-width: 520px; margin: 0 auto 2rem; line-height: 1.8; font-weight: 300;
    }
    .cta-band .cta-email { margin-top: 1.5rem; }

    /* ── HOME QUICK LINKS (teaser home) ── */
    .quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
    .quick-card {
      background: var(--white); border: 1px solid var(--border); border-radius: 4px;
      border-top: 3px solid var(--gold); padding: 2rem; text-decoration: none;
      display: flex; flex-direction: column;
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .quick-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.09); transform: translateY(-3px); }
    .quick-card h3 {
      font-family: 'Cormorant Garamond', serif; font-size: 1.35rem;
      color: var(--navy); margin-bottom: 0.6rem; font-weight: 600;
    }
    .quick-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; }
    .quick-card .quick-go {
      margin-top: auto; font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
    }

    /* current page marker in the nav */
    .nav-links a.is-current { color: var(--gold-light); }

    @media (max-width: 900px) {
      .page-head { padding: 8.5rem 1.5rem 3.5rem; }
      .cta-band { padding: 3.5rem 1.5rem; }
      .quick-grid { grid-template-columns: 1fr; }
    }
    @media (min-width: 601px) and (max-width: 900px) {
      .quick-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .page-head { padding: 8rem 1.1rem 3rem; }
      .cta-band { padding: 3.25rem 1.1rem; }
    }
