/* =========================================================
   Cosmic Connection by Charlotte
   Single stylesheet — soft mystical theme
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  --cream:      #FBF3ED;   /* warm blush page background */
  --cream-2:    #F5E5DA;   /* peachier alt section background */
  --blush:      #EFD3CB;   /* soft pink for borders/glows */
  --rose:       #D9A8A0;   /* primary accent — rose-gold */
  --rose-d:     #B17668;   /* deeper rose-gold for text on cream + primary buttons */
  --rose-dd:    #8A5042;   /* deepest rose for active/hover states */
  --gold:       #C9A961;   /* warm gold for stars, dividers, highlights */
  --gold-d:     #A08240;   /* deeper gold */
  --lavender:   #C9B6DC;   /* demoted — used very sparingly as ambient hint */
  --lavender-d: #8B7AAE;   /* ditto */
  --ink:        #3A2A2A;   /* warm primary text */
  --ink-soft:   #7A5E5E;   /* warm secondary text */

  --radius-card: 16px;
  --radius-pill: 999px;
  --shadow-soft: 0 8px 24px rgba(177, 118, 104, 0.08);
  --shadow-lift: 0 14px 32px rgba(177, 118, 104, 0.14);

  --max-w: 1140px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 8vw, 7rem);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;       /* 17px */
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--rose-d); text-decoration-color: rgba(177, 118, 104, 0.35); text-underline-offset: 3px; }
a:hover { color: var(--rose-d); }
button { font: inherit; cursor: pointer; }

/* Focus ring — visible everywhere */
:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.15;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 3.5rem); letter-spacing: 0.02em; font-weight: 400; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); letter-spacing: 0.01em; }
h3 { font-size: 1.5rem; }
p  { margin: 0 0 1em; }

.kicker {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-d);
}
.muted  { color: var(--ink-soft); }
.center { text-align: center; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); position: relative; }
.section--alt { background: var(--cream-2); }
.divider {
  width: 100%;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
  border: 0;
  margin: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.95em 1.75em;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.btn--primary {
  background: var(--rose-d);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.btn--ghost {
  background: transparent;
  color: var(--rose-d);
  border-color: var(--rose);
}
.btn--ghost:hover {
  background: rgba(217, 168, 160, 0.12);
  color: var(--rose-d);
  transform: translateY(-2px);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 243, 237, 0.7);
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  transition: background 220ms ease, backdrop-filter 220ms ease, box-shadow 220ms ease;
}
.site-header.is-scrolled {
  background: rgba(251, 243, 237, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(201, 169, 97, 0.18);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}
.brand__mark { width: 28px; height: 28px; }
.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.brand__sub {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-d);
  margin-top: 4px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-block: 0.25rem;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--rose-d);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 220ms ease;
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.5rem;
  color: var(--ink);
  border-radius: 8px;
}
.nav__toggle svg { width: 26px; height: 26px; }

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(251, 243, 237, 0.97);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}
.nav-overlay.is-open { display: flex; }
.nav-overlay__close {
  position: absolute;
  top: 1.25rem;
  right: var(--gutter);
  background: transparent;
  border: 0;
  padding: 0.5rem;
  color: var(--ink);
}
.nav-overlay__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.nav-overlay__links a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ink);
  text-decoration: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  /* rose-gold bloom upper-right */
  content: '';
  position: absolute;
  top: -25%;
  right: -15%;
  width: 70vw;
  height: 70vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle at center, rgba(217, 168, 160, 0.32), rgba(217, 168, 160, 0) 65%);
  z-index: -2;
  pointer-events: none;
}
.hero::after {
  /* warm peach bloom lower-left, subtler */
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle at center, rgba(245, 210, 190, 0.4), rgba(245, 210, 190, 0) 65%);
  z-index: -2;
  pointer-events: none;
}
.hero__inner {
  max-width: 760px;
  padding-block: 6rem;
}
.hero h1 {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}
.hero__heading {
  position: relative;
  margin: 0 auto 1.25rem;
  padding: 0;
  line-height: 1;
  max-width: 440px;
  font-size: 0;        /* collapse the h1 default sizing, image handles it */
}
/* Soft rose halo behind the logo — gives the watercolour edges a similar-toned
   pool to fade into, instead of meeting the cream page directly. */
.hero__heading::before {
  content: '';
  position: absolute;
  inset: -8%;
  background: radial-gradient(ellipse at center,
                              rgba(245, 215, 205, 0.55) 0%,
                              rgba(245, 215, 205, 0.25) 45%,
                              transparent 75%);
  z-index: -1;
  pointer-events: none;
}
.hero__logo {
  width: 100%;
  height: auto;
  display: block;
  /* Wide, very gradual radial mask — corners fully transparent, smooth fall-off
     so the logo's watercolour blends into the halo (which then blends into the
     page). Combined with multiply blend, the rectangle disappears. */
  -webkit-mask-image: radial-gradient(ellipse 88% 86% at 50% 50%, #000 38%, rgba(0,0,0,0.6) 65%, transparent 92%);
  mask-image: radial-gradient(ellipse 88% 86% at 50% 50%, #000 38%, rgba(0,0,0,0.6) 65%, transparent 92%);
  mix-blend-mode: multiply;
}
@media (max-width: 720px) {
  .hero__heading { max-width: 300px; }
}
.hero__lead {
  font-size: 1.2rem;
  color: var(--ink-soft);
  max-width: 32em;
  margin: 0 auto 2rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* Sparkles — decorative, scattered, gentle drift */
.sparkle {
  position: absolute;
  pointer-events: none;
  color: var(--gold);
  opacity: 0.25;
  animation: twinkle 8s ease-in-out infinite;
  z-index: -1;
}
.sparkle--lavender { color: var(--lavender); }
.sparkle--rose { color: var(--rose); }
.sparkle svg { width: 100%; height: 100%; }
@keyframes twinkle {
  0%, 100% { opacity: 0.15; transform: translateY(0) scale(1); }
  50%      { opacity: 0.45; transform: translateY(-6px) scale(1.08); }
}

/* ---------- About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.about__media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245, 210, 190, 0.45), rgba(217, 168, 160, 0.35));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
  box-shadow: var(--shadow-soft);
}
.about__media::before {
  /* soft rose glow behind image */
  content: '';
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at center, rgba(217, 168, 160, 0.25), transparent 60%);
  z-index: -1;
}
.about__helps {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.6rem;
}
.about__helps li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-soft);
}
.about__helps li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.05em;
  color: var(--gold);
  font-size: 0.95rem;
}

/* ---------- Services ---------- */
.services__grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 760px;
  margin-inline: auto;
}
.service-card {
  background: var(--cream);
  border: 1px solid rgba(217, 168, 160, 0.25);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-soft);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.section--alt .service-card { background: #fff; }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(217, 168, 160, 0.5);
}
.service-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--rose-d);
  background: rgba(217, 168, 160, 0.16);
  border-radius: 50%;
  margin-bottom: 1.1rem;
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}
.service-card__desc {
  color: var(--ink-soft);
  font-size: 0.97rem;
  margin: 0 0 1.25rem;
  flex-grow: 1;
}
.service-card__price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--rose-d);
  line-height: 1.1;
}
.service-card__price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.4rem;
}

/* ---------- Add-ons sub-section ---------- */
.addons {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  border-top: 1px solid rgba(201, 169, 97, 0.3); /* gold hairline */
}
.addons__head {
  text-align: center;
  max-width: 38em;
  margin: 0 auto 2.25rem;
}
.addons__head h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 1.85rem);
  margin: 0.25rem 0 0.85rem;
}
.addons__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 680px;
  margin-inline: auto;
}

/* Add-on card — same primitives as service-card, softer/quieter */
.service-card--addon {
  position: relative;
  background: transparent;
  border: 1px dashed rgba(217, 168, 160, 0.55);
  box-shadow: none;
  padding: 2.25rem 1.4rem 1.6rem;
}
.section--alt .service-card--addon { background: transparent; }
.service-card--addon:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 168, 160, 0.95);
  box-shadow: var(--shadow-soft);
}
.service-card--addon .service-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0.85rem;
}
.service-card--addon .service-card__icon svg { width: 22px; height: 22px; }
.service-card--addon h3 { font-size: 1.2rem; }
.service-card--addon .service-card__desc {
  font-size: 0.92rem;
  margin-bottom: 1rem;
}
.service-card--addon .service-card__price {
  font-size: 1.35rem;
}

.addon-badge {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-d);
  background: rgba(217, 168, 160, 0.18);
  border: 1px solid rgba(217, 168, 160, 0.45);
  padding: 0.25em 0.85em;
  border-radius: var(--radius-pill);
}

@media (max-width: 600px) {
  .addons__grid { grid-template-columns: 1fr; }
}

/* ---------- Testimonials marquee ---------- */
.testimonials__head { text-align: center; margin-bottom: 2.5rem; }
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testimonial {
  flex: 0 0 340px;
  background: var(--cream);
  border: 1px solid rgba(217, 168, 160, 0.4);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.testimonial__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
}
.testimonial__stars svg { width: 16px; height: 16px; }
.testimonial__quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
  margin: 0;
}
.testimonial__who {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: auto;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-d) 100%);
  color: #fff;
  text-align: center;
  padding-block: clamp(3rem, 6vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}
.cta-band .btn--primary {
  background: #fff;
  color: var(--rose-d);
}
.cta-band .btn--primary:hover {
  background: var(--cream);
  color: var(--ink);
}

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding-block: 2.5rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  position: relative;
}
.site-footer .divider { max-width: 200px; margin: 0 auto 1.5rem; }
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.site-footer__brand svg { width: 18px; height: 18px; color: var(--gold); }
.site-footer p { margin: 0.25rem 0; }
.site-footer a { color: var(--rose-d); }

/* New slim copyright line — star · text · star */
.site-footer__copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.site-footer__copy svg {
  width: 13px;
  height: 13px;
  color: var(--gold);
  opacity: 0.9;
  flex-shrink: 0;
}

/* ---------- Contact page ---------- */
.page-head {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}
.page-head .kicker { display: inline-block; margin-bottom: 0.75rem; }
.page-head__lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 36em;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
  margin-top: 2rem;
}
.info-card {
  background: var(--cream-2);
  border: 1px solid rgba(217, 168, 160, 0.3);
  border-radius: var(--radius-card);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}
.info-card dl {
  margin: 0;
  display: grid;
  gap: 1.1rem;
}
.info-card dt {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-d);
  margin-bottom: 0.25rem;
}
.info-card dd {
  margin: 0;
  color: var(--ink);
}
.info-card a { word-break: break-word; }

/* ---------- Form ---------- */
.booking-form {
  background: #fff;
  border: 1px solid rgba(217, 168, 160, 0.25);
  border-radius: var(--radius-card);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-soft);
}
.booking-form h2 { margin-bottom: 0.5rem; }
.booking-form__intro {
  color: var(--ink-soft);
  margin-bottom: 2rem;
}
.field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.4rem;
}
.field label {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.field label .req { color: var(--rose-d); margin-left: 2px; }
.field .helper {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.1rem;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid rgba(217, 168, 160, 0.45);
  border-radius: 12px;
  padding: 0.85em 1em;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.field textarea { resize: vertical; min-height: 8rem; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(217, 168, 160, 0.28);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(90, 78, 102, 0.55); }

/* Radio group (kept for future use) */
.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.15rem;
}
.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 1.5px solid rgba(217, 168, 160, 0.45);
  border-radius: var(--radius-pill);
  background: var(--cream);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.radio-group input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--rose);
  display: inline-grid;
  place-items: center;
  margin: 0;
}
.radio-group input[type="radio"]::after {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose-d);
  transform: scale(0);
  transition: transform 160ms ease;
}
.radio-group input[type="radio"]:checked::after { transform: scale(1); }
.radio-group label:has(input:checked) {
  background: rgba(217, 168, 160, 0.28);
  border-color: var(--rose);
  color: var(--rose-d);
}

/* Checkbox group — pill-style, multi-select (used for booking add-ons) */
.check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.15rem;
}
.check-group label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 1rem;
  border: 1.5px solid rgba(217, 168, 160, 0.45);
  border-radius: var(--radius-pill);
  background: var(--cream);
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--ink);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.check-group input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1.5px solid var(--rose);
  display: inline-grid;
  place-items: center;
  margin: 0;
  background: #fff;
}
.check-group input[type="checkbox"]::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--rose-d);
  transform: scale(0);
  transition: transform 160ms ease;
}
.check-group input[type="checkbox"]:checked::after { transform: scale(1); }
.check-group label:has(input:checked) {
  background: rgba(217, 168, 160, 0.22);
  border-color: var(--rose);
  color: var(--rose-d);
}
.check-group__price {
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--rose-d);
  margin-left: 0.15rem;
}

/* Honeypot — visually hidden but accessible to bots */
.honeypot {
  position: absolute !important;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-actions {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.form-reassure {
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 1.25rem;
}

.form-status {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 0.95rem;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status--success {
  background: rgba(217, 168, 160, 0.18);
  border: 1px solid rgba(177, 118, 104, 0.25);
  color: var(--rose-d);
}
.form-status--error {
  background: rgba(217, 168, 160, 0.18);
  border: 1px solid rgba(166, 107, 107, 0.3);
  color: var(--rose-d);
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about__grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero__inner { padding-block: 4rem; }
  .services__grid { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .sparkle { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
