/* ============================================================
   WedPlan — Wedding Planning Software (weddingplanning.in)
   Design system: "Ceremony meets System"
   A product of EbizIndia Consulting Pvt. Ltd.
   Vanilla CSS3. No framework. Mobile-first.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Indian-wedding palette */
  --wine:        #6E1423;
  --wine-deep:   #4A0E18;
  --marigold:    #E8871E;
  --marigold-dk: #C96E10;
  --gold:        #C8A24B;
  --gold-soft:   #E9D6A3;
  --ivory:       #FBF6EE;
  --ivory-2:     #F4EADA;
  --henna:       #1F5E4E;
  --ink:         #2A171A;
  --muted:       #6E5A55;
  --line:        #E6D8C5;
  --white:       #ffffff;

  /* Typography */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --container: 1180px;
  --gap: clamp(1rem, 2vw, 1.6rem);
  --section-y: clamp(3.5rem, 7vw, 6.5rem);

  /* Shape & depth */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(74, 14, 24, .07);
  --shadow-md: 0 10px 34px rgba(74, 14, 24, .12);
  --shadow-lg: 0 24px 60px rgba(74, 14, 24, .18);
  --ease: 0.25s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--wine); text-decoration: none; }
a:hover { color: var(--marigold-dk); }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--marigold); outline-offset: 2px; border-radius: 4px; }

/* ---------- Type scale ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--wine-deep); letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 1.5rem + 3vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 1.3rem + 1.8vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + .6vw, 1.55rem); }
h4 { font-size: 1.15rem; }
p { margin-bottom: 1rem; }
.lead { font-size: clamp(1.1rem, 1rem + .5vw, 1.3rem); color: var(--muted); }
strong { font-weight: 600; color: var(--wine); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: var(--section-y); }
.section--ivory2 { background: var(--ivory-2); }
.section--wine { background: linear-gradient(160deg, var(--wine) 0%, var(--wine-deep) 100%); color: var(--gold-soft); position: relative; }
.section--wine h2, .section--wine h3 { color: var(--white); }
.section--wine .lead { color: var(--gold-soft); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.maxw-680 { max-width: 680px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: .8rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--marigold-dk);
  margin-bottom: .9rem;
}
.section--wine .eyebrow { color: var(--gold); }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: currentColor; opacity: .7; }

/* ---------- Filigree divider (signature motif) ---------- */
.filigree { display: block; margin: 1.4rem auto; width: 168px; height: 22px; color: var(--gold); opacity: .9; }
.filigree--light { color: var(--gold-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.6rem; border-radius: 999px; min-height: 48px;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease);
  text-align: center; white-space: nowrap; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(180deg, var(--marigold), var(--marigold-dk)); color: #fff; box-shadow: 0 8px 22px rgba(201, 110, 16, .35); }
.btn-primary:hover { color: #fff; box-shadow: 0 12px 30px rgba(201, 110, 16, .45); }
.btn-gold { background: linear-gradient(180deg, var(--gold-soft), var(--gold)); color: var(--wine-deep); box-shadow: 0 8px 22px rgba(200, 162, 75, .35); }
.btn-gold:hover { color: var(--wine-deep); }
.btn-ghost { background: transparent; color: var(--wine); border: 1.5px solid var(--gold); }
.btn-ghost:hover { background: rgba(200, 162, 75, .12); color: var(--wine); }
.section--wine .btn-ghost,
.hero .btn-ghost,
.page-hero .btn-ghost { color: var(--gold-soft); border-color: var(--gold); }
.section--wine .btn-ghost:hover,
.hero .btn-ghost:hover,
.page-hero .btn-ghost:hover { background: rgba(233, 214, 163, .14); color: #fff; }
/* Restore correct contrast for ghost buttons sitting on light cards inside a wine section */
.card .btn-ghost,
.price-card .btn-ghost,
.offer-band .btn-ghost,
.form-card .btn-ghost { color: var(--wine); border-color: var(--gold); }
.card .btn-ghost:hover,
.price-card .btn-ghost:hover,
.offer-band .btn-ghost:hover,
.form-card .btn-ghost:hover { background: rgba(200, 162, 75, .12); color: var(--wine); }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.08rem; min-height: 56px; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251, 246, 238, .88); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 600; font-size: 1.45rem; color: var(--wine-deep); }
.brand:hover { color: var(--wine-deep); }
.brand .mark { width: 38px; height: 38px; flex: none; }
.brand small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--marigold-dk); }
.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a.navlink { font-weight: 500; color: var(--ink); padding: .55rem .8rem; border-radius: var(--r-sm); font-size: .98rem; transition: background var(--ease), color var(--ease); }
.nav-links a.navlink:hover, .nav-links a.navlink[aria-current="page"] { background: rgba(200, 162, 75, .16); color: var(--wine); }
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.nav-login { font-weight: 600; color: var(--wine); padding: .5rem .9rem; border-radius: 999px; border: 1.5px solid var(--line); }
.nav-login:hover { border-color: var(--gold); color: var(--wine); }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: var(--r-sm); align-items: center; justify-content: center; color: var(--wine); }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .15rem;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    padding: 1rem clamp(1.1rem, 4vw, 2rem) 1.4rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-130%); transition: transform var(--ease); z-index: 55;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a.navlink { padding: .8rem .9rem; font-size: 1.05rem; }
  .desktop-only-login { display: none; }
}
@media (min-width: 961px) { .mobile-only { display: none !important; } }

/* ---------- Hero ---------- */
.hero { position: relative; background: linear-gradient(155deg, var(--wine) 0%, var(--wine-deep) 100%); color: #fff; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 18% 22%, rgba(200,162,75,.18), transparent 32%),
                    radial-gradient(circle at 84% 12%, rgba(232,135,30,.16), transparent 30%);
  pointer-events: none;
}
.hero-mandala { position: absolute; pointer-events: none; opacity: .14; color: var(--gold); }
.hero-mandala.tl { top: -90px; left: -90px; width: 300px; transform: rotate(8deg); }
.hero-mandala.br { bottom: -120px; right: -110px; width: 360px; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; padding-block: clamp(3rem, 6vw, 5.5rem); }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--gold-soft); font-style: italic; }
.hero .lead { color: var(--gold-soft); max-width: 40ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(233,214,163,.25); }
.hero-trust .t { display: flex; flex-direction: column; }
.hero-trust .t b { font-family: var(--font-display); font-size: 1.6rem; color: var(--gold-soft); line-height: 1; }
.hero-trust .t span { font-size: .82rem; color: rgba(255,255,255,.75); letter-spacing: .02em; }

/* Hero invitation-card panel */
.invite-card {
  position: relative; background: var(--ivory); color: var(--ink);
  border-radius: var(--r-lg); padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gold);
}
.invite-card::after {
  content: ""; position: absolute; inset: 10px; border: 1px solid var(--gold-soft);
  border-radius: calc(var(--r-lg) - 10px); pointer-events: none;
}
.invite-card .ic-eyebrow { text-align: center; color: var(--marigold-dk); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; font-size: .76rem; }
.invite-card h3 { text-align: center; margin: .35rem 0 .2rem; }
.invite-card .ic-sub { text-align: center; color: var(--muted); font-size: .92rem; margin-bottom: 1.1rem; }
.invite-list { display: grid; gap: .55rem; margin: 0 0 1.2rem; }
.invite-list li { display: flex; gap: .6rem; align-items: flex-start; font-size: .96rem; }
.invite-list li svg { width: 20px; height: 20px; flex: none; color: var(--henna); margin-top: 2px; }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .invite-card { order: 2; }
}

/* ---------- Generic grids & cards ---------- */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.5rem; box-shadow: var(--shadow-sm); transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.card h3, .card h4 { color: var(--wine-deep); margin-bottom: .4rem; }
.card p { color: var(--muted); margin-bottom: 0; font-size: .96rem; }

/* Feature card icon */
.feat-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(232,135,30,.16), rgba(200,162,75,.16));
  color: var(--wine); margin-bottom: 1rem;
}
.feat-icon svg { width: 28px; height: 28px; }

/* Audience cards */
.aud-card { position: relative; overflow: hidden; }
.aud-card .feat-icon { background: linear-gradient(150deg, rgba(110,20,35,.1), rgba(31,94,78,.12)); }
.aud-card .tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--marigold-dk); background: rgba(232,135,30,.12); padding: .25rem .6rem; border-radius: 999px; margin-bottom: .8rem; }

/* ---------- Steps (how it works) ---------- */
.steps { counter-reset: step; }
.step { display: flex; gap: 1.1rem; align-items: flex-start; }
.step .num {
  counter-increment: step; flex: none; width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 600; font-size: 1.2rem;
  background: var(--wine); color: var(--gold-soft); box-shadow: var(--shadow-sm);
}
.step .num::before { content: counter(step); }
.step h4 { margin-bottom: .25rem; }
.step p { color: var(--muted); margin-bottom: 0; }

/* ---------- Comparison (Excel vs WedPlan) ---------- */
.vs { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
@media (max-width: 680px) { .vs { grid-template-columns: 1fr; } }
.vs-col { border-radius: var(--r-md); padding: 1.6rem; }
.vs-bad { background: #fff; border: 1px dashed #d9b8b8; }
.vs-good { background: #fff; border: 2px solid var(--gold); box-shadow: var(--shadow-md); }
.vs-col h3 { display: flex; align-items: center; gap: .5rem; }
.vs-col ul { display: grid; gap: .65rem; margin-top: 1rem; }
.vs-col li { display: flex; gap: .6rem; align-items: flex-start; font-size: .98rem; color: var(--ink); }
.vs-col li svg { width: 20px; height: 20px; flex: none; margin-top: 2px; }
.vs-bad li svg { color: #b5453b; }
.vs-good li svg { color: var(--henna); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); align-items: stretch; }
@media (max-width: 980px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.7rem 1.4rem;
  display: flex; flex-direction: column; box-shadow: var(--shadow-sm); transition: transform var(--ease), box-shadow var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured { border: 2px solid var(--gold); position: relative; box-shadow: var(--shadow-md); }
.price-card.featured::before {
  content: "Most popular for planners"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--marigold), var(--marigold-dk)); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em; padding: .3rem .85rem; border-radius: 999px; white-space: nowrap;
}
.price-card .plan-name { font-weight: 600; color: var(--wine); font-size: 1.05rem; }
.price-card .plan-for { color: var(--muted); font-size: .86rem; min-height: 2.4em; margin-bottom: .8rem; }
.price-card .amount { font-family: var(--font-display); font-size: 2.1rem; color: var(--wine-deep); line-height: 1; }
.price-card .amount span { font-family: var(--font-body); font-size: .9rem; color: var(--muted); font-weight: 500; }
.price-card .per { font-size: .82rem; color: var(--muted); margin-bottom: 1rem; }
.price-card ul { display: grid; gap: .5rem; margin: .4rem 0 1.4rem; }
.price-card li { display: flex; gap: .5rem; font-size: .9rem; align-items: flex-start; }
.price-card li svg { width: 18px; height: 18px; color: var(--henna); flex: none; margin-top: 3px; }
.price-card .btn { margin-top: auto; }

/* ---------- Testimonials ---------- */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.7rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.quote-card .stars { color: var(--marigold); letter-spacing: 2px; margin-bottom: .6rem; }
.quote-card blockquote { font-size: 1rem; color: var(--ink); line-height: 1.6; margin-bottom: 1rem; }
.quote-card .who { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.avatar { width: 46px; height: 46px; border-radius: 50%; flex: none; display: grid; place-items: center; font-weight: 700; color: #fff; background: linear-gradient(150deg, var(--wine), var(--marigold-dk)); font-family: var(--font-display); }
.who .nm { font-weight: 600; color: var(--wine-deep); font-size: .95rem; }
.who .loc { font-size: .82rem; color: var(--muted); }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--r-md); background: #fff; margin-bottom: .8rem; overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; text-align: left; padding: 1.1rem 1.3rem; font-family: var(--font-display); font-size: 1.1rem; color: var(--wine-deep); }
.faq-q .chev { flex: none; width: 24px; height: 24px; color: var(--marigold-dk); transition: transform var(--ease); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a > div { padding: 0 1.3rem 1.2rem; color: var(--muted); }
.faq-item.open .faq-a { max-height: 600px; }

/* ---------- Planner offer band ---------- */
.offer-band { border-radius: var(--r-lg); padding: clamp(1.6rem, 4vw, 2.6rem); background: #fff; border: 1px solid var(--gold-soft); box-shadow: var(--shadow-md); }
.offer-band .pill { display: inline-block; background: var(--henna); color: #fff; font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 999px; margin-bottom: .8rem; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: clamp(1.4rem, 3vw, 2rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--wine-deep); margin-bottom: .35rem; }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--ink); background: var(--ivory);
  border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: .8rem .9rem; transition: border-color var(--ease), box-shadow var(--ease);
}
.field input:focus, .field textarea:focus { border-color: var(--marigold); box-shadow: 0 0 0 3px rgba(232,135,30,.15); outline: none; }
.field .hint { font-size: .8rem; color: var(--muted); margin-top: .3rem; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-privacy { display: flex; gap: .5rem; align-items: flex-start; font-size: .82rem; color: var(--muted); margin-top: .8rem; }
.form-privacy svg { width: 18px; height: 18px; color: var(--henna); flex: none; margin-top: 1px; }
.form-success { display: none; text-align: center; padding: 1rem; }
.form-success.show { display: block; }
.form-success .tick { width: 64px; height: 64px; margin: 0 auto 1rem; color: var(--henna); }

/* ---------- Modal ---------- */
.modal-backdrop { position: fixed; inset: 0; background: rgba(42,23,26,.6); backdrop-filter: blur(3px); z-index: 100; display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal-backdrop.open { display: flex; }
.modal { background: var(--ivory); border-radius: var(--r-lg); max-width: 480px; width: 100%; padding: clamp(1.5rem, 4vw, 2.2rem); position: relative; box-shadow: var(--shadow-lg); border: 1px solid var(--gold); max-height: 92vh; overflow-y: auto; }
.modal .close { position: absolute; top: .9rem; right: .9rem; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; color: var(--wine); background: rgba(110,20,35,.06); }
.modal .close:hover { background: rgba(110,20,35,.12); }
.modal h3 { text-align: center; }
.modal .modal-sub { text-align: center; color: var(--muted); margin-bottom: 1.3rem; font-size: .95rem; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.cta-band .lead { margin: .8rem auto 1.6rem; max-width: 52ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--wine-deep); color: rgba(255,255,255,.75); padding-block: clamp(3rem, 5vw, 4rem) 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--gold-soft); font-family: var(--font-body); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--gold-soft); }
.footer-brand { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-size: 1.4rem; color: #fff; margin-bottom: .8rem; }
.footer-brand .mark { width: 34px; height: 34px; }
.footer-links { display: grid; gap: .55rem; font-size: .94rem; }
.footer-contact { font-size: .92rem; display: grid; gap: .5rem; }
.footer-contact a { display: inline-flex; gap: .5rem; align-items: center; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.5rem; padding-top: 1.4rem; font-size: .84rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; align-items: center; }
.footer-bottom .copy { max-width: 70ch; }
.parent-badge { display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.07); border: 1px solid rgba(200,162,75,.3); border-radius: 999px; padding: .4rem .9rem; font-size: .82rem; color: var(--gold-soft); }

/* ---------- Floating widgets ---------- */
.float-stack { position: fixed; right: 18px; bottom: 18px; z-index: 70; display: flex; flex-direction: column; gap: .7rem; }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: var(--shadow-md); transition: transform var(--ease); }
.fab:hover { transform: scale(1.07); }
.fab svg { width: 28px; height: 28px; }
.fab-wa { background: #25D366; color: #fff; }
.fab-music { background: var(--ivory); color: var(--wine); border: 1.5px solid var(--gold); }
.fab-music.playing { background: var(--gold); color: var(--wine-deep); }
.fab-music .ico-pause { display: none; }
.fab-music.playing .ico-play { display: none; }
.fab-music.playing .ico-pause { display: block; }

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 65; display: none; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); box-shadow: 0 -6px 20px rgba(74,14,24,.14); }
.mobile-bar a { background: var(--ivory); color: var(--wine); display: flex; align-items: center; justify-content: center; gap: .5rem; padding: .9rem; font-weight: 600; font-size: .98rem; min-height: 54px; }
.mobile-bar a.primary { background: linear-gradient(180deg, var(--marigold), var(--marigold-dk)); color: #fff; }
.mobile-bar svg { width: 20px; height: 20px; }
@media (max-width: 760px) {
  .mobile-bar { display: grid; }
  body { padding-bottom: 56px; }
  .float-stack { bottom: 70px; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(155deg, var(--wine) 0%, var(--wine-deep) 100%); color: #fff; padding-block: clamp(2.6rem, 5vw, 4rem); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 20%, rgba(200,162,75,.16), transparent 40%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: var(--gold-soft); max-width: 60ch; }
.breadcrumb { font-size: .85rem; color: var(--gold-soft); margin-bottom: .7rem; }
.breadcrumb a { color: var(--gold-soft); }
.breadcrumb a:hover { color: #fff; }

/* ---------- Misc ---------- */
.muted { color: var(--muted); }
.note { background: rgba(31,94,78,.08); border-left: 4px solid var(--henna); border-radius: var(--r-sm); padding: 1rem 1.2rem; font-size: .94rem; color: var(--ink); }
/* Icons that lead a card heading or note: keep them inline and text-sized, not full-width blocks. */
.card h4 svg, .note svg { width: 1.15em; height: 1.15em; display: inline-block; vertical-align: -.18em; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.4rem; }
.prose ul { display: grid; gap: .5rem; margin: .5rem 0 1.2rem 1.2rem; list-style: disc; }
.prose ul li { padding-left: .3rem; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--wine); color: #fff; padding: .7rem 1rem; border-radius: 0 0 var(--r-sm) 0; z-index: 200; }
.skip-link:focus { left: 0; color: #fff; }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
