/* HoneyCedars RSVP — marketing homepage. shadcn/ui-style tokens, no build step. */

:root {
  --background: #ffffff;
  --foreground: #0a0a0a;
  --card: #ffffff;
  --muted: #f5f5f5;
  --muted-foreground: #737373;
  --border: #e5e5e5;
  --ring: #a3a3a3;
  --primary: #171717;
  --primary-foreground: #fafafa;
  --secondary: #f5f5f5;
  --brand: #fc309c;
  --brand-strong: #db1a7f;
  --brand-strong-hover: #c2146f;
  --brand-text: #c0136e;
  --brand-soft: #fff0f7;
  --radius: 0.625rem;
  --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / .05);
  --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .1), 0 4px 6px -4px rgb(0 0 0 / .1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / .1), 0 8px 10px -6px rgb(0 0 0 / .1);
  --font: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --slide-delay: 6500ms;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body { margin: 0; background: var(--background); color: var(--foreground); font: 16px/1.6 var(--font); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul, figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 6px; }
[hidden] { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding-inline: 24px; }
@media (max-width: 640px) { .container { padding-inline: 16px; } }

/* ---------- Buttons (shadcn "Button") ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 36px; padding: 0 16px; border-radius: calc(var(--radius) - 2px); border: 1px solid transparent; font: 500 14px/1 var(--font); white-space: nowrap; cursor: pointer; transition: background-color .15s, color .15s, border-color .15s, box-shadow .15s; }
.btn svg { width: 16px; height: 16px; flex: none; }
.btn-lg { height: 44px; padding: 0 22px; font-size: 15px; border-radius: var(--radius); }
.btn-primary { background: var(--primary); color: var(--primary-foreground); box-shadow: var(--shadow-xs); }
.btn-primary:hover { background: #262626; }
.btn-brand { background: var(--brand-strong); color: #fff; box-shadow: 0 8px 24px -8px rgb(219 26 127 / .6); }
.btn-brand:hover { background: var(--brand-strong-hover); }
.btn-outline { background: var(--background); border-color: var(--border); color: var(--foreground); box-shadow: var(--shadow-xs); }
.btn-outline:hover { background: var(--muted); }
.btn-ghost { background: transparent; color: var(--foreground); }
.btn-ghost:hover { background: var(--muted); }
.btn-glass { background: rgb(255 255 255 / .12); border-color: rgb(255 255 255 / .28); color: #fff; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgb(255 255 255 / .2); }
.btn-block { width: 100%; }

/* ---------- Badge ---------- */
.badge { display: inline-flex; align-items: center; gap: 6px; height: 24px; padding: 0 10px; border-radius: 999px; border: 1px solid var(--border); background: var(--background); color: var(--foreground); font-size: 12.5px; font-weight: 500; white-space: nowrap; }
.badge-brand { border-color: #ffc7e3; background: var(--brand-soft); color: var(--brand-text); }
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 3px rgb(252 48 156 / .2); }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 40; background: rgb(255 255 255 / .85); backdrop-filter: saturate(180%) blur(12px); -webkit-backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; gap: 28px; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; flex: none; }
.logo img { height: 40px; width: auto; }
.logo .badge { height: 22px; font-size: 11.5px; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; }
.main-nav { display: flex; gap: 4px; flex: 1; }
.main-nav a { padding: 8px 12px; border-radius: 8px; font-size: 14px; font-weight: 500; color: var(--muted-foreground); }
.main-nav a:hover { color: var(--foreground); background: var(--muted); }
.header-actions { display: flex; gap: 8px; align-items: center; }
.mobile-nav { display: none; margin-left: auto; position: relative; }
.mobile-nav summary { list-style: none; cursor: pointer; width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--border); border-radius: 8px; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary svg { width: 20px; height: 20px; }
.mobile-menu { position: absolute; right: 0; top: 48px; width: min(280px, calc(100vw - 32px)); background: var(--background); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 8px; display: flex; flex-direction: column; gap: 2px; }
.mobile-menu a:not(.btn) { padding: 10px 12px; border-radius: 8px; font-weight: 500; }
.mobile-menu a:not(.btn):hover { background: var(--muted); }
.mobile-menu .btn { margin-top: 6px; }
@media (max-width: 900px) {
  .main-nav, .header-actions { display: none; }
  .mobile-nav { display: block; }
}

/* ---------- Hero slider ---------- */
.hero { position: relative; isolation: isolate; min-height: min(86vh, 820px); display: flex; flex-direction: column; justify-content: flex-end; color: #fff; overflow: hidden; background: #0a0a0a; }
.hero-slides { position: absolute; inset: 0; z-index: -1; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.hero-slide.is-active { opacity: 1; }
.hero-slide.is-active img { animation: kenburns calc(var(--slide-delay) + 1500ms) ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1.14); } }
.hero-scrim { position: absolute; inset: 0; background:
  linear-gradient(90deg, rgb(10 10 10 / .82) 0%, rgb(10 10 10 / .55) 45%, rgb(10 10 10 / .15) 100%),
  linear-gradient(0deg, rgb(10 10 10 / .7) 0%, rgb(10 10 10 / 0) 45%); }
.hero-inner { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr); gap: 48px; align-items: center; padding-block: 88px 40px; }
.hero-copy { display: flex; flex-direction: column; gap: 22px; max-width: 640px; }
.hero-copy .badge { align-self: flex-start; background: rgb(255 255 255 / .1); border-color: rgb(255 255 255 / .25); color: #fff; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.hero h1 { font-size: clamp(40px, 6.2vw, 72px); line-height: 1.02; font-weight: 700; letter-spacing: -0.035em; text-wrap: balance; }
.hero h1 .brand-text { color: var(--brand); }
.hero-lede { font-size: clamp(16px, 1.6vw, 19px); line-height: 1.6; color: rgb(255 255 255 / .82); max-width: 34em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 14px; color: rgb(255 255 255 / .8); }
.hero-points li { display: flex; align-items: center; gap: 8px; }
.hero-points svg { width: 16px; height: 16px; color: var(--brand); }
.hero-controls { display: flex; align-items: center; gap: 20px; padding-block: 0 32px; }
.hero-caption { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: rgb(255 255 255 / .8); min-width: 190px; }
.hero-caption b { color: #fff; font-weight: 600; }
.hero-dots { display: flex; gap: 8px; flex: 1; max-width: 360px; }
.hero-dot { flex: 1; height: 28px; padding: 0; border: 0; background: none; cursor: pointer; display: flex; align-items: center; }
.hero-dot span { display: block; width: 100%; height: 3px; border-radius: 3px; background: rgb(255 255 255 / .28); overflow: hidden; }
.hero-dot span::after { content: ""; display: block; height: 100%; width: 100%; background: #fff; transform-origin: left; transform: scaleX(0); }
.hero-dot.is-done span::after { transform: scaleX(1); }
.hero-dot.is-active span::after { animation: progress var(--slide-delay) linear forwards; }
.hero.is-paused .hero-dot.is-active span::after { animation-play-state: paused; }
@keyframes progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.hero-arrows { display: flex; gap: 8px; margin-left: auto; }
.hero-arrow { width: 40px; height: 40px; border-radius: 999px; display: grid; place-items: center; border: 1px solid rgb(255 255 255 / .3); background: rgb(255 255 255 / .1); color: #fff; cursor: pointer; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.hero-arrow:hover { background: rgb(255 255 255 / .22); }
.hero-arrow svg { width: 18px; height: 18px; }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero-slide.is-active img { animation: none; transform: none; }
  .hero-dot.is-active span::after { animation: none; transform: scaleX(1); }
}

/* WhatsApp card on the hero */
.phone-card { justify-self: end; width: 100%; max-width: 360px; border-radius: 22px; padding: 10px; background: rgb(255 255 255 / .12); border: 1px solid rgb(255 255 255 / .22); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 30px 60px -20px rgb(0 0 0 / .6); }
.wa { border-radius: 14px; overflow: hidden; background: #efeae2; color: #111b21; font-size: 13.5px; line-height: 1.45; }
.wa-top { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: #008069; color: #fff; }
.wa-top img { width: 32px; height: 32px; border-radius: 50%; background: #fff; object-fit: contain; padding: 3px; }
.wa-top b { display: block; font-size: 14px; font-weight: 600; }
.wa-top span { font-size: 11.5px; opacity: .85; }
.wa-body { padding: 12px 10px 14px; display: flex; flex-direction: column; gap: 7px; }
.wa-bubble { max-width: 88%; background: #fff; border-radius: 9px; padding: 6px 9px 4px; box-shadow: 0 1px .5px rgb(0 0 0 / .13); }
.wa-bubble.out { align-self: flex-end; background: #d9fdd3; }
.wa-meta { font-size: 10.5px; color: #667781; text-align: right; margin-top: 2px; }
.wa-group { align-self: flex-start; max-width: 88%; display: flex; flex-direction: column; gap: 2px; }
.wa-group .wa-bubble { max-width: 100%; border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; }
.wa-btn { background: #fff; color: #027eb5; text-align: center; font-weight: 500; padding: 7px; border-radius: 3px; box-shadow: 0 1px .5px rgb(0 0 0 / .13); }
.wa-btn:last-child { border-bottom-left-radius: 9px; border-bottom-right-radius: 9px; }
.wa-card { margin: -2px -5px 6px; border-radius: 7px; padding: 14px 10px; text-align: center; background: #fff; border: 1px solid #ffd1e8; }
.wa-card img { height: 30px; width: auto; margin: 0 auto 6px; }
.wa-card .names { font-size: 17px; font-weight: 600; letter-spacing: -.01em; }
.wa-card .date { font-size: 11.5px; color: #667781; }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); padding-block: 64px 28px; }
  .phone-card { display: none; }
  .hero-caption { min-width: 0; }
}
@media (max-width: 560px) {
  .hero-arrows { display: none; }
  .hero-caption { display: none; }
  .hero-dots { max-width: none; }
}

/* ---------- Sections ---------- */
.section { padding-block: 96px; }
.section-muted { background: #fafafa; border-block: 1px solid var(--border); }
.section-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; max-width: 720px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.1; font-weight: 700; letter-spacing: -0.03em; text-wrap: balance; }
.section-head p { font-size: 17px; color: var(--muted-foreground); text-wrap: pretty; }
.section-head.left { align-items: flex-start; text-align: left; margin-inline: 0; }
@media (max-width: 640px) { .section { padding-block: 64px; } .section-head { margin-bottom: 36px; } }

/* Value strip */
.values { border-bottom: 1px solid var(--border); }
.values-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.value { display: flex; gap: 14px; align-items: flex-start; padding: 28px 24px; border-left: 1px solid var(--border); }
.value:first-child { border-left: 0; padding-left: 0; }
.value .icon { flex: none; width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand-text); }
.value .icon svg { width: 20px; height: 20px; }
.value b { display: block; font-size: 15px; font-weight: 600; }
.value span { font-size: 14px; color: var(--muted-foreground); line-height: 1.5; }
@media (max-width: 900px) {
  .values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value { border-left: 0; padding-left: 0; border-top: 1px solid var(--border); }
  .value:nth-child(-n+2) { border-top: 0; }
}
@media (max-width: 520px) { .values-grid { grid-template-columns: minmax(0, 1fr); } .value:nth-child(2) { border-top: 1px solid var(--border); } }

/* Cards */
.card { background: var(--card); border: 1px solid var(--border); border-radius: calc(var(--radius) + 4px); box-shadow: var(--shadow-sm); }

/* How it works */
.how { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.steps { display: flex; flex-direction: column; gap: 12px; }
.step { display: grid; grid-template-columns: 40px minmax(0, 1fr); gap: 16px; padding: 20px; }
.step .num { width: 36px; height: 36px; border-radius: 999px; display: grid; place-items: center; font-weight: 600; font-size: 14px; border: 1px solid var(--border); background: var(--background); box-shadow: var(--shadow-xs); }
.step:first-child .num { background: var(--primary); color: var(--primary-foreground); border-color: var(--primary); }
.step h3 { font-size: 17px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 4px; }
.step p { font-size: 15px; color: var(--muted-foreground); }
.how-visual { position: relative; }
.how-visual > img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 20px; box-shadow: var(--shadow-xl); }
.float-card { position: absolute; left: -28px; bottom: 32px; width: min(300px, 80%); padding: 18px; display: flex; flex-direction: column; gap: 12px; }
.float-card .label { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted-foreground); }
.float-card .big { font-size: 34px; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.float-card .big small { font-size: 14px; font-weight: 500; color: var(--muted-foreground); letter-spacing: 0; }
.meter { display: flex; height: 8px; border-radius: 999px; overflow: hidden; background: var(--muted); }
.meter i { display: block; height: 100%; }
.legend { display: flex; flex-wrap: wrap; gap: 4px 14px; font-size: 12.5px; color: var(--muted-foreground); }
.legend i { display: inline-block; width: 8px; height: 8px; border-radius: 2px; margin-right: 6px; vertical-align: 0; }
@media (max-width: 900px) {
  .how { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .how-visual > img { aspect-ratio: 4 / 3; }
  .float-card { left: 16px; bottom: 16px; }
}

/* Feature bento */
.bento { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.feature { padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.feature .icon { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--border); background: var(--background); box-shadow: var(--shadow-xs); color: var(--foreground); }
.feature .icon svg { width: 20px; height: 20px; }
.feature h3 { font-size: 17px; font-weight: 600; letter-spacing: -.01em; }
.feature p { font-size: 15px; color: var(--muted-foreground); }
.feature-wide { grid-column: span 2; grid-row: span 2; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 24px; align-items: center; background: linear-gradient(135deg, #fff 0%, var(--brand-soft) 100%); }
.feature-wide .copy { display: flex; flex-direction: column; gap: 12px; }
.feature-wide h3 { font-size: 24px; letter-spacing: -.02em; }
.feature-wide .wa { box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.checklist { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.checklist li { display: flex; gap: 10px; font-size: 14.5px; }
.checklist svg { width: 18px; height: 18px; flex: none; color: var(--brand-strong); margin-top: 2px; }
@media (max-width: 960px) {
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-wide { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 640px) {
  .bento { grid-template-columns: minmax(0, 1fr); }
  .feature-wide { grid-column: auto; grid-template-columns: minmax(0, 1fr); }
}

/* Occasions gallery */
.gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 240px; gap: 16px; }
.tile { position: relative; overflow: hidden; border-radius: 16px; background: var(--muted); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.tile:hover img { transform: scale(1.05); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgb(10 10 10 / .7) 0%, rgb(10 10 10 / 0) 55%); }
.tile figcaption { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 1; color: #fff; }
.tile figcaption b { display: block; font-size: 17px; font-weight: 600; letter-spacing: -.01em; }
.tile figcaption span { font-size: 13.5px; color: rgb(255 255 255 / .8); }
.tile-lg { grid-column: span 2; grid-row: span 2; }
.tile-lg figcaption b { font-size: 22px; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 200px; } }
@media (max-width: 520px) { .gallery { grid-template-columns: minmax(0, 1fr); } .tile-lg { grid-column: auto; grid-row: span 1; } }
@media (prefers-reduced-motion: reduce) { .tile img { transition: none; } .tile:hover img { transform: none; } }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; align-items: stretch; }
.plan { padding: 28px; display: flex; flex-direction: column; gap: 18px; position: relative; }
.plan-name { font-size: 15px; font-weight: 600; }
.plan-price { font-size: 40px; font-weight: 700; letter-spacing: -.03em; line-height: 1; }
.plan-price small { font-size: 14px; font-weight: 500; color: var(--muted-foreground); letter-spacing: 0; }
.plan-sub { font-size: 14px; color: var(--muted-foreground); }
.plan .checklist { flex: 1; }
.plan-featured { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand), var(--shadow-xl); }
.plan-featured .badge { position: absolute; top: -12px; left: 28px; background: var(--brand-strong); border-color: var(--brand-strong); color: #fff; }
.pricing-note { text-align: center; font-size: 14px; color: var(--muted-foreground); margin-top: 24px; }
.pricing-note a { color: var(--foreground); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 900px) { .pricing { grid-template-columns: minmax(0, 1fr); max-width: 460px; margin: 0 auto; } }

/* FAQ (shadcn "Accordion") */
.faq { max-width: 760px; margin: 0 auto; border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 0; font-weight: 500; font-size: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { text-decoration: underline; text-underline-offset: 4px; }
.faq summary svg { width: 16px; height: 16px; flex: none; color: var(--muted-foreground); transition: transform .2s; }
.faq details[open] summary svg { transform: rotate(180deg); }
.faq details p { padding-bottom: 18px; color: var(--muted-foreground); font-size: 15px; max-width: 64ch; }

/* CTA band */
.cta { position: relative; isolation: isolate; overflow: hidden; border-radius: 24px; padding: 72px 48px; color: #fff; display: grid; grid-template-columns: minmax(0, 1.4fr) auto; gap: 24px; align-items: center; }
.cta > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgb(10 10 10 / .88) 0%, rgb(10 10 10 / .7) 50%, rgb(219 26 127 / .55) 100%); }
.cta h2 { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.1; font-weight: 700; letter-spacing: -.03em; text-wrap: balance; }
.cta p { margin-top: 10px; color: rgb(255 255 255 / .8); font-size: 17px; max-width: 36em; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 800px) { .cta { grid-template-columns: minmax(0, 1fr); padding: 48px 24px; } }

/* Footer */
.site-footer { background: #0a0a0a; color: #a3a3a3; padding-block: 56px 32px; margin-top: 96px; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr)); gap: 40px; }
.footer-brand img { height: 44px; width: auto; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; max-width: 34em; }
.footer-col h3 { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 12px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 40px; padding-top: 24px; border-top: 1px solid #262626; font-size: 13px; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: minmax(0, 1fr); } }
