/* /var/www/airportcabotrips.com/public/assets/css/style.css */
/* v12 - premium claro (sky + sand) + mobile fixes */

:root{
  --font-body: "Manrope", "Helvetica Neue", "Helvetica", sans-serif;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;

  /* Light theme foundation (ivory + sky) */
  --bg:  #F6F3EE;
  --bg2: #EAF1F6;

  /* Surfaces (solid, no dark glass) */
  --card:    #FBF9F5;
  --surface: #FFFFFF;
  --surface2:#FDFBF8;

  /* Text */
  --text:#0B1B2B;
  --muted:  rgba(11,27,43,.72);
  --muted2: rgba(11,27,43,.56);
  --white:#fff;

  /* Premium gold accents (kept close) */
  --gold:#C8A24A;
  --gold2:#E4C97A;

  /* Borders (more visible but still fine) */
  --border:  rgba(11,27,43,.14);
  --border2: rgba(11,27,43,.22);

  /* Shadows (soft, elegant, less black) */
  --shadow: 0 18px 46px rgba(11,27,43,.10), 0 3px 10px rgba(11,27,43,.06);

  --radius: 18px;
  --radius2: 22px;

  --container: 1220px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; overflow-x:hidden; touch-action: manipulation; }
body{
  margin:0;
  color:var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(1100px 680px at 18% 0%, rgba(228,201,122,.18), transparent 62%),
    radial-gradient(1000px 700px at 85% 10%, rgba(164,188,202,.35), transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 62%, #F2F6F8 100%);
}

.skip-link{
  position:absolute;
  left:14px;
  top:-40px;
  padding:8px 12px;
  border-radius:10px;
  background: #fff;
  color: rgba(11,27,43,.95);
  border:1px solid var(--border2);
  box-shadow: 0 8px 18px rgba(11,27,43,.10);
  z-index: 999;
  transition: top .15s ease;
}
.skip-link:focus{
  top: 12px;
}

h1,h2,h3,.brand__name{
  font-family: var(--font-display);
  letter-spacing: .2px;
}

body[data-theme="tropical"]{
  --font-body: "DM Sans", "Helvetica Neue", "Helvetica", sans-serif;
  --font-display: "Fraunces", "Georgia", serif;
  --bg: #F6F1E8;
  --bg2: #DFF1EA;
  --card: #FFF9F1;
  --surface: #FFFFFF;
  --surface2: #FFF6E8;
  --text: #0F2E2B;
  --muted: rgba(15,46,43,.70);
  --muted2: rgba(15,46,43,.54);
  --gold: #E7794B;
  --gold2: #F1B36A;
  --border: rgba(15,46,43,.14);
  --border2: rgba(15,46,43,.22);
  --shadow: 0 20px 50px rgba(15,46,43,.12), 0 4px 12px rgba(15,46,43,.08);
  background:
    radial-gradient(1200px 700px at 15% 0%, rgba(231,121,75,.18), transparent 62%),
    radial-gradient(1000px 650px at 85% 15%, rgba(64,166,151,.28), transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 65%, #E7F2EE 100%);
}

body[data-theme="bold"]{
  --font-body: "Space Grotesk", "Helvetica Neue", "Helvetica", sans-serif;
  --font-display: "League Spartan", "Helvetica Neue", "Helvetica", sans-serif;
  --bg: #F4F5F7;
  --bg2: #E7ECF3;
  --card: #FFFFFF;
  --surface: #FFFFFF;
  --surface2: #F2F6FB;
  --text: #0B1220;
  --muted: rgba(11,18,32,.70);
  --muted2: rgba(11,18,32,.54);
  --gold: #FF6B35;
  --gold2: #FFB454;
  --border: rgba(11,18,32,.14);
  --border2: rgba(11,18,32,.24);
  --shadow: 0 18px 46px rgba(11,18,32,.14), 0 5px 14px rgba(11,18,32,.08);
  background:
    radial-gradient(1200px 720px at 12% 8%, rgba(255,107,53,.20), transparent 60%),
    radial-gradient(900px 620px at 85% 12%, rgba(34,139,230,.25), transparent 62%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 65%, #F0F3F7 100%);
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button,input,select{ font:inherit; }
:focus-visible{
  outline: 3px solid rgba(200,162,74,.55);
  outline-offset: 2px;
}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

/* Utilities */
.mt-12{ margin-top:12px; }
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  font-weight:600;
  font-size:12px;
  color: rgba(11,27,43,.90);
  background: rgba(200,162,74,.14);
  border:1px solid rgba(200,162,74,.32);
}

/* Announcement */
.announce{
  position:relative;
  z-index:5;
  padding:10px 0;
  background: rgba(255,255,255,.65);
  border-bottom:1px solid var(--border);
  backdrop-filter: blur(10px);
}
.announce__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.announce__pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  font-size:12px;
  color: rgba(11,27,43,.86);
  background: rgba(255,255,255,.70);
  border:1px solid var(--border);
}
.announce__meta{
  font-size:12px;
  color: rgba(11,27,43,.62);
  white-space:nowrap;
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,.72);
  border-bottom:1px solid var(--border);
}
.header--premium{
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.74));
  border-bottom:1px solid rgba(11,27,43,.18);
  box-shadow: 0 14px 28px rgba(11,27,43,.08);
}
.header__bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
  min-width:0;
}
.header--premium .header__bar{
  padding: 16px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand__mark,
.brand-badge{
  width:36px;
  height:36px;
  border-radius:12px;
  background-color: #C8A24A;
  background:
    radial-gradient(circle at 30% 30%, rgba(228,201,122,.60), transparent 62%),
    linear-gradient(135deg, rgba(200,162,74,.75), rgba(255,255,255,.55));
  border:1px solid rgba(200,162,74,.48);
  box-shadow: 0 14px 28px rgba(11,27,43,.14);
  flex:0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.brand-badge img{
  width: 78%;
  height: 78%;
  object-fit: contain;
  display:block;
}
.header--premium .brand__mark,
.header--premium .brand-badge{
  box-shadow: 0 16px 34px rgba(11,27,43,.16);
}
.brand__text{ min-width:0; display:flex; flex-direction:column; }
.brand__name{
  font-weight:700;
  letter-spacing:.2px;
  color: rgba(11,27,43,.96);
  line-height:1.05;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand__tag{
  font-size:12px;
  color: rgba(11,27,43,.62);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.nav{
  display:none;
  gap:18px;
  align-items:center;
}
.nav a{
  font-size:13px;
  color: rgba(11,27,43,.78);
  padding:8px 12px;
  border-radius:999px;
  transition: background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  border: 1px solid transparent;
}
.nav a:hover{
  background: rgba(164,188,202,.22);
  color: rgba(11,27,43,.94);
  border-color: rgba(132,167,196,.30);
  box-shadow: 0 8px 18px rgba(11,27,43,.08);
}
.nav a.is-active{
  color: rgba(11,27,43,.98);
  background: rgba(200,162,74,.18);
  border-color: rgba(200,162,74,.35);
  box-shadow: inset 0 0 0 1px rgba(200,162,74,.25);
}

.header__actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
}
.header__actions::before{
  content:"";
  width:1px;
  height:28px;
  background: rgba(11,27,43,.10);
  margin-right: 6px;
}
.hamburger{
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid var(--border2);
  background: rgba(255,255,255,.88);
  color: rgba(11,27,43,.92);
  cursor:pointer;
  position:relative;
  box-shadow: 0 10px 22px rgba(11,27,43,.10);
}
.header--premium .hamburger{
  border-color: rgba(11,27,43,.18);
}
.hamburger span,
.hamburger span::before,
.hamburger span::after{
  content:"";
  display:block;
  width:18px;
  height:2px;
  background: rgba(11,27,43,.82);
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  border-radius:2px;
}
.hamburger span{ top:50%; }
.hamburger span::before{ top:-6px; position:absolute; }
.hamburger span::after{ top:6px; position:absolute; }

.mobile-nav{
  display:none;
  flex-direction:column;
  gap:6px;
  padding:10px 0 16px;
}
.header--premium .mobile-nav{
  margin-top: 6px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(11,27,43,.16);
  box-shadow: 0 16px 30px rgba(11,27,43,.10);
}
.mobile-nav a{
  padding:12px 12px;
  border-radius:14px;
  font-size:14px;
  color: rgba(11,27,43,.90);
  background: rgba(255,255,255,.86);
  border:1px solid var(--border);
}
.mobile-nav a:hover{
  background: rgba(164,188,202,.22);
  border-color: rgba(132,167,196,.30);
}
.mobile-nav a.is-active{
  background: rgba(200,162,74,.18);
  border-color: rgba(200,162,74,.35);
}
.mobile-nav.is-open{ display:flex; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  font-weight:700;
  font-size:13px;
  cursor:pointer;
  border:1px solid transparent;
  transition: transform .05s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: linear-gradient(135deg, rgba(228,201,122,.92), rgba(200,162,74,.92));
  color: #13263a;
  border-color: rgba(200,162,74,.62);
  box-shadow: 0 16px 30px rgba(200,162,74,.18);
}
.btn--primary:hover{
  box-shadow: 0 18px 34px rgba(200,162,74,.22);
  filter: saturate(1.03);
}

.btn--outline{
  background: rgba(255,255,255,.92);
  color: rgba(11,27,43,.92);
  border-color: rgba(132,167,196,.55);
  box-shadow: 0 10px 22px rgba(11,27,43,.08);
}
.btn--outline:hover{
  background: rgba(164,188,202,.20);
  border-color: rgba(132,167,196,.62);
}

/* Secondary links */
.link-secondary,
a.link-secondary{
  color: rgba(11,27,43,.68);
  font-weight: 600;
  letter-spacing: .2px;
  text-decoration: none;
  border-bottom: 1px solid rgba(132,167,196,.35);
  transition: color .15s ease, border-color .15s ease, opacity .15s ease;
}
.link-secondary:hover,
.link-secondary:focus{
  color: rgba(11,27,43,.9);
  border-color: rgba(200,162,74,.65);
}
.link-secondary:active{
  opacity: .9;
}

/* Sections */
.section{ padding: 44px 0; }
.section-title{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 16px;
}
.section-title h2{
  margin:0;
  font-family:"Cormorant Garamond", serif;
  font-weight:700;
  color: rgba(11,27,43,.96);
  letter-spacing:.2px;
}
.section-title p{
  margin:6px 0 0;
  color: rgba(11,27,43,.62);
  font-size:13px;
  max-width: 56ch;
}

/* Home sizing improvements */
.page-home .section{
  padding: 58px 0;
}
.page-home .hero__copy h1{
  font-size: 38px;
}
.page-home .hero__copy p{
  font-size: 16px;
}
.page-home .trust-chip{
  font-size: 13px;
  padding: 9px 12px;
}
.page-home .hero__statValue{ font-size: 22px; }
.page-home .hero__statLabel{ font-size: 13px; }
.page-home .hero__fineprint{ font-size: 13px; }
.page-home .hero__media{ min-height: 300px; }
.page-home .signal__card h3{ font-size: 22px; }
.page-home .signal__card p{ font-size: 14px; }
.page-home .route-card h3{ font-size: 21px; }
.page-home .route-card p{ font-size: 14px; }
.page-home .veh-card__media{ min-height: 210px; }
.page-home .veh-card__content h3{ font-size: 20px; }
.page-home .veh-card__content p{ font-size: 14px; }

/* First home visit intro animation */
@keyframes homeIntroRise{
  from{
    opacity:0;
    transform: translateY(18px);
    filter: blur(3px);
  }
  to{
    opacity:1;
    transform: translateY(0);
    filter: blur(0);
  }
}
html.intro-first-visit .page-home .hero__copy > *,
html.intro-first-visit .page-home .hero__media,
html.intro-first-visit .page-home #booking .card{
  opacity:0;
  animation: homeIntroRise .65s cubic-bezier(.22,1,.36,1) forwards;
}
html.intro-first-visit .page-home .hero__copy > *:nth-child(1){ animation-delay: .04s; }
html.intro-first-visit .page-home .hero__copy > *:nth-child(2){ animation-delay: .12s; }
html.intro-first-visit .page-home .hero__copy > *:nth-child(3){ animation-delay: .20s; }
html.intro-first-visit .page-home .hero__copy > *:nth-child(4){ animation-delay: .28s; }
html.intro-first-visit .page-home .hero__copy > *:nth-child(5){ animation-delay: .36s; }
html.intro-first-visit .page-home .hero__copy > *:nth-child(6){ animation-delay: .44s; }
html.intro-first-visit .page-home .hero__media{ animation-delay: .22s; }
html.intro-first-visit .page-home #booking .card{ animation-delay: .52s; }
@media (prefers-reduced-motion: reduce){
  html.intro-first-visit .page-home .hero__copy > *,
  html.intro-first-visit .page-home .hero__media,
  html.intro-first-visit .page-home #booking .card{
    animation:none;
    opacity:1;
    transform:none;
    filter:none;
  }
}

/* Experience */
.experience__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}
.experience__lead{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  line-height:1.6;
}
.expect-list{
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--text);
  font-size: 13px;
  line-height:1.7;
}
.expect-list li{ margin-bottom: 6px; }
.experience__images{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.experience__image{
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(11,27,43,.08);
}
.experience__image img{
  display:block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.experience__image figcaption{
  padding: 10px 12px 12px;
  font-size: 12px;
  color: var(--muted);
}

/* Awards */
.awards{
  padding-top: 28px;
}
.awards__inner{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items:center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(11,27,43,.12);
  box-shadow: 0 20px 40px rgba(11,27,43,.1);
}
.awards__eyebrow{
  display:inline-block;
  font-size: 11px;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: rgba(11,27,43,.58);
  margin-bottom: 8px;
}
.awards__copy h2{
  margin: 0;
  font-size: 24px;
  line-height:1.2;
  color: var(--text);
  font-family:"Cormorant Garamond", serif;
}
.awards__logos{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.awards__logo{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 52px;
  border-radius: 14px;
  border: 1px dashed rgba(11,27,43,.2);
  color: rgba(11,27,43,.7);
  font-size: 12px;
  letter-spacing: .3px;
  text-transform: uppercase;
  background: linear-gradient(140deg, rgba(248,244,237,.9), rgba(255,255,255,.9));
}

/* Routes */
.section--routes{
  position:relative;
}
.route-group{
  margin-top:22px;
}
.route-group__title{
  margin:0 0 12px;
  font-size:20px;
  color: rgba(11,27,43,.92);
}
.route-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap:16px;
}
.route-card{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:18px;
  border-radius:18px;
  background:
    linear-gradient(140deg, rgba(255,255,255,.92), rgba(248,244,237,.92)),
    linear-gradient(180deg, rgba(228,201,122,.16), rgba(164,188,202,.18));
  border:1px solid rgba(11,27,43,.12);
  box-shadow: 0 18px 40px rgba(11,27,43,.08);
  min-height: 190px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.route-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 44px rgba(11,27,43,.12);
  border-color: rgba(200,162,74,.4);
}
.route-card__tag{
  align-self:flex-start;
  padding:6px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.2px;
  color: rgba(11,27,43,.78);
  background: rgba(200,162,74,.16);
  border:1px solid rgba(200,162,74,.35);
}
.route-card h3{
  margin:0;
  font-size:20px;
  line-height:1.05;
}
.route-card p{
  margin:0;
  font-size:13px;
  color: rgba(11,27,43,.64);
}
.route-grid--compact .route-card{
  min-height: 160px;
}

/* Services + steps */
.section-services .section-title{
  margin-bottom: 18px;
}
.section-steps .section-title{
  margin-bottom: 18px;
}
.steps-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.step-card{
  border-radius: 18px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  box-shadow: var(--shadow);
  padding: 16px;
}
.step-card__num{
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  font-weight:700;
  color: rgba(11,27,43,.92);
  background: rgba(200,162,74,.18);
  border: 1px solid rgba(200,162,74,.32);
  margin-bottom: 10px;
}
.step-card h3{
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--text);
}
.step-card p{
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}
.included-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.included-card{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(164,188,202,.14);
  border: 1px solid rgba(132,167,196,.28);
  color: rgba(11,27,43,.86);
  font-size: 12px;
}

/* Proof */
.section-proof .section-title{
  margin-bottom: 18px;
}
.ta-badges{
  display:flex;
  gap: 12px;
  margin: 8px 0 18px;
  overflow-x: auto;
  padding-bottom: 6px;
}
.ta-badge{
  flex: 0 0 auto;
  display:flex;
  justify-content:center;
  align-items:center;
  padding: 16px 20px;
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(255,255,255,.98), rgba(248,244,237,.92)),
    radial-gradient(circle at 50% 0%, rgba(228,201,122,.55), transparent 72%),
    linear-gradient(180deg, rgba(200,162,74,.18), rgba(164,188,202,.06));
  border: 1px solid rgba(200,162,74,.6);
  box-shadow:
    0 18px 34px rgba(11,27,43,.12),
    inset 0 1px 0 rgba(255,255,255,.9);
  min-height: 96px;
  min-width: 190px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.ta-badge *{
  pointer-events: none;
}
.ta-badge .TA_certificateOfExcellence,
.ta-badge .TA_certificateOfExcellence ul,
.ta-badge .TA_certificateOfExcellence li,
.ta-badge .TA_certificateOfExcellence span{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.ta-badge .TA_certificateOfExcellence ul{
  list-style: none !important;
}
.ta-badge::before{
  content: none;
}
.ta-badge img{
  max-width: 170px;
  height: auto;
  display:block;
  filter: drop-shadow(0 8px 14px rgba(11,27,43,.18));
}
@media (max-width: 520px){
  .ta-badges{
    gap: 10px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }
  .ta-badge{
    min-width: 160px;
    min-height: 78px;
    padding: 12px 14px;
    scroll-snap-align: start;
  }
  .ta-badge::before{
    width:24px;
    height:24px;
  }
  .ta-badge img{
    max-width: 140px;
  }
}
.proof-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 14px;
}
.proof-card{
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 26px rgba(58,58,52,.08);
  padding: 14px;
}
.proof-card h3{
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--text);
}
.proof-card p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.mention-card{
  padding: 16px;
  border-radius: 18px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  box-shadow: var(--shadow);
}
.mention-title{
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.mention-card ul{
  margin: 0 0 12px 18px;
  color: var(--muted);
  font-size: 13px;
}
.mention-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

/* FAQ (home) */
.section-faq .section-title{
  margin-bottom: 18px;
}

/* Hero */
.hero{ padding: 26px 0 26px; }
.hero__card{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
  border-radius: var(--radius2);
  background: var(--card);
  border:1px solid var(--border);
  box-shadow: var(--shadow);
  overflow:hidden;
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}
.hero__copy,
.hero__media{
  min-width: 0;
}
.hero__copy{ padding: 18px 18px 18px; }
.hero__copy h1{
  margin:0 0 10px;
  font-weight:700;
  letter-spacing:.2px;
  color: rgba(11,27,43,.98);
  line-height:1.12;
  font-size: 34px;
  overflow-wrap: anywhere;
}
.hero__copy p{
  margin:0 0 14px;
  color: rgba(11,27,43,.72);
  font-size: 14px;
  line-height:1.55;
  max-width: 62ch;
  overflow-wrap: anywhere;
}
.trust-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin: 12px 0 14px;
}
.trust-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  color: rgba(11,27,43,.82);
  background: rgba(164,188,202,.18);
  border:1px solid rgba(132,167,196,.30);
}
.trust-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background: rgba(200,162,74,.95);
  box-shadow: 0 0 0 3px rgba(200,162,74,.16);
}
.hero__cta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 12px;
}
.hero__after{
  margin-top: 12px;
  font-size: 13px;
  color: rgba(11,27,43,.68);
  background: rgba(255,255,255,.8);
  border: 1px solid var(--border);
  padding: 10px 12px;
  border-radius: 14px;
}
.hero__stats{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
  margin: 16px 0 8px;
}
.hero__stat{
  padding:12px 14px;
  background: rgba(255,255,255,.85);
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow: var(--shadow);
  display:flex;
  flex-direction:column;
  gap:6px;
}
.hero__statValue{
  font-size:20px;
  font-weight:700;
  color: rgba(11,27,43,.95);
}
.hero__statLabel{
  font-size:12px;
  color: var(--muted2);
}
.hero__fineprint{
  margin-top: 12px;
  font-size:12px;
  color: rgba(11,27,43,.58);
}
.hero__media{
  min-height: 260px;
  aspect-ratio: 16 / 11;
  position:relative;
  background-color: rgba(164,188,202,.12);
  border-top:1px solid var(--border);
}
.hero__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 20%, rgba(200,162,74,.18), transparent 58%),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,.22), transparent 62%),
    linear-gradient(180deg, rgba(11,27,43,.02), rgba(11,27,43,.18));
  pointer-events:none;
}
.hero__mediaLabel{
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  padding:12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  border:1px solid var(--border);
  color: rgba(11,27,43,.92);
  z-index:1;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 28px rgba(11,27,43,.10);
}
.hero__mediaLabel strong{ display:block; font-size:13px; }
.hero__mediaLabel span{ font-size:12px; color: rgba(11,27,43,.62); }

/* Signal strip */
.signal{
  padding: 20px 0 6px;
}
.signal__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
}
.signal__card{
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border:1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.signal__eyebrow{
  font-size:11px;
  text-transform: uppercase;
  letter-spacing:.16em;
  color: rgba(11,27,43,.55);
  margin-bottom:8px;
}
.signal__card h3{
  margin:0 0 8px;
  font-size:20px;
  color: rgba(11,27,43,.95);
}
.signal__card p{
  margin:0;
  color: rgba(11,27,43,.7);
  font-size:13px;
  line-height:1.6;
}

/* Booking layout */
.booking-wrap{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 960px;
  margin: 0 auto;
}
.card{
  border-radius: var(--radius2);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.booking-wrap > .card{
  overflow: visible;
}
.card-inner{ padding: 16px; }

#bookingForm{
  position: relative;
  perspective: 1200px;
  transform-style: preserve-3d;
  --wizard-total: 500ms;
  --wizard-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wizard-exit-dur: 290ms;
  --wizard-enter-dur: 230ms;
  --wizard-overlap: 35ms;
  --wizard-enter-delay: calc(var(--wizard-exit-dur) - var(--wizard-overlap));
}
#bookingForm::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  background: radial-gradient(82% 70% at 50% 20%, rgba(247,232,191,.30), rgba(247,232,191,0) 70%);
  transform: scale(.985);
  transition: opacity 210ms ease-out, transform 210ms ease-out;
}
#bookingForm.is-spotlit::after{
  opacity: 1;
  transform: scale(1.015);
}
#bookingForm.is-animating{
  overflow: hidden;
  transition: height var(--wizard-total) var(--wizard-ease);
  pointer-events: none;
}
.wscene{
  display:flex;
  align-items:center;
  gap:12px;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 16px;
  border: 1px solid rgba(200,162,74,.30);
  background: linear-gradient(130deg, rgba(200,162,74,.14), rgba(255,255,255,.92) 54%);
  box-shadow: 0 12px 30px rgba(11,27,43,.08);
}
.wscene__icon{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(200,162,74,.24);
  border: 1px solid rgba(200,162,74,.42);
  color: rgba(11,27,43,.92);
  font-weight: 900;
}
.wscene__eyebrow{
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(11,27,43,.56);
}
.wscene__title{
  margin: 2px 0 3px;
  font-size: 17px;
  color: rgba(11,27,43,.94);
  font-family:"Cormorant Garamond", serif;
}
.wscene__sub{
  margin: 0;
  font-size: 12px;
  color: rgba(11,27,43,.66);
}


.steps-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 14px 16px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
.steps-head__left{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.steps-badge{
  width:36px;
  height:36px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(200,162,74,.14);
  border:1px solid rgba(200,162,74,.30);
  color: rgba(11,27,43,.90);
}
.steps-head__meta{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width:0;
}
.steps-head__meta strong{
  color: rgba(11,27,43,.92);
  font-size: 13px;
}
.steps-head__meta span{
  color: rgba(11,27,43,.62);
  font-size: 12px;
}
.steps-progress{
  padding: 10px 16px 12px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.75);
}
.steps-progress__track{
  height: 6px;
  border-radius: 999px;
  background: rgba(132,167,196,.26);
  overflow:hidden;
}
.steps-progress__fill{
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(200,162,74,.92), rgba(200,162,74,.45));
  transform-origin: left center;
  transform: scaleX(.25);
  transition: transform 460ms var(--wizard-ease);
}
.steps-progress__text{
  margin-top: 8px;
  font-size: 12px;
  color: rgba(11,27,43,.62);
}
#bookingForm.is-animating .steps-progress__fill{
  will-change: transform;
}


.wizard-steps{
  display:flex;
  gap:8px;
  padding: 12px 12px 14px;
  overflow:auto;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.75);
  -webkit-overflow-scrolling: touch;
}
.wstep{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid rgba(132,167,196,.38);
  background: rgba(255,255,255,.92);
  color: rgba(11,27,43,.78);
  cursor:pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .18s ease, border-color .18s ease, color .18s ease;
  box-shadow: 0 6px 14px rgba(11,27,43,.04);
  position: relative;
  overflow: hidden;
}
.wstep::after{
  content:"";
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  background: linear-gradient(120deg, rgba(200,162,74,.08), rgba(200,162,74,0));
  transition: opacity .2s ease;
}
.wstep:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(11,27,43,.08);
}
.wstep:hover::after{
  opacity: 1;
}
.wstep__num{
  width:26px;
  height:26px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  position:relative;
  background: rgba(164,188,202,.18);
  border:1px solid rgba(132,167,196,.30);
  font-weight:800;
  font-size:12px;
  color: rgba(11,27,43,.86);
}
.wstep.is-active{
  background: rgba(200,162,74,.18);
  border-color: rgba(200,162,74,.42);
  color: rgba(11,27,43,.92);
  box-shadow: 0 12px 28px rgba(200,162,74,.18), 0 8px 20px rgba(11,27,43,.10);
}
.wstep.is-active .wstep__num{
  background: rgba(200,162,74,.26);
  border-color: rgba(200,162,74,.42);
  color: rgba(11,27,43,.92);
}
.wstep.is-done{
  background: rgba(45,190,110,.12);
  border-color: rgba(45,190,110,.30);
  color: rgba(11,27,43,.90);
}
.wstep.is-done .wstep__num{
  background: rgba(45,190,110,.16);
  border-color: rgba(45,190,110,.28);
  color: transparent;
}
.wstep.is-done .wstep__num::after{
  content:"✓";
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  color: rgba(11,27,43,.92);
  font-weight:900;
}

.form-alert{
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(220,85,85,.12);
  border:1px solid rgba(220,85,85,.28);
  color: rgba(11,27,43,.92);
  margin: 14px 0 0;
}
.form-alert.is-hidden{ display:none; }

/* Success */
.success{
  margin-top: 12px;
  padding: 18px 16px;
  border-radius: var(--radius2);
  background: rgba(45,190,110,.12);
  border:1px solid rgba(45,190,110,.28);
  color: rgba(11,27,43,.92);
}
.success__icon{
  width:40px;
  height:40px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background: rgba(45,190,110,.16);
  border:1px solid rgba(45,190,110,.28);
  font-weight:900;
  color: rgba(11,27,43,.92);
}
.success__title{
  margin: 12px 0 6px;
  font-family:"Cormorant Garamond", serif;
  font-size: 20px;
}
.success__text{
  margin:0 0 12px;
  color: rgba(11,27,43,.68);
  font-size: 13px;
}
.success__ref{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(164,188,202,.10);
  border:1px solid var(--border);
}
.success__refLabel{ font-size:12px; color: rgba(11,27,43,.60); }
.success__refValue{ font-weight:900; letter-spacing:.6px; color: rgba(11,27,43,.92); }

/* Panels */
.wpanel{
  display:none;
  padding: 14px 0 6px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}
.wpanel.is-active{
  display:block;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}
#bookingForm.is-animating .wpanel.is-exiting,
#bookingForm.is-animating .wpanel.is-entering,
#bookingForm.is-animating .wpanel.is-active{
  display:block;
  position:absolute;
  left:0;
  right:0;
  top:0;
  width:100%;
}
#bookingForm.is-animating .wpanel.is-exiting,
#bookingForm.is-animating .wpanel.is-entering{
  pointer-events:none;
  will-change: transform, opacity, filter;
}
#bookingForm.is-animating .wpanel.is-exiting{
  box-shadow: 0 10px 24px rgba(11,27,43,.12);
}
#bookingForm.is-animating .wpanel.is-entering{
  box-shadow: 0 28px 54px rgba(11,27,43,.16);
}
#bookingForm.is-animating.dir-forward .wpanel.is-exiting{
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}
#bookingForm.is-animating.dir-forward .wpanel.is-entering{
  opacity: 0;
  transform: translate3d(34px, 0, 0) scale(.985) rotateY(-4deg);
  filter: blur(10px);
}
#bookingForm.is-animating.dir-back .wpanel.is-exiting{
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}
#bookingForm.is-animating.dir-back .wpanel.is-entering{
  opacity: 0;
  transform: translate3d(-34px, 0, 0) scale(.985) rotateY(4deg);
  filter: blur(10px);
}
#bookingForm.is-animating.is-transitioning .wpanel.is-exiting{
  transition: transform var(--wizard-exit-dur) var(--wizard-ease), opacity var(--wizard-exit-dur) var(--wizard-ease), filter var(--wizard-exit-dur) var(--wizard-ease);
}
#bookingForm.is-animating.is-transitioning .wpanel.is-entering{
  transition: transform var(--wizard-enter-dur) var(--wizard-ease) var(--wizard-enter-delay), opacity var(--wizard-enter-dur) var(--wizard-ease) var(--wizard-enter-delay), filter var(--wizard-enter-dur) var(--wizard-ease) var(--wizard-enter-delay);
}
#bookingForm.is-animating.is-transitioning.dir-forward .wpanel.is-exiting{
  opacity: 0;
  transform: translate3d(-26px, 0, 0) scale(.988) rotateY(3deg);
  filter: blur(8px);
}
#bookingForm.is-animating.is-transitioning.dir-forward .wpanel.is-entering{
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}
#bookingForm.is-animating.is-transitioning.dir-back .wpanel.is-exiting{
  opacity: 0;
  transform: translate3d(26px, 0, 0) scale(.988) rotateY(-3deg);
  filter: blur(8px);
}
#bookingForm.is-animating.is-transitioning.dir-back .wpanel.is-entering{
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}
.wtitle{
  margin: 0 0 6px;
  font-family:"Cormorant Garamond", serif;
  color: rgba(11,27,43,.94);
  font-size: 20px;
}
.wsub{
  margin:0 0 12px;
  font-size: 13px;
  color: rgba(11,27,43,.62);
}
/* Wizard cards */
.wgrid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.wgrid--nested{
  margin-bottom: 8px;
}
.wcard{
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(11,27,43,.08);
}
.wcard--full{
  grid-column: 1 / -1;
}
.wcard .field{
  margin:0;
}
@media (min-width: 860px){
  .wgrid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.row{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.row--two{ grid-template-columns: 1fr; }

.contact-form{
  width: 100%;
}
.contact-form .field textarea{
  width: 100%;
  max-width: 100%;
  resize: none !important;
  font-size: 16px;
}

.contact-section .section-title{
  margin-bottom: 22px;
}
.page-contact .section-title{
  align-items: flex-start;
}
.page-contact .hero__copy h1{
  font-size: 36px;
}
.page-contact .hero__media{
  min-height: 260px;
}
.contact-highlights{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 12px 0 8px;
}
.contact-highlight{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--border);
  box-shadow: 0 10px 22px rgba(11,27,43,.08);
}
.contact-highlight__title{
  display:block;
  font-size: 12px;
  font-weight: 700;
  color: rgba(11,27,43,.92);
  margin-bottom: 4px;
}
.contact-highlight__text{
  font-size: 11px;
  color: rgba(11,27,43,.62);
}
.contact-layout{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.contact-panel{
  display:flex;
  flex-direction: column;
  gap: 12px;
}
.contact-card{
  width: 100%;
  padding: 18px;
  border-radius: 20px;
  background:
    linear-gradient(140deg, rgba(255,255,255,.96), rgba(248,244,237,.96)),
    linear-gradient(180deg, rgba(200,162,74,.16), rgba(164,188,202,.20));
  border: 1px solid rgba(11,27,43,.12);
  box-shadow: 0 22px 40px rgba(11,27,43,.12);
}
.contact-card__eyebrow{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .3px;
  color: rgba(11,27,43,.58);
  margin-bottom: 8px;
}
.contact-card h3{
  margin: 0 0 10px;
  font-family:"Cormorant Garamond", serif;
  font-size: 24px;
  color: var(--text);
}
.contact-card p{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.contact-meta{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(11,27,43,.12);
  margin-bottom: 14px;
}
.contact-meta__label{
  font-size: 11px;
  color: rgba(11,27,43,.6);
  text-transform: uppercase;
  letter-spacing: .3px;
}
.contact-meta__value{
  font-size: 14px;
  color: rgba(11,27,43,.92);
  font-weight: 600;
}
.contact-cta{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}
.contact-form.card{
  border-radius: 20px;
}
.contact-form.card .card-inner{
  padding: 20px;
}
.contact-form__inner{
  width: 100%;
}
.details{
  margin-top: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--border);
  padding: 8px 12px;
}
.details summary{
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
}
.details__content{
  margin-top: 12px;
}
.contact-note{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(11,27,43,.6);
}
.contact-alt{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(11,27,43,.6);
}
.contact-privacy{
  margin-top: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  box-shadow: 0 12px 26px rgba(58,58,52,.08);
}
.contact-privacy h3{
  margin: 0 0 6px;
  font-size: 16px;
}
.contact-privacy p{
  margin: 0 0 6px;
  font-size: 13px;
  color: var(--muted);
}
.contact-privacy__note{
  font-weight: 600;
  color: rgba(11,27,43,.8);
}

@media (min-width: 860px){
  .contact-layout{
    grid-template-columns: 1.05fr .95fr;
    align-items: start;
  }
  .contact-panel{
    position: sticky;
    top: 96px;
  }
  .contact-meta{
    grid-template-columns: 1fr 1fr;
  }
  .page-contact .hero__media{
    min-height: 320px;
  }
  .contact-highlights{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.field{ position:relative; min-width:0; }
.field label{
  display:block;
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(11,27,43,.80);
}
.field input,
.field select,
.field textarea{
  width:100%;
  height: 44px;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--border2);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.60);
  transition: border-color .15s ease;
}
.field select{
  text-align: center;
  text-align-last: center;
}
.field textarea{
  height: auto;
  min-height: 130px;
  resize: vertical;
}
.field input[readonly]{
  background: rgba(253,251,248,.92);
  color: rgba(11,27,43,.70);
}
.field input::placeholder{ color: rgba(11,27,43,.45); }


.help{
  margin-top: 8px;
  font-size: 12px;
  color: rgba(11,27,43,.58);
}

.inline-error{
  display:none;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(11,27,43,.92);
  background: rgba(220,85,85,.10);
  border:1px solid rgba(220,85,85,.26);
  padding: 8px 10px;
  border-radius: 14px;
}
.field.invalid .inline-error{ display:block; }
.field.invalid input,
.field.invalid select{
  border-color: rgba(220,85,85,.55);
  box-shadow: 0 0 0 3px rgba(220,85,85,.14);
}

/* Toggle */
.toggle{ display:flex; gap:10px; flex-wrap:wrap; }
.toggle label{ margin:0; font-weight:700; font-size:12px; }
.toggle input{ position:absolute; opacity:0; pointer-events:none; }
.toggle span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(132,167,196,.38);
  color: rgba(11,27,43,.86);
  cursor:pointer;
}
.toggle input:checked + span{
  background: rgba(200,162,74,.16);
  border-color: rgba(200,162,74,.34);
  color: rgba(11,27,43,.92);
}

/* Search dropdown */
.search{ position:relative; }
.search-results{
  display:none;
  position:absolute;
  left:0; right:0;
  top: calc(100% + 8px); /* FIX: no hardcoded 74px */
  max-height: 360px;
  overflow:auto;
  padding: 8px 8px 52px;
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  border:1px solid var(--border);
  box-shadow: 0 22px 48px rgba(11,27,43,.12);
  z-index: 20;
}
.search-results.is-open{ display:block; }

.search-item{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11,27,43,.10);
  background: rgba(255,255,255,.98);
  cursor:pointer;
  display:flex;
  flex-direction:column;
  gap:2px;
  transition: background .15s ease, border-color .15s ease, transform .1s ease;
}
.search-item + .search-item{ margin-top: 8px; }
.search-item:hover{
  background: rgba(164,188,202,.18);
  border-color: rgba(132,167,196,.30);
}
.search-item[aria-selected="true"],
.search-item.is-active{
  background: rgba(200,162,74,.14);
  border-color: rgba(200,162,74,.30);
}
.search-item strong{
  display:block;
  font-size:14px;
  color: rgba(11,27,43,.92);
}
.search-item__meta{
  display:block;
  margin-top: 2px;
  font-size:12px;
  color: rgba(11,27,43,.62);
}

.hotel-empty{
  padding: 12px;
  border-radius: 14px;
  background: rgba(164,188,202,.12);
  border: 1px dashed rgba(132,167,196,.40);
  color: rgba(11,27,43,.70);
  font-size: 12px;
}

.search-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top: 10px;
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(164,188,202,.10);
  border: 1px solid rgba(132,167,196,.28);
  font-size: 12px;
  color: rgba(11,27,43,.62);
  position: sticky;
  bottom: 0;
}

.selected-pill{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  border:1px solid rgba(200,162,74,.28);
  box-shadow: 0 18px 36px rgba(11,27,43,.10);
}
.selected-pill button{
  height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid var(--border2);
  background: rgba(164,188,202,.14);
  cursor:pointer;
  font-weight:800;
  color: rgba(11,27,43,.90);
}
.selected-pill button:hover{
  background: rgba(164,188,202,.22);
  border-color: rgba(132,167,196,.48);
}

/* Step actions */
.wactions{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top: 10px;
}
.wactions > span{ display:block; }
.wactions .btn{
  min-width: 108px;
  transition: transform 140ms ease, box-shadow 220ms ease, filter 220ms ease;
}
.wactions .btn:active,
.wactions .btn.is-pressed{
  transform: translateY(1px);
  box-shadow: 0 8px 18px rgba(11,27,43,.14);
  filter: saturate(1.04);
}

/* Vehicle picker (Step 3) */
.veh-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
  align-items: stretch;
}
.veh{
  display:flex;
  flex-direction:column;
  height:100%;
  width:100%;
  max-width:none;
  border-radius: var(--radius2);
  overflow:hidden;
  cursor:pointer;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position:relative;
}
.veh input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.veh__media{
  aspect-ratio: 16 / 9;
  min-height: 180px;
  background-color: rgba(164,188,202,.10);
  position:relative;
  background-size: cover !important;
  background-position: center;
  background-repeat: no-repeat;
}
.veh__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 22%, rgba(200,162,74,.18), transparent 58%),
    linear-gradient(180deg, rgba(11,27,43,.02), rgba(11,27,43,.18));
  pointer-events:none;
}
.veh__body{
  padding: 14px 14px 14px;
  display:flex;
  flex-direction:column;
  flex:1 1 auto;
  gap:6px;
}
.veh__name{
  font-weight:900;
  color: rgba(11,27,43,.94);
  font-size: 16px;
}
.veh__meta{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(11,27,43,.62);
}
.veh__hint{
  margin-top: auto;
  font-size: 12px;
  color: rgba(11,27,43,.86);
  padding: 10px 10px;
  border-radius: 14px;
  background: rgba(164,188,202,.12);
  border: 1px solid rgba(132,167,196,.30);
}
.veh__check{
  position:absolute;
  top:10px;
  right:10px;
  width:30px;
  height:30px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--border);
  box-shadow: 0 10px 18px rgba(11,27,43,.12);
  z-index: 2;
  pointer-events:none;
}
.veh input:checked ~ .veh__media .veh__check{
  background: rgba(200,162,74,.20);
  border-color: rgba(200,162,74,.42);
  box-shadow: 0 0 0 3px rgba(200,162,74,.18), 0 12px 22px rgba(11,27,43,.10);
}
.veh input:checked ~ .veh__media .veh__check::after{
  content:"✓";
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  color: rgba(11,27,43,.92);
  font-weight:900;
}
.veh input:checked ~ .veh__body{ background: rgba(200,162,74,.06); }
.veh input:checked ~ .veh__media{
  outline: 3px solid rgba(200,162,74,.32);
  outline-offset: -3px;
}

/* Submit CTA */
.cta{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top: 8px;
}
.confidence{
  font-size: 12px;
  color: rgba(11,27,43,.58);
}

/* Price aside */
.price__sticky{ position:relative; }
.price .card{
  box-shadow: 0 18px 36px rgba(11,27,43,.10);
}
.price__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 12px;
}
.price__head h3{
  margin:0;
  font-family:"Cormorant Garamond", serif;
  font-size: 20px;
  color: rgba(11,27,43,.94);
}
.price__head p{
  margin:6px 0 0;
  font-size: 12px;
  color: rgba(11,27,43,.58);
}
.estimate{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding: 12px 12px;
  border-radius: 18px;
  background: rgba(164,188,202,.10);
  border: 1px solid rgba(132,167,196,.30);
}
.estimate__line{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-size: 12px;
  color: rgba(11,27,43,.66);
}
.estimate__line strong{
  color: rgba(11,27,43,.92);
  font-weight:900;
}
.estimate__total{
  font-weight:900;
  color: rgba(11,27,43,.96);
  font-size: 14px;
}
.price__note{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(11,27,43,.60);
}
.summary-dock{
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 32;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(11,27,43,.90);
  border: 1px solid rgba(200,162,74,.28);
  box-shadow: 0 16px 34px rgba(11,27,43,.22);
  color: rgba(245,240,228,.96);
  backdrop-filter: blur(8px);
}
.summary-dock__step{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .9;
}
.summary-dock__total{
  font-size: 13px;
  font-weight: 900;
}

/* Thank-you page */
.page-thank .section{
  padding-top: 36px;
}
.page-thank .thank-lead{
  font-size: 16px;
  color: var(--muted);
}
.thank-meta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted2);
  margin: 6px 0 12px;
}
.thank-meta__value{
  color: var(--text);
  font-weight: 700;
  letter-spacing: .08em;
}
.thank-you .card h1{
  margin:0 0 8px;
  font-family:"Cormorant Garamond", serif;
  color: rgba(11,27,43,.94);
  font-size: 32px;
}
.thank-hero{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.thank-hero__left{
  padding: 18px 16px;
  border-radius: 20px;
  background:
    radial-gradient(600px 320px at 10% 0%, rgba(200,162,74,.18), transparent 55%),
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(248,245,238,.98));
  border: 1px solid var(--border);
  box-shadow: 0 16px 34px rgba(11,27,43,.10);
}
.thank-kpis{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 12px 0 14px;
}
.thank-kpi{
  padding: 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(11,27,43,.06);
}
.thank-kpi span{
  display:block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted2);
  margin-bottom: 6px;
}
.thank-kpi strong{
  font-size: 14px;
  color: var(--text);
}
.thank-paypal{
  margin-top: 14px;
  position: relative;
  z-index: 1;
}
.thank-paypal #paypal-button-container{
  max-width: 360px;
  width: 100%;
}
.thank-paypal iframe,
.thank-paypal iframe *{
  max-width: 100%;
}
.thank-paypal{
  overflow: hidden;
}
.thank-hero__left h1{
  margin: 10px 0 10px;
  font-size: 34px;
}
.thank-hero__left p{
  margin: 0 0 16px;
  color: rgba(11,27,43,.70);
}
.confirm-pill{
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(164,188,202,.12);
  border: 1px solid rgba(132,167,196,.30);
  font-size: 12px;
  color: rgba(11,27,43,.72);
}
.confirm-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.thank-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
}
.meeting-box{
  margin-top: 14px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(11,27,43,.08);
}
.meeting-box h3{
  margin:0 0 8px;
  font-size: 14px;
  color: rgba(11,27,43,.92);
}
.meeting-box ol{
  margin:0;
  padding-left: 18px;
  color: rgba(11,27,43,.66);
  font-size: 12px;
  line-height:1.55;
}
.thank-hero__badge{
  display:inline-flex;
  align-items:center;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing:.16em;
  text-transform: uppercase;
  color: rgba(11,27,43,.70);
  background: rgba(200,162,74,.12);
  border: 1px solid rgba(200,162,74,.28);
}
.thank-hero__right .receipt-card{
  max-width: none;
}
.receipt-card{
  max-width: 900px;
  margin: 0 auto;
}
.receipt-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(11,27,43,.18);
  flex-wrap:wrap;
}
.receipt-mark{
  width:44px;
  height:44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  font-weight:900;
  font-size: 12px;
  color: rgba(11,27,43,.9);
  background: rgba(45,190,110,.16);
  border: 1px solid rgba(45,190,110,.28);
}
.receipt-title{
  flex:1 1 280px;
  min-width: 220px;
}
.receipt-actions{
  margin-top: 14px;
}
.receipt-section{
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed rgba(11,27,43,.12);
}
.thank-extras{
  margin-top: 8px;
}
.receipt-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 16px;
}
.receipt-mini{
  display:flex;
  gap:12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(11,27,43,.08);
}
.receipt-ico{
  width:42px;
  height:42px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  font-weight:900;
  color: rgba(11,27,43,.92);
  background: rgba(200,162,74,.16);
  border: 1px solid rgba(200,162,74,.30);
  flex: 0 0 42px;
}
.receipt-ico svg{
  width:22px;
  height:22px;
  display:block;
}
.thank-ref{
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(164,188,202,.12);
  border: 1px solid rgba(132,167,196,.30);
  min-width: 180px;
}
.thank-ref__label{
  font-size:11px;
  text-transform: uppercase;
  letter-spacing:.16em;
  color: rgba(11,27,43,.55);
}
.thank-ref__value{
  margin-top:6px;
  font-weight:900;
  color: rgba(11,27,43,.92);
  letter-spacing:.8px;
}
.thank-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}
.thank-title{
  margin:0 0 10px;
  font-family:"Cormorant Garamond", serif;
  color: rgba(11,27,43,.94);
  font-size: 20px;
}
.summary-list{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(164,188,202,.10);
  border: 1px solid rgba(132,167,196,.28);
}
.summary-list--compact{
  padding: 10px;
  gap:8px;
}
.summary-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-size: 12px;
  color: rgba(11,27,43,.66);
}
.summary-item strong{
  color: rgba(11,27,43,.92);
  font-weight:900;
}
.summary-item span{
  text-transform: uppercase;
  letter-spacing:.12em;
  font-size: 11px;
}
.thank-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 12px;
}
.extra-table{
  display:grid;
  gap:8px;
  margin-top: 10px;
}
.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip: rect(0, 0, 0, 0);
  border:0;
}
.extra-row{
  display:grid;
  grid-template-columns: minmax(0, 1fr) 90px 70px;
  gap:10px;
  align-items:start;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  font-size: 12px;
  color: rgba(11,27,43,.70);
}
.extra-row div:nth-child(2),
.extra-row div:nth-child(3){
  text-align:right;
  font-weight:800;
  color: rgba(11,27,43,.92);
}
.extra-qty select{
  width: 100%;
  height: 34px;
  border-radius: 10px;
  border: 1px solid var(--border2);
  background: #fff;
  color: var(--text);
  font-weight: 700;
  font-size: 12px;
  padding: 4px 8px;
}
.extra-qty select:focus{
  outline: none;
  border-color: rgba(200,162,74,.55);
  box-shadow: 0 0 0 3px rgba(200,162,74,.16);
}
.extra-head{
  background: rgba(164,188,202,.12);
  border-color: rgba(132,167,196,.32);
  text-transform: uppercase;
  letter-spacing:.12em;
  font-size: 11px;
  color: rgba(11,27,43,.55);
}
.extra-head div:nth-child(2),
.extra-head div:nth-child(3){
  font-weight:700;
  color: rgba(11,27,43,.60);
}
@media (max-width: 520px){
  .extra-row{
    grid-template-columns: 1fr;
  }
  .extra-row div:nth-child(2),
  .extra-row div:nth-child(3){
    text-align:left;
  }
}
@media (min-width: 860px){
  .thank-hero{
    grid-template-columns: 1.05fr .95fr;
    align-items: start;
  }
  .thank-hero__right{
    position: sticky;
    top: 24px;
  }
  .thank-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .receipt-cards{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 980px){
  .booking-wrap{
    grid-template-columns: minmax(0, 1.12fr) minmax(260px, .88fr);
    align-items: start;
  }
  .price__sticky{
    position: sticky;
    top: 22px;
  }
  .summary-dock{
    display:none;
  }
}

/* Vehicles section cards */
.veh-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}
.veh-card{
  border-radius: var(--radius2);
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.veh-card__media{
  aspect-ratio: 16 / 9;
  min-height: 180px;
  background-color: rgba(164,188,202,.10);
  position:relative;
}
.veh-card__media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 22% 20%, rgba(200,162,74,.18), transparent 58%),
    linear-gradient(180deg, rgba(11,27,43,.02), rgba(11,27,43,.18));
  pointer-events:none;
}
.veh-card__content{ padding: 14px 14px 16px; }
.veh-card__content h3{
  margin:0 0 6px;
  color: rgba(11,27,43,.94);
  font-size: 18px;
}
.veh-card__content p{
  margin:0;
  font-size: 13px;
  color: rgba(11,27,43,.62);
  line-height:1.45;
}

/* How grid */
.how-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 14px;
}
.how-grid .card{ background: var(--card); }
.how-grid strong{ display:block; color: rgba(11,27,43,.92); }
.how-grid .help{ color: rgba(11,27,43,.58); }

/* Footer */
footer{
  padding: 42px 0 52px;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(900px 520px at 20% 0%, rgba(164,188,202,.22), transparent 60%),
    linear-gradient(180deg, rgba(246,243,238,.90), rgba(234,241,246,.95));
}
.footer-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.foot{
  padding: 14px 14px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.90);
  border: 1px solid var(--border);
  box-shadow: 0 16px 34px rgba(11,27,43,.08);
}
.foot-title{
  margin:0 0 8px;
  font-family:"Cormorant Garamond", serif;
  color: rgba(11,27,43,.94);
  font-size: 18px;
}
.foot p{
  margin:0;
  color: rgba(11,27,43,.66);
  font-size: 13px;
  line-height:1.55;
}
.foot p + p{ margin-top: 8px; }
.subfoot{
  margin-top: 12px;
  font-size: 12px;
  color: rgba(11,27,43,.56);
}
.foot__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 12px;
}

/* Fix mobile: "Change" button overflows selected hotel pill */
.selected-pill{
  flex-wrap: wrap;
  align-items: center;
}
.selected-pill > *{ min-width: 0; }
.selected-pill button{
  flex: 0 0 auto;
  max-width: 100%;
  white-space: nowrap;
}
@media (max-width: 520px){
  .selected-pill{ gap: 8px; }
  .selected-pill button{ width: 100%; }
}

/* Trust + TripAdvisor section */
.trust-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.trust-card{
  border-radius: var(--radius2);
  background: var(--surface2);
  border: 1px solid var(--border2);
  box-shadow: var(--shadow);
  padding: 18px;
}

.trust-title{
  margin:0 0 8px;
  font-family:"Cormorant Garamond", serif;
  font-weight:700;
  color: var(--text);
  letter-spacing:.2px;
}

.trust-sub{
  margin:0 0 14px;
  color: var(--muted);
  font-size: 13px;
  line-height:1.55;
  max-width: 62ch;
}

.trust-pills{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin: 10px 0 16px;
}

.pill{
  display:inline-flex;
  align-items:center;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
}

.trust-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

.ta-note{
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted2);
}

.mini-grid{
  margin-top: 16px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.mini-card{
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 12px 26px rgba(58,58,52,.08);
  padding: 14px;
}

.mini-ico{
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  background: rgba(200,162,74,.14);
  border: 1px solid rgba(200,162,74,.28);
  color: rgba(11,27,43,.92);
  font-size: 18px;
  margin-bottom: 10px;
  font-family:
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol",
    "Noto Color Emoji",
    sans-serif;
}

.mini-card h3{
  margin:0 0 6px;
  color: var(--text);
  font-size: 14px;
}

.mini-card p{
  margin:0;
  color: var(--muted);
  font-size: 12px;
  line-height:1.5;
}

@media (min-width: 860px){
  .trust-grid{
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .mini-grid{
    grid-template-columns: repeat(4, 1fr);
  }
}

/* TripAdvisor widget container */
.ta-card{
  border-radius: var(--radius2);
  background: var(--surface2);
  border: 1px solid var(--border2);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 16px;
  min-width:0;
}

.ta-card h3{
  margin: 0 0 10px;
  font-family:"Cormorant Garamond", serif;
  color: var(--text);
  font-size: 20px;
}

.ta-widget{
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--white);
}

/* TripAdvisor a veces inyecta iframes/divs con widths raros */
.ta-widget iframe,
.ta-widget > div,
.ta-widget [id^="TA_selfserveprop"]{
  width: 100% !important;
  max-width: 100% !important;
}
.ta-widget *{
  max-width: 100% !important;
}

.ta-fallback{
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--white);
  padding: 14px;
  margin-bottom: 12px;
}

.ta-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.ta-note{
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
}

/* FAQ + Policies */
.section--faq .section-title{
  margin-bottom: 18px;
}
.faq-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.faq-card{
  padding: 16px;
  border-radius: 18px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  box-shadow: var(--shadow);
}
.faq-card h3{
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--text);
}
.faq-card p{
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height:1.55;
}
.policies{
  margin-top: 18px;
  border-radius: 20px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 18px 34px rgba(11,27,43,.08);
}
.policies h3{
  margin: 0 0 10px;
  font-size: 16px;
  color: var(--text);
}
.policies__grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.policy-card{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(164,188,202,.12);
  border: 1px solid rgba(132,167,196,.28);
  color: rgba(11,27,43,.86);
  font-size: 12px;
}

/* CTA band */
.cta-band{
  padding: 22px 0 58px;
}
.cta-band__inner{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(120deg, rgba(255,255,255,.96), rgba(248,244,237,.96)),
    linear-gradient(180deg, rgba(200,162,74,.18), rgba(164,188,202,.20));
  border: 1px solid rgba(11,27,43,.12);
  box-shadow: 0 22px 40px rgba(11,27,43,.12);
}
.cta-band__copy h2{
  margin: 0 0 6px;
  font-family:"Cormorant Garamond", serif;
  font-weight:700;
  color: var(--text);
}
.cta-band__copy p{
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  max-width: 60ch;
}
.cta-band__actions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
}

/* Desktop */
@media (min-width: 860px){
  .nav{ display:flex; }
  .hamburger{ display:none; }
  .mobile-nav{ display:none !important; }

  .hero__card{ grid-template-columns: 1.05fr .95fr; }
  .hero__copy{ padding: 22px 22px 22px; }
  .hero__copy h1{ font-size: 44px; }
  .hero__media{
    min-height: 380px;
    border-top: 0;
    border-left: 1px solid var(--border);
    aspect-ratio: auto;
  }

  .row--two{ grid-template-columns: 1fr 1fr; }

  .booking-wrap{
    grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
    align-items:start;
  }
  .price__sticky{
    position:sticky;
    top: 92px;
  }

  .veh-grid{ grid-template-columns: repeat(3, 1fr); }
  .veh-cards{ grid-template-columns: repeat(3, 1fr); }
  .how-grid{ grid-template-columns: repeat(4, 1fr); }
  .footer-grid{ grid-template-columns: 1.1fr .9fr; }
  .experience__grid{
    grid-template-columns: 1.1fr .9fr;
  }
  .awards__inner{
    grid-template-columns: 1.1fr .9fr;
  }
  .awards__logos{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .faq-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .policies__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .steps-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .included-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .proof-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce){
  #bookingForm,
  #bookingForm::after,
  .wpanel,
  .steps-progress__fill,
  .wactions .btn{
    animation: none !important;
    transition: none !important;
  }
  #bookingForm::after{
    display:none !important;
  }
  #bookingForm .wpanel{
    transform: none !important;
    filter: none !important;
  }
}

@media (max-width: 980px){
  .booking-wrap{
    grid-template-columns: 1fr;
  }
  .price__sticky{
    position: static;
  }
}

@media (min-width: 860px){
  .page-home .hero__copy h1{ font-size: 50px; }
  .page-home .hero__copy p{ font-size: 17px; }
  .page-home .hero__media{ min-height: 420px; }
  .page-home .signal__card{ padding: 22px; }
  .page-home .route-card{ padding: 22px; }
  .veh__media{
    background-size: cover !important;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    min-height: 190px;
  }
  .veh-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .veh[data-veh="suburban"] .veh__media{
    background-position: 45% 50%;
  }
  .veh[data-veh="van"] .veh__media{
    background-position: 45% 50%;
  }
  .veh[data-veh="max-van"] .veh__media{
    background-position: 38% 50%;
  }
  .veh__media::after{
    opacity: 0;
  }
}

/* Small phones */
@media (max-width: 520px){
  .container{ width: calc(100% - 28px); }

  /* Announcement */
  .announce__meta{ display:none; }

  /* Header: avoid overflow */
  .header__bar{ padding: 12px 0; gap:10px; }
  .brand__mark,
  .brand-badge{ width:32px; height:32px; border-radius:11px; }
  .brand__text{ max-width: 180px; }
  .brand__name{
    font-size: 16px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.1;
  }
  .brand__tag{
    font-size: 11px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.2;
  }
  .nav{ display:none; }
  .header__actions::before{ display:none; }

  /* Hide WhatsApp button in header on small screens (WhatsApp is in the mobile menu) */
  .header__actions .btn--outline{ display:none; }

  .btn{ padding: 11px 12px; font-size: 13px; }
  .hero__card{
    border-radius: 18px;
    max-width: 100%;
  }
  .hero__copy{ padding: 16px; }
  .hero__copy h1{ font-size: 26px; line-height:1.18; }
  .hero__copy p{
    font-size: 13px;
    line-height:1.5;
    max-width: 100%;
  }
  .trust-row{ gap:6px; }
  .trust-chip{
    font-size: 11px;
    padding: 6px 8px;
  }
  .trust-row .trust-chip:nth-child(n+3){
    display:none;
  }
  .hero__stat{ padding: 10px 12px; }
  .hero__statValue{ font-size: 18px; }
  .hero__statLabel{ font-size: 11px; }
  .hero__stats{ grid-template-columns: 1fr 1fr; gap:10px; }
  .hero__stat:nth-child(n+3){
    display:none;
  }
  .hero__media{ min-height: 405px; }
  .page-home .hero__media{ min-height: 405px; }
  .page-contact .hero__media{ min-height: 220px; }
  .page-contact .hero__copy h1{ font-size: 24px; }
  .contact-highlights{
    grid-template-columns: 1fr;
  }
  .hero__mediaLabel{
    display:flex;
    left:10px;
    right:auto;
    top:10px;
    bottom:auto;
    transform: none;
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(255,255,255,.86);
    border:1px solid rgba(200,162,74,.18);
    box-shadow: 0 10px 22px rgba(11,27,43,.12);
    max-width: 75%;
    color: rgba(11,27,43,.92);
  }
  .hero__mediaLabel strong{ font-size: 11px; color: rgba(11,27,43,.92); }
  .hero__mediaLabel span{ font-size: 10px; color: rgba(11,27,43,.62); }
  .hero__cta{
    flex-direction:column;
    align-items:stretch;
  }
  .hero__cta .btn{ width:100%; }
  .hero__fineprint{ display:none; }
  .signal__grid{ grid-template-columns: 1fr; }
  .experience__images{ grid-template-columns: 1fr; }
  .cta-band__inner{ text-align:left; }
  .cta-band__actions{ width: 100%; }
  .cta-band__actions .btn{ width: 100%; }

  .booking-wrap{
    max-width: 100%;
  }
  .wscene{
    margin-bottom: 10px;
    padding: 10px;
  }
  .wscene__title{
    font-size: 16px;
  }
  .wizard-steps{
    gap:6px;
    padding: 10px 10px 12px;
    overflow: visible;
    flex-wrap: wrap;
    max-width: 100%;
  }
  .wstep{
    flex: 1 1 calc(50% - 6px);
    justify-content:flex-start;
    padding: 8px 10px;
    font-size: 11px;
    min-width: 0;
    white-space: normal;
  }
  .wstep span{
    white-space: normal;
  }
  .wstep__num{
    width:22px;
    height:22px;
    font-size:11px;
    flex: 0 0 auto;
  }
  .wactions{
    flex-direction:column;
    align-items:stretch;
  }
  .wactions .btn{
    width:100%;
  }
  .search-results{
    max-height: calc(100vh - 260px);
    padding-bottom: 60px;
  }
  .search-results{
    left: 0;
    right: 0;
    border-radius: 14px;
  }
  .search-item{
    padding: 10px 10px;
  }
  .search-item strong{
    font-size: 13px;
  }
  .search-item__meta{
    font-size: 11px;
  }
  .search-foot{
    position: static;
  }
  .summary-dock{
    bottom: max(8px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 380px){
  .hero__copy h1{ font-size: 30px; }
  .btn{ padding: 11px 12px; }
}

/* Review page */
.page-review{
  background:
    radial-gradient(720px 420px at 85% 8%, rgba(200,162,74,.14), transparent 58%),
    radial-gradient(620px 320px at 12% 0%, rgba(164,188,202,.18), transparent 60%),
    linear-gradient(180deg, rgba(248,246,242,.95), rgba(255,255,255,1));
}
.page-review .card{
  box-shadow: 0 18px 45px rgba(10,22,38,.10);
  border: 1px solid rgba(214,197,165,.45);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(252,249,242,.97));
}
.page-review .review-grid{
  display: grid;
  gap: 26px;
}
.page-review .section{
  padding-bottom: 0 !important;
}
.page-review .container{
  padding-bottom: 0 !important;
}
.page-review .review-grid{
  margin-bottom: 0;
  padding-bottom: 0;
}
.page-review .card{
  margin-bottom: 0;
}
.page-review{
  min-height: 0;
  height: auto;
}
.page-review .review-col{
  display: grid;
  gap: 16px;
}
.page-review .review-card .card-inner{
  padding: 20px;
}
.page-review .review-card h2{
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.page-review .review-card .help{
  margin-bottom: 10px;
}
.page-review .review-summary{
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(250,246,236,.98));
  border: 1px solid rgba(199,159,95,.35);
  border-radius: var(--radius2);
  padding: 18px;
  gap: 12px;
  box-shadow: 0 14px 32px rgba(10,22,38,.10);
  display: grid;
  grid-template-columns: 1fr;
}
.page-review .summary-divider{
  grid-column: 1 / -1;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted2);
  padding: 4px 2px;
  position: relative;
}
.page-review .summary-divider::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: linear-gradient(90deg, rgba(199,159,95,.0), rgba(199,159,95,.55), rgba(199,159,95,.0));
}
.page-review .summary-item{
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(214,197,165,.55);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 62px;
  box-shadow: 0 10px 18px rgba(9,20,33,.07);
}
.page-review .summary-item span{
  font-size: 10px;
  color: var(--muted2);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.page-review .summary-item strong{
  font-size: 15px;
  font-weight: 700;
}
.page-review .summary-item--total{
  background: linear-gradient(135deg, rgba(199,159,95,.22), rgba(249,225,171,.30));
  border-color: rgba(199,159,95,.6);
}
.page-review .summary-item--total strong{
  font-size: 17px;
}
.page-review .review-card{
  margin-top: 0;
  border-radius: var(--radius2);
}
.page-review .review-cta{
  margin-top: 6px;
  gap: 12px;
  flex-wrap: wrap;
}
.page-review .review-cta .btn{
  min-width: 184px;
  padding: 13px 20px;
  font-size: 14px;
  letter-spacing: .03em;
}
.page-review .review-cta .btn.btn--primary{
  box-shadow: 0 10px 22px rgba(199,159,95,.25);
}
.page-review .extra-row > div{
  padding: 11px 13px;
}
.page-review .extra-table{
  border-radius: 14px;
  border: 1px solid rgba(214,197,165,.55);
  background: rgba(255,255,255,.95);
  margin-top: 10px;
  box-shadow: 0 12px 26px rgba(9,20,33,.08);
}
.page-review .extra-row{
  display:grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, .5fr) minmax(0, .5fr);
  align-items:center;
  border-bottom: 1px solid rgba(214,197,165,.45);
}
.page-review .extra-row:last-child{
  border-bottom: 0;
}
.page-review .extra-head{
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  background: rgba(249,244,234,.95);
}
.page-review .extra-row > div{
  padding: 11px 13px;
}
.page-review .extra-row.extra-head > div{
  color: var(--muted2);
}
.page-review .review-cta .btn{
  min-width: 184px;
}
@media (min-width: 980px){
  .page-review .review-grid{
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    align-items: start;
  }
  .page-review .review-col--summary{
    position: sticky;
    top: 96px;
  }
  .page-review .review-summary{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px){
  .page-review .review-grid{
    gap: 16px;
  }
  .page-review .review-card .card-inner{
    padding: 16px;
  }
  .page-review .review-card h2{
    font-size: 20px;
  }
  .page-review .review-summary{
    padding: 14px;
    gap: 10px;
  }
  .page-review .summary-item{
    min-height: 0;
  }
  .page-review .review-cta{
    flex-direction: column;
    align-items: stretch;
  }
  .page-review .review-cta .btn{
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 520px){
  .page-review .summary-item strong{
    font-size: 13px;
  }
  .page-review .summary-item--total strong{
    font-size: 15px;
  }
  .page-review .extra-row{
    grid-template-columns: 1fr;
    align-items: start;
  }
  .page-review .extra-head{
    display: none;
  }
  .page-review .extra-row div:nth-child(2),
  .page-review .extra-row div:nth-child(3){
    text-align: left;
    font-weight: 700;
  }
  .page-review .extra-row > div{
    padding: 10px 12px;
  }
  .page-review .extra-row > div[data-label]{
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
  }
  .page-review .extra-row > div[data-label]::before{
    content: attr(data-label);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted2);
  }
  .page-review .extra-row > div[data-label] .extra-qty{
    width: 100%;
  }
  .page-review .extra-row > div[data-label] .extra-qty select{
    width: 100%;
    min-width: 0;
  }
}

/* Cinematic reveal for review + thank-you */
.cinematic-stage{
  position: relative;
  isolation: isolate;
}
.cinematic-stage::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  background: radial-gradient(82% 70% at 50% 16%, rgba(247,232,191,.26), rgba(247,232,191,0) 72%);
  transform: scale(.986);
  transition: opacity 220ms ease-out, transform 220ms ease-out;
}
.cinematic-stage.is-spotlit::after{
  opacity: 1;
  transform: scale(1.012);
}
body.is-cinematic-ready .cinematic-block{
  opacity: 0;
  transform: translate3d(28px, 0, 0) scale(.986);
  filter: blur(8px);
  will-change: transform, opacity, filter;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 520ms cubic-bezier(0.22, 1, 0.36, 1), filter 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
body.is-cinematic-ready .cinematic-block[data-cin-dir="back"]{
  transform: translate3d(-28px, 0, 0) scale(.986);
}
body.is-cinematic-ready .cinematic-block.is-reveal{
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
  will-change: auto;
}
.page-review .btn,
.page-thank .btn{
  transition: transform 140ms ease, box-shadow 220ms ease, filter 220ms ease;
}
.page-review .btn:active,
.page-thank .btn:active,
.page-review .btn.is-pressed,
.page-thank .btn.is-pressed{
  transform: translateY(1px);
  box-shadow: 0 8px 18px rgba(11,27,43,.14);
  filter: saturate(1.04);
}
.cinematic-pop{
  animation: cinematicPulse 420ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes cinematicPulse{
  0%{ transform: translate3d(0, 0, 0) scale(.986); filter: blur(2px); opacity:.72; }
  100%{ transform: translate3d(0, 0, 0) scale(1); filter: blur(0); opacity:1; }
}
@media (prefers-reduced-motion: reduce){
  .cinematic-stage::after,
  .cinematic-block,
  .cinematic-pop,
  .page-review .btn,
  .page-thank .btn{
    animation: none !important;
    transition: none !important;
  }
  .cinematic-block{
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }
}
@media (max-width: 860px){
  body.is-cinematic-ready .cinematic-block{
    transform: translate3d(0, 34px, 0) scale(.965);
    filter: blur(6px);
    transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1), opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), filter 560ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  body.is-cinematic-ready .cinematic-block[data-cin-dir="back"]{
    transform: translate3d(0, -24px, 0) scale(.972);
  }
}
