
:root {
  --plum: #402070;
  --plum-dark: #29124c;
  --berry: #f06090;
  --berry-soft: #ffd0e0;
  --blush: #fff0f5;
  --cream: #fffaf4;
  --mint: #dff7ef;
  --sky: #d8f0ff;
  --sun: #ffd166;
  --ink: #2b2037;
  --muted: #6e6378;
  --line: rgba(64, 32, 112, .14);
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(64, 32, 112, .12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(240,96,144,.16), transparent 34rem),
    radial-gradient(circle at 82% 18%, rgba(255,209,102,.22), transparent 25rem),
    linear-gradient(180deg, #fffaf4 0%, #fff7fb 48%, #ffffff 100%);
  font-family: "Aptos", "Segoe UI", "Trebuchet MS", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image:
    radial-gradient(circle, rgba(64,32,112,.08) 1px, transparent 1px),
    radial-gradient(circle, rgba(240,96,144,.08) 1px, transparent 1px);
  background-size: 32px 32px, 52px 52px;
  background-position: 0 0, 18px 18px;
  z-index: -1;
}

a { color: var(--plum); text-decoration-thickness: 2px; text-underline-offset: 4px; }
a:hover { color: var(--berry); }
img { max-width: 100%; display: block; }

.skip-link {
  position: absolute;
  top: -60px;
  left: 1rem;
  background: var(--plum);
  color: white;
  padding: .75rem 1rem;
  border-radius: 999px;
  z-index: 99;
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 244, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: .7rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; }
.brand img { width: 180px; height: auto; }
.brand-text { display: none; color: var(--plum); font-weight: 900; letter-spacing: -.03em; line-height: 1.05; }
.nav-toggle {
  display: none;
  border: 0;
  background: var(--plum);
  color: white;
  border-radius: 999px;
  padding: .75rem 1rem;
  font-weight: 800;
  cursor: pointer;
}
.nav-links { display: flex; align-items: center; gap: .18rem; list-style: none; padding: 0; margin: 0; }
.nav-links a {
  display: block;
  padding: .72rem .78rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-size: .94rem;
  font-weight: 750;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  background: var(--blush);
  color: var(--plum);
}
.nav-cta {
  background: var(--berry) !important;
  color: white !important;
  box-shadow: 0 10px 22px rgba(240,96,144,.24);
}

main { min-height: 70vh; }
.section { padding: clamp(3.5rem, 7vw, 6.5rem) 1.2rem; }
.section.tight { padding-top: 2.2rem; padding-bottom: 2.2rem; }
.container { max-width: var(--max); margin: 0 auto; }
.narrow { max-width: 860px; margin: 0 auto; }

.hero {
  position: relative;
  padding: clamp(4rem, 9vw, 7.5rem) 1.2rem 3rem;
}
.hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, .78fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--plum);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .45rem .8rem;
  font-weight: 850;
  font-size: .9rem;
  box-shadow: 0 8px 25px rgba(64,32,112,.06);
}
.eyebrow::before { content: ""; width: .62rem; height: .62rem; border-radius: 50%; background: var(--berry); box-shadow: 14px 0 0 var(--sun), 28px 0 0 var(--mint); }
h1, h2, h3 { line-height: 1.04; margin: 0 0 1rem; color: var(--plum-dark); letter-spacing: -.045em; }
h1 { font-size: clamp(3rem, 8vw, 6.9rem); max-width: 900px; }
h2 { font-size: clamp(2.25rem, 5vw, 4.5rem); }
h3 { font-size: clamp(1.35rem, 2.5vw, 2rem); }
.lede { font-size: clamp(1.08rem, 2vw, 1.35rem); color: var(--muted); max-width: 740px; margin: 0 0 2rem; }
.page-kicker { color: var(--berry); text-transform: uppercase; letter-spacing: .14em; font-size: .84rem; font-weight: 950; margin-bottom: .7rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 48px;
  padding: .82rem 1.08rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-weight: 900;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--plum); color: white; box-shadow: 0 16px 32px rgba(64,32,112,.22); }
.btn-primary:hover { color: white; background: var(--berry); }
.btn-secondary { background: white; color: var(--plum); border-color: var(--line); }
.btn-soft { background: var(--blush); color: var(--plum); }

.hero-card {
  position: relative;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(64,32,112,.12);
  border-radius: var(--radius-xl);
  padding: clamp(1.3rem, 3vw, 2.2rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 42% 58% 65% 35%;
  background: linear-gradient(135deg, var(--berry-soft), var(--sun));
  top: -60px;
  right: -38px;
  opacity: .72;
}
.logo-orbit {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 52%, white 0 38%, transparent 39%),
    conic-gradient(from 160deg, rgba(240,96,144,.35), rgba(255,209,102,.55), rgba(216,240,255,.55), rgba(223,247,239,.6), rgba(240,96,144,.35));
}
.logo-orbit img { width: min(76%, 300px); filter: drop-shadow(0 18px 25px rgba(64,32,112,.14)); }
.floating-note {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  max-width: 230px;
  padding: .9rem 1rem;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 15px 35px rgba(64,32,112,.12);
  font-size: .92rem;
  font-weight: 750;
  color: var(--plum);
}

.page-hero {
  padding: clamp(3rem, 7vw, 6.2rem) 1.2rem clamp(2.4rem, 5vw, 4rem);
  background:
    linear-gradient(135deg, rgba(255,240,245,.92), rgba(255,250,244,.72)),
    radial-gradient(circle at 85% 10%, rgba(255,209,102,.24), transparent 20rem);
  border-bottom: 1px solid var(--line);
}
.page-hero .container { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 2rem; }
.page-hero p { max-width: 760px; margin: 0; font-size: 1.15rem; color: var(--muted); }
.page-mark {
  width: 124px;
  aspect-ratio: 1;
  border-radius: 35px;
  background: white;
  padding: 1rem;
  box-shadow: var(--shadow);
  transform: rotate(5deg);
}

.grid { display: grid; gap: 1.2rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.1rem, 2.4vw, 1.65rem);
  box-shadow: 0 18px 45px rgba(64,32,112,.08);
}
.card.pop { background: linear-gradient(145deg, white, var(--blush)); }
.card h3 { margin-bottom: .55rem; }
.card p:last-child { margin-bottom: 0; }
.icon-bubble {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--blush);
  color: var(--plum);
  font-weight: 950;
  margin-bottom: 1rem;
  box-shadow: inset 0 -8px 0 rgba(240,96,144,.12);
}
.icon-bubble.alt { background: var(--mint); }
.icon-bubble.sun { background: #fff2bf; }

.ribbon {
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--plum), #6830a1);
  color: white;
  padding: clamp(1.6rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.ribbon::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -60px;
  bottom: -90px;
  border-radius: 50%;
  background: rgba(255,209,102,.28);
}
.ribbon h2, .ribbon h3 { color: white; }
.ribbon p { color: rgba(255,255,255,.86); margin-bottom: 0; }
.ribbon .btn { position: relative; z-index: 1; background: white; color: var(--plum); }

.promise-grid { display: grid; grid-template-columns: 280px 1fr; gap: 1.5rem; align-items: start; }
.promise-stamp {
  position: sticky;
  top: 110px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.promise-stamp img { width: 160px; margin: 0 auto 1rem; }
.promise-list { display: grid; gap: .85rem; }
.promise-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1rem;
  align-items: start;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1rem;
}
.promise-letter {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--berry), var(--berry-soft));
  color: white;
  font-size: 1.35rem;
  font-weight: 950;
}
.promise-item h3 { font-size: 1.18rem; margin-bottom: .2rem; letter-spacing: -.02em; }
.promise-item p { margin: 0; color: var(--muted); }

.feature-list { display: grid; gap: .7rem; padding: 0; margin: 1rem 0 0; list-style: none; }
.feature-list li {
  padding: .8rem .9rem .8rem 2.7rem;
  background: rgba(255,255,255,.76);
  border: 1px solid var(--line);
  border-radius: 16px;
  position: relative;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: .9rem;
  top: 1.08rem;
  width: .72rem;
  height: .72rem;
  background: var(--berry);
  border-radius: 50%;
  box-shadow: 10px 0 0 var(--sun);
}

.bio-card { display: grid; grid-template-columns: 150px 1fr; gap: 1.3rem; align-items: start; }
.avatar {
  aspect-ratio: 1;
  border-radius: 36px;
  display: grid;
  place-items: center;
  font-size: 2.6rem;
  font-weight: 950;
  color: var(--plum);
  background: linear-gradient(135deg, var(--blush), var(--mint));
  border: 1px solid var(--line);
}
.role { color: var(--berry); font-weight: 950; margin: -.5rem 0 1rem; }

.info-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.info-strip .card { padding: 1.1rem; }
.info-label { color: var(--muted); font-size: .86rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.info-value { color: var(--plum-dark); font-size: 1.05rem; font-weight: 900; margin-top: .25rem; }

.faq { display: grid; gap: .8rem; }
details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
}
summary {
  cursor: pointer;
  padding: 1rem 1.2rem;
  font-weight: 900;
  color: var(--plum-dark);
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--berry); font-size: 1.3rem; }
details[open] summary::after { content: "–"; }
details p { padding: 0 1.2rem 1.2rem; margin: 0; color: var(--muted); }

.map-card {
  min-height: 380px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(64,32,112,.86), rgba(240,96,144,.72)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.16) 0 10px, transparent 10px 20px);
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}
.map-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50% 50% 50% 0;
  background: white;
  transform: rotate(-45deg);
  top: 84px;
  left: calc(50% - 60px);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.map-card::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--berry);
  top: 123px;
  left: calc(50% - 21px);
}
.map-card h3, .map-card p { color: white; position: relative; z-index: 1; }
.video-placeholder {
  border: 2px dashed rgba(64,32,112,.24);
  background: rgba(255,255,255,.65);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.site-footer {
  background: var(--plum-dark);
  color: rgba(255,255,255,.82);
  padding: 3.2rem 1.2rem 1.2rem;
  margin-top: 2rem;
}
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .8fr .8fr;
  gap: 2rem;
}
.footer-logo { width: 168px; background: white; border-radius: 22px; padding: .55rem; margin-bottom: 1rem; }
.footer-mini { width: 70px; margin-bottom: 1rem; }
.site-footer h3 { color: white; font-size: 1.2rem; }
.site-footer a { color: white; }
.footer-quote {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.72);
  font-size: .95rem;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + .5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: white;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: .6rem;
    box-shadow: var(--shadow);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: .9rem 1rem; }
  .hero-grid, .page-hero .container, .promise-grid, .ribbon, .footer-grid { grid-template-columns: 1fr; }
  .promise-stamp { position: relative; top: 0; }
  .grid-3, .grid-4, .info-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .brand img { width: 138px; }
  .hero { padding-top: 3rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .logo-orbit { min-height: 250px; }
  .grid-2, .grid-3, .grid-4, .info-strip { grid-template-columns: 1fr; }
  .bio-card { grid-template-columns: 1fr; }
  .avatar { width: 132px; }
  .page-mark { display: none; }
  .btn-row { align-items: stretch; }
  .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ==============================
   Editable embeds and testimonials
   ============================== */
.map-embed-card {
  min-height: 420px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
}
.google-map-frame {
  width: 100%;
  min-height: 320px;
  height: 100%;
  border: 0;
  background: linear-gradient(135deg, var(--blush), var(--sky));
}
.map-caption {
  padding: 1.2rem;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,240,245,.96));
}
.map-caption p { margin-bottom: 1rem; color: var(--muted); }

.video-frame-placeholder {
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  color: var(--plum);
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255,255,255,.8), rgba(255,240,245,.9)),
    radial-gradient(circle at 30% 30%, rgba(255,209,102,.5), transparent 12rem);
  border: 2px dashed rgba(64,32,112,.24);
}
.video-frame-placeholder span {
  border-radius: 999px;
  background: white;
  padding: .8rem 1.2rem;
  box-shadow: 0 12px 28px rgba(64,32,112,.12);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}
.testimonial-card {
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.1rem, 2.4vw, 1.6rem);
  box-shadow: 0 18px 45px rgba(64,32,112,.08);
}
.testimonial-stars {
  color: var(--berry);
  letter-spacing: .12em;
  font-size: 1.05rem;
  margin-bottom: .9rem;
}
.testimonial-card blockquote {
  margin: 0 0 1.15rem;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.6;
}
.testimonial-author {
  margin: 0;
  color: var(--plum-dark);
  font-weight: 950;
}
.testimonial-meta {
  margin: .18rem 0 0;
  color: var(--muted);
  font-size: .92rem;
}
.testimonial-actions { margin-top: 1.2rem; }

@media (max-width: 980px) {
  .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* Team photo placeholders: replace the placeholder div with an img.team-photo when staff photos are supplied. */
.team-photo-placeholder,
.team-photo {
  width: 150px;
  aspect-ratio: 4 / 5;
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(64,32,112,.10);
}
.team-photo-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: .8rem;
  padding: 1rem;
  text-align: center;
  color: var(--plum);
  font-weight: 900;
  font-size: .92rem;
  line-height: 1.25;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,209,102,.45), transparent 5rem),
    linear-gradient(135deg, var(--blush), var(--mint));
}
.photo-silhouette {
  width: 62px;
  height: 62px;
  border-radius: 50% 50% 44% 44%;
  background: rgba(64,32,112,.18);
  position: relative;
}
.photo-silhouette::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -44px;
  width: 92px;
  height: 58px;
  transform: translateX(-50%);
  border-radius: 50% 50% 18px 18px;
  background: rgba(64,32,112,.14);
}
.team-photo {
  object-fit: cover;
  display: block;
}
.promise-stamp h2 {
  font-size: clamp(1.38rem, 2vw, 2.05rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.promise-stamp p { font-size: .98rem; }

@media (max-width: 680px) {
  .team-photo-placeholder,
  .team-photo { width: min(190px, 100%); }
}
