/* Google Fonts loaded via <link> in HTML head — no @import to avoid double render-block */
:root {
  --clr-turf:    #0f2d14;
  --clr-forest:  #183a1e;
  --clr-green:   #1d4d27;
  --clr-mid:     #2a6e37;
  --clr-bright:  #3a9e4c;
  --clr-lime:    #6ec97e;
  --clr-sage:    #c2ddc8;
  --clr-gold:    #c8a84b;
  --clr-gold-lt: #e6c97a;
  --clr-cream:   #faf7f2;
  --clr-paper:   #f3efe8;
  --clr-bone:    #e8e2d8;
  --clr-ink:     #0d1a10;
  --clr-slate:   #2e3d32;
  --clr-muted:   #5a6e5e;
  --clr-ghost:   #98a89c;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
  --nav-height:   72px;
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    24px;
  --radius-xl:    40px;
  --radius-full:  9999px;
  --shadow-card:  0 4px 24px rgba(13,26,16,0.1);
  --shadow-lift:  0 12px 48px rgba(13,26,16,0.16);
  --shadow-deep:  0 24px 80px rgba(13,26,16,0.22);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--clr-cream); color: var(--clr-ink); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* TYPOGRAPHY */
.t-display { font-family: var(--font-display); font-size: clamp(3.2rem, 8vw, 6.5rem); font-weight: 700; line-height: 0.95; letter-spacing: -0.02em; }
.t-h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
.t-h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
.t-h3 { font-family: var(--font-display); font-size: clamp(1.4rem, 2vw, 1.9rem); font-weight: 600; line-height: 1.2; }
.t-label { font-family: var(--font-mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; }
.t-body { font-size: 1.05rem; line-height: 1.72; }
.t-body-sm { font-size: 0.9rem; line-height: 1.65; }
.c-green  { color: var(--clr-bright); }
.c-lime   { color: var(--clr-lime); }
.c-gold   { color: var(--clr-gold); }
.c-sage   { color: var(--clr-sage); }
.c-ghost  { color: var(--clr-ghost); }
.c-muted  { color: var(--clr-muted); }
.c-white  { color: #fff; }
.c-ink    { color: var(--clr-ink); }
em.serif  { font-style: italic; }

/* LAYOUT */
.wrap    { max-width: 1240px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 52px); }
.wrap-sm { max-width: 860px;  margin: 0 auto; padding: 0 clamp(20px, 4vw, 52px); }
.section    { padding: clamp(72px, 11vw, 128px) 0; }
.section-sm { padding: clamp(48px, 7vw,  80px)  0; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.88rem; letter-spacing: 0.04em;
  padding: 16px 32px; border-radius: var(--radius-full); border: 2px solid transparent;
  cursor: pointer; transition: all 0.22s cubic-bezier(0.34,1.56,0.64,1); white-space: nowrap;
}
.btn:active { transform: scale(0.97) !important; }
.btn-primary { background: var(--clr-mid); color: #fff; border-color: var(--clr-mid); box-shadow: 0 4px 20px rgba(42,110,55,0.3); }
.btn-primary:hover { background: var(--clr-bright); border-color: var(--clr-bright); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(42,110,55,0.45); }
.btn-gold { background: var(--clr-gold); color: var(--clr-turf); border-color: var(--clr-gold); box-shadow: 0 4px 20px rgba(200,168,75,0.3); }
.btn-gold:hover { background: var(--clr-gold-lt); border-color: var(--clr-gold-lt); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(200,168,75,0.5); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-ghost-dark { background: transparent; color: var(--clr-green); border-color: var(--clr-green); }
.btn-ghost-dark:hover { background: var(--clr-green); color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 20px 44px; font-size: 0.95rem; }
.btn-sm { padding: 11px 24px; font-size: 0.82rem; }
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn-icon-right:hover svg { transform: translateX(4px); transition: transform 0.2s; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-height); transition: background 0.3s, box-shadow 0.3s; }
.nav.scrolled-dark { background: rgba(15,45,20,0.96); backdrop-filter: blur(16px); box-shadow: 0 1px 0 rgba(255,255,255,0.06); }
.nav.scrolled-light { background: rgba(250,247,242,0.97); backdrop-filter: blur(16px); box-shadow: 0 1px 0 rgba(0,0,0,0.06); }
.nav-inner { display: flex; align-items: center; height: 100%; }
.nav-brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; margin-right: auto; }
.nav-orb { width: 36px; height: 36px; background: var(--clr-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 0 0 2px rgba(58,158,76,0.3); }
.nav-orb svg { width: 18px; height: 18px; fill: white; }
.nav-brand-text { display: flex; flex-direction: column; gap: 1px; }
.nav-brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; line-height: 1; color: white; letter-spacing: -0.01em; }
.nav-light .nav-brand-name { color: var(--clr-ink); }
.nav-brand-sub { font-family: var(--font-mono); font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--clr-lime); line-height: 1; }
.nav-light .nav-brand-sub { color: var(--clr-mid); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > li > a { font-size: 0.85rem; font-weight: 600; padding: 8px 13px; border-radius: var(--radius-sm); color: rgba(255,255,255,0.75); transition: all 0.18s; }
.nav-light .nav-links > li > a { color: var(--clr-slate); }
.nav-links > li > a:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-light .nav-links > li > a:hover { color: var(--clr-green); background: rgba(29,77,39,0.06); }
.nav-drop { position: relative; }
.nav-drop > a::after { content: ' ▾'; font-size: 0.7em; opacity: 0.6; }
.drop-menu { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(-6px); background: var(--clr-forest); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md); padding: 8px; min-width: 230px; opacity: 0; visibility: hidden; transition: all 0.2s cubic-bezier(0.16,1,0.3,1); box-shadow: var(--shadow-deep); }
.nav-drop:hover .drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop-menu a { display: block; padding: 10px 14px; font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.72); border-radius: 4px; transition: all 0.15s; }
.drop-menu a:hover { color: white; background: rgba(255,255,255,0.06); }
.nav-cta { margin-left: 12px; }
.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; cursor: pointer; background: none; border: none; }
.nav-burger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }
.nav-light .nav-burger span { background: var(--clr-ink); }
.mobile-overlay { display: none; position: fixed; inset: 0; background: var(--clr-turf); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.mobile-overlay.open { display: flex; }
.mobile-overlay a { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: rgba(255,255,255,0.6); padding: 6px 0; transition: color 0.18s; }
.mobile-overlay a:hover { color: white; }
.mobile-close-btn { position: absolute; top: 20px; right: 24px; font-size: 2rem; color: rgba(255,255,255,0.5); cursor: pointer; background: none; border: none; line-height: 1; }

/* PAGE HERO (inner pages) */
.page-hero { background: var(--clr-turf); padding-top: calc(var(--nav-height) + 64px); padding-bottom: 80px; position: relative; overflow: hidden; }
.page-hero-noise { position: absolute; inset: 0; background-image: radial-gradient(ellipse 70% 70% at 85% 50%, rgba(42,110,55,0.22) 0%, transparent 60%), radial-gradient(ellipse 50% 100% at 10% 80%, rgba(58,158,76,0.08) 0%, transparent 50%); }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero .breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; font-family: var(--font-mono); font-size: 0.7rem; color: rgba(255,255,255,0.35); }
.page-hero .breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.18s; }
.page-hero .breadcrumb a:hover { color: rgba(255,255,255,0.75); }
.page-hero .breadcrumb .sep { opacity: 0.3; }
.page-hero-label { margin-bottom: 16px; display: block; }
.page-hero h1 { color: white; margin-bottom: 22px; }
.page-hero .lead { font-size: clamp(1rem, 1.6vw, 1.2rem); color: rgba(255,255,255,0.68); max-width: 58ch; line-height: 1.72; margin-bottom: 36px; }
.page-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* SECTION HEADERS */
.sh { margin-bottom: 52px; }
.sh-label { display: block; margin-bottom: 14px; }
.sh h2 { margin-bottom: 14px; }
.sh p { font-size: 1.06rem; color: var(--clr-muted); max-width: 54ch; line-height: 1.7; }
.sh.center { text-align: center; }
.sh.center p { margin: 0 auto; }

/* CARDS */
.card { background: white; border-radius: var(--radius-lg); border: 1px solid var(--clr-bone); box-shadow: var(--shadow-card); overflow: hidden; transition: all 0.3s cubic-bezier(0.34,1.2,0.64,1); }
.card:hover { box-shadow: var(--shadow-lift); transform: translateY(-5px); }

/* PRICING */
.price-card { background: white; border: 2px solid var(--clr-bone); border-radius: var(--radius-lg); padding: 40px 36px; position: relative; transition: all 0.3s; }
.price-card:hover { border-color: var(--clr-bright); box-shadow: var(--shadow-lift); transform: translateY(-4px); }
.price-card.popular { background: var(--clr-green); border-color: var(--clr-bright); color: white; transform: scale(1.04); box-shadow: var(--shadow-deep), 0 0 40px rgba(58,158,76,0.2); }
.price-card.popular:hover { transform: scale(1.04) translateY(-4px); }
.pop-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--clr-gold); color: var(--clr-turf); font-family: var(--font-mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 16px; border-radius: var(--radius-full); white-space: nowrap; }
.price-hours { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--clr-bright); margin-bottom: 8px; }
.price-card.popular .price-hours { color: var(--clr-lime); }
.price-num { font-family: var(--font-display); font-size: 3.6rem; font-weight: 700; line-height: 1; color: var(--clr-green); margin-bottom: 4px; }
.price-card.popular .price-num { color: white; }
.price-incl { font-size: 0.82rem; color: var(--clr-ghost); margin-bottom: 12px; }
.price-card.popular .price-incl { color: rgba(255,255,255,0.55); }
.price-name { font-size: 1.08rem; font-weight: 700; margin-bottom: 6px; }
.price-desc { font-size: 0.88rem; line-height: 1.6; color: var(--clr-muted); margin-bottom: 24px; }
.price-card.popular .price-desc { color: rgba(255,255,255,0.65); }
.price-feats { border-top: 1px solid rgba(0,0,0,0.07); padding-top: 22px; margin-bottom: 32px; }
.price-card.popular .price-feats { border-color: rgba(255,255,255,0.12); }
.price-feats li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--clr-muted); padding: 5px 0; }
.price-card.popular .price-feats li { color: rgba(255,255,255,0.72); }
.feat-check { width: 16px; height: 16px; color: var(--clr-bright); flex-shrink: 0; margin-top: 2px; }
.price-card.popular .feat-check { color: var(--clr-lime); }


/* FAQ */
.faq-item { border-bottom: 1px solid var(--clr-bone); }
.faq-btn { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 22px 0; text-align: left; font-size: 1.02rem; font-weight: 600; color: var(--clr-ink); cursor: pointer; gap: 16px; background: none; border: none; font-family: var(--font-body); }
.faq-icon { width: 24px; height: 24px; background: var(--clr-sage); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; color: var(--clr-green); }
.faq-icon svg { width: 14px; height: 14px; transition: transform 0.3s; }
.faq-item.open .faq-icon { background: var(--clr-mid); color: white; }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-body { display: none; padding: 0 32px 22px 0; font-size: 0.95rem; line-height: 1.75; color: var(--clr-muted); max-width: 62ch; }
.faq-item.open .faq-body { display: block; }

/* STEPS */
.step-num { width: 60px; height: 60px; border-radius: 50%; background: white; border: 2px solid var(--clr-bright); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--clr-green); margin: 0 auto 20px; box-shadow: 0 0 0 6px var(--clr-cream); position: relative; z-index: 1; }

/* CITY PILLS */
.city-pill { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: white; border: 1px solid var(--clr-bone); border-radius: var(--radius-md); transition: all 0.2s; }
.city-pill:hover { border-color: var(--clr-bright); background: rgba(58,158,76,0.04); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.city-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--clr-bright); flex-shrink: 0; }
.city-name { font-weight: 700; font-size: 0.95rem; }
.city-state { font-size: 0.75rem; color: var(--clr-ghost); font-family: var(--font-mono); }

/* INCLUDED LIST */
.incl-item { display: flex; align-items: flex-start; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--clr-paper); }
.incl-item:last-child { border-bottom: none; }
.incl-icon { width: 20px; height: 20px; color: var(--clr-bright); flex-shrink: 0; margin-top: 2px; }
.incl-title { font-weight: 700; display: block; margin-bottom: 2px; }
.incl-sub { color: var(--clr-muted); font-size: 0.85rem; }

/* CTA STRIP */
.cta-strip { background: linear-gradient(120deg, var(--clr-green) 0%, var(--clr-turf) 100%); position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 48px 48px; }
.cta-strip > * { position: relative; z-index: 1; }

/* TRUST BAR */
.trust-bar { background: var(--clr-forest); padding: 20px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.72); white-space: nowrap; }
.trust-item svg { width: 17px; height: 17px; color: var(--clr-lime); flex-shrink: 0; }
.trust-sep { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.18); }

/* STATS */
.stat-row-grid { display: grid; grid-template-columns: repeat(4,1fr); border-radius: var(--radius-lg); overflow: hidden; }
.stat-cell { background: rgba(255,255,255,0.04); padding: 40px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.06); transition: background 0.2s; }
.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(255,255,255,0.07); }
.stat-num { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--clr-lime); line-height: 1; margin-bottom: 8px; }
.stat-lbl { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* FOOTER */
.footer { background: var(--clr-turf); color: white; padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.9fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand-desc { font-size: 0.875rem; color: rgba(255,255,255,0.45); line-height: 1.72; max-width: 28ch; margin: 14px 0 22px; }
.footer-social { display: flex; gap: 10px; }
.fsoc-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.45); transition: all 0.2s; border: none; cursor: pointer; }
.fsoc-btn:hover { background: var(--clr-mid); color: white; }
.fsoc-btn svg { width: 15px; height: 15px; }
.footer-col-title { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--clr-lime); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: color 0.18s; }
.footer-col ul a:hover { color: white; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.5); margin-bottom: 12px; line-height: 1.45; }
.footer-contact-row svg { width: 15px; height: 15px; color: var(--clr-bright); flex-shrink: 0; margin-top: 3px; }
.footer-contact-row a { color: rgba(255,255,255,0.5); transition: color 0.18s; }
.footer-contact-row a:hover { color: white; }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.28); transition: color 0.18s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* FORM */
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--clr-ink); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 14px 18px; border: 2px solid var(--clr-bone); border-radius: var(--radius-md); font-family: var(--font-body); font-size: 0.95rem; color: var(--clr-ink); background: white; transition: border-color 0.2s, box-shadow 0.2s; outline: none; -webkit-appearance: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--clr-bright); box-shadow: 0 0 0 4px rgba(58,158,76,0.12); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes floatAnim { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.4)} }
.anim-fadein { animation: fadeIn 0.7s cubic-bezier(0.16,1,0.3,1) both; }
.anim-fadeup { animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) both; }
.d1{animation-delay:0.1s} .d2{animation-delay:0.2s} .d3{animation-delay:0.3s} .d4{animation-delay:0.4s} .d5{animation-delay:0.5s}
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.72s cubic-bezier(0.16,1,0.3,1), transform 0.72s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }
.rd1{transition-delay:0.08s} .rd2{transition-delay:0.16s} .rd3{transition-delay:0.24s} .rd4{transition-delay:0.32s}

/* UTILITIES */
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-4{gap:16px} .gap-6{gap:24px} .gap-8{gap:32px}
.mb-4{margin-bottom:16px} .mb-6{margin-bottom:24px} .mb-8{margin-bottom:32px}
.mt-6{margin-top:24px} .mt-8{margin-top:32px} .mt-12{margin-top:48px}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.dark-band { background: var(--clr-turf); }
.ev-thumb { height: 190px; display: flex; align-items: center; justify-content: center; font-size: 3.8rem; transition: transform 0.4s; background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }

/* RESPONSIVE */
@media(max-width:1024px){ .stat-row-grid{grid-template-columns:repeat(2,1fr)} .footer-grid{grid-template-columns:1fr 1fr} }
@media(max-width:900px){ .grid-3{grid-template-columns:1fr 1fr} }
@media(max-width:768px){ .nav-links,.nav-cta{display:none} .nav-burger{display:flex} .footer-grid{grid-template-columns:1fr;gap:32px} .footer-bottom{flex-direction:column;text-align:center} .form-row{grid-template-columns:1fr} .price-card.popular{transform:none} .drop-menu{display:none} }
@media(max-width:640px){ .grid-2,.grid-3,.grid-4{grid-template-columns:1fr} }
@media(max-width:540px){ .stat-row-grid{grid-template-columns:1fr 1fr} .trust-bar-inner{gap:22px} .trust-sep{display:none} }

/* ─── Booking Page ─────────────────────────────────────────────────────────── */
.pkg-selector { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 16px; }
@media(max-width:860px) { .pkg-selector { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:520px) { .pkg-selector { grid-template-columns: 1fr; } }

.pkg-card { cursor: pointer; user-select: none; transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s; }
.pkg-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.pkg-card:focus-visible { outline: 2px solid var(--clr-gold); outline-offset: 3px; }
.pkg-card.active { border-color: var(--clr-gold) !important; box-shadow: 0 0 0 3px rgba(200,168,75,0.2), var(--shadow-lift) !important; transform: scale(1.03) !important; }
.pkg-card.active .price-hours { color: var(--clr-gold) !important; }

.pkg-helper { color: var(--clr-muted); font-size: 0.85rem; text-align: center; margin: 8px 0 36px; }

#cal-embed-wrap { min-height: 900px; border-top: 1px solid var(--clr-bone); padding-top: 40px; margin-top: 8px; }
.cal-loading { color: var(--clr-ghost); font-size: 0.9rem; padding: 60px 20px; text-align: center; }

.booking-note { background: var(--clr-paper); border: 1px solid var(--clr-bone); border-radius: var(--radius-md); padding: 20px 24px; font-size: 0.87rem; color: var(--clr-muted); max-width: 640px; margin: 40px auto 0; line-height: 1.65; text-align: center; }