  :root {
    --navy: #1e4d6b;
    --navy-deep: #143548;
    --navy-light: #e8eef3;
    --green: #7cb342;
    --green-hover: #689f38;
    --green-soft: #f1f7e8;
    --accent-red: #c0392b;
    --cream: #faf7f2;
    --cream-deep: #f3ede2;
    --paper: #ffffff;
    --ink: #1a1a1a;
    --ink-soft: #4a4a4a;
    --ink-mute: #8a8a8a;
    --border: #e8e2d6;
    --border-strong: #d0ccc4;
    --gold: #c89b3c;
    --gold-light: #fdf3d4;
    --star: #f5b301;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--cream);
    font-family: 'Manrope', -apple-system, sans-serif;
    color: var(--ink);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }
  img { max-width: 100%; display: block; }
  a { color: var(--navy); text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }

  .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
  }
  @media (max-width: 640px) { .container { padding: 0 20px; } }

  /* ============ UTILITY BAR ============ */
  .utility-bar {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.9);
    font-size: 13px;
    padding: 10px 0;
  }
  .utility-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  .utility-bar .nat-cov {
    display: flex; align-items: center; gap: 8px;
    font-weight: 600; letter-spacing: 0.05em;
    text-transform: uppercase; font-size: 11.5px;
  }
  .utility-bar .nat-cov::before {
    content: ''; width: 8px; height: 8px;
    background: var(--green); border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(124,179,66,0.3);
  }
  .utility-contacts { display: flex; gap: 20px; align-items: center; }
  .utility-contacts a {
    color: white; display: flex; align-items: center;
    gap: 6px; font-weight: 600;
  }
  .utility-contacts a:hover { color: var(--green); }
  .utility-contacts .utility-cta { display: none; }

  @media (max-width: 640px) {
    .utility-inner { flex-direction: column; justify-content: center; gap: 10px; }
    .utility-contacts { flex-wrap: wrap; justify-content: center; gap: 14px; }
    .utility-contacts .utility-cta {
      display: inline-flex; align-items: center;
      background: var(--green); color: white;
      padding: 5px 12px; border-radius: 6px;
      font-weight: 700; font-size: 11px;
      letter-spacing: 0.05em; text-transform: uppercase;
      transition: background 0.15s;
    }
    .utility-contacts .utility-cta:hover { background: var(--green-hover); color: white; }
    .header-cta { display: none; }
    .header-inner { justify-content: center; position: relative; }
    .menu-toggle { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
  }

  /* ============ MAIN HEADER ============ */
  .site-header {
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 100;
  }
  .header-inner {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 22px 0; gap: 32px;
  }
  .logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
  .logo img { max-height: 56px; width: auto; height: auto; }
  .logo-mark { width: 44px; height: 44px; flex-shrink: 0; }
  .logo-text {
    font-family: 'Fraunces', serif;
    font-weight: 600; color: var(--navy-deep);
    font-size: 22px; letter-spacing: 0.03em; line-height: 1;
  }
  .logo-tagline {
    font-size: 9.5px; letter-spacing: 0.22em;
    color: var(--ink-mute); text-transform: uppercase;
    font-weight: 700; margin-top: 4px; display: block;
  }
  .nav-main { display: flex; gap: 4px; list-style: none; align-items: center; }
  .nav-main a {
    color: var(--ink-soft); font-weight: 600;
    font-size: 14.5px; padding: 8px 14px;
    border-radius: 6px; transition: all 0.15s; position: relative;
  }
  .nav-main a:hover { color: var(--navy-deep); background: var(--navy-light); }
  .nav-main a.active { color: var(--navy-deep); }
  .nav-main a.active::after {
    content: ''; position: absolute; bottom: -2px; left: 50%;
    transform: translateX(-50%); width: 4px; height: 4px;
    background: var(--green); border-radius: 50%;
  }
  .header-cta {
    background: var(--green); color: white;
    padding: 12px 22px; border-radius: 8px;
    font-weight: 700; font-size: 13px;
    letter-spacing: 0.06em; text-transform: uppercase;
    transition: all 0.15s; white-space: nowrap;
  }
  .header-cta:hover { background: var(--green-hover); color: white; transform: translateY(-1px); }

  .menu-toggle {
    display: none; flex-direction: column; justify-content: center;
    gap: 5px; width: 40px; height: 40px; padding: 9px;
    background: transparent; border: none; cursor: pointer;
    border-radius: 6px; transition: background 0.15s;
  }
  .menu-toggle:hover { background: var(--navy-light); }
  .menu-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--navy-deep); border-radius: 2px;
    transition: all 0.25s ease; transform-origin: center;
  }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  @media (max-width: 980px) {
    .nav-main { display: none; }
    .menu-toggle { display: flex; }
    .site-header.menu-open .nav-main {
      display: flex; flex-direction: column; gap: 0;
      position: absolute; top: 100%; left: 0; right: 0;
      background: var(--paper); padding: 8px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 12px 24px rgba(20,53,72,0.08);
    }
    .site-header.menu-open .nav-main li { width: 100%; }
    .site-header.menu-open .nav-main a {
      display: block; padding: 14px 32px;
      border-radius: 0; font-size: 15px;
    }
    .site-header.menu-open .nav-main a.active::after { display: none; }
  }

  /* ============ BREADCRUMB ============ */
  .breadcrumb {
    background: var(--paper);
    border-bottom: 1px solid var(--border);
    padding: 14px 0; font-size: 13px;
  }
  .breadcrumb ol {
    list-style: none; display: flex;
    flex-wrap: wrap; gap: 8px; align-items: center;
  }
  .breadcrumb a { color: var(--ink-mute); font-weight: 600; transition: color 0.15s; }
  .breadcrumb a:hover { color: var(--navy); }
  .breadcrumb li::after { content: '→'; margin-left: 8px; color: var(--border-strong); }
  .breadcrumb li:last-child::after { display: none; }
  .breadcrumb li:last-child { color: var(--navy-deep); font-weight: 700; }

  /* ============ HUB HERO ============ */
  .hub-hero {
    padding: 56px 0 40px;
    position: relative;
    overflow: hidden;
  }
  .hub-hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -120px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124,179,66,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--navy); background: var(--navy-light);
    padding: 8px 14px; border-radius: 100px;
    margin-bottom: 24px;
  }
  .hero-eyebrow .dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; }
  .hub-hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: clamp(34px, 4.5vw, 52px);
    line-height: 1.05;
    color: var(--navy-deep);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    max-width: 820px;
  }
  .hub-hero h1 em {
    font-style: italic;
    color: var(--green);
    font-weight: 600;
  }
  .hub-lead {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.55;
    max-width: 720px;
    margin-bottom: 36px;
  }

  /* Mini stats row */
  .hub-stats {
    display: flex;
    gap: 150px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid var(--border);
  }
  .hub-stat-num {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 32px;
    color: var(--navy-deep);
    line-height: 1;
    letter-spacing: -0.02em;
  }
  .hub-stat-num small {
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    color: var(--green);
    margin-left: 2px;
  }
  .hub-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-soft);
    margin-top: 6px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  /* ============ PRODUCT GRID ============ */
  .product-section { padding: 60px 0 40px; }
  .section-eyebrow {
    font-size: 12px; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--green); margin-bottom: 16px;
    display: inline-block;
  }
  .section-eyebrow::before,
  .section-eyebrow::after {
    content: '—'; margin: 0 10px; color: var(--border-strong);
  }
  .section-title {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: clamp(28px, 3.6vw, 40px);
    line-height: 1.1;
    color: var(--navy-deep);
    letter-spacing: -0.015em;
    margin-bottom: 16px;
  }
  .section-title em { font-style: italic; color: var(--green); }
  .section-lead {
    font-size: 16.5px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .section-head-center {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
  }
  .section-head-left {
    max-width: 720px;
    margin-bottom: 40px;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 980px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  }
  @media (max-width: 640px) {
    .product-grid { grid-template-columns: 1fr; gap: 16px; }
  }

  .product-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(20,53,72,0.08);
    border-color: var(--navy-light);
  }
  .product-card.featured {
    border-color: var(--green);
    box-shadow: 0 0 0 1px var(--green), 0 8px 24px rgba(124,179,66,0.1);
  }
  .product-card.featured .product-card-image::before {
    content: 'Most popular';
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--green);
    color: white;
    padding: 5px 11px;
    border-radius: 100px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    z-index: 2;
  }

  .product-card-image {
    aspect-ratio: 16 / 10;
    background: repeating-linear-gradient(45deg, var(--navy-light), var(--navy-light) 12px, var(--cream-deep) 12px, var(--cream-deep) 24px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .product-card-image svg {
    color: var(--navy);
    opacity: 0.45;
    width: 70px;
    height: 70px;
  }
  .product-card-image img {
    width: 100%; height: 100%; object-fit: cover;
  }
  .product-card-num {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255,255,255,0.92);
    color: var(--navy-deep);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 14px;
    border: 1px solid var(--border);
  }

  .product-card-body {
    padding: 24px 26px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .product-card-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 24px;
    color: var(--navy-deep);
    letter-spacing: -0.01em;
    line-height: 1.15;
    margin-bottom: 6px;
  }
  .product-card-price {
    font-size: 14px;
    color: var(--ink-mute);
    margin-bottom: 14px;
  }
  .product-card-price strong {
    color: var(--green-hover);
    font-family: 'Fraunces', serif;
    font-size: 17px;
    font-weight: 600;
    margin-right: 2px;
  }
  .product-card-desc {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.55;
    margin-bottom: 18px;
    flex: 1;
  }

  .product-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
  }
  .meta-pill {
    background: var(--cream);
    color: var(--ink-soft);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11.5px;
    font-weight: 600;
    border: 1px solid var(--border);
  }
  .meta-pill strong {
    color: var(--navy-deep);
    font-weight: 700;
    margin-right: 3px;
  }

  .product-card-link {
    color: var(--navy);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: gap 0.2s;
    align-self: flex-start;
  }
  .product-card-link:hover { gap: 12px; }
  .product-card-link::after { content: '→'; }

  /* ============ DECISION HELPER ============ */
  .decision-section {
    background: var(--paper);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 0;
  }
  @media (max-width: 760px) { .decision-section { padding: 60px 0; } }

  .decision-list {
    display: grid;
    gap: 14px;
    max-width: 880px;
    margin: 0 auto;
  }
  .decision-row {
    display: grid;
    grid-template-columns: 56px 1fr 24px 1fr;
    gap: 20px;
    align-items: center;
    padding: 22px 28px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.15s;
  }
  .decision-row:hover {
    background: var(--paper);
    border-color: var(--navy-light);
    transform: translateX(4px);
  }
  @media (max-width: 760px) {
    .decision-row {
      grid-template-columns: 48px 1fr;
      gap: 16px;
      padding: 18px 20px;
    }
    .decision-arrow { display: none; }
    .decision-recommendation { grid-column: 1 / -1; padding-top: 12px; margin-top: 4px; border-top: 1px solid var(--border); padding-left: 64px; position: relative; }
    .decision-recommendation::before {
      content: '→';
      position: absolute;
      left: 36px;
      color: var(--green);
      font-weight: 700;
    }
  }
  .decision-icon {
    width: 56px; height: 56px;
    background: var(--navy-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    flex-shrink: 0;
  }
  @media (max-width: 760px) { .decision-icon { width: 48px; height: 48px; border-radius: 12px; } }
  .decision-situation-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 2px;
  }
  .decision-situation-text {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--navy-deep);
    line-height: 1.3;
    letter-spacing: -0.005em;
  }
  .decision-arrow {
    color: var(--green);
    font-weight: 700;
    font-size: 22px;
    text-align: center;
  }
  .decision-rec-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 2px;
  }
  .decision-rec-link {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--navy-deep);
    letter-spacing: -0.005em;
    border-bottom: 1.5px solid var(--green);
    padding-bottom: 1px;
    display: inline-block;
  }
  .decision-rec-link:hover { color: var(--green-hover); }

  .decision-footer {
    text-align: center;
    margin-top: 40px;
    padding: 24px 28px;
    background: var(--navy-light);
    border-radius: 12px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
  }
  .decision-footer p {
    color: var(--navy-deep);
    font-size: 15.5px;
    margin: 0;
  }
  .decision-footer a {
    font-weight: 700;
    border-bottom: 2px solid var(--green);
    padding-bottom: 1px;
  }

  /* ============ TESTIMONIALS (reused) ============ */
  section.block { padding: 80px 0; }
  @media (max-width: 760px) { section.block { padding: 56px 0; } }
  .test-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  @media (max-width: 800px) { .test-grid { grid-template-columns: 1fr; } }
  .testimonial {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    position: relative;
  }
  .test-quote-mark {
    font-family: 'Fraunces', serif;
    font-size: 70px;
    color: var(--navy-light);
    line-height: 0.7;
    position: absolute;
    top: 22px; right: 28px;
    font-weight: 700;
  }
  .test-stars { color: var(--star); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
  .test-quote {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 17.5px;
    line-height: 1.5;
    color: var(--navy-deep);
    margin-bottom: 22px;
    letter-spacing: -0.005em;
  }
  .test-author {
    display: flex; align-items: center; gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
  }
  .test-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
    color: white; display: flex; align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-weight: 600; font-size: 15px;
    flex-shrink: 0;
  }
  .test-author-text { flex: 1; min-width: 0; }
  .test-name { font-weight: 700; color: var(--navy-deep); font-size: 14.5px; }
  .test-loc { font-size: 12.5px; color: var(--ink-mute); }
  .test-photo {
    width: 64px; height: 64px;
    border-radius: 50%;
    margin-left: auto;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid var(--border);
    background: repeating-linear-gradient(45deg, var(--navy-light), var(--navy-light) 8px, var(--cream-deep) 8px, var(--cream-deep) 16px);
    display: flex; align-items: center; justify-content: center;
  }
  .test-photo-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--navy);
    text-transform: uppercase;
    background: rgba(255,255,255,0.9);
    padding: 3px 6px;
    border-radius: 3px;
  }

  /* ============ ARTICLE LINKS ============ */
  .article-links-section {
    background: var(--paper);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .article-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 880px) { .article-links-grid { grid-template-columns: 1fr; } }
  .link-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px 24px;
    transition: all 0.15s;
    display: flex; flex-direction: column;
  }
  .link-card:hover {
    background: var(--paper);
    border-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(20,53,72,0.06);
  }
  .link-card-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: var(--navy-deep);
    font-size: 17px;
    margin-bottom: 6px;
    line-height: 1.25;
  }
  .link-card-desc {
    color: var(--ink-soft);
    font-size: 13.5px;
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
  }
  .link-card-link {
    color: var(--navy);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;

  }
  .link-card-link::after { content: ' →'; }

  /* ============ FINAL CTA ============ */
  .final-cta-section { padding: 60px 0 100px; }
  .final-cta {
    background: var(--navy-deep);
    color: white;
    border-radius: 16px;
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  @media (max-width: 640px) { .final-cta { padding: 40px 28px; } }
  .final-cta::before {
    content: '';
    position: absolute;
    top: -120px; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 250px;
    background: radial-gradient(ellipse, rgba(124,179,66,0.15) 0%, transparent 70%);
  }
  .final-cta-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 14px;
    position: relative;
  }
  .final-cta h2 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: clamp(28px, 4vw, 40px);
    color: white;
    letter-spacing: -0.015em;
    line-height: 1.1;
    margin-bottom: 16px;
    position: relative;
  }
  .final-cta h2 em { font-style: italic; color: var(--green); }
  .final-cta p {
    font-size: 16.5px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    position: relative;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  .final-cta-actions {
    display: inline-flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }
  .btn-primary {
    background: var(--green);
    color: white;
    padding: 16px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: background 0.15s;
  }
  .btn-primary:hover { background: var(--green-hover); color: white; }
  .btn-ghost {
    color: white;
    padding: 14px 20px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    transition: all 0.15s;
  }
  .btn-ghost:hover { border-color: white; }
  .btn-ghost .phone-num {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 600;
  }

  /* ============ FOOTER ============ */
  .site-footer {
    background: var(--navy-deep);
    color: rgba(255,255,255,0.75);
    padding: 64px 0 32px;
    font-size: 14px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  @media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
  @media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
  .footer-col h4 {
    font-family: 'Fraunces', serif;
    font-weight: 600; color: white;
    font-size: 16px; margin-bottom: 18px;
    letter-spacing: -0.005em;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 10px; }
  .footer-col a { color: rgba(255,255,255,0.7); transition: color 0.15s; }
  .footer-col a:hover { color: var(--green); }
  .footer-logo {
    font-family: 'Fraunces', serif;
    color: white; font-size: 22px;
    font-weight: 600; letter-spacing: 0.03em;
    margin-bottom: 14px;
  }
  .footer-about { line-height: 1.55; margin-bottom: 18px; font-size: 13.5px; }
  .footer-bhta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 8px 14px; border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px; font-size: 11.5px;
    font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  }
  .footer-bhta::before { content: '✓'; color: var(--green); font-weight: 700; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px; display: flex;
    justify-content: space-between; flex-wrap: wrap;
    gap: 16px; font-size: 13px; color: rgba(255,255,255,0.5);
  }
  .footer-bottom a { color: rgba(255,255,255,0.6); margin-left: 16px; }
  .footer-bottom a:hover { color: white; }