:root {
  --ink: #1f2b2d;
  --muted: #5f6b6d;
  --cream: #fbf7ef;
  --sand: #efe2cc;
  --wood: #9a6a3a;
  --blue: #5f8ea3;
  --blue-deep: #2f687f;
  --white: #ffffff;
  --line: rgba(31, 43, 45, 0.12);
  --shadow: 0 20px 60px rgba(50, 42, 32, 0.14);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(251, 247, 239, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: 50%;
  font-weight: 900;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.93rem;
}

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

.nav-links a:hover,
.site-footer a:hover {
  color: var(--blue-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  color: var(--white);
  background: var(--blue-deep);
  border: 1px solid var(--blue-deep);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(47, 104, 127, 0.22);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
}

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

.button-small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 0.92rem;
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 72px));
  display: grid;
  align-items: stretch;
  background: var(--sand);
  overflow: hidden;
}

.hero-media {
  min-height: 360px;
}

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

.hero-content {
  width: 100%;
  padding: clamp(28px, 7vw, 72px) clamp(20px, 5vw, 64px);
  background: linear-gradient(180deg, rgba(251, 247, 239, 0.96), rgba(251, 247, 239, 0.88));
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

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

h1 {
  max-width: 12ch;
  font-size: clamp(2.45rem, 8vw, 5.8rem);
}

h2 {
  max-width: 820px;
  font-size: clamp(2rem, 5vw, 4.2rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: #38484b;
  font-size: clamp(1.03rem, 2.1vw, 1.25rem);
}

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

.hero-facts {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
}

.hero-facts div {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 2px 0 0;
  font-weight: 800;
}

.section {
  width: min(100% - 36px, var(--max));
  margin: 0 auto;
  padding: clamp(64px, 10vw, 112px) 0;
}

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

.soft {
  width: 100%;
  max-width: none;
  padding-inline: max(18px, calc((100% - var(--max)) / 2));
  background: #f3eadc;
}

.intro {
  padding-bottom: 48px;
}

.two-column,
.photo-panel,
.split-story,
.host-card {
  display: grid;
  gap: 28px;
}

.two-column p,
.split-story p,
.host-card p,
.photo-panel p {
  margin: 0 0 16px;
  color: var(--muted);
}

.callout {
  align-self: start;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.callout p {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 750;
}

.callout-label {
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-strip {
  display: grid;
  gap: 16px;
  align-items: center;
  margin-top: 36px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cta-strip p {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.feature-grid,
.details-grid,
.review-grid,
.audience-grid,
.timeline {
  display: grid;
  gap: 16px;
}

.feature-grid article,
.details-grid article,
.review-grid article,
.timeline div,
.audience-grid p {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-grid span,
.timeline span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--blue-deep);
  background: #e5f0f3;
  border-radius: 50%;
  font-weight: 900;
}

.feature-grid p,
.details-grid p,
.timeline p,
.review-grid p,
.audience-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.gallery-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: var(--cream);
}

.gallery-band img {
  width: 100%;
  height: 42vw;
  min-height: 260px;
  max-height: 560px;
  object-fit: cover;
}

.photo-panel {
  margin-top: 36px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-panel img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.photo-panel div {
  padding: clamp(24px, 5vw, 44px);
}

.photo-panel .button {
  margin-top: 8px;
}

.details-grid article {
  min-height: 154px;
}

.audience-grid p {
  min-height: 108px;
  color: var(--ink);
  font-weight: 760;
}

.split-story {
  align-items: center;
}

.split-story img,
.host-card img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.host-card {
  align-items: center;
  padding: clamp(24px, 6vw, 56px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.review-grid article {
  display: grid;
  align-content: space-between;
  min-height: 220px;
}

.review-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.review-grid span {
  display: block;
  margin-top: 18px;
  color: var(--blue-deep);
  font-weight: 850;
}

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

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  float: right;
  color: var(--blue-deep);
  font-size: 1.3rem;
  line-height: 1;
}

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

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

.booking {
  padding: clamp(64px, 10vw, 110px) max(18px, calc((100% - var(--max)) / 2));
  color: var(--white);
  background: #244f60;
}

.booking .eyebrow {
  color: #c8e5ed;
}

.booking-intro {
  max-width: 800px;
  margin-bottom: 28px;
}

.booking-intro p:last-child {
  margin: 18px 0 0;
  color: #e7f2f5;
  font-size: 1.08rem;
}

.form-shell {
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.form-shell iframe {
  display: block;
  width: 100%;
  min-height: 1220px;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 4vw, 48px) 86px;
  color: var(--muted);
  background: var(--cream);
}

.site-footer p {
  margin: 0;
  font-weight: 850;
}

.mobile-book {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(31, 43, 45, 0.28);
  font-weight: 900;
  text-decoration: none;
}

@media (min-width: 680px) {
  .hero-actions,
  .hero-facts,
  .cta-strip {
    grid-template-columns: repeat(2, max-content);
  }

  .hero-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-actions {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .feature-grid,
  .details-grid,
  .review-grid,
  .timeline,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .hero {
    grid-template-columns: minmax(0, 0.94fr) minmax(520px, 0.86fr);
  }

  .hero-media {
    order: 2;
    min-height: calc(100vh - 72px);
  }

  .hero-content {
    order: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: max(48px, calc((100vw - var(--max)) / 2));
  }

  .two-column,
  .split-story,
  .host-card {
    grid-template-columns: 1fr 0.78fr;
  }

  .photo-panel {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .feature-grid,
  .details-grid,
  .review-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .timeline,
  .audience-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mobile-book {
    display: none;
  }

  .site-footer {
    padding-bottom: 28px;
  }
}

@media (max-width: 520px) {
  .site-header .button-small {
    display: none;
  }

  .brand span:last-child {
    max-width: 150px;
    line-height: 1.1;
  }

  .gallery-band {
    grid-template-columns: 1fr;
  }

  .gallery-band img {
    height: auto;
    max-height: none;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    display: grid;
  }
}
