:root {
  --bg: #f3eadf;
  --bg-soft: #fcf7f1;
  --card: rgba(255, 251, 246, 0.72);
  --text: #382217;
  --muted: #6e4c39;
  --accent: #b8956e;
  --accent-soft: rgba(184, 149, 110, 0.16);
  --border: rgba(81, 52, 34, 0.12);
  --shadow: 0 24px 80px rgba(72, 45, 28, 0.11);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 30%),
    radial-gradient(circle at top right, rgba(216, 186, 151, 0.22), transparent 28%),
    radial-gradient(circle at 50% 18%, rgba(255, 247, 239, 0.72), transparent 24%),
    linear-gradient(180deg, #f8f1e8 0%, #f1e6da 45%, #eadccc 100%);
  line-height: 1.65;
}

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

.brand-logo,
.hero-logo,
.footer-logo {
  width: 100%;
  height: auto;
}

.brand-logo {
  width: 180px;
}

.hero-logo {
  width: min(560px, 92%);
  margin: 0 0 1.5rem;
}

.footer-logo {
  width: 180px;
  margin-bottom: 0.75rem;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(250, 244, 236, 0.76);
  border-bottom: 1px solid rgba(81, 52, 34, 0.08);
  box-shadow: 0 10px 30px rgba(68, 42, 25, 0.04);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.main-nav a,
.footer-links a {
  transition: color .2s ease, opacity .2s ease;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #4b2d1d 0%, #382217 100%);
  color: #fffaf5;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid rgba(56, 34, 23, 0.9);
  box-shadow: 0 12px 26px rgba(56, 34, 23, 0.14);
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(56, 34, 23, 0.18);
}

.button-outline {
  background: rgba(255, 249, 242, 0.42);
  color: var(--text);
  border-color: rgba(81, 52, 34, 0.18);
  box-shadow: none;
}

.hero {
  padding: 7rem 0 4rem;
}

.hero-grid,
.two-col,
.opening-grid {
  display: grid;
  gap: 2.2rem;
  align-items: start;
}

.hero-grid { grid-template-columns: 1.3fr 0.9fr; }
.two-col { grid-template-columns: 0.9fr 1.1fr; }
.opening-grid { grid-template-columns: 1fr 0.95fr; }

.eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin: 0 0 1rem;
}
.eyebrow.center { text-align: center; }

.hero-subtitle,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.hero-subtitle { display:none; }

.hero-text {
  max-width: 38rem;
  font-size: 1.08rem;
  color: #56392a;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-card,
.card,
.waitlist-card {
  position: relative;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  border-radius: 30px;
  overflow: hidden;
}

.hero-card::before,
.card::before,
.waitlist-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.22), transparent 28%);
  pointer-events: none;
}

.hero-card {
  padding: 1.2rem;
}

.hero-card-inner {
  min-height: 100%;
  padding: 2rem;
  background:
    radial-gradient(circle at top right, rgba(184, 149, 110, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 252, 248, 0.9), rgba(243, 232, 219, 0.58));
  border-radius: 24px;
  border: 1px solid rgba(81, 52, 34, 0.08);
}

.hero-card h2 {
  font-size: 2rem;
  line-height: 1.12;
  margin: 0.7rem 0 1rem;
}

.hero-card ul { padding-left: 1.1rem; margin: 0; color: var(--muted); }
.mini-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--muted);
}

.section { padding: 5rem 0; }
.section-light {
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.38), rgba(247, 239, 230, 0.22));
}
.section-contrast {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.3), transparent 26%),
    linear-gradient(180deg, rgba(232, 217, 201, 0.82), rgba(248, 241, 233, 0.36));
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  margin: 0;
}

h3 {
  font-size: 1.8rem;
  margin: 0 0 0.8rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  margin-top: 2rem;
}

.card {
  padding: 2rem;
}

.card ul,
.hero-card ul {
  margin-top: 1rem;
}

.pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.pillars span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(81, 52, 34, 0.12);
  background: rgba(255, 250, 244, 0.62);
  color: var(--muted);
  font-size: 0.95rem;
}

.waitlist-card {
  padding: 2rem;
}

.waitlist-card h3 { margin-bottom: 0.25rem; }
.waitlist-card p { margin-top: 0; color: var(--muted); }

.waitlist-card label {
  display: grid;
  gap: 0.45rem;
  margin-top: 1rem;
}

.waitlist-card span {
  font-size: 0.92rem;
  color: var(--muted);
}

.waitlist-card input {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(81, 52, 34, 0.14);
  background: rgba(255, 252, 248, 0.9);
  color: var(--text);
  font: inherit;
}

.waitlist-card input:focus {
  outline: 2px solid rgba(184, 149, 110, 0.18);
  border-color: rgba(81, 52, 34, 0.22);
}

.waitlist-card button { width: 100%; margin-top: 1.2rem; }
.form-note { font-size: 0.86rem; margin-top: 0.9rem; }
.form-message { min-height: 1.4rem; font-size: 0.95rem; color: var(--text); }

.site-footer {
  padding: 2.5rem 0 3rem;
  border-top: 1px solid var(--border);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-wrap p { margin: 0.2rem 0; color: var(--muted); }
.footer-brand { display:none; }
.footer-links {
  display: grid;
  gap: 0.5rem;
  justify-items: end;
  color: var(--muted);
}

@media (max-width: 960px) {
  .main-nav,
  .nav-cta { display: none; }
  .hero-grid,
  .two-col,
  .opening-grid,
  .cards { grid-template-columns: 1fr; }
  .hero { padding-top: 5.5rem; }
  .hero-logo { width: min(420px, 100%); }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .footer-wrap { flex-direction: column; }
  .footer-links { justify-items: start; }
  .hero-card-inner,
  .card,
  .waitlist-card { padding: 1.4rem; }
}
