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

  :root {
    --black: #0a0a0a;
    --white: #f8f7f4;
    --accent: #2563eb;
    --accent-light: #dbeafe;
    --gray: #6b7280;
    --light: #f1f0ed;
    --border: #e5e4e0;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--black);
    font-size: 16px;
    line-height: 1.6;
  }

  /* ACCESSIBILITY — skip link (invisible until keyboard-focused) */
  .skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--accent); color: #fff;
    padding: 0.6rem 1.2rem; z-index: 200;
    text-decoration: none; border-radius: 0 0 4px 0;
  }
  .skip-link:focus { left: 0; }

  /* NAV */
  nav.main-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 5%;
    background: rgba(248,247,244,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .logo {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    color: var(--black);
    text-decoration: none;
  }

  .logo span { color: var(--accent); }

  .logo-mark { height: 30px; width: auto; display: block; }
  footer .logo-mark { display: none; }

  /* Full lockup logo (icon + wordmark + splash baked into one image) used in the main nav */
  .logo-full-lockup { padding: 0.4rem 0; }
  .logo-full-lockup .logo-mark { height: 58px; width: auto; }
  @media (max-width: 640px) {
    .logo-full-lockup .logo-mark { height: 48px; }
  }


  nav.main-nav ul {
    list-style: none;
    display: flex; gap: 2rem;
  }

  nav.main-nav a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
    transition: color 0.2s;
  }

  nav.main-nav a:hover { color: var(--black); }

  .nav-cta {
    background: var(--black) !important;
    color: var(--white) !important;
    padding: 0.55rem 1.25rem;
    border-radius: 4px;
    font-weight: 500 !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--accent) !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 6rem 5% 4rem;
    position: relative;
    overflow: hidden;
    background: var(--black);
  }

  .hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0a0a0a 55%, #1a2744 100%);
    z-index: 0;
  }

  .hero-grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
  }

  .hero-content {
    position: relative; z-index: 2;
    max-width: 720px;
  }

  .hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(37,99,235,0.4);
    padding: 0.35rem 0.9rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
  }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 9vw, 7rem);
    line-height: 0.95;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
  }

  .hero h1 span { color: var(--accent); }

  .hero p {
    font-size: 1.1rem;
    color: rgba(248,247,244,0.65);
    max-width: 480px;
    margin-bottom: 2.5rem;
    font-weight: 300;
  }

  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

  .btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.2s, transform 0.15s;
  }

  .btn-primary:hover { background: #1d4ed8; transform: translateY(-1px); }

  .btn-outline {
    display: inline-block;
    border: 1px solid rgba(248,247,244,0.3);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
  }

  .btn-outline:hover { border-color: rgba(248,247,244,0.7); background: rgba(255,255,255,0.05); }

  .hero-stats {
    position: absolute; bottom: 3rem; right: 5%; z-index: 2;
    display: flex; gap: 3rem;
  }

  .stat { text-align: right; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--white);
    line-height: 1;
  }
  .stat-label { font-size: 0.78rem; color: rgba(248,247,244,0.45); letter-spacing: 0.08em; text-transform: uppercase; }

  /* SECTION BASE */
  section { padding: 6rem 5%; }

  .section-tag {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: block;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin-bottom: 1rem;
  }

  .section-sub {
    color: var(--gray);
    font-size: 1rem;
    max-width: 500px;
    font-weight: 300;
  }

  /* SERVICES */
  #services { background: var(--white); }

  .services-header { margin-bottom: 3.5rem; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    transition: background 0.2s;
    cursor: default;
  }

  .service-card:hover { background: var(--light); }

  .service-icon {
    width: 44px; height: 44px;
    background: var(--accent-light);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
  }

  .service-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    font-weight: 300;
  }

  .service-features { list-style: none; }
  .service-features li {
    font-size: 0.82rem;
    color: var(--gray);
    padding: 0.3rem 0;
    border-top: 1px solid var(--border);
    display: flex; align-items: center; gap: 0.5rem;
  }
  .service-features li::before { content: '→'; color: var(--accent); font-size: 0.8rem; }

  /* PACKAGES */
  #packages { background: var(--light); }

  .packages-header { margin-bottom: 3.5rem; }

  .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .pkg-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 2rem 1.75rem;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .pkg-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.07); }

  .pkg-card.featured {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
  }

  .pkg-badge {
    position: absolute; top: -12px; left: 1.75rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
  }

  .pkg-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
  }

  .pkg-tagline {
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
  }

  .pkg-card.featured .pkg-tagline { color: rgba(248,247,244,0.5); }

  .pkg-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .pkg-price-note { font-size: 0.78rem; color: var(--gray); margin-bottom: 1.5rem; }
  .pkg-card.featured .pkg-price-note { color: rgba(248,247,244,0.45); }

  .pkg-divider { border: none; border-top: 1px solid var(--border); margin: 1.25rem 0; }
  .pkg-card.featured .pkg-divider { border-color: rgba(255,255,255,0.12); }

  .pkg-features { list-style: none; }
  .pkg-features li {
    font-size: 0.88rem;
    padding: 0.4rem 0;
    display: flex; align-items: center; gap: 0.6rem;
    color: var(--gray);
  }
  .pkg-card.featured .pkg-features li { color: rgba(248,247,244,0.7); }
  .pkg-features li::before { content: '✓'; color: var(--accent); font-weight: 600; }

  .pkg-cta {
    display: block;
    text-align: center;
    margin-top: 1.75rem;
    padding: 0.75rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s;
    border: 1px solid var(--border);
    color: var(--black);
  }

  .pkg-cta:hover { background: var(--light); }
  .pkg-card.featured .pkg-cta { background: var(--accent); color: #fff; border-color: var(--accent); }
  .pkg-card.featured .pkg-cta:hover { background: #1d4ed8; }

  /* WHY US */
  #why {
    background: var(--black);
    color: var(--white);
  }

  #why .section-title { color: var(--white); }
  #why .section-sub { color: rgba(248,247,244,0.5); }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
  }

  .why-item { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; }
  .why-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 0.75rem;
  }

  .why-item h4 { font-size: 1rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--white); }
  .why-item p { font-size: 0.85rem; color: rgba(248,247,244,0.45); font-weight: 300; line-height: 1.65; }

  /* CONTACT */
  #contact { background: var(--white); }

  .contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  @media (max-width: 700px) { .contact-wrap { grid-template-columns: 1fr; gap: 3rem; } }

  .contact-info h2 { margin-bottom: 0.5rem; }

  .contact-detail {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
  }

  .contact-detail-icon {
    width: 36px; height: 36px; min-width: 36px;
    background: var(--accent-light);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
  }

  .contact-detail-text p { font-size: 0.82rem; color: var(--gray); margin-bottom: 0.15rem; }
  .contact-detail-text strong { font-size: 0.95rem; }
  .contact-detail-text a { color: inherit; text-decoration: none; }
  .contact-detail-text a:hover { color: var(--accent); }

  form { display: flex; flex-direction: column; gap: 1rem; }

  form input, form select, form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    background: var(--white);
    color: var(--black);
    transition: border-color 0.2s;
    outline: none;
  }

  form input:focus, form select:focus, form textarea:focus {
    border-color: var(--accent);
  }

  form textarea { resize: vertical; min-height: 110px; }

  form button {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 0.9rem;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
  }

  form button:hover { background: var(--accent); }

  /* FOOTER */
  footer {
    background: var(--black);
    color: rgba(248,247,244,0.4);
    padding: 2rem 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  footer .logo { color: var(--white); font-size: 1.2rem; }
  footer p { font-size: 0.8rem; }

  .footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; list-style: none; }
  .footer-links a {
    color: rgba(248,247,244,0.55);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--white); }

  /* SERVICE AREAS */
  #areas { background: var(--light); }

  .areas-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
  }

  @media (max-width: 700px) { .areas-wrap { grid-template-columns: 1fr; gap: 2rem; } }

  .area-list { list-style: none; }
  .area-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 0;
    border-top: 1px solid var(--border);
  }
  .area-row:last-child { border-bottom: 1px solid var(--border); }

  .area-city {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.03em;
  }

  .area-city a { color: inherit; text-decoration: none; transition: color 0.2s; }
  .area-city a:hover { color: var(--accent); }

  .area-tag {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    border: 1px solid rgba(37,99,235,0.4);
    padding: 0.3rem 0.75rem;
    border-radius: 2rem;
  }

  .areas-note {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.75rem;
    font-size: 0.92rem;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.7;
  }

  .areas-note strong { color: var(--black); font-weight: 500; }
  .areas-note a { color: var(--accent); text-decoration: none; }
  .areas-note a:hover { text-decoration: underline; }

  /* FAQ */
  #faq { background: var(--white); }

  .faq-list { max-width: 760px; margin-top: 3rem; }

  .faq-item {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
  }
  .faq-list .faq-item:last-child { border-bottom: 1px solid var(--border); }

  .faq-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.02em;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after {
    content: '+';
    font-family: 'DM Sans', sans-serif;
    font-size: 1.4rem;
    color: var(--accent);
    flex-shrink: 0;
  }
  .faq-item[open] summary::after { content: '–'; }

  .faq-item p {
    margin-top: 0.85rem;
    font-size: 0.92rem;
    color: var(--gray);
    font-weight: 300;
    max-width: 640px;
  }

  /* STICKY MOBILE ACTION BAR */
  .sticky-bar {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
    display: none;
    background: rgba(10,10,10,0.97);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 0.6rem 5%;
    gap: 0.75rem;
  }
  .sticky-bar a {
    flex: 1;
    text-align: center;
    padding: 0.7rem;
    font-size: 0.9rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
  }
  .sticky-call { border: 1px solid rgba(248,247,244,0.35); color: var(--white); }
  .sticky-book { background: var(--accent); color: #fff; }

  /* MOBILE NAV */
  @media (max-width: 640px) {
    nav.main-nav ul { display: none; }
    .hero-stats { position: static; flex-direction: row; margin-top: 3rem; }
    .stat { text-align: left; }
    .sticky-bar { display: flex; }
    footer { padding-bottom: 5.5rem; }
  }

  /* ANIMATE */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-badge { animation: fadeUp 0.5s ease both; }
  .hero h1    { animation: fadeUp 0.5s 0.1s ease both; }
  .hero p     { animation: fadeUp 0.5s 0.2s ease both; }
  .hero-btns  { animation: fadeUp 0.5s 0.3s ease both; }
  /* ═══════════════════════════════════════════
     SUB-PAGE ADDITIONS (location, areas, about,
     blog pages — same design language)
     ═══════════════════════════════════════════ */

  /* SUB-PAGE HERO (shorter than homepage hero) */
  .hero-sub { min-height: 55vh; padding-top: 8rem; }
  .hero-sub p { max-width: 560px; }

  /* BREADCRUMBS */
  .breadcrumbs {
    position: relative; z-index: 2;
    font-size: 0.78rem;
    color: rgba(248,247,244,0.45);
    margin-bottom: 1.25rem;
  }
  .breadcrumbs a { color: rgba(248,247,244,0.7); text-decoration: none; transition: color 0.2s; }
  .breadcrumbs a:hover { color: var(--white); }
  .breadcrumbs .sep { margin: 0 0.45rem; color: rgba(248,247,244,0.3); }

  /* PROSE (long-form content blocks) */
  .prose { max-width: 760px; }
  .prose p { color: var(--gray); font-weight: 300; margin-bottom: 1.15rem; }
  .prose p:last-child { margin-bottom: 0; }
  .prose strong { color: var(--black); font-weight: 500; }
  .prose a { color: var(--accent); text-decoration: none; }
  .prose a:hover { text-decoration: underline; }
  .prose ul { margin: 0 0 1.15rem 1.25rem; color: var(--gray); font-weight: 300; }
  .prose li { margin-bottom: 0.35rem; }
  .prose h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    margin: 2rem 0 0.6rem;
  }

  /* CTA BAND */
  .cta-band { background: var(--black); text-align: center; }
  .cta-band .section-title { color: var(--white); }
  .cta-band p { color: rgba(248,247,244,0.55); font-weight: 300; max-width: 520px; margin: 0 auto 2rem; }
  .cta-band .hero-btns { justify-content: center; }

  /* NEARBY AREAS GRID */
  .nearby-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .nearby-card {
    display: block;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.5rem 1.4rem;
    text-decoration: none;
    color: var(--black);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .nearby-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.07); }
  .nearby-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.03em;
    margin-bottom: 0.3rem;
  }
  .nearby-card p { font-size: 0.85rem; color: var(--gray); font-weight: 300; }
  .nearby-card .go { font-size: 0.8rem; color: var(--accent); font-weight: 500; }

  /* MOBILE NAV TOGGLE (hamburger) */
  .nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.4rem 0.65rem;
    cursor: pointer;
    font-size: 1.15rem;
    line-height: 1;
    color: var(--black);
  }
  @media (max-width: 640px) {
    .nav-toggle { display: block; }
    nav.main-nav ul {
      display: none;
      position: absolute; top: 100%; left: 0; right: 0;
      background: rgba(248,247,244,0.98);
      backdrop-filter: blur(12px);
      flex-direction: column; gap: 0;
      padding: 0.5rem 5% 1.25rem;
      border-bottom: 1px solid var(--border);
    }
    nav.main-nav ul.open { display: flex; }
    nav.main-nav ul li { padding: 0.55rem 0; }
    nav.main-nav ul .nav-cta { display: inline-block; margin-top: 0.5rem; }
  }

  /* BLOG */
  .post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .post-card {
    display: flex; flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    text-decoration: none;
    color: var(--black);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .post-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.07); }
  .post-thumb {
    height: 110px;
    background: linear-gradient(135deg, #0a0a0a 45%, #1a2744 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem;
  }
  .post-card-body { padding: 1.5rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
  .post-cat {
    font-size: 0.68rem; font-weight: 500;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.5rem;
  }
  .post-card h2, .post-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.45rem;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 0.5rem;
  }
  .post-card .excerpt { font-size: 0.88rem; color: var(--gray); font-weight: 300; line-height: 1.6; }
  .post-meta {
    margin-top: auto; padding-top: 1rem;
    font-size: 0.75rem; color: var(--gray);
    letter-spacing: 0.04em;
  }

  /* ARTICLE */
  .article-wrap { max-width: 760px; margin: 0 auto; }
  .article-wrap .prose h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin: 2.5rem 0 0.75rem;
  }
  .article-meta {
    display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem;
    font-size: 0.8rem; color: var(--gray);
    padding-bottom: 1.5rem; margin-bottom: 2rem;
    border-bottom: 1px solid var(--border);
  }
  .article-meta strong { color: var(--black); font-weight: 500; }

  /* REVIEWS */
  .rating-banner {
    display: flex; align-items: center; gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 1.5rem 1.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    max-width: 620px;
  }
  .rating-banner .rating-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1;
  }
  .rating-banner .stars { color: #f5a623; font-size: 1.2rem; letter-spacing: 0.1em; }
  .rating-banner .rating-detail p { font-size: 0.85rem; color: var(--gray); margin-top: 0.25rem; }
  .rating-banner .rating-detail a { color: var(--accent); text-decoration: none; font-weight: 500; }
  .rating-banner .rating-detail a:hover { text-decoration: underline; }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.75rem;
    display: flex; flex-direction: column;
  }
  .review-card .stars { color: #f5a623; font-size: 0.95rem; letter-spacing: 0.08em; margin-bottom: 0.9rem; }
  .review-card p.quote { font-size: 0.92rem; color: var(--black); font-weight: 300; line-height: 1.65; flex: 1; margin-bottom: 1.25rem; }
  .review-card .reviewer { display: flex; align-items: center; gap: 0.75rem; }
  .review-avatar {
    width: 38px; height: 38px; min-width: 38px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
  }
  .reviewer-name { font-size: 0.88rem; font-weight: 500; }
  .reviewer-meta { font-size: 0.75rem; color: var(--gray); }
  .review-source { font-size: 0.7rem; color: var(--gray); margin-top: 0.15rem; }

  .leave-review-band {
    background: var(--light);
    text-align: center;
  }

  /* MEMBERSHIP COMPARISON TABLE */
  .compare-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3rem;
    background: var(--white);
    border: 1px solid var(--border);
    font-size: 0.9rem;
  }
  .compare-table th, .compare-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
  }
  .compare-table thead th {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.04em;
    font-weight: 400;
  }
  .compare-table thead th.us { background: var(--black); color: var(--white); }
  .compare-table thead th.us span { color: var(--accent); }
  .compare-table td.us { background: #fdfdfc; font-weight: 500; }
  .compare-table td { color: var(--gray); font-weight: 300; }
  .compare-table td:first-child { font-weight: 500; color: var(--black); white-space: nowrap; }
  .compare-table .yes { color: var(--accent); font-weight: 600; }
  @media (max-width: 640px) {
    .compare-table { font-size: 0.8rem; }
    .compare-table th, .compare-table td { padding: 0.7rem 0.6rem; }
    .compare-table td:first-child { white-space: normal; }
  }

  /* ═══════════════════════════════════════════
     LOGO LOCKUP (emblem + wordmark) + MOBILE POLISH
     Added for mobile-first refinement — 90% of traffic.
     ═══════════════════════════════════════════ */
  .logo-mark { height: 36px; width: auto; flex-shrink: 0; }
  .logo { white-space: nowrap; }

  @media (max-width: 640px) {
    nav.main-nav { padding: 0.85rem 5%; }
    .logo { font-size: 1.42rem; gap: 0.5rem; }
    .logo-mark { height: 32px; }

    section { padding: 4.25rem 6%; }
    .hero { min-height: auto; padding: 6.5rem 6% 3.5rem; }
    .hero h1 { font-size: clamp(3rem, 13vw, 4.25rem); }
    .hero p { font-size: 1.02rem; margin-bottom: 2rem; }

    .hero-btns { width: 100%; gap: 0.75rem; }
    .hero-btns > a { flex: 1 1 100%; text-align: center; }
    .cta-band .hero-btns > a { flex: 1 1 100%; }
  }

  @media (max-width: 380px) {
    .logo { font-size: 1.28rem; }
    .logo-mark { height: 28px; }
  }
