/* ============================================================
   CLAREST TOUCH — Fairy Dreamy design system
   Palette: butter yellow · soft blue · ivory · white · gold
   ============================================================ */

:root {
  /* Palette */
  --butter: #F9E9B0;
  --butter-light: #FCF3D4;
  --butter-deep: #F2D882;
  --sky: #BFD9F2;
  --sky-light: #E3EFFA;
  --sky-deep: #8FB8E0;
  --ivory: #FFFDF6;
  --white: #FFFFFF;
  --gold: #C9A227;
  --gold-text: #8A6D1A;   /* darker gold for text (WCAG contrast) */
  --gold-soft: #DDBE63;
  --ink: #4A4234;        /* warm dark for body text */
  --ink-soft: #6E6552;   /* muted text */
  --line: #F0E7CE;

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 10px 40px rgba(143, 184, 224, 0.18);
  --maxw: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Prevent transient horizontal overflow from pop-overshoot animations
   (elements briefly scale >100% and were causing a left-right wobble).
   `clip` doesn't create a scroll container, so the sticky header keeps working. */
html, body { overflow-x: hidden; overflow-x: clip; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 1.0rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.2; color: var(--ink); }

a { color: var(--gold-text); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }

/* ---------- decorative ---------- */
.sparkle { color: var(--gold); }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-text);
  font-weight: 400;
  margin-bottom: 0.9rem;
}
.divider {
  text-align: center;
  color: var(--gold-soft);
  font-size: 1.1rem;
  letter-spacing: 1.2em;
  padding: 0.5rem 0 0.5rem 1.2em;
  user-select: none;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.8rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wordmark {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink);
  white-space: nowrap;
}
.wordmark:hover { text-decoration: none; }
.wordmark .wm-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.main-nav { display: flex; align-items: center; gap: 1.4rem; }
.main-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); text-decoration: none; }
.main-nav a.active { border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

.header-actions { display: flex; align-items: center; gap: 0.8rem; }

.lang-toggle {
  display: flex;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.72rem;
}
.lang-toggle button {
  border: 0;
  background: transparent;
  padding: 0.28rem 0.7rem;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.lang-toggle button.active { background: var(--butter); color: var(--ink); font-weight: 500; }

/* buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(120deg, var(--butter-deep), var(--butter));
  color: var(--ink);
  box-shadow: 0 6px 22px rgba(201, 162, 39, 0.25);
}
.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--gold-soft);
}
.btn-wa {
  background: linear-gradient(120deg, var(--sky-deep), var(--sky));
  color: #223349;
  box-shadow: 0 6px 22px rgba(143, 184, 224, 0.35);
}
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.72rem; }
.btn[disabled], .btn.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  pointer-events: none;
}
.header-cta { white-space: nowrap; }

/* mobile nav */
.nav-burger {
  display: none;
  background: none;
  border: 0;
  font-size: 1.5rem;
  color: var(--ink);
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem 0.4rem;
}

@media (max-width: 900px) {
  .nav-burger { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 1.2rem;
    gap: 1rem;
    box-shadow: var(--shadow-soft);
  }
  .main-nav.open { display: flex; }
  .header-cta { display: none; }
}

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(ellipse 70% 60% at 20% 10%, var(--butter-light), transparent 60%),
    radial-gradient(ellipse 60% 55% at 85% 20%, var(--sky-light), transparent 60%),
    var(--ivory);
  text-align: center;
  padding: 5.5rem 1.25rem 4.5rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  letter-spacing: 0.14em;
  font-weight: 700;
}
.hero .hero-sub {
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin: 0.8rem 0 1.8rem;
}
.hero .hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.hero .hero-desc {
  max-width: 480px;
  margin: 0 auto 2.2rem;
  color: var(--ink-soft);
}
.hero .hero-loc {
  margin-top: 1.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* USP strip */
.usp-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.usp-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.4rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.usp-item { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.usp-item .sparkle { display: block; font-size: 1rem; margin-bottom: 0.25rem; }
@media (max-width: 720px) { .usp-inner { grid-template-columns: repeat(2, 1fr); } }

/* ---------- sections ---------- */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--white); }
.section-sky { background: linear-gradient(180deg, var(--sky-light), var(--ivory)); }
.section-butter { background: linear-gradient(180deg, var(--butter-light), var(--ivory)); }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 0.6rem; }
.section-head p { color: var(--ink-soft); }

/* services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}
.service-card .card-body { padding: 1.6rem 1.5rem 1.8rem; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { font-size: 1.35rem; letter-spacing: 0.06em; margin-bottom: 0.3rem; }
.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.9rem;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.service-price { font-weight: 500; color: var(--gold-text); font-size: 1.05rem; letter-spacing: 0.04em; }
.service-duration { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.service-desc { color: var(--ink-soft); font-size: 0.94rem; flex: 1; }
.service-extra { font-size: 0.84rem; color: var(--ink); margin: 0.9rem 0 1.2rem; }
.service-extra span { display: block; }
.service-card .btn { align-self: flex-start; }

/* photo placeholders */
.ph {
  background:
    repeating-linear-gradient(45deg, rgba(201,162,39,0.06) 0 14px, transparent 14px 28px),
    linear-gradient(135deg, var(--butter-light), var(--sky-light));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}
.ph-card { aspect-ratio: 4 / 3; }
.ph-tall { aspect-ratio: 3 / 4; border: 1px solid var(--line); border-radius: var(--radius-lg); }
.ph-wide { aspect-ratio: 16 / 7; border: 1px solid var(--line); border-radius: var(--radius-lg); }

/* how it works */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  text-align: center;
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold-soft);
  display: block;
  margin-bottom: 0.4rem;
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.9rem; color: var(--ink-soft); }

/* story / about split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.split h2 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); margin-bottom: 1rem; }
.split p { color: var(--ink-soft); margin-bottom: 1rem; }

/* hours */
.hours-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}
.hours-row:last-of-type { border-bottom: 0; }
.hours-note { margin-top: 1rem; font-size: 0.82rem; color: var(--ink-soft); font-style: italic; }

/* policies */
.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: stretch;
}
@media (max-width: 820px) { .policy-grid { grid-template-columns: 1fr; } }
.policy-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
}
.policy-card.policy-booking { border-top: 4px solid var(--butter-deep); }
.policy-card.policy-reschedule { border-top: 4px solid var(--sky-deep); }
.policy-card h3 { font-size: 1.35rem; margin-bottom: 0.4rem; }
.policy-card .policy-intro { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 1rem; }
.policy-list { list-style: none; flex: 1; }
.policy-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.93rem;
  color: var(--ink);
}
.policy-list li::before { content: "✦"; position: absolute; left: 0; color: var(--gold-soft); font-size: 0.8rem; top: 0.15rem; }
.policy-reschedule .policy-list li::before { content: "♡"; color: var(--sky-deep); }
.policy-card .btn { margin-top: 1.4rem; align-self: flex-start; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "✦"; color: var(--gold-soft); transition: transform 0.2s; font-size: 0.85rem; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-a { padding: 0 1.4rem 1.2rem; color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- aftercare ---------- */
.care-list { list-style: none; max-width: 640px; margin: 0 auto 2rem; }
.care-list li {
  position: relative;
  padding: 0.8rem 0 0.8rem 2.2rem;
  border-bottom: 1px dashed var(--line);
  font-size: 1rem;
}
.care-list li::before { content: "♡"; position: absolute; left: 0.2rem; color: var(--sky-deep); }

/* ---------- contact ---------- */
.contact-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.6rem 2.2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.contact-card h1 { font-size: clamp(1.9rem, 4vw, 2.5rem); letter-spacing: 0.1em; }
.contact-lines { margin: 1.6rem 0 2rem; }
.contact-lines p { margin-bottom: 0.7rem; font-size: 1rem; }

/* ---------- booking form ---------- */
.booking-wrap { max-width: 720px; margin: 0 auto; }
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.6rem;
}
.form-card h2 {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.form-field { margin-bottom: 1.2rem; }
.form-field label { display: block; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.4rem; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(221, 190, 99, 0.2);
}
.form-field textarea { min-height: 110px; resize: vertical; }
.field-error { display: none; color: #B0532E; font-size: 0.8rem; margin-top: 0.3rem; }
.form-field.invalid input, .form-field.invalid select, .form-field.invalid textarea { border-color: #D08A6B; }
.form-field.invalid .field-error { display: block; }
.field-hint { font-size: 0.8rem; color: var(--ink-soft); margin-top: 0.3rem; font-style: italic; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }

.bespoke-notice {
  display: none;
  background: var(--sky-light);
  border: 1px solid var(--sky);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}
.bespoke-notice.visible { display: block; }

.total-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--butter-light);
  border: 1px solid var(--butter-deep);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}
.total-bar .total-label { font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-soft); }
.total-bar .total-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--ink); }
.total-bar .total-note { width: 100%; font-size: 0.8rem; color: var(--ink-soft); font-style: italic; display: none; }
.total-bar .total-note.visible { display: block; }

.policy-check {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  margin-bottom: 1.4rem;
}
.policy-check input[type="checkbox"] {
  width: 1.15rem; height: 1.15rem;
  margin-top: 0.2rem;
  accent-color: var(--gold);
  flex-shrink: 0;
  cursor: pointer;
}
.policy-check label { font-size: 0.88rem; cursor: pointer; }
.policy-check .check-title { display: block; font-weight: 500; letter-spacing: 0.06em; margin-bottom: 0.25rem; }
.policy-summary { font-size: 0.82rem; color: var(--ink-soft); }

.form-actions { text-align: center; }
.form-actions .btn { width: 100%; font-size: 0.9rem; padding: 1rem; }

/* payment step */
.payment-step { display: none; }
.payment-step.visible { display: block; }
.booking-step.hidden { display: none; }

.bank-box {
  background: var(--sky-light);
  border: 1px dashed var(--sky-deep);
  border-radius: var(--radius);
  padding: 1.4rem;
  text-align: center;
  margin: 1.2rem 0;
}
.bank-box .bank-placeholder {
  font-size: 1rem;
  background: var(--white);
  border-radius: 12px;
  padding: 0.8rem 1.4rem;
  display: inline-block;
  margin: 0.5rem 0;
  color: var(--ink);
  line-height: 1.5;
}
.bank-box .bank-placeholder strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--gold-text);
}
.bank-box .bank-amount { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; margin-top: 0.4rem; }

.pay-summary {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.2rem;
  font-size: 0.92rem;
}
.pay-summary dt { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.6rem; }
.pay-summary dd { margin: 0; }

.secured-note {
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  margin-top: 1.6rem;
  color: var(--ink);
}
.secured-sub { text-align: center; font-size: 0.85rem; color: var(--ink-soft); margin-top: 0.4rem; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, var(--butter-light), transparent 70%),
    var(--white);
  border-top: 1px solid var(--line);
  padding: 4rem 1.25rem;
}
.cta-band h2 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 0.6rem; }
.cta-band p { color: var(--ink-soft); margin-bottom: 1.8rem; }

/* ---------- footer ---------- */
.site-footer {
  background: #FBF6E6;
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 2rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.4rem;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .wordmark { font-size: 1.2rem; }
.footer-brand p { color: var(--ink-soft); margin-top: 0.8rem; max-width: 260px; }
.site-footer .footer-h {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: var(--ink-soft); }
.site-footer a:hover { color: var(--gold); }
.footer-hours p { color: var(--ink-soft); margin-bottom: 0.4rem; }
.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

/* page hero (inner pages) */
.page-hero {
  text-align: center;
  padding: 4rem 1.25rem 3rem;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, var(--sky-light), transparent 70%),
    var(--ivory);
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: 0.08em; }
.page-hero p { color: var(--ink-soft); margin-top: 0.7rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* utility */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.draft-note { font-size: 0.72rem; color: var(--ink-soft); opacity: 0.75; font-style: italic; }

/* ---------- logo ---------- */
.wordmark img { height: 54px; width: auto; display: block; }
.footer-brand .wordmark img { height: 68px; }
.hero-logo { line-height: 0; margin-bottom: 0.6rem; }
.hero-logo img { height: clamp(170px, 28vw, 250px); width: auto; margin: 0 auto; }
.page-logo { line-height: 0; margin-bottom: 0.4rem; }
.page-logo img { height: clamp(130px, 22vw, 180px); width: auto; margin: 0 auto; }

/* ---------- cookie consent ---------- */
.consent-banner {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translate(-50%, 130%);
  width: min(680px, calc(100% - 2rem));
  background: var(--white);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 50px rgba(74, 66, 52, 0.18);
  padding: 1.1rem 1.4rem;
  z-index: 300;
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.consent-banner.visible { transform: translate(-50%, 0); opacity: 1; }
.consent-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.consent-text { font-size: 0.88rem; color: var(--ink); flex: 1 1 320px; margin: 0; }
.consent-text a { white-space: nowrap; }
.consent-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
@media (max-width: 560px) {
  .consent-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .consent-text { flex: 0 0 auto; }
  .consent-actions { justify-content: center; }
}

/* ---------- contact map ---------- */
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--sky-light);
  box-shadow: var(--shadow-soft);
}
.map-card iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  text-align: center;
  padding: 1.5rem;
}
.map-placeholder p { font-size: 0.85rem; color: var(--ink-soft); max-width: 380px; }

/* ============================================================
   MOTION — Fairy Dreamy animations (v1.4)
   ============================================================ */
@keyframes ct-fade-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
@keyframes ct-scale-in {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes ct-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
@keyframes ct-twinkle {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.45; transform: scale(0.82); }
}
@keyframes ct-pop {
  0%   { opacity: 0; transform: scale(0.6) translateY(20px); }
  60%  { opacity: 1; transform: scale(1.06) translateY(-4px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes ct-rise {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  12%  { opacity: 0.9; }
  100% { transform: translateY(-140px) scale(0.4); opacity: 0; }
}
@keyframes ct-shimmer {
  0%   { left: -70%; }
  100% { left: 130%; }
}
@keyframes ct-wiggle {
  0%, 100% { transform: rotate(0); }
  30%      { transform: rotate(1.8deg) scale(1.05); }
  70%      { transform: rotate(-1.8deg); }
}

/* hero entrance (homepage) — Magical Pop */
.hero { position: relative; overflow: hidden; }
.hero .hero-logo    { animation: ct-pop 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) both; }
.hero .hero-logo img{ animation: ct-float 7s ease-in-out 1.4s infinite; }
.hero .hero-sub     { animation: ct-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both; }
.hero .hero-tagline { animation: ct-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.32s both; }
.hero .hero-desc    { animation: ct-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.44s both; }
.hero .btn          { animation: ct-pop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.56s both; }
.hero .hero-loc     { animation: ct-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s both; }

/* inner page hero entrance — Magical Pop */
.page-hero { position: relative; overflow: hidden; }
.page-hero > *:nth-child(1) { animation: ct-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.05s both; }
.page-hero > *:nth-child(2) { animation: ct-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.18s both; }
.page-hero > *:nth-child(3) { animation: ct-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both; }
.page-hero > *:nth-child(4) { animation: ct-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.42s both; }
.page-logo img { animation: ct-float 7s ease-in-out 1.4s infinite; }

/* wiggling sparkles ✦ ♡ (Magical Pop) */
.sparkle { display: inline-block; animation: ct-wiggle 1.9s ease-in-out infinite; }
.usp-item .sparkle { animation-duration: 3.4s; }
.usp-item:nth-child(2) .sparkle { animation-delay: 0.6s; }
.usp-item:nth-child(3) .sparkle { animation-delay: 1.1s; }
.usp-item:nth-child(4) .sparkle { animation-delay: 1.7s; }
.divider { animation: ct-twinkle 4s ease-in-out infinite; }

/* scroll reveal (elements tagged by JS) */
.js .reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.93);
  transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: opacity, transform;
}
.js .reveal.in-view { opacity: 1; transform: none; }

/* gentle hover lifts */
.service-card, .step, .policy-card, .hours-card, .contact-card, .faq-item {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover { transform: translateY(-6px) rotate(-1deg) scale(1.02); box-shadow: 0 20px 55px rgba(201, 162, 39, 0.28); }
.step:hover, .policy-card:hover { transform: translateY(-4px) rotate(-0.6deg); box-shadow: var(--shadow-soft); }
.faq-item:hover { border-color: var(--gold-soft); }
.footer-brand .wordmark img, .site-header .wordmark img { transition: transform 0.25s ease; }
.site-header .wordmark:hover img { transform: scale(1.06) rotate(-2deg); }

/* nav underline grow */
.main-nav a { position: relative; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: -3px;
  height: 1px;
  background: var(--gold);
  transition: left 0.25s ease, right 0.25s ease;
}
.main-nav a:hover::after { left: 0; right: 0; }

/* FAQ answer + payment step + mobile nav entrances */
.faq-item[open] .faq-a { animation: ct-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1); }
.payment-step.visible { animation: ct-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); }
.main-nav.open { animation: ct-pop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}

/* Magical Pop extras: button shimmer + fairy dust */
.btn-primary { overflow: hidden; }
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -70%;
  width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  transform: skewX(-18deg);
  animation: ct-shimmer 2.8s ease 1.6s infinite;
  pointer-events: none;
}
.btn-primary[disabled]::after, .btn-primary.disabled::after { display: none; }

.fairy-dust {
  position: absolute;
  bottom: 8%;
  color: var(--gold-soft);
  pointer-events: none;
  user-select: none;
  animation: ct-rise 4.5s linear infinite;
}

/* hero contact button (below location line) */
.hero .hero-contact-wrap { margin-top: 1.1rem; animation: ct-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.84s both; }
.hero .hero-contact { background: transparent; border: 1px solid var(--gold-soft); color: var(--gold-text); }
.hero .hero-contact:hover { background: var(--white); }

/* ---------- iOS Safari date/time input fixes ----------
   Safari gives date/time inputs an intrinsic width (ignoring width:100%),
   which made them spill past the card edge on mobile, with odd height. */
.form-field input[type="date"],
.form-field input[type="time"] {
  -webkit-appearance: none;
  appearance: none;
  min-width: 0;
  width: 100%;
  min-height: 3.1rem;
  text-align: left;
}
.form-field input::-webkit-date-and-time-value {
  text-align: left;
  margin: 0;
}
/* grid children default to min-width:auto and can overflow — clamp them */
.form-row .form-field { min-width: 0; }
