
:root {
  --green-950:#071914;
  --green-900:#123C2F;
  --green-850:#173f32;
  --green-800:#1f5442;
  --green-700:#2E6B4F;
  --gold-500:#C9A45C;
  --gold-400:#DEBD76;
  --gold-300:#EBD49D;
  --cream-50:#fffdf8;
  --cream-100:#F8F3E8;
  --cream-200:#F1E8D7;
  --cream-300:#E5D5BA;
  --ink-900:#202421;
  --ink-700:#5B665F;
  --white:#fff;
  --border:rgba(18,60,47,.1);
  --shadow-sm:0 12px 32px rgba(18,60,47,.08);
  --shadow-md:0 20px 55px rgba(18,60,47,.13);
  --shadow-deep:0 30px 90px rgba(0,0,0,.28);
  --container:1180px;
  --radius-xl:32px;
  --radius-lg:24px;
  --radius-md:18px;
  --serif:"Playfair Display", Georgia, serif;
  --sans:"Inter", system-ui, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--cream-100);color:var(--ink-900);font-family:var(--sans);overflow-x:hidden;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}
body.menu-open{overflow:hidden}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
button{font:inherit}
a:focus-visible,button:focus-visible,summary:focus-visible{outline:3px solid var(--gold-500);outline-offset:4px}
.skip-link{position:absolute;top:-60px;left:14px;z-index:500;padding:10px 14px;border-radius:999px;background:var(--gold-500);color:var(--green-900);font-weight:800}
.skip-link:focus{top:14px}
.container{width:min(100% - 32px,var(--container));margin-inline:auto}
.narrow{max-width:860px}
.section{padding:78px 0}
.center{text-align:center}

.site-header{position:sticky;top:0;z-index:100;background:rgba(7,25,20,.84);backdrop-filter:blur(18px);border-bottom:1px solid rgba(255,255,255,.08)}
.nav{min-height:82px;display:flex;align-items:center;justify-content:space-between;gap:18px}
.brand{display:flex;align-items:center;min-width:0;padding:8px 10px 8px 0}
.brand img{width:min(240px,50vw);height:auto}
.nav-links{display:none;gap:28px;align-items:center}
.nav-links a{font-size:14px;font-weight:800;color:rgba(255,255,255,.82)}
.nav-links a:hover{color:var(--gold-400)}
.nav-cta{display:none;align-items:center;gap:9px;padding:13px 18px;border-radius:999px;background:linear-gradient(180deg,var(--gold-400),var(--gold-500));color:#fff;font-weight:900;box-shadow:0 14px 34px rgba(201,164,92,.25)}
.nav-cta img{width:18px;height:18px}
.menu-toggle{width:46px;height:46px;border-radius:999px;border:1px solid rgba(255,255,255,.16);background:rgba(255,255,255,.08);display:grid;place-content:center;gap:4px;cursor:pointer}
.menu-toggle span{display:block;width:18px;height:2px;background:#fff;border-radius:999px;transition:.18s ease}
.menu-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(6px) rotate(45deg)}
.menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.menu-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}
.mobile-menu{display:none;position:fixed;left:16px;right:16px;top:82px;background:rgba(7,25,20,.98);border:1px solid rgba(255,255,255,.08);border-radius:24px;padding:14px;box-shadow:var(--shadow-deep)}
.mobile-menu.open{display:grid;gap:8px}
.mobile-menu a:not(.mobile-cta){padding:14px 12px;border-bottom:1px solid rgba(255,255,255,.08);color:#fff;font-weight:800}
.mobile-cta{margin-top:8px;text-align:center;padding:14px 16px;border-radius:14px;background:linear-gradient(180deg,var(--gold-400),var(--gold-500));color:#fff;font-weight:900}

.hero{position:relative;min-height:900px;color:#fff;overflow:hidden}
.hero-bg,.hero-shade{position:absolute;inset:0}
.hero-bg img{width:100%;height:100%;object-fit:cover}
.hero-shade{background:
  radial-gradient(circle at 83% 16%,rgba(201,164,92,.16),transparent 28%),
  linear-gradient(90deg,rgba(5,15,12,.92) 0%,rgba(8,24,19,.72) 36%,rgba(8,24,19,.24) 64%,rgba(8,24,19,.5) 100%),
  linear-gradient(180deg,rgba(7,25,20,.4) 0%,rgba(7,25,20,0) 44%,rgba(7,25,20,.84) 100%)}
.hero-layout{position:relative;z-index:2;min-height:900px;display:grid;gap:28px;align-content:end;padding-top:120px;padding-bottom:54px}
.hero-copy{max-width:720px}
.kicker,.eyebrow{margin:0 0 12px;text-transform:uppercase;letter-spacing:.2em;font-size:12px;font-weight:900;color:var(--gold-400)}
.hero-copy h1,.section-head h2,.showcase-copy h2,.route-copy h2,.partners-copy h2,.gallery-copy h2,.final-box h2{font-family:var(--serif);line-height:1.02;letter-spacing:-.025em}
.hero-copy h1{margin:0 0 18px;color:#fff;font-size:clamp(48px,8vw,96px);max-width:840px}
.hero-lead{margin:0;max-width:620px;color:rgba(255,255,255,.9);font-size:clamp(18px,2.3vw,25px);line-height:1.58}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:28px}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-height:54px;padding:15px 22px;border-radius:14px;border:1px solid transparent;font-weight:900;transition:transform .18s ease,box-shadow .18s ease,background .18s ease}
.btn:hover{transform:translateY(-2px)}
.btn img{width:20px;height:20px}
.btn-gold{background:linear-gradient(180deg,var(--gold-400),var(--gold-500));color:#fff;box-shadow:0 18px 42px rgba(201,164,92,.28)}
.btn-green{background:linear-gradient(180deg,var(--green-800),var(--green-900));color:#fff;box-shadow:0 16px 38px rgba(18,60,47,.22)}
.btn-ghost{color:#fff;border-color:rgba(255,255,255,.32);background:rgba(255,255,255,.08);backdrop-filter:blur(6px)}
.hero-proof{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
.hero-proof span{display:inline-flex;align-items:center;gap:8px;padding:10px 13px;border-radius:999px;background:rgba(255,255,255,.09);border:1px solid rgba(255,255,255,.1);font-size:13px;font-weight:800;color:rgba(255,255,255,.9)}
.hero-proof img{width:16px;height:16px;color:var(--gold-400)}
.booking-card{max-width:440px;padding:22px;border-radius:26px;background:rgba(248,243,232,.95);color:var(--ink-900);border:1px solid rgba(255,255,255,.4);box-shadow:var(--shadow-deep)}
.booking-card-head{display:grid;grid-template-columns:66px 1fr;gap:14px;align-items:center;margin-bottom:18px}
.booking-card-head img{width:66px;height:66px;object-fit:contain}
.booking-card-head strong{font-size:20px;color:var(--green-900)}
.booking-card-head p{margin:4px 0 0;color:var(--ink-700);font-size:14px}
.booking-lines{display:grid;gap:10px;margin-bottom:18px}
.booking-lines div{padding:13px 14px;border:1px solid rgba(18,60,47,.1);border-radius:16px;background:#fff}
.booking-lines span{display:block;font-size:11px;font-weight:900;text-transform:uppercase;letter-spacing:.14em;color:var(--gold-500);margin-bottom:4px}
.booking-lines strong{display:block;font-size:14px;color:var(--green-900)}
.booking-card a{display:flex;align-items:center;justify-content:center;min-height:48px;border-radius:14px;background:var(--green-900);color:#fff;font-weight:900}

.trust-strip{margin-top:-28px;position:relative;z-index:5}
.trust-grid{display:grid;gap:14px;padding:16px;border-radius:26px;background:linear-gradient(90deg,rgba(18,60,47,.98),rgba(31,84,66,.98));box-shadow:var(--shadow-md);border:1px solid rgba(255,255,255,.12)}
.trust-grid article{display:grid;grid-template-columns:42px 1fr;gap:12px;align-items:center;padding:12px;border-radius:18px;background:rgba(255,255,255,.05)}
.trust-grid img{width:28px;height:28px;color:var(--gold-400)}
.trust-grid strong{display:block;color:#fff;font-size:15px;margin-bottom:3px}
.trust-grid span{display:block;color:rgba(255,255,255,.7);font-size:13px}

.section-head{max-width:800px;margin:0 auto 34px}
.section-head h2,.showcase-copy h2,.partners-copy h2,.gallery-copy h2{margin:0 0 14px;color:var(--green-900);font-size:clamp(34px,5vw,60px)}
.section-head p,.showcase-copy p,.partners-copy p,.gallery-copy p{margin:0;color:var(--ink-700);line-height:1.75}
.service-grid{display:grid;gap:20px}
.service-card{padding:28px 24px;border-radius:26px;background:#fff;border:1px solid var(--border);box-shadow:var(--shadow-sm)}
.icon-bubble{width:72px;height:72px;border-radius:22px;display:grid;place-items:center;margin-bottom:18px;background:linear-gradient(180deg,#fff,var(--cream-200));color:var(--green-900)}
.icon-bubble img{width:34px;height:34px}
.service-card h3{margin:0 0 10px;font-family:var(--serif);font-size:30px;color:var(--green-900)}
.service-card p{margin:0 0 18px;color:var(--ink-700);line-height:1.72}
.service-card a{display:inline-flex;color:var(--green-900);font-weight:900;border-bottom:2px solid rgba(201,164,92,.45);padding-bottom:3px}

.mini-routes{padding:28px 0;background:var(--green-900);color:#fff}
.route-chip-wrap{display:grid;gap:14px;align-items:center}
.route-chip-wrap p{margin:0;color:var(--gold-400);font-weight:900;text-transform:uppercase;letter-spacing:.16em;font-size:12px}
.route-chips{display:flex;gap:10px;overflow-x:auto;padding-bottom:4px;scrollbar-width:none}
.route-chips::-webkit-scrollbar{display:none}
.route-chips span{white-space:nowrap;padding:10px 13px;border-radius:999px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.1);font-size:13px;font-weight:800;color:rgba(255,255,255,.9)}

.split-showcase{padding:78px 0;background:linear-gradient(180deg,var(--cream-50),var(--cream-100))}
.showcase-grid{display:grid;gap:30px;align-items:center}
.steps{display:grid;gap:14px;margin:24px 0}
.steps article{display:grid;grid-template-columns:50px 1fr;gap:14px;align-items:start;padding:16px;border-radius:18px;background:#fff;border:1px solid var(--border);box-shadow:0 10px 28px rgba(18,60,47,.05)}
.steps span{width:50px;height:50px;border-radius:999px;display:grid;place-items:center;background:var(--green-900);color:#fff;font-weight:900}
.steps strong{display:block;margin-bottom:4px;color:var(--green-900)}
.steps p{font-size:14px}
.showcase-image img,.partners-media img,.gallery-grid>img{width:100%;height:100%;object-fit:cover;border-radius:30px;box-shadow:var(--shadow-md)}
.image-frame{position:relative}
.image-frame::after{content:"";position:absolute;inset:16px;border:1px solid rgba(201,164,92,.32);border-radius:24px;pointer-events:none}

.route-banner{position:relative;min-height:560px;color:#fff;overflow:hidden}
.route-bg,.route-overlay{position:absolute;inset:0}
.route-bg{width:100%;height:100%;object-fit:cover}
.route-overlay{background:linear-gradient(90deg,rgba(18,60,47,.9) 0%,rgba(18,60,47,.67) 38%,rgba(18,60,47,.12) 100%)}
.route-copy{position:relative;z-index:2;min-height:560px;display:grid;align-content:center;max-width:1180px}
.route-copy h2{margin:0 0 14px;max-width:690px;color:#fff;font-size:clamp(38px,5vw,68px)}
.route-copy p{max-width:560px;margin:0 0 22px;color:rgba(255,255,255,.86);line-height:1.72;font-size:17px}

.pricing-section{background:linear-gradient(180deg,var(--cream-100),#fff)}
.pricing-grid{display:grid;gap:22px}
.price-card{overflow:hidden;border-radius:28px;background:#fff;border:1px solid var(--border);box-shadow:var(--shadow-sm)}
.price-card.featured{border-color:rgba(201,164,92,.5);box-shadow:var(--shadow-md)}
.price-card>img{width:100%;height:220px;object-fit:cover}
.price-content{padding:24px}
.price-label{display:inline-flex;margin-bottom:10px;font-size:12px;font-weight:900;letter-spacing:.16em;text-transform:uppercase;color:var(--gold-500)}
.price-content h3{margin:0 0 10px;font-size:34px;line-height:1;color:var(--green-900)}
.price-content p{margin:0 0 18px;color:var(--ink-700);line-height:1.7}
.price-content a{display:inline-flex;padding:12px 16px;border-radius:12px;background:var(--green-900);color:#fff;font-weight:900}
.pricing-note{margin:18px 0 0;display:flex;align-items:center;justify-content:center;gap:10px;color:var(--ink-700);font-size:14px;text-align:center}
.pricing-note img{width:18px;height:18px;color:var(--gold-500)}

.partners-section{padding:78px 0;background:linear-gradient(180deg,#fff,var(--cream-100))}
.partners-grid{display:grid;gap:30px;align-items:center}
.check-list{list-style:none;padding:0;margin:22px 0 26px;display:grid;gap:12px}
.check-list li{display:flex;align-items:center;gap:10px;color:var(--green-900);font-weight:700}
.check-list img{width:18px;height:18px;color:var(--gold-500)}

.gallery-section{background:var(--cream-50)}
.gallery-grid{display:grid;gap:22px;align-items:stretch}
.gallery-copy{padding:26px;border-radius:28px;background:linear-gradient(180deg,var(--green-900),var(--green-800));color:#fff}
.gallery-copy h2,.gallery-copy p{color:#fff}
.gallery-copy p{opacity:.78}

.faq-section{background:linear-gradient(180deg,var(--cream-50),var(--cream-100))}
.faq-list{display:grid;gap:14px}
.faq-list details{background:#fff;border:1px solid var(--border);border-radius:18px;overflow:hidden}
.faq-list summary{list-style:none;cursor:pointer;padding:18px 20px;color:var(--green-900);font-weight:900;display:flex;align-items:center;justify-content:space-between}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary::after{content:"+";font-size:24px;color:var(--gold-500)}
.faq-list details[open] summary::after{content:"−"}
.faq-list p{margin:0;padding:0 20px 18px;color:var(--ink-700);line-height:1.7}

.final-cta{padding:0 0 78px;background:var(--cream-100)}
.final-box{display:grid;gap:18px;align-items:center;padding:30px;border-radius:30px;background:radial-gradient(circle at 6% 20%,rgba(201,164,92,.22),transparent 22%),linear-gradient(90deg,var(--green-950),var(--green-900),var(--green-800));box-shadow:var(--shadow-deep);color:#fff}
.final-box>img{width:82px;height:82px}
.final-box h2{margin:0 0 8px;color:#fff;font-size:clamp(34px,5vw,56px)}
.final-box p{margin:0;color:rgba(255,255,255,.78);line-height:1.65}

.site-footer{padding:34px 0 18px;background:linear-gradient(180deg,#10382c,#0a241c);color:rgba(255,255,255,.78)}
.footer-grid{display:grid;gap:28px}
.footer-logo{width:min(230px,48vw);margin-bottom:12px}
.site-footer p{max-width:320px;margin:0;color:rgba(255,255,255,.68);line-height:1.7}
.site-footer h3{margin:0 0 12px;color:#fff;font-size:18px}
.site-footer a,.site-footer span{display:block;margin:8px 0;color:rgba(255,255,255,.68)}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;gap:16px;margin-top:24px;padding-top:18px;border-top:1px solid rgba(255,255,255,.08)}
.footer-bottom p{font-size:14px}
.footer-bottom img{width:58px;height:58px}

.sticky-wa{position:fixed;right:16px;bottom:calc(16px + env(safe-area-inset-bottom));z-index:95;display:inline-flex;align-items:center;gap:10px;padding:14px 18px;border-radius:999px;background:linear-gradient(180deg,var(--gold-400),var(--gold-500));color:#fff;font-weight:900;box-shadow:0 18px 44px rgba(18,60,47,.24)}
.sticky-wa img{width:20px;height:20px}

@media (min-width:700px){
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .pricing-grid{grid-template-columns:repeat(3,1fr)}
  .gallery-grid{grid-template-columns:1.1fr 1fr 1fr}
  .footer-grid{grid-template-columns:1.3fr 1fr 1fr}
  .final-box{grid-template-columns:auto 1fr auto}
  .route-chip-wrap{grid-template-columns:auto 1fr}
}
@media (min-width:980px){
  .nav-links,.nav-cta{display:flex}
  .menu-toggle{display:none}
  .hero-layout{grid-template-columns:1.2fr .8fr;align-items:end}
  .trust-grid{grid-template-columns:repeat(4,1fr)}
  .service-grid{grid-template-columns:repeat(4,1fr)}
  .showcase-grid{grid-template-columns:1fr 1.1fr}
  .partners-grid{grid-template-columns:1.1fr .9fr}
  .price-card.featured{transform:translateY(-10px)}
}
@media (max-width:979px){
  .sticky-wa span{display:none}
  .sticky-wa{width:58px;height:58px;padding:0;justify-content:center}
}
@media (max-width:699px){
  .section{padding:62px 0}
  .hero{min-height:820px}
  .hero-layout{min-height:820px;padding-top:104px;padding-bottom:34px}
  .hero-copy h1{font-size:48px}
  .hero-actions .btn{width:100%}
  .booking-card{max-width:none}
  .final-box{padding:24px}
  .footer-bottom{flex-direction:column;align-items:flex-start}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  .btn,.menu-toggle span{transition:none}
}


/* v5 Elite upgrades */
.request-section{
  padding:78px 0;
  background:
    radial-gradient(circle at 15% 18%, rgba(201,164,92,.16), transparent 24%),
    linear-gradient(180deg,#fff,var(--cream-100));
}
.request-grid{
  display:grid;
  gap:28px;
  align-items:center;
}
.request-copy h2{
  margin:0 0 14px;
  font-family:var(--serif);
  font-size:clamp(34px,5vw,60px);
  line-height:1.02;
  color:var(--green-900);
}
.request-copy p{
  margin:0;
  color:var(--ink-700);
  line-height:1.75;
  max-width:620px;
}
.request-card{
  padding:22px;
  border-radius:28px;
  background:var(--green-900);
  color:#fff;
  box-shadow:var(--shadow-md);
  border:1px solid rgba(255,255,255,.08);
}
.request-row{
  display:grid;
  gap:5px;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.request-row:first-child{
  padding-top:0;
}
.request-row span{
  font-size:11px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--gold-400);
}
.request-row strong{
  font-size:15px;
  color:rgba(255,255,255,.9);
}
.request-card .btn{
  width:100%;
  margin-top:18px;
}

.partner-flow{
  padding:44px 0;
  background:var(--green-900);
  color:#fff;
}
.partner-flow-grid{
  display:grid;
  gap:16px;
  align-items:start;
}
.partner-flow h2{
  margin:0;
  font-family:var(--serif);
  font-size:clamp(30px,4vw,48px);
  line-height:1.05;
  color:#fff;
}
.partner-flow article{
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
}
.partner-flow article span{
  width:36px;
  height:36px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:var(--gold-500);
  color:#fff;
  font-weight:900;
  margin-bottom:12px;
}
.partner-flow article strong{
  display:block;
  margin-bottom:6px;
  color:#fff;
}
.partner-flow article p{
  margin:0;
  color:rgba(255,255,255,.72);
  line-height:1.6;
  font-size:14px;
}

@media (min-width:700px){
  .request-grid{grid-template-columns:1fr 1fr}
  .partner-flow-grid{grid-template-columns:1.1fr repeat(3,1fr)}
}

@media (max-width:699px){
  .request-section{padding:62px 0}
  .partner-flow{padding:34px 0}
  .route-chip-wrap{gap:10px}
}


/* v6 PRO booking builder + deploy polish */
.noscript-bar{
  position:relative;
  z-index:999;
  padding:12px 16px;
  background:var(--gold-500);
  color:#fff;
  text-align:center;
  font-weight:800;
}
.noscript-bar a{
  color:#fff;
  text-decoration:underline;
}
.booking-builder-section{
  padding:78px 0;
  background:
    radial-gradient(circle at 82% 14%,rgba(201,164,92,.16),transparent 24%),
    linear-gradient(180deg,var(--cream-100),#fff);
}
.builder-grid{
  display:grid;
  gap:30px;
  align-items:start;
}
.builder-copy h2{
  margin:0 0 14px;
  font-family:var(--serif);
  font-size:clamp(34px,5vw,60px);
  line-height:1.02;
  color:var(--green-900);
}
.builder-copy p{
  margin:0;
  color:var(--ink-700);
  line-height:1.75;
  max-width:620px;
}
.builder-points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}
.builder-points span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 13px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--border);
  color:var(--green-900);
  font-size:13px;
  font-weight:900;
  box-shadow:0 10px 24px rgba(18,60,47,.05);
}
.builder-points img{
  width:16px;
  height:16px;
  color:var(--gold-500);
}
.booking-builder{
  padding:22px;
  border-radius:28px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-md);
  display:grid;
  gap:14px;
}
.booking-builder label{
  display:grid;
  gap:7px;
}
.booking-builder label span{
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--green-900);
}
.booking-builder input,
.booking-builder select,
.booking-builder textarea{
  width:100%;
  border:1px solid rgba(18,60,47,.14);
  background:var(--cream-50);
  color:var(--ink-900);
  border-radius:14px;
  padding:13px 14px;
  font:inherit;
  outline:none;
}
.booking-builder input:focus,
.booking-builder select:focus,
.booking-builder textarea:focus{
  border-color:var(--gold-500);
  box-shadow:0 0 0 4px rgba(201,164,92,.14);
}
.builder-two{
  display:grid;
  gap:14px;
}
.message-preview{
  padding:16px;
  border-radius:18px;
  background:var(--green-900);
  color:#fff;
}
.message-preview strong{
  display:block;
  margin-bottom:8px;
  color:var(--gold-400);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.14em;
}
.message-preview p{
  margin:0;
  white-space:pre-wrap;
  color:rgba(255,255,255,.84);
  line-height:1.55;
  font-size:14px;
}
.builder-submit{
  width:100%;
}
@media (min-width:700px){
  .builder-grid{grid-template-columns:.9fr 1.1fr}
  .builder-two{grid-template-columns:1fr 1fr}
}
@media (max-width:699px){
  .booking-builder-section{padding:62px 0}
}

.not-found{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:40px 0;
  background:radial-gradient(circle at 15% 20%,rgba(201,164,92,.18),transparent 28%),linear-gradient(180deg,var(--cream-100),#fff);
}
.not-found-card{
  max-width:760px;
  padding:34px;
  border-radius:30px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-md);
  text-align:center;
}
.not-found-card img{
  width:min(260px,70vw);
  margin:0 auto 18px;
}
.not-found-card h1{
  margin:0 0 12px;
  font-family:var(--serif);
  font-size:clamp(40px,6vw,72px);
  color:var(--green-900);
}
.not-found-card p{
  margin:0 auto 24px;
  color:var(--ink-700);
  line-height:1.7;
  max-width:560px;
}
.not-found-card .hero-actions{
  justify-content:center;
}


/* v7 BUSINESS upgrades */
.standards-section{
  padding:78px 0;
  background:
    radial-gradient(circle at 84% 16%, rgba(201,164,92,.12), transparent 24%),
    linear-gradient(180deg,#fff,var(--cream-100));
}
.standards-grid{
  display:grid;
  gap:30px;
  align-items:start;
}
.standards-copy h2{
  margin:0 0 14px;
  font-family:var(--serif);
  font-size:clamp(34px,5vw,60px);
  line-height:1.02;
  color:var(--green-900);
}
.standards-copy p{
  margin:0;
  color:var(--ink-700);
  line-height:1.75;
  max-width:620px;
}
.standards-cards{
  display:grid;
  gap:16px;
}
.standards-cards article{
  padding:20px;
  border-radius:22px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:0 12px 30px rgba(18,60,47,.06);
}
.standards-cards img{
  width:30px;
  height:30px;
  margin-bottom:12px;
  color:var(--gold-500);
}
.standards-cards h3{
  margin:0 0 8px;
  font-family:var(--serif);
  font-size:26px;
  color:var(--green-900);
}
.standards-cards p{
  margin:0;
  color:var(--ink-700);
  line-height:1.65;
  font-size:14px;
}

.quick-routes{
  padding:16px;
  border-radius:18px;
  background:var(--cream-100);
  border:1px solid var(--border);
}
.quick-routes strong{
  display:block;
  margin-bottom:10px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--green-900);
}
.quick-routes div{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.quick-routes button{
  border:0;
  border-radius:999px;
  padding:10px 12px;
  background:#fff;
  color:var(--green-900);
  font-weight:800;
  font-size:13px;
  box-shadow:0 8px 18px rgba(18,60,47,.06);
  cursor:pointer;
}
.quick-routes button:hover{
  background:var(--green-900);
  color:#fff;
}
.estimate-box{
  display:grid;
  gap:5px;
  padding:16px;
  border-radius:18px;
  background:linear-gradient(180deg,var(--green-900),var(--green-800));
  color:#fff;
}
.estimate-box span{
  font-size:11px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold-400);
}
.estimate-box strong{
  font-size:28px;
  line-height:1;
}
.estimate-box p{
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:13px;
  line-height:1.5;
}

.route-cards-section{
  background:linear-gradient(180deg,#fff,var(--cream-100));
}
.route-card-grid{
  display:grid;
  gap:18px;
}
.route-card-grid article{
  padding:22px;
  border-radius:24px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:0 12px 32px rgba(18,60,47,.06);
}
.route-card-grid span{
  display:inline-flex;
  margin-bottom:12px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(201,164,92,.16);
  color:var(--green-900);
  font-size:11px;
  font-weight:900;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.route-card-grid h3{
  margin:0 0 10px;
  font-family:var(--serif);
  font-size:28px;
  line-height:1.1;
  color:var(--green-900);
}
.route-card-grid p{
  margin:0 0 16px;
  color:var(--ink-700);
  line-height:1.65;
}
.route-card-grid a{
  display:inline-flex;
  padding:11px 14px;
  border-radius:12px;
  background:var(--green-900);
  color:#fff;
  font-weight:900;
  font-size:14px;
}

@media (min-width:700px){
  .standards-grid{grid-template-columns:.9fr 1.1fr}
  .standards-cards{grid-template-columns:1fr 1fr}
  .route-card-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:699px){
  .standards-section{padding:62px 0}
}

.legal-page{
  min-height:100vh;
  padding:48px 0;
  background:radial-gradient(circle at 15% 20%,rgba(201,164,92,.16),transparent 26%),linear-gradient(180deg,var(--cream-100),#fff);
}
.legal-card{
  max-width:820px;
  padding:32px;
  border-radius:30px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-md);
}
.legal-card img{
  width:min(240px,68vw);
  margin-bottom:20px;
}
.legal-card h1{
  margin:0 0 16px;
  font-family:var(--serif);
  font-size:clamp(38px,6vw,64px);
  color:var(--green-900);
}
.legal-card p{
  color:var(--ink-700);
  line-height:1.75;
}
.legal-card a{
  color:var(--green-900);
  font-weight:900;
  border-bottom:2px solid rgba(201,164,92,.45);
}


/* v8 PARTNER pages + segment cards */
.segment-section{
  padding:58px 0 20px;
  background:linear-gradient(180deg,var(--cream-100),#fff);
}
.segment-grid{
  display:grid;
  gap:18px;
}
.segment-grid article{
  padding:24px;
  border-radius:26px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:0 14px 36px rgba(18,60,47,.07);
}
.segment-grid span{
  display:inline-flex;
  margin-bottom:12px;
  color:var(--gold-500);
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.segment-grid h2{
  margin:0 0 10px;
  font-family:var(--serif);
  color:var(--green-900);
  font-size:32px;
  line-height:1.05;
}
.segment-grid p{
  margin:0 0 18px;
  color:var(--ink-700);
  line-height:1.65;
}
.segment-grid a{
  display:inline-flex;
  color:var(--green-900);
  font-weight:900;
  border-bottom:2px solid rgba(201,164,92,.45);
  padding-bottom:3px;
}
.partner-hero,.driver-hero{
  padding:86px 0;
  background:radial-gradient(circle at 16% 20%,rgba(201,164,92,.18),transparent 26%),linear-gradient(180deg,var(--green-900),var(--green-800));
  color:#fff;
}
.partner-hero-grid,.driver-hero-grid{
  display:grid;
  gap:30px;
  align-items:center;
}
.partner-hero h1,.driver-hero h1{
  margin:0 0 18px;
  font-family:var(--serif);
  font-size:clamp(42px,7vw,78px);
  line-height:1.02;
}
.partner-hero p,.driver-hero p{
  margin:0;
  max-width:680px;
  color:rgba(255,255,255,.82);
  line-height:1.75;
  font-size:17px;
}
.partner-hero img,.driver-hero img{
  width:100%;
  border-radius:30px;
  box-shadow:var(--shadow-deep);
}
.btn-ghost-dark{
  color:var(--green-900);
  background:#fff;
  border-color:rgba(18,60,47,.1);
}
.partner-detail-grid,.driver-standards-grid{
  display:grid;
  gap:18px;
}
.partner-detail-grid article,.driver-standards-grid article{
  padding:24px;
  border-radius:24px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:0 12px 34px rgba(18,60,47,.07);
}
.partner-detail-grid span{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:var(--green-900);
  color:#fff;
  font-weight:900;
  margin-bottom:14px;
}
.partner-detail-grid h2,.driver-standards-grid h2{
  margin:0 0 10px;
  font-family:var(--serif);
  color:var(--green-900);
  font-size:30px;
}
.partner-detail-grid p,.driver-standards-grid p{
  margin:0;
  color:var(--ink-700);
  line-height:1.7;
}
.driver-standards-grid img{
  width:34px;
  height:34px;
  color:var(--gold-500);
  margin-bottom:14px;
}
.partner-model-section,.driver-apply-section{
  padding:76px 0;
  background:linear-gradient(180deg,#fff,var(--cream-100));
}
.partner-model-grid,.driver-apply-box{
  display:grid;
  gap:28px;
  align-items:center;
}
.partner-model-grid h2,.driver-apply-box h2,.partner-checklist h2{
  margin:0 0 14px;
  font-family:var(--serif);
  color:var(--green-900);
  font-size:clamp(34px,5vw,58px);
  line-height:1.03;
}
.partner-model-grid p,.driver-apply-box p{
  margin:0;
  color:var(--ink-700);
  line-height:1.75;
}
.model-cards{
  display:grid;
  gap:14px;
}
.model-cards article{
  padding:20px;
  border-radius:22px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:0 10px 28px rgba(18,60,47,.05);
}
.model-cards h3{
  margin:0 0 8px;
  color:var(--green-900);
}
.model-cards p{
  margin:0;
  color:var(--ink-700);
}
.partner-checklist{
  display:grid;
  gap:22px;
}
.partner-checklist ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}
.partner-checklist li{
  display:flex;
  gap:10px;
  align-items:center;
  color:var(--green-900);
  font-weight:700;
}
.partner-checklist img{
  width:18px;
  height:18px;
  color:var(--gold-500);
}
.driver-apply-box{
  padding:30px;
  border-radius:30px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-md);
}
@media (min-width:700px){
  .segment-grid{grid-template-columns:repeat(3,1fr)}
  .partner-detail-grid,.driver-standards-grid{grid-template-columns:repeat(4,1fr)}
  .partner-model-grid,.driver-apply-box{grid-template-columns:1fr 1fr}
}
@media (min-width:980px){
  .partner-hero-grid,.driver-hero-grid{grid-template-columns:1.05fr .95fr}
}


/* v9 SALES KIT */
.sales-hero{
  padding:86px 0;
  background:radial-gradient(circle at 14% 18%,rgba(201,164,92,.2),transparent 26%),linear-gradient(180deg,var(--green-900),var(--green-800));
  color:#fff;
}
.sales-hero-grid{
  display:grid;
  gap:30px;
  align-items:center;
}
.sales-hero h1{
  margin:0 0 18px;
  font-family:var(--serif);
  font-size:clamp(42px,7vw,78px);
  line-height:1.02;
}
.sales-hero p{
  margin:0;
  max-width:680px;
  color:rgba(255,255,255,.82);
  line-height:1.75;
  font-size:17px;
}
.sales-hero img{
  border-radius:28px;
  box-shadow:var(--shadow-deep);
}
.onepager-card{
  padding:28px;
  border-radius:32px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-md);
}
.onepager-header{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-bottom:20px;
  border-bottom:1px solid var(--border);
  margin-bottom:24px;
}
.onepager-header img{
  width:min(230px,60vw);
}
.onepager-header span{
  color:var(--gold-500);
  font-weight:900;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.13em;
}
.onepager-grid,.onepager-pricing,.pitch-grid{
  display:grid;
  gap:18px;
}
.onepager-grid article,.pitch-grid article{
  padding:20px;
  border-radius:22px;
  background:var(--cream-50);
  border:1px solid var(--border);
}
.onepager-grid h2,.pitch-grid h2{
  margin:0 0 10px;
  font-family:var(--serif);
  color:var(--green-900);
  font-size:30px;
}
.onepager-grid p,.pitch-grid p{
  margin:0;
  color:var(--ink-700);
  line-height:1.7;
}
.onepager-pricing{
  margin:24px 0;
}
.onepager-pricing div{
  padding:18px;
  border-radius:20px;
  background:linear-gradient(180deg,var(--green-900),var(--green-800));
  color:#fff;
}
.onepager-pricing span{
  display:block;
  margin-bottom:8px;
  color:var(--gold-400);
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  font-weight:900;
}
.onepager-pricing strong{
  font-size:28px;
}
.onepager-footer{
  display:grid;
  gap:18px;
  align-items:center;
  padding-top:20px;
  border-top:1px solid var(--border);
}
.onepager-footer p{
  margin:0;
  color:var(--ink-700);
  line-height:1.7;
}
.qr-page{
  min-height:100vh;
  padding:70px 0;
  background:linear-gradient(180deg,var(--cream-100),#fff);
}
.qr-intro h1{
  margin:0 0 14px;
  font-family:var(--serif);
  color:var(--green-900);
  font-size:clamp(42px,7vw,78px);
  line-height:1.02;
}
.qr-intro p{
  margin:0 0 30px;
  color:var(--ink-700);
  line-height:1.7;
}
.qr-card-grid{
  display:grid;
  gap:20px;
}
.qr-card-grid article{
  padding:22px;
  border-radius:28px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
  text-align:center;
}
.qr-card-grid article>img{
  width:min(100%,320px);
  margin:0 auto 16px;
  border-radius:18px;
}
.qr-card-grid h2{
  margin:0 0 8px;
  font-family:var(--serif);
  color:var(--green-900);
  font-size:30px;
}
.qr-card-grid p{
  margin:0 0 16px;
  color:var(--ink-700);
}
.qr-card-grid a{
  display:inline-flex;
  padding:12px 16px;
  border-radius:12px;
  background:var(--green-900);
  color:#fff;
  font-weight:900;
}
.print-button{
  border:0;
  cursor:pointer;
}
@media (min-width:700px){
  .sales-hero-grid{grid-template-columns:1fr 1fr}
  .onepager-grid,.onepager-pricing,.pitch-grid,.qr-card-grid{grid-template-columns:repeat(3,1fr)}
  .onepager-footer{grid-template-columns:1fr auto}
}
@media print{
  .site-header,.qr-intro,.qr-card-grid a{display:none!important}
  body{background:#fff}
  .qr-page{padding:0}
  .qr-card-grid{grid-template-columns:repeat(3,1fr);gap:10px}
  .qr-card-grid article{box-shadow:none;break-inside:avoid;border:1px solid #ddd}
}


/* v10 FIELD OPS */
.copy-message-btn{
  width:100%;
  min-height:48px;
  border:1px solid rgba(18,60,47,.16);
  background:var(--cream-100);
  color:var(--green-900);
  border-radius:14px;
  font-weight:900;
  cursor:pointer;
}
.copy-message-btn:hover{
  background:#fff;
}
.price-actions{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
}
.price-actions a{
  display:inline-flex;
  padding:10px 14px;
  border-radius:999px;
  background:#fff;
  color:var(--green-900);
  border:1px solid var(--border);
  font-weight:900;
  font-size:14px;
  box-shadow:0 8px 22px rgba(18,60,47,.05);
}
.route-sheet-hero{
  padding:86px 0;
  background:radial-gradient(circle at 15% 20%,rgba(201,164,92,.2),transparent 28%),linear-gradient(180deg,var(--green-900),var(--green-800));
  color:#fff;
}
.route-sheet-grid{
  display:grid;
  gap:30px;
  align-items:center;
}
.route-sheet-grid h1,.ops-hero h1{
  margin:0 0 18px;
  font-family:var(--serif);
  font-size:clamp(42px,7vw,78px);
  line-height:1.02;
}
.route-sheet-grid p,.ops-hero p{
  margin:0;
  max-width:680px;
  color:rgba(255,255,255,.82);
  line-height:1.75;
  font-size:17px;
}
.route-sheet-grid img{
  border-radius:30px;
  box-shadow:var(--shadow-deep);
}
.route-table-card{
  margin-bottom:24px;
  padding:22px;
  border-radius:28px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-sm);
}
.route-table-head{
  margin-bottom:18px;
}
.route-table-head h2{
  margin:0 0 8px;
  font-family:var(--serif);
  font-size:clamp(32px,5vw,52px);
  color:var(--green-900);
}
.route-table-head p{
  margin:0;
  color:var(--ink-700);
}
.responsive-table{
  overflow-x:auto;
}
table{
  width:100%;
  border-collapse:collapse;
  min-width:760px;
}
th,td{
  padding:14px 12px;
  text-align:left;
  border-bottom:1px solid rgba(18,60,47,.1);
}
th{
  color:var(--green-900);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.14em;
}
td{
  color:var(--ink-700);
}
td:first-child{
  color:var(--green-900);
  font-weight:800;
}
td a{
  display:inline-flex;
  padding:9px 12px;
  border-radius:10px;
  background:var(--green-900);
  color:#fff;
  font-weight:900;
  font-size:13px;
}
.route-disclaimer{
  margin:0;
  color:var(--ink-700);
  text-align:center;
  font-size:14px;
}
.ops-hero{
  padding:86px 0;
  background:linear-gradient(180deg,var(--green-900),var(--green-800));
  color:#fff;
}
.ops-grid{
  display:grid;
  gap:18px;
}
.ops-grid article{
  padding:22px;
  border-radius:24px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:0 12px 32px rgba(18,60,47,.06);
}
.ops-grid span{
  width:42px;
  height:42px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:var(--green-900);
  color:#fff;
  font-weight:900;
  margin-bottom:14px;
}
.ops-grid h2{
  margin:0 0 12px;
  font-family:var(--serif);
  color:var(--green-900);
  font-size:30px;
}
.ops-grid ul{
  margin:0;
  padding-left:18px;
  color:var(--ink-700);
  line-height:1.8;
}
.ops-message-section{
  background:var(--cream-100);
}
.ops-message-box{
  display:grid;
  gap:22px;
  align-items:start;
}
.ops-message-box h2{
  margin:0;
  font-family:var(--serif);
  color:var(--green-900);
  font-size:clamp(34px,5vw,56px);
}
.ops-message-box pre{
  white-space:pre-wrap;
  padding:22px;
  border-radius:22px;
  background:var(--green-900);
  color:#fff;
  line-height:1.65;
  box-shadow:var(--shadow-md);
}
@media (min-width:700px){
  .route-sheet-grid{grid-template-columns:1fr 1fr}
  .ops-grid{grid-template-columns:repeat(4,1fr)}
  .ops-message-box{grid-template-columns:.9fr 1.1fr}
}


/* v11 SEO LAUNCH pages */
.service-landing-hero{
  padding:86px 0;
  color:#fff;
  background:radial-gradient(circle at 15% 20%,rgba(201,164,92,.2),transparent 28%),linear-gradient(180deg,var(--green-900),var(--green-800));
}
.service-landing-grid{
  display:grid;
  gap:30px;
  align-items:center;
}
.service-landing-grid h1{
  margin:0 0 18px;
  font-family:var(--serif);
  font-size:clamp(42px,7vw,78px);
  line-height:1.02;
}
.service-landing-grid p{
  margin:0;
  max-width:680px;
  color:rgba(255,255,255,.82);
  line-height:1.75;
  font-size:17px;
}
.service-landing-grid>img{
  border-radius:30px;
  box-shadow:var(--shadow-deep);
}
.service-price-pill{
  display:inline-flex;
  margin-top:22px;
  padding:12px 16px;
  border-radius:999px;
  background:rgba(255,255,255,.1);
  color:var(--gold-400);
  border:1px solid rgba(255,255,255,.12);
  font-weight:900;
}
.service-landing-content{
  display:grid;
  gap:28px;
  align-items:start;
}
.service-landing-content h2{
  margin:0 0 12px;
  font-family:var(--serif);
  font-size:clamp(34px,5vw,56px);
  color:var(--green-900);
}
.service-landing-content p{
  margin:0;
  color:var(--ink-700);
  line-height:1.7;
}
.service-bullet-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}
.service-bullet-list li{
  display:flex;
  gap:10px;
  align-items:center;
  padding:14px;
  border-radius:16px;
  background:#fff;
  border:1px solid var(--border);
  color:var(--green-900);
  font-weight:800;
}
.service-bullet-list img{
  width:18px;
  height:18px;
  color:var(--gold-500);
}
.linkhub-page,.thankyou-page{
  min-height:100vh;
  display:grid;
  place-items:center;
  padding:44px 0;
  background:radial-gradient(circle at 16% 18%,rgba(201,164,92,.16),transparent 26%),linear-gradient(180deg,var(--cream-100),#fff);
}
.linkhub-card,.thankyou-card{
  max-width:760px;
  padding:30px;
  border-radius:32px;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow-md);
}
.linkhub-card>img{
  width:min(260px,72vw);
  margin-bottom:18px;
}
.linkhub-card h1,.thankyou-card h1{
  margin:0 0 20px;
  font-family:var(--serif);
  font-size:clamp(40px,7vw,72px);
  line-height:1.02;
  color:var(--green-900);
}
.linkhub-list{
  display:grid;
  gap:12px;
}
.linkhub-list a{
  display:grid;
  gap:4px;
  padding:16px;
  border-radius:18px;
  background:var(--cream-50);
  border:1px solid var(--border);
}
.linkhub-list strong{
  color:var(--green-900);
}
.linkhub-list span{
  color:var(--ink-700);
  font-size:14px;
}
.thankyou-card{
  text-align:center;
}
.thankyou-card>img{
  width:90px;
  height:90px;
  margin:0 auto 18px;
}
.thankyou-card p{
  margin:0 auto 24px;
  max-width:560px;
  color:var(--ink-700);
  line-height:1.7;
}
.thankyou-card .hero-actions{
  justify-content:center;
}
@media (min-width:700px){
  .service-landing-grid{grid-template-columns:1fr 1fr}
  .service-landing-content{grid-template-columns:.9fr 1.1fr}
}


/* v12 GROWTH SEO route pages + UTM-ready deploy */
.route-landing-hero{
  padding:86px 0;
  color:#fff;
  background:radial-gradient(circle at 15% 20%,rgba(201,164,92,.2),transparent 28%),linear-gradient(180deg,var(--green-900),var(--green-800));
}
.route-landing-grid{
  display:grid;
  gap:30px;
  align-items:center;
}
.route-landing-grid h1{
  margin:0 0 18px;
  font-family:var(--serif);
  font-size:clamp(42px,7vw,78px);
  line-height:1.02;
}
.route-landing-grid p{
  margin:0;
  max-width:680px;
  color:rgba(255,255,255,.82);
  line-height:1.75;
  font-size:17px;
}
.route-landing-grid>img{
  width:100%;
  border-radius:30px;
  box-shadow:var(--shadow-deep);
}
.route-meta-cards{
  display:grid;
  gap:10px;
  margin:22px 0 4px;
}
.route-meta-cards div{
  padding:13px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.1);
}
.route-meta-cards span{
  display:block;
  margin-bottom:4px;
  color:var(--gold-400);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:900;
}
.route-meta-cards strong{
  color:#fff;
}
.route-landing-content{
  display:grid;
  gap:28px;
  align-items:start;
}
.route-landing-content h2{
  margin:0 0 12px;
  font-family:var(--serif);
  font-size:clamp(34px,5vw,56px);
  color:var(--green-900);
}
.route-landing-content p{
  margin:0;
  color:var(--ink-700);
  line-height:1.7;
}
td a{
  color:#fff;
}
td:first-child a{
  color:var(--green-900);
  background:transparent;
  padding:0;
  font-weight:900;
}
@media (min-width:700px){
  .route-landing-grid{grid-template-columns:1fr 1fr}
  .route-meta-cards{grid-template-columns:repeat(3,1fr)}
  .route-landing-content{grid-template-columns:.9fr 1.1fr}
}


/* v13 UX POLISH - final design pass */
:root{
  --soft-line:rgba(255,255,255,.12);
}

/* smoother page rhythm */
.section,
.split-showcase,
.request-section,
.booking-builder-section,
.partners-section,
.standards-section{
  position:relative;
}

/* cleaner header behavior */
.site-header{
  box-shadow:0 10px 30px rgba(0,0,0,.10);
}
.nav{
  min-height:76px;
}
.brand img{
  width:min(220px,46vw);
}
.nav-links{
  padding:7px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  gap:4px;
}
.nav-links a{
  padding:10px 13px;
  border-radius:999px;
}
.nav-links a:hover{
  background:rgba(255,255,255,.08);
}

/* hero: more premium, less giant empty feel */
.hero{
  min-height:clamp(760px,92vh,900px);
}
.hero-layout{
  min-height:clamp(760px,92vh,900px);
  align-content:center;
  padding-top:96px;
  padding-bottom:44px;
}
.hero-copy h1{
  text-wrap:balance;
}
.hero-lead{
  max-width:650px;
}
.hero-stats{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top:22px;
  max-width:650px;
}
.hero-stats div{
  padding:14px 13px;
  border-radius:18px;
  background:rgba(255,255,255,.09);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(8px);
}
.hero-stats strong{
  display:block;
  color:#fff;
  font-size:16px;
  margin-bottom:4px;
}
.hero-stats span{
  display:block;
  color:rgba(255,255,255,.72);
  font-size:12px;
  font-weight:700;
}
.booking-card{
  transform:translateY(10px);
}
.booking-card::before{
  content:"";
  display:block;
  height:4px;
  width:86px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--gold-500),var(--gold-300));
  margin-bottom:16px;
}

/* trust strip and segment cards */
.trust-strip{
  margin-top:-42px;
}
.trust-grid{
  backdrop-filter:blur(12px);
}
.segment-section{
  padding-top:74px;
}
.segment-grid article{
  transition:transform .18s ease, box-shadow .18s ease;
}
.segment-grid article:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
}

/* cards look less generic */
.service-card,
.price-card,
.route-card-grid article,
.standards-cards article,
.partner-detail-grid article,
.driver-standards-grid article{
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service-card:hover,
.price-card:hover,
.route-card-grid article:hover,
.standards-cards article:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:rgba(201,164,92,.28);
}
.service-card a{
  margin-top:auto;
}

/* assurance section */
.assurance-section{
  padding:62px 0;
  background:linear-gradient(180deg,var(--green-900),var(--green-800));
  color:#fff;
}
.assurance-grid{
  display:grid;
  gap:18px;
  align-items:stretch;
}
.assurance-main{
  padding:24px;
}
.assurance-main h2{
  margin:0 0 12px;
  font-family:var(--serif);
  font-size:clamp(34px,5vw,58px);
  line-height:1.03;
  color:#fff;
}
.assurance-main p{
  margin:0;
  color:rgba(255,255,255,.78);
  line-height:1.75;
}
.assurance-grid article{
  padding:22px;
  border-radius:24px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.10);
}
.assurance-grid article strong{
  display:inline-grid;
  place-items:center;
  width:40px;
  height:40px;
  border-radius:999px;
  background:var(--gold-500);
  color:#fff;
  margin-bottom:12px;
}
.assurance-grid article span{
  display:block;
  margin-bottom:8px;
  color:#fff;
  font-weight:900;
  font-size:18px;
}
.assurance-grid article p{
  margin:0;
  color:rgba(255,255,255,.72);
  line-height:1.65;
}

/* booking builder polish */
.booking-builder-section{
  background:
    radial-gradient(circle at 14% 12%, rgba(201,164,92,.16), transparent 25%),
    radial-gradient(circle at 88% 18%, rgba(18,60,47,.10), transparent 25%),
    linear-gradient(180deg,var(--cream-100),#fff);
}
.booking-builder{
  border-radius:30px;
}
.booking-builder input,
.booking-builder select,
.booking-builder textarea{
  min-height:48px;
}
.quick-route-hint{
  margin:0 0 10px;
  color:var(--ink-700);
  font-size:13px;
  line-height:1.45;
}
.quick-routes button{
  min-height:42px;
}
.copy-message-btn{
  transition:background .18s ease, transform .18s ease;
}
.copy-message-btn:hover{
  transform:translateY(-1px);
}
.message-preview{
  max-height:240px;
  overflow:auto;
}

/* image treatment */
.image-frame img,
.partners-media img,
.showcase-image img{
  aspect-ratio:4/3;
}
.gallery-grid>img{
  min-height:320px;
}

/* mobile bottom action bar */
.mobile-action-bar{
  display:none;
}
.desktop-only{
  display:inline-flex;
}

/* route sheet table links fix */
td:first-child a{
  border-bottom:2px solid rgba(201,164,92,.35);
}

/* footer clarity */
.site-footer{
  padding-bottom:calc(18px + env(safe-area-inset-bottom));
}

@media (min-width:700px){
  .assurance-grid{
    grid-template-columns:1.2fr repeat(3,1fr);
  }
}

@media (max-width:979px){
  .desktop-only{
    display:none!important;
  }
}

@media (max-width:699px){
  body{
    padding-bottom:calc(72px + env(safe-area-inset-bottom));
  }
  .site-header{
    position:sticky;
  }
  .nav{
    min-height:70px;
  }
  .brand img{
    width:min(190px,54vw);
  }
  .hero{
    min-height:auto;
  }
  .hero-layout{
    min-height:auto;
    padding-top:64px;
    padding-bottom:28px;
    align-content:start;
  }
  .hero-copy h1{
    font-size:44px;
    line-height:1.02;
  }
  .hero-lead{
    font-size:17px;
  }
  .hero-actions{
    gap:10px;
  }
  .hero-proof{
    gap:8px;
  }
  .hero-proof span{
    font-size:12px;
    padding:9px 11px;
  }
  .hero-stats{
    grid-template-columns:1fr;
  }
  .booking-card{
    transform:none;
    padding:18px;
  }
  .trust-strip{
    margin-top:0;
  }
  .trust-grid{
    border-radius:0;
    width:calc(100% + 32px);
    margin-left:-16px;
  }
  .segment-section{
    padding-top:48px;
  }
  .segment-grid article,
  .service-card,
  .price-card,
  .route-card-grid article{
    border-radius:22px;
  }
  .assurance-grid{
    gap:12px;
  }
  .assurance-main{
    padding:8px 2px 10px;
  }
  .request-card,
  .booking-builder{
    padding:18px;
    border-radius:24px;
  }
  .builder-points{
    gap:8px;
  }
  .builder-points span{
    width:100%;
    justify-content:center;
  }
  .route-banner{
    min-height:500px;
  }
  .route-copy{
    min-height:500px;
  }
  .mobile-action-bar{
    position:fixed;
    left:10px;
    right:10px;
    bottom:calc(10px + env(safe-area-inset-bottom));
    z-index:140;
    display:grid;
    grid-template-columns:1.15fr 1fr .85fr;
    gap:8px;
    padding:8px;
    border-radius:22px;
    background:rgba(7,25,20,.92);
    backdrop-filter:blur(16px);
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 18px 50px rgba(0,0,0,.28);
  }
  .mobile-action-bar a{
    min-height:48px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:7px;
    font-size:13px;
    font-weight:900;
    color:#fff;
    background:rgba(255,255,255,.08);
  }
  .mobile-action-bar a:first-child{
    background:linear-gradient(180deg,var(--gold-400),var(--gold-500));
  }
  .mobile-action-bar img{
    width:18px;
    height:18px;
  }
}

@media (max-width:390px){
  .hero-copy h1{
    font-size:40px;
  }
  .brand img{
    width:min(176px,52vw);
  }
  .mobile-action-bar{
    grid-template-columns:1fr 1fr;
  }
  .mobile-action-bar a:nth-child(3){
    display:none;
  }
}


/* v15 PERFORMANCE & ACCESSIBILITY */
img{
  height:auto;
}
.hero-bg img,
.route-bg{
  height:100%;
}
[loading="lazy"]{
  content-visibility:auto;
}
.service-card:focus-within,
.price-card:focus-within,
.segment-grid article:focus-within,
.route-card-grid article:focus-within{
  outline:2px solid rgba(201,164,92,.55);
  outline-offset:4px;
}
.booking-builder input::placeholder,
.booking-builder textarea::placeholder{
  color:rgba(91,102,95,.72);
}
@media (prefers-contrast: more){
  :root{
    --ink-700:#303734;
  }
  .btn-gold,
  .nav-cta,
  .mobile-cta{
    border:2px solid #fff;
  }
}
@media print{
  .site-header,
  .mobile-action-bar,
  .sticky-wa,
  .nav-cta,
  .hero-actions,
  .btn,
  .mobile-menu{
    display:none!important;
  }
  body{
    padding-bottom:0!important;
    background:#fff!important;
  }
  .section,
  .split-showcase,
  .partners-section,
  .standards-section,
  .request-section,
  .booking-builder-section{
    padding:24px 0!important;
  }
}


/* v16 MASTER FINAL QA - final stability pass */

/* Picture wrappers should behave exactly like images in layouts */
picture{
  display:block;
}
.hero-bg picture,
.hero-bg img,
.route-bg,
.route-banner picture,
.route-banner picture img{
  width:100%;
  height:100%;
}
.hero-bg picture img,
.route-banner picture img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Prevent accidental overflow from long URLs/text */
body{
  overflow-wrap:anywhere;
}
h1,h2,h3,p,li,a,button,summary,strong,span{
  overflow-wrap:break-word;
}

/* Keep layout polished when browser font loading is slow */
body{
  font-synthesis-weight:none;
}

/* Booking builder quality */
.booking-builder select{
  appearance:auto;
}
.booking-builder textarea{
  resize:vertical;
  min-height:92px;
}
.message-preview{
  scrollbar-width:thin;
}

/* Better visual state for quick routes */
.quick-routes button:focus-visible{
  outline:3px solid var(--gold-500);
  outline-offset:3px;
}

/* Cards should keep equal rhythm when text differs */
.service-card,
.price-card,
.segment-grid article,
.route-card-grid article{
  display:flex;
  flex-direction:column;
}
.service-card a,
.price-content a,
.segment-grid a,
.route-card-grid a{
  align-self:flex-start;
}

/* Tables on mobile */
.responsive-table{
  -webkit-overflow-scrolling:touch;
}
.responsive-table::after{
  content:"Swipe sideways to view all columns";
  display:none;
  margin-top:8px;
  color:var(--ink-700);
  font-size:12px;
}

/* Safer hero overlay for legibility on very bright screens */
.hero-shade{
  backdrop-filter:saturate(1.02);
}

/* Subpage hero buttons: avoid white ghost button disappearing on green */
.btn-ghost-dark{
  border:1px solid rgba(18,60,47,.14);
  box-shadow:0 12px 28px rgba(18,60,47,.10);
}

/* Print all sales/QR pages cleaner */
@media print{
  a[href]::after{
    content:"";
  }
  .onepager-card,
  .qr-card-grid article,
  .route-table-card,
  .legal-card{
    box-shadow:none!important;
  }
}

/* Small mobile fixes */
@media (max-width:699px){
  .responsive-table::after{
    display:block;
  }
  table{
    min-width:680px;
  }
  .route-meta-cards{
    grid-template-columns:1fr;
  }
  .hero-copy h1,
  .route-copy h2,
  .service-landing-grid h1,
  .route-landing-grid h1,
  .sales-hero h1,
  .partner-hero h1,
  .driver-hero h1,
  .route-sheet-grid h1{
    text-wrap:balance;
  }
  .mobile-menu{
    max-height:calc(100vh - 100px);
    overflow:auto;
  }
}

/* Extra-small devices */
@media (max-width:360px){
  .container{
    width:min(100% - 24px,var(--container));
  }
  .hero-copy h1{
    font-size:37px;
  }
  .btn{
    padding-inline:16px;
  }
  .booking-card-head{
    grid-template-columns:54px 1fr;
  }
  .booking-card-head img{
    width:54px;
    height:54px;
  }
}


/* v17 LAUNCH POLISH */
.hero-local-note{
  margin:18px 0 0;
  max-width:640px;
  color:rgba(255,255,255,.82);
  line-height:1.65;
  font-size:15px;
  font-weight:700;
}
.booking-card{
  border-color:rgba(201,164,92,.30);
}
.booking-card a{
  transition:transform .18s ease, background .18s ease;
}
.booking-card a:hover{
  transform:translateY(-1px);
  background:#0c2b21;
}
.internal-warning{
  padding:12px 0;
  background:#C9A45C;
  color:#fff;
  font-weight:800;
}
.internal-warning .container{
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.internal-warning strong{
  color:#fff;
}
picture img{
  vertical-align:middle;
}
.footer-grid a[href="ops.html"]{
  display:none!important;
}
@media (max-width:699px){
  .hero-local-note{
    font-size:14px;
  }
  .booking-card::before{
    width:68px;
  }
  .trust-grid article{
    grid-template-columns:36px 1fr;
  }
  .trust-grid img{
    width:24px;
    height:24px;
  }
}


/* v19 REAL BOOKING QA */
.book-page-hero{
  padding:86px 0;
  min-height:calc(100vh - 76px);
  display:grid;
  align-items:center;
  background:
    radial-gradient(circle at 16% 18%, rgba(201,164,92,.18), transparent 26%),
    radial-gradient(circle at 88% 22%, rgba(18,60,47,.10), transparent 28%),
    linear-gradient(180deg,var(--cream-100),#fff);
}
.book-page-grid{
  display:grid;
  gap:30px;
  align-items:start;
}
.book-page-grid h1{
  margin:0 0 16px;
  font-family:var(--serif);
  font-size:clamp(44px,7vw,82px);
  line-height:1.02;
  color:var(--green-900);
  text-wrap:balance;
}
.book-page-grid p{
  margin:0;
  color:var(--ink-700);
  line-height:1.75;
  max-width:640px;
}
.book-page-grid .hero-proof span{
  background:#fff;
  color:var(--green-900);
  border:1px solid var(--border);
  box-shadow:0 10px 24px rgba(18,60,47,.05);
}
.book-page-grid .hero-proof img{
  color:var(--gold-500);
}
@media (min-width:900px){
  .book-page-grid{
    grid-template-columns:.86fr 1.14fr;
  }
}
@media (max-width:699px){
  .book-page-hero{
    padding:54px 0;
    min-height:auto;
  }
  .book-page-grid h1{
    font-size:42px;
  }
}
