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

    :root {
      --navy: #1A2B6B;
      --navy-dark: #0f1a45;
      --orange: #D4491A;
      --orange-light: #e8561f;
      --white: #FFFFFF;
      --light: #F2F4F9;
      --gray: #6B7280;
      --border: #D1D5DB;
    }

    html { scroll-behavior: smooth; }
    body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: #1F2937; background: var(--white); }

    /* ── NAV ── */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: var(--navy-dark);
      padding: 0 2rem;
      display: flex; align-items: center; justify-content: space-between;
      height: 64px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.4);
    }
    .nav-brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
    .nav-brand img { height: 44px; width: auto; }
    .nav-brand span { color: var(--white); font-size: 1.35rem; font-weight: 900; letter-spacing: 0.06em; }
    .nav-links { display: flex; gap: 1.5rem; list-style: none; align-items: center; }
    .nav-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
    .nav-links a:hover { color: var(--white); }
    .btn-nav {
      background: var(--orange) !important; color: var(--white) !important;
      padding: 0.45rem 1.2rem; border-radius: 6px; font-weight: 700 !important;
      transition: background 0.2s !important;
    }
    .btn-nav:hover { background: var(--orange-light) !important; }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(160deg, var(--navy-dark) 0%, #1a2b6b 55%, #1e3080 100%);
      min-height: 92vh;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; padding: 5rem 2rem 4rem;
      position: relative; overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 50% 80%, rgba(212,73,26,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    /* Wave texture overlay */
    .hero::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
      background: linear-gradient(to bottom, transparent, rgba(15,26,69,0.4));
      pointer-events: none;
    }

    .hero-lockup {
      position: relative; z-index: 1;
      display: flex; flex-direction: column; align-items: center;
    }

    .hero-logo-img {
      width: min(420px, 80vw);
      height: auto;
      margin-bottom: 1.5rem;
      filter: drop-shadow(0 6px 24px rgba(0,0,0,0.45));
    }

    .hero-rule {
      display: flex; align-items: center; gap: 0.75rem;
      width: 100%; max-width: 380px;
      margin: 0.75rem 0;
    }
    .hero-rule::before, .hero-rule::after {
      content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.3);
    }
    .hero-sub {
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.75);
      white-space: nowrap;
    }

    .hero-tagline {
      font-size: clamp(1.1rem, 2.5vw, 1.35rem);
      font-style: italic;
      color: rgba(255,255,255,0.88);
      margin-top: 0.6rem;
      margin-bottom: 2.5rem;
    }

    .hero-actions {
      display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center;
      margin-bottom: 2.5rem;
    }

    .btn-primary {
      background: var(--orange); color: var(--white);
      padding: 1rem 2.5rem; border-radius: 8px;
      font-size: 1.05rem; font-weight: 700;
      text-decoration: none; border: none; cursor: pointer;
      transition: all 0.2s; display: inline-block;
      box-shadow: 0 4px 20px rgba(212,73,26,0.45);
      letter-spacing: 0.02em;
    }
    .btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 7px 24px rgba(212,73,26,0.55); }

    .btn-ghost {
      background: transparent; color: var(--white);
      padding: 1rem 2.5rem; border-radius: 8px;
      font-size: 1.05rem; font-weight: 700;
      text-decoration: none;
      border: 2px solid rgba(255,255,255,0.45);
      transition: all 0.2s; display: inline-block;
    }
    .btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

    .hero-phone { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
    .hero-phone a { color: var(--white); font-weight: 700; font-size: 1.1rem; text-decoration: none; }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--orange);
      padding: 0.85rem 2rem;
      display: flex; align-items: center; justify-content: center;
      gap: 2.5rem; flex-wrap: wrap;
    }
    .trust-item {
      display: flex; align-items: center; gap: 0.5rem;
      color: var(--white); font-size: 0.85rem; font-weight: 700;
      letter-spacing: 0.05em; text-transform: uppercase;
    }
    .trust-item .t-icon { font-size: 1rem; }
    .trust-divider { color: rgba(255,255,255,0.4); font-size: 1.2rem; }

    /* ── SECTION BASE ── */
    section { padding: 5rem 2rem; }
    .container { max-width: 1100px; margin: 0 auto; }
    .section-label {
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.22em;
      text-transform: uppercase; color: var(--orange); margin-bottom: 0.6rem;
    }
    .section-title {
      font-size: clamp(1.8rem, 4vw, 2.7rem); font-weight: 900;
      color: var(--navy-dark); line-height: 1.1; margin-bottom: 1rem;
    }
    .section-desc { font-size: 1.05rem; color: var(--gray); max-width: 580px; line-height: 1.7; }

    /* ── SERVICES ── */
    .services-section { background: var(--light); }
    .services-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.75rem; margin-top: 3rem;
    }
    .service-card {
      background: var(--white); border-radius: 14px;
      padding: 2rem 1.75rem;
      box-shadow: 0 2px 14px rgba(26,43,107,0.07);
      border-top: 4px solid var(--orange);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .service-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(26,43,107,0.12); }
    .service-card-header {
      display: flex; align-items: center; gap: 0.7rem;
      margin-bottom: 1.25rem;
    }
    .service-card-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
    }
    .service-card h3 { font-size: 0.9rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); }
    .service-list { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
    .service-list li {
      font-size: 0.93rem; color: #374151;
      padding-left: 1.2rem; position: relative; line-height: 1.4;
    }
    .service-list li::before {
      content: ''; position: absolute; left: 0; top: 0.5em;
      width: 5px; height: 5px; border-radius: 50%; background: var(--orange);
    }

    /* ── AREA ── */
    .area-section { background: var(--navy-dark); }
    .area-section .section-title { color: var(--white); }
    .area-section .section-desc { color: rgba(255,255,255,0.65); }
    .area-cards {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem; margin-top: 3rem;
    }
    .area-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 14px; padding: 2.25rem 2rem; text-align: center;
      transition: background 0.2s;
    }
    .area-card:hover { background: rgba(255,255,255,0.1); }
    .area-card .a-icon { font-size: 2.8rem; margin-bottom: 1rem; display: block; }
    .area-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 0.6rem; }
    .area-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
    .area-card .area-tag {
      display: inline-block; margin-top: 1rem;
      background: rgba(212,73,26,0.2); border: 1px solid rgba(212,73,26,0.4);
      color: #f07b55; font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      padding: 0.3rem 0.75rem; border-radius: 100px;
    }

    /* ── WHY US ── */
    .why-section { background: var(--white); }
    .why-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem; margin-top: 3rem;
    }
    .why-item { text-align: center; padding: 1.25rem 1rem; }
    .why-icon {
      width: 58px; height: 58px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; margin: 0 auto 1rem;
      box-shadow: 0 4px 16px rgba(26,43,107,0.18);
    }
    .why-item h3 { font-size: 0.95rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 0.45rem; }
    .why-item p { font-size: 0.88rem; color: var(--gray); line-height: 1.55; }

    /* ── BOOKING ── */
    .booking-section { background: var(--light); }
    .booking-layout {
      display: grid; grid-template-columns: 1fr 1.5fr;
      gap: 4rem; align-items: start; margin-top: 3rem;
    }
    .booking-info h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 1.5rem; }
    .contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.25rem; }
    .ci-icon { font-size: 1.15rem; flex-shrink: 0; margin-top: 0.05rem; }
    .contact-item a { color: var(--navy); font-weight: 600; text-decoration: none; font-size: 0.97rem; }
    .contact-item a:hover { color: var(--orange); }
    .contact-item p { font-size: 0.95rem; color: #374151; line-height: 1.55; }

    .hours-box {
      margin-top: 2rem;
      background: white;
      border-left: 4px solid var(--orange);
      border-radius: 0 10px 10px 0;
      padding: 1.1rem 1.25rem;
      box-shadow: 0 2px 10px rgba(26,43,107,0.06);
    }
    .hours-box strong { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); display: block; margin-bottom: 0.4rem; }
    .hours-box p { font-size: 0.9rem; color: #374151; line-height: 1.5; }

    /* Form */
    .booking-form-wrap {
      background: var(--white); border-radius: 18px;
      padding: 2.5rem; box-shadow: 0 6px 28px rgba(26,43,107,0.1);
    }

    /* ── MICROSOFT BOOKINGS IFRAME ── */
    .ari-booking-wrap {
      background: var(--white);
      border-radius: 18px;
      box-shadow: 0 6px 28px rgba(26,43,107,0.1);
      overflow: hidden;
      position: relative;
    }
    .ari-booking-header {
      padding: 1.1rem 1.5rem;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      color: var(--white);
      display: flex; align-items: center; justify-content: space-between;
      gap: 1rem; flex-wrap: wrap;
    }
    .ari-booking-header h3 {
      font-size: 0.95rem; font-weight: 800; letter-spacing: 0.06em;
      text-transform: uppercase; color: var(--white);
    }
    .ari-booking-header a {
      color: var(--white); font-size: 0.82rem; font-weight: 600;
      text-decoration: none; opacity: 0.85;
      border-bottom: 1px solid rgba(255,255,255,0.4);
      padding-bottom: 1px;
    }
    .ari-booking-header a:hover { opacity: 1; }
    #booking-frame {
      width: 100%;
      height: 1100px;
      border: 0;
      display: block;
      background: var(--light);
    }
    .ari-booking-fallback {
      padding: 1rem 1.5rem;
      background: var(--light);
      font-size: 0.85rem;
      color: var(--gray);
      text-align: center;
      border-top: 1px solid var(--border);
    }
    .ari-booking-fallback a { color: var(--orange); font-weight: 700; text-decoration: none; }
    @media (max-width: 820px) { #booking-frame { height: 1300px; } }
    @media (max-width: 480px) { #booking-frame { height: 1500px; } }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { margin-bottom: 1.2rem; }
    .form-group label { display: block; font-size: 0.84rem; font-weight: 700; color: #374151; margin-bottom: 0.4rem; letter-spacing: 0.02em; }
    .form-group label .req { color: var(--orange); }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 0.72rem 1rem;
      border: 1.5px solid var(--border); border-radius: 8px;
      font-size: 0.95rem; font-family: inherit; color: #1F2937;
      background: var(--white);
      transition: border-color 0.2s, box-shadow 0.2s;
      appearance: none; -webkit-appearance: none;
    }
    .form-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 0.9rem center;
      padding-right: 2.5rem; cursor: pointer;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      outline: none; border-color: var(--navy);
      box-shadow: 0 0 0 3px rgba(26,43,107,0.1);
    }
    .form-group input.error, .form-group select.error, .form-group textarea.error {
      border-color: #EF4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
    }
    .form-group textarea { resize: vertical; min-height: 115px; }

    .btn-submit {
      width: 100%; background: var(--orange); color: var(--white);
      padding: 1rem; border-radius: 8px; font-size: 1.05rem; font-weight: 700;
      border: none; cursor: pointer; transition: all 0.2s; margin-top: 0.4rem;
      box-shadow: 0 4px 16px rgba(212,73,26,0.35); letter-spacing: 0.02em;
    }
    .btn-submit:hover { background: var(--orange-light); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(212,73,26,0.45); }

    .form-note { font-size: 0.8rem; color: var(--gray); text-align: center; margin-top: 0.85rem; line-height: 1.45; }

    /* Success state */
    .form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
    .success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
    .form-success h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 0.5rem; }
    .form-success p { color: var(--gray); font-size: 0.95rem; line-height: 1.5; }

    /* ── TESTIMONIALS ── */
    .testimonials-section { background: var(--white); }
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem; margin-top: 3rem;
    }
    .testimonial-card {
      background: var(--light); border-radius: 14px;
      padding: 2rem 1.75rem;
      box-shadow: 0 2px 14px rgba(26,43,107,0.06);
      border-top: 4px solid var(--orange);
      transition: transform 0.2s, box-shadow 0.2s;
      display: flex; flex-direction: column; gap: 0.75rem;
    }
    .testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(26,43,107,0.12); }
    .testimonial-stars { color: #FBBF24; font-size: 1.15rem; letter-spacing: 0.1em; }
    .testimonial-text {
      font-size: 0.97rem; color: #374151; line-height: 1.75;
      font-style: italic; flex: 1;
    }
    .testimonial-text::before {
      content: '\201C'; font-size: 2.2rem; color: var(--orange);
      line-height: 0; vertical-align: -0.55rem; margin-right: 0.05rem;
      font-style: normal;
    }
    .testimonial-author { display: flex; align-items: center; gap: 0.75rem; margin-top: 0.5rem; }
    .testimonial-avatar {
      width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; font-weight: 800; color: var(--white);
    }
    .testimonial-author-info strong { display: block; font-size: 0.9rem; font-weight: 800; color: var(--navy-dark); }
    .testimonial-author-info span { font-size: 0.78rem; color: var(--gray); }
    .reviews-cta { text-align: center; margin-top: 2.75rem; }
    .btn-reviews {
      display: inline-flex; align-items: center; gap: 0.6rem;
      background: var(--white); color: var(--navy);
      padding: 0.8rem 1.9rem; border-radius: 8px;
      font-size: 0.95rem; font-weight: 700; text-decoration: none;
      border: 2px solid var(--navy); transition: all 0.2s;
      box-shadow: 0 2px 10px rgba(26,43,107,0.1);
    }
    .btn-reviews:hover { background: var(--navy); color: var(--white); }

    /* ── FOOTER ── */
    footer {
      background: var(--navy-dark);
      color: rgba(255,255,255,0.55);
      padding: 3rem 2rem 2rem;
      text-align: center;
    }
    .footer-brand { font-size: 1.6rem; font-weight: 900; color: var(--white); letter-spacing: 0.06em; margin-bottom: 0.3rem; }
    .footer-brand span { color: var(--orange); }
    .footer-tagline { font-style: italic; color: rgba(255,255,255,0.4); margin-bottom: 1.75rem; font-size: 0.95rem; }
    .footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.75rem; }
    .footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
    .footer-links a:hover { color: var(--white); }
    .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 1.25rem; }
    .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); line-height: 1.6; }

    /* ── HAMBURGER NAV TOGGLE (mobile only) ── */
    .nav-toggle {
      display: none;
      background: transparent;
      border: none;
      padding: 0.5rem;
      cursor: pointer;
      width: 44px; height: 44px;
      flex-direction: column; justify-content: center; align-items: center;
      gap: 5px;
    }
    .nav-toggle span {
      display: block;
      width: 26px; height: 3px;
      background: var(--white);
      border-radius: 2px;
      transition: transform 0.25s, opacity 0.25s;
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* ── RESPONSIVE ── */
    @media (max-width: 820px) {
      nav { padding: 0 1rem; flex-wrap: wrap; }
      .nav-toggle { display: flex; }
      .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        background: var(--navy-dark);
        padding: 0.75rem 0 1rem;
        gap: 0;
        border-top: 1px solid rgba(255,255,255,0.08);
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
      }
      .nav-links.open { display: flex; }
      .nav-links li { width: 100%; }
      .nav-links a {
        display: block;
        padding: 0.85rem 0.5rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
      }
      .nav-links li:last-child a { border-bottom: none; }
      .btn-nav {
        margin-top: 0.5rem;
        text-align: center;
      }
      .booking-layout { grid-template-columns: 1fr; gap: 2.5rem; }
      .form-row { grid-template-columns: 1fr; }
      .trust-divider { display: none; }
      section { padding: 3.5rem 1.25rem; }
    }

    @media (max-width: 480px) {
      .hero-actions { flex-direction: column; align-items: center; }
      .btn-primary, .btn-ghost { width: 100%; max-width: 280px; text-align: center; }
    }

    /* ────────────────────────────────────────────────────────────
       LAKESIDE BOAT CLUB PARTNERSHIP STYLES
       Added 2026-05-15 — partner strip on homepage, partners.html,
       lakeside-members.html, footer partner badge.
       Uses existing design tokens (--navy, --orange, etc.)
       Lakeside brand color: #1F3A6A navy (close to ours), #F5C518 yellow
       ──────────────────────────────────────────────────────────── */

    :root {
      --lsbc-yellow: #F5C518;
      --lsbc-navy: #1F3A6A;
    }

    /* ── PARTNER STRIP (on homepage between reviews and booking) ── */
    .partner-strip {
      background: var(--light);
      padding: 3.5rem 2rem;
    }
    .partner-strip .container { max-width: 1080px; margin: 0 auto; }
    .partner-strip .section-label { text-align: center; margin-bottom: 1.25rem; }
    .partner-strip-card {
      display: flex; align-items: center; gap: 1.75rem;
      background: var(--white);
      border: 2px solid var(--border);
      border-radius: 16px;
      padding: 1.5rem 2rem;
      text-decoration: none;
      color: inherit;
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
      max-width: 980px; margin: 0 auto;
    }
    .partner-strip-card:hover {
      border-color: var(--lsbc-yellow);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(31,58,106,0.12);
    }
    .partner-strip-logo { height: 84px; width: auto; flex-shrink: 0; }
    .partner-strip-text { flex: 1; }
    .partner-strip-text h3 { color: var(--navy-dark); font-size: 1.35rem; margin-bottom: 0.4rem; font-weight: 800; }
    .partner-strip-text p { color: var(--gray); font-size: 0.97rem; line-height: 1.55; margin: 0; }
    .partner-strip-text strong { color: var(--orange); }
    .partner-strip-arrow { font-size: 2rem; color: var(--orange); font-weight: 300; flex-shrink: 0; }

    @media (max-width: 700px) {
      .partner-strip-card { flex-direction: column; text-align: center; padding: 1.5rem; }
      .partner-strip-logo { height: 72px; }
      .partner-strip-arrow { display: none; }
    }

    /* ── FOOTER PARTNER BADGE ── */
    .footer-partner-badge {
      display: inline-flex; align-items: center; gap: 0.7rem;
      background: rgba(255,255,255,0.06);
      padding: 0.65rem 1.1rem;
      border-radius: 8px;
      margin: 1rem auto 0;
      font-size: 0.88rem;
      color: rgba(255,255,255,0.85);
    }
    .footer-partner-icon {
      width: 32px; height: 32px;
      background: var(--white);
      border-radius: 50%;
      padding: 3px;
    }
    .footer-partner-badge a {
      color: var(--lsbc-yellow);
      text-decoration: none;
      font-weight: 600;
    }
    .footer-partner-badge a:hover { text-decoration: underline; }

    /* ── PARTNER PAGE HERO (partners.html) ── */
    .partner-hero {
      background: linear-gradient(160deg, var(--navy-dark) 0%, #1a2b6b 55%, #1e3080 100%);
      min-height: 60vh;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; padding: 6rem 2rem 4rem;
      color: var(--white);
    }
    .partner-hero .eyebrow {
      color: var(--lsbc-yellow);
      text-transform: uppercase;
      letter-spacing: 0.15em;
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    .partner-hero h1 {
      font-size: clamp(2rem, 5vw, 3rem);
      margin-bottom: 1rem;
      line-height: 1.1;
    }
    .partner-hero .lead {
      max-width: 720px; margin: 0 auto 2.5rem;
      font-size: 1.1rem; line-height: 1.6;
      color: rgba(255,255,255,0.9);
    }
    .partner-logos {
      display: flex; align-items: center; justify-content: center; gap: 2rem;
      flex-wrap: wrap;
    }
    .partner-logos .lakeside-logo-box {
      background: var(--white);
      border-radius: 14px;
      padding: 1rem;
      box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    }
    .partner-logos .lakeside-logo-box img { height: 140px; width: auto; display: block; }
    .partner-logos .x-divider {
      color: var(--lsbc-yellow);
      font-size: 2.5rem;
      font-weight: 300;
    }
    .partner-logos .wp-logo-box {
      background: var(--white);
      border-radius: 14px;
      padding: 1.25rem 1.75rem;
      box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    }
    .partner-logos .wp-logo-box img { height: 96px; width: auto; display: block; }

    /* ── PARTNER PAGE SECTIONS ── */
    .partner-section {
      padding: 4rem 2rem;
    }
    .partner-section.alt { background: var(--light); }
    .partner-section .container { max-width: 1080px; margin: 0 auto; }
    .partner-section h2 {
      color: var(--navy-dark);
      font-size: clamp(1.5rem, 3vw, 2rem);
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    .partner-section p { color: #2a3340; line-height: 1.7; margin-bottom: 1rem; font-size: 1.02rem; }
    .partner-section p a { color: var(--orange); font-weight: 600; }
    .partner-section .lakeside-services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.25rem;
      margin-top: 1.75rem;
    }
    .partner-section .lakeside-service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 1.5rem;
      box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    }
    .partner-section .lakeside-service-card h3 {
      color: var(--navy-dark);
      margin-bottom: 0.6rem;
      font-size: 1.1rem;
    }
    .partner-section .lakeside-service-card p {
      font-size: 0.95rem;
      margin: 0;
      color: var(--gray);
    }
    .partner-section .lakeside-service-card a { color: var(--orange); font-weight: 600; }

    a.big-cta-link, .big-cta-link {
      display: inline-block;
      background: var(--orange);
      color: var(--white) !important;
      padding: 0.95rem 2rem;
      border-radius: 8px;
      text-decoration: none;
      font-weight: 700;
      font-size: 1.05rem;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    a.big-cta-link:hover, .big-cta-link:hover {
      background: var(--orange-light);
      color: var(--white) !important;
      transform: translateY(-2px);
      box-shadow: 0 7px 24px rgba(212,73,26,0.45);
    }

    /* ── MEMBER PAGE (lakeside-members.html) ── */
    .member-hero {
      background: linear-gradient(160deg, var(--navy-dark) 0%, #1a2b6b 55%, #1e3080 100%);
      padding: 4.5rem 2rem 3rem;
      text-align: center;
      color: var(--white);
    }
    .member-hero-logo {
      width: 110px; height: auto;
      background: var(--white);
      border-radius: 50%;
      padding: 0.55rem;
      margin-bottom: 1rem;
    }
    .member-hero h1 {
      font-size: clamp(1.8rem, 4vw, 2.5rem);
      margin-bottom: 0.75rem;
    }
    .member-hero .lead {
      max-width: 640px; margin: 0 auto;
      font-size: 1.05rem;
      color: rgba(255,255,255,0.9);
      line-height: 1.6;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
      margin: 1.75rem 0;
    }
    .price-card {
      background: var(--white);
      border: 2px solid var(--border);
      border-radius: 12px;
      padding: 1.75rem;
      text-align: center;
      position: relative;
    }
    .price-card.highlight { border-color: var(--lsbc-yellow); }
    .price-card.highlight::before {
      content: "Most Common";
      position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      background: var(--lsbc-yellow);
      color: var(--navy-dark);
      padding: 0.25rem 0.85rem;
      border-radius: 12px;
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .price-card h3 {
      color: var(--navy-dark);
      margin-bottom: 0.4rem;
      font-size: 1.2rem;
    }
    .price-amount {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--navy-dark);
      margin: 0.4rem 0 0.2rem;
    }
    .price-sub {
      color: var(--gray);
      font-size: 0.88rem;
      margin-bottom: 0.75rem;
    }
    .price-note {
      font-size: 0.82rem;
      color: var(--gray);
      line-height: 1.5;
    }

    .info-box {
      background: #fff8e1;
      border-left: 4px solid var(--lsbc-yellow);
      padding: 1rem 1.25rem;
      border-radius: 4px;
      margin-top: 1rem;
      font-size: 0.95rem;
      color: #5a4a16;
    }

    .booking-form {
      background: var(--white);
      padding: 1.75rem;
      border-radius: 12px;
      border: 1px solid var(--border);
      margin-top: 1rem;
    }
    .booking-form .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    .booking-form .form-row.full { grid-template-columns: 1fr; }
    .booking-form label {
      display: block;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--navy-dark);
    }
    .booking-form input[type="text"],
    .booking-form input[type="tel"],
    .booking-form input[type="email"],
    .booking-form input[type="date"],
    .booking-form input[type="time"],
    .booking-form input[type="number"],
    .booking-form select,
    .booking-form textarea {
      width: 100%;
      padding: 0.6rem 0.75rem;
      border: 1px solid var(--border);
      border-radius: 6px;
      font-size: 0.95rem;
      margin-top: 0.35rem;
      font-family: inherit;
      color: #1F2937;
      background: var(--white);
    }
    .booking-form input:focus,
    .booking-form select:focus,
    .booking-form textarea:focus {
      outline: none;
      border-color: var(--navy);
      box-shadow: 0 0 0 3px rgba(26,43,107,0.12);
    }
    .checkbox-label {
      display: flex; gap: 0.65rem; align-items: flex-start;
      font-weight: 400; font-size: 0.88rem; line-height: 1.5;
      color: #2a3340;
    }
    .checkbox-label input[type="checkbox"] { margin-top: 0.2rem; flex-shrink: 0; }
    .booking-form button[type="submit"] {
      background: var(--orange);
      color: var(--white);
      padding: 0.9rem 1.75rem;
      border: none;
      border-radius: 8px;
      font-weight: 700;
      font-size: 1.02rem;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    }
    .booking-form button[type="submit"]:hover {
      background: var(--orange-light);
      transform: translateY(-2px);
      box-shadow: 0 7px 24px rgba(212,73,26,0.45);
    }
    .small-note {
      font-size: 0.82rem;
      color: var(--gray);
      margin-top: 0.75rem;
    }
    .success-box {
      background: #e8f5e9;
      border-left: 4px solid #4caf50;
      padding: 1.25rem 1.5rem;
      border-radius: 4px;
      margin-top: 1.25rem;
    }
    .success-box h3 { color: #2e7d32; margin-bottom: 0.4rem; }
    .success-box p { margin: 0.4rem 0; color: #2a3340; }
    .success-box a { color: var(--orange); }

    .member-faq {
      padding-left: 1.25rem;
    }
    .member-faq li {
      margin-bottom: 0.85rem;
      font-size: 0.97rem;
      line-height: 1.6;
      color: #2a3340;
    }
    .member-faq strong { color: var(--navy-dark); }

    /* ── MEMBER PAGE GATE ── */
    #gate-block {
      min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(160deg, var(--navy-dark) 0%, #1a2b6b 55%, #1e3080 100%);
      padding: 2rem;
    }
    .gate-card {
      background: var(--white);
      border-radius: 16px;
      padding: 2.5rem 2rem;
      max-width: 420px; width: 100%;
      text-align: center;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    }
    .gate-icon { width: 80px; height: auto; margin-bottom: 0.85rem; }
    .gate-card h1 {
      color: var(--navy-dark);
      margin-bottom: 0.5rem;
      font-size: 1.5rem;
    }
    .gate-card p { color: var(--gray); margin-bottom: 0.4rem; font-size: 0.95rem; }
    .gate-card form { display: flex; gap: 0.5rem; margin: 1.25rem 0 0.75rem; }
    .gate-card input {
      flex: 1;
      padding: 0.75rem 0.85rem;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-size: 1rem;
      text-align: center;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #1F2937;
    }
    .gate-card button {
      background: var(--orange);
      color: var(--white);
      border: none;
      padding: 0.75rem 1.4rem;
      border-radius: 8px;
      font-weight: 700;
      cursor: pointer;
      font-size: 0.95rem;
      transition: background 0.2s;
    }
    .gate-card button:hover { background: var(--orange-light); }
    .gate-back { margin-top: 1rem; }
    .gate-back a { color: var(--orange); text-decoration: none; font-weight: 600; font-size: 0.88rem; }

    @media (max-width: 700px) {
      .booking-form .form-row { grid-template-columns: 1fr; }
      .partner-logos { gap: 1rem; }
      .partner-logos .lakeside-logo-box img { height: 100px; }
      .partner-logos .wp-logo-box img { height: 72px; }
      .partner-logos .x-divider { font-size: 2rem; }
    }

    /* ── PAYMENT STEP (Stripe links) ── */
    .pay-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      margin: 1.75rem 0 0.5rem;
    }
    .pay-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.4rem;
      background: var(--white);
      border: 2px solid var(--border);
      border-radius: 14px;
      padding: 1.75rem 1.5rem;
      text-decoration: none;
      color: inherit;
      transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
      position: relative;
    }
    .pay-card:hover {
      border-color: var(--orange);
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(212,73,26,0.18);
    }
    .pay-card.highlight { border-color: var(--lsbc-yellow); }
    .pay-card.highlight:hover { border-color: var(--orange); }
    .pay-ramp {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--navy-dark);
    }
    .pay-amount {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--navy-dark);
      line-height: 1;
      margin: 0.25rem 0 0.4rem;
    }
    .pay-cta {
      display: inline-block;
      background: var(--orange);
      color: var(--white) !important;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      font-weight: 700;
      font-size: 1rem;
      margin: 0.4rem 0 0.6rem;
      transition: background 0.2s;
    }
    .pay-card:hover .pay-cta { background: var(--orange-light); }
    .pay-note {
      font-size: 0.82rem;
      color: var(--gray);
      line-height: 1.4;
      max-width: 240px;
    }
