:root {
  --bg: #fbf6f2;
  --bg-soft: #f3eee7;
  --panel: rgba(255, 255, 255, 0.72);
  --rose: #e4b7bb;
  --sage: #8fa18d;
  --lavender: #aea0bd;
  --ink: #1d2430;
  --muted: #5e6673;
  --line: rgba(29, 36, 48, 0.12);
  --shadow: 0 24px 70px rgba(38, 42, 50, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(228, 183, 187, 0.28), transparent 28%),
    radial-gradient(circle at top right, rgba(174, 160, 189, 0.24), transparent 24%),
    linear-gradient(180deg, var(--bg) 0%, #fffdfa 52%, var(--bg-soft) 100%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
}

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

.site-shell {
  width: min(1180px, calc(100vw - 48px));
  margin: 0 auto;
  padding: 24px 0 64px;
}

.hero,
.section {
  position: relative;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  border-radius: 28px;
}

.hero {
  padding: 24px;
  display: grid;
  gap: 28px;
}

.topbar,
.hero-copy,
.hero-card,
.section,
.offer-grid,
.experience-grid {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand,
h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
}

.brand {
  font-size: 1.7rem;
  font-weight: 700;
}

.topbar-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.eyebrow,
.kicker,
.section-tag,
.card-label {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--sage);
  margin: 0;
}

.hero-copy {
  width: min(680px, 100%);
}

h1 {
  margin: 12px 0 16px;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.92;
}

.lede,
.story p,
.experience p,
.cta p,
.offer-grid p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--ink); color: #fff; }
.button-secondary { background: rgba(255, 255, 255, 0.86); }

.hero-card {
  justify-self: end;
  width: min(360px, 100%);
  border: 1px solid rgba(143, 161, 141, 0.22);
  border-radius: 24px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(247,241,236,0.85));
}

.hero-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.section {
  margin-top: 24px;
  padding: 28px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

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

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

.offer-grid article,
.experience-grid > div {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
}

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

.cta {
  text-align: center;
}

@media (max-width: 900px) {
  .site-shell { width: min(100vw - 24px, 1180px); }
  .topbar { flex-direction: column; align-items: flex-start; }
  .offer-grid,
  .experience-grid { grid-template-columns: 1fr; }
}
