/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---- Design tokens ---- */
:root {
  --color-bg: #E8E8E3;
  --color-text: #393939;
  --color-accent: #7a7268;
  --color-card: #F4F4F1;

  --font-logo: 'Cormorant Garamond', serif;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Jost', sans-serif;

  --max-width: 1100px;
  --section-padding: 6rem 1.5rem;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.7;
  font-size: 1rem;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--color-accent);
  display: block;
  margin-bottom: 1rem;
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  text-transform: lowercase;
  letter-spacing: 0.05em;
  font-size: 1.75rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 2rem;
}

hr.divider {
  border: none;
  border-top: 1px solid var(--color-accent);
  opacity: 0.4;
  max-width: 120px;
  margin: 0 auto;
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  padding: 0.9rem 2rem;
  border: 1px solid var(--color-text);
  border-radius: 999px;
  background: transparent;
  color: var(--color-text);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

.btn-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(232, 232, 227, 0.9);
  backdrop-filter: blur(6px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  position: relative;
}

.logo {
  font-family: var(--font-logo);
  font-size: 1.75rem;
  letter-spacing: 0.05em;
}

.logo-large {
  font-size: clamp(3rem, 10vw, 5rem);
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.btn-small {
  padding: 0.6rem 1.25rem;
  font-size: 0.7rem;
}

/* ---- Mobile nav toggle ---- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--color-text);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 90vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 2rem;
  max-width: 700px;
}

.hero-overlay::before {
  content: "";
  position: absolute;
  inset: -2rem;
  background: rgba(57, 57, 57, 0.35);
  z-index: -1;
  border-radius: 8px;
}

.hero-tagline {
  font-size: 1.1rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.btn-light {
  border-color: #fff;
  color: #fff;
}

.btn-light:hover {
  background: #fff;
  color: var(--color-text);
}

/* ---- Intro ---- */
.intro {
  padding: var(--section-padding);
}

.intro-inner {
  max-width: 640px;
  text-align: center;
  font-size: 1.1rem;
  margin: 0 auto;
}

.intro-inner p + p {
  margin-top: 1.25rem;
}

/* ---- Section shared ---- */
.section {
  padding: var(--section-padding);
  text-align: center;
}

.section-lead {
  max-width: 640px;
  margin: 1.5rem auto 0;
  font-size: 1.05rem;
}

/* ---- Retreat ---- */
.includes-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  justify-content: center;
  gap: 0.75rem 3rem;
  max-width: 640px;
  margin: 0 auto;
  text-align: left;
}

.checklist li {
  position: relative;
  padding-left: 1.25rem;
}

.checklist li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

.program-image {
  width: 100%;
  max-width: 480px;
  margin: 3rem auto 0;
  border-radius: 4px;
}

.moodboard-link {
  margin-top: 2rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-decoration: underline;
}

.waitlist-card {
  margin: 4rem auto 0;
  max-width: 480px;
  background: var(--color-card);
  padding: 3rem 2rem;
  border-radius: 8px;
}

.waitlist-card p {
  margin-bottom: 0.75rem;
}

.waitlist-card .btn {
  margin-top: 1rem;
}

/* ---- About ---- */
.about-intro {
  max-width: 560px;
  margin: 0 auto;
}

.about-intro p + p {
  margin-top: 1.25rem;
}

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 4rem;
  text-align: left;
}

.about-story h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-story-subtitle {
  font-family: var(--font-logo);
  font-size: 1.5rem;
  color: var(--color-accent);
  margin: 0.5rem 0 1.5rem;
}

.about-story p + p {
  margin-top: 1rem;
}

.about-photo img {
  border-radius: 4px;
}

/* ---- Contact ---- */
.contact-links {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.contact-links a {
  text-decoration: underline;
}

/* ---- Footer ---- */
.site-footer {
  border-top: 1px solid var(--color-accent);
  padding: 3rem 1.5rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--color-accent);
}

/* ---- Moodboard header (standalone page) ---- */
.moodboard-header {
  padding: 1.5rem;
  text-align: center;
}

/* ---- Moodboard mosaic ---- */
.mosaic {
  columns: 3 220px;
  column-gap: 1rem;
  margin-top: 3rem;
}

.mosaic-item {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 4px;
  break-inside: avoid;
}

.mosaic-tall {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .about-columns {
    grid-template-columns: 1fr;
  }

  .about-photo {
    order: -1;
  }
}

@media (max-width: 600px) {
  .checklist {
    grid-template-columns: 1fr;
    max-width: 280px;
  }

  .mosaic {
    columns: 2 160px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 100vh;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section {
    padding: 4rem 1.25rem;
  }

  .waitlist-card {
    padding: 2rem 1.5rem;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-row .btn {
    width: 100%;
    text-align: center;
  }
}
