*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --black: #0a0a0a; --surface: #111111; --surface2: #1a1a1a;
    --border: rgba(255,255,255,0.08); --gold: #ffbd59; --gold-light: #E2C070;
    --white: #f5f5f5; --muted: rgba(245,245,245,0.5);
    --font-display: 'Barlow Condensed', sans-serif; --font-body: 'Barlow', sans-serif;
  }
  html { scroll-behavior: smooth; }
  body { background: var(--black); color: var(--white); font-family: var(--font-body); font-weight: 300; line-height: 1.6; overflow-x: hidden; }
  /* NAV */
  nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 2rem; background: rgba(10,10,10,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
  .nav-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; letter-spacing: .08em; color: var(--white); text-decoration: none; display: flex; align-items: center; gap: .6rem; }
  .nav-logo span { color: var(--gold); }
  .nav-logo-img { height: 34px; width: auto; display: block; }
  .footer-logo-img { height: 44px; width: auto; display: block; margin-bottom: .75rem; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a { font-family: var(--font-display); font-weight: 600; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta { font-family: var(--font-display); font-weight: 700; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; background: var(--gold); color: var(--black); padding: .55rem 1.4rem; text-decoration: none; transition: background .2s; }
  .nav-cta:hover { background: var(--gold-light); }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: .3s; }
  
  /* HERO */
  .hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 2rem 5rem; position: relative; overflow: hidden; }
  .hero-bg { position: absolute; inset: 0; background: linear-gradient(to top, #0a0a0a 20%, rgba(10,10,10,0.5) 60%, rgba(10,10,10,0.3) 100%), linear-gradient(135deg, #0a0a0a 0%, #1a1208 50%, #0a0a0a 100%); }
  .hero-accent { position: absolute; top: 30%; right: -5%; width: 55vw; height: 55vw; max-width: 700px; max-height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%); pointer-events: none; }
  .hero-stripe { position: absolute; top: 0; bottom: 0; right: 30%; width: 1px; background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.2), transparent); }
  .hero-content { position: relative; max-width: 900px; }
  .hero-eyebrow { font-family: var(--font-display); font-size: .8rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; display: flex; align-items: center; gap: .75rem; }
  .hero-eyebrow::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--gold); }
  h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(3.5rem, 8vw, 7rem); line-height: .95; letter-spacing: -.01em; text-transform: uppercase; margin-bottom: 1.5rem; }
  h1 .line-gold { color: var(--gold); display: block; }
  .hero-sub { font-size: 1.05rem; color: var(--muted); max-width: 480px; margin-bottom: 2.5rem; font-weight: 300; }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary { font-family: var(--font-display); font-weight: 700; font-size: .95rem; letter-spacing: .1em; text-transform: uppercase; background: var(--gold); color: var(--black); padding: .9rem 2rem; text-decoration: none; transition: background .2s, transform .15s; display: inline-block; }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
  .btn-secondary { font-family: var(--font-display); font-weight: 600; font-size: .95rem; letter-spacing: .1em; text-transform: uppercase; border: 1px solid rgba(245,245,245,0.25); color: var(--white); padding: .9rem 2rem; text-decoration: none; transition: border-color .2s, transform .15s; display: inline-block; }
  .btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
  .hero-stats { position: absolute; right: 2rem; bottom: 5rem; display: flex; flex-direction: column; gap: 1.5rem; text-align: right; }
  .stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--gold); line-height: 1; display: block; }
  .stat-label { font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }

  /* SECTIONS */
  section { padding: 6rem 2rem; }
  .section-inner { max-width: 1100px; margin: 0 auto; }
  .section-label { font-family: var(--font-display); font-size: .75rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: .75rem; }
  .section-label::before { content: ''; display: block; width: 1.5rem; height: 1px; background: var(--gold); }
  h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3.5rem); line-height: 1; text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 1rem; }
  .section-sub { color: var(--muted); font-size: 1rem; max-width: 520px; margin-bottom: 3.5rem; }

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

  /* PRICING TIERS */
  .tiers-wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; margin-bottom: 3rem; }
  .tier-card { border: 1px solid var(--border); background: var(--surface2); padding: 2rem 1.75rem; position: relative; transition: border-color .2s, transform .2s; display: flex; flex-direction: column; }
  .tier-card:hover { border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
  .tier-card.featured { border-color: var(--gold); background: #161208; }
  .tier-featured-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); font-family: var(--font-display); font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; background: var(--gold); color: var(--black); padding: .3rem .9rem; white-space: nowrap; }
  .tier-icon { font-size: 2rem; margin-bottom: 1rem; }
  .tier-name { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .25rem; }
  .tier-tagline { font-size: .85rem; color: var(--muted); margin-bottom: 1.25rem; }
  .tier-price { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--gold); margin-bottom: 1.5rem; letter-spacing: .04em; }
  .tier-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 1.25rem; }
  .tier-list { list-style: none; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
  .tier-list li { font-size: .85rem; color: var(--muted); display: flex; align-items: flex-start; gap: .6rem; line-height: 1.4; }
  .tier-list li .check { color: var(--gold); font-size: .9rem; flex-shrink: 0; margin-top: .05rem; }
  .tier-list li.bonus { color: var(--gold-light); }
  .tier-list li.bonus .check { color: var(--gold-light); }
  .tier-note { font-size: .75rem; color: var(--muted); margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid var(--border); }

  /* ADDONS */
  .addons-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-top: 0; padding-top: 0; }
  .addon-item { background: var(--surface); padding: 1.25rem 1.5rem; transition: background .2s; }
  .addon-item:hover { background: var(--surface2); }
  .addon-item h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .3rem; }
  .addon-item p { font-size: .8rem; color: var(--muted); }

  /* TIER "WHAT'S INCLUDED" DROPDOWNS */
  .tier-details { margin-top: 1rem; }
  .tier-summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; font-family: var(--font-display); font-weight: 700; font-size: .82rem; letter-spacing: .07em; text-transform: uppercase; color: var(--gold); padding: .75rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); transition: color .2s; }
  .tier-summary:hover { color: var(--gold-light); }
  .tier-summary::-webkit-details-marker { display: none; }
  .tier-summary::after { content: '▾'; font-size: 1rem; transition: transform .2s; }
  .tier-details[open] .tier-summary::after { transform: rotate(180deg); }
  .tier-details[open] .tier-summary { border-bottom-color: rgba(201,168,76,0.3); }
  .tier-details .tier-list { margin-top: 1rem; }

  /* ADD-ONS DROPDOWN — bigger, more eye-catching */
  .addons-collapse { border: 1px solid rgba(201,168,76,0.4); background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.02)); box-shadow: 0 4px 24px rgba(201,168,76,0.08); }
  .addons-toggle { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 2rem; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; letter-spacing: .05em; text-transform: uppercase; color: var(--gold); transition: background .2s; }
  .addons-toggle:hover { background: rgba(201,168,76,0.08); }
  .addons-toggle::-webkit-details-marker { display: none; }
  .addons-toggle::after { content: '▾'; font-size: 1.3rem; transition: transform .25s; margin-left: 1rem; flex-shrink: 0; }
  .addons-collapse[open] .addons-toggle::after { transform: rotate(180deg); }
  .addons-collapse[open] .addons-toggle { border-bottom: 1px solid rgba(201,168,76,0.35); }
  @media (max-width: 768px) {
    .addons-toggle { padding: 1.25rem 1.25rem; font-size: .95rem; }
  }

  /* FAQ */
  #faq { background: var(--black); border-top: 1px solid var(--border); }
  .faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); }
  .faq-item { border-bottom: 1px solid var(--border); }
  .faq-item:last-child { border-bottom: none; }
  .faq-q { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; letter-spacing: .02em; text-transform: uppercase; padding: 1.25rem 1.5rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; list-style: none; color: var(--white); transition: color .2s, background .2s; }
  .faq-q::-webkit-details-marker { display: none; }
  .faq-q::after { content: '+'; font-size: 1.3rem; font-weight: 300; color: var(--gold); flex-shrink: 0; margin-left: 1rem; transition: transform .25s; }
  .faq-item[open] .faq-q { color: var(--gold); background: var(--surface); }
  .faq-item[open] .faq-q::after { transform: rotate(45deg); }
  .faq-a { padding: 0 1.5rem 1.25rem; font-size: .9rem; color: var(--muted); line-height: 1.7; background: var(--surface); }

  /* WHY US */
  #why { background: var(--black); border-top: 1px solid var(--border); }
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .why-list { display: flex; flex-direction: column; gap: 2rem; }
  .why-item { display: flex; gap: 1.25rem; align-items: flex-start; }
  .why-num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: rgba(201,168,76,0.15); line-height: 1; flex-shrink: 0; width: 3rem; text-align: right; }
  .why-text h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .4rem; }
  .why-text p { font-size: .9rem; color: var(--muted); }
  .contact-box { border: 1px solid var(--border); padding: 2.5rem; background: var(--surface); position: relative; }
  .contact-box::before { content: ''; position: absolute; top: 0; left: 0; width: 3rem; height: 3rem; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
  .contact-box::after { content: ''; position: absolute; bottom: 0; right: 0; width: 3rem; height: 3rem; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }
  .contact-box h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .75rem; }
  .contact-box p { font-size: .9rem; color: var(--muted); margin-bottom: 1.75rem; }
  .contact-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; border: 1px solid var(--border); margin-bottom: .75rem; text-decoration: none; color: var(--white); transition: border-color .2s, color .2s; }
  .contact-item:hover { border-color: var(--gold); color: var(--gold); }
  .contact-item:last-child { margin-bottom: 0; }
  .contact-icon { font-size: 1.2rem; flex-shrink: 0; }
  .contact-detail { display: flex; flex-direction: column; }
  .contact-label { font-family: var(--font-display); font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); margin-bottom: .1rem; }
  .contact-value { font-size: .9rem; }

  /* GALLERY */
   #gallery { background: var(--surface); border-top: 1px solid var(--border); }
  .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
  .gallery-item { aspect-ratio: 4/3; background: var(--surface2); position: relative; overflow: hidden; cursor: pointer; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
  .gallery-item:hover img { transform: scale(1.04); }
  .gallery-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .75rem; padding: 1.5rem; text-align: center; width: 100%; height: 100%; min-height: 160px; }
  .gallery-placeholder .ph-icon { font-size: 2rem; opacity: .2; }
  .gallery-placeholder p { font-family: var(--font-display); font-size: .65rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); opacity: .4; }
  .gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 50%); opacity: 0; transition: opacity .25s; display: flex; align-items: flex-end; padding: 1rem; }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-caption { display: flex; flex-direction: column; gap: .2rem; }
  .gallery-cap-title { font-family: var(--font-display); font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--white); }
  .gallery-cap-sub { font-size: .72rem; color: var(--gold); font-family: var(--font-display); letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }
  .gallery-note { margin-top: 1.25rem; font-size: .85rem; color: var(--muted); text-align: center; }
 
  /* LIGHTBOX */
  .lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.95); display: none; align-items: center; justify-content: center; }
  .lightbox.active { display: flex; }
  .lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
  .lightbox-img { max-width: 90vw; max-height: 80vh; object-fit: contain; display: block; border: 1px solid var(--border); }
  .lightbox-info { display: flex; align-items: center; gap: 1rem; }
  .lightbox-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--white); }
  .lightbox-sub { font-family: var(--font-display); font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); }
  .lightbox-close { position: fixed; top: 1.5rem; right: 1.5rem; background: none; border: 1px solid rgba(255,255,255,0.2); color: var(--white); font-size: 1.2rem; width: 40px; height: 40px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: border-color .2s; z-index: 2001; }
  .lightbox-close:hover { border-color: var(--gold); color: var(--gold); }
  .lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.15); color: var(--white); font-size: 2rem; width: 50px; height: 50px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .2s; z-index: 2001; line-height: 1; }
  .lightbox-prev { left: 1rem; }
  .lightbox-next { right: 1rem; }
  .lightbox-prev:hover, .lightbox-next:hover { border-color: var(--gold); color: var(--gold); }
  @media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .lightbox-prev { left: .25rem; }
    .lightbox-next { right: .25rem; }
    .lightbox-prev, .lightbox-next { width: 38px; height: 38px; font-size: 1.5rem; }
  }

  /* AREA */
  #area { background: var(--black); border-top: 1px solid var(--border); }
  .area-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
  .towns-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-top: 1.5rem; }
  .town-tag { font-family: var(--font-display); font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); padding: .6rem .75rem; border: 1px solid var(--border); transition: color .2s, border-color .2s; }
  .town-tag:hover { color: var(--gold); border-color: var(--gold); }
  .area-note { margin-top: 1.25rem; font-size: .85rem; color: var(--muted); }
  .booking-box { background: var(--surface); border: 1px solid var(--border); padding: 2.5rem; position: relative; }
  .booking-box::before { content: ''; position: absolute; top: 0; left: 0; width: 3rem; height: 3rem; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
  .booking-box h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.75rem; letter-spacing: .02em; text-transform: uppercase; margin-bottom: .75rem; }
  .booking-box p { font-size: .9rem; color: var(--muted); margin-bottom: 1.75rem; line-height: 1.6; }
  .booking-steps { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
  .booking-step { display: flex; align-items: center; gap: 1rem; font-size: .9rem; }
  .step-num { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--gold); width: 2rem; flex-shrink: 0; }
  .booking-links { display: flex; flex-direction: column; gap: .75rem; }

  /* QUOTE FORM */
  .quote-form { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.75rem; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-field label { font-family: var(--font-display); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .4rem; }
  .form-field input, .form-field select, .form-field textarea { width: 100%; background: var(--surface2); border: 1px solid var(--border); color: var(--white); padding: .7rem .9rem; font-family: var(--font-body); font-size: .88rem; transition: border-color .2s; }
  .form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); }
  .form-field input::placeholder, .form-field textarea::placeholder { color: var(--muted); }
  .form-field textarea { resize: vertical; min-height: 70px; font-family: var(--font-body); }
  .form-field select { cursor: pointer; appearance: none; }
  .form-submit-btn { font-family: var(--font-display); font-weight: 800; font-size: .95rem; letter-spacing: .1em; text-transform: uppercase; background: var(--gold); color: var(--black); border: none; padding: .95rem; cursor: pointer; transition: background .2s, transform .15s; width: 100%; }
  .form-submit-btn:hover { background: var(--gold-light); transform: translateY(-2px); }
  .form-submit-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }
  .form-status { font-size: .82rem; text-align: center; margin-top: .75rem; display: none; }
  .form-status.success { color: #7ed67e; display: block; }
  .form-status.error { color: #e06060; display: block; }
  .form-or-divider { display: flex; align-items: center; gap: 1rem; margin: .5rem 0 1.5rem; }
  .form-or-divider::before, .form-or-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
  .form-or-divider span { font-family: var(--font-display); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
  @media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
  .booking-link { display: flex; align-items: center; justify-content: space-between; padding: .9rem 1.25rem; border: 1px solid var(--border); text-decoration: none; color: var(--white); font-family: var(--font-display); font-weight: 600; font-size: .9rem; letter-spacing: .06em; text-transform: uppercase; transition: border-color .2s, color .2s; }
  .booking-link:hover { border-color: var(--gold); color: var(--gold); }
  .booking-link span { font-size: 1rem; }

  /* FOOTER */
  footer { background: var(--surface); border-top: 1px solid var(--border); padding: 3rem 2rem 2rem; }
  .footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border); margin-bottom: 1.5rem; }
  .footer-brand h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; letter-spacing: .08em; margin-bottom: .75rem; }
  .footer-brand h3 span { color: var(--gold); }
  .footer-brand p { font-size: .85rem; color: var(--muted); line-height: 1.7; }
  .footer-col h4 { font-family: var(--font-display); font-size: .75rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
  .footer-col ul li { font-size: .85rem; color: var(--muted); }
  .footer-col ul li a { color: var(--muted); text-decoration: none; transition: color .2s; }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-bottom { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: .75rem; color: var(--muted); flex-wrap: wrap; gap: 1rem; }
  .footer-social { display: flex; gap: 1rem; }
  .footer-social a { font-family: var(--font-display); font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s; }
  .footer-social a:hover { color: var(--gold); }

  /* MOBILE */
  /* WHY MOBILE */
  #whymobile { background: var(--surface2); border-top: 1px solid var(--border); }
  .whymobile-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
  .whymobile-card { background: var(--surface); padding: 2.5rem 2rem; text-align: center; transition: background .2s; }
  .whymobile-card:hover { background: var(--surface2); }
  .whymobile-icon { font-size: 2.5rem; display: block; margin-bottom: 1.25rem; }
  .whymobile-card h4 { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .75rem; }
  .whymobile-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; }
  @media (max-width: 768px) { .whymobile-grid { grid-template-columns: 1fr; } }

  /* LEAD CAPTURE */
  .lead-bar { background: linear-gradient(135deg, #0f0c00, #1c1500, #0f0c00); border-top: 1px solid rgba(201,168,76,0.2); border-bottom: 1px solid rgba(201,168,76,0.2); padding: 3rem 2rem; }
  .lead-inner { max-width: 600px; margin: 0 auto; text-align: center; }
  .lead-inner h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.2rem); text-transform: uppercase; letter-spacing: .02em; margin-bottom: .5rem; }
  .lead-inner h3 span { color: var(--gold); }
  .lead-inner p { font-size: .88rem; color: var(--muted); margin-bottom: 1.5rem; }
  .lead-form { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; }
  .lead-input { flex: 1; min-width: 200px; background: var(--surface2); border: 1px solid var(--border); color: var(--white); padding: .8rem 1.1rem; font-family: var(--font-body); font-size: .9rem; transition: border-color .2s; }
  .lead-input:focus { outline: none; border-color: var(--gold); }
  .lead-input::placeholder { color: var(--muted); }
  .lead-submit { font-family: var(--font-display); font-weight: 800; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; background: var(--gold); color: var(--black); border: none; padding: .8rem 1.75rem; cursor: pointer; transition: background .2s, transform .15s; white-space: nowrap; }
  .lead-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
  .lead-note { margin-top: .75rem; font-size: .72rem; color: var(--muted); }

  /* FINAL CTA */
  .final-cta { background: var(--black); border-top: 1px solid var(--border); padding: 5rem 2rem; text-align: center; }
  .final-cta h2 { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: .75rem; }
  .final-cta h2 span { color: var(--gold); }
  .final-cta p { color: var(--muted); font-size: 1rem; max-width: 440px; margin: 0 auto 2.5rem; }

  /* FLOAT BTN CONSOLIDATED */
  .float-group { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; display: flex; flex-direction: column; align-items: flex-end; gap: .6rem; }
  .float-options { display: flex; flex-direction: column; gap: .5rem; align-items: flex-end; opacity: 0; pointer-events: none; transform: translateY(10px); transition: opacity .25s, transform .25s; }
  .float-options.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .float-opt { font-family: var(--font-display); font-weight: 800; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; padding: .65rem 1.25rem; text-decoration: none; display: flex; align-items: center; gap: .5rem; white-space: nowrap; transition: transform .15s; box-shadow: 0 2px 16px rgba(0,0,0,0.4); }
  .float-opt:hover { transform: translateX(-3px); }
  .float-opt-book { background: var(--gold); color: var(--black); }
  .float-opt-maint { background: var(--surface2); color: var(--gold); border: 1px solid var(--gold); }
  .float-toggle { width: 52px; height: 52px; border-radius: 50%; background: var(--gold); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; box-shadow: 0 4px 24px rgba(201,168,76,0.4); transition: background .2s, transform .2s; position: relative; }
  .float-toggle:hover { background: var(--gold-light); transform: scale(1.05); }
  .float-toggle-icon { transition: transform .3s; display: block; line-height: 1; }
  .float-toggle.open .float-toggle-icon { transform: rotate(45deg); }
  .float-pulse { position: absolute; inset: 0; border-radius: 50%; background: var(--gold); opacity: 0; animation: pulse 2.5s ease-out infinite; }
  @media (max-width: 768px) { .float-group { bottom: 1.25rem; right: 1.25rem; } .float-toggle { width: 46px; height: 46px; font-size: 1.2rem; } }

  /* MAINTENANCE PLAN BANNER */
  .maint-banner { position: fixed; top: 68px; left: 0; right: 0; z-index: 99; background: linear-gradient(90deg, #1a1200, #2a1d00, #1a1200); border-bottom: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; gap: 1rem; padding: .6rem 1.5rem; text-align: center; }
  .maint-banner p { font-family: var(--font-display); font-size: .8rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); }
  .maint-banner p span { color: var(--white); }
  .maint-banner-btn { font-family: var(--font-display); font-weight: 800; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; background: var(--gold); color: var(--black); padding: .4rem 1rem; text-decoration: none; white-space: nowrap; flex-shrink: 0; transition: background .2s; }
  .maint-banner-btn:hover { background: var(--gold-light); }
  .maint-banner-close { background: none; border: none; color: var(--muted); font-size: 1rem; cursor: pointer; padding: 0 .25rem; flex-shrink: 0; line-height: 1; }
  .maint-banner-close:hover { color: var(--white); }

  /* MAINTENANCE PLAN SECTION */
  #maintenance { background: var(--surface); border-top: 1px solid var(--border); }
  .maint-hero { text-align: center; margin-bottom: 4rem; }
  .maint-hero h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
  .maint-hero .maint-badge { display: inline-block; font-family: var(--font-display); font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; background: rgba(201,168,76,0.15); color: var(--gold); padding: .35rem 1rem; margin-bottom: 1.25rem; border: 1px solid rgba(201,168,76,0.3); }
  .maint-hero .maint-sub { font-size: 1rem; color: var(--muted); max-width: 560px; margin: .75rem auto 0; }

  /* HOW IT WORKS */
  .how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); margin-bottom: 4rem; }
  .how-step { background: var(--surface2); padding: 2rem 1.5rem; position: relative; }
  .how-step-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 800; color: rgba(201,168,76,0.08); line-height: 1; margin-bottom: .5rem; }
  .how-step-icon { font-size: 1.5rem; margin-bottom: .75rem; display: block; }
  .how-step h4 { font-family: var(--font-display); font-weight: 700; font-size: 1rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .5rem; color: var(--white); }
  .how-step p { font-size: .82rem; color: var(--muted); line-height: 1.6; }

  /* DISCOUNT TABLE */
  .discount-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); margin-bottom: 4rem; }
  .discount-table th { font-family: var(--font-display); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); padding: .9rem 1.25rem; background: var(--surface2); border-bottom: 1px solid var(--border); text-align: left; }
  .discount-table td { font-size: .85rem; padding: .85rem 1.25rem; border-bottom: 1px solid var(--border); color: var(--muted); }
  .discount-table tr:last-child td { border-bottom: none; }
  .discount-table tr:hover td { background: var(--surface2); color: var(--white); }
  .discount-table .disc-pct { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--gold); }
  .discount-table .disc-best { background: rgba(201,168,76,0.06); }
  .disc-crown { font-size: .8rem; margin-left: .3rem; }

  /* CALCULATOR */
  .calc-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-bottom: 4rem; }
  .calc-box { background: var(--black); border: 1px solid var(--border); padding: 2.5rem; position: relative; }
  .calc-box::before { content: ''; position: absolute; top: 0; left: 0; width: 3rem; height: 3rem; border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); }
  .calc-box h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 1.75rem; }
  .calc-field { margin-bottom: 1.5rem; }
  .calc-field label { font-family: var(--font-display); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: .6rem; }
  .calc-field select, .calc-field input[type=range] { width: 100%; }
  .calc-field select { background: var(--surface2); border: 1px solid var(--border); color: var(--white); padding: .7rem 1rem; font-family: var(--font-body); font-size: .9rem; appearance: none; cursor: pointer; }
  .calc-field select:focus { outline: none; border-color: var(--gold); }
  .freq-btns { display: grid; grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .freq-btn { background: var(--surface2); border: 1px solid var(--border); color: var(--muted); font-family: var(--font-display); font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .6rem .4rem; cursor: pointer; transition: all .2s; text-align: center; }
  .freq-btn:hover { border-color: rgba(201,168,76,0.4); color: var(--white); }
  .freq-btn.active { background: rgba(201,168,76,0.12); border-color: var(--gold); color: var(--gold); }
  .calc-result { background: var(--surface2); border: 1px solid var(--border); padding: 1.75rem; margin-top: 1.75rem; }
  .calc-result-row { display: flex; justify-content: space-between; align-items: center; padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .85rem; color: var(--muted); }
  .calc-result-row:last-of-type { border-bottom: none; }
  .calc-result-row span:last-child { font-family: var(--font-display); font-weight: 700; font-size: .95rem; color: var(--white); }
  .calc-savings { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0 0; margin-top: .5rem; }
  .calc-savings-label { font-family: var(--font-display); font-size: .75rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); }
  .calc-savings-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--gold); line-height: 1; }
  .calc-disc-tag { display: inline-block; font-family: var(--font-display); font-size: .65rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; background: rgba(201,168,76,0.15); color: var(--gold); padding: .2rem .6rem; margin-top: .25rem; border: 1px solid rgba(201,168,76,0.3); }

  /* BENEFITS */
  .benefits-box { background: var(--black); border: 1px solid var(--border); padding: 2.5rem; position: relative; }
  .benefits-box::after { content: ''; position: absolute; bottom: 0; right: 0; width: 3rem; height: 3rem; border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); }
  .benefits-box h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 1.5rem; }
  .benefit-item { display: flex; gap: 1rem; align-items: flex-start; padding: .9rem 0; border-bottom: 1px solid var(--border); }
  .benefit-item:last-child { border-bottom: none; }
  .benefit-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }
  .benefit-text strong { font-family: var(--font-display); font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--white); display: block; margin-bottom: .2rem; }
  .benefit-text span { font-size: .8rem; color: var(--muted); line-height: 1.5; }

  /* JOIN NOW CTA */
  .join-cta { text-align: center; padding: 4rem 2rem; background: linear-gradient(135deg, #0f0c00, #1a1200, #0f0c00); border: 1px solid rgba(201,168,76,0.2); margin-top: 0; position: relative; overflow: hidden; }
  .join-cta::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%); pointer-events: none; }
  .join-cta h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 3.5rem); text-transform: uppercase; letter-spacing: -.01em; margin-bottom: .75rem; position: relative; }
  .join-cta p { font-size: .95rem; color: var(--muted); max-width: 480px; margin: 0 auto 2rem; position: relative; }
  .join-now-btn { display: inline-flex; align-items: center; gap: .75rem; font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; letter-spacing: .1em; text-transform: uppercase; background: var(--gold); color: var(--black); padding: 1.1rem 3rem; text-decoration: none; position: relative; transition: background .2s, transform .2s, box-shadow .2s; box-shadow: 0 4px 30px rgba(201,168,76,0.4); }
  .join-now-btn:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 8px 40px rgba(201,168,76,0.5); }
  .join-note { margin-top: 1rem; font-size: .78rem; color: var(--muted); position: relative; }

  /* FLOAT MAINTENANCE BTN */
  .float-maint { position: fixed; bottom: 2rem; left: 2rem; z-index: 999; background: transparent; border: 2px solid var(--gold); color: var(--gold); font-family: var(--font-display); font-weight: 800; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; padding: .75rem 1.25rem; text-decoration: none; transition: all .2s; display: flex; align-items: center; gap: .5rem; backdrop-filter: blur(8px); background: rgba(10,10,10,0.7); }
  .float-maint:hover { background: var(--gold); color: var(--black); }
  .float-maint .pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; animation: dotpulse 1.8s ease-in-out infinite; }
  @keyframes dotpulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .4; transform: scale(.6); } }

  @media (max-width: 768px) {
    .calc-wrap { grid-template-columns: 1fr; gap: 2rem; }
    .freq-btns { grid-template-columns: repeat(2, 1fr); }
    .maint-banner { top: 47px; padding: .75rem 1.25rem; }
    .float-maint { display: none; }
  }
  .float-btn { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; background: var(--gold); color: var(--black); font-family: var(--font-display); font-weight: 800; font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; padding: .9rem 1.75rem; text-decoration: none; box-shadow: 0 4px 24px rgba(201,168,76,0.35), 0 2px 8px rgba(0,0,0,0.4); transition: background .2s, transform .2s, box-shadow .2s; display: flex; align-items: center; gap: .6rem; }
  .float-btn:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(201,168,76,0.45), 0 4px 12px rgba(0,0,0,0.4); }
  .float-btn .float-icon { font-size: 1rem; }
  .float-btn-pulse { position: absolute; inset: 0; background: var(--gold); opacity: 0; animation: pulse 2.5s ease-out infinite; }
  @keyframes pulse { 0% { opacity: .4; transform: scale(1); } 100% { opacity: 0; transform: scale(1.18); } }

  /* NAV CTA ENHANCED */
  .nav-cta { font-family: var(--font-display); font-weight: 800; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; background: var(--gold); color: var(--black); padding: .65rem 1.6rem; text-decoration: none; transition: background .2s, box-shadow .2s; box-shadow: 0 2px 12px rgba(201,168,76,0.3); }
  .nav-cta:hover { background: var(--gold-light); box-shadow: 0 4px 20px rgba(201,168,76,0.45); }
  .mobile-only-cta { display: none; }

  @media (max-width: 768px) {
    nav { padding: .7rem .85rem; }
    .nav-logo { font-size: .95rem; gap: .4rem; }
    .nav-logo-img { height: 24px; }
    .nav-cta { font-size: .62rem; padding: .5rem .75rem; letter-spacing: .05em; box-shadow: none; }
    .nav-links { display: none; }
    .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 47px; left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 1.5rem; gap: 1.25rem; border-bottom: 1px solid var(--border); max-height: calc(100vh - 47px); overflow-y: auto; }
    .nav-links.open .mobile-only-cta { display: block; background: var(--gold); color: var(--black); text-align: center; padding: .85rem; font-weight: 800; letter-spacing: .08em; }
    .hamburger { display: flex; }
    .hero { padding: 8.5rem 1.25rem 3rem; min-height: 82vh; justify-content: center; }
    .hero-stats { display: none; }
    h1 { font-size: clamp(3rem, 12vw, 5rem); }
    section { padding: 4rem 1.25rem; }
    .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .area-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.tall { grid-row: span 1; }
    .tiers-wrap { grid-template-columns: 1fr; }
    .float-btn { bottom: 1.25rem; right: 1.25rem; font-size: .8rem; padding: .8rem 1.35rem; }
  }
  @media (prefers-reduced-motion: reduce) { * { transition: none !important; } }

/* TRUST BADGE (booking box) */
.trust-badge { display: inline-block; font-family: var(--font-display); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3); padding: .45rem .9rem; margin-bottom: 1rem; }

/* REVIEWS */
#reviews { background: var(--black); border-top: 1px solid var(--border); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; }
.review-card { border: 1px solid var(--border); background: var(--surface2); padding: 1.75rem; display: flex; flex-direction: column; gap: .5rem; }
.review-author { font-family: var(--font-display); font-weight: 800; font-size: 1rem; letter-spacing: .04em; text-transform: uppercase; color: var(--white); }
.review-stars { color: var(--gold); font-size: .9rem; letter-spacing: .1em; margin-bottom: .35rem; }
.review-body { font-size: .9rem; color: var(--muted); line-height: 1.6; flex: 1; }

/* SUBPAGE HERO (service & location pages) */
.hero-subpage { min-height: 62vh; justify-content: center; padding-top: 9rem; padding-bottom: 3rem; }
.hero-subpage h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); }
@media (max-width: 768px) {
  .hero-subpage { padding-top: 7rem; }
}

/* BREADCRUMB */
.breadcrumb { font-family: var(--font-display); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* SUBPAGE CONTENT */
.content-block { max-width: 760px; margin-bottom: 3rem; }
.content-block p { font-size: .95rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.75; }
.content-block h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; text-transform: uppercase; letter-spacing: .03em; color: var(--white); margin: 2rem 0 1rem; }
.included-list { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2rem; }
.included-list li { font-size: .9rem; color: var(--muted); display: flex; gap: .6rem; align-items: flex-start; }
.included-list li .check { color: var(--gold); flex-shrink: 0; }

/* RELATED LINKS GRID (cross-linking towns/services) */
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1rem; margin: 2rem 0 3rem; }
.related-link { display: block; border: 1px solid var(--border); background: var(--surface2); padding: 1.25rem 1.5rem; text-decoration: none; color: var(--white); font-family: var(--font-display); font-weight: 700; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; transition: border-color .2s, color .2s; }
.related-link:hover { border-color: var(--gold); color: var(--gold); }

/* CTA STRIP (subpages) */
.cta-strip { text-align: center; padding: 4rem 2rem; background: linear-gradient(135deg, #0f0c00, #1a1200, #0f0c00); border-top: 1px solid rgba(201,168,76,0.2); border-bottom: 1px solid rgba(201,168,76,0.2); }
.cta-strip h2 { margin-bottom: .75rem; }
.cta-strip p { font-size: .95rem; color: var(--muted); max-width: 480px; margin: 0 auto 2rem; }
