/* =========================================================
   Sefali — Premium Devotional Lifestyle (static HTML/CSS/JS)
   ========================================================= */

:root {
  --bg: #F5F1EA;
  --bg-2: #E9DFC8;
  --olive: #3E513B;
  --olive-dark: #2C3A2A;
  --gold: #D6A84F;
  --gold-dark: #C29542;
  --muted: #666666;
  --text-body: #5F5F5F;
  --white: #FFFFFF;
  --shadow-soft: 0 8px 30px rgba(62, 81, 59, 0.08);
  --shadow-hover: 0 18px 50px rgba(62, 81, 59, 0.14);
  --shadow-strong: 0 30px 80px rgba(62, 81, 59, 0.18);
  --container: 1200px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--olive);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input { font-family: inherit; }

::selection { background: rgba(214, 168, 79, 0.4); color: var(--olive); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: var(--olive); border-radius: 999px; }

/* ---------- Typography ---------- */
body { font-size: 16px; color: #5F5F5F; }
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--olive);
  letter-spacing: -0.01em;
  line-height: 1.12;
  font-weight: 600;
}
.font-script { font-family: 'Dancing Script', cursive; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}
.eyebrow::before, .eyebrow::after {
  content: ""; width: 36px; height: 1px; background: currentColor; opacity: 0.6;
}

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-tight { padding: 64px 0; }

/* ---------- Buttons ---------- */
.btn { font-family: 'Inter', sans-serif; display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; border-radius: 999px; font-size: 15px; font-weight: 600; letter-spacing: 0.01em; transition: transform .25s ease, background-color .25s ease, color .25s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--olive); color: var(--bg); }
.btn-primary:hover { background: var(--olive-dark); }
.btn-outline { border: 1px solid rgba(62,81,59,0.25); color: var(--olive); }
.btn-outline:hover { background: var(--olive); color: var(--bg); }
.btn-gold { background: var(--gold); color: var(--olive); }
.btn-gold:hover { background: var(--gold-dark); }
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--bg-2);
  border-bottom: 1px solid rgba(62, 81, 59, 0.10);
  font-size: 13px;
}
.announce .container {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 10px; padding-bottom: 10px;
}
.announce-left { display: inline-flex; gap: 8px; align-items: center; }
.announce-left::before { content: "✦"; color: var(--gold); }
.announce-right { display: flex; gap: 24px; }
.announce-right a { transition: color .2s; display: inline-flex; align-items: center; gap: 6px; }
.announce-right a:hover { color: var(--gold); }
@media (max-width: 720px) { .announce-right { display: none; } }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245, 241, 234, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(62, 81, 59, 0.10);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 12px; padding-bottom: 12px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 64px; width: auto; object-fit: contain; margin: -10px 0; }
.nav { display: flex; gap: 30px; }
.nav a { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500; color: rgba(62,81,59,0.75); padding: 6px 0; transition: color .2s; }
.nav a:hover, .nav a.active { color: var(--olive); }
.nav a.active { border-bottom: 1px solid var(--gold); }
.header-tools { display: flex; align-items: center; gap: 10px; }
.search {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(62,81,59,0.10);
  border-radius: 999px; padding: 7px 14px; width: 220px;
}
.search input { background: transparent; border: 0; outline: 0; font-size: 14px; color: var(--olive); flex: 1; }
.search input::placeholder { color: rgba(62,81,59,0.4); }
.icon-btn {
  width: 40px; height: 40px; border-radius: 999px;
  background: rgba(255,255,255,0.6); border: 1px solid rgba(62,81,59,0.10);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color .2s;
}
.icon-btn:hover { background: white; }
.cart-badge {
  position: relative;
}
.cart-badge .dot {
  position: absolute; top: -4px; right: -4px;
  background: var(--gold); color: var(--olive); font-size: 10px; font-weight: 700;
  width: 18px; height: 18px; border-radius: 999px; display: flex; align-items: center; justify-content: center;
}
.hamburger { display: none; }
@media (max-width: 1023px) {
  .nav, .search { display: none; }
  .hamburger { display: inline-flex; }
}
.mobile-menu { display: none; border-top: 1px solid rgba(62,81,59,0.10); background: var(--bg); }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 14px 24px; color: var(--olive); font-weight: 500; border-bottom: 1px solid rgba(62,81,59,0.06); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 64px 0 96px; }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 999px; filter: blur(80px); z-index: 0; }
.hero::before { width: 360px; height: 360px; background: rgba(214,168,79,0.15); top: -100px; left: -80px; }
.hero::after { width: 500px; height: 500px; background: rgba(62,81,59,0.06); bottom: -200px; right: -100px; }
.hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(44px, 6vw, 72px); margin-top: 18px; font-weight: 600; letter-spacing: -1px; line-height: 1.05; }
.hero h1 em { font-style: italic; font-weight: 500; }
.hero p.lead { color: var(--text-body); margin-top: 22px; font-size: 18px; line-height: 1.7; max-width: 480px; }
.hero-cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }
.trust-pills { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 28px; }
.trust-pills span { display: inline-flex; align-items: center; gap: 8px; color: rgba(62,81,59,0.8); font-size: 14px; }
.tick { width: 20px; height: 20px; border-radius: 999px; background: rgba(214,168,79,0.25); color: var(--olive); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.app-note {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 38px;
  background: rgba(255,255,255,0.6); border: 1px solid rgba(62,81,59,0.10);
  padding: 8px 18px 8px 8px; border-radius: 999px; font-size: 13px;
}
.app-note .ic { width: 32px; height: 32px; border-radius: 999px; background: rgba(62,81,59,0.10); display: inline-flex; align-items: center; justify-content: center; }
.app-note a { font-weight: 600; text-decoration: underline; text-underline-offset: 4px; }
.app-note a:hover { color: var(--gold); }

.hero-visual { position: relative; }
.hero-img {
  position: relative; aspect-ratio: 4/4.4; border-radius: 32px; overflow: hidden;
  box-shadow: var(--shadow-strong); background: var(--bg-2);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(45deg, rgba(62,81,59,0.18), transparent 55%, rgba(214,168,79,0.12));
  pointer-events: none;
}

/* CSS phone mockup */
.phone {
  position: absolute; right: -20px; top: 60px; width: 220px;
  border-radius: 34px; background: white; padding: 12px;
  border: 6px solid rgba(62,81,59,0.95); box-shadow: 0 30px 60px rgba(62,81,59,0.25);
  animation: float 6s ease-in-out infinite;
}
.phone-screen { border-radius: 24px; background: var(--bg); overflow: hidden; padding: 14px 0 12px; }
.phone-screen .head { display: flex; align-items: center; justify-content: space-between; padding: 0 14px; }
.phone-screen .head .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--gold); }
.phone-screen .greet { padding: 8px 14px 0; font-size: 10px; color: rgba(62,81,59,0.7); }
.phone-screen .greet b { display: block; color: var(--olive); font-weight: 600; }
.phone-card { margin: 12px; background: white; border: 1px solid rgba(62,81,59,0.10); border-radius: 16px; padding: 10px 12px; }
.phone-card .label { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(62,81,59,0.5); }
.phone-card .title { font-family: 'Cormorant Garamond', serif; font-size: 14px; font-weight: 600; color: var(--olive); margin-top: 2px; }
.phone-card .row { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.phone-card .row .swatch { width: 26px; height: 26px; border-radius: 999px; background: rgba(214,168,79,0.30); display: flex; align-items: center; justify-content: center; }
.phone-card .row .swatch span { width: 12px; height: 12px; border-radius: 999px; background: var(--gold); }
.phone-card .row p { font-size: 9px; color: rgba(62,81,59,0.6); }
.phone-card .row p b { display: block; color: var(--olive); font-size: 10px; }
.phone-festivals { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 0 12px 8px; }
.phone-festivals div { background: white; border: 1px solid rgba(62,81,59,0.10); border-radius: 12px; padding: 8px 10px; }
.phone-festivals .l { font-size: 9px; color: rgba(62,81,59,0.55); }
.phone-festivals .d { font-size: 10px; font-weight: 600; color: var(--olive); }

.badge-circle {
  position: absolute; bottom: -22px; left: 6px;
  width: 132px; height: 132px; border-radius: 999px;
  background: var(--gold); color: var(--olive); transform: rotate(-8deg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; box-shadow: var(--shadow-strong);
}
.badge-circle .l { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; }
.badge-circle .m { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 28px; font-weight: 600; margin-top: 4px; line-height: 1; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .phone { display: none; }
}

/* ---------- Trust bar ---------- */
.trust-bar { background: white; border-top: 1px solid rgba(62,81,59,0.08); border-bottom: 1px solid rgba(62,81,59,0.08); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-grid > div { padding: 36px 18px; text-align: center; border-right: 1px solid rgba(62,81,59,0.08); display: flex; flex-direction: column; align-items: center; gap: 10px; }
.trust-grid > div:last-child { border-right: none; }
.trust-icon { width: 48px; height: 48px; border-radius: 999px; border: 1px solid rgba(62,81,59,0.18); display: flex; align-items: center; justify-content: center; color: var(--olive); }
.trust-grid h4 { font-size: 19px; font-weight: 600; }
.trust-grid p { font-size: 13px; color: var(--text-body); max-width: 200px; line-height: 1.65; }
@media (max-width: 800px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } .trust-grid > div { border: none; border-bottom: 1px solid rgba(62,81,59,0.08); } }

/* ---------- Section headings ---------- */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(32px, 4.5vw, 48px); margin-top: 12px; font-weight: 600; }
.section-head a { font-size: 14px; font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.section-head a:hover { color: var(--gold); }
.text-center { text-align: center; }
.text-center .eyebrow { display: inline-flex; }

/* ---------- Category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cat-card { position: relative; aspect-ratio: 1; border-radius: 28px; overflow: hidden; background: var(--bg-2); box-shadow: var(--shadow-soft); transition: transform .5s ease, box-shadow .5s ease; }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.cat-card:hover img { transform: scale(1.05); }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(62,81,59,0.78), rgba(62,81,59,0.05) 55%, transparent); }
.cat-meta { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px; display: flex; justify-content: space-between; align-items: center; color: var(--bg); z-index: 1; }
.cat-meta h3 { color: var(--bg); font-size: 22px; font-weight: 600; }
.cat-meta .arrow-btn { width: 32px; height: 32px; border-radius: 999px; background: var(--gold); color: var(--olive); display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateX(6px); transition: all .3s; }
.cat-card:hover .arrow-btn { opacity: 1; transform: translateX(0); }
@media (max-width: 1000px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- How subscription works + App promo ---------- */
.split { display: grid; grid-template-columns: 3fr 2fr; gap: 28px; }
.card-soft { background: var(--bg); border-radius: 32px; padding: 48px; }
.card-dark { position: relative; overflow: hidden; background: var(--olive); color: var(--bg); border-radius: 32px; padding: 40px; min-height: 420px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.step { position: relative; background: white; border: 1px solid rgba(62,81,59,0.06); border-radius: 18px; padding: 24px; }
.step .num { position: absolute; top: -14px; left: -14px; width: 36px; height: 36px; border-radius: 999px; background: var(--gold); color: var(--olive); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 20px; box-shadow: 0 6px 12px rgba(0,0,0,0.08); }
.step h3 { font-size: 22px; margin: 14px 0 6px; font-weight: 600; }
.step p { font-size: 14px; color: var(--text-body); line-height: 1.7; }
.step .icon { color: var(--olive); }
.step + .step::before { content: "→"; position: absolute; left: -20px; top: 50%; transform: translateY(-50%); color: var(--gold); font-size: 18px; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } .step + .step::before { display: none; } .split { grid-template-columns: 1fr; } }
.app-promo h3 { color: var(--bg); font-size: 28px; margin-top: 10px; line-height: 1.25; }
.app-promo .tag { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.app-promo ul { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.app-promo ul li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; }
.app-promo ul li .tick { background: var(--gold); color: var(--olive); }
.app-promo .btn { margin-top: 26px; }
.petal { position: absolute; border-radius: 999px; }
.petal.p1 { top: 24px; right: 28px; width: 12px; height: 24px; background: rgba(214,168,79,0.6); transform: rotate(12deg); }
.petal.p2 { top: 80px; right: 70px; width: 8px; height: 16px; background: rgba(245,241,234,0.4); transform: rotate(-12deg); }
.petal.p3 { bottom: 48px; left: 36px; width: 12px; height: 24px; background: rgba(214,168,79,0.45); transform: rotate(45deg); }

/* small CSS phone in card-dark */
.mini-phone { position: absolute; bottom: -48px; right: -16px; width: 150px; transform: rotate(8deg); animation: float 6s ease-in-out infinite; }
.mini-phone .body { border-radius: 24px; background: var(--bg); border: 5px solid var(--olive-dark); padding: 8px; box-shadow: 0 20px 50px rgba(0,0,0,0.30); }
.mini-phone .screen { border-radius: 16px; background: white; padding: 12px; }
.mini-phone .name { font-family: 'Dancing Script', cursive; font-size: 18px; color: var(--olive); line-height: 1; }
.mini-phone .b1 { height: 6px; width: 75%; background: rgba(214,168,79,0.4); border-radius: 999px; margin-top: 10px; }
.mini-phone .b2 { height: 6px; width: 60%; background: rgba(62,81,59,0.15); border-radius: 999px; margin-top: 6px; }
.mini-phone .card-x { margin-top: 12px; background: var(--bg); border-radius: 12px; padding: 8px; }
.mini-phone .card-x .l { height: 6px; width: 50%; background: rgba(62,81,59,0.30); border-radius: 999px; }
.mini-phone .card-x .m { height: 4px; width: 75%; background: rgba(62,81,59,0.15); border-radius: 999px; margin-top: 6px; }
@media (max-width: 700px) { .mini-phone { display: none; } }

/* ---------- Products / Bestsellers ---------- */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product { background: white; border: 1px solid rgba(62,81,59,0.05); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-soft); transition: transform .5s, box-shadow .5s; }
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.product .img { position: relative; aspect-ratio: 4/3; background: var(--bg-2); overflow: hidden; }
.product .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.product:hover .img img { transform: scale(1.05); }
.product .tag {
  position: absolute; top: 12px; left: 12px; background: var(--olive); color: var(--bg);
  border-radius: 999px; padding: 5px 12px; font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
}
.product .fav {
  position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 999px;
  background: rgba(255,255,255,0.9); color: var(--olive); display: inline-flex; align-items: center; justify-content: center;
  transition: color .2s, background-color .2s;
}
.product .fav:hover { color: var(--gold); }
.product .meta { padding: 20px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.product .meta h3 { font-size: 22px; font-weight: 600; }
.product .meta .price { color: var(--gold); font-weight: 600; margin-top: 4px; font-size: 15px; font-family: 'Inter', sans-serif; }
.product .add { width: 40px; height: 40px; border-radius: 999px; background: var(--olive); color: var(--bg); display: inline-flex; align-items: center; justify-content: center; transition: background-color .2s; }
.product .add:hover { background: var(--olive-dark); }
@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Festivals ---------- */
.festival-row { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 16px; }
.festival-row::-webkit-scrollbar { display: none; }
.festival { flex: 0 0 300px; scroll-snap-align: start; border-radius: 24px; overflow: hidden; background: var(--bg); border: 1px solid rgba(62,81,59,0.06); transition: transform .5s; }
.festival:hover { transform: translateY(-4px); }
.festival .img { position: relative; aspect-ratio: 5/4; overflow: hidden; }
.festival .img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.festival:hover .img img { transform: scale(1.05); }
.festival .img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(62,81,59,0.7), transparent 60%); }
.festival .date {
  position: absolute; top: 14px; left: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,241,234,0.95); backdrop-filter: blur(6px);
  border-radius: 999px; padding: 6px 12px; font-size: 11px; font-weight: 500;
}
.festival .body { padding: 18px; }
.festival .body h3 { font-size: 24px; font-weight: 600; }
.festival .body a { font-size: 13px; font-weight: 500; color: var(--gold); display: inline-flex; align-items: center; gap: 4px; margin-top: 6px; }

/* ---------- Brand story ---------- */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-img { position: relative; aspect-ratio: 4/4.6; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-strong); }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(45deg, rgba(62,81,59,0.15), transparent); }
.story-badge { position: absolute; bottom: -32px; right: -28px; width: 168px; height: 168px; border-radius: 999px; background: var(--gold); color: var(--olive); display: flex; align-items: center; justify-content: center; text-align: center; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 22px; padding: 20px; line-height: 1.2; box-shadow: var(--shadow-strong); }
.story-content h2 { font-size: clamp(32px, 4.5vw, 48px); margin-top: 14px; font-weight: 600; }
.story-content p { margin-top: 22px; color: var(--text-body); font-size: 18px; line-height: 1.7; max-width: 480px; }
.story-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; max-width: 420px; }
.story-stats div { background: white; border: 1px solid rgba(62,81,59,0.05); border-radius: 18px; padding: 16px; text-align: center; }
.story-stats .v { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; color: var(--olive); }
.story-stats .l { font-size: 12px; color: var(--text-body); margin-top: 4px; }
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; gap: 40px; } .story-badge { display: none; } }

/* ---------- Testimonials ---------- */
.testi { background: var(--bg); border-radius: 32px; padding: 56px 48px; position: relative; max-width: 760px; margin: 0 auto; }
.testi .q { position: absolute; top: 24px; left: 24px; font-family: 'Playfair Display', serif; font-size: 64px; color: rgba(214,168,79,0.45); line-height: 1; }
.testi blockquote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 500; font-size: clamp(24px, 2.6vw, 32px); line-height: 1.4; color: var(--olive); max-width: 620px; margin: 0 auto; }
.testi .meta { margin-top: 26px; text-align: center; }
.testi .meta .line { width: 40px; height: 1px; background: var(--gold); margin: 0 auto 10px; }
.testi .name { font-weight: 600; }
.testi .city { font-size: 13px; color: rgba(62,81,59,0.6); }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 28px; }
.testi-controls button { width: 40px; height: 40px; border-radius: 999px; border: 1px solid rgba(62,81,59,0.20); color: var(--olive); display: inline-flex; align-items: center; justify-content: center; transition: all .2s; }
.testi-controls button:hover { background: var(--olive); color: var(--bg); }
.dots { display: flex; gap: 8px; }
.dots button { width: 8px; height: 6px; border-radius: 999px; background: rgba(62,81,59,0.25); transition: all .3s; border: 0; padding: 0; }
.dots button.active { width: 28px; background: var(--olive); }

/* ---------- Waitlist ---------- */
.waitlist {
  background:
    radial-gradient(circle at 20% 20%, rgba(214,168,79,0.20), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(62,81,59,0.10), transparent 50%),
    var(--bg);
  position: relative; overflow: hidden;
}
.waitlist-card { max-width: 640px; margin: 32px auto 0; background: white; border: 1px solid rgba(62,81,59,0.10); border-radius: 32px; padding: 32px; box-shadow: var(--shadow-strong); text-align: left; }
.waitlist .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.waitlist label { display: block; }
.waitlist label span.l { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(62,81,59,0.6); font-weight: 500; }
.waitlist input {
  width: 100%; margin-top: 8px; background: transparent;
  border: 0; border-bottom: 1px solid rgba(62,81,59,0.25);
  padding: 10px 0; font-size: 15px; color: var(--olive); outline: 0;
  transition: border-color .2s;
}
.waitlist input:focus { border-color: var(--olive); }
.waitlist .full { grid-column: 1 / -1; }
.waitlist button.btn { width: 100%; justify-content: center; margin-top: 26px; }
.waitlist .legal { text-align: center; font-size: 12px; color: rgba(62,81,59,0.55); margin-top: 14px; }
.waitlist-success { display: none; max-width: 460px; margin: 32px auto 0; background: white; border: 1px solid rgba(214,168,79,0.40); border-radius: 32px; padding: 32px; text-align: center; }
.waitlist-success.show { display: block; }
.waitlist-success .sp { font-size: 24px; color: var(--gold); }
.waitlist-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 600; margin-top: 8px; }
.waitlist-success p { color: rgba(62,81,59,0.65); font-size: 14px; margin-top: 8px; }
.waitlist-success button { margin-top: 18px; color: var(--olive); font-size: 14px; text-decoration: underline; text-underline-offset: 4px; }
@media (max-width: 640px) { .waitlist .form-row { grid-template-columns: 1fr; } }

/* decorative petals */
.bg-petal { position: absolute; border-radius: 999px; }
.bg-petal.a { top: 50px; left: 36px; width: 12px; height: 28px; background: rgba(214,168,79,0.5); transform: rotate(12deg); }
.bg-petal.b { top: 110px; right: 70px; width: 8px; height: 20px; background: rgba(62,81,59,0.30); transform: rotate(-12deg); }
.bg-petal.c { bottom: 70px; left: 25%; width: 12px; height: 28px; background: rgba(214,168,79,0.4); transform: rotate(45deg); }
.bg-petal.d { bottom: 120px; right: 25%; width: 8px; height: 20px; background: rgba(62,81,59,0.20); transform: rotate(-45deg); }

/* ---------- Footer ---------- */
footer { background: var(--olive); color: var(--bg); padding: 72px 0 36px; }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.foot-grid h4 { color: var(--bg); font-size: 22px; margin-bottom: 18px; font-family: 'Cormorant Garamond', serif; font-weight: 600; }
.foot-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-grid ul a { font-size: 13px; color: rgba(245,241,234,0.7); transition: color .2s; }
.foot-grid ul a:hover { color: var(--gold); }
.foot-brand .logo { background: var(--bg); padding: 8px; border-radius: 18px; display: inline-flex; }
.foot-brand .logo img { height: 56px; width: auto; }
.foot-brand p { margin-top: 22px; color: rgba(245,241,234,0.75); max-width: 320px; font-size: 14px; }
.newsletter { margin-top: 24px; max-width: 320px; }
.newsletter label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.newsletter .field { margin-top: 10px; display: flex; align-items: center; gap: 8px; padding: 6px 8px 6px 18px; background: rgba(245,241,234,0.10); border: 1px solid rgba(245,241,234,0.20); border-radius: 999px; }
.newsletter input { flex: 1; background: transparent; border: 0; outline: 0; color: var(--bg); font-size: 14px; padding: 6px 0; }
.newsletter input::placeholder { color: rgba(245,241,234,0.4); }
.newsletter button { width: 36px; height: 36px; border-radius: 999px; background: var(--gold); color: var(--olive); display: inline-flex; align-items: center; justify-content: center; transition: background-color .2s; }
.newsletter button:hover { background: var(--gold-dark); }
.foot-bottom { max-width: var(--container); margin: 56px auto 0; padding: 24px 24px 0; border-top: 1px solid rgba(245,241,234,0.15); display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.foot-bottom p { font-size: 12px; color: rgba(245,241,234,0.55); }
.socials { display: flex; gap: 10px; }
.socials a { width: 36px; height: 36px; border-radius: 999px; border: 1px solid rgba(245,241,234,0.20); display: inline-flex; align-items: center; justify-content: center; transition: all .2s; }
.socials a:hover { background: var(--gold); color: var(--olive); border-color: var(--gold); }
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s cubic-bezier(0.22, 1, 0.36, 1), transform .9s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 100;
  background: var(--olive); color: var(--bg); padding: 14px 20px;
  border-radius: 999px; font-size: 14px; box-shadow: var(--shadow-strong);
  border: 1px solid rgba(214,168,79,0.4);
  transform: translateY(120%); opacity: 0; transition: all .35s cubic-bezier(0.22,1,0.36,1);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.error { background: #7a3b3b; }

/* ---------- Placeholder page ---------- */
.placeholder { min-height: calc(100vh - 200px); display: flex; align-items: center; justify-content: center; padding: 80px 24px; }
.placeholder .inner { max-width: 560px; text-align: center; }
.placeholder .ic { width: 64px; height: 64px; border-radius: 999px; background: rgba(214,168,79,0.20); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 24px; }
.placeholder h1 { font-size: clamp(36px, 5vw, 56px); margin: 16px 0 18px; font-weight: 600; }
.placeholder p { color: var(--text-body); font-size: 18px; line-height: 1.7; }
.placeholder .btn { margin-top: 32px; }
