/* ===================================================================
   GBT ADVENTURE — shared stylesheet
   Edit colours in the :root block below to re-theme the whole site.
   =================================================================== */

:root {
  /* ---- Brand colours (change these to re-skin everything) ---- */
  --pine:    #173a2c;   /* deep forest green — dominant dark */
  --pine-2:  #1f4d39;   /* lighter green for layering */
  --amber:   #e8a317;   /* sunset orange — energetic accent / buttons */
  --amber-2: #c4860f;   /* darker amber for hover */
  --cream:   #f5efe3;   /* warm off-white page background */
  --sand:    #e7dcc6;   /* soft tan for cards / borders */
  --ink:     #1b1a16;   /* near-black body text */
  --muted:   #5d5a4f;   /* muted text */
  --white:   #ffffff;

  /* ---- Type ---- */
  --display: "Bricolage Grotesque", Georgia, serif;
  --body:    "Hanken Grotesk", system-ui, sans-serif;

  /* ---- Layout ---- */
  --maxw: 1180px;
  --radius: 18px;
  --shadow: 0 18px 50px -22px rgba(23, 58, 44, 0.45);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle paper grain for warmth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.05; letter-spacing: -0.01em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

.eyebrow {
  font-family: var(--body);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--amber);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--amber); color: var(--white); }
.btn-primary:hover { background: var(--amber-2); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(245,239,227,0.45); }
.btn-ghost:hover { border-color: var(--cream); background: rgba(245,239,227,0.08); }
.btn-dark { background: var(--pine); color: var(--cream); }
.btn-dark:hover { background: var(--pine-2); }

/* ===================================================================
   HEADER / NAV
   =================================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(23, 58, 44, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(245,239,227,0.12);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo { display: flex; align-items: center; gap: 0.65rem; color: var(--cream); }
.logo svg { width: 38px; height: 38px; flex: none; }
.logo .name { font-family: var(--display); font-weight: 800; font-size: 1.35rem; letter-spacing: -0.02em; }
.logo .name span { color: var(--amber); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { color: var(--cream); font-weight: 600; font-size: 0.98rem; opacity: 0.85; transition: opacity 0.15s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--amber); }
.nav-links .btn { padding: 0.6rem 1.3rem; font-size: 0.95rem; }
.nav-links .btn:hover { color: var(--white); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--cream); margin: 5px 0; border-radius: 2px; transition: 0.25s; }

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 76px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--pine);
    padding: 1rem 24px 1.8rem;
    border-bottom: 1px solid rgba(245,239,227,0.12);
    transform: translateY(-130%);
    transition: transform 0.32s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 0.9rem 0; border-bottom: 1px solid rgba(245,239,227,0.1); }
  .nav-links .btn { margin-top: 0.9rem; width: 100%; justify-content: center; }
  .nav-toggle { display: block; }
}

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  background: var(--pine);
  color: var(--cream);
  overflow: hidden;
  padding: 5.5rem 0 6.5rem;
}
.hero-art { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; }
.hero-art svg { width: 100%; height: 100%; object-fit: cover; }
.hero .wrap { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); margin: 1rem 0 1.2rem; }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero p.lead { font-size: clamp(1.05rem, 2.2vw, 1.3rem); max-width: 560px; opacity: 0.92; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-trust { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; font-size: 0.92rem; opacity: 0.85; }
.hero-trust div { display: flex; align-items: center; gap: 0.5rem; }
.hero-trust b { font-family: var(--display); color: var(--amber); font-size: 1.15rem; }

/* page header (interior pages) */
.page-head { background: var(--pine); color: var(--cream); padding: 4rem 0 3.4rem; position: relative; overflow: hidden; }
.page-head .wrap { position: relative; z-index: 2; }
.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 0.8rem 0 0.6rem; }
.page-head p { max-width: 600px; opacity: 0.9; font-size: 1.1rem; }
.page-head .hero-art { opacity: 0.5; }

/* ===================================================================
   SECTIONS
   =================================================================== */
section { padding: 5rem 0; position: relative; z-index: 2; }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 0.7rem 0 0.8rem; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.bg-cream { background: var(--cream); }

/* Region cards */
.regions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.region {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--sand);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease;
}
.region:hover { transform: translateY(-6px); }
.region .photo { aspect-ratio: 4 / 3; }
.region .body { padding: 1.4rem 1.5rem 1.7rem; }
.region h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.region p { color: var(--muted); font-size: 0.98rem; }

/* Photo placeholder zones (replace with real images) */
.photo-ph {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--pine);
  background:
    repeating-linear-gradient(45deg, rgba(23,58,44,0.04) 0 14px, rgba(23,58,44,0.07) 14px 28px),
    linear-gradient(135deg, var(--sand), #d9cdb2);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 1rem;
}
.photo-ph span { background: rgba(255,255,255,0.78); padding: 0.5rem 0.8rem; border-radius: 8px; line-height: 1.3; }
.photo-ph::before { content: "📷"; position: absolute; top: 12px; left: 14px; font-size: 1.1rem; opacity: 0.6; }

/* Illustrated cyclist-in-vineyard scenes (original artwork, safe to publish) */
.scene { width: 100%; height: 100%; display: block; }
.scene-mudgee  { --sky:#dcebd9; --sun:#f1c36a; --hill1:#9cc3a3; --hill2:#5e9367; --field:#3f6e49; --row:#2f5238; --rider:#173a2c; }
.scene-hunter  { --sky:#ece6c6; --sun:#eab14a; --hill1:#cdbf86; --hill2:#9aa45e; --field:#6e7a3e; --row:#55602f; --rider:#34341c; }
.scene-barossa { --sky:#eedac4; --sun:#e8a317; --hill1:#caa583; --hill2:#a9714e; --field:#7e4a30; --row:#5e3320; --rider:#34211a; }

/* Included grid */
.included { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.feature {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.feature:hover { transform: translateY(-4px); border-color: var(--amber); }
.feature .ic {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(232,163,23,0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 1.5rem;
}
.feature h3 { font-size: 1.25rem; margin-bottom: 0.45rem; }
.feature p { color: var(--muted); font-size: 0.97rem; }
.feature.highlight { background: var(--pine); color: var(--cream); border-color: var(--pine); }
.feature.highlight p { color: rgba(245,239,227,0.82); }
.feature.highlight .ic { background: rgba(232,163,23,0.25); }

/* Group types band */
.bg-pine { background: var(--pine); color: var(--cream); }
.bg-pine .section-head p { color: rgba(245,239,227,0.82); }
.groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.group-card {
  border: 1px solid rgba(245,239,227,0.18);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  background: rgba(245,239,227,0.04);
}
.group-card .tag { font-size: 2rem; display:block; margin-bottom: 0.7rem; }
.group-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--cream); }
.group-card p { color: rgba(245,239,227,0.82); font-size: 0.97rem; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step { position: relative; padding-top: 1rem; }
.step .num {
  font-family: var(--display); font-weight: 800; font-size: 2.6rem;
  color: var(--amber); line-height: 1; margin-bottom: 0.6rem;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.96rem; }

/* CTA band */
.cta-band { background: var(--amber); color: var(--white); text-align: center; }
.cta-band h2 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 0.8rem; }
.cta-band p { font-size: 1.15rem; max-width: 560px; margin: 0 auto 2rem; opacity: 0.95; }
.cta-band .btn-dark:hover { background: #0f291e; }

/* ===================================================================
   ABOUT page bits
   =================================================================== */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.about-grid .photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow); }
.prose p { font-size: 1.08rem; color: var(--ink); margin-bottom: 1.1rem; }
.prose p .lead-in { font-weight: 700; }
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.3rem; margin-top: 1rem; }
.value { background: var(--white); border: 1px solid var(--sand); border-radius: 14px; padding: 1.4rem; }
.value h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.value p { color: var(--muted); font-size: 0.95rem; }

/* ===================================================================
   ENQUIRY page / form
   =================================================================== */
.enq-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 3rem; align-items: start; }
.enq-aside h2 { font-size: 2rem; margin-bottom: 1rem; }
.enq-aside ul { list-style: none; margin: 1.4rem 0; }
.enq-aside li { display: flex; gap: 0.7rem; margin-bottom: 0.9rem; color: var(--muted); }
.enq-aside li::before { content: "✓"; color: var(--amber); font-weight: 800; }
.enq-contact { margin-top: 1.6rem; padding-top: 1.6rem; border-top: 1px solid var(--sand); }
.enq-contact a { color: var(--pine); font-weight: 700; }

.card-form {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
}
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-weight: 700; font-size: 0.95rem; margin-bottom: 0.5rem; }
.field .hint { font-weight: 400; color: var(--muted); font-size: 0.85rem; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--sand);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--amber);
}
.field textarea { resize: vertical; min-height: 120px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }
.check {
  display: flex; align-items: flex-start; gap: 0.6rem;
  background: var(--cream); border: 1.5px solid var(--sand);
  border-radius: 12px; padding: 0.8rem 0.9rem; cursor: pointer; font-size: 0.95rem;
}
.check input { width: auto; margin-top: 3px; }
.check:has(input:checked) { border-color: var(--amber); background: rgba(232,163,23,0.06); }
.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 0.4rem; }
.hidden { position: absolute; left: -9999px; }

/* Thank-you page */
.thanks { min-height: 60vh; display: flex; align-items: center; }
.thanks .wrap { text-align: center; max-width: 560px; }
.thanks .big { font-size: 3.4rem; margin-bottom: 1rem; }
.thanks h1 { font-size: clamp(2rem,5vw,3rem); margin-bottom: 1rem; }
.thanks p { color: var(--muted); font-size: 1.1rem; margin-bottom: 2rem; }

/* ===================================================================
   FOOTER
   =================================================================== */
.footer { background: #0f291e; color: var(--cream); padding: 3.5rem 0 2rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer .logo { margin-bottom: 1rem; }
.footer p { color: rgba(245,239,227,0.7); font-size: 0.95rem; max-width: 320px; }
.footer h4 { font-family: var(--display); font-size: 1.1rem; margin-bottom: 1rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a { color: rgba(245,239,227,0.75); font-size: 0.95rem; }
.footer ul a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(245,239,227,0.14);
  padding-top: 1.6rem; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 0.6rem; font-size: 0.85rem; color: rgba(245,239,227,0.55);
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 900px) {
  .regions, .included, .groups { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .about-grid, .enq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  section { padding: 3.4rem 0; }
  .regions, .included, .groups, .steps, .values, .checks, .two-col { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero { padding: 4rem 0 4.5rem; }
}

/* entrance animation */
@keyframes rise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
.rise { opacity: 0; animation: rise 0.7s cubic-bezier(0.2,0.7,0.2,1) forwards; }
.d1 { animation-delay: 0.08s; } .d2 { animation-delay: 0.18s; }
.d3 { animation-delay: 0.28s; } .d4 { animation-delay: 0.38s; }

/* ===================================================================
   ===============  PROFESSIONAL UPGRADE LAYER  ======================
   (appended last so it refines/overrides the base styles above)
   =================================================================== */
:root{
  --shadow:    0 26px 64px -30px rgba(12,41,30,.55);
  --shadow-sm: 0 10px 28px -16px rgba(12,41,30,.42);
  --radius: 20px;
}
body{ font-size:17px; }
h1,h2,h3{ letter-spacing:-0.028em; }

/* editorial eyebrow with leading rule */
.eyebrow{ display:inline-flex; align-items:center; gap:.65rem; }
.eyebrow::before{ content:""; width:28px; height:2px; background:var(--amber); display:inline-block; }
.section-head.center .eyebrow::before{ display:none; }

/* buttons — depth + gradient */
.btn{ box-shadow:var(--shadow-sm); }
.btn-primary{ background:linear-gradient(135deg,#f5bd3a,#d59512); box-shadow:0 14px 32px -14px rgba(196,134,15,.75); }
.btn-primary:hover{ background:linear-gradient(135deg,#f6c245,#c4860f); }

/* ---- crafted line icons (replace emoji) ---- */
.i{ width:1em; height:1em; display:inline-block; vertical-align:middle; }
.feature .ic{
  width:60px; height:60px; border-radius:17px;
  background:linear-gradient(135deg,rgba(232,163,23,.18),rgba(232,163,23,.05));
  box-shadow:inset 0 0 0 1px rgba(232,163,23,.2);
}
.feature .ic .i{ width:28px; height:28px; color:var(--amber); }
.feature.highlight .ic{ background:rgba(232,163,23,.22); box-shadow:inset 0 0 0 1px rgba(232,163,23,.4); }
.feature.highlight .ic .i{ color:#ffe6a6; }
.group-card .tag{
  display:inline-flex; align-items:center; justify-content:center;
  width:58px; height:58px; border-radius:16px; margin-bottom:1.1rem;
  background:rgba(232,163,23,.16);
}
.group-card .tag .i{ width:30px; height:30px; color:var(--amber); }
.value h3{ display:flex; align-items:center; gap:.55rem; }
.value h3 .i{ width:22px; height:22px; color:var(--amber); flex:none; }

/* feature cards */
.feature{ box-shadow:var(--shadow-sm); border-color:rgba(20,40,30,.08); }
.feature:hover{ box-shadow:var(--shadow); }

/* nav — subtle, darkens on scroll (class added by script.js) */
.nav{ background:rgba(15,41,30,.82); }
.nav.nav-scrolled{ background:rgba(15,41,30,.97); box-shadow:0 12px 32px -20px rgba(0,0,0,.7); }

/* hero — depth, glow, larger type */
.hero{ padding:7rem 0 8rem; }
.hero::after{
  content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    radial-gradient(58% 48% at 80% 26%, rgba(232,163,23,.30), transparent 62%),
    linear-gradient(180deg, rgba(15,41,30,.05), rgba(15,41,30,0) 32%, rgba(12,41,30,.5));
}
.hero .wrap{ z-index:2; }
.hero h1{ font-size:clamp(2.9rem,7vw,5.3rem); line-height:1.0; }
.hero .lead{ font-size:clamp(1.1rem,2.2vw,1.35rem); }
.hero-trust{ border-top:1px solid rgba(245,239,227,.18); padding-top:1.7rem; }

/* interior page heads — readable depth */
.page-head{ padding:5.5rem 0 4.2rem; }
.page-head::after{ content:""; position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg,rgba(15,41,30,.15),rgba(12,41,30,.6)); }
.page-head .wrap{ z-index:2; }

/* region cards → premium photo cards */
.region{ box-shadow:var(--shadow-sm); }
.region:hover{ box-shadow:var(--shadow); }
.region .photo{ position:relative; overflow:hidden; }
.region .photo .scene{ transition:transform .6s cubic-bezier(.2,.7,.2,1); }
.region:hover .photo .scene{ transform:scale(1.07); }
.region .photo::after{ content:""; position:absolute; inset:0;
  background:linear-gradient(180deg,transparent 52%, rgba(12,48,35,.42)); }
.region h3{ display:flex; align-items:center; justify-content:space-between; gap:.5rem; }
.region h3::after{ content:"→"; color:var(--amber); font-family:var(--body); font-weight:700; transition:transform .2s ease; }
.region:hover h3::after{ transform:translateX(5px); }

/* section rhythm */
section{ padding:6rem 0; }
.section-head h2{ font-size:clamp(2.1rem,4.4vw,3.25rem); }

/* sample-day timeline */
.timeline{ max-width:780px; margin:0 auto; }
.tl-item{ display:grid; grid-template-columns:96px 1fr; gap:1.5rem; padding:1.5rem 0; border-bottom:1px solid var(--sand); }
.tl-item:last-child{ border-bottom:0; }
.tl-time{ font-family:var(--display); font-weight:800; color:var(--amber); font-size:1.05rem; padding-top:.15rem; }
.tl-item h3{ font-size:1.25rem; margin-bottom:.25rem; }
.tl-item p{ color:var(--muted); }

/* reveal-on-scroll (class applied by script.js, so no-JS still shows content) */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in{ opacity:1; transform:none; }

/* thank-you icons */
.thanks .big{ display:flex; gap:1rem; justify-content:center; align-items:center; }
.thanks .big .i{ width:54px; height:54px; color:var(--amber); }

/* ===================================================================
   ===============  REAL PHOTOS LAYER  ===============================
   =================================================================== */
.photo img{ width:100%; height:100%; object-fit:cover; display:block; }
.region .photo img{ transition:transform .6s cubic-bezier(.2,.7,.2,1); }
.region:hover .photo img{ transform:scale(1.07); }

/* hero photo + legibility scrim */
.hero-art img{ width:100%; height:100%; object-fit:cover; object-position:center; }
.hero::after{
  background:
    linear-gradient(95deg, rgba(10,33,24,.86) 0%, rgba(10,33,24,.58) 44%, rgba(10,33,24,.30) 100%),
    linear-gradient(180deg, rgba(10,33,24,.12), rgba(10,33,24,.55));
}

/* interior page-head photo + scrim */
.page-head .hero-art{ opacity:1; }
.page-head .hero-art img{ width:100%; height:100%; object-fit:cover; object-position:center; }
.page-head::after{ background:linear-gradient(180deg, rgba(10,33,24,.5), rgba(10,33,24,.74)); }

/* ===================================================================
   ===============  PROTECTED TOUR PAGE LAYER  =======================
   =================================================================== */
/* password gate */
body.locked{ overflow:hidden; }
.gate{ position:fixed; inset:0; z-index:1000;
  background:radial-gradient(70% 60% at 70% 20%, rgba(232,163,23,.25), transparent 60%), linear-gradient(160deg,#173a2c,#0c3023);
  display:flex; align-items:center; justify-content:center; padding:24px; }
.gate.open{ display:none; }
.gate-card{ background:var(--white); border-radius:var(--radius); padding:2.6rem 2.4rem; max-width:430px; width:100%; text-align:center; box-shadow:var(--shadow); }
.gate-card .glogo{ width:56px; height:56px; margin:0 auto 1.1rem; }
.gate-card h2{ font-size:1.7rem; margin-bottom:.5rem; }
.gate-card p{ color:var(--muted); margin-bottom:1.4rem; }
.gate-card input{ width:100%; padding:.95rem 1rem; border:1.5px solid var(--sand); border-radius:12px; font-size:1rem; margin-bottom:1rem; font-family:var(--body); background:var(--cream); }
.gate-card input:focus{ outline:none; border-color:var(--amber); }
.gate-card .btn{ width:100%; justify-content:center; }
.gate-err{ color:#c0392b; font-size:.92rem; margin-top:.9rem !important; }

/* itinerary day cards */
.day{ background:var(--white); border:1px solid var(--sand); border-radius:var(--radius); box-shadow:var(--shadow-sm); padding:2rem 2rem 1.5rem; margin-bottom:1.6rem; }
.day-head{ display:flex; align-items:baseline; gap:1rem; flex-wrap:wrap; border-bottom:1px solid var(--sand); padding-bottom:1rem; margin-bottom:1.1rem; }
.day-date{ font-family:var(--display); font-weight:800; color:var(--amber); font-size:1.05rem; }
.day-head h3{ font-size:1.5rem; }
.stop{ display:grid; grid-template-columns:84px 1fr; gap:1.1rem; padding:.7rem 0; }
.stop-time{ font-weight:700; color:var(--pine); }
.stop h4{ font-size:1.06rem; margin-bottom:.15rem; font-family:var(--body); font-weight:700; }
.stop p{ color:var(--muted); font-size:.95rem; }
.meal{ display:inline-block; font-size:.68rem; font-weight:700; text-transform:uppercase; letter-spacing:.06em;
  color:var(--amber); background:rgba(232,163,23,.13); padding:.18rem .55rem; border-radius:999px; margin-left:.45rem; vertical-align:middle; }
.tour-note{ background:rgba(23,58,44,.05); border-left:3px solid var(--amber); border-radius:8px; padding:1rem 1.2rem; color:var(--muted); font-size:.92rem; margin-top:1.5rem; }

/* bike option cards */
.bike-opts{ display:grid; gap:.7rem; }
.bike{ display:flex; align-items:center; gap:.75rem; border:1.5px solid var(--sand); border-radius:12px; padding:.9rem 1rem; cursor:pointer; background:var(--cream); }
.bike:has(input:checked){ border-color:var(--amber); background:rgba(232,163,23,.07); }
.bike input{ width:auto; margin:0; }
.bike .price{ margin-left:auto; font-weight:700; color:var(--pine); }
.field input.locked-field{ background:#ece7da; color:var(--muted); }

@media (max-width:580px){ .stop{ grid-template-columns:70px 1fr; gap:.8rem; } }

/* tour price callout */
.price-callout{ display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between; gap:1.4rem;
  background:var(--pine); color:var(--cream); border-radius:var(--radius); padding:1.9rem 2rem; margin-top:1.5rem; box-shadow:var(--shadow-sm); }
.price-callout .eyebrow{ color:#ffe6a6; }
.price-callout .eyebrow::before{ background:#ffe6a6; }
.price-amt{ font-family:var(--display); font-weight:800; font-size:2.5rem; line-height:1; margin:.4rem 0 .5rem; }
.price-amt span{ font-family:var(--body); font-weight:600; font-size:1rem; opacity:.82; }
.price-callout p{ color:rgba(245,239,227,.82); font-size:.95rem; max-width:430px; margin:0; }
.price-add{ background:rgba(232,163,23,.18); border:1px solid rgba(232,163,23,.4); border-radius:12px; padding:.95rem 1.15rem; font-size:.95rem; }
.price-add strong{ color:#ffe6a6; }
@media (max-width:580px){ .price-amt{ font-size:2rem; } }

/* ===================================================================
   GOLDEN-YELLOW ACCENT: dark text on the accent for legibility
   =================================================================== */
.btn-primary, .btn-primary:hover{ color:#173a2c; }
.nav-links .btn-primary:hover{ color:#173a2c; }
.cta-band{ color:#173a2c; }
.cta-band h2{ color:#173a2c; }
.cta-band p{ opacity:.92; }
