:root {
  --ink: #1d1630;
  --paper: #f7f1ea;
  --lime: #dff96b;
  --coral: #ff8b73;
  --lavender: #c7b9ff;
  --white: #fffdf9;
  --line: rgba(29, 22, 48, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.55;
}

a { color: inherit; }

.site-header {
  width: min(1180px, calc(100% - 32px));
  margin: 18px auto 0;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.84);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 12px;
  z-index: 20;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-size: 21px;
}

nav { display: flex; align-items: center; gap: 24px; }
nav a { text-decoration: none; font-weight: 600; font-size: 14px; }
.nav-cta { background: var(--ink); color: white; padding: 10px 16px; border-radius: 999px; }

main { overflow: hidden; }

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 64px auto 42px;
  min-height: 610px;
  border-radius: 36px;
  background: var(--ink);
  color: white;
  padding: clamp(34px, 6vw, 78px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: var(--lavender);
  opacity: .16;
  filter: blur(2px);
  border-radius: 50%;
  right: -140px;
  top: -160px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
  margin: 0 0 14px;
}

h1, h2, h3 {
  font-family: "Fraunces", serif;
  line-height: .98;
  margin-top: 0;
}

h1 {
  font-size: clamp(58px, 8vw, 108px);
  max-width: 820px;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(42px, 5vw, 68px);
  margin-bottom: 22px;
}

h3 {
  font-size: 42px;
  margin-bottom: 10px;
}

.lede {
  font-size: clamp(18px, 2vw, 23px);
  max-width: 720px;
  color: rgba(255,255,255,.82);
}

.hero-actions, .booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}

.button.primary { background: var(--lime); color: var(--ink); }
.button.secondary { border-color: rgba(255,255,255,.35); color: white; }
.booking .button.secondary { border-color: var(--ink); color: var(--ink); }

.microcopy { font-size: 13px; opacity: .62; margin-top: 18px; }

.hero-art { min-height: 440px; position: relative; z-index: 2; }

.card {
  position: absolute;
  width: min(320px, 88%);
  padding: 22px;
  border-radius: 24px;
  color: var(--ink);
  box-shadow: 0 22px 60px rgba(0,0,0,.26);
}

.card strong { display: block; font-family: "Fraunces"; font-size: 34px; line-height: 1; }
.card-label { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }

.card-one { background: var(--coral); top: 40px; left: 0; transform: rotate(-5deg); }
.card-two { background: var(--lime); top: 210px; right: 0; transform: rotate(6deg); }

.scribble {
  position: absolute;
  right: 25px;
  top: 90px;
  font-family: "Fraunces";
  font-size: 28px;
  transform: rotate(10deg);
  color: var(--lavender);
}

.plot-line {
  position: absolute;
  width: 220px;
  height: 140px;
  border: 3px dashed var(--lavender);
  border-left: 0;
  border-bottom: 0;
  border-radius: 50%;
  left: 50px;
  top: 155px;
  transform: rotate(13deg);
}

.proof-strip {
  width: min(1100px, calc(100% - 50px));
  margin: 0 auto 96px;
  text-align: center;
  font-weight: 800;
  font-size: 18px;
}

.manifesto, .offers, .for-who, .about, .booking {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto 110px;
}

.manifesto {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  padding-top: 30px;
}

.manifesto-copy { font-size: 20px; }

.section-heading { max-width: 740px; margin-bottom: 36px; }

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

.offer {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  min-height: 470px;
  display: flex;
  flex-direction: column;
}

.offer.featured { background: var(--lime); }
.offer.waitlist { background: var(--lavender); }

.offer-topline { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.pill {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.price { font-weight: 800; }
.offer-tagline { font-weight: 800; font-size: 18px; }
.offer ul { padding-left: 18px; }
.text-link { margin-top: auto; font-weight: 800; text-decoration: none; }

.for-who { background: var(--ink); color: white; border-radius: 34px; padding: clamp(34px, 6vw, 70px); }
.reason-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.reason-grid p {
  margin: 0;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 18px;
  padding: 22px;
  font-size: 18px;
}

.about-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--coral);
  border-radius: 34px;
  padding: clamp(24px, 4vw, 48px);
  font-size: 20px;
  transform: rotate(-1deg);
  display: grid;
  grid-template-columns: minmax(240px, .75fr) 1.25fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.about-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 45%;
  border-radius: 24px;
  box-shadow: 14px 14px 0 rgba(28, 20, 48, .14);
  transform: rotate(2deg);
}

.about-copy { transform: rotate(1deg); }

.signature { font-family: "Fraunces"; font-size: 28px; line-height: 1.15; }

@media (max-width: 760px) {
  .about-card { grid-template-columns: 1fr; }
  .about-portrait { max-height: 520px; object-position: 50% 42%; }
}

.booking {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 80px;
}

.booking-actions { flex-direction: column; align-items: stretch; }

footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 24px;
  border-radius: 26px;
  background: var(--ink);
  color: white;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  font-size: 13px;
}

@media (max-width: 820px) {
  nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-art { min-height: 360px; }
  .manifesto, .booking { grid-template-columns: 1fr; gap: 24px; }
  .offer-grid, .reason-grid { grid-template-columns: 1fr; }
  .offer { min-height: unset; }
  footer { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .site-header { padding: 10px 12px; }
  .nav-cta { padding: 9px 12px; }
  .hero { margin-top: 32px; border-radius: 26px; }
  h1 { font-size: 54px; }
  .hero-art { min-height: 320px; }
  .card { width: 85%; }
  .card-two { top: 170px; }
}
