
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy:        #0e1a2b;
      --navy-mid:    #122035;
      --navy-light:  #162840;
      --navy-card:   #162438;
      --gold:        #b8922a;
      --gold-light:  #c9a84c;
      --cream:       #f5f0e6;
      --cream-bg:    #f0ebe0;
      --white:       #ffffff;
      --text-dark:   #1a2d40;
      --muted-dark:  rgba(26,45,64,0.6);
      --muted-light: rgba(245,240,230,0.55);
      --border-navy: rgba(255,255,255,0.08);
      --border-cream:rgba(26,45,64,0.12);
      --radius:      12px;
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Jost', sans-serif; background: var(--navy); color: var(--cream); overflow-x: hidden; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 500;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.2rem 5%;
      background: rgba(14,26,43,0.96);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border-navy);
    }
    .nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; color: var(--cream); text-decoration: none; }
    .nav-logo em { color: var(--gold-light); font-style: italic; }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
    .nav-links a { color: rgba(245,240,230,0.65); text-decoration: none; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s; cursor: pointer; }
    .nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
    .nav-cta { border: 1px solid rgba(245,240,230,0.4) !important; color: var(--cream) !important; padding: 0.5rem 1.4rem !important; border-radius: 6px !important; transition: background 0.3s !important; }
    .nav-cta:hover { background: rgba(245,240,230,0.1) !important; }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
    .hamburger span { display: block; width: 22px; height: 1.5px; background: var(--cream); }
    .mob-menu { display: none; position: fixed; top: 65px; left: 0; right: 0; background: var(--navy-mid); padding: 1.5rem 5%; z-index: 499; border-bottom: 1px solid var(--border-navy); }
    .mob-menu.open { display: block; }
    .mob-menu a { display: block; color: rgba(245,240,230,0.7); text-decoration: none; padding: 0.85rem 0; border-bottom: 1px solid var(--border-navy); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; }
    .mob-menu a:last-child { color: var(--gold-light); border-bottom: none; }

    /* ── PAGE SYSTEM ── */
    .pg { display: none; }
    .pg.active { display: block; }

    /* ── SHARED ── */
    section { padding: 100px 5%; }
    h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 5.5vw, 5.2rem); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.7s 0.25s forwards; }
    h1 em { color: var(--gold-light); font-style: italic; display: block; }
    h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 500; line-height: 1.1; letter-spacing: -0.01em; margin-bottom: 1rem; }
    .eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
    .eyebrow-line { width: 36px; height: 1px; background: var(--gold-light); flex-shrink: 0; }
    .eyebrow span { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); }
    .reveal { opacity: 1; transform: none; transition: opacity 0.65s ease, transform 0.65s ease; }

    /* BUTTONS */
    .btn-gold { background: var(--gold); color: var(--cream); padding: 0.85rem 2rem; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border-radius: 8px; display: inline-block; cursor: pointer; transition: background 0.3s, transform 0.2s; border: none; font-family: 'Jost', sans-serif; }
    .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
    .btn-outline { border: 1px solid rgba(245,240,230,0.35); color: var(--cream); padding: 0.85rem 2rem; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; border-radius: 8px; display: inline-block; cursor: pointer; transition: border-color 0.3s, transform 0.2s; }
    .btn-outline:hover { border-color: var(--cream); transform: translateY(-2px); }
    .btn-navy { background: var(--navy); color: var(--cream); padding: 1rem 2.5rem; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; border-radius: 8px; display: inline-block; cursor: pointer; white-space: nowrap; transition: background 0.3s, transform 0.2s; border: none; font-family: 'Jost', sans-serif; }
    .btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
    .btn-gold-outline { border: 1px solid var(--gold-light); color: var(--gold-light); padding: 0.9rem 2.5rem; font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; border-radius: 8px; display: inline-block; cursor: pointer; transition: background 0.3s, transform 0.2s; }
    .btn-gold-outline:hover { background: rgba(201,168,76,0.1); transform: translateY(-2px); }

    /* ── HERO ── */
    .hero-wrap { min-height: 100vh; display: flex; align-items: center; padding: 120px 5% 80px; background: var(--navy); }
    .hero-inner { display: grid; grid-template-columns: 1fr 380px; gap: 4rem; align-items: center; width: 100%; max-width: 1200px; }
    .hero-eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; opacity: 0; animation: fadeUp 0.7s 0.1s forwards; }
    .hero-eyebrow-line { width: 36px; height: 1px; background: var(--gold-light); }
    .hero-eyebrow span { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); }
    .hero-sub { font-size: 0.95rem; color: var(--muted-light); line-height: 1.85; max-width: 420px; font-weight: 300; margin-bottom: 2.5rem; opacity: 0; animation: fadeUp 0.7s 0.4s forwards; }
    .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.7s 0.55s forwards; }
    .hero-stats { display: flex; flex-direction: column; gap: 0.6rem; opacity: 0; animation: fadeRight 0.8s 0.5s forwards; }
    .hstat { background: var(--navy-card); border: 1px solid var(--border-navy); border-left: 3px solid var(--gold-light); padding: 1.5rem 2rem; border-radius: var(--radius); transition: background 0.3s, transform 0.25s, box-shadow 0.25s, border-top-color 0.25s; }
    .hstat:hover { background: var(--navy-light); transform: translateX(-4px) translateY(-2px); box-shadow: 4px 4px 20px rgba(201,168,76,0.12); border-top: 2px solid var(--gold-light); }
    .hstat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; font-weight: 600; color: var(--gold-light); line-height: 1; display: block; margin-bottom: 0.3rem; }
    .hstat-label { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted-light); }

    /* ── TICKER ── */
    .ticker { background: var(--gold); padding: 0.9rem 5%; display: flex; gap: 3rem; align-items: center; justify-content: center; flex-wrap: wrap; }
    .ticker-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--navy); }
    .ticker-item::before { content: '✓'; }

    /* ── WHY ── */
    .why-section { background: var(--cream-bg); }
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
    .why-left h2 { color: var(--text-dark); }
    .why-left p { font-size: 0.93rem; color: var(--muted-dark); line-height: 1.9; font-weight: 300; margin-bottom: 1rem; }
    .why-cards { display: flex; flex-direction: column; gap: 0.8rem; padding-top: 4.2rem; }
    .why-card { background: var(--white); border: 1px solid var(--border-cream); border-left: 3px solid var(--gold-light); padding: 1.3rem 1.5rem; display: flex; gap: 1rem; align-items: flex-start; border-radius: var(--radius); transition: background 0.3s, transform 0.25s, box-shadow 0.25s, border-top 0.25s; }
    .why-card:hover { background: #faf6ed; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(26,45,64,0.1); border-top: 2px solid var(--gold-light); }
    .why-card-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; display: flex; align-items: center; }
    .why-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.3rem; }
    .why-card p { font-size: 0.83rem; color: var(--muted-dark); line-height: 1.7; font-weight: 300; }

    /* ── SERVICES HOME ── */
    .svcs-home-section { background: var(--navy); }
    .svcs-home-section h2 { color: var(--cream); }
    .svcs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
    .svc-card { background: var(--navy-card); border: 1px solid var(--border-navy); padding: 2rem 1.8rem; border-radius: var(--radius); transition: background 0.3s, transform 0.25s, box-shadow 0.25s, border-top 0.25s, border-left 0.25s; }
    .svc-card:hover { background: var(--navy-light); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); border-top: 2px solid var(--gold-light); border-left: 2px solid var(--gold-light); }
    .svc-icon { font-size: 1.5rem; margin-bottom: 1rem; display: flex; align-items: center; }
    .svc-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--cream); margin-bottom: 0.5rem; }
    .svc-card p { font-size: 0.83rem; color: var(--muted-light); line-height: 1.75; font-weight: 300; }
    .svc-more { display: flex; align-items: center; justify-content: center; background: rgba(201,168,76,0.08); border: 1px dashed rgba(201,168,76,0.35); padding: 2rem; border-radius: var(--radius); transition: background 0.3s; }
    .svc-more a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); text-decoration: none; border-bottom: 1px solid rgba(201,168,76,0.4); padding-bottom: 0.2rem; cursor: pointer; }

    /* ── CTA BAND ── */
    .cta-band { background: var(--gold); padding: 4rem 5%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
    .cta-band h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 500; color: var(--navy); line-height: 1.15; max-width: 600px; margin-bottom: 0; }
    .cta-band p { font-size: 0.87rem; color: rgba(14,26,43,0.72); margin-top: 0.4rem; }
    .cta-contact { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.6rem; font-size: 1rem; font-weight: 700; color: rgba(14,26,43,0.9); }
    .cta-contact a { color: rgba(14,26,43,0.9); text-decoration: none; font-size: 1rem; font-weight: 700; }

    /* ── FOOTER ── */
    footer { background: var(--navy-mid); padding: 4rem 5% 2rem; border-top: 1px solid var(--border-navy); }
    .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
    .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--cream); display: block; margin-bottom: 0.8rem; }
    .footer-logo em { color: var(--gold-light); font-style: italic; }
    .footer-desc { font-size: 0.83rem; color: var(--muted-light); line-height: 1.75; font-weight: 300; margin-bottom: 1.2rem; }
    .footer-email { display: flex; align-items: center; gap: 0.5rem; font-size: 1rem; font-weight: 700; color: var(--gold-light); text-decoration: none; margin-bottom: 0.5rem; }
    .footer-phone { display: flex; align-items: center; gap: 0.5rem; font-size: 1rem; font-weight: 700; color: var(--cream); text-decoration: none; }
    .footer-col h5 { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.2rem; }
    .footer-col a { display: block; font-size: 0.83rem; color: var(--muted-light); text-decoration: none; margin-bottom: 0.6rem; transition: color 0.25s; font-weight: 300; cursor: pointer; }
    .footer-col a:hover { color: var(--cream); }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; border-top: 1px solid var(--border-navy); flex-wrap: wrap; gap: 1rem; }
    .footer-bottom p { font-size: 0.75rem; color: rgba(245,240,230,0.3); }

    /* ── SERVICES FULL PAGE ── */
    .svc-page-hero { background: var(--navy); padding-top: 140px; padding-bottom: 80px; }
    .svc-page-hero h2 { color: var(--cream); max-width: 600px; }
    .svc-list-bg { background: var(--cream-bg); }
    .svc-item { padding: 5rem 5%; border-bottom: 1px solid var(--border-cream); display: grid; grid-template-columns: 100px 1fr 220px; gap: 3rem; align-items: start; }
    .svc-big-num { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 400; color: rgba(184,146,42,0.2); line-height: 1; }
    .svc-tag { display: inline-block; border: 1px solid rgba(184,146,42,0.4); color: var(--gold); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; padding: 0.3rem 0.8rem; margin-bottom: 1rem; border-radius: 4px; }
    .svc-body h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 500; color: var(--text-dark); margin-bottom: 1.2rem; }
    .svc-body p { font-size: 0.92rem; color: var(--muted-dark); line-height: 1.9; font-weight: 300; margin-bottom: 1rem; }
    .chips { display: none; }
    .svc-chips-col { display: flex; flex-direction: column; gap: 0.5rem; padding-top: 3.2rem; }
    .chip { border: 1px solid var(--border-cream); color: var(--muted-dark); font-size: 0.78rem; padding: 0.55rem 1rem; background: var(--white); border-radius: 20px; border-left: 3px solid var(--gold-light); transition: transform 0.2s, box-shadow 0.2s, background 0.2s; display: block; }
    .chip:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(26,45,64,0.1); background: #faf6ed; }
    .svc-boxes { display: flex; flex-direction: column; gap: 0.7rem; padding-top: 0.5rem; }
    .svc-box { background: var(--white); border: 1px solid var(--border-cream); border-left: 3px solid var(--gold-light); padding: 1rem 1.2rem; border-radius: var(--radius); transition: transform 0.25s, box-shadow 0.25s, border-top 0.25s; }
    .svc-box:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(26,45,64,0.1); border-top: 2px solid var(--gold-light); }
    .svc-box h5 { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.25rem; }
    .svc-box p { font-size: 0.78rem; color: var(--muted-dark); line-height: 1.6; font-weight: 300; }

    /* ── ABOUT PAGE ── */
    .about-hero { background: var(--navy); padding-top: 140px; padding-bottom: 80px; }
    .about-hero h2 { color: var(--cream); font-size: clamp(2.2rem, 4.5vw, 4rem); max-width: 600px; }
    .story-section { background: var(--cream-bg); }
    .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
    .story-left h2 { color: var(--text-dark); font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1.5rem; }
    .story-left p { font-size: 0.92rem; color: var(--muted-dark); line-height: 1.9; font-weight: 300; margin-bottom: 1rem; }
    .story-right { display: flex; flex-direction: column; gap: 1rem; }
    .quote-card { background: var(--navy); padding: 2.5rem; border-radius: var(--radius); }
    .quote-card blockquote { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-style: italic; color: var(--cream); line-height: 1.7; margin-bottom: 1rem; }
    .quote-card cite { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); font-style: normal; }
    .exp-card { background: var(--gold); padding: 2rem 2.5rem; display: flex; align-items: center; gap: 1.5rem; border-radius: var(--radius); }
    .exp-num { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 600; color: var(--navy); line-height: 1; }
    .exp-text { font-size: 0.83rem; color: rgba(14,26,43,0.75); line-height: 1.6; }
    .founders-section { background: var(--cream-bg); padding-top: 0; }
    .founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
    .founder-card { background: var(--white); padding: 2.5rem; border-radius: var(--radius); border: 1px solid var(--border-cream); transition: transform 0.25s, box-shadow 0.25s, border-top 0.25s, border-left 0.25s; }
    .founder-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,45,64,0.1); border-top: 2px solid var(--gold-light); border-left: 2px solid var(--gold-light); }
    .founder-header { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.5rem; }
    .founder-avatar { width: 56px; height: 56px; background: var(--navy); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--gold-light); flex-shrink: 0; }
    .founder-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.25rem; }
    .founder-role { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
    .founder-exp { background: var(--cream-bg); border: 1px solid var(--border-cream); border-radius: 8px; padding: 0.6rem 1rem; display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
    .founder-exp span { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--gold); }
    .founder-exp small { font-size: 0.75rem; color: var(--muted-dark); }
    .founder-card p { font-size: 0.88rem; color: var(--muted-dark); line-height: 1.85; font-weight: 300; margin-bottom: 1rem; }
    .founder-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.2rem; }
    .ftag { border: 1px solid var(--border-cream); color: var(--muted-dark); font-size: 0.73rem; padding: 0.35rem 0.8rem; background: var(--cream-bg); border-radius: 20px; }
    .values-section { background: var(--cream-bg); }
    .vals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 3rem; }
    .val-card { background: var(--white); padding: 2.5rem 2rem; border-radius: var(--radius); border: 1px solid var(--border-cream); transition: transform 0.25s, box-shadow 0.25s, background 0.3s, border-top 0.25s, border-left 0.25s; text-align: center; }
    .val-card:hover { background: #faf6ed; transform: translateY(-4px); box-shadow: 0 12px 28px rgba(26,45,64,0.1); border-top: 2px solid var(--gold-light); border-left: 2px solid var(--gold-light); }
    .val-icon { margin-bottom: 1.2rem; display: flex; align-items: center; justify-content: center; }
    .val-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.6rem; }
    .val-card p { font-size: 0.85rem; color: var(--muted-dark); line-height: 1.8; font-weight: 300; }

    /* ── CONTACT PAGE ── */
    .contact-hero { background: var(--navy); padding-top: 140px; min-height: 100vh; }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: start; max-width: 1100px; }
    .contact-detail { display: flex; align-items: center; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--border-navy); }
    .contact-detail:first-of-type { border-top: 1px solid var(--border-navy); }
    .contact-icon { width: 36px; height: 36px; border: 1px solid rgba(201,168,76,0.25); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .contact-detail-text { font-size: 1rem; font-weight: 700; color: var(--cream); }
    .contact-detail-text a { color: var(--gold-light); text-decoration: none; font-size: 1rem; font-weight: 700; }
    .contact-detail-text a.phone { color: var(--cream); }
    .cf-field { background: var(--navy-card); border: 1px solid var(--border-navy); border-radius: 8px; padding: 1.2rem 1.4rem; margin-bottom: 0.8rem; transition: border-color 0.3s; }
    .cf-field:focus-within { border-color: rgba(201,168,76,0.4); }
    .cf-field label { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); display: block; margin-bottom: 0.5rem; }
    .cf-field input, .cf-field textarea { background: none; border: none; outline: none; color: var(--cream); font-family: 'Jost', sans-serif; font-size: 0.92rem; font-weight: 300; width: 100%; resize: none; }
    .cf-field input::placeholder, .cf-field textarea::placeholder { color: rgba(245,240,230,0.2); }
    .cf-success { display: none; background: rgba(184,146,42,0.08); border: 1px solid rgba(184,146,42,0.3); color: var(--gold-light); padding: 1rem 1.4rem; font-size: 0.88rem; font-style: italic; margin-top: 0.8rem; border-radius: 8px; }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp   { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
    @keyframes fadeRight{ from { opacity:0; transform:translateX(24px); } to { opacity:1; transform:translateX(0); } }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-stats { flex-direction: row; flex-wrap: wrap; }
      .hstat { flex: 1; min-width: 150px; }
      .why-grid, .story-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
      .founders-grid { grid-template-columns: 1fr; }
      .vals-grid { grid-template-columns: 1fr 1fr; }
      .svcs-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
      .svc-item { grid-template-columns: 80px 1fr; }
      .svc-chips-col { display: none; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      section { padding: 70px 5%; }
      .svcs-grid { grid-template-columns: 1fr; }
      .vals-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .cta-band { flex-direction: column; align-items: flex-start; }
      .hero-stats { flex-direction: column; }
    }
  