/* ===== Theme tokens ===== */
:root {
  --white:      #ffffff;
  --cream:      #fff7f4;
  --pink-soft:  #ffd9e0;
  --pink:       #f5a4b7;
  --pink-deep:  #e94b7c;
  --pink-deeper:#d6356a;
  --teal:       #1f5862;
  --teal-deep:  #15424b;
  --ink:        #222222;
  --muted:      #5a5a5a;
  --line:       #f1e3e6;

  --radius:     16px;
  --radius-sm:  10px;
  --radius-pill:999px;
  --shadow-sm:  0 2px 8px rgba(31, 88, 98, .06);
  --shadow-md:  0 12px 32px rgba(31, 88, 98, .10);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;

  --header-h: 88px;
}

/* ===== Reset & base ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--teal); }
a:hover { color: var(--teal-deep); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.15;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; }

/* ===== Layout ===== */
.container {
  width: min(1100px, 100% - 2rem);
  margin-inline: auto;
}
.container.narrow { max-width: 760px; }

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.section-tight {
  padding: clamp(2.25rem, 5vw, 3.5rem) 0;
}
.section-cream { background: var(--cream); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.section-head-tight {
  margin-bottom: 1.5rem;
}
.section-head .section-lede {
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--pink-deep);
  margin-bottom: .75rem;
}

.grid { display: grid; gap: 1.25rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) {
  .grid-3 { grid-template-columns: 1fr; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; }
.btn:active { transform: translateY(1px); }
.btn-sm { padding: .55rem 1.05rem; font-size: .95rem; }
.btn-lg { padding: .95rem 1.6rem; font-size: 1.05rem; }

.btn-primary {
  background: var(--pink-deep);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(233, 75, 124, .28);
}
.btn-primary:hover { background: var(--pink-deeper); color: var(--white); }

.btn-secondary {
  background: var(--white);
  color: var(--teal);
  border-color: var(--teal);
}
.btn-secondary:hover { background: var(--teal); color: var(--white); }

.btn-on-teal {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-on-teal:hover { background: var(--white); color: var(--teal); border-color: var(--white); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
}
.brand-logo {
  width: clamp(94px, 10vw, 112px);
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.primary-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: .98rem;
}
.primary-nav a:hover { color: var(--pink-deep); }
.primary-nav .nav-call { color: var(--white); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: .5rem 1rem 1rem;
    box-shadow: var(--shadow-sm);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .15s ease, transform .15s ease;
  }
  .primary-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .primary-nav a {
    padding: .85rem .25rem;
    border-bottom: 1px solid var(--line);
  }
  .primary-nav .nav-call {
    margin-top: .75rem;
    text-align: center;
    border-bottom: 0;
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.9) 42%, rgba(255,247,244,.92) 100%);
  padding: clamp(2.25rem, 6vw, 5rem) 0 clamp(2.75rem, 7vw, 5rem);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  grid-template-rows: auto 1fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: center;
}
.hero-logo {
  grid-column: 1;
  grid-row: 1;
  width: min(330px, 72vw);
  height: auto;
  margin: 0;
  align-self: end;
}
.hero-copy {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}
.hero-art {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.hero-copy h1 .accent {
  font-style: italic;
  color: var(--pink-deep);
  font-weight: 500;
}
.hero-copy .lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 36rem;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin: 1.6rem 0 .6rem;
}
.micro {
  font-size: .9rem;
  color: var(--muted);
  margin: 0;
}

.hero-art { position: relative; }
.hero-art::after {
  content: "";
  position: absolute;
  inset: auto 6% -16px 8%;
  height: 26px;
  background: rgba(31, 88, 98, .18);
  filter: blur(16px);
  z-index: 0;
}
.hero-art .van-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  margin-inline: auto;
  border: 6px solid var(--white);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(31, 88, 98, .18);
}

@media (max-width: 880px) {
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    text-align: left;
    gap: 1.25rem;
  }
  .hero-logo {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    width: min(340px, 82vw);
    margin-bottom: .25rem;
  }
  .hero-art {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }
  .hero-art .van-photo {
    max-height: 420px;
  }
  .hero-copy {
    grid-column: 1;
    grid-row: auto;
  }
  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .lede,
  .hero-copy .micro {
    text-align: center;
  }
  .cta-row {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .brand-logo {
    width: 84px;
  }
  .hero-art .van-photo {
    border-width: 4px;
  }
}

/* ===== Features (why) ===== */
.feature {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  text-align: left;
  border: 1px solid var(--line);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--pink-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.feature h3 { color: var(--teal); margin-bottom: .35em; }
.feature p { color: var(--muted); margin: 0; }

/* ===== Service cards ===== */
.service-grid {
  gap: .9rem;
}
.service-grid .card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .35rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-grid .card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink);
}
.service-grid .card h3 { color: var(--teal); margin: 0; font-size: 1.1rem; }
.service-grid .card p { color: var(--muted); margin: 0; font-size: .95rem; line-height: 1.45; }

/* ===== Service area ===== */
.chip-row {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}
.chip {
  background: var(--white);
  border: 2px solid var(--pink);
  color: var(--teal);
  font-weight: 700;
  padding: .7rem 1.3rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}
.area-note {
  text-align: center;
  color: var(--muted);
  margin: 0;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.gallery-tile {
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(135deg, var(--pink-soft) 0%, #ffe9ee 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink-deeper);
  font-weight: 600;
  font-size: .9rem;
  border: 1px dashed var(--pink);
}

/* ===== Reviews ===== */
.review {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-sm);
  margin: 0;
}
.stars {
  color: var(--pink-deep);
  letter-spacing: .15em;
  font-size: 1rem;
  margin-bottom: .7rem;
}
.review blockquote {
  margin: 0 0 .9rem;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.55;
}
.review figcaption {
  color: var(--muted);
  font-weight: 600;
  font-size: .92rem;
}

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s ease;
}
.faq-list details[open] { border-color: var(--pink); }
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--teal);
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--pink-deep);
  transition: transform .2s ease;
  line-height: 1;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p {
  margin: .8rem 0 0;
  color: var(--muted);
}

/* ===== CTA band ===== */
.cta-band {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--white);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--pink-soft);
  border-radius: 50%;
  opacity: .12;
}
.cta-band::before { top: -60px; left: -60px; }
.cta-band::after  { bottom: -80px; right: -40px; width: 260px; height: 260px; }
.cta-band-inner { position: relative; }
.cta-band h2 { color: var(--white); margin-bottom: .25em; }
.cta-band p {
  color: rgba(255,255,255,.85);
  font-size: 1.15rem;
  margin-bottom: 1.6rem;
}
.cta-band .cta-row { justify-content: center; }

/* ===== Footer ===== */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 2rem 0 6rem; /* extra bottom padding so mobile bar doesn't cover content */
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  font-size: .94rem;
}
.footer-inner p { margin: 0 0 .25rem; }
.foot-brand {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--teal);
  font-size: 1.1rem;
}
.foot-line { color: var(--muted); }
.footer-inner a { font-weight: 700; text-decoration: none; }
.copy {
  width: 100%;
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: 1rem !important;
}

/* ===== Mobile sticky bar ===== */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: .65rem .8rem calc(.65rem + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  gap: .55rem;
  box-shadow: 0 -6px 20px rgba(31, 88, 98, .08);
  transform: translateY(110%);
  opacity: 0;
  transition: transform .35s cubic-bezier(.2, .7, .2, 1), opacity .25s ease;
  will-change: transform, opacity;
}
.mobile-bar.visible {
  transform: translateY(0);
  opacity: 1;
}
.mobile-bar .btn { flex: 1; }

@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 0; } /* footer already has spacer */
}

/* ===== Small fixes ===== */
@media (max-width: 480px) {
  .cta-row .btn { flex: 1; }
}

/* ============================================
   Modern motion & micro-interactions
   ============================================ */

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(30px, -22px) scale(1.06); }
}

@keyframes phone-wiggle {
  0%, 75%, 100% { transform: rotate(0); }
  78% { transform: rotate(-12deg); }
  82% { transform: rotate(12deg); }
  86% { transform: rotate(-7deg); }
  90% { transform: rotate(5deg); }
}

/* Hero entrance — staggered */
.hero-copy .eyebrow,
.hero-copy .hero-logo,
.hero-copy h1,
.hero-copy .lede,
.hero-copy .cta-row,
.hero-copy .micro {
  opacity: 0;
  animation: hero-rise .85s cubic-bezier(.2, .7, .2, 1) forwards;
}
.hero-copy .hero-logo { animation-delay: 40ms;  }
.hero-copy .eyebrow   { animation-delay: 120ms; }
.hero-copy h1         { animation-delay: 220ms; }
.hero-copy .lede      { animation-delay: 360ms; }
.hero-copy .cta-row   { animation-delay: 500ms; }
.hero-copy .micro     { animation-delay: 620ms; }

.hero-art {
  opacity: 0;
  animation: hero-rise 1s cubic-bezier(.2, .7, .2, 1) forwards;
  animation-delay: 280ms;
}

/* Phone icon "rings" periodically on call buttons */
.btn-primary svg {
  animation: phone-wiggle 5s ease-in-out infinite;
  transform-origin: center;
}

/* Sticky header gains shadow once scrolled */
.site-header {
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled {
  box-shadow: 0 6px 24px rgba(31, 88, 98, .08);
}

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity .8s cubic-bezier(.2, .7, .2, 1),
    transform .8s cubic-bezier(.2, .7, .2, 1);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings inside grids */
.grid-3 .reveal:nth-child(2)        { transition-delay: 80ms;  }
.grid-3 .reveal:nth-child(3)        { transition-delay: 160ms; }
.grid-3 .reveal:nth-child(4)        { transition-delay: 240ms; }
.grid-3 .reveal:nth-child(5)        { transition-delay: 320ms; }
.grid-3 .reveal:nth-child(6)        { transition-delay: 400ms; }
.gallery-grid .reveal:nth-child(2)  { transition-delay: 80ms;  }
.gallery-grid .reveal:nth-child(3)  { transition-delay: 160ms; }
.gallery-grid .reveal:nth-child(4)  { transition-delay: 240ms; }
.gallery-grid .reveal:nth-child(5)  { transition-delay: 320ms; }
.gallery-grid .reveal:nth-child(6)  { transition-delay: 400ms; }
.chip-row .reveal:nth-child(2)      { transition-delay: 80ms;  }
.chip-row .reveal:nth-child(3)      { transition-delay: 160ms; }
.faq-list .reveal:nth-child(2)      { transition-delay: 60ms;  }
.faq-list .reveal:nth-child(3)      { transition-delay: 120ms; }
.faq-list .reveal:nth-child(4)      { transition-delay: 180ms; }
.faq-list .reveal:nth-child(5)      { transition-delay: 240ms; }
.faq-list .reveal:nth-child(6)      { transition-delay: 300ms; }

/* Card sheen on hover */
.service-grid .card { position: relative; overflow: hidden; }
.service-grid .card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 35%, rgba(245, 164, 183, .14) 55%, transparent 75%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.service-grid .card:hover::before { opacity: 1; }

/* Feature hover */
.feature {
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--pink);
}
.feature-icon { transition: transform .35s cubic-bezier(.2, .7, .2, 1); }
.feature:hover .feature-icon { transform: scale(1.1) rotate(-4deg); }

/* Review card hover */
.review {
  transition: transform .35s ease, box-shadow .35s ease;
}
.review:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Chip hover */
.chip {
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.chip:hover {
  transform: translateY(-2px);
  background: var(--pink-soft);
  box-shadow: var(--shadow-md);
}

/* Gallery tile hover */
.gallery-tile {
  transition: transform .35s ease, box-shadow .35s ease;
}
.gallery-tile:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: var(--shadow-md);
}

/* FAQ open color shift */
.faq-list summary { transition: color .25s ease; }
.faq-list details[open] summary { color: var(--pink-deep); }

/* Animate the CTA band's decorative blobs */
.cta-band::before { animation: blob-drift 18s ease-in-out infinite; }
.cta-band::after  { animation: blob-drift 24s ease-in-out infinite; animation-delay: -9s; }

/* Buttons: gentle scale on hover */
.btn { transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .25s ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary:hover { box-shadow: 0 10px 24px rgba(233, 75, 124, .35); }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-copy > *, .hero-art { opacity: 1 !important; }
}
