:root {
  --ink: #23201c;
  --muted: #6f675f;
  --paper: #fbfaf6;
  --warm: #f3eee5;
  --line: #ded5c7;
  --matcha: #5a6f45;
  --matcha-dark: #34452b;
  --cedar: #8a5439;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(35, 32, 28, 0.14);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", 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);
  font-family: var(--sans);
  line-height: 1.65;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 68px;
  padding: 14px clamp(18px, 4vw, 48px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.94);
  box-shadow: 0 8px 30px rgba(35, 32, 28, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 20px;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-family: inherit;
  line-height: 1.1;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button-primary,
.button-small {
  color: var(--white);
  background: var(--matcha);
  box-shadow: 0 14px 28px rgba(52, 69, 43, 0.24);
}

.button-primary:hover,
.button-small:hover {
  background: var(--matcha-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.button-outline {
  color: var(--matcha-dark);
  border-color: var(--matcha);
  background: var(--white);
}

.button-small {
  min-height: 40px;
  padding: 10px 17px;
  font-size: 14px;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 92svh;
  overflow: hidden;
  padding: 112px clamp(20px, 5vw, 72px) 70px;
  color: var(--white);
}

.hero-video,
.hero-video video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(24, 21, 18, 0.82), rgba(24, 21, 18, 0.4) 52%, rgba(24, 21, 18, 0.22)),
    linear-gradient(0deg, rgba(24, 21, 18, 0.7), rgba(24, 21, 18, 0.08) 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

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

.hero .eyebrow {
  color: #f0dfc7;
}

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

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  max-width: 820px;
  font-size: clamp(48px, 9vw, 94px);
}

h2 {
  font-size: clamp(36px, 6vw, 64px);
}

h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.6vw, 24px);
  line-height: 1.5;
}

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

.section {
  padding: 82px clamp(20px, 5vw, 72px);
}

.intro-section,
.association-section,
.host-section,
.company-section {
  display: grid;
  gap: 28px;
}

.section-copy {
  max-width: 790px;
}

.section-copy p,
.section-heading p,
.quiet-card p,
.benefit-grid p,
.step-card p,
.host-card p,
.final-cta p,
.faq-list p {
  color: var(--muted);
}

.section-copy > p:not(.eyebrow) {
  font-size: 18px;
}

.quiet-card,
.host-card,
.board-card,
.benefit-grid article,
.step-card,
.company-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(35, 32, 28, 0.06);
}

.quiet-card {
  align-self: end;
  padding: 28px;
}

.card-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--matcha);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.quiet-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.08;
}

.muted-section {
  background: var(--warm);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 34px;
}

.flow-grid,
.benefit-grid {
  display: grid;
  gap: 16px;
}

.step-card,
.benefit-grid article {
  padding: 24px;
}

.step-card span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--matcha);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
}

.details-section {
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.95), rgba(251, 250, 246, 0.72)),
    radial-gradient(circle at 92% 14%, rgba(138, 84, 57, 0.12), transparent 34%);
}

.details-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}

.details-list div {
  display: grid;
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  color: var(--matcha-dark);
  font-weight: 800;
}

dd {
  margin: 0;
  color: var(--muted);
}

.host-card {
  display: grid;
  gap: 24px;
  padding: clamp(26px, 5vw, 46px);
  background: var(--ink);
  color: var(--white);
}

.host-card .host-title {
  margin-top: 12px;
  color: #e9dac7;
  font-weight: 700;
}

.host-card p:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.association-section {
  background: #fffdf8;
}

.board-card,
.company-card {
  padding: 26px;
}

.company-section {
  background: var(--warm);
}

.company-note {
  margin-top: -8px;
  font-size: 15px;
}

.company-facts {
  margin-top: 4px;
}

.company-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--matcha-dark);
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.company-link:hover {
  color: var(--matcha);
}

.board-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

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

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

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.final-cta {
  padding: 86px clamp(20px, 5vw, 72px) 104px;
  text-align: center;
  background: var(--matcha-dark);
  color: var(--white);
}

.final-cta .eyebrow {
  color: #e8d7be;
}

.final-cta h2 {
  max-width: 780px;
  margin: 0 auto 28px;
}

.sticky-booking {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 30;
  display: inline-flex;
  justify-content: center;
  min-height: 54px;
  padding: 16px 18px;
  border-radius: 999px;
  border: 0;
  color: var(--white);
  background: var(--matcha);
  box-shadow: 0 16px 40px rgba(35, 32, 28, 0.28);
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
}

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

  .button-small {
    padding-inline: 22px;
  }

  .intro-section,
  .association-section,
  .company-section {
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    align-items: center;
  }

  .flow-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .benefit-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .details-list div {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 22px;
  }

  .host-card {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
  }

  .sticky-booking {
    display: none;
  }
}

@media (max-width: 719px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    min-height: 62px;
  }

  .brand span:last-child {
    max-width: 165px;
    font-size: 13px;
    line-height: 1.2;
  }

  .hero {
    min-height: 88svh;
  }

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

  .button-secondary {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .hero-video video {
    animation: none;
  }
}
