:root {
  --paper: #f4efe6;
  --ink: #243028;
  --muted: #5c675c;
  --sage: #3f5340;
  --sage-soft: #e4ebdd;
  --blush: #f3e3d8;
  --blush-deep: #c4a394;
  --line: rgba(63, 83, 64, 0.16);
  --shadow: 0 24px 50px rgba(55, 46, 36, 0.08);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
  --script: "Allura", cursive;
  --header: 4.6rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.65;
  background: var(--paper);
}

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

:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

::selection { background: #e7d3c4; }

.wrap {
  width: min(1120px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--sage);
  color: #f7f3ec;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  z-index: 30;
}
.skip:focus { top: 0.8rem; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  background: rgba(244, 239, 230, 0.55);
  backdrop-filter: blur(16px);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(244, 239, 230, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(55, 46, 36, 0.05);
}

.header-inner {
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}
.logo .lotus { width: 36px; height: 36px; color: var(--sage); flex: none; }
.logo-text strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
}
.logo-text span {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav { display: flex; align-items: center; gap: 1.35rem; }
.nav a { text-decoration: none; font-size: 0.95rem; color: var(--muted); }
.nav a:hover { color: var(--ink); }

.nav-toggle {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(244, 239, 230, 0.8);
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { display: block; width: 16px; height: 1.5px; background: var(--ink); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  font: 500 0.98rem/1 var(--sans);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--sage); color: #f7f3ec; }
.btn-solid:hover { background: #314232; }
.btn-ghost {
  background: rgba(255, 252, 247, 0.45);
  color: var(--sage);
  border-color: rgba(63, 83, 64, 0.28);
}
.btn-ghost:hover { background: rgba(255, 252, 247, 0.8); }

.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  object-position: 18% 28%;
  transform: scale(1.08);
  transform-origin: center top;
  will-change: transform;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(244, 239, 230, 0.5) 0%, rgba(244, 239, 230, 0) 16%),
    linear-gradient(0deg, #f4efe6 0%, rgba(244, 239, 230, 0.92) 14%, rgba(244, 239, 230, 0.28) 32%, rgba(244, 239, 230, 0) 52%);
}
.hero-caption {
  position: absolute;
  right: 7vw;
  top: 22vh;
  z-index: 2;
  margin: 0;
  font-family: var(--script);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: #f8f4ec;
  text-shadow: 0 10px 28px rgba(30, 36, 24, 0.35);
  animation: rise 1.3s var(--ease) 0.4s both;
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(2.2rem, 6vh, 4.2rem);
  max-width: 40rem;
}
@media (min-width: 761px) {
  .wrap.hero-copy {
    width: min(36rem, 44vw);
    margin-left: auto;
    margin-right: max(4vw, calc((100% - 1120px) / 2));
  }
}
.hero-copy > * { animation: rise 1s var(--ease) both; }
.hero-copy > *:nth-child(1) { animation-delay: 0.08s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.16s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.24s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.32s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.4s; }
.hero-copy > *:nth-child(6) { animation-delay: 0.5s; }
.hero-copy > *:nth-child(7) { animation-delay: 0.58s; }

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}

.hero .kicker,
.hero .wordmark,
.hero .byline {
  text-shadow: 0 0 18px rgba(244, 239, 230, 0.95), 0 1px 2px rgba(244, 239, 230, 0.85);
}

.kicker {
  margin: 0 0 0.7rem;
  color: var(--sage);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.wordmark {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: 0.18em;
  line-height: 0.9;
}
.byline { margin: 0.35rem 0 0.8rem; color: var(--muted); }
.byline::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 1px;
  margin-top: 0.8rem;
  background: var(--blush-deep);
  transform-origin: left;
  animation: draw 1s var(--ease) 0.5s both;
}
@keyframes draw { from { transform: scaleX(0); } to { transform: scaleX(1); } }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; letter-spacing: -0.02em; }
h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(3.3rem, 7vw, 5.6rem);
  line-height: 0.9;
  color: #314232;
}
.lead {
  margin: 0 0 1.4rem;
  max-width: 34rem;
  font-size: 1.12rem;
  color: #3e4a40;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 1.15rem; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.95rem;
}
.hero-meta li { display: flex; align-items: center; gap: 0.4rem; }

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255, 252, 247, 0.45);
  padding: 0.85rem 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: drift 36s linear infinite;
}
.marquee span {
  padding-right: 2.4rem;
  font-family: var(--serif);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}
.marquee span::after {
  content: "·";
  margin-left: 2.4rem;
  color: var(--blush-deep);
}
@keyframes drift { to { transform: translateX(-50%); } }

.quote-band { padding: 4.5rem 0 2rem; text-align: center; }
.quote-band blockquote {
  margin: 0 auto;
  max-width: 42rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  line-height: 1.35;
  color: #314232;
}

.section { padding: 2.4rem 0 3.6rem; }
section[id] { scroll-margin-top: 5.4rem; }
.section h2 {
  margin: 0.15rem 0 0.75rem;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.95;
  color: #314232;
}
.intro { max-width: 40rem; margin: 0 0 1.7rem; color: var(--muted); }

.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.pillar { text-align: center; padding: 0.4rem; }
.icon-circle {
  width: 4.6rem;
  height: 4.6rem;
  margin: 0 auto 0.8rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage);
  transition: transform 0.5s var(--ease);
}
.pillar:hover .icon-circle,
.concept:hover .icon-circle,
.space:hover .icon-circle { transform: translateY(-4px); }
.pillar:nth-child(2) .icon-circle { background: #efe4d4; }
.pillar:nth-child(3) .icon-circle { background: #f3e0d8; }
.pillar:nth-child(4) .icon-circle { background: #f6edd8; }
.pillar h3 {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
}

.steps { display: grid; gap: 1rem; }
.step {
  background: rgba(255, 252, 247, 0.72);
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  padding: 1.5rem 1.45rem 1.25rem;
  box-shadow: var(--shadow);
}
.step-title { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.7rem 1rem; margin-bottom: 0.4rem; }
.num {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: #f7f3ec;
  font-family: var(--serif);
  font-size: 1.2rem;
}
.step h3 { margin: 0; font-size: 2rem; }
.step .when { color: var(--muted); font-size: 0.95rem; }

.concepts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem 0.8rem;
  margin: 1.2rem 0 0.4rem;
}
.concept { text-align: center; }
.concept .icon-circle { width: 3.7rem; height: 3.7rem; background: #f3ece3; }
.concept strong { display: block; font-size: 0.95rem; font-weight: 500; }
.concept span { display: block; color: var(--muted); font-size: 0.78rem; line-height: 1.35; }
.note { margin: 0.9rem 0 0; color: var(--muted); }
.soft-note {
  margin: 1rem 0 0;
  padding: 1rem 1.15rem;
  border-radius: 1.1rem;
  background: var(--blush);
  color: #5a463c;
}
.sign-line {
  margin: 1.1rem 0 0;
  font-family: var(--script);
  font-size: 2.15rem;
  color: var(--sage);
  line-height: 1.1;
}

.offers { display: grid; gap: 0.9rem; }
.offer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.3rem 1.35rem;
  border-radius: 1.6rem;
  transition: transform 0.45s var(--ease);
}
.offer:hover { transform: translateY(-3px); }
.offer.sage { background: var(--sage-soft); }
.offer.blush { background: var(--blush); }
.offer h3 { margin: 0; font-size: 1.85rem; line-height: 1.05; }
.offer-top { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.amount { margin: 0; font-family: var(--serif); font-size: 2rem; white-space: nowrap; color: #314232; }
.offer p { margin: 0.45rem 0 0.2rem; }
.offer ul { margin: 0.3rem 0 0; padding-left: 1.1rem; }
.offer li { margin: 0.15rem 0; }

.about {
  width: min(1140px, calc(100% - 2.4rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 3.4rem;
  align-items: center;
}
.about-photo { position: relative; margin: 0; }
.about-photo img {
  width: 100%;
  height: min(78vh, 740px);
  object-fit: cover;
  object-position: center 16%;
  border-radius: 1.8rem 1.8rem 7.5rem 1.8rem;
  box-shadow: var(--shadow);
}
.about-photo figcaption {
  position: absolute;
  left: 1.3rem;
  bottom: 1.1rem;
  margin: 0;
  font-family: var(--script);
  font-size: 2.5rem;
  color: #f8f4ec;
  text-shadow: 0 8px 22px rgba(28, 32, 22, 0.4);
}
.creds { margin: 1.1rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.45rem; }
.creds li { display: flex; gap: 0.55rem; align-items: flex-start; }
.creds svg { flex: none; margin-top: 0.25rem; color: var(--sage); }

.spaces { display: grid; grid-template-columns: repeat(3, 1fr) 1.15fr; gap: 1rem; align-items: center; }
.space { text-align: center; }
.space h3 { margin: 0.2rem 0 0; font-family: var(--sans); font-size: 1rem; font-weight: 500; }
.ask {
  background: rgba(255, 252, 247, 0.78);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 1.25rem;
}
.ask p { margin: 0 0 0.9rem; color: var(--muted); }

.reserve { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 1rem; }
.card {
  background: rgba(255, 252, 247, 0.8);
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  padding: 1.45rem 1.4rem 1.3rem;
  box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 0.7rem; font-size: 2.1rem; }
.card ul { margin: 0; padding-left: 1.1rem; }
.card li { margin: 0.45rem 0; }
.thanks { margin: 1rem 0 0; font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--sage); }
.contact-list { list-style: none; margin: 0 0 1.1rem; padding: 0; display: grid; gap: 0.75rem; }
.contact-list a, .contact-list span { display: flex; gap: 0.6rem; align-items: flex-start; text-decoration: none; }
.contact-list a:hover { color: var(--sage); }
.card .btn { width: 100%; margin-bottom: 0.65rem; }
.pdf-link { display: inline-block; color: var(--sage); }

.site-footer { padding: 1rem 0 2.4rem; text-align: center; color: var(--muted); }
.site-footer .mantra { margin: 0 0 0.35rem; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.75rem; }
.site-footer .sign { margin: 0.2rem 0; font-family: var(--script); font-size: 2.4rem; color: var(--sage); line-height: 1; }
.site-footer small { font-size: 0.85rem; }

.js .reveal .pillar,
.js .reveal .step,
.js .reveal .offer,
.js .reveal .space,
.js .reveal .ask,
.js .reveal .card,
.js .reveal .about-photo,
.js .reveal .about-copy,
.js .reveal > .wrap > .kicker,
.js .reveal > .wrap > h2,
.js .reveal > .wrap > .intro,
.js .quote-band.reveal blockquote {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
}
.js .reveal.is-in .pillar,
.js .reveal.is-in .step,
.js .reveal.is-in .offer,
.js .reveal.is-in .space,
.js .reveal.is-in .ask,
.js .reveal.is-in .card,
.js .reveal.is-in .about-photo,
.js .reveal.is-in .about-copy,
.js .reveal.is-in > .wrap > .kicker,
.js .reveal.is-in > .wrap > h2,
.js .reveal.is-in > .wrap > .intro,
.js .quote-band.reveal.is-in blockquote {
  opacity: 1;
  transform: none;
}
.js .reveal.is-in .pillar:nth-child(2),
.js .reveal.is-in .offer:nth-child(2),
.js .reveal.is-in .step:nth-child(2) { transition-delay: 0.12s; }
.js .reveal.is-in .pillar:nth-child(3),
.js .reveal.is-in .offer:nth-child(3) { transition-delay: 0.22s; }
.js .reveal.is-in .pillar:nth-child(4) { transition-delay: 0.32s; }
.js .reveal.is-in .space:nth-child(2) { transition-delay: 0.1s; }
.js .reveal.is-in .space:nth-child(3) { transition-delay: 0.18s; }
.js .reveal.is-in .ask { transition-delay: 0.26s; }
.js .reveal.is-in .card:nth-child(2) { transition-delay: 0.14s; }
.js .reveal.is-in .about-copy { transition-delay: 0.16s; }

.js .reveal .about-photo img {
  transform: scale(1.06);
  transition: transform 1.5s var(--ease);
}
.js .reveal.is-in .about-photo img { transform: scale(1); }

@media (max-width: 980px) {
  .pillars, .about, .reserve, .spaces { grid-template-columns: 1fr 1fr; }
  .spaces .ask { grid-column: 1 / -1; }
  .about-photo img { height: 62vh; }
  .hero-caption { display: none; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.3rem 1.2rem 1rem;
    background: rgba(244, 239, 230, 0.98);
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.8rem 0; border-top: 1px solid var(--line); }
  .nav .btn { margin-top: 0.7rem; }
  .pillars, .about, .reserve { grid-template-columns: 1fr; }
  .offer { grid-template-columns: 1fr; }
  .offer-top { flex-direction: column; gap: 0.15rem; }
  .hero { min-height: 100svh; height: 100svh; }
  .hero h1 { font-size: 2.8rem; }
  .hero .wordmark { font-size: 1.7rem; }
  .hero .lead { font-size: 1rem; margin-bottom: 0.85rem; }
  .hero-copy { padding-bottom: 1.1rem; }
  .hero-media img { object-position: 24% 20%; }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(244, 239, 230, 0.4) 0%, rgba(244, 239, 230, 0) 14%),
      linear-gradient(0deg, #f4efe6 0%, rgba(244, 239, 230, 0.94) 22%, rgba(244, 239, 230, 0.2) 46%, rgba(244, 239, 230, 0) 64%);
  }
  .about-photo img { height: 78vw; border-radius: 1.4rem 1.4rem 4rem 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-copy > *,
  .hero-caption,
  .byline::after,
  .marquee-track { animation: none; }
  .marquee-track { transform: none; }
  .js .reveal .pillar,
  .js .reveal .step,
  .js .reveal .offer,
  .js .reveal .space,
  .js .reveal .ask,
  .js .reveal .card,
  .js .reveal .about-photo,
  .js .reveal .about-copy,
  .js .reveal > .wrap > .kicker,
  .js .reveal > .wrap > h2,
  .js .reveal > .wrap > .intro,
  .js .quote-band.reveal blockquote,
  .js .reveal .about-photo img {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
