* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f8f6f1;
  color: #1c1917;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  height: auto;
}

.site {
  width: 100%;
}

.hero,
.section,
.card-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 24px;
}

.white,
.dark {
  max-width: none;
  padding: 72px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.white {
  background: #ffffff;
  border-top: 1px solid #e7e5e4;
  border-bottom: 1px solid #e7e5e4;
}

.dark {
  background: #1c1917;
  color: #fafaf9;
}

.pill {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #d6d3d1;
  background: white;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

h1 {
  margin: 24px 0 0;
  max-width: 900px;
  font-size: clamp(42px, 8vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  word-break: break-word;
}

h1 span {
  display: block;
  margin-top: 16px;
  color: #78716c;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.08;
}

h2 {
  margin: 12px 0 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

h3 {
  margin: 10px 0 0;
  font-size: 24px;
  line-height: 1.15;
}

.lede,
.body-copy,
.small-note,
.info-card p,
.booking-note {
  color: #44403c;
}

.lede {
  max-width: 760px;
  margin-top: 24px;
  font-size: 20px;
}

.body-copy {
  font-size: 20px;
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease, background 0.2s ease;
}

.button:hover {
  opacity: 0.92;
}

.button-dark {
  background: #1c1917;
  color: #ffffff;
}

.button-light {
  background: #ffffff;
  color: #1c1917;
  border: 1px solid #d6d3d1;
}

.full {
  width: 100%;
  margin-top: 24px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
  margin-top: 28px;
}

.stat,
.card,
.info-card,
.white-card,
.booking-card {
  background: #ffffff;
  border: 1px solid #e7e5e4;
  border-radius: 28px;
  box-shadow: 0 6px 20px rgba(28, 25, 23, 0.05);
}

.stat {
  padding: 18px 20px;
  font-size: 14px;
  color: #57534e;
}

.card {
  padding: 28px;
}

.eyebrow {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #78716c;
}

.eyebrow-dark {
  color: #a8a29e;
}

.examples {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.examples div,
.booking-item {
  background: #f5f5f4;
  border-radius: 18px;
  padding: 16px 18px;
  font-size: 22px;
}

.small-note {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.7;
}

.grid-3 {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.info-card,
.white-card {
  padding: 28px;
}

.number,
.booking-label {
  font-size: 14px;
  color: #78716c;
  font-weight: 600;
}

.info-card p {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.7;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.stack {
  display: grid;
  gap: 16px;
}

.book-grid {
  align-items: center;
}

.dark .body-copy,
.dark-copy {
  color: #d6d3d1;
}

.booking-card {
  padding: 28px;
  color: #1c1917;
}

.booking-value {
  margin-top: 4px;
  font-size: 22px;
  font-weight: 600;
}

.booking-note {
  margin-top: 14px;
  text-align: center;
  font-size: 14px;
  color: #78716c;
}

@media (max-width: 900px) {
  .grid-3,
  .two-col,
  .stats {
    grid-template-columns: 1fr;
  }

  .hero,
  .section,
  .card-section,
  .white,
  .dark {
    padding: 56px 20px;
  }

  .examples div,
  .booking-value {
    font-size: 20px;
  }

  .lede,
  .body-copy {
    font-size: 18px;
  }
}
