:root {
  --ink: #151511;
  --paper: #f6f1e8;
  --paper-strong: #fffaf0;
  --pine: #244c3d;
  --moss: #6d7f4f;
  --amber: #c7812b;
  --sky: #9bc6da;
  --wine: #713338;
  --line: rgba(21, 21, 17, 0.14);
  --shadow: 0 24px 70px rgba(18, 21, 17, 0.22);
  --max: 1160px;
}

* {
  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.5;
}

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

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

button,
input {
  font: inherit;
}

::selection {
  color: var(--paper-strong);
  background: var(--pine);
}

.site-header {
  position: fixed;
  inset: 16px 18px auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  max-width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
  padding: 10px 12px;
  border: 1px solid rgba(255, 250, 240, 0.3);
  border-radius: 8px;
  color: var(--paper-strong);
  background: rgba(21, 21, 17, 0.28);
  backdrop-filter: blur(18px);
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.site-header[data-elevated="true"] {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.92);
  border-color: rgba(21, 21, 17, 0.12);
  box-shadow: 0 16px 45px rgba(17, 20, 16, 0.12);
}

.brand-mark {
  display: inline-flex;
  width: auto;
  min-width: 212px;
  height: 58px;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 7px;
  border-radius: 7px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.92);
  overflow: hidden;
}

.brand-mark img {
  width: 46px;
  height: 46px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center 64%;
  background: #686965;
  flex: 0 0 auto;
}

.brand-word {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.08);
}

.main-nav a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 250, 240, 0.18);
  outline: 0;
}

.site-header[data-elevated="true"] .main-nav {
  border-color: rgba(21, 21, 17, 0.1);
  background: rgba(36, 76, 61, 0.06);
}

.site-header[data-elevated="true"] .main-nav a:hover,
.site-header[data-elevated="true"] .main-nav a:focus-visible {
  background: rgba(36, 76, 61, 0.1);
}

.header-call {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper-strong);
  font-size: 0.95rem;
  font-weight: 800;
}

.icon {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  flex: 0 0 auto;
}

.icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 128px 22px 48px;
  color: var(--paper-strong);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(1.08) contrast(1.04);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 17, 14, 0.82) 0%, rgba(12, 17, 14, 0.5) 42%, rgba(12, 17, 14, 0.08) 100%),
    linear-gradient(180deg, rgba(12, 17, 14, 0.22) 0%, rgba(12, 17, 14, 0.04) 44%, rgba(12, 17, 14, 0.58) 100%);
}

.hero-content {
  width: min(var(--max), 100%);
  max-width: var(--max);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c98e;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

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

h1 {
  max-width: 9ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 13vw, 10.5rem);
  font-weight: 500;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 5rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.hero-copy {
  max-width: 640px;
  margin: 20px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: rgba(255, 250, 240, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: 0;
}

.button.primary {
  color: var(--paper-strong);
  background: var(--pine);
  box-shadow: 0 18px 40px rgba(15, 42, 31, 0.26);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #1b3f31;
}

.button.ghost {
  color: var(--paper-strong);
  border-color: rgba(255, 250, 240, 0.42);
  background: rgba(255, 250, 240, 0.1);
  backdrop-filter: blur(12px);
}

.button.secondary {
  color: var(--paper-strong);
  background: var(--wine);
}

.button.compact {
  min-height: 46px;
}

.button.full {
  width: 100%;
}

.hero-status {
  position: absolute;
  right: max(22px, calc((100vw - var(--max)) / 2));
  bottom: 46px;
  display: inline-flex;
  max-width: min(320px, calc(100% - 44px));
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 8px;
  color: var(--paper-strong);
  background: rgba(21, 21, 17, 0.42);
  backdrop-filter: blur(16px);
  font-size: 0.95rem;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #7bdc95;
  box-shadow: 0 0 0 7px rgba(123, 220, 149, 0.2);
}

.status-dot.closed {
  background: #e8a167;
  box-shadow: 0 0 0 7px rgba(232, 161, 103, 0.2);
}

.arrival-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: var(--max);
  margin: -26px auto 0;
  position: relative;
  z-index: 3;
  border: 1px solid rgba(21, 21, 17, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper-strong);
  box-shadow: 0 18px 55px rgba(20, 20, 16, 0.12);
}

.strip-item {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
}

.strip-item:last-child {
  border-right: 0;
}

.strip-item span {
  display: block;
  margin-bottom: 5px;
  color: rgba(21, 21, 17, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
}

.strip-item strong {
  display: block;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.section {
  padding: 104px 22px;
}

.intro-band {
  background: var(--paper);
}

.section-heading,
.route-heading,
.split-section,
.hours-grid,
.route-layout,
.closing-inner {
  max-width: var(--max);
  margin-inline: auto;
}

.section-heading {
  display: grid;
  gap: 6px;
  max-width: 760px;
  margin-bottom: 34px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: var(--max);
  margin-inline: auto;
}

.story-card {
  display: grid;
  grid-template-rows: 330px 1fr;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 17, 0.12);
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 12px 32px rgba(20, 20, 16, 0.08);
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.story-card span,
.route-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.story-card p {
  margin: 14px 0 0;
  color: rgba(21, 21, 17, 0.72);
}

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

.feature-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(21, 21, 17, 0.72);
  font-size: 1.08rem;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.feature-list span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(21, 21, 17, 0.12);
  border-radius: 8px;
  color: var(--pine);
  background: var(--paper-strong);
  font-weight: 900;
}

.media-stack {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

.media-stack img,
.media-stack video {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-stack video {
  margin-top: 54px;
  background: #111;
}

.hours-section {
  background: #e9eef0;
}

.hours-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: start;
}

.hours-note {
  min-height: 230px;
  padding: 28px;
  border-radius: 8px;
  color: var(--paper-strong);
  background: var(--pine);
}

.hours-note strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.02;
}

.hours-note p {
  margin: 18px 0 0;
  color: rgba(255, 250, 240, 0.82);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-strong);
  box-shadow: 0 12px 30px rgba(17, 20, 16, 0.08);
}

.hours-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.hours-table tr {
  border-bottom: 1px solid rgba(21, 21, 17, 0.1);
}

.hours-table tr:last-child {
  border-bottom: 0;
}

.hours-table tr.is-today {
  color: var(--paper-strong);
  background: var(--wine);
}

.hours-table th,
.hours-table td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: middle;
}

.hours-table th {
  width: 34%;
  font-size: 1.02rem;
}

.hours-table td {
  color: rgba(21, 21, 17, 0.72);
  font-weight: 800;
}

.hours-table tr.is-today td {
  color: rgba(255, 250, 240, 0.86);
}

.route-section {
  background: var(--paper-strong);
}

.route-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.route-heading h2 {
  max-width: 720px;
}

.route-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.45fr) minmax(0, 0.55fr);
  gap: 20px;
  align-items: stretch;
}

.route-planner,
.map-frame {
  min-height: 580px;
  border: 1px solid rgba(21, 21, 17, 0.12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(17, 20, 16, 0.12);
}

.route-planner {
  position: relative;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(36, 76, 61, 0.98), rgba(113, 51, 56, 0.96)),
    var(--pine);
  color: var(--paper-strong);
}

.route-line {
  position: absolute;
  inset: 32px 32px auto auto;
  width: 96px;
  height: 170px;
}

.route-point {
  position: absolute;
  right: 0;
  display: block;
  width: 18px;
  height: 18px;
  border: 3px solid var(--paper-strong);
  border-radius: 999px;
  background: var(--amber);
}

.route-point.start {
  top: 0;
}

.route-point.finish {
  bottom: 0;
  background: var(--sky);
  box-shadow: 0 0 0 10px rgba(155, 198, 218, 0.24);
  animation: pulse 1.9s ease-in-out infinite;
}

.route-path {
  position: absolute;
  top: 20px;
  right: 8px;
  bottom: 22px;
  width: 56px;
  border-right: 3px dashed rgba(255, 250, 240, 0.78);
  border-bottom: 3px dashed rgba(255, 250, 240, 0.78);
  border-radius: 0 0 42px 0;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(155, 198, 218, 0.18);
  }
  50% {
    box-shadow: 0 0 0 17px rgba(155, 198, 218, 0.02);
  }
}

.route-copy {
  max-width: 330px;
  padding-right: 84px;
}

.route-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
}

.route-copy p {
  margin: 18px 0 0;
  color: rgba(255, 250, 240, 0.78);
}

.origin-picker {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0 18px;
}

.origin-button {
  min-height: 42px;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 8px;
  color: var(--paper-strong);
  background: rgba(255, 250, 240, 0.08);
  cursor: pointer;
  font-weight: 900;
}

.origin-button:hover,
.origin-button:focus-visible,
.origin-button.active {
  color: var(--ink);
  background: var(--paper-strong);
  outline: 0;
}

.route-planner address {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 250, 240, 0.24);
  color: rgba(255, 250, 240, 0.82);
  font-style: normal;
}

.route-planner address strong {
  display: block;
  color: var(--paper-strong);
}

.route-planner address a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.map-frame {
  position: relative;
  background:
    linear-gradient(115deg, rgba(155, 198, 218, 0.22), transparent 42%),
    linear-gradient(24deg, rgba(109, 127, 79, 0.2), transparent 46%),
    repeating-linear-gradient(0deg, rgba(36, 76, 61, 0.07) 0 1px, transparent 1px 42px),
    repeating-linear-gradient(90deg, rgba(36, 76, 61, 0.07) 0 1px, transparent 1px 42px),
    #dbe5df;
}

.map-frame iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 580px;
  border: 0;
  opacity: 0.78;
  filter: saturate(0.9) contrast(0.96);
}

.map-guide {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.map-road {
  position: absolute;
  left: 11%;
  bottom: 14%;
  width: 70%;
  height: 58%;
  border-top: 7px solid rgba(199, 129, 43, 0.78);
  border-right: 7px solid rgba(199, 129, 43, 0.78);
  border-radius: 0 120px 0 0;
  transform: rotate(-11deg);
  transform-origin: left bottom;
  box-shadow: 0 0 0 5px rgba(255, 250, 240, 0.72);
}

.map-road::after {
  content: "";
  position: absolute;
  inset: -7px -7px auto auto;
  width: 22px;
  height: 22px;
  border-top: 7px solid rgba(199, 129, 43, 0.78);
  border-right: 7px solid rgba(199, 129, 43, 0.78);
  transform: rotate(45deg);
}

.map-label,
.map-pin {
  position: absolute;
  border-radius: 8px;
}

.map-label {
  padding: 8px 10px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 12px 28px rgba(17, 20, 16, 0.12);
  font-size: 0.86rem;
  font-weight: 900;
}

.map-label.start {
  left: 9%;
  bottom: 11%;
}

.map-label.village {
  left: 43%;
  top: 47%;
  color: var(--paper-strong);
  background: rgba(36, 76, 61, 0.92);
}

.map-label.finish {
  right: 7%;
  top: 17%;
}

.map-pin {
  right: 13%;
  top: 29%;
  width: 26px;
  height: 26px;
  border: 5px solid var(--paper-strong);
  background: var(--wine);
  box-shadow: 0 0 0 12px rgba(113, 51, 56, 0.18), 0 20px 45px rgba(17, 20, 16, 0.24);
  animation: mapPulse 1.9s ease-in-out infinite;
}

@keyframes mapPulse {
  0%,
  100% {
    box-shadow: 0 0 0 9px rgba(113, 51, 56, 0.2), 0 20px 45px rgba(17, 20, 16, 0.24);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(113, 51, 56, 0.04), 0 20px 45px rgba(17, 20, 16, 0.24);
  }
}

.map-caption {
  position: absolute;
  z-index: 3;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 13px 15px;
  border: 1px solid rgba(21, 21, 17, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.93);
  box-shadow: 0 10px 28px rgba(17, 20, 16, 0.12);
}

.map-caption span {
  display: block;
  color: rgba(21, 21, 17, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-caption strong {
  display: block;
}

.closing-cta {
  padding: 64px 22px;
  color: var(--paper-strong);
  background: var(--ink);
}

.closing-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.closing-inner img {
  width: 96px;
  height: 96px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--paper-strong);
}

.closing-inner h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.closing-inner p {
  margin: 10px 0 0;
  color: rgba(255, 250, 240, 0.72);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  padding: 24px 22px;
  color: rgba(255, 250, 240, 0.78);
  background: var(--ink);
  border-top: 1px solid rgba(255, 250, 240, 0.14);
  font-size: 0.95rem;
}

.site-footer span {
  color: var(--paper-strong);
  font-weight: 900;
}

.site-footer a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .main-nav {
    justify-self: end;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-status {
    position: static;
    width: min(100%, 430px);
    margin: 24px auto 0;
  }

  .arrival-strip,
  .story-grid,
  .hours-grid,
  .route-layout,
  .split-section {
    grid-template-columns: 1fr;
  }

  .arrival-strip {
    margin-inline: 18px;
  }

  .strip-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .strip-item:last-child {
    border-bottom: 0;
  }

  .story-card {
    grid-template-rows: 300px 1fr;
  }

  .media-stack img,
  .media-stack video {
    height: 420px;
  }

  .route-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    inset: 10px 10px auto;
    max-width: calc(100% - 20px);
    gap: 10px;
    padding: 8px;
  }

  .brand-mark {
    width: 118px;
    min-width: 118px;
    height: 46px;
    gap: 5px;
    padding: 5px 6px;
  }

  .brand-mark img {
    width: 34px;
    height: 34px;
  }

  .brand-word {
    max-width: 66px;
    font-size: 0.76rem;
    line-height: 1.02;
    white-space: normal;
  }

  .main-nav {
    justify-content: end;
    gap: 2px;
    overflow-x: auto;
  }

  .main-nav a {
    min-height: 32px;
    padding: 0 8px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .hero {
    min-height: 82svh;
    padding: 112px 18px 36px;
  }

  h1 {
    font-size: clamp(3.5rem, 21vw, 6rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .section {
    padding: 74px 18px;
  }

  .story-card {
    grid-template-rows: 280px 1fr;
  }

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

  .media-stack img,
  .media-stack video {
    height: 360px;
  }

  .media-stack video {
    margin-top: 0;
  }

  .hours-table th,
  .hours-table td {
    display: block;
    width: 100%;
    padding: 12px 16px;
  }

  .hours-table th {
    padding-bottom: 2px;
  }

  .hours-table td {
    padding-top: 2px;
  }

  .route-planner,
  .map-frame,
  .map-frame iframe {
    min-height: 520px;
  }

  .route-planner {
    padding: 24px;
  }

  .route-copy {
    padding-right: 62px;
  }

  .route-line {
    inset: 24px 24px auto auto;
    width: 76px;
  }

  .origin-picker {
    grid-template-columns: 1fr;
  }

  .closing-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .closing-inner img {
    width: 76px;
    height: 76px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
