/* Slow Roads Japan, shared stylesheet.
   Editorial, print-influenced layout: sharp corners, hairline rules instead
   of drop shadows, asymmetric left-aligned section heads, Fraunces for
   display type paired with Karla for text. */

:root {
  --coral: #C8492E;
  --coral-dark: #A63A24;
  --deep-green: #16332B;
  --cream: #F7F2E7;
  --cream-deep: #EFE6D3;
  --ink: #201C16;
  --gray: #5c5850;
  --gray-light: #ddd5c2;
  --white: #fffdf8;
  --radius: 3px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Karla", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
}

h1, h2, h3, .display {
  font-family: "Fraunces", "Georgia", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: 3.4rem; font-weight: 400; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.3rem; font-weight: 600; }

p { margin: 0 0 1em; color: var(--gray); }

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

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header ---------- */

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.brand-name {
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  color: var(--ink);
  white-space: nowrap;
}

.brand-tag {
  font-size: 0.78rem;
  color: var(--coral);
  border-left: 1px solid var(--gray-light);
  padding-left: 10px;
  white-space: nowrap;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

nav.main-nav a.active,
nav.main-nav a:hover {
  border-color: var(--coral);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.btn-primary:hover { background: var(--coral-dark); border-color: var(--coral-dark); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

.btn-outline:hover { background: var(--ink); color: var(--white); }

.btn-small { padding: 9px 18px; font-size: 0.82rem; }

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
}

.hero-copy { min-width: 0; }

.hero-eyebrow {
  display: block;
  color: var(--coral-dark);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 { margin-bottom: 20px; }
.hero h1 em { color: var(--coral); font-style: normal; }

.hero-sub {
  font-size: 1.15rem;
  max-width: 46ch;
  margin-bottom: 28px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  color: var(--ink);
}

.hero-stat span { font-size: 0.85rem; color: var(--gray); }

.hero-media {
  position: relative;
  border: 1px solid var(--gray-light);
  aspect-ratio: 4 / 5;
}

.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Trust bar ---------- */

.trust-bar {
  background: var(--deep-green);
  color: var(--cream);
  padding: 18px 0;
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.trust-bar strong { color: var(--white); font-family: "Fraunces", serif; font-size: 1.05rem; margin-right: 6px; }

/* ---------- Sections ---------- */

section { padding: 84px 0; }

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-eyebrow {
  color: var(--coral-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

/* value grid */

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

.value-card {
  background: var(--white);
  border-top: 3px solid var(--coral);
  padding: 26px 22px;
}

.value-index {
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  color: var(--coral);
  margin-bottom: 12px;
  display: block;
}

.value-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.value-card p { font-size: 0.95rem; margin-bottom: 0; }

/* tours grid */

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

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

.tour-media { aspect-ratio: 16/10; overflow: hidden; }
.tour-media img { width: 100%; height: 100%; object-fit: cover; }

.tour-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }

.tour-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--coral-dark);
  font-weight: 700;
  margin-bottom: 10px;
}

.age-tag {
  display: inline-block;
  border: 1px solid var(--coral);
  color: var(--coral-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 12px;
}

.source-note {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 8px;
}

.source-note a { text-decoration: underline; color: var(--gray); }
.source-note a:hover { color: var(--coral-dark); }

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

.age-nav a {
  border: 1px solid var(--ink);
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 700;
}

.age-nav a:hover { background: var(--ink); color: var(--white); }

.tour-body h3 { margin-bottom: 10px; }
.tour-body p { font-size: 0.95rem; flex: 1; }

.family-note {
  background: var(--cream);
  border-left: 3px solid var(--coral);
  padding: 10px 14px;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 16px;
}

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.tour-price { font-family: "Fraunces", serif; font-size: 1.3rem; }
.tour-price span { font-size: 0.75rem; font-family: "Karla", sans-serif; color: var(--gray); display: block; }

/* two-col */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split img { border: 1px solid var(--gray-light); }

.checklist { list-style: none; padding: 0; margin: 20px 0; border-left: 2px solid var(--gray-light); }
.checklist li {
  padding: 2px 0 2px 20px;
  margin-bottom: 12px;
  color: var(--ink);
}

/* testimonial */

.testimonial-band {
  background: var(--cream-deep);
}

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 28px;
}

.testimonial-stars { color: var(--coral); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p { font-style: italic; color: var(--ink); }
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--gray); font-style: normal; }

/* CTA band */

.cta-band {
  background: var(--deep-green);
  color: var(--cream);
  text-align: left;
  padding: 56px 48px;
}

.cta-band h2 { color: var(--white); max-width: 20ch; }
.cta-band p { color: var(--cream); opacity: 0.85; max-width: 50ch; }

/* form */

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  padding: 40px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-grid .full { grid-column: 1 / -1; }

label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--ink);
}

input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
}

textarea { resize: vertical; min-height: 100px; }

/* Spam honeypot: hidden from people, visible to bots */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--white);
  border-bottom: 3px solid var(--coral);
  padding: 22px 20px;
  text-align: left;
}

.contact-card .value-index { margin: 0 0 10px; }

/* Footer */

footer.site-footer {
  background: var(--ink);
  color: #cfcfcf;
  padding: 56px 0 28px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-grid a:hover { color: var(--coral); }

.footer-brand .brand-name { color: var(--white); }
.footer-brand p { font-size: 0.9rem; margin-top: 12px; color: #a9a9a9; }

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #8c8c8c;
  flex-wrap: wrap;
  gap: 10px;
}

/* Page hero (interior pages) */

.page-hero {
  background: var(--cream-deep);
  border-bottom: 1px solid var(--gray-light);
  padding: 52px 0;
}

.page-hero p { max-width: 60ch; }

/* ---------- Itinerary detail pages ---------- */

.breadcrumb {
  font-size: 0.85rem;
  color: var(--gray);
  padding: 20px 0 0;
}

.breadcrumb a { color: var(--gray); text-decoration: underline; }
.breadcrumb a:hover { color: var(--coral-dark); }
.breadcrumb span { margin: 0 6px; }

.itinerary-hero { padding-top: 28px; padding-bottom: 0; }

.itinerary-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.itinerary-header > div:first-child { flex: 1 1 480px; }
.itinerary-header h1 { margin-bottom: 10px; }
.itinerary-header .lede { font-size: 1.1rem; max-width: 60ch; margin-bottom: 0; }

.itinerary-quickfacts {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--coral-dark);
  font-weight: 700;
  white-space: nowrap;
}

.itinerary-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 14px;
  font-size: 0.85rem;
  color: var(--gray);
}

.itinerary-trust span { display: flex; align-items: center; gap: 6px; }
.itinerary-trust strong { color: var(--ink); font-weight: 700; }
.itinerary-trust .stars { color: var(--coral); letter-spacing: 1px; }

/* Photo colour treatment: a modest lift, phone photos need it */

.itinerary-gallery img,
.timeline-stop img,
.tier-head img,
.tier-photo,
.pro-tip img,
.tour-media img {
  filter: saturate(1.14) contrast(1.05);
}

/* Highlights */

.highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
}

.highlights li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  background: var(--coral);
}

.itinerary-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
  margin-bottom: 0;
  max-height: 340px;
}

.itinerary-gallery .gallery-main { aspect-ratio: 16/9; overflow: hidden; border: 1px solid var(--gray-light); max-height: 340px; }
.itinerary-gallery .gallery-side { display: grid; grid-template-rows: 1fr 1fr; gap: 8px; }
.itinerary-gallery .gallery-side > div { overflow: hidden; border: 1px solid var(--gray-light); }
.itinerary-gallery img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }

.itinerary-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
  padding-top: 64px;
}

.itinerary-main > * + * { margin-top: 56px; }

.itinerary-block h2 { margin-bottom: 18px; }
.itinerary-block .section-eyebrow { display: block; margin-bottom: 10px; }

.trip-facts {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-top: 3px solid var(--coral);
  padding: 28px;
  position: sticky;
  top: 96px;
}

.trip-facts .fact-price {
  font-family: "Fraunces", serif;
  font-size: 1.9rem;
  margin-bottom: 2px;
}

.trip-facts .fact-price span {
  display: block;
  font-family: "Karla", sans-serif;
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 400;
}

.fact-list {
  list-style: none;
  margin: 22px 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--gray-light);
}

.fact-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.88rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-deep);
}

.fact-list li span:first-child { color: var(--gray); }
.fact-list li span:last-child { font-weight: 700; text-align: right; }

.trip-facts .btn { width: 100%; text-align: center; }

.trip-facts .facts-note {
  font-size: 0.78rem;
  color: var(--gray);
  margin: 14px 0 0;
}

/* Where we'll meet */

.meet-card {
  background: var(--cream-deep);
  border-left: 3px solid var(--coral);
  padding: 20px 22px;
}

.meet-card p:last-child { margin-bottom: 0; }

/* What you'll do timeline */

.timeline { list-style: none; margin: 0; padding: 0; }

.timeline-stop {
  padding-bottom: 36px;
  border-left: 1px solid var(--gray-light);
  margin-left: 21px;
  padding-left: 34px;
  position: relative;
}

.timeline-stop:last-child { padding-bottom: 0; border-color: transparent; }

.timeline-stop .stop-index {
  position: absolute;
  left: -22px;
  top: 0;
  width: 42px;
  height: 42px;
  background: var(--white);
  border: 1.5px solid var(--coral);
  color: var(--coral-dark);
  font-family: "Fraunces", serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.timeline-drive {
  list-style: none;
  margin-left: 21px;
  padding: 0 0 20px 34px;
  border-left: 1px dashed var(--gray-light);
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: -20px;
}

.timeline-drive::before {
  content: "\2193";
  margin-right: 7px;
  color: var(--coral);
  font-weight: 700;
}

.stop-time {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: 6px;
}

.timeline-stop h3 { margin-bottom: 8px; }

.timeline-stop img {
  margin-top: 14px;
  border: 1px solid var(--gray-light);
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  max-width: 360px;
}

.meet-card img {
  margin-top: 16px;
  border: 1px solid var(--gray-light);
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
  max-width: 360px;
  display: block;
}

/* Included / not included */

.info-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.info-list { list-style: none; margin: 0; padding: 0; }
.info-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--cream-deep);
}

.info-list.included li::before { content: "+"; position: absolute; left: 0; color: var(--coral-dark); font-weight: 700; }
.info-list.excluded li::before { content: "\2212"; position: absolute; left: 0; color: var(--gray); font-weight: 700; }
.info-list.excluded li { color: var(--gray); }

/* Accordion */

.accordion {
  border-top: 1px solid var(--gray-light);
}

.accordion summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 700;
  font-family: "Fraunces", serif;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; color: var(--coral); font-size: 1.3rem; }
.accordion[open] summary::after { content: "\2212"; }
.accordion + .accordion { border-bottom: 1px solid var(--gray-light); }
.accordion p { padding-bottom: 20px; }

/* Time budget callout */

.time-budget {
  border: 1px solid var(--gray-light);
  border-left: 3px solid var(--coral);
  background: var(--white);
  padding: 22px 24px;
}

.time-budget p:last-child { margin-bottom: 0; }

.budget-key {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}

.big-rule {
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0;
}

.big-rule strong { color: var(--coral-dark); }

.strip-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin: 22px 0 0;
}

.strip-label span {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gray);
}

.daystrip {
  display: flex;
  list-style: none;
  margin: 10px 0 20px;
  padding: 0;
  gap: 3px;
}

.daystrip li {
  display: flex;
  flex-direction: column;
  min-width: 74px;
  text-align: center;
  overflow-wrap: break-word;
}

.daystrip .d-bar { height: 10px; display: block; width: 100%; }
.d-drive .d-bar { background: var(--gray-light); }
.d-stop  .d-bar { background: var(--coral); }
.d-meal  .d-bar { background: var(--deep-green); }

.daystrip .d-icon { font-size: 1.3rem; line-height: 1; margin-top: 10px; }
.daystrip .d-time {
  font-family: "Fraunces", serif;
  font-size: 0.76rem;
  white-space: nowrap;
  color: var(--gray);
  margin-top: 4px;
}
.daystrip .d-label {
  font-size: 0.74rem;
  line-height: 1.25;
  margin-top: 2px;
  padding: 0 2px;
  hyphens: auto;
}
.daystrip .d-dur { font-size: 0.7rem; color: var(--gray); white-space: nowrap; }

/* Pro tip */

.pro-tip {
  background: var(--cream-deep);
  border-left: 3px solid var(--coral);
  padding: 18px 20px;
  margin-top: 16px;
}

.pro-tip p { margin-bottom: 0; font-size: 0.92rem; color: var(--ink); }

.pro-tip {
  display: grid;
  grid-template-columns: 1fr 150px;
  gap: 18px;
  align-items: start;
}

.pro-tip img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 1px solid var(--gray-light);
}

.tip-flag {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: 6px;
}

/* Activity tiers */

.stop-tier { margin-bottom: 40px; }
.stop-tier:last-of-type { margin-bottom: 0; }

.tier-head {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 14px;
}

.tier-head img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--gray-light);
}

.tier-head h3 { margin-bottom: 6px; }
.tier-head p { margin: 0; font-size: 0.9rem; }

.tier-effort {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--coral);
  padding: 3px 9px;
  margin-bottom: 8px;
}

.tier-head.is-gentle .tier-effort { background: var(--deep-green); }

/* Candid "we'd steer you away" note */

.steer-note {
  background: var(--deep-green);
  color: var(--cream);
  padding: 26px 28px;
  margin-top: 36px;
}

.steer-note h3 { color: var(--white); margin-bottom: 4px; }

.steer-note .steer-flag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--deep-green);
  background: var(--cream);
  padding: 3px 9px;
  margin-bottom: 10px;
}

.steer-note p { color: var(--cream); opacity: 0.92; }
.steer-note p:last-child { margin-bottom: 0; }

.steer-note ul {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}

.steer-note li {
  position: relative;
  padding: 5px 0 5px 20px;
  font-size: 0.92rem;
  opacity: 0.92;
}

.steer-note li::before {
  content: "\2013";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

.steer-note a { color: var(--white); text-decoration: underline; }

.tier-photo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--gray-light);
  margin-top: 16px;
  display: block;
}

/* Options menu */

.options-menu { list-style: none; margin: 0; padding: 0; }

.options-menu li {
  display: grid;
  grid-template-columns: 1fr 130px 110px;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-light);
}

.options-menu li:first-child {
  border-top: 1px solid var(--gray-light);
}

.option-name { font-weight: 700; font-size: 0.95rem; }
.option-name small { display: block; font-weight: 400; color: var(--gray); font-size: 0.85rem; margin-top: 3px; }
.option-name em {
  font-style: normal;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--coral-dark);
  white-space: nowrap;
}
.option-time { font-size: 0.85rem; color: var(--coral-dark); font-weight: 700; }
.option-cost { font-size: 0.82rem; color: var(--gray); text-align: right; }

/* Reuse for other tours */

.other-tours-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Responsive */

@media (max-width: 900px) {
  nav.main-nav { display: none; }
  .hero .container { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2.3rem; }
  .itinerary-gallery { grid-template-columns: 1fr; }
  .itinerary-gallery .gallery-side { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .itinerary-layout { grid-template-columns: 1fr; }
  .trip-facts { position: static; }
  .info-columns { grid-template-columns: 1fr; }
  .other-tours-strip { grid-template-columns: 1fr; }
  .options-menu li { grid-template-columns: 1fr; gap: 4px; }
  .option-cost { text-align: left; }
  .tier-head { grid-template-columns: 1fr; }
  .tier-head img { max-width: 200px; }
  .highlights { grid-template-columns: 1fr; }
  .pro-tip { grid-template-columns: 1fr; }
  .pro-tip img { max-width: 200px; aspect-ratio: 4/3; }
  .daystrip { flex-wrap: wrap; }
  .daystrip li { flex: 1 1 45% !important; margin-bottom: 10px; }
}
