/* ============================================================
   Wildflower Aesthetics — site.css
   Rebuilt to match the original site design.
   Palette: slate #616870, charcoal #21252c, pink #fc66b8,
   light pink #fecce8. Fonts: Playfair Display + Open Sans.
   ============================================================ */

:root {
  --slate:      #616870;   /* header bar, buttons, borders, muted text */
  --slate-700:  #4c525a;
  --charcoal:   #21252c;   /* footer, headings */
  --ink:        #20252b;   /* body text */
  --muted:      #6b7178;
  --pink:       #fc66b8;   /* brand accent (headings, links) */
  --pink-deep:  #e21d8f;   /* accessible pink for small text/links on white */
  --pink-100:   #fecce8;   /* icon circles, section tops, nav accents */
  --pink-050:   #fee5f3;   /* soft wash */
  --white:      #ffffff;
  --line:       #ecd7e6;

  --shadow-sm: 0 2px 12px rgba(33, 37, 44, .06);
  --shadow-md: 0 14px 34px rgba(33, 37, 44, .10);

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap: 1160px;
  --radius: 14px;
}

/* ---- Base -------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; font-family: var(--sans); color: var(--ink); background: var(--white);
  font-size: 1.0625rem; line-height: 1.75; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pink-deep); text-decoration: none; }
a:hover { color: var(--pink); }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--charcoal); line-height: 1.14; margin: 0 0 .5em; font-weight: 600; }
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.6rem); }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.2rem; }
hr { display: none; }
strong { color: var(--charcoal); font-weight: 700; }
:focus-visible { outline: 3px solid var(--pink); outline-offset: 2px; border-radius: 4px; }

.accent { color: var(--pink); font-family: var(--serif); font-weight: 600; }
/* In the About heading the second phrase is slate, not pink (matches original). */
#about h2 .accent { color: var(--slate); }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 1000; background: var(--pink); color: #fff; padding: .6rem 1rem; }
.skip-link:focus { left: 0; }

/* ---- Layout ------------------------------------------------ */
.container { width: min(var(--wrap), 92%); margin-inline: auto; }
.container--narrow { width: min(860px, 92%); margin-inline: auto; }
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.bg-white { background: var(--white); }
.bg-pink { background: linear-gradient(180deg, var(--pink-100) 0%, #ffffff 100%); }
.bg-pink-soft { background: linear-gradient(170deg, var(--pink-100) 0%, #ffffff 100%); }

.section-head { max-width: 760px; margin: 0 auto 2.75rem; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  font-family: var(--sans); font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  font-size: .78rem; color: var(--slate); margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 16px; height: 16px; background: var(--pink);
  -webkit-mask: url(/assets/img/sparkle-icon.svg) center/contain no-repeat; mask: url(/assets/img/sparkle-icon.svg) center/contain no-repeat; }
.eyebrow--plain::before { display: none; }
.eyebrow--start { justify-content: flex-start; }
.lead { font-size: 1.16rem; color: var(--muted); }

/* ---- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-weight: 400; font-size: 17px; line-height: 1.2;
  padding: .875rem 1.15rem; border-radius: 8px; border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn--nav { padding: .625rem 1rem; }
a.btn { text-decoration: none; }
.btn--primary { background: var(--slate); color: #fff; border-color: var(--slate); }
.btn--primary:hover { background: var(--charcoal); border-color: var(--charcoal); color: #fff; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--slate); border-color: var(--slate); }
.btn--outline:hover { background: var(--slate); color: #fff; transform: translateY(-2px); }
.btn--pink { background: var(--pink-100); color: var(--slate); border-color: var(--pink-100); }
.btn--pink:hover { background: var(--pink); color: #fff; border-color: var(--pink); }
.btn--sm { padding: .5rem 1.1rem; font-size: .9rem; border-radius: 6px; }

/* ---- Header / nav ------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 100; background: var(--slate);
  display: flex; align-items: center; gap: 1.25rem;
  /* Full-width bar; content capped to ~1220px (the original header width). */
  padding: .5rem max(1.25rem, calc((100% - 1220px) / 2));
}
.site-header__logo-link { display: inline-flex; margin-right: auto; }
.site-header__logo { height: 60px; width: auto; }
.mainnav { display: flex; align-items: center; gap: 1.5rem; }
.navgroup__label { display: none; }
.navgroup--site .navgroup__links, .navgroup--page .navgroup__links {
  list-style: none; display: flex; align-items: center; gap: 1.4rem; margin: 0; padding: 0;
}
.navgroup--page { padding-left: 1.4rem; border-left: 1px solid rgba(255,255,255,.22); }
.navgroup--page:not(:has(a)) { display: none; }   /* hide when there are no jump links */
.navgroup__links a { color: #fff; font-weight: 400; font-size: 16px; padding: .3rem 0; border-bottom: 2px solid transparent; }
.navgroup__links a:hover { color: var(--pink-100); border-bottom-color: var(--pink); }
.navgroup--page .navgroup__links a { color: #f4dced; font-weight: 500; }
.has-dropdown { position: relative; }
.has-dropdown > a { display: inline-flex; align-items: center; }
.dropdown-toggle { background: none; border: 0; padding: 0 .1rem; margin-left: .15rem; color: #fff; cursor: pointer; display: inline-flex; }
.dropdown-toggle svg { width: 16px; height: 16px; }
.dropdown {
  position: absolute; top: calc(100% + .6rem); left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 236px; list-style: none; margin: 0; padding: .5rem; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transition: opacity .16s ease, transform .16s ease; z-index: 20;
}
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown, .has-dropdown.is-open .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.dropdown a { display: block; padding: .55rem .8rem; border-radius: 8px; color: var(--ink); font-size: .93rem; }
.dropdown a:hover { background: var(--pink-050); color: var(--pink-deep); }
.nav-toggle { display: none; background: none; border: 0; color: #fff; cursor: pointer; padding: .3rem; }
.nav-toggle svg { width: 30px; height: 30px; }

/* ---- Hero -------------------------------------------------- */
.hero { position: relative; isolation: isolate; text-align: center; overflow: hidden; }
/* Home hero: full botanical background photo + gradient overlay, tall band. */
.hero:not(.hero--service) {
  min-height: 800px; display: flex; align-items: center; background: #fdeaf3;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: -2; }
/* Exact overlay from the original: a horizontal white gradient (clear on the
   left, brightest at center) over a flat pink wash, over the hero photo.
   White transparent stops use white (not black) so the fade stays pink/white. */
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 15%, rgba(255,255,255,.75) 50%, rgba(255,255,255,.49) 85%, rgba(255,255,255,.49) 99%),
    linear-gradient(rgba(254,229,243,.8), rgba(254,229,243,.8));
}
.hero__inner { position: relative; width: min(880px, 92%); margin-inline: auto; }
.hero__logo { height: clamp(72px, 11vw, 104px); width: auto; margin: 0 auto 1.25rem; }
.hero h1 { color: var(--charcoal); margin-bottom: 1rem; }
.hero:not(.hero--service) h1 { font-size: clamp(2.9rem, 6.7vw, 5.4rem); }
.hero h1 .accent { display: block; }
.hero__sub { font-size: 22px; line-height: 1.45; color: rgba(33, 37, 44, .8); max-width: 36rem; margin: 0 auto 1.8rem; }
.btn__ico { width: 18px; height: 18px; flex: none; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-bottom: 1.9rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1rem 2.2rem; justify-content: center; }
.trust-item { display: inline-flex; align-items: center; gap: .55rem; color: var(--slate); font-weight: 600; font-size: .98rem; }
.trust-item img { width: 22px; height: 22px; }

/* service-page hero (compact, with breadcrumb) */
.hero--service {
  background: radial-gradient(120% 80% at 50% 0%, var(--pink-050) 0%, #fff 70%);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 4rem);
}
.hero--service h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); }
.hero--service .hero__inner { width: min(920px, 92%); }
.crumbs { font-size: .86rem; color: var(--slate); margin-bottom: 1rem; }
.crumbs a { color: var(--pink-deep); }

/* ---- Section heading with eyebrow -------------------------- */
.svc-intro { max-width: 820px; margin: 0 auto; text-align: center; }

/* ---- Service cards ----------------------------------------- */
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
.svc-card {
  background: #fff; border-radius: var(--radius); padding: 2.25rem 2rem 2rem; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; text-align: center; border: 1px solid #f4e6ef;
  transition: transform .18s ease, box-shadow .2s ease;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.icon-circle {
  width: 62px; height: 62px; border-radius: 50%; background: var(--pink-100);
  display: inline-flex; align-items: center; justify-content: center; margin: 0 auto 1.1rem;
}
.icon-circle img { width: 30px; height: 30px; }
.svc-card h3 { margin-bottom: .6rem; }
.svc-card__desc { color: var(--muted); font-size: 1rem; margin-bottom: 1.1rem; }
.svc-card__list { list-style: none; padding: 0; margin: 0 0 1.5rem; text-align: left; display: grid; gap: .55rem; }
.svc-card__list li { position: relative; padding-left: 1.7rem; color: var(--ink); font-size: .98rem; }
.svc-card__list li:empty { display: none; }
.svc-card__list li::before {
  content: ""; position: absolute; left: 0; top: .35rem; width: 1rem; height: 1rem; background: var(--pink);
  -webkit-mask: url(/assets/img/sparkle-icon.svg) center/contain no-repeat; mask: url(/assets/img/sparkle-icon.svg) center/contain no-repeat;
}
.svc-card__cta { margin-top: auto; align-self: flex-end; }

/* ---- Benefit list (service pages) -------------------------- */
.benefit-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .9rem; }
.benefit-list li { position: relative; padding-left: 2rem; }
.benefit-list li::before {
  content: ""; position: absolute; left: 0; top: .35rem; width: 1.2rem; height: 1.2rem; background: var(--pink);
  -webkit-mask: url(/assets/img/sparkle-icon.svg) center/contain no-repeat; mask: url(/assets/img/sparkle-icon.svg) center/contain no-repeat;
}
.benefit-list li strong { display: block; }

/* ---- Split (about, overview) ------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--text-right .split__media { order: 0; }
.split__media img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; }
.split__body h2 { margin-bottom: .5rem; }
.founder-name { font-family: var(--serif); font-size: 1.45rem; color: var(--charcoal); margin: 1.25rem 0 .3rem; }
.founder-role { font-family: var(--serif); color: var(--charcoal); font-weight: 600; font-size: 1.15rem; line-height: 1.35; margin-bottom: 1rem; }
.about__note { margin-top: 1.75rem; color: var(--muted); }
.about__note a { color: var(--pink-deep); }
.about__note a:hover { color: var(--pink); }

/* ---- What to Expect steps ---------------------------------- */
.expect-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; counter-reset: step; }
.expect-card { background: #fff; border: 1px solid #f4e6ef; border-radius: var(--radius); padding: 2.3rem 1.5rem 1.5rem; box-shadow: var(--shadow-sm); position: relative; }
.expect-card::before {
  counter-increment: step; content: counter(step); position: absolute; top: -20px; left: 1.5rem;
  width: 42px; height: 42px; border-radius: 50%; background: var(--pink); color: #fff;
  font-family: var(--serif); font-weight: 700; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 18px rgba(252,102,184,.4);
}
.expect-card h3 { margin: .3rem 0 .4rem; }
.expect-card p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ---- FAQ --------------------------------------------------- */
.faq { display: grid; gap: .8rem; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: .2rem 1.4rem; box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; font-family: var(--serif); font-size: 1.12rem; color: var(--charcoal); font-weight: 600; padding: 1rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq .plus { color: var(--pink); font-size: 1.6rem; line-height: 1; flex: none; transition: transform .2s; }
.faq details[open] .plus { transform: rotate(45deg); }
.faq details > p { color: var(--muted); margin: 0 0 1rem; }

/* ---- Contact section --------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 2rem; align-items: start; }
.contact-form-card, .info-card {
  background: #fff; border: 1px solid #f4e6ef; border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.contact-form-card { padding: 2rem; }
.contact-form-card h3 { font-size: 1.5rem; margin-bottom: .3rem; }
.form-note { color: var(--muted); font-size: .9rem; margin-bottom: 1.25rem; }
.req { color: var(--pink-deep); }
.wf-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.wf-form label { display: block; font-weight: 700; color: var(--charcoal); font-size: .92rem; margin: .9rem 0 .35rem; }
.wf-form input, .wf-form select, .wf-form textarea {
  width: 100%; padding: .7rem .85rem; border: 1px solid #dcd0d8; border-radius: 8px; font: inherit; color: var(--ink); background: #fff;
}
.wf-form input:focus, .wf-form select:focus, .wf-form textarea:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 3px rgba(252,102,184,.2); }
.wf-form textarea { min-height: 120px; resize: vertical; }
.wf-form .btn { margin-top: 1.25rem; }
.form-status { margin-top: 1rem; font-weight: 600; font-size: .95rem; }
.form-status.ok { color: #1a7f4b; }
.form-status.err { color: #c0392b; }

.info-cards { display: grid; gap: 1.5rem; }
.info-card { padding: 1.6rem 1.75rem; display: flex; gap: 1.1rem; align-items: flex-start; }
.info-card .icon-circle { margin: 0; width: 52px; height: 52px; flex: none; }
.info-card .icon-circle img { width: 24px; height: 24px; }
.info-card h3 { font-size: 1.3rem; margin-bottom: .35rem; }
.info-card p, .info-card a { color: var(--muted); font-size: .98rem; margin: 0; }
.info-card__body { flex: 1; }
.hours-table { display: grid; gap: .35rem; margin-top: .5rem; }
.hours-row { display: flex; justify-content: space-between; padding: .4rem .7rem; border-radius: 6px; font-size: .96rem; }
.hours-row:nth-child(odd) { background: var(--pink-050); }
.hours-row .day { color: var(--charcoal); font-weight: 600; }
.hours-row .time { color: var(--muted); }

/* ---- Map section ------------------------------------------- */
.map-embed { width: 100%; aspect-ratio: 16 / 6; min-height: 320px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow-sm); margin-top: 1.5rem; background: #eee; display: block; }
.map-fallback { display: flex; align-items: center; justify-content: center; text-align: center; color: var(--muted); background: linear-gradient(135deg, var(--pink-050), #fff); }

/* ---- Footer ------------------------------------------------ */
.site-footer { background: var(--charcoal); color: #d7d2d8; padding: clamp(3rem, 6vw, 4.5rem) 1.5rem 2rem; }
.footer-top { width: min(var(--wrap), 92%); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1.3fr; gap: 2.5rem; }
.footer-brand h3 { color: var(--pink); font-size: 1.6rem; margin-bottom: .6rem; }
.footer-brand p { color: #b9b3bc; }
.footer-brand h4, .footer-services h3 { color: var(--pink); font-size: 1.15rem; margin: 1.4rem 0 .7rem; font-family: var(--serif); }
.footer-contact a, .footer-contact span { display: block; color: #d7d2d8; margin-bottom: .4rem; }
.footer-contact a:hover { color: var(--pink-100); }
.footer-services__cols { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1.5rem; }
.footer-services__cols a { color: #d7d2d8; padding: .2rem 0; }
.footer-services__cols a:hover { color: var(--pink-100); }
.footer-policies { width: min(var(--wrap), 92%); margin: 2.5rem auto 0; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem; }
.footer-policies p { color: #a49daa; font-size: .86rem; text-align: center; max-width: 60rem; margin: 0 auto .8rem; }
.footer-policies strong { color: var(--pink-100); }
.footer-legal { text-align: center; color: #8d8792; font-size: .85rem; margin-top: 1rem; }
.footer-legal a { color: #b9b3bc; }

/* ---- Back to top ------------------------------------------- */
.to-top { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90; width: 46px; height: 46px; border-radius: 50%; background: var(--pink); color: #fff; border: 0; cursor: pointer; box-shadow: var(--shadow-md); display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .2s, transform .2s, visibility .2s; }
.to-top.is-on { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* ---- Responsive -------------------------------------------- */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: 1fr; }
  .split, .contact-grid, .footer-top { grid-template-columns: 1fr; }
  .split__media { order: -1; }
  .nav-toggle { display: inline-flex; }
  .mainnav {
    position: fixed; inset: 58px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--slate); padding: 1rem clamp(1rem,4vw,2.25rem) 1.75rem; box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s;
    max-height: calc(100vh - 58px); overflow-y: auto;
  }
  .mainnav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .navgroup__label { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); font-weight: 700; margin: 1rem 0 .5rem; }
  .navgroup--site .navgroup__links, .navgroup--page .navgroup__links { flex-direction: column; align-items: stretch; gap: .1rem; }
  .navgroup--page { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.18); padding-top: .5rem; }
  .navgroup__links a { padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .navgroup__links a:hover { border-bottom-color: rgba(255,255,255,.12); }
  .has-dropdown { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; }
  .has-dropdown > a { flex: 1; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: 0; display: none; width: 100%; padding: 0 0 .5rem 1rem; min-width: 0; background: transparent; }
  .has-dropdown.is-open .dropdown { display: block; }
  .dropdown a { color: #f4dced; }
  .dropdown a:hover { background: rgba(255,255,255,.08); color: #fff; }
  .btn--nav { margin-top: 1.2rem; }
  .wf-form .row2 { grid-template-columns: 1fr; }
  .footer-services__cols { grid-template-columns: 1fr; }
}
