:root {
  --ink: #181512;
  --muted: #6c625a;
  --paper: #fff9f0;
  --paper-strong: #fff3e1;
  --line: #e8d8c4;
  --charcoal: #11100f;
  --charcoal-2: #211b17;
  --red: #dc2f24;
  --red-dark: #ae1e18;
  --gold: #f0b640;
  --cream: #fffaf3;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(19, 13, 9, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 8px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.36) 68%, rgba(0, 0, 0, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
  line-height: 1;
}

.brand-logo {
  height: 104px;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.24);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn::after {
  content: "→";
  margin-left: 10px;
  font-size: 16px;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(180deg, #ef3b2f, var(--red-dark));
  box-shadow: 0 10px 24px rgba(220, 47, 36, 0.25);
}

.btn-dark {
  color: var(--white);
  background: var(--charcoal);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(0, 0, 0, 0.2);
}

.btn-large {
  min-height: 54px;
  padding: 0 28px;
}

.btn-full {
  width: 100%;
}

.section-dark {
  color: var(--white);
  background: var(--charcoal);
}

.hero {
  position: relative;
  min-height: 690px;
  padding: 150px 0 72px;
  overflow: hidden;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
}

.hero-shade {
  background:
    radial-gradient(circle at 66% 40%, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.72) 54%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.54) 52%, rgba(0, 0, 0, 0.82));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 56px;
}

.hero-copy {
  max-width: 690px;
  min-width: 0;
}

.eyebrow {
  max-width: 100%;
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
}

.eyebrow.red {
  color: var(--red);
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 620px;
  font-size: clamp(56px, 8vw, 116px);
  font-weight: 1000;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: var(--red);
}

.hero-lead {
  max-width: 500px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  overflow-wrap: normal;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.script-note {
  display: inline-block;
  max-width: 100%;
  margin: 34px 0 0;
  padding-bottom: 7px;
  color: var(--white);
  border-bottom: 2px solid var(--red);
  font-family: "Bradley Hand", "Segoe Print", cursive;
  font-size: 21px;
  transform: rotate(-2deg);
}

.booking-card {
  width: 100%;
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 250, 243, 0.96);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-card h2 {
  margin-bottom: 22px;
  font-size: 24px;
  line-height: 1.12;
}

.card-kicker {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-row {
  display: grid;
  gap: 2px;
  margin: 0 0 18px;
}

.price-row span,
.price-row small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.price-row strong {
  font-size: 30px;
  line-height: 1;
}

.price-row-sub {
  margin-top: -10px;
  margin-bottom: 14px;
}

.price-row-sub strong {
  font-size: 20px;
}

.tour-price-youth {
  display: block;
  font-size: 20px;
  margin-bottom: 4px;
}

.feature-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  margin: 11px 0;
  color: var(--muted);
  font-size: 13px;
}

.feature-list .icon {
  color: var(--red);
  font-weight: 900;
}

.instant {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  text-align: center;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  color: var(--white);
  background: #302821;
}

.trust-item {
  min-height: 94px;
  padding: 20px 18px;
  background: #191714;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
}

.trust-item span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.section {
  padding: 72px 0;
}

.section-soft {
  background: linear-gradient(180deg, var(--paper-strong), var(--paper));
}

.section-heading {
  margin-bottom: 30px;
  text-align: center;
}

.section-heading h2,
.reviews-heading h2,
.location-copy h2,
.faq-section h2,
.guide-copy h2 {
  font-size: clamp(28px, 4vw, 40px);
  text-transform: uppercase;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.food-card,
.step-card,
.review-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.food-card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.food-card h3,
.food-card p {
  padding: 0 18px;
}

.food-card h3 {
  margin-top: 24px;
  font-size: 20px;
  text-transform: uppercase;
}

.food-card p {
  margin: 8px 0 22px;
  color: var(--muted);
  font-size: 14px;
}

.food-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 18px;
  color: var(--white);
  background: var(--red);
  border: 4px solid var(--cream);
  border-radius: 999px;
  font-weight: 900;
}

.section-note {
  margin: 24px 0 0;
  color: var(--red-dark);
  text-align: center;
  font-family: "Bradley Hand", "Segoe Print", cursive;
  font-size: 20px;
}

.glance-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-bottom: 34px;
}

.glance-row div {
  border-top: 2px solid var(--ink);
  padding-top: 12px;
}

.glance-row strong,
.glance-row span {
  display: block;
}

.glance-row strong {
  font-size: 13px;
  text-transform: uppercase;
}

.glance-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.tour-panel {
  display: grid;
  grid-template-columns: 42% 1fr 230px;
  gap: 34px;
  align-items: center;
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #17130f, #26201a);
  box-shadow: var(--shadow);
}

.tour-image {
  position: relative;
}

.tour-image img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.tour-image span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 8px 12px;
  color: var(--charcoal);
  background: var(--gold);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-copy h2 {
  min-width: 0;
  font-size: clamp(28px, 4vw, 38px);
}

.check-list {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.check-list li {
  margin: 7px 0;
}

.check-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--red);
  font-weight: 900;
}

.tour-price {
  padding: 24px;
  color: var(--ink);
  background: var(--cream);
  border-radius: var(--radius);
}

.tour-price span,
.tour-price small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tour-price strong {
  display: block;
  margin-bottom: 14px;
  font-size: 28px;
}

.tour-price p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.steps::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 8%;
  right: 8%;
  border-top: 2px dashed rgba(220, 47, 36, 0.55);
}

.step-card {
  padding: 12px;
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: -2px auto 12px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-weight: 900;
}

.step-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  border-radius: 6px;
}

.step-card h3 {
  margin-top: 14px;
  font-size: 15px;
  text-transform: uppercase;
}

.step-card p {
  margin: 7px 0 10px;
  color: var(--muted);
  font-size: 13px;
}

.step-card small {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.guide-section {
  display: grid;
  grid-template-columns: minmax(320px, 40%) 1fr;
  background: var(--cream);
}

.guide-copy {
  padding: 72px max(40px, calc((100vw - var(--max)) / 2)) 72px max(40px, calc((100vw - var(--max)) / 2));
}

.guide-copy p {
  color: var(--muted);
}

.guide-image-wrap {
  position: relative;
  overflow: hidden;
}

.guide-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.speech-bubble {
  position: absolute;
  top: 25%;
  left: 10%;
  padding: 10px 18px;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  border-radius: 18px 18px 18px 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 14px;
  width: 0;
  height: 0;
  border-left: 10px solid var(--white);
  border-right: 6px solid transparent;
  border-top: 10px solid var(--white);
  border-bottom: 6px solid transparent;
}

.guide-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.guide-points span {
  padding: 14px 0 0;
  border-top: 2px solid var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.reviews-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.reviews-heading a {
  color: #1b7f5d;
  font-size: 13px;
  font-weight: 900;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.review-card {
  padding: 24px;
}

.stars {
  color: var(--gold);
  font-size: 18px;
}

.review-card h3 {
  margin-top: 10px;
  font-size: 18px;
}

.review-card blockquote {
  margin: 12px 0;
  color: var(--muted);
}

.review-card p,
.source-note {
  color: var(--muted);
  font-size: 13px;
}

.source-note {
  margin-top: 16px;
}

.location-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 36px;
  align-items: center;
}

.location-copy p {
  color: var(--muted);
}

.map-frame {
  position: relative;
  overflow: hidden;
  min-height: 290px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(34deg, transparent 0 44%, rgba(66, 120, 151, 0.18) 44% 48%, transparent 48%),
    linear-gradient(151deg, transparent 0 28%, rgba(66, 120, 151, 0.2) 28% 31%, transparent 31%),
    repeating-linear-gradient(12deg, rgba(255, 255, 255, 0.34) 0 18px, transparent 18px 72px),
    repeating-linear-gradient(96deg, rgba(164, 142, 112, 0.16) 0 12px, transparent 12px 58px),
    #e7dfd4;
}

.map-frame::before,
.map-frame::after {
  display: none;
}

.map-frame iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 330px;
  border: 0;
  opacity: 1;
}

.faq-section h2 {
  margin-bottom: 22px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

details {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--cream);
}

summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.site-footer {
  padding: 64px 0 32px;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(180deg, #1a1512 0%, var(--charcoal) 100%);
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand {
  color: var(--white);
}

.footer-logo {
  height: 160px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-footer .footer-brand-row p {
  max-width: 340px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--cream);
  letter-spacing: 0.01em;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.site-footer a {
  display: block;
  margin: 10px 0;
  font-size: 15px;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: var(--gold);
}

.site-footer p {
  max-width: 340px;
  font-size: 14px;
}

.subscribe-form {
  display: flex;
  gap: 8px;
}

.subscribe-form input {
  min-width: 0;
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
}

.copyright {
  margin: 48px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  place-items: center;
  padding: 24px;
}

.booking-modal[aria-hidden="false"] {
  display: grid;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.booking-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.booking-modal__panel h2 {
  font-size: clamp(28px, 4vw, 38px);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  color: var(--white);
  background: var(--charcoal);
  font-size: 24px;
  line-height: 1;
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-top: 3px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.progress-step span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--line);
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
  flex-shrink: 0;
}

.progress-step.is-active {
  border-color: var(--red);
  color: var(--ink);
}

.progress-step.is-active span {
  background: var(--red);
  color: var(--white);
}

.progress-step.is-done {
  border-color: #2d8a5e;
  color: #2d8a5e;
}

.progress-step.is-done span {
  background: #2d8a5e;
  color: var(--white);
}

.booking-step {
  display: none;
}

.booking-step.is-active {
  display: block;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 160ms ease;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220, 47, 36, 0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.phone-input-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 8px;
}

.phone-input-row select,
.phone-input-row input {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: border-color 160ms ease;
}

.phone-input-row select:focus,
.phone-input-row input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220, 47, 36, 0.12);
}

.tour-time-info {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper-strong);
}

.tour-time-info .time-icon {
  font-size: 24px;
}

.tour-time-info strong {
  display: block;
  font-size: 15px;
}

.tour-time-info small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.booking-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.btn-ghost-dark {
  color: var(--ink);
  border: 1px solid var(--line);
  background: transparent;
}

.booking-summary {
  margin: 20px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.summary-row:last-child {
  border-bottom: 0;
}

.summary-row span {
  color: var(--muted);
}

.summary-total {
  background: var(--paper-strong);
}

.summary-total strong {
  font-size: 20px;
  color: var(--red);
}

.summary-note {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.booking-error {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 6px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 14px;
  font-weight: 600;
}

.booking-processing {
  text-align: center;
  padding: 48px 0;
}

.spinner {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  border: 4px solid var(--line);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px 20px 60px;
  background: var(--paper);
}

.success-card {
  max-width: 560px;
  padding: 40px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  text-align: center;
}

.success-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 999px;
  background: #2d8a5e;
  color: var(--white);
  font-size: 32px;
  font-weight: 900;
}

.success-card h1 {
  font-size: 28px;
  line-height: 1.2;
}

.success-lead {
  color: var(--muted);
  font-size: 16px;
}

.success-info {
  text-align: left;
  margin: 24px 0;
}

.success-list {
  color: var(--ink);
}

.success-list li {
  margin: 10px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--cream);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 122px;
  }

  .hero-grid,
  .tour-panel,
  .guide-section,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .booking-card {
    max-width: 430px;
  }

  .trust-strip,
  .food-grid,
  .glance-row,
  .steps,
  .review-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps::before {
    display: none;
  }

  .tour-panel {
    gap: 22px;
  }

  .tour-price {
    max-width: 320px;
  }

  .guide-copy {
    padding: 60px 40px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 48px), var(--max));
  }

  .site-header {
    padding: 14px;
  }

  .hero {
    padding-bottom: 44px;
  }

  .hero-grid > *,
  .hero-copy,
  .booking-card,
  .hero-actions {
    max-width: min(320px, calc(100vw - 64px));
  }

  h1 {
    font-size: clamp(42px, 13vw, 52px);
  }

  .booking-card h2 {
    font-size: 22px;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.6;
  }

  .eyebrow {
    font-size: 12px;
    line-height: 1.35;
  }

  .hero-actions,
  .subscribe-form,
  .reviews-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .script-note {
    font-size: 18px;
  }

  .trust-strip,
  .food-grid,
  .glance-row,
  .steps,
  .review-grid,
  .faq-grid,
  .footer-grid,
  .guide-points {
    grid-template-columns: 1fr;
  }

  .form-row,
  .booking-progress {
    grid-template-columns: 1fr;
  }

  .booking-progress {
    grid-template-columns: repeat(4, 1fr);
  }

  .progress-step {
    flex-direction: column;
    text-align: center;
    font-size: 10px;
    gap: 4px;
  }

  .booking-nav {
    flex-direction: column;
  }

  .section {
    padding: 54px 0;
  }

  .tour-panel,
  .booking-modal__panel {
    padding: 18px;
  }

  .guide-copy {
    padding: 54px 22px;
  }

  .guide-section img {
    min-height: 320px;
  }

  .map-frame iframe {
    height: 280px;
  }
}
