/* beebella — Google Ads landing page
   Layers on top of styles.css (copied from the main site).
   Replaces the Tailwind CDN the main site uses, so the page stays fast. */

/* ============ Minimal reset (what Tailwind preflight gave the main site) ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; overflow-x: clip; }
/* Page background: a shade deeper than the main site's --milk so the cream cards stand out */
:root { --page: #f7ece0; --page-tint: #f3e0cf; }
body { margin: 0; background: var(--page); }
h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg, iframe { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; margin: 0; }
button { cursor: pointer; }
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; }

/* ============ Layout helpers ============ */
.wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; position: relative; }
.wrap-md { max-width: 1152px; }
.wrap-sm { max-width: 820px; }
@media (min-width: 1024px) { .wrap { padding: 0 2.5rem; } }

.sec { padding: clamp(3.5rem, 8vw, 6.5rem) 0; position: relative; overflow: hidden; }
.sec-tint { background: var(--page-tint); }
.sec-head { text-align: center; max-width: 42rem; margin: 0 auto 3rem; }
.sec-head .section-heading-sm { margin-top: .75rem; }
.sec-head p { margin-top: 1rem; font-size: 1.05rem; }
.center { text-align: center; }
.mt-s { margin-top: 1rem; } .mt-m { margin-top: 2rem; } .mt-l { margin-top: 2.75rem; }
.muted { color: var(--muted); }
.small { font-size: .85rem; }
.xs { font-size: .78rem; }
strong { color: var(--ink); font-weight: 600; }

.grid { display: grid; gap: 1.5rem; }
.grid > *, .booker .fields > * { min-width: 0; }
.form-select, .form-input { max-width: 100%; text-overflow: ellipsis; }
@media (min-width: 640px)  { .g-sm-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .g-md-3 { grid-template-columns: repeat(3, 1fr); } .g-md-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .g-lg-3 { grid-template-columns: repeat(3, 1fr); } .g-lg-4 { grid-template-columns: repeat(4, 1fr); } .g-lg-2 { grid-template-columns: repeat(2, 1fr); } }
.g-center { align-items: center; }
.row { display: flex; flex-wrap: wrap; gap: .75rem; }
.row-center { justify-content: center; }

/* ============ Header (distraction-free: no nav links) ============ */
.lp-header {
  position: fixed; top: 1rem; left: 50%; transform: translateX(-50%); z-index: 50;
  width: calc(100% - 2rem); max-width: 1180px;
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  background: #fff; border-radius: 999px; border: 1px solid rgba(232,168,146,.25);
  padding: .45rem .5rem .45rem 1.25rem;
  box-shadow: 0 6px 24px -10px rgba(90,58,71,.18); transition: box-shadow .3s ease;
}
.lp-header.scrolled { box-shadow: 0 14px 36px -16px rgba(90,58,71,.28); }
.lp-header .brand-logo img { height: 52px; }
.lp-header-right { display: flex; align-items: center; gap: .5rem; }
.open-pill {
  display: none; align-items: center; gap: .45rem; font-size: .8rem; font-weight: 500;
  color: var(--plum); padding: .4rem .85rem; background: var(--peach-soft); border-radius: 999px;
}
.open-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--leaf); box-shadow: 0 0 0 3px rgba(168,184,158,.3); }
.open-pill.closed .dot { background: var(--blush-deep); box-shadow: 0 0 0 3px rgba(232,168,146,.3); }
@media (min-width: 900px) { .open-pill { display: inline-flex; } }
.hdr-call {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  height: 44px; min-width: 44px; padding: 0 1rem; border-radius: 999px;
  border: 1.5px solid var(--peach); color: var(--ink); font-size: .88rem; font-weight: 500;
  transition: all .3s ease;
}
.hdr-call:hover { background: var(--peach); }
.hdr-call svg { width: 17px; height: 17px; }
.hdr-call .num { display: none; }
@media (min-width: 1024px) { .hdr-call .num { display: inline; } }
@media (max-width: 480px) { .hdr-call { padding: 0; } .lp-header .brand-logo img { height: 42px; } }
.hdr-book { padding: .7rem 1.2rem; font-size: .88rem; white-space: nowrap; }
@media (max-width: 380px) { .hdr-book { padding: .7rem 1rem; } .hdr-book::after { display: none; } }

/* ============ Hero tweaks (layout of the main site's slider panel) ============ */
.hero-fullwidth { margin-top: 5.75rem; }

/* Slides are exported at exactly 4:3 (1600×1200). The frame is 4:3 at every width,
   so 100% 100% shows each photo whole — no crop, no stretch. */
.hero-image-area { aspect-ratio: 4 / 3; max-height: none; }
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-slider-panel { max-width: 640px; margin: 0 auto; }
}
/* Desktop: slideshow left, headline + buttons right — keeps the frame short without cropping */
@media (min-width: 1024px) {
  .hero-slider-panel { flex-direction: row; align-items: flex-start; }
  .hero-image-area { flex: 0 0 58%; width: 58%; }
  .hero-overlay-wrap { flex: 1 1 auto; align-self: stretch; display: flex; min-width: 0; }
  .hero-overlay-card { display: flex; align-items: center; padding: 2rem 2.5rem; }
  .hero-slider-panel .hero-overlay-inner { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
  .hero-slider-panel .hero-overlay-left { flex: none; }
  .hero-slider-panel .hero-overlay-right { flex: none; max-width: none; }
  .hero-slider-panel .hero-overlay-left .hero-display { font-size: clamp(1.9rem, 2.5vw, 2.6rem); }
}
.hero-slider-panel .slide { background-size: 100% 100%; background-position: center; background-repeat: no-repeat; transition: opacity 1.2s ease-in-out; }
/* soft bottom shade so the dots stay visible on bright photos */
.hero-image-area::after { content: ''; position: absolute; inset: auto 0 0 0; height: 30%; background: linear-gradient(to top, rgba(43,29,34,.35), transparent); pointer-events: none; z-index: 2; }

/* Prev / next arrows on the sides */
.slider-arrow {
  position: absolute; top: 50%; z-index: 4; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%; border: 0; padding: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,252,246,.88); color: var(--ink);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  box-shadow: 0 10px 24px -10px rgba(43,29,34,.45);
  transition: background .3s ease, color .3s ease, transform .3s cubic-bezier(.34,1.56,.64,1);
}
.slider-arrow svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.slider-arrow.prev { left: 1.25rem; }
.slider-arrow.next { right: 1.25rem; }
.slider-arrow:hover { background: var(--terracotta); color: var(--milk); transform: translateY(-50%) scale(1.08); }
@media (max-width: 640px) {
  .slider-arrow { width: 40px; height: 40px; }
  .slider-arrow svg { width: 18px; height: 18px; }
  .slider-arrow.prev { left: .7rem; }
  .slider-arrow.next { right: .7rem; }
}
.hero-overlay-left .hero-display { font-size: clamp(2rem, 5.2vw, 3.3rem); line-height: 1.04; }
@media (min-width: 1024px) {
  .hero-overlay-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 2.5rem; }
  .hero-overlay-left { flex: 1 1 0; }
  .hero-overlay-left .hero-display { font-size: clamp(2.1rem, 3vw, 3rem); }
  .hero-overlay-right { flex: 0 0 auto; max-width: 25rem; }
}
.hero-sub { margin-top: .75rem; max-width: 48ch; color: var(--soft-ink); }
.hero-micro { margin-top: .75rem; font-size: .8rem; color: var(--plum); display: flex; flex-wrap: wrap; gap: .35rem 1rem; }
.hero-micro span::before { content: '✓ '; color: var(--terracotta); font-weight: 600; }
.hero-btn-row { flex-wrap: wrap; }

.offer-badge {
  display: inline-flex; align-items: center; gap: .55rem; margin-bottom: .9rem;
  background: var(--ink); color: var(--milk); padding: .45rem 1.05rem; border-radius: 999px;
  font-size: .82rem; font-weight: 600;
}
.offer-badge .pct { font-family: 'Caveat', cursive; font-size: 1.35rem; color: var(--honey); line-height: 1; }

/* ============ WhatsApp button (primary CTA) ============ */
.btn-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.85rem; background: #25D366; color: #073b20; border: 0; border-radius: 999px;
  font-family: 'DM Sans', sans-serif; font-size: .98rem; font-weight: 600; white-space: nowrap;
  box-shadow: 0 14px 30px -12px rgba(37,211,102,.55);
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
}
.btn-wa:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 18px 36px -12px rgba(37,211,102,.65); }
.btn-wa svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn-wa.lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }
.btn-wa.block { width: 100%; }

/* ============ Stats strip ============ */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; text-align: center; padding: 2.5rem 0 3rem; }
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stats p { margin-top: .5rem; font-size: .88rem; color: var(--muted); }

/* ============ Premium services (content from the original landing page) ============ */
.service-tile.premium h3 { font-size: 1.45rem; }
.service-tile.premium .btn-wa { margin-top: auto; align-self: flex-start; padding: .8rem 1.6rem; font-size: .92rem; }

/* ============ Menu tiles ============ */
.service-tile { display: flex; flex-direction: column; }
.service-tile .body { padding: 1.5rem 1.75rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.service-tile h3 { font-size: 1.55rem; margin-bottom: .5rem; }
.service-tile .body > p { font-size: .92rem; margin-bottom: 1.1rem; }
.tile-book {
  margin-top: auto; align-self: flex-start; display: inline-flex; align-items: center; gap: .45rem;
  color: var(--terracotta); font-weight: 600; font-size: .9rem;
}
.tile-book svg { width: 16px; height: 16px; }
.tile-book::after { content: '→'; transition: transform .3s ease; }
.service-tile:hover .tile-book::after { transform: translateX(4px); }
.service-tile.warm { background: linear-gradient(140deg, var(--peach) 0%, var(--honey-soft) 100%); }

/* ============ Value cards ============ */
.value-card {
  background: var(--milk); border: 1px solid var(--peach); border-radius: 28px;
  padding: 1.75rem 1.5rem; text-align: center; height: 100%; transition: all .4s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 20px 38px -18px rgba(200,121,102,.22); }
.value-card .icon-chip { margin: 0 auto 1rem; }
.value-card h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.value-card p { font-size: .9rem; }

/* ============ Booking builder ============ */
.booker {
  background: var(--milk); border: 1.5px solid var(--peach); border-radius: 36px;
  padding: 2rem 1.5rem; box-shadow: 0 30px 60px -30px rgba(200,121,102,.35);
}
@media (min-width: 640px) { .booker { padding: 2.5rem; } }
.booker h3 { font-size: 1.7rem; margin-bottom: .35rem; }
.booker .fields { display: grid; gap: 1rem; margin: 1.5rem 0; }
@media (min-width: 640px) { .booker .fields { grid-template-columns: 1fr 1fr; } .booker .full { grid-column: 1 / -1; } }
.form-select { appearance: none; -webkit-appearance: none; padding-right: 2.5rem;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23c87966' stroke-width='1.6' fill='none' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-position: right 1.1rem center; background-size: 12px; }
.booker-note { margin-top: .9rem; font-size: .8rem; color: var(--muted); text-align: center; }
.booker-err { display: none; margin-top: .75rem; font-size: .85rem; color: #8a3a2c; text-align: center; }
.booker-err.show { display: block; }

.steps { display: grid; gap: 1rem; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 1rem; align-items: start; padding: 1rem; border-radius: 22px; transition: background .3s ease; }
.step:hover { background: var(--milk); }
.step .n {
  width: 48px; height: 48px; border-radius: 50%; background: var(--honey-soft); color: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-style: italic; font-size: 1.4rem;
}
.step h3 { font-size: 1.3rem; margin-bottom: .25rem; }
.step p { font-size: .93rem; }

/* ============ FAQ ============ */
.faq { display: grid; gap: 1rem; }
.faq details { cursor: pointer; padding: 1.4rem 1.75rem; }
.faq details:hover { transform: none; }
.faq summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 1.08rem; font-weight: 500; color: var(--ink); }
.faq summary::after { content: '+'; font-size: 1.6rem; line-height: 1; color: var(--terracotta); transition: transform .3s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: .75rem; line-height: 1.7; }

/* ============ Visit / map ============ */
.map-card { border-radius: 32px; overflow: hidden; border: 1.5px solid var(--peach); min-height: 340px; background: var(--peach-soft); }
.map-card { position: relative; }
.map-card iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.visit-card { background: var(--milk); border: 1.5px solid var(--peach); border-radius: 32px; padding: 1.25rem; }

/* ============ Footer ============ */
.lp-footer { background: var(--ink); color: var(--milk); border-radius: 48px 48px 0 0; padding: 3.5rem 0 2rem; position: relative; overflow: hidden; }
.lp-footer .flower { position: absolute; top: 2rem; right: 2.5rem; font-size: 6rem; color: rgba(240,188,120,.18); pointer-events: none; }
.lp-footer .cols { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 768px) { .lp-footer .cols { flex-direction: row; justify-content: space-between; align-items: center; } }
.lp-footer .tag { color: rgba(255,252,246,.6); max-width: 24rem; margin-top: 1rem; }
.lp-footer .info { font-size: .9rem; color: rgba(255,252,246,.75); display: grid; gap: .35rem; }
.lp-footer .info a:hover { color: var(--peach); }
.lp-footer .socials { display: flex; gap: .75rem; margin-top: .75rem; }
.lp-footer .legal { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .75rem; font-size: .75rem; color: rgba(255,252,246,.45); }
.lp-footer .legal a:hover { color: var(--peach); }
.lp-footer .script { color: rgba(253,228,211,.8); font-size: 1rem; }

/* ============ Sticky mobile CTA bar ============ */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none; gap: .6rem;
  padding: .65rem .85rem calc(.65rem + env(safe-area-inset-bottom));
  background: rgba(255,252,246,.96); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-top: 1px solid var(--peach); box-shadow: 0 -8px 24px -12px rgba(90,58,71,.25);
  transform: translateY(110%); transition: transform .35s ease;
}
.sticky-cta.show { transform: none; }
.sticky-cta .btn-wa { flex: 1.4; padding: .85rem 1rem; font-size: .95rem; }
.sticky-cta .btn-call {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .85rem 1rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  background: var(--ink); color: var(--milk);
}
.sticky-cta .btn-call svg { width: 17px; height: 17px; }
@media (max-width: 768px) { .sticky-cta { display: flex; } body { padding-bottom: 5.25rem; } }

/* ============ Misc ============ */
.floating-cta { padding: 3.5rem 1.5rem; }
@media (min-width: 768px) { .floating-cta { padding: 4.5rem 3rem; } }
.floating-cta > * { position: relative; z-index: 1; }
.bento { margin-top: 0; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
