:root {
  --cream: #fffbf3;
  --cream-deep: #f4e9d5;
  --paper: #f8efd9;
  --orange: #f75216;
  --orange-dark: #ca3b0d;
  --green: #366255;
  --green-dark: #203d35;
  --denim: #233f5f;
  --rose: #c85d5a;
  --ink: #363639;
  --muted: #706a62;
  --white: #fffefa;
  --yellow: #ffeb66;
  --line: rgba(54, 54, 57, 0.16);
  --line-strong: rgba(54, 54, 57, 0.28);
  --shadow: 0 24px 60px rgba(54, 54, 57, 0.14);
  --warm-shadow: 0 26px 70px rgba(83, 51, 31, 0.18);
  --serif: "DM Serif Display", Georgia, serif;
  --soft-serif: "Alice", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(247, 82, 22, 0.09), transparent 24rem),
    radial-gradient(circle at 82% 6%, rgba(54, 98, 85, 0.12), transparent 22rem),
    repeating-linear-gradient(0deg, rgba(54, 54, 57, 0.018) 0 1px, transparent 1px 5px),
    var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(247, 82, 22, 0.72);
  outline-offset: 4px;
}

button,
input,
textarea {
  font: inherit;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

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

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--ink);
  color: var(--cream);
  border-radius: 6px;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(1160px, calc(100% - 28px));
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 10px 8px 14px;
  color: var(--cream);
  border: 1px solid rgba(255, 251, 243, 0.28);
  border-radius: 8px;
  background: rgba(32, 61, 53, 0.46);
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 251, 243, 0.16);
  transform: translateX(-50%);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 251, 243, 0.98), rgba(248, 239, 217, 0.96)),
    var(--cream);
  border-color: rgba(54, 54, 57, 0.12);
  box-shadow: 0 18px 40px rgba(54, 54, 57, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 0 2px rgba(255, 251, 243, 0.6);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a:hover {
  background: rgba(247, 82, 22, 0.14);
}

.site-nav .nav-cta {
  margin-left: 4px;
  color: var(--cream);
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(247, 82, 22, 0.24);
}

.site-nav .nav-cta:hover {
  background: var(--orange-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: var(--cream);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: min(780px, 92svh);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  isolation: isolate;
}

.hero picture,
.hero picture img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture img {
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(32, 61, 53, 0.92), rgba(54, 54, 57, 0.46) 48%, rgba(247, 82, 22, 0.14)),
    linear-gradient(0deg, rgba(32, 61, 53, 0.92), rgba(32, 61, 53, 0.04) 62%),
    radial-gradient(circle at 18% 70%, rgba(255, 235, 102, 0.12), transparent 23rem);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    repeating-linear-gradient(90deg, rgba(255, 251, 243, 0.16) 0 1px, transparent 1px 10px),
    repeating-linear-gradient(0deg, rgba(255, 251, 243, 0.08) 0 1px, transparent 1px 7px);
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 148px 0 88px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.96;
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  text-wrap: balance;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  font-size: clamp(4rem, 12.4vw, 9.7rem);
}

h2 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 6.4vw, 5.8rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
  line-height: 1.18;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 20px;
  color: rgba(255, 251, 243, 0.94);
  font-family: var(--soft-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.72rem);
  line-height: 1.35;
}

.hero-ticket {
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.hero-ticket span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  color: rgba(255, 251, 243, 0.88);
  border: 1px solid rgba(255, 251, 243, 0.24);
  border-radius: 999px;
  background: rgba(32, 61, 53, 0.28);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.hero-ticket span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--yellow);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button.primary {
  color: var(--cream);
  background: var(--orange);
  box-shadow: 0 16px 30px rgba(247, 82, 22, 0.26);
}

.button.primary:hover {
  background: var(--orange-dark);
}

.button.secondary {
  color: var(--cream);
  border-color: rgba(255, 251, 243, 0.72);
  background: rgba(255, 251, 243, 0.06);
  backdrop-filter: blur(8px);
}

.button.secondary:hover {
  color: var(--green-dark);
  background: var(--cream);
}

.button.secondary.dark {
  color: var(--green-dark);
  border-color: rgba(54, 54, 57, 0.22);
}

.button.secondary.dark:hover {
  color: var(--cream);
  background: var(--green-dark);
}

.intro-band {
  position: relative;
  z-index: 2;
  margin-top: -26px;
}

.intro-grid {
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 251, 243, 0.96), rgba(248, 239, 217, 0.88)),
    var(--cream);
  border: 1px solid rgba(54, 54, 57, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(83, 51, 31, 0.1);
}

.intro-grid p {
  min-height: 82px;
  margin: 0;
  padding: 16px 22px;
  display: grid;
  gap: 4px;
  align-content: center;
  border-right: 1px solid rgba(54, 54, 57, 0.1);
  background: rgba(255, 254, 250, 0.22);
}

.intro-grid p:last-child {
  border-right: 0;
}

.intro-grid strong {
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--green-dark);
}

.intro-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: clamp(56px, 7vw, 92px) 0;
  position: relative;
}

section[id] {
  scroll-margin-top: 112px;
}

.section-inner,
.closing-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.text-flow p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.06rem;
}

.about {
  background:
    linear-gradient(90deg, rgba(255, 251, 243, 0), rgba(255, 244, 210, 0.72) 50%, rgba(255, 251, 243, 0)),
    transparent;
}

.text-flow p:not(.section-kicker) {
  margin-bottom: 18px;
}

.text-flow p:last-child {
  margin-bottom: 0;
}

.image-feature {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(54, 54, 57, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--warm-shadow);
  transform: rotate(1.2deg);
}

.image-feature img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: none;
}

.image-feature figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.82rem;
}

.selection {
  color: var(--cream);
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 235, 102, 0.12), transparent 18rem),
    linear-gradient(135deg, #1d3831, var(--green-dark) 58%, #1c302c);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading.compact {
  display: block;
}

.selection .section-heading {
  display: block;
  max-width: 820px;
  margin-bottom: 42px;
}

.selection .section-heading h2 {
  font-size: clamp(2.7rem, 5.4vw, 4.8rem);
  line-height: 1;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.reason-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(255, 251, 243, 0.13), rgba(255, 251, 243, 0.055)),
    rgba(255, 251, 243, 0.08);
  border: 1px solid rgba(255, 251, 243, 0.22);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 251, 243, 0.12);
}

.reason-number {
  color: var(--yellow);
  font-weight: 800;
}

.reason-card h3 {
  margin-top: 54px;
  font-family: var(--serif);
  font-size: 1.72rem;
  font-weight: 400;
  line-height: 1.02;
}

.reason-card p {
  margin-bottom: 0;
  color: rgba(255, 251, 243, 0.78);
  font-size: 0.96rem;
}

.full-bleed-photo {
  position: relative;
  min-height: clamp(420px, 58vw, 660px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
}

.full-bleed-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-bleed-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 61, 53, 0.78), rgba(32, 61, 53, 0.08) 62%),
    linear-gradient(0deg, rgba(32, 61, 53, 0.7), rgba(32, 61, 53, 0.02) 58%),
    repeating-linear-gradient(90deg, rgba(255, 251, 243, 0.07) 0 1px, transparent 1px 9px);
}

.photo-callout {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100% - 36px));
  margin: 0 auto 0 max(18px, calc((100vw - 1160px) / 2));
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255, 251, 243, 0.18);
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(135deg, rgba(32, 61, 53, 0.9), rgba(35, 63, 95, 0.72)),
    rgba(32, 61, 53, 0.78);
  backdrop-filter: blur(10px);
  box-shadow: 0 -18px 60px rgba(0, 0, 0, 0.18);
}

.photo-callout p {
  margin-bottom: 6px;
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
}

.photo-callout strong {
  display: block;
  max-width: 430px;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.4vw, 3.1rem);
  font-weight: 400;
  line-height: 1.08;
}

.gallery-section {
  background:
    radial-gradient(circle at 88% 14%, rgba(200, 93, 90, 0.14), transparent 19rem),
    linear-gradient(180deg, rgba(244, 233, 213, 0.78), rgba(255, 251, 243, 0)),
    var(--cream);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 10px 0 0;
}

.gallery button,
.gallery-card {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 9px;
  overflow: hidden;
  border: 1px solid rgba(54, 54, 57, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(83, 51, 31, 0.13);
  cursor: zoom-in;
  transition: box-shadow 160ms ease, border-color 160ms ease;
}

.gallery-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 3 / 4;
  padding: 22px;
  color: var(--cream);
  background:
    linear-gradient(160deg, rgba(32, 61, 53, 0.94), rgba(35, 63, 95, 0.84)),
    var(--green-dark);
  cursor: pointer;
}

.gallery button::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 6px;
  background: rgba(54, 54, 57, 0);
  transition: background 160ms ease;
}

.gallery button:hover::after {
  background: rgba(54, 54, 57, 0.1);
}

.gallery button:hover,
.gallery-card:hover {
  box-shadow: 0 22px 48px rgba(83, 51, 31, 0.2);
  border-color: rgba(247, 82, 22, 0.24);
}

.gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 6px;
}

.gallery-card-kicker {
  margin-bottom: auto;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-card strong {
  max-width: 210px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2.05rem);
  font-weight: 400;
  line-height: 1.02;
}

.gallery-card-link {
  margin-top: 18px;
  color: rgba(255, 251, 243, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.seo-copy {
  background:
    linear-gradient(135deg, rgba(255, 254, 250, 0.98), rgba(248, 239, 217, 0.84)),
    var(--white);
  border-top: 1px solid var(--line);
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.split-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5.2vw, 4.8rem);
}

.press {
  background:
    radial-gradient(circle at 86% 24%, rgba(247, 82, 22, 0.1), transparent 18rem),
    var(--cream);
  border-top: 1px solid var(--line);
}

.press .section-heading {
  margin-bottom: 28px;
}

.press h2 {
  max-width: 620px;
  font-size: clamp(2.35rem, 4.2vw, 3.7rem);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.press-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 254, 250, 0.96), rgba(248, 239, 217, 0.74)),
    var(--white);
  box-shadow: 0 18px 42px rgba(83, 51, 31, 0.1);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.press-card:hover {
  transform: translateY(-2px);
  border-color: rgba(247, 82, 22, 0.24);
  box-shadow: 0 24px 52px rgba(83, 51, 31, 0.15);
}

.press-card span {
  margin-bottom: 24px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.press-card h3 {
  max-width: 520px;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 1.95rem);
  font-weight: 400;
  line-height: 1.08;
}

.press-card p {
  max-width: 620px;
  margin: auto 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.services {
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 235, 102, 0.18), transparent 18rem),
    var(--cream);
  border-top: 1px solid var(--line);
}

.services,
.practical {
  padding-top: clamp(52px, 6vw, 82px);
}

.section-intro {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card {
  position: relative;
  min-height: 270px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 254, 250, 0.96), rgba(248, 239, 217, 0.72)),
    var(--white);
  box-shadow: 0 18px 42px rgba(83, 51, 31, 0.1);
}

.service-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 560px;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 400;
  line-height: 1.02;
}

.service-card p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.service-card.gift {
  background:
    linear-gradient(135deg, #1e3931, #243f5a),
    var(--green-dark);
  color: var(--cream);
}

.service-card.gift span {
  color: var(--yellow);
}

.service-card.gift p {
  color: rgba(255, 251, 243, 0.78);
}

.service-card.student {
  background:
    linear-gradient(135deg, #fff4d2, #ffeaae),
    #fff4d2;
}

.service-card.student span {
  color: var(--green);
}

.practical {
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.96), rgba(255, 251, 243, 0.88)),
    var(--white);
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.info-panel {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 251, 243, 0.96), rgba(244, 233, 213, 0.68)),
    var(--cream);
  box-shadow: 0 16px 34px rgba(83, 51, 31, 0.08);
}

.info-panel.accent {
  color: var(--cream);
  background:
    linear-gradient(135deg, var(--orange), #d74720),
    var(--orange);
  border-color: var(--orange);
}

.info-panel h3 {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
}

.info-panel p {
  color: var(--muted);
}

.info-panel a[href^="mailto:"],
.info-panel a[href^="tel:"] {
  overflow-wrap: break-word;
}

.info-panel a[href^="mailto:"] {
  font-size: 0.94rem;
}

.info-panel.accent p,
.info-panel.accent .hours-list {
  color: var(--cream);
}

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.info-panel.accent .text-link {
  color: var(--cream);
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.hours-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 251, 243, 0.26);
}

.hours-list li:last-child {
  border-bottom: 0;
}

.route-panel {
  min-height: 240px;
  margin-top: 18px;
  padding: clamp(24px, 4vw, 38px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  color: var(--cream);
  border: 1px solid rgba(255, 251, 243, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(32, 61, 53, 0.92), rgba(35, 63, 95, 0.84)),
    var(--green-dark);
  box-shadow: var(--warm-shadow);
}

.route-panel h3 {
  max-width: 620px;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.02;
}

.route-panel p:not(.section-kicker) {
  max-width: 600px;
  margin: 0;
  color: rgba(255, 251, 243, 0.78);
  font-size: 1.04rem;
}

.route-panel .section-kicker {
  color: var(--yellow);
}

.route-panel .button {
  flex: 0 0 auto;
}

.map-wrap {
  height: clamp(260px, 36vw, 420px);
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid rgba(54, 54, 57, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(83, 51, 31, 0.1);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.faq {
  background:
    radial-gradient(circle at 78% 22%, rgba(54, 98, 85, 0.12), transparent 18rem),
    var(--cream);
}

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

.faq details {
  border: 1px solid rgba(54, 54, 57, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 254, 250, 0.94), rgba(248, 239, 217, 0.5)),
    var(--white);
  box-shadow: 0 10px 26px rgba(83, 51, 31, 0.07);
}

.faq summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.faq summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 1.4rem;
  line-height: 1;
}

.faq details[open] summary::after {
  content: "-";
}

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

.closing {
  padding: clamp(50px, 6vw, 78px) 0;
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(32, 61, 53, 0.96), rgba(35, 63, 95, 0.92)),
    var(--green);
}

.closing-inner {
  position: relative;
}

.closing-inner::after {
  content: "JT";
  position: absolute;
  right: 0;
  top: 50%;
  color: rgba(255, 251, 243, 0.1);
  font-family: var(--serif);
  font-size: clamp(5rem, 15vw, 12rem);
  line-height: 1;
  transform: translateY(-50%);
  pointer-events: none;
}

.closing h2 {
  max-width: 660px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.4vw, 3.9rem);
  line-height: 1.02;
}

.closing p:not(.section-kicker) {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 251, 243, 0.78);
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px max(18px, calc((100vw - 1160px) / 2));
  color: var(--cream);
  background:
    linear-gradient(135deg, #2e2e31, #1f2f2b),
    var(--ink);
}

.site-footer > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer img {
  border-radius: 50%;
  background: var(--cream);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.site-footer a {
  color: rgba(255, 251, 243, 0.78);
}

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

.lightbox {
  width: min(920px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.lightbox[open] {
  overflow: hidden;
}

.lightbox::backdrop {
  background: rgba(32, 32, 33, 0.82);
}

.lightbox img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  object-fit: contain;
  border-radius: 8px;
  background: var(--ink);
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--cream);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 960px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    padding: 10px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--cream);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-header.is-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    justify-content: center;
    min-height: 48px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .intro-grid,
  .two-columns,
  .split-copy,
  .reason-grid,
  .press-grid,
  .service-grid,
  .practical-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reason-card,
  .info-panel {
    min-height: 230px;
  }

}

@media (max-width: 680px) {
  .site-header {
    min-height: 62px;
  }

  .brand span {
    max-width: 138px;
    font-size: 0.86rem;
    line-height: 1.05;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    width: min(100% - 28px, 1160px);
    padding-bottom: 70px;
  }

  h1 {
    font-size: clamp(3.35rem, 18vw, 5.4rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.8rem);
  }

  .hero-actions,
  .closing .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-ticket {
    display: flex;
    width: 100%;
    gap: 8px;
  }

  .hero-ticket span {
    flex: 1 1 148px;
    justify-content: center;
    min-height: 36px;
    padding: 0 10px;
    border: 1px solid rgba(255, 251, 243, 0.24);
    white-space: normal;
    text-align: center;
  }

  .intro-grid,
  .two-columns,
  .split-copy,
  .reason-grid,
  .press-grid,
  .service-grid,
  .practical-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid p {
    min-height: 76px;
    border-right: 0;
    border-bottom: 1px solid rgba(54, 54, 57, 0.1);
  }

  .intro-grid p:last-child {
    border-bottom: 0;
  }

  .section-heading {
    display: block;
  }

  .section {
    padding: 72px 0;
  }

  section[id] {
    scroll-margin-top: 92px;
  }

  .reason-card,
  .info-panel {
    min-height: 0;
  }

  .info-panel p {
    font-size: 0.98rem;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .gallery button {
    padding: 6px;
  }

  .gallery button::after {
    inset: 6px;
  }

  .image-feature {
    transform: none;
  }

  .closing-inner::after {
    display: none;
  }

  .route-panel {
    display: grid;
    min-height: 0;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
  }
}

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