:root {
  color-scheme: light;
  --forest: #163428;
  --forest-2: #244c3b;
  --cacao: #3a2014;
  --cacao-2: #5a321f;
  --gold: #ba925b;
  --gold-2: #e0c590;
  --bone: #f4efe5;
  --bone-2: #e8ddca;
  --paper: #fbf7ef;
  --ink: #1e1a15;
  --muted: #6f675c;
  --line: rgba(38, 31, 24, 0.14);
  --shadow: 0 28px 70px rgba(32, 22, 12, 0.2);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--bone);
  background: linear-gradient(180deg, rgba(16, 29, 23, 0.82), rgba(16, 29, 23, 0));
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1;
  letter-spacing: 0;
}

.brand span {
  color: var(--gold-2);
  font-style: italic;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 9px 16px;
  border: 1px solid rgba(244, 239, 229, 0.22);
  background: rgba(22, 52, 40, 0.52);
  backdrop-filter: blur(18px);
  border-radius: 999px;
  font-size: 13px;
}

.header-action {
  justify-self: end;
  padding: 10px 18px;
  border: 1px solid rgba(244, 239, 229, 0.34);
  border-radius: 999px;
  font-size: 13px;
  background: rgba(244, 239, 229, 0.12);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--bone);
  background: var(--forest);
  padding: 122px clamp(18px, 5vw, 70px) 56px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 30, 23, 0.88), rgba(14, 30, 23, 0.48), rgba(14, 30, 23, 0.7)),
    linear-gradient(180deg, rgba(14, 30, 23, 0.1), rgba(14, 30, 23, 0.86));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

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

.hero-media img:first-child {
  object-position: center 32%;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(72px, 14vw, 182px);
  line-height: 0.82;
  max-width: 900px;
}

h2 {
  font-size: clamp(38px, 6vw, 76px);
  line-height: 0.95;
}

h3 {
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.02;
}

.hero-lede {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(244, 239, 229, 0.86);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions,
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-gold {
  color: #1d140c;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
}

.btn-quiet {
  color: var(--bone);
  border-color: rgba(244, 239, 229, 0.3);
  background: rgba(244, 239, 229, 0.08);
}

.hero-panel {
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(720px, 100%);
  margin-top: 56px;
  border: 1px solid rgba(244, 239, 229, 0.22);
  background: rgba(20, 36, 29, 0.62);
  backdrop-filter: blur(20px);
}

.hero-panel div {
  padding: 18px;
  border-right: 1px solid rgba(244, 239, 229, 0.18);
}

.hero-panel div:last-child {
  border-right: 0;
}

.stat-k,
.summary-row small,
.form-note,
.confirmation {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hero-panel .stat-k {
  color: rgba(244, 239, 229, 0.58);
}

.hero-panel strong {
  display: block;
  margin-top: 6px;
  font-size: 15px;
}

.section {
  padding: clamp(70px, 10vw, 128px) 0;
}

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

.intro {
  background: var(--bone);
}

.intro-grid,
.section-head,
.pickup-grid,
.tasting-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
}

.intro p,
.section-head p,
.pickup p,
.tasting p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.journey {
  background: var(--paper);
}

.section-head {
  margin-bottom: 44px;
}

.journey-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 28px;
}

.map-card,
.stop-card,
.pairing-card,
.summary-card,
.booking-form,
.maker-card {
  border: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.72);
  box-shadow: var(--shadow);
}

.map-card {
  min-height: 500px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 26% 24%, rgba(186, 146, 91, 0.2), transparent 32%),
    linear-gradient(145deg, #f8f1e4, #d8c6aa);
}

.map-card svg {
  width: min(92%, 680px);
  overflow: visible;
}

.route-base,
.route-progress {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.route-base {
  stroke: rgba(58, 32, 20, 0.18);
  stroke-width: 13;
}

.route-progress {
  stroke: var(--gold);
  stroke-width: 7;
}

.map-stop {
  cursor: pointer;
}

.map-stop circle {
  fill: var(--paper);
  stroke: var(--cacao);
  stroke-width: 4;
  transition: fill 180ms ease, transform 180ms ease;
}

.map-stop text {
  fill: var(--cacao);
  font-size: 15px;
  font-weight: 700;
}

.map-stop.active circle,
.map-stop:hover circle,
.map-stop:focus-visible circle {
  fill: var(--gold);
}

.stop-card {
  padding: clamp(24px, 4vw, 44px);
}

.stop-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.chip {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cacao);
  background: #fffaf1;
  font-size: 13px;
}

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

.timeline button,
.taste-card {
  border: 1px solid var(--line);
  background: #fffaf1;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.timeline button {
  min-height: 46px;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
}

.timeline button.active,
.taste-card.selected {
  border-color: rgba(186, 146, 91, 0.72);
  background: rgba(186, 146, 91, 0.16);
}

.image-band {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  background: var(--forest);
}

.image-band figure {
  position: relative;
  min-height: 440px;
  margin: 0;
  overflow: hidden;
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
}

.image-band figcaption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  color: var(--bone);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pickup {
  background: var(--bone);
}

.pickup-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.pickup-summary div {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.68);
}

.pickup-summary span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.pickup-summary strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
}

.resort-list {
  display: grid;
  gap: 10px;
}

.resort {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 13px;
  border: 1px solid var(--line);
  background: #fffaf1;
  cursor: pointer;
}

.resort.selected {
  border-color: rgba(186, 146, 91, 0.78);
  background: rgba(186, 146, 91, 0.18);
}

.resort-num {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--bone);
  background: var(--forest);
  font-size: 12px;
  font-weight: 700;
}

.resort strong {
  display: block;
}

.resort small {
  color: var(--muted);
}

.resort-time {
  color: var(--cacao);
  font-weight: 700;
}

.tasting {
  background: var(--paper);
}

.flight-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.flight-columns h3 {
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.taste-card {
  display: block;
  width: 100%;
  min-height: 82px;
  margin-bottom: 10px;
  padding: 16px;
  border-radius: 8px;
  font-weight: 800;
}

.taste-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.pairing-card {
  align-self: stretch;
  padding: 18px;
}

.pairing-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 24px;
}

.pairing-card p:not(.eyebrow) {
  font-size: 16px;
}

.makers {
  background: var(--forest);
  color: var(--bone);
}

.makers .section-head p,
.makers .maker-card p {
  color: rgba(244, 239, 229, 0.72);
}

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

.maker-card {
  overflow: hidden;
  color: var(--bone);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(244, 239, 229, 0.14);
}

.maker-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.maker-card div {
  padding: 24px;
}

.booking {
  background: var(--bone-2);
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: 24px;
  align-items: start;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
}

.field {
  display: grid;
  gap: 9px;
}

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

.field span {
  color: var(--cacao);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0 13px;
  color: var(--ink);
  background: #fffaf1;
}

.date-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.date-pill {
  min-height: 70px;
  border: 1px solid var(--line);
  background: #fffaf1;
  cursor: pointer;
}

.date-pill strong,
.date-pill small {
  display: block;
}

.date-pill strong {
  margin: 4px 0;
  font-size: 23px;
}

.date-pill small {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.date-pill.selected {
  color: var(--bone);
  border-color: var(--forest);
  background: var(--forest);
}

.date-pill.selected small {
  color: rgba(244, 239, 229, 0.7);
}

.counter {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  min-height: 48px;
  border: 1px solid var(--line);
  background: #fffaf1;
}

.counter button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
}

.counter strong {
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.summary-card {
  position: sticky;
  top: 92px;
  padding: clamp(22px, 4vw, 34px);
}

.summary-card h3 {
  margin-bottom: 22px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.summary-total {
  margin: 24px 0;
  padding: 20px;
  background: var(--forest);
  color: var(--bone);
}

.summary-total span,
.summary-total small {
  display: block;
}

.summary-total strong {
  display: block;
  margin: 4px 0;
  font-size: 34px;
}

.summary-total small {
  color: rgba(244, 239, 229, 0.64);
}

.btn.full {
  width: 100%;
}

.form-note {
  margin: 14px 0 0;
}

.confirmation {
  min-height: 20px;
  margin: 14px 0 0;
  color: var(--forest);
  font-weight: 700;
}

.faq {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  background: #fffaf1;
}

summary {
  cursor: pointer;
  padding: 20px;
  color: var(--cacao);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.65;
}

.footer {
  padding: 54px 0;
  color: var(--bone);
  background: #102019;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.9fr;
  gap: 34px;
}

.footer p,
.footer a,
.footer span {
  display: block;
  margin-top: 9px;
  color: rgba(244, 239, 229, 0.72);
}

.footer h3 {
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-media {
    grid-template-columns: 1fr;
  }

  .hero-media img:last-child {
    display: none;
  }

  .hero-panel,
  .intro-grid,
  .section-head,
  .pickup-grid,
  .tasting-grid,
  .journey-grid,
  .booking-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-self: stretch;
  }

  .image-band,
  .maker-grid,
  .flight-columns {
    grid-template-columns: 1fr;
  }

  .image-band figure {
    min-height: 340px;
  }

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

  .summary-card {
    position: static;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 104px 18px 34px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(244, 239, 229, 0.18);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .pickup-summary,
  .date-row,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

