:root {
    --cream:      #FFF7DF;
    --cream2:     #F5EBCB;
    --cream3:     #EDE0BC;
    --red:        #FC599C;
    --red-dark:   #D93D80;
    --gold:       #C9972B;
    --gold-light: #F0C050;
    --gold-shine: #FFE08A;
    --pink:       #FC599C;
    --brown:      #705338;
    --brown-lite: #9C7A55;
    --dark:       #2B1A0E;
    --ink:        #3D2410;
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--ink);
    font-family: 'Lora', Georgia, serif;
    overflow-x: hidden;
  }

  /* ── TEXTURE OVERLAY ── */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
  }

  /* ─────────────── NAV ─────────────── */
  nav {
    background: var(--red);
    border-bottom: 4px solid var(--gold);
    position: sticky; top: 0; z-index: 100;
    padding: 0 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 80px;
    gap: 1rem;
  }
  .nav-logo {
    font-family: 'Pacifico', cursive;
    color: var(--cream);
    font-size: 1.8rem;
    text-decoration: none;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-logo span { color: var(--gold-shine); }
  .nav-links {
    display: flex; gap: 1rem; list-style: none;
    align-items: center;
  }
  .nav-links a {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,247,223,0.9);
    text-decoration: none;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color .2s, border-color .2s;
    white-space: nowrap;
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--gold-shine);
    border-color: var(--gold-shine);
  }
  .nav-cta {
    background: var(--gold) !important;
    color: var(--cream) !important;
    border: none !important;
    padding: 8px 20px !important;
    border-radius: 2px;
    transition: background .2s !important;
    position: relative !important;
  }
  .nav-cta:hover { background: var(--gold-light) !important; color: var(--ink) !important; }
  .nav-cta::after {
    content: attr(data-phone);
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--ink);
    color: var(--gold-shine);
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 8px 16px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
    border-top: 2px solid var(--gold);
  }
  .nav-hamburger { display: none; }

  /* ─────────────── PAGES ─────────────── */
  .page { display: none; }
  .page.active { display: block; }

  /* ─────────────── HERO ─────────────── */
  .hero {
    background: var(--cream);
    min-height: calc(100vh - 94px);
    display: grid;
    grid-template-columns: 55% 45%;
    position: relative;
    overflow: hidden;
    align-items: stretch;
    margin-top: 0;
    padding-top: 0;
  }
  .hero::after {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(201,151,43,0.025) 3px,
      rgba(201,151,43,0.025) 4px
    );
    pointer-events: none;
  }
  .hero-left {
    display: flex; flex-direction: column; justify-content: flex-start;
    padding: 2.5rem 2rem 2rem 3rem;
    position: relative; z-index: 2;
  }
  .hero-eyebrow {
    font-family: 'Oswald', sans-serif;
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: flex; align-items: center; gap: 10px;
  }
  .hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px; height: 2px;
    background: var(--gold);
  }
  .hero h1 {
    font-family: 'Pacifico', cursive;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 1rem;
  }
  .hero h1 .accent { color: var(--red); }
  .hero-sub {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brown-lite);
    margin-bottom: 0.6rem;
    opacity: 0.85;
  }
  .hero-desc {
    color: var(--brown-lite);
    font-size: 0.92rem;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 1.25rem;
  }
  .hero-btns {
    display: flex; gap: 1rem; flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }

  /* ── CONTACT FORM IN HERO ── */
  .hero-contact-form {
    background: var(--cream2);
    border: 1px solid rgba(201,151,43,0.25);
    border-left: 4px solid var(--gold);
    padding: 1.25rem;
    max-width: 100%;
  }
  .hero-contact-form h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.75rem;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  .form-row.single { grid-template-columns: 1fr; }
  .hero-contact-form input,
  .hero-contact-form select,
  .hero-contact-form textarea {
    width: 100%;
    font-family: 'Lora', serif;
    font-size: 0.82rem;
    padding: 0.5rem 0.65rem;
    border: 1px solid rgba(201,151,43,0.3);
    background: var(--cream);
    color: var(--ink);
    outline: none;
    transition: border-color .2s;
  }
  .hero-contact-form input:focus,
  .hero-contact-form select:focus,
  .hero-contact-form textarea:focus { border-color: var(--gold); }
  .hero-contact-form textarea { resize: none; height: 55px; }
  .hero-contact-form select { cursor: pointer; }
  .form-submit {
    width: 100%;
    margin-top: 0.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    background: var(--red);
    color: var(--cream);
    border: none;
    padding: 11px;
    cursor: pointer;
    transition: background .2s;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  }
  .form-submit:hover { background: var(--red-dark); }
  .form-success {
    display: none;
    text-align: center;
    padding: 1rem;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
  }
  .btn-primary {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    background: var(--red);
    color: var(--cream);
    border: none;
    padding: 14px 32px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background .2s, transform .15s;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  }
  .btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
  .btn-outline {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    background: transparent;
    color: var(--ink);
    border: 2px solid rgba(61,36,16,0.3);
    padding: 12px 30px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color .2s, color .2s, background .2s;
  }
  .btn-outline:hover { border-color: var(--red); color: var(--red); }

  .hero-right {
    display: flex; align-items: flex-end; justify-content: center;
    position: relative; overflow: hidden;
    background: var(--red);
  }
  .hero-right::before {
    content: '';
    position: absolute;
    top: 0; left: -40px; bottom: 0;
    width: 80px;
    background: var(--cream);
    clip-path: polygon(0 0, 40px 0, 100% 100%, 0 100%);
    z-index: 3;
  }
  .hero-circle {
    position: absolute;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,151,43,0.2) 0%, transparent 70%);
    bottom: -60px; right: -40px;
  }
  .hero-mascot {
    width: 90%;
    max-width: 480px;
    max-height: 90%;
    object-fit: contain;
    object-position: bottom center;
    position: absolute;
    bottom: 0;
    z-index: 2;
    filter: drop-shadow(0 10px 40px rgba(0,0,0,0.2));
    animation: float 4s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }

  /* badge strip */
  .badge-strip {
    background: var(--gold);
    padding: 14px 0;
    display: flex; justify-content: center; gap: 4rem;
    overflow: hidden;
  }
  .badge-item {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cream);
    display: flex; align-items: center; gap: 8px;
    white-space: nowrap;
  }
  .badge-item::before {
    content: '★';
    color: var(--gold-shine);
    font-size: 0.7rem;
  }

  /* ── SECTION COMMON ── */
  section { padding: 6rem 2rem; }
  section.hero { padding: 0; }
  .container { max-width: 1100px; margin: 0 auto; }

  .section-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    display: flex; align-items: center; gap: 10px;
  }
  .section-label::before {
    content: '';
    display: inline-block;
    width: 24px; height: 2px;
    background: var(--gold);
  }
  .section-title {
    font-family: 'Pacifico', cursive;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 1rem;
  }
  .section-title .accent { color: var(--red); }

  /* ── ABOUT STRIP ── */
  .about-strip {
    background: var(--cream2);
    padding: 5rem 2rem;
    border-top: 4px solid var(--gold);
    border-bottom: 4px solid var(--gold);
  }
  .about-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
  }
  .about-text .section-title { color: var(--ink); }
  .about-text p {
    color: var(--brown-lite);
    line-height: 1.8; font-size: 1.05rem;
    margin-bottom: 1.25rem;
  }
  .about-logo {
    display: flex; justify-content: center; align-items: center;
  }
  .about-logo img {
    width: 320px;
    max-width: 100%;
    border-radius: 50%;
    mix-blend-mode: multiply;
    animation: pulse-glow 3s ease-in-out infinite;
  }
  @keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 10px 40px rgba(201,151,43,0.3)); }
    50% { filter: drop-shadow(0 10px 60px rgba(201,151,43,0.6)); }
  }

  /* ── SERVICES HOME PREVIEW ── */
  .services-preview { background: var(--cream); }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem; margin-top: 3rem;
  }
  .service-card {
    background: var(--cream2);
    border: 2px solid transparent;
    border-top: 4px solid var(--red);
    padding: 2rem 1.75rem;
    transition: border-color .25s, transform .2s, box-shadow .25s;
    position: relative;
    cursor: default;
  }
  .service-card:hover {
    border-color: var(--gold);
    border-top-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(201,151,43,0.15);
  }
  .service-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: block;
  }
  .service-card h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.6rem;
  }
  .service-card p {
    color: var(--brown-lite);
    font-size: 0.92rem;
    line-height: 1.65;
  }

  /* ── WHY US ── */
  .why-us { background: var(--cream2); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem; margin-top: 3rem;
  }
  .why-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--cream);
    border: 1px solid rgba(201,151,43,0.2);
    position: relative;
  }
  .why-card::before {
    content: '';
    position: absolute; top: 0; left: 50%;
    transform: translateX(-50%);
    width: 50px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
  }
  .why-num {
    font-family: 'Pacifico', cursive;
    font-size: 3.5rem;
    color: rgba(245,61,51,0.1);
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  .why-card h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.75rem;
  }
  .why-card p {
    color: var(--brown-lite);
    font-size: 0.9rem;
    line-height: 1.7;
  }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--red); padding: 5rem 2rem; }
  .testimonials .section-title { color: var(--cream); }
  .testimonials .section-title .accent { color: var(--gold-shine); }
  .testimonials .section-label { color: var(--gold-shine); }
  .testimonials .section-label::before { background: var(--gold-shine); }
  .testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem; margin-top: 3rem;
  }
  .testi-card {
    background: rgba(255,247,223,0.12);
    border: 1px solid rgba(255,247,223,0.2);
    border-left: 4px solid var(--gold);
    padding: 2rem;
  }
  .testi-stars { color: var(--gold-shine); font-size: 0.9rem; margin-bottom: 1rem; }
  .testi-card p {
    color: rgba(255,247,223,0.9);
    font-style: italic;
    line-height: 1.75;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  .testi-author {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-shine);
  }

  /* ── CTA BAND ── */
  .cta-band {
    background: var(--cream2);
    border-top: 5px solid var(--red);
    border-bottom: 5px solid var(--red);
    padding: 4rem 2rem;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: 'POPS';
    position: absolute;
    font-family: 'Pacifico', cursive;
    font-size: 20rem;
    color: rgba(245,61,51,0.05);
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    white-space: nowrap;
    pointer-events: none;
  }
  .cta-band h2 {
    font-family: 'Pacifico', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ink);
    margin-bottom: 0.75rem;
    position: relative;
  }
  .cta-band p {
    color: var(--brown-lite);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    position: relative;
  }
  .btn-white {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.85rem;
    background: var(--red);
    color: var(--cream);
    border: none;
    padding: 14px 36px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background .2s, transform .15s;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    position: relative;
  }
  .btn-white:hover { background: var(--red-dark); transform: translateY(-2px); }

  /* ─────────────── SERVICES PAGE ─────────────── */
  .services-hero {
    background: var(--cream);
    padding: 6rem 2rem 4rem;
    text-align: center;
    border-bottom: 4px solid var(--gold);
  }
  .services-hero h1 {
    font-family: 'Pacifico', cursive;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--ink);
  }
  .services-hero p {
    color: var(--brown-lite);
    max-width: 540px; margin: 1rem auto 0;
    font-size: 1.05rem; line-height: 1.7;
  }
  .services-hero .section-label {
    color: var(--gold);
  }
  .services-hero .section-label::before {
    background: var(--gold);
  }
  .page-divider {
    height: 6px;
    background: repeating-linear-gradient(
      90deg,
      var(--gold) 0px,
      var(--gold) 20px,
      var(--cream3) 20px,
      var(--cream3) 24px
    );
  }

  .services-full { background: var(--cream); padding: 5rem 2rem; }
  .service-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    padding: 2.5rem;
    margin-bottom: 1.25rem;
    background: var(--cream2);
    border-left: 5px solid var(--red);
    transition: transform .2s, box-shadow .2s, border-color .2s;
  }
  .service-row:hover { transform: translateX(6px); border-left-color: var(--gold); box-shadow: -4px 0 0 var(--gold-light); }
  .service-row-icon {
    font-size: 2.5rem;
    display: flex; align-items: center; justify-content: center;
  }
  .service-row h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.5rem;
  }
  .service-row p {
    color: var(--brown-lite);
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* ─────────────── FAQ PAGE ─────────────── */
  .faq-section { background: var(--cream); padding: 5rem 2rem; }
  .faq-list { max-width: 780px; margin: 3rem auto 0; }
  .faq-item {
    border-bottom: 1px solid rgba(201,151,43,0.25);
    padding: 1.5rem 0;
  }
  .faq-q {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ink);
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem;
    user-select: none;
  }
  .faq-q::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--gold);
    line-height: 1;
    transition: transform .2s;
    flex-shrink: 0;
  }
  .faq-item.open .faq-q::after { transform: rotate(45deg); }
  .faq-a {
    color: var(--brown-lite);
    font-size: 0.97rem;
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s;
  }
  .faq-item.open .faq-a {
    max-height: 300px;
    padding-top: 1rem;
  }

  /* ─────────────── BLOG PAGE ─────────────── */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem; margin-top: 3rem;
  }
  .blog-card {
    background: var(--cream2);
    border: 1px solid rgba(201,151,43,0.15);
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
  }
  .blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(201,151,43,0.2); }
  .blog-thumb {
    height: 180px;
    background: var(--red);
    display: flex; align-items: center; justify-content: center;
    font-size: 4rem;
    position: relative; overflow: hidden;
  }
  .blog-thumb-bg {
    position: absolute; inset: 0;
    opacity: 0.15;
    background-size: cover; background-position: center;
  }
  .blog-body { padding: 1.75rem; }
  .blog-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }
  .blog-card h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    color: var(--ink);
    margin-bottom: 0.6rem;
    line-height: 1.3;
  }
  .blog-card p {
    color: var(--brown-lite);
    font-size: 0.88rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }
  .blog-date {
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(156,122,85,0.6);
  }

  /* ─────────────── FOOTER ─────────────── */
  footer {
    background: var(--red);
    border-top: 4px solid var(--gold);
    padding: 3.5rem 2rem 2rem;
  }
  .footer-inner {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
  }
  .footer-brand p {
    color: rgba(255,247,223,0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 0.75rem;
    max-width: 300px;
  }
  .footer-brand .nav-logo { display: block; margin-bottom: 0.5rem; }
  .footer-col h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-shine);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,247,223,0.2);
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 0.5rem; }
  .footer-col a {
    color: rgba(255,247,223,0.7);
    text-decoration: none;
    font-size: 0.88rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    transition: color .2s;
  }
  .footer-col a:hover { color: var(--gold-shine); }
  .footer-bottom {
    max-width: 1100px; margin: 2.5rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,247,223,0.15);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
  }
  .footer-bottom p {
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,247,223,0.45);
  }
  .pink-accent { color: var(--gold-shine); }

  /* ── MULTI-SELECT DROPDOWN ── */
  .multi-select-wrap { position: relative; width: 100%; }
  .multi-select-btn {
    width: 100%;
    background: var(--cream2);
    border: 1px solid rgba(201,151,43,0.35);
    padding: 0.5rem 0.65rem;
    font-family: 'Lora', serif;
    font-size: 0.82rem;
    color: var(--brown-lite);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .multi-select-btn:focus { outline: 2px solid var(--red); }
  .multi-select-arrow { font-size: 0.75rem; transition: transform 0.2s; }
  .multi-select-btn.open .multi-select-arrow { transform: rotate(180deg); }
  .multi-select-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    border: 1px solid rgba(201,151,43,0.35);
    border-top: none;
    z-index: 200;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .multi-select-dropdown.open { display: block; }
  .multi-select-dropdown label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.75rem;
    font-family: 'Lora', serif;
    font-size: 0.82rem;
    color: var(--ink);
    cursor: pointer;
    transition: background 0.15s;
  }
  .multi-select-dropdown label:hover { background: var(--cream2); }
  .multi-select-dropdown input[type="checkbox"] { accent-color: var(--red); width: 14px; height: 14px; flex-shrink: 0; }

  /* ── PHOTO STRIP ── */
  .photo-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 280px;
    overflow: hidden;
  }
  @media (max-width: 1100px) {
    .mascot-desktop-only { display: none !important; }
  }
  @media (max-width: 800px) {
    /* ── NAV ── */
    nav { height: 65px; padding: 0 1.25rem; }
    .nav-logo { font-size: 1.4rem; }
    .nav-links { display: none; flex-direction: column; position: fixed; top: 65px; left: 0; right: 0; background: var(--red); border-bottom: 4px solid var(--gold); padding: 1rem 0 1.5rem; z-index: 999; gap: 0; }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 0.75rem 1.5rem; font-size: 1rem; letter-spacing: 2px; border-bottom: none; border-top: 1px solid rgba(255,247,223,0.1); }
    .nav-links a:hover, .nav-links a.active { background: rgba(255,247,223,0.08); color: var(--gold-shine); }
    .nav-cta { margin: 0.75rem 1.5rem 0; display: block; text-align: center; clip-path: none !important; border-radius: 2px; }
    .nav-hamburger { display: flex; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
    .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: all .3s; }
    .nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-hamburger.open span:nth-child(2) { opacity: 0; }
    .nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* ── HERO ── */
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { display: none; }
    .hero-left { padding: 2rem 1.25rem 1.5rem; }
    .hero h1 { font-size: 2.4rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns a, .hero-btns button { width: 100%; text-align: center; }
    .hero-contact-form { max-width: 100%; }
    .form-row { grid-template-columns: 1fr; }

    /* ── BADGE STRIP ── */
    .badge-strip { gap: 1rem; flex-wrap: wrap; padding: 12px 1rem; font-size: 0.7rem; }

    /* ── ABOUT ── */
    .about-inner { grid-template-columns: 1fr; }
    .about-logo { margin-top: 2rem; }
    .about-logo img { width: 200px; }

    /* ── PHOTO STRIP ── */
    .photo-strip-grid {
      grid-template-columns: 1fr 1fr !important;
      grid-template-rows: 180px 240px !important;
      height: auto !important;
    }

    /* ── SERVICES PREVIEW ── */
    .services-grid { grid-template-columns: 1fr; }

    /* ── WHY US ── */
    .why-grid { grid-template-columns: 1fr; }
    section.why-us img { display: none; }

    /* ── TESTIMONIALS ── */
    .testimonials .container { padding: 0 1rem; }
    #review-track { margin: 0 1rem; }

    /* ── SECTION TITLES ── */
    .section-title { font-size: clamp(1.8rem, 6vw, 2.8rem); }

    /* ── PAGE HEADERS ── */
    .services-hero { padding: 3rem 1.25rem 2rem; }
    .services-hero h1 { font-size: 2.2rem; }
    .services-hero img.mascot { display: none; }

    /* ── SERVICES FULL PAGE ── */
    .service-row { flex-direction: column; gap: 0.75rem; }
    .service-row-icon { font-size: 2rem; }

    /* ── LAWN CARE ── */
    .lawn-programs-grid { grid-template-columns: 1fr !important; }
    .lawn-timeline { padding: 3rem 1.25rem; }
    .lawn-comparison { grid-template-columns: 1fr !important; }

    /* ── FAQ ── */
    .faq-list { padding: 2rem 1.25rem; }

    /* ── BLOG ── */
    .blog-grid { grid-template-columns: 1fr !important; }

    /* ── DEALS ── */
    .deals-hero { padding: 3rem 1.25rem 2rem; }
    .deals-hero img { display: none; }
    .earn-strip { grid-template-columns: repeat(2,1fr) !important; }
    .pops-circle-grid { grid-template-columns: 1fr !important; }
    .prepay-grid { grid-template-columns: 1fr !important; }

    /* ── MEET THE CREW ── */
    .story-inner { grid-template-columns: 1fr !important; }
    .story-photo { margin-top: 2rem; }
    .story-photo::before { display: none; }
    .crew-timeline-inner { padding-left: 0.5rem; }
    .crew-photo-grid-3 { grid-template-columns: 1fr !important; }
    .crew-photo-grid-2 { grid-template-columns: 1fr !important; }
    .crew-hero-photo { height: 260px; margin: 1rem 0; }

    /* ── CONTACT ── */
    .contact-inner { grid-template-columns: 1fr !important; }
    .svc-grid { grid-template-columns: 1fr !important; }
    .cf-row { grid-template-columns: 1fr !important; }
    .contact-info-side { margin-top: 2rem; }
    .contact-info-side img { width: 140px !important; }

    /* ── FOOTER ── */
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

    /* ── CTA BAND ── */
    .cta-band { padding: 3rem 1.25rem; }
    .cta-band h2 { font-size: 1.8rem; }

    /* ── GENERAL ── */
    .container { padding: 0 1.25rem; }
    section { padding: 3rem 1.25rem; }
    section.hero { padding: 0; }
    /* ── LAWN choosing grid ── */
    .choosing-grid { grid-template-columns: 1fr !important; gap: 1rem !important; }

    /* ── DEALS referral layout ── */
    .referral-inner { grid-template-columns: 1fr !important; flex-direction: column !important; }
    .referral-section { padding: 2rem 1.25rem !important; overflow-x: hidden !important; }
    .wallet-grid { grid-template-columns: 1fr 1fr !important; }
    .referral-steps { margin-top: 2rem; }

    /* ── DEALS prepay tiers ── */
    .prepay-tiers, .tier-grid { grid-template-columns: 1fr !important; }

    /* ── SERVICE ROW: ensure icon sits above text ── */
    .service-row { display: flex !important; flex-direction: column !important; gap: 0.5rem !important; padding: 1.5rem 0 !important; border-bottom: 1px solid rgba(201,151,43,0.15); }
    .service-row-icon { font-size: 2rem !important; flex-shrink: 0; }
    .service-row > div { width: 100% !important; }


    /* ── MASCOT: hide all positioned mascots on mobile ── */
    .mascot-desktop-only { display: none !important; }
    /* ── WATERMARKS: hide on mobile ── */
    .watermark-text { display: none !important; }

    /* ── SERVICE ROWS: fix icon + text layout on mobile ── */
    .service-row { display: block !important; padding: 1.25rem 0; }
    .service-row-icon { display: inline-block; font-size: 1.6rem; margin-bottom: 0.5rem; }
    .service-row h3 { font-size: 1rem; margin-bottom: 0.4rem; }
    .service-row p { font-size: 0.9rem; line-height: 1.6; }
    .services-full .container { padding: 0 1.25rem; }

    /* ── LAWN: Choosing your program / comparison ── */
    .lawn-comparison-grid, .program-comparison, [class*="comparison"] {
      grid-template-columns: 1fr !important;
      overflow-x: hidden !important;
    }
    .lawn-comparison table { display: block; overflow-x: auto; font-size: 0.8rem; }
    .lawn-comparison td, .lawn-comparison th { padding: 0.4rem 0.5rem; white-space: normal; }

    /* ── DEALS: Refer & Earn section ── */
    .pops-circle-inner, .refer-earn-grid, .pops-circle-grid {
      grid-template-columns: 1fr !important;
      overflow-x: hidden !important;
    }
    .deals-section { padding: 2rem 1.25rem; overflow-x: hidden; }
    .deals-section * { max-width: 100%; box-sizing: border-box; }

    /* ── GENERAL: prevent any horizontal overflow ── */
    .page { overflow-x: hidden; }
    .page * { max-width: 100%; }
    img { max-width: 100%; height: auto; }
    table { max-width: 100%; display: block; overflow-x: auto; }

    /* ── TYLER SECTION: stack photo on top on mobile ── */
    .tyler-grid { grid-template-columns: 1fr !important; }
    .tyler-grid > div:first-child { height: 260px !important; }

  }

  /* ─────────────── LAWN CARE PAGE ─────────────── */
  .lawn-hero {
    background: var(--cream);
    padding: 6rem 2rem 4rem;
    text-align: center;
    border-bottom: 4px solid var(--gold);
    position: relative;
    overflow: hidden;
  }
  .lawn-hero::before {
    content: '🌿';
    position: absolute;
    font-size: 18rem;
    opacity: 0.04;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .lawn-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--cream);
    font-family: 'Oswald', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 14px;
    margin-bottom: 1.25rem;
  }
  .lawn-program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  .lawn-program-card {
    background: var(--brown);
    border-top: 5px solid var(--gold);
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform .2s, box-shadow .2s;
  }
  .lawn-program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(112,83,56,0.3);
  }
  .lawn-program-card.featured {
    border-top-color: var(--red);
    background: var(--ink);
  }
  .lawn-program-card.featured h3,
  .lawn-program-card.featured p { color: var(--cream); }
  .lawn-program-card.featured .lawn-card-icon { color: var(--gold-light); }
  .lawn-featured-tag {
    position: absolute;
    top: -1px; right: 1.5rem;
    background: var(--red);
    color: var(--cream);
    font-family: 'Oswald', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
  }
  .lawn-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--gold-shine);
  }
  .lawn-program-card h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 0.75rem;
  }
  .lawn-program-card p {
    color: rgba(255,247,223,0.78);
    font-size: 0.95rem;
    line-height: 1.75;
  }
  .lawn-timeline {
    max-width: 780px;
    margin: 3rem auto 0;
    position: relative;
  }
  .lawn-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--red));
  }
  .lawn-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
  }
  .lawn-step-num {
    width: 58px; height: 58px;
    border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Pacifico', cursive;
    font-size: 1.3rem;
    color: var(--cream);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
  }
  .lawn-step-body { padding-top: 0.75rem; }
  .lawn-step-body h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 0.4rem;
  }
  .lawn-step-season {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }
  .lawn-step-body p {
    color: var(--brown-lite);
    font-size: 0.93rem;
    line-height: 1.7;
  }
  .organic-strip {
    background: var(--ink);
    padding: 5rem 2rem;
  }
  .organic-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .organic-text .section-title { color: var(--cream); }
  .organic-text .section-label { color: var(--gold); }
  .organic-text .section-label::before { background: var(--gold); }
  .organic-text p {
    color: rgba(255,247,223,0.72);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }
  .organic-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
  .organic-perk {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .organic-perk-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 6px;
    flex-shrink: 0;
  }
  .organic-perk span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--cream2);
  }
  .organic-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .organic-stat {
    background: rgba(255,247,223,0.06);
    border-left: 4px solid var(--gold);
    padding: 1.25rem 1.5rem;
  }
  .organic-stat-num {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 0.25rem;
  }
  .organic-stat p {
    color: rgba(255,247,223,0.6) !important;
    font-size: 0.85rem !important;
    margin-bottom: 0 !important;
  }

  /* ─────────────── BLOG POST PAGES ─────────────── */
  .post-page { display: none; }
  .post-page.active { display: block; }
  .post-hero {
    background: var(--cream);
    padding: 4rem 2rem 3rem;
    border-bottom: 4px solid var(--gold);
  }
  .post-back {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
    margin-bottom: 2rem;
    transition: color .2s;
  }
  .post-back:hover { color: var(--red); }
  .post-back::before { content: '←'; font-size: 1rem; }
  .post-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
  }
  .post-title {
    font-family: 'Pacifico', cursive;
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: var(--ink);
    line-height: 1.2;
    max-width: 780px;
    margin-bottom: 1rem;
  }
  .post-meta {
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brown-lite);
  }
  .post-body {
    background: var(--cream);
    padding: 4rem 2rem 5rem;
  }
  .post-content {
    max-width: 720px;
    margin: 0 auto;
  }
  .post-content p {
    color: var(--ink);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
  }
  .post-content h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink);
    margin: 2.5rem 0 1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--red);
  }
  .post-content ul {
    margin: 0 0 1.5rem 1.5rem;
  }
  .post-content ul li {
    color: var(--ink);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 0.5rem;
  }
  .post-content ul li::marker { color: var(--red); }
  .post-callout {
    background: var(--cream2);
    border-left: 5px solid var(--gold);
    padding: 1.5rem 1.75rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--brown);
    font-size: 1rem;
    line-height: 1.75;
  }
  .post-cta {
    background: var(--red);
    border-radius: 2px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
  }
  .post-cta p {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--cream) !important;
    margin-bottom: 1rem !important;
  }

  /* ─────────────── DEALS PAGE ─────────────── */
  .deals-hero {
    background: var(--cream);
    padding: 6rem 2rem 4rem;
    text-align: center;
    border-bottom: 4px solid var(--gold);
    position: relative;
    overflow: hidden;
  }
  .deals-hero::before {
    content: '$';
    position: absolute;
    font-family: 'Pacifico', cursive;
    font-size: 28rem;
    color: rgba(201,151,43,0.05);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    line-height: 1;
  }
  .deals-hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--cream);
    font-family: 'Oswald', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 16px;
    margin-bottom: 1.25rem;
  }

  /* ── REFERRAL SECTION ── */
  .referral-section {
    background: var(--ink);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
  }
  .referral-section::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,151,43,0.1) 0%, transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none;
  }
  .referral-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  .referral-text .section-label { color: var(--gold); }
  .referral-text .section-label::before { background: var(--gold); }
  .referral-text .section-title { color: var(--cream); }
  .referral-text p {
    color: rgba(255,247,223,0.72);
    font-size: 1.02rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }
  .referral-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .referral-step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
  }
  .referral-step-num {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Pacifico', cursive;
    font-size: 1.1rem;
    color: var(--cream);
    flex-shrink: 0;
  }
  .referral-step-body h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--cream);
    margin-bottom: 0.3rem;
  }
  .referral-step-body p {
    color: rgba(255,247,223,0.62) !important;
    font-size: 0.9rem !important;
    line-height: 1.65 !important;
    margin-bottom: 0 !important;
  }

  /* ── WALLET CARDS ── */
  .wallet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
  }
  .wallet-card {
    background: rgba(255,247,223,0.06);
    border: 1px solid rgba(255,247,223,0.12);
    border-top: 4px solid var(--gold);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: background .2s, transform .2s;
  }
  .wallet-card:hover {
    background: rgba(255,247,223,0.1);
    transform: translateY(-3px);
  }
  .wallet-icon { font-size: 2rem; margin-bottom: 0.75rem; display: block; }
  .wallet-card h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-shine);
    margin-bottom: 0.4rem;
  }
  .wallet-card p {
    color: rgba(255,247,223,0.55);
    font-size: 0.82rem;
    line-height: 1.55;
  }

  /* ── EARN HIGHLIGHT ── */
  .earn-highlight {
    background: var(--red);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .earn-highlight::before {
    content: '$75';
    position: absolute;
    font-family: 'Pacifico', cursive;
    font-size: 16rem;
    color: rgba(255,255,255,0.06);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    line-height: 1;
    white-space: nowrap;
  }
  .earn-split {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    position: relative;
  }
  .earn-item { text-align: center; }
  .earn-num {
    font-family: 'Pacifico', cursive;
    font-size: 3.5rem;
    color: var(--gold-shine);
    line-height: 1;
    margin-bottom: 0.4rem;
  }
  .earn-label {
    font-family: 'Oswald', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,247,223,0.8);
  }

  /* ── MEMBERSHIP SECTION ── */
  .membership-section {
    background: var(--cream2);
    padding: 6rem 2rem;
    border-top: 4px solid var(--gold);
  }
  .membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  .membership-card {
    background: var(--cream);
    border-top: 6px solid var(--gold);
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform .2s, box-shadow .2s;
  }
  .membership-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(201,151,43,0.18);
  }
  .membership-card.platinum {
    background: var(--ink);
    border-top-color: var(--gold-light);
  }
  .membership-card.platinum h3,
  .membership-card.platinum p { color: var(--cream); }
  .membership-card.platinum .membership-price { color: var(--gold-light); }
  .membership-card.platinum .membership-tag { background: var(--gold-light); color: var(--ink); }
  .membership-tier {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }
  .membership-card.platinum .membership-tier { color: var(--gold-shine); }
  .membership-card h3 {
    font-family: 'Pacifico', cursive;
    font-size: 2rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
  }
  .membership-price {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
    display: block;
  }
  .membership-price span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
  }
  .membership-card p {
    color: var(--brown-lite);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 1rem;
  }
  .membership-perks {
    list-style: none;
    margin-top: 1.25rem;
  }
  .membership-perks li {
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ink);
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(201,151,43,0.15);
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .membership-card.platinum .membership-perks li { color: var(--cream2); border-bottom-color: rgba(255,247,223,0.1); }
  .membership-perks li::before { content: '✦'; color: var(--gold); font-size: 0.6rem; flex-shrink: 0; }
  .membership-card.platinum .membership-perks li::before { color: var(--gold-light); }
  .membership-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--cream);
    font-family: 'Oswald', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 12px;
    margin-bottom: 1rem;
  }
  .membership-not-sure {
    background: var(--cream);
    border: 2px dashed rgba(201,151,43,0.4);
    padding: 2.5rem;
    text-align: center;
    margin-top: 2rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
  .membership-not-sure h4 {
    font-family: 'Pacifico', cursive;
    font-size: 1.5rem;
    color: var(--ink);
    margin-bottom: 0.6rem;
  }
  .membership-not-sure p {
    color: var(--brown-lite);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }

  /* ─────────────── MEET THE CREW PAGE ─────────────── */
  .crew-hero { background:var(--cream); padding:5rem 2rem 4rem; border-bottom:4px solid var(--gold); position:relative; overflow:hidden; text-align:center; }
  .story-section { background:var(--cream); padding:5rem 2rem; }
  .story-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:center; }
  .story-text p { color:var(--brown-lite); font-size:1.02rem; line-height:1.85; margin-bottom:1.25rem; }
  .story-quote { background:var(--cream2); border-left:5px solid var(--gold); padding:1.25rem 1.5rem; font-style:italic; color:var(--ink); font-size:1.05rem; line-height:1.75; margin:1.5rem 0; }
  .story-photo { position:relative; }
  .story-photo img { width:100%; border-radius:2px; }
  .story-photo::before { content:''; position:absolute; inset:-8px; border:3px solid var(--gold); border-radius:2px; z-index:-1; }
  .crew-timeline { background:var(--cream2); padding:5rem 2rem; border-top:4px solid var(--gold); }
  .crew-timeline-inner { max-width:780px; margin:3rem auto 0; position:relative; }
  .crew-timeline-inner::before { content:''; position:absolute; left:22px; top:0; bottom:0; width:2px; background:linear-gradient(to bottom,var(--gold),var(--red)); }
  .tl-item { display:grid; grid-template-columns:48px 1fr; gap:1.25rem; margin-bottom:2.5rem; }
  .tl-dot { width:46px; height:46px; border-radius:50%; background:var(--gold); display:flex; align-items:center; justify-content:center; font-family:'Oswald',sans-serif; font-weight:700; font-size:0.72rem; color:var(--cream); letter-spacing:1px; flex-shrink:0; position:relative; z-index:2; text-align:center; line-height:1.2; }
  .tl-body h4 { font-family:'Oswald',sans-serif; font-weight:700; font-size:1rem; letter-spacing:1.5px; text-transform:uppercase; color:var(--ink); margin-bottom:0.3rem; padding-top:0.6rem; }
  .tl-body p { color:var(--brown-lite); font-size:0.92rem; line-height:1.7; }
  .crew-dark { background:var(--ink); padding:4rem 2rem; }
  .crew-photo-grid-3 { max-width:1100px; margin:2rem auto 1rem; display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
  .crew-photo-grid-2 { max-width:1100px; margin:1rem auto 0; display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
  .crew-photo-item { overflow:hidden; height:280px; position:relative; }
  .crew-photo-item img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
  .crew-photo-item:hover img { transform:scale(1.04); }
  .crew-hero-photo { max-width:1100px; margin:2rem auto 1rem; height:380px; overflow:hidden; position:relative; }
  .crew-hero-photo img { width:100%; height:100%; object-fit:cover; object-position:center 20%; }
  .crew-hero-photo-caption { position:absolute; inset:0; background:linear-gradient(to right,rgba(61,36,16,0.55) 0%,transparent 55%); display:flex; align-items:flex-end; padding:2rem; }

  /* ─────────────── CONTACT PAGE ─────────────── */
  .contact-hero { background:var(--cream); padding:5rem 2rem 4rem; border-bottom:4px solid var(--gold); text-align:center; position:relative; overflow:hidden; }
  .contact-body { background:var(--cream2); padding:5rem 2rem; }
  .contact-inner { max-width:1100px; margin:0 auto; display:grid; grid-template-columns:1.2fr 1fr; gap:4rem; align-items:start; }
  .contact-form-box { background:var(--cream); border:1px solid rgba(201,151,43,0.2); border-top:5px solid var(--gold); padding:2.5rem; }
  .contact-form-box h3 { font-family:'Pacifico',cursive; font-size:1.8rem; color:var(--ink); margin-bottom:0.5rem; }
  .contact-form-box > p { color:var(--brown-lite); font-size:0.92rem; margin-bottom:1.5rem; line-height:1.65; }
  .cf-row { display:grid; grid-template-columns:1fr 1fr; gap:0.75rem; margin-bottom:0.85rem; }
  .cf-field { margin-bottom:0.85rem; }
  .cf-field input, .cf-field select, .cf-field textarea, .cf-row input, .cf-row select {
    width:100%; font-family:'Lora',serif; font-size:0.9rem; padding:0.7rem 0.9rem;
    border:1px solid rgba(201,151,43,0.3); background:var(--cream2); color:var(--ink); outline:none; transition:border-color .2s; box-sizing:border-box;
  }
  .cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus { border-color:var(--gold); }
  .cf-field textarea { resize:none; height:110px; }
  .cf-submit { width:100%; margin-top:0.5rem; font-family:'Oswald',sans-serif; font-weight:700; letter-spacing:2px; text-transform:uppercase; font-size:0.9rem; background:var(--red); color:var(--cream); border:none; padding:14px; cursor:pointer; clip-path:polygon(6px 0%,100% 0%,calc(100% - 6px) 100%,0% 100%); }
  .cf-success { display:none; text-align:center; padding:2rem; font-family:'Oswald',sans-serif; font-size:1rem; letter-spacing:1px; text-transform:uppercase; color:var(--gold); }
  .svc-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:0.6rem; margin:1.5rem 0 2rem; }
  .svc-btn { font-family:'Oswald',sans-serif; font-size:0.72rem; font-weight:600; letter-spacing:1px; text-transform:uppercase; padding:0.7rem 0.5rem; border:1.5px solid rgba(201,151,43,0.3); background:var(--cream2); color:var(--brown-lite); cursor:pointer; text-align:center; transition:all .2s; line-height:1.3; }
  .svc-btn:hover, .svc-btn.selected { background:var(--red); color:var(--cream); border-color:var(--red); }
  .contact-info-side h3 { font-family:'Pacifico',cursive; font-size:1.6rem; color:var(--ink); margin-bottom:1rem; }
  .ci-item { display:flex; gap:1rem; align-items:flex-start; margin-bottom:1.5rem; }
  .ci-icon { font-size:1.4rem; flex-shrink:0; margin-top:2px; }
  .ci-item h4 { font-family:'Oswald',sans-serif; font-size:0.75rem; letter-spacing:3px; text-transform:uppercase; color:var(--gold); margin-bottom:0.25rem; }
  .ci-item p { color:var(--brown-lite); font-size:0.95rem; line-height:1.6; }
  .ci-item a { color:var(--ink); text-decoration:none; font-weight:600; }
  .ci-item a:hover { color:var(--red); }
