:root {
  color-scheme: light;
  --ink: #172026;
  --muted: #5a6872;
  --line: #d9e0e4;
  --paper: #f7f4ef;
  --white: #ffffff;
  --brick: #9b3326;
  --brick-dark: #682219;
  --teal: #006d71;
  --gold: #c59433;
  --shadow: 0 18px 50px rgba(23, 32, 38, 0.14);
  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;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(247, 244, 239, 0.94);
  border-bottom: 1px solid rgba(23, 32, 38, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 7px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

.site-header nav a,
.site-footer nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #1b2328;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 16, 18, 0.78), rgba(12, 16, 18, 0.38) 54%, rgba(12, 16, 18, 0.12)),
    linear-gradient(0deg, rgba(12, 16, 18, 0.78), transparent 46%);
}

.hero-content {
  position: relative;
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0 78px;
  color: var(--white);
}

.notice {
  display: inline-block;
  max-width: 760px;
  margin: 0 0 22px;
  padding: 9px 12px;
  color: #f9f4e8;
  background: rgba(0, 109, 113, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 7px;
  font-weight: 800;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.1rem, 8vw, 6.7rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 7px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--brick);
}

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

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip div {
  min-height: 126px;
  padding: 24px clamp(18px, 4vw, 42px);
  background: var(--white);
}

.trust-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brick-dark);
}

.trust-strip span,
.section p,
.facts dd,
details p {
  color: var(--muted);
  line-height: 1.65;
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

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

h2 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.ticket-card,
.planner,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(23, 32, 38, 0.04);
}

.ticket-card {
  min-height: 260px;
  padding: 24px;
}

.ticket-card.highlighted {
  border-color: rgba(155, 51, 38, 0.45);
  box-shadow: var(--shadow);
}

.card-label {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--brick);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ticket-card h3,
.planner h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.ticket-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--teal);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.facts {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

.facts div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.facts dt {
  font-weight: 900;
}

.facts dd {
  margin: 0;
}

.planner {
  position: sticky;
  top: 92px;
  padding: 24px;
}

.planner label {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 800;
}

select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: #fbfbf8;
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
  font-weight: 700;
}

.planner-result {
  margin-top: 18px;
  padding: 16px;
  color: var(--ink);
  background: #eef6f5;
  border-left: 4px solid var(--teal);
  border-radius: 6px;
  line-height: 1.55;
}

.compact {
  width: 100%;
  padding: 68px clamp(18px, 5vw, 64px);
  background: #e8efe9;
}

.compact h2,
.compact .eyebrow {
  width: min(1160px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1160px, 100%);
  margin: 24px auto 0;
  background: rgba(0, 109, 113, 0.2);
}

.policy-grid p {
  min-height: 150px;
  margin: 0;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  font-weight: 760;
}

.faq {
  display: grid;
  gap: 12px;
}

details {
  padding: 0 22px;
}

summary {
  cursor: pointer;
  padding: 20px 0;
  font-weight: 900;
}

details p {
  margin-bottom: 20px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.86);
  background: #172026;
}

.site-footer p {
  max-width: 680px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip,
  .ticket-grid,
  .policy-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .planner {
    position: static;
  }

  .policy-grid p {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .site-header nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.92rem;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding-bottom: 46px;
  }

  .button {
    width: 100%;
  }

  .facts div,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .facts div {
    gap: 6px;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
  }
}
