:root {
  --ink: #111319;
  --muted: #626875;
  --paper: #f5f2ea;
  --panel: #ffffff;
  --line: #ded8cc;
  --red: #e22435;
  --blue: #0f6ccf;
  --gold: #ffc947;
  --asphalt: #24272e;
  --radius: 8px;
  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;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 5vw, 56px);
  background: rgba(245, 242, 234, 0.88);
  border-bottom: 1px solid rgba(17, 19, 25, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 18px;
  background:
    linear-gradient(135deg, transparent 0 18%, var(--asphalt) 18% 43%, transparent 43%),
    linear-gradient(135deg, transparent 22%, var(--red) 22% 68%, transparent 68%);
  border: 1px solid rgba(17, 19, 25, 0.12);
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

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

.header-cta,
.button,
.lead-form button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 800;
}

.header-cta {
  border: 0;
  padding: 0 16px;
  color: #fff;
  background: var(--ink);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
  background: var(--asphalt);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 25, 0.9), rgba(17, 19, 25, 0.42), rgba(17, 19, 25, 0.16)),
    radial-gradient(circle at 80% 20%, rgba(255, 201, 71, 0.3), transparent 26%);
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 110px clamp(18px, 5vw, 56px) 42px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 8vw, 96px);
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
  line-height: 1.45;
}

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

.button {
  border: 0;
  padding: 0 20px;
  cursor: pointer;
}

.primary {
  color: #fff;
  background: var(--red);
}

.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  margin: 34px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stats div {
  padding: 18px 18px 0 0;
}

.hero-stats dt {
  font-size: 28px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.quick-book a,
.quick-book button {
  min-height: 132px;
  border: 0;
  padding: 26px clamp(18px, 4vw, 44px);
  color: inherit;
  background: var(--panel);
  text-align: left;
  cursor: pointer;
}

.quick-book strong,
.quick-book span {
  display: block;
}

.quick-book strong {
  font-size: 20px;
}

.quick-book span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.35;
}

.section {
  padding: clamp(56px, 8vw, 108px) clamp(18px, 5vw, 56px);
}

.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: start;
}

.section h2 {
  max-width: 720px;
  font-size: clamp(38px, 6vw, 70px);
}

.section p {
  max-width: 580px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

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

.program-grid article,
.proof-grid article,
.lead-form,
.map-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.program-grid article {
  min-height: 250px;
  padding: 22px;
}

.program-tag {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--red);
  background: #fff1f2;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.program-grid h3 {
  margin: 48px 0 10px;
  font-size: 25px;
}

.program-grid p {
  margin: 0;
  font-size: 15px;
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  background: #fff;
}

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

.proof-grid article {
  min-height: 164px;
  padding: 20px;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  font-size: 19px;
}

.proof-grid span {
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.45;
}

.event-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: clamp(24px, 5vw, 68px);
  color: #fff;
  background: var(--ink);
}

.event-band .eyebrow {
  color: var(--gold);
}

.event-band p {
  color: rgba(255, 255, 255, 0.74);
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  color: var(--ink);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.lead-form button {
  border: 0;
  color: #fff;
  background: var(--red);
  font: inherit;
  cursor: pointer;
}

.checklist {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 88px);
}

.checklist ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 18px;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 88px);
  background: #fff;
}

.about-hero {
  padding: clamp(84px, 12vw, 150px) clamp(18px, 5vw, 56px) clamp(56px, 8vw, 92px);
  color: #fff;
  background:
    linear-gradient(120deg, rgba(17, 19, 25, 0.94), rgba(36, 39, 46, 0.86)),
    var(--asphalt);
}

.about-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.96;
}

.about-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.5;
}

.about-proof {
  background: #fff;
}

.about-checklist {
  background: var(--paper);
}

address {
  margin: 24px 0;
  color: var(--muted);
  font-style: normal;
  font-size: 20px;
  line-height: 1.4;
}

.contact-row a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.map-panel {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(15, 108, 207, 0.1) 0 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 108, 207, 0.1) 0 1px, transparent 1px),
    #eef4f1;
  background-size: 38px 38px;
}

.map-road {
  position: absolute;
  height: 58px;
  background: #fff;
  border: 1px solid #c9d2d0;
  box-shadow: inset 0 0 0 5px #e0e5e3;
}

.road-one {
  width: 120%;
  left: -10%;
  top: 42%;
  transform: rotate(-11deg);
}

.road-two {
  width: 92%;
  left: 26%;
  top: 30%;
  transform: rotate(48deg);
}

.pin {
  position: absolute;
  left: 48%;
  top: 45%;
  width: 26px;
  height: 26px;
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  transform: rotate(-45deg);
  box-shadow: 0 10px 28px rgba(226, 36, 53, 0.35);
}

.map-panel span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 850;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 56px);
  color: #fff;
  background: var(--ink);
}

footer a {
  color: var(--gold);
  font-weight: 850;
}

.booking-modal[hidden],
.booking-step,
.booking-summary[hidden] {
  display: none;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 18px;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 19, 25, 0.68);
  backdrop-filter: blur(8px);
}

.booking-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 34px);
  background: var(--panel);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.booking-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.booking-top h2 {
  margin: 0;
  max-width: 560px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 0.98;
}

.icon-button {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.booking-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.booking-steps li {
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.booking-steps li.is-active {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.booking-form,
.booking-step.is-active {
  display: grid;
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.booking-form textarea {
  min-height: 90px;
  padding-top: 12px;
  resize: vertical;
}

.option-card {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.option-card input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
}

.option-card strong,
.option-card small {
  display: block;
}

.option-card strong {
  color: var(--ink);
  font-size: 18px;
}

.option-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.booking-summary {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff8e3;
}

.booking-summary h3 {
  margin: 0;
  font-size: 28px;
}

.booking-summary p {
  margin: 0;
  color: var(--muted);
}

.booking-summary dl {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 8px 14px;
  margin: 0;
}

.booking-summary dt {
  color: var(--muted);
  font-weight: 800;
}

.booking-summary dd {
  margin: 0;
  font-weight: 800;
}

.booking-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
}

.dark {
  color: var(--ink);
  border: 1px solid var(--line);
  background: #fff;
}

.booking-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

@media (max-width: 820px) {
  .site-header {
    align-items: center;
    gap: 12px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    min-height: 40px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(17, 19, 25, 0.94), rgba(17, 19, 25, 0.48), rgba(17, 19, 25, 0.18)),
      radial-gradient(circle at 70% 20%, rgba(255, 201, 71, 0.22), transparent 28%);
  }

  .hero-media img {
    object-position: 58% center;
  }

  .hero-content {
    padding-top: 18vh;
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(36px, 10.8vw, 50px);
  }

  .hero-copy {
    font-size: 16px;
  }

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

  .hero-stats,
  .quick-book,
  .split,
  .program-grid,
  .proof,
  .proof-grid,
  .event-band,
  .checklist,
  .visit {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    padding-right: 10px;
  }

  .hero-stats dt {
    font-size: 22px;
  }

  .quick-book a {
    min-height: 112px;
  }

  .quick-book button {
    min-height: 112px;
  }

  .booking-panel {
    max-height: 92vh;
  }

  .booking-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-actions {
    flex-direction: column-reverse;
  }

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

  .program-grid article {
    min-height: 180px;
  }

  .program-grid h3 {
    margin-top: 28px;
  }

  footer {
    flex-direction: column;
  }
}
