:root {
  --white: #ffffff;
  --ivory: #fcfaf3;
  --ivory-2: #f7f2e6;
  --ink: #1a1712;
  --ink-soft: #5d564a;
  --gold: #c9a227;
  --gold-deep: #a87f1c;
  --gold-bright: #e8c766;
  --champagne: #f5e7b8;
  --yellow: #f5c518;
  --red: #e5484d;
  --line: rgba(201, 162, 39, 0.28);
  --line-soft: rgba(26, 23, 18, 0.08);
  --shadow: 0 18px 50px -22px rgba(168, 127, 28, 0.45);
  --shadow-soft: 0 10px 30px -18px rgba(26, 23, 18, 0.35);
  --gold-grad: linear-gradient(135deg, #bf953f 0%, #fcf6ba 28%, #d4af37 52%, #fbf5b7 74%, #aa771c 100%);
  --gold-grad-2: linear-gradient(135deg, #f9e08e 0%, #d4af37 50%, #b8860b 100%);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 22px; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, serif; line-height: 1.12; margin: 0 0 .5em; font-weight: 700; }
p { margin: 0 0 1em; color: var(--ink-soft); }
section { padding: 86px 0; }

/* ---------- shared bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .74rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep);
  background: linear-gradient(135deg, rgba(245,231,184,.55), rgba(255,255,255,.4));
  border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px;
}
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.heart-red { color: var(--red); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 54px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.section-head p { font-size: 1.05rem; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: "Poppins", sans-serif; font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .2s ease;
}
.btn-gold {
  color: #2a1f05; background: var(--gold-grad-2);
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.btn-gold:hover { transform: translateY(-2px); }
.btn-ghost { background: var(--white); border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--gold); transform: translateY(-2px); }
.btn-store {
  background: var(--ink); color: #fff; padding: 12px 22px; border-radius: 14px;
  box-shadow: var(--shadow-soft);
}
.btn-store:hover { transform: translateY(-2px); }
.btn-store .apple { width: 22px; height: 22px; display: inline-flex; }
.btn-store .apple svg { width: 100%; height: 100%; }
.btn-store .store-text { display: flex; flex-direction: column; line-height: 1.05; text-align: left; }
.btn-store .store-text small { font-size: .62rem; font-weight: 400; opacity: .85; letter-spacing: .04em; }
.btn-store .store-text strong { font-size: 1.05rem; font-weight: 600; }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 6px; }
.brand-mark { font-family: "Playfair Display", serif; font-weight: 800; font-size: 1.55rem; letter-spacing: .3px;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-mark.small { font-size: 1.3rem; }
.brand-v { font-style: italic; }
.brand-heart { color: var(--red); font-size: .85rem; transform: translateY(-6px); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > a {
  font-weight: 500; font-size: .93rem; color: var(--ink-soft);
  padding: 9px 13px; border-radius: 10px; transition: color .15s ease, background .15s ease;
}
.nav-links > a:hover { color: var(--ink); background: var(--ivory-2); }
.nav-links > a.active { color: var(--gold-deep); }
.nav-cta { margin-left: 8px; padding: 10px 20px; font-size: .9rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; padding: 96px 0 90px; overflow: hidden; text-align: center; }
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px); z-index: 0; opacity: .8;
}
.hero::before { width: 520px; height: 520px; top: -180px; right: -120px;
  background: radial-gradient(circle, rgba(245,197,24,.30), transparent 70%); }
.hero::after { width: 460px; height: 460px; bottom: -200px; left: -120px;
  background: radial-gradient(circle, rgba(201,162,39,.22), transparent 70%); }
.hero .container { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); margin-top: 22px; letter-spacing: -.5px; }
.hero p.lead { font-size: clamp(1.05rem, 2vw, 1.28rem); max-width: 640px; margin: 0 auto 30px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.trust-row { display: flex; gap: 26px; justify-content: center; flex-wrap: wrap; margin-top: 34px; color: var(--ink-soft); font-size: .9rem; }
.trust-row .stars { color: var(--gold); letter-spacing: 2px; }
.trust-row b { color: var(--ink); }

/* ---------- feature cards ---------- */
.alt { background: linear-gradient(180deg, var(--ivory) 0%, var(--white) 100%); }
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line); }
.card .ico {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  font-size: 26px; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--champagne), #fff);
  border: 1px solid var(--line); box-shadow: inset 0 0 0 1px rgba(255,255,255,.6);
}
.card h3 { font-size: 1.28rem; }
.card p { margin: 0; font-size: .96rem; }

/* ---------- steps ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 70px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 2px; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; font-family: "Playfair Display", serif; font-weight: 700;
  color: #2a1f05; background: var(--gold-grad-2); box-shadow: var(--shadow);
}

/* ---------- download band ---------- */
.band {
  background:
    radial-gradient(circle at 12% 20%, rgba(245,197,24,.18), transparent 45%),
    radial-gradient(circle at 88% 80%, rgba(201,162,39,.16), transparent 45%),
    var(--ivory);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  text-align: center;
}
.band h2 { font-size: clamp(2rem, 4vw, 3rem); }
.band .hero-cta { margin-top: 26px; }

/* ---------- generic page ---------- */
.page-hero { padding: 70px 0 40px; text-align: center; position: relative; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin-top: 1.8em; color: var(--ink); }
.prose h3 { font-size: 1.15rem; margin-top: 1.3em; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: .5em; }
.prose a { color: var(--gold-deep); font-weight: 600; }
.prose .updated { font-size: .88rem; color: var(--ink-soft); font-style: italic; }
.divider { height: 1px; background: var(--line); margin: 18px 0 0; border: 0; }

/* ---------- faq ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--white); border: 1px solid var(--line-soft); border-radius: 14px;
  padding: 4px 22px; margin-bottom: 14px; box-shadow: var(--shadow-soft);
}
.faq details[open] { border-color: var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 16px 0; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-deep); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding-bottom: 18px; margin: 0; }

/* ---------- contact / callout ---------- */
.callout {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: linear-gradient(180deg, var(--ivory), var(--white));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 30px; box-shadow: var(--shadow-soft);
}
.callout .big-mail { font-family: "Playfair Display", serif; font-size: clamp(1.4rem, 3.5vw, 2rem); }
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 820px; margin: 0 auto; }
.contact-card { background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-soft); }
.contact-card .ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; font-size: 24px; margin-bottom: 14px; background: linear-gradient(135deg, var(--champagne), #fff); border: 1px solid var(--line); }
.contact-card h3 { font-size: 1.2rem; }
.contact-card a.link { color: var(--gold-deep); font-weight: 600; }
.note-red { border-left: 3px solid var(--red); background: rgba(229,72,77,.05); padding: 14px 18px; border-radius: 8px; }

/* ---------- footer ---------- */
.site-footer { background: var(--ivory); border-top: 1px solid var(--line); padding: 56px 0 28px; margin-top: 10px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
.footer-brand p { font-size: .92rem; margin: 14px 0 12px; max-width: 320px; }
.footer-mail { color: var(--gold-deep); font-weight: 600; }
.footer-col h4 { font-family: "Poppins", sans-serif; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.footer-col a { display: block; color: var(--ink-soft); font-size: .93rem; padding: 5px 0; }
.footer-col a:hover { color: var(--gold-deep); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); font-size: .86rem; color: var(--ink-soft); }
.footer-links a { margin-left: 18px; }
.footer-links a:hover { color: var(--gold-deep); }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  section { padding: 64px 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    gap: 2px; background: rgba(255,255,255,.98); backdrop-filter: blur(12px);
    padding: 14px 18px 20px; border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .22s ease;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links > a { padding: 12px 10px; }
  .nav-cta { margin: 8px 0 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-cta { flex-direction: column; }
}
