:root {
  --cream: #f6f0e6;
  --cream-2: #efe6d6;
  --paper: #fffaf3;
  --ink: #1c1612;
  --ink-soft: #4a3f36;
  --muted: #7a6d60;
  --wine: #6e2c3a;
  --wine-deep: #4d1d28;
  --gold: #b8943e;
  --gold-soft: #d4bc7a;
  --line: rgba(28, 22, 18, 0.12);
  --shadow: 0 24px 60px rgba(28, 22, 18, 0.12);
  --radius: 22px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: var(--wine); text-decoration: none; }
a:hover { color: var(--wine-deep); }

.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.wrap-s { width: min(760px, calc(100% - 40px)); margin: 0 auto; }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(246, 240, 230, 0.86);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink); letter-spacing: 0.04em;
}
.brand img {
  width: 44px; height: 44px; object-fit: cover;
  border-radius: 50%; border: 1px solid var(--gold-soft);
}
.brand strong {
  font-family: var(--serif);
  font-size: 22px; font-weight: 600;
}
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { color: var(--ink-soft); font-size: 15px; }
.nav-links a:hover { color: var(--wine); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; cursor: pointer; font-family: var(--sans);
  font-weight: 600; letter-spacing: 0.02em;
  padding: 13px 24px; border-radius: 999px;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(180deg, #d4bc7a, #b8943e);
  color: #2a2114; box-shadow: 0 8px 20px rgba(184, 148, 62, 0.28);
}
.btn-wine {
  background: var(--wine); color: #fff;
  box-shadow: 0 8px 22px rgba(110, 44, 58, 0.25);
}
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.btn-wide { width: 100%; }
.btn-lg { padding: 16px 28px; font-size: 17px; }

/* HERO */
.hero {
  position: relative; min-height: 88vh;
  display: grid; place-items: end stretch;
  overflow: hidden;
}
.hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: saturate(0.92);
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,22,18,.18) 0%, rgba(28,22,18,.55) 55%, rgba(28,22,18,.82) 100%);
}
.hero-content {
  position: relative; z-index: 2; color: #fff;
  padding: 80px 0 72px;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 12px; color: var(--gold-soft); margin-bottom: 14px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500; font-size: clamp(42px, 6vw, 78px);
  line-height: 1.05; max-width: 16ch;
}
.hero p.lead {
  margin: 18px 0 30px; max-width: 46ch;
  font-size: 19px; color: rgba(255,255,255,.88);
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.price-pill {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 22px; color: rgba(255,255,255,.9); font-size: 15px;
}
.price-pill b { color: var(--gold-soft); font-size: 20px; font-family: var(--serif); }

/* SECTIONS */
section { padding: 88px 0; }
.center { text-align: center; }
h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(32px, 4vw, 52px); line-height: 1.15;
}
.sub {
  color: var(--muted); max-width: 58ch; margin: 12px auto 0;
  font-size: 18px;
}
.gold-rule {
  width: 56px; height: 2px; background: var(--gold);
  margin: 18px auto 0; border: 0;
}

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
}
.num {
  font-family: var(--serif); color: var(--gold);
  font-size: 34px; line-height: 1;
}
.step h3 { font-size: 18px; margin: 10px 0 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* OCCASIONS */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 48px; }
.card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.card img { height: 220px; width: 100%; object-fit: cover; }
.card-body { padding: 22px; }
.card h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; }
.card p { color: var(--muted); margin-top: 6px; font-size: 15px; }

/* THEMES */
.themes {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; margin-top: 36px;
}
.chip {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 999px;
  font-size: 14px; color: var(--ink-soft);
}

/* PRICE */
.price-box {
  margin: 48px auto 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px;
  max-width: 720px;
  text-align: center;
  box-shadow: var(--shadow);
}
.price-box .amt {
  font-family: var(--serif);
  font-size: 72px; line-height: 1; color: var(--wine);
}
.price-box .amt small { font-size: 28px; }
.includes { list-style: none; margin: 22px 0 28px; color: var(--ink-soft); }
.includes li { margin: 8px 0; }
.includes li::before { content: "✦ "; color: var(--gold); }

/* FORM */
.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
}
label { display: block; font-size: 14px; font-weight: 600; margin: 16px 0 6px; }
input, select, textarea {
  width: 100%; padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit; background: #fff;
  color: var(--ink);
}
optgroup { font-style: normal; font-weight: 600; color: var(--wine); }
textarea { min-height: 140px; resize: vertical; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hint { font-size: 13px; color: var(--muted); margin-top: 4px; }
.pay-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.pay-btn {
  border: 1px solid var(--line); background: #fff;
  border-radius: 16px; padding: 16px; cursor: pointer;
  text-align: left; font: inherit;
}
.pay-btn strong { display: block; }
.pay-btn span { color: var(--muted); font-size: 13px; }
.pay-btn.active { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,148,62,.2); }
.alert {
  padding: 12px 14px; border-radius: 12px; margin: 12px 0;
  background: #f3e6c8; color: #4a3a12; font-size: 14px;
}
.alert-ok { background: #e5efe4; color: #1e3b1c; }
.alert-err { background: #f6e1e4; color: #5a1e28; }

/* FAQ */
.faq { margin-top: 36px; }
details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  margin-bottom: 10px;
}
summary { cursor: pointer; font-weight: 600; }
details p { margin-top: 8px; color: var(--muted); }

footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 28px;
  color: var(--muted); font-size: 14px;
}
.foot {
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}

.legal { padding: 60px 0 80px; }
.legal h1 { font-family: var(--serif); font-size: 42px; margin-bottom: 18px; }
.legal h2 { font-size: 26px; margin: 28px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 10px; }
.legal ul { padding-left: 18px; }

@media (max-width: 860px) {
  .steps, .cards, .grid-2, .pay-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero { min-height: 78vh; }
  section { padding: 64px 0; }
  .form-card { padding: 22px; }
}
