/* ============================================================
   ORLANDO BIKE TOURS — DESIGN SYSTEM
   Upload to: assets/css/style.css
============================================================ */

/* === TOKENS === */
:root {
  --cream: #FDF8F0;
  --cream-deep: #F7EEDF;
  --ink:   #2A2A2A;
  --amber: #F19400;
  --gold:  #FDBE20;
  --ink60: rgba(42,42,42,0.74);
  --ink08: rgba(42,42,42,0.08);
  --white: #ffffff;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================================
   NAVIGATION
============================================================ */
header {
  position: sticky; top: 0; z-index: 500;
}
.nav {
  position: relative;
  background: var(--cream);
  border-bottom: 2.5px solid var(--amber);
  height: 74px; padding: 0 48px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
}
.nav-logo img { height: 44px; width: auto; display: block; }

.nav-links {
  display: flex; align-items: center;
  gap: 32px; list-style: none;
}
.nav-links > li > a {
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: 11.5px; letter-spacing: 0.11em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  transition: color 0.2s; white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--amber); }
.nav-mobile-book { display: none; }

/* Dropdown */
.nav-dd { position: relative; }
.nav-dd-menu {
  display: none; position: absolute;
  top: calc(100% + 2px); left: -20px;
  background: var(--cream); border-top: 2px solid var(--amber);
  min-width: 220px; padding: 10px 0;
  box-shadow: 0 16px 40px rgba(42,42,42,0.10);
  z-index: 100;
}
.nav-dd:hover .nav-dd-menu { display: block; }
.nav-dd-menu a {
  display: block; padding: 10px 24px;
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: 11px; letter-spacing: 0.09em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  transition: color 0.15s, background 0.15s;
}
.nav-dd-menu a:hover { color: var(--amber); background: rgba(241,148,0,0.04); }

.nav-book {
  background: var(--amber); color: var(--white);
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: 11.5px; letter-spacing: 0.10em; text-transform: uppercase;
  text-decoration: none; padding: 13px 24px;
  white-space: nowrap; flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.nav-book:hover { background: var(--gold); color: var(--ink); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--ink08);
  background: var(--white); color: var(--ink);
  cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block; width: 20px; height: 2px;
  background: currentColor;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle-lines { position: relative; }
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: ''; position: absolute; left: 0;
}
.nav-toggle-lines::before { top: -6px; }
.nav-toggle-lines::after { top: 6px; }
body.nav-open .nav-toggle-lines { background: transparent; }
body.nav-open .nav-toggle-lines::before { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav-toggle-lines::after { transform: translateY(-6px) rotate(-45deg); }

/* Mobile sticky bar */
.mobile-book {
  display: none;
}
html.js .mobile-book {
  transform: translateY(100%);
  transition: transform 0.25s ease;
}
html.js .mobile-book.is-visible { transform: translateY(0); }
#tours, #bokun-widget, #inquiry { scroll-margin-top: 92px; }

/* ============================================================
   BUTTONS
============================================================ */
.btn-amber {
  display: inline-flex; align-items: center;
  background: var(--amber); color: var(--white);
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: 11.5px; letter-spacing: 0.10em; text-transform: uppercase;
  text-decoration: none; padding: 14px 26px;
  min-height: 46px;
  transition: background 0.2s, color 0.2s;
}
.btn-amber:hover { background: var(--gold); color: var(--ink); }

.btn-ghost-white {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--white);
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: 11.5px; letter-spacing: 0.10em; text-transform: uppercase;
  text-decoration: none; padding: 13px 26px;
  min-height: 46px;
  border: 1.5px solid rgba(255,255,255,0.50);
  transition: border-color 0.2s;
}
.btn-ghost-white:hover { border-color: var(--white); }

.btn-ink {
  display: inline-flex; align-items: center;
  background: var(--ink); color: var(--white);
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: 11.5px; letter-spacing: 0.10em; text-transform: uppercase;
  text-decoration: none; padding: 14px 26px;
  min-height: 46px;
  transition: background 0.2s;
}
.btn-ink:hover { background: var(--amber); }

.btn-ghost-ink {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--ink);
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: 11.5px; letter-spacing: 0.10em; text-transform: uppercase;
  text-decoration: none; padding: 13px 26px;
  min-height: 46px;
  border: 1.5px solid var(--ink);
  transition: background 0.2s, color 0.2s;
}
.btn-ghost-ink:hover { background: var(--ink); color: var(--white); }

/* ============================================================
   HERO — HOMEPAGE (full viewport)
============================================================ */
.hero {
  position: relative; height: 91vh; min-height: 580px;
  display: flex; align-items: flex-end;
  padding: 72px 60px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 55%;
  z-index: 0;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(42,42,42,0.84) 0%,
    rgba(42,42,42,0.30) 46%,
    rgba(42,42,42,0.02) 100%
  );
}
.hero-content { position: relative; z-index: 1; max-width: 860px; }
.hero-content h1 {
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: clamp(44px, 7.5vw, 90px);
  line-height: 0.92; text-transform: uppercase;
  letter-spacing: -0.02em; color: var(--white); margin-bottom: 24px;
}
.hero-rule { width: 48px; height: 3px; background: var(--amber); margin-bottom: 20px; }
.hero-content p {
  font-size: clamp(16px, 1.5vw, 18px); font-weight: 500;
  color: rgba(255,255,255,0.92); max-width: 500px;
  line-height: 1.65; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* HERO — INNER PAGES (shorter) */
.page-hero {
  position: relative; height: 50vh; min-height: 360px;
  display: flex; align-items: flex-end;
  padding: 52px 60px; overflow: hidden;
}
.page-hero .hero-bg { background-position: center 40%; }
.page-hero h1 {
  position: relative; z-index: 1;
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 0.93; text-transform: uppercase;
  letter-spacing: -0.02em; color: var(--white);
  max-width: 820px;
}
.page-hero p {
  position: relative; z-index: 1;
  font-size: clamp(14px, 1.4vw, 16px); font-weight: 500;
  color: rgba(255,255,255,0.84); max-width: 520px;
  line-height: 1.65; margin-top: 16px;
}
.page-hero-content { position: relative; z-index: 1; }

/* ============================================================
   TOUR CARDS
============================================================ */
.tours { padding: 88px 48px 96px; }
.tours-head {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 48px; align-items: end;
  max-width: 1180px; margin: 0 auto 42px;
}
.tours-kicker,
.guide-note-kicker {
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: 12px; letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 12px;
}
.tours-head h2 {
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: clamp(31px, 4vw, 52px);
  line-height: 1.02; letter-spacing: -0.025em;
  max-width: 720px;
}
.tours-head-copy {
  font-size: 17px; line-height: 1.72;
  color: var(--ink60); max-width: 480px;
}
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  max-width: 1344px; margin: 0 auto;
}

.card {
  display: flex; flex-direction: column; overflow: hidden;
  border: 1px solid var(--ink08);
}
.card-light { background: var(--white); }
.card-dark  { background: var(--ink); }

.card-photo {
  width: 100%; height: auto; aspect-ratio: 3/2;
  object-fit: cover; display: block;
}
.card-body  { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }

.card-name {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 22px; line-height: 1.2; margin-bottom: 10px;
}
.card-light .card-name { color: var(--ink); }
.card-dark  .card-name { color: var(--white); }

.card-desc {
  font-size: 16px; line-height: 1.65;
  flex: 1; margin-bottom: 12px;
}
.card-light .card-desc { color: var(--ink60); }
.card-dark  .card-desc { color: rgba(255,255,255,0.62); }

.card-detail {
  font-size: 13px; line-height: 1.5;
  color: var(--ink60); margin-bottom: 22px;
}
.card-dark .card-detail { color: rgba(255,255,255,0.72); }
.card-price {
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: 12px; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 18px;
}
.card-cta {
  display: inline-block; align-self: flex-start;
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: 11.5px; letter-spacing: 0.10em; text-transform: uppercase;
  text-decoration: none; padding: 13px 20px;
  transition: background 0.2s, color 0.2s;
}
.card-light .card-cta { background: var(--amber); color: var(--white); }
.card-light .card-cta:hover { background: var(--gold); color: var(--ink); }
.card-dark  .card-cta { background: var(--white); color: var(--ink); }
.card-dark  .card-cta:hover { background: var(--amber); color: var(--white); }

/* ============================================================
   EDITORIAL SPLIT
============================================================ */
.editorial { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.editorial-photo {
  width: 100%; height: 100%; min-height: 400px;
  object-fit: cover; object-position: center 30%; display: block;
}
.editorial-text {
  padding: 88px 72px; background: var(--cream);
  display: flex; flex-direction: column; justify-content: center;
}
.editorial-text h2 {
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: clamp(24px, 2.8vw, 40px);
  text-transform: uppercase; letter-spacing: -0.01em;
  line-height: 1.04; color: var(--ink); margin-bottom: 24px;
}
.editorial-text p {
  font-size: 16.5px; line-height: 1.76;
  color: var(--ink60); max-width: 470px;
}

/* Reversed: text left, photo right */
.editorial-reverse { direction: rtl; }
.editorial-reverse > * { direction: ltr; }

/* ============================================================
   SHARED UTILITIES
============================================================ */
.amber-rule { width: 36px; height: 2px; background: var(--amber); margin-bottom: 24px; flex-shrink: 0; }
.gold-rule  { width: 36px; height: 2px; background: var(--gold);  margin-bottom: 24px; }

.section-heading {
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: clamp(26px, 3.5vw, 44px);
  text-transform: uppercase; letter-spacing: -0.01em;
  line-height: 1.04; color: var(--ink);
}
.section-heading--white { color: var(--white); }

.section-subhead {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 18px; color: var(--ink60); margin-top: 8px;
  line-height: 1.4;
}

.page-section { padding: 88px 48px; }
.page-section--tight { padding: 64px 48px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 56px;
}

.prose {
  font-size: 16.5px; line-height: 1.78;
  color: var(--ink60); max-width: 640px;
}
.prose p + p { margin-top: 1em; }
.prose strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   FACTS BAR
============================================================ */
.facts {
  background: var(--ink); border-top: 3px solid var(--amber);
  padding: 56px 48px;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.fact {
  text-align: center; padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.fact:last-child { border-right: none; }
.fact-val {
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--gold); line-height: 1;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.fact-lbl {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

/* ============================================================
   FOUNDER / LOCAL NOTE
============================================================ */
.guide-note {
  position: relative;
  display: grid; grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 0; overflow: hidden;
  background: var(--cream-deep);
}
.guide-note::after {
  content: '';
  position: absolute; right: -90px; bottom: -115px;
  width: 360px; height: 220px;
  border: 2px solid rgba(241,148,0,0.24);
  border-radius: 50%;
  transform: rotate(-14deg);
  pointer-events: none;
}
.guide-note-photo {
  width: 100%; height: 100%; min-height: 620px;
  object-fit: cover; object-position: center 68%;
}
.guide-note-copy {
  position: relative; z-index: 1;
  align-self: center;
  padding: 88px clamp(48px, 7vw, 110px);
}
.guide-note h2 {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: clamp(30px, 3.8vw, 52px);
  line-height: 1.08; letter-spacing: -0.025em;
  max-width: 720px; margin-bottom: 24px;
}
.guide-note-copy > p:not(.guide-note-kicker) {
  font-size: 17px; line-height: 1.75;
  color: var(--ink60); max-width: 650px;
}
.guide-note-quote {
  margin: 30px 0;
  padding-left: 24px;
  border-left: 3px solid var(--amber);
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-style: italic; line-height: 1.5;
  max-width: 600px;
}
.guide-note-quote cite {
  display: block; margin-top: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px; font-style: normal; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink60);
}

/* ============================================================
   REVIEWS
============================================================ */
.reviews { padding: 96px 48px; }
.reviews-head { margin-bottom: 60px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 40px; }

.review { border-top: 2px solid var(--gold); padding-top: 28px; }
.review-stars {
  color: var(--amber); font-size: 12px;
  letter-spacing: 2px; margin-bottom: 16px;
}
.review-quote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 19.5px; line-height: 1.60;
  color: var(--ink); margin-bottom: 20px;
}
.review-attr {
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: 11px; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--ink60);
}
.review-attr em { color: var(--amber); font-style: normal; }
.reviews-cta { margin-top: 56px; }

/* ============================================================
   CLOSING CTA
============================================================ */
.cta-close {
  padding: 104px 48px; text-align: center;
  border-top: 1px solid var(--ink08);
}
.cta-close h2 {
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: clamp(26px, 4.5vw, 56px);
  text-transform: uppercase; letter-spacing: -0.02em;
  line-height: 1.04; color: var(--ink);
  max-width: 740px; margin: 0 auto 40px;
}

/* ============================================================
   BOKUN WIDGET WRAPPER
============================================================ */
.bokun-wrap {
  padding: 72px 48px; background: var(--cream);
}
.bokun-wrap h2 {
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: clamp(22px, 2.5vw, 32px);
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--ink); margin-bottom: 32px;
}
.bokunWidget { min-height: 400px; }

.tour-intro-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; padding: 28px 48px;
  background: var(--cream-deep);
  border-bottom: 1px solid var(--ink08);
}
.tour-intro-cta p {
  font-size: 16px; line-height: 1.6; color: var(--ink60);
}

/* ============================================================
   TOUR DETAIL PAGE SPECIFICS
============================================================ */
.tour-facts {
  display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 0;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  margin: 40px 0;
}
.tour-fact {
  min-width: 0;
  padding: 20px 24px;
  border-right: 1px solid var(--ink08);
}
.tour-fact:last-child { border-right: none; }
.tour-fact-label {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 11.5px; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 6px;
}
.tour-fact-value {
  font-family: 'Poppins', sans-serif; font-weight: 700;
  font-size: 15px; color: var(--ink); line-height: 1.4;
}

/* ============================================================
   FAQ PAGE
============================================================ */
.faq-section { padding: 72px 48px; }
.faq-group { margin-bottom: 56px; }
.faq-group-heading {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 24px;
  padding-bottom: 12px; border-bottom: 1px solid var(--ink08);
}
.faq-item { border-bottom: 1px solid var(--ink08); }
.faq-q {
  font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: 16px; letter-spacing: 0;
  color: var(--ink); padding: 20px 0;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq-q::after {
  content: '+'; font-size: 20px; color: var(--amber);
  flex-shrink: 0; transition: transform 0.2s;
  font-family: 'Montserrat', sans-serif; font-weight: 400;
}
.faq-q.open::after { transform: rotate(45deg); }
.faq-a {
  font-size: 16px; line-height: 1.75;
  color: var(--ink60); padding-bottom: 20px;
  display: none;
}
.faq-a.open { display: block; }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%; padding: 14px 16px;
  background: var(--white); border: 1.5px solid var(--ink08);
  font-family: 'Montserrat', sans-serif; font-size: 16px;
  color: var(--ink); outline: none;
  transition: border-color 0.2s; margin-bottom: 16px;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--amber); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form label {
  display: block; font-family: 'Poppins', sans-serif; font-weight: 900;
  font-size: 11.5px; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--ink60); margin-bottom: 6px;
}

.text-hero { padding: 80px 60px 56px; background: var(--cream); }
.text-hero--large { padding-top: 88px; padding-bottom: 72px; }
.text-hero--compact { padding-top: 72px; padding-bottom: 48px; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer { background: var(--ink); padding: 72px 48px 40px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-logo-img {
  height: 40px; width: auto;
  filter: none; opacity: 1;
  margin-bottom: 16px; display: block;
}
.footer-brand-tag {
  font-size: 14px; color: rgba(255,255,255,0.68);
  line-height: 1.65; max-width: 220px;
}
.footer-col-head {
  font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 11.5px; letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 18px;
}
.footer-col a {
  display: block; font-size: 14px;
  color: rgba(255,255,255,0.72);
  text-decoration: none; margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-contact-info {
  font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.9;
}
.footer-contact-info a {
  color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.2s;
}
.footer-contact-info a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.62); letter-spacing: 0.03em; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 12px; color: rgba(255,255,255,0.62);
  text-decoration: none; transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .nav { padding: 0 28px; }
  .hero { padding: 52px 32px; }
  .page-hero { padding: 40px 32px; }
  .tours { padding: 64px 28px; }
  .editorial-text { padding: 64px 48px; }
  .facts { padding: 48px 28px; }
  .reviews { padding: 72px 28px; }
  .cta-close { padding: 96px 28px; }
  .site-footer { padding: 60px 28px 36px; }
  .page-section { padding: 72px 28px; }
  .bokun-wrap { padding: 56px 28px; }
  .faq-section { padding: 56px 28px; }
  .guide-note-copy { padding: 64px 48px; }
}

@media (max-width: 860px) {
  .nav { height: 70px; padding: 0 20px; }
  .nav-logo img { height: 42px; }
  .nav-book { display: none; }
  html.js .nav-toggle { display: inline-flex; }
  .nav-links {
    display: flex;
    position: absolute; top: 70px; left: 0; right: 0;
    max-height: calc(100vh - 70px); overflow-y: auto;
    padding: 24px 20px 34px;
    background: var(--cream);
    border-bottom: 3px solid var(--amber);
    box-shadow: 0 20px 40px rgba(42,42,42,0.14);
    flex-direction: column; align-items: stretch; gap: 0;
  }
  body.nav-open { overflow: hidden; }
  html.js .nav-links { display: none; }
  html.js body.nav-open .nav-links { display: flex; }
  .nav-links > li > a {
    display: block; padding: 15px 4px;
    font-size: 15px; letter-spacing: 0.06em;
    border-bottom: 1px solid var(--ink08);
  }
  .nav-mobile-book { display: block; margin-top: 18px; }
  .nav-links > .nav-mobile-book > a {
    padding: 15px 18px;
    background: var(--amber); color: var(--white);
    border-bottom: 0; text-align: center;
  }
  .nav-dd-menu {
    display: block; position: static;
    min-width: 0; padding: 6px 0 10px 18px;
    border-top: 0; box-shadow: none;
  }
  .nav-dd-menu a {
    padding: 10px 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px; font-weight: 600;
    letter-spacing: 0; text-transform: none;
  }

  .hero { height: 78vh; min-height: 520px; padding: 40px 24px; }
  .page-hero { height: 42vh; min-height: 300px; padding: 32px 24px; }

  .tours { padding: 56px 20px; }
  .tours-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 32px; }
  .cards-grid { grid-template-columns: 1fr; gap: 16px; }
  .card-photo { aspect-ratio: 16/10; }

  .editorial { grid-template-columns: 1fr; }
  .editorial-photo { height: 300px; min-height: unset; }
  .editorial-text { padding: 52px 28px; }
  .guide-note { grid-template-columns: 1fr; }
  .guide-note-photo { height: 440px; min-height: 0; object-position: center 70%; }
  .guide-note-copy { padding: 56px 28px 64px; }

  .facts { grid-template-columns: repeat(2,1fr); padding: 40px 20px; gap: 0; }
  .fact {
    border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 24px 16px;
  }
  .fact:nth-child(3), .fact:nth-child(4) { border-bottom: none; }

  .reviews { padding: 60px 20px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 36px; }

  .cta-close { padding: 80px 20px; }

  .site-footer { padding: 52px 20px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }

  .page-section { padding: 56px 20px; }
  .bokun-wrap { padding: 48px 20px; }
  .faq-section { padding: 48px 20px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: 1fr; gap: 34px; }

  .tour-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 28px 0; }
  .tour-fact {
    padding: 18px 20px;
    border-right: 1px solid var(--ink08);
    border-bottom: 1px solid var(--ink08);
  }
  .tour-fact:nth-child(even) { border-right: none; }
  .tour-fact:nth-last-child(-n+2) { border-bottom: none; }
  .tour-intro-cta {
    align-items: flex-start; flex-direction: column;
    padding: 26px 20px;
  }
  .text-hero,
  .text-hero--large,
  .text-hero--compact { padding: 56px 24px 48px; }

  /* Mobile sticky booking bar */
  .mobile-book {
    display: block; position: fixed;
    bottom: 0; left: 0; right: 0; z-index: 400;
    background: var(--amber);
  }
  .mobile-book a {
    display: block; text-align: center; padding: 16px 24px;
    font-family: 'Poppins', sans-serif; font-weight: 900;
    font-size: 12px; letter-spacing: 0.10em; text-transform: uppercase;
    color: var(--white); text-decoration: none;
  }
  body { padding-bottom: 56px; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: clamp(36px, 12vw, 54px); }
}
