/* ===== Tokens ===== */
:root {
  --cream: #fdf7ef;        /* page background */
  --cream-2: #fbf1e6;      /* cards */
  --cream-3: #f7eadc;
  --blush: #f3e4d8;        /* blush section */
  --blush-2: #efdfd3;      /* testimonial section */
  --brown: #5e4128;        /* heading dark brown */
  --brown-mid: #7a5a3e;
  --tan: #b08a66;          /* accent / icons */
  --tan-soft: #c9a98f;
  --dark: #2c2018;         /* dark pill / overlay */
  --text: #6a5848;         /* body text brown-gray */
  --text-soft: #8a7868;
  --line: #ece0d2;
  --line-2: #e3d4c4;
  --radius: 26px;
  --radius-sm: 16px;
  --shadow: 0 30px 70px -30px rgba(94, 65, 40, .35);
  --shadow-sm: 0 12px 30px -18px rgba(94, 65, 40, .3);
  --container: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --serif: "Hedvig Letters Serif", Georgia, "Times New Roman", serif;
  --sans: "Figtree", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { font-family: var(--sans); background: var(--cream); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 100; background: var(--dark); color: #fff; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { left: 12px; top: 12px; }

/* ===== Typography ===== */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 400; line-height: 1.08; letter-spacing: -.01em; color: var(--brown); }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: 1.4rem; }
p { color: var(--text); }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--tan); margin-bottom: 18px; }

/* ===== Flower brand mark ===== */
.flower { width: 22px; height: 22px; flex: none; display: inline-block; background: var(--tan); -webkit-mask: var(--flower-mask) center/contain no-repeat; mask: var(--flower-mask) center/contain no-repeat; }
.flower--sm { width: 16px; height: 16px; }
.flower--xs { width: 12px; height: 12px; }
:root { --flower-mask: url("images/flower.svg"); }

/* ===== Buttons ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--sans); font-weight: 500; font-size: .92rem; cursor: pointer; padding: 11px 20px; border-radius: 999px; border: 1px solid transparent; transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease); white-space: nowrap; }
.btn--lg { padding: 14px 26px; font-size: .98rem; }
.btn--sm { padding: 9px 16px; font-size: .85rem; }
.btn--dark { background: var(--dark); color: #f5ece1; }
.btn--dark:hover { background: #3a2b1f; transform: translateY(-2px); }
.btn--dark .flower { background: #e9c9a6; }
.btn--outline { background: transparent; color: var(--brown-mid); border-color: var(--line-2); }
.btn--outline:hover { background: var(--cream-2); border-color: var(--tan-soft); }
.btn--outline .flower { background: var(--tan); }
.btn--pill { background: var(--cream-2); color: var(--brown); border-color: var(--line-2); }
.btn--pill:hover { background: #fff; border-color: var(--tan-soft); }
.btn:focus-visible { outline: 3px solid var(--tan); outline-offset: 3px; }

/* ===== Navbar ===== */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(253, 247, 239, .9); backdrop-filter: blur(12px); }
.nav__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 76px; }
.nav__left { display: flex; gap: 8px; }
.nav__link { padding: 8px 16px; border-radius: 999px; font-weight: 500; color: var(--brown-mid); transition: background .2s, color .2s; }
.nav__link:hover { color: var(--brown); }
.nav__link--active { background: var(--cream-2); color: var(--brown); }
.brand { display: inline-flex; align-items: center; gap: 9px; justify-self: center; }
.brand__name { font-family: var(--serif); font-size: 1.55rem; color: var(--brown); }
.brand__logo { height: 32px; width: auto; display: block; transition: opacity .2s var(--ease); }
.brand:hover .brand__logo { opacity: .82; }
.brand__logo--footer { height: 42px; }
.nav__right { display: flex; align-items: center; justify-content: flex-end; gap: 12px; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 22px; height: 2px; background: var(--brown); border-radius: 2px; transition: .25s; }
.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); }
.nav__mobile { display: none; flex-direction: column; gap: 4px; padding: 12px 20px 22px; background: var(--cream); border-top: 1px solid var(--line); }
.nav__mobile a:not(.btn) { padding: 12px 6px; font-weight: 500; color: var(--brown-mid); border-bottom: 1px solid var(--line); }
.nav__mobile .btn { margin-top: 10px; }

/* ===== Hero ===== */
.hero { padding: clamp(8px, 1vw, 14px) clamp(14px, 1.8vw, 30px) 0; }
.hero__media { position: relative; width: 100%; overflow: hidden; border-radius: clamp(26px, 3vw, 46px); }
.hero__media > img { width: 100%; height: clamp(760px, 104vh, 1040px); object-fit: cover; object-position: center 35%; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(40,28,20,.42) 0%, rgba(40,28,20,.08) 34%, rgba(40,28,20,.05) 60%, rgba(40,28,20,.12) 100%); }
.hero__content { position: absolute; left: 0; right: 0; top: 0; display: flex; flex-direction: column; align-items: center; text-align: center; padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 28px) 0; z-index: 6; pointer-events: none; }
.hero__content h1 { color: #fff8f0; margin-bottom: 18px; }
.hero__content p { color: rgba(255,250,243,.92); font-size: 1.05rem; max-width: 42ch; }

/* ----- Radial treatment ring (rotating) ----- */
.hero__fan { position: absolute; left: 50%; bottom: 84px; width: 1120px; height: 640px; transform: translateX(-50%); transform-origin: 50% 100%; overflow: hidden; z-index: 2; --fan-inner: 128px; pointer-events: none; -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 46px), transparent 100%); mask-image: linear-gradient(to bottom, #000 calc(100% - 46px), transparent 100%); }
.hero__ring { position: absolute; left: 50%; bottom: 0; width: 0; height: 0; transform-origin: 0 0; animation: ringSpin 64s linear infinite; }
.ray { position: absolute; left: 0; bottom: 0; width: 0; height: 0; transform-origin: 0 0; transform: rotate(var(--a)) scale(.05); opacity: 0; transition: transform 1.1s var(--ease), opacity .8s ease; transition-delay: var(--d, 0s); }
.hero__fan.in .ray { transform: rotate(var(--a)) scale(1); opacity: 1; }
.ray__pill {
  position: absolute; bottom: var(--fan-inner); left: 50%; transform: translateX(-50%);
  width: 72px; height: clamp(258px, 31vh, 320px);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  padding: 13px 0 22px; border-radius: 999px;
  background: rgba(255, 252, 247, .13);
  border: 1px solid rgba(255, 251, 245, .5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.32), 0 14px 30px -18px rgba(40,28,20,.5);
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
.ray__dot { flex: none; width: 50px; height: 50px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(255,255,255,.92); box-shadow: 0 5px 14px -4px rgba(40,28,20,.5); }
.ray__dot img { width: 100%; height: 100%; object-fit: cover; }
.ray__label { writing-mode: vertical-rl; white-space: nowrap; color: #fff; font-size: .86rem; font-weight: 600; letter-spacing: .02em; text-shadow: 0 1px 8px rgba(40,28,20,.6); }

@keyframes ringSpin { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: clamp(160px, 17vw, 250px); z-index: 3; display: block; }

.hero__explore {
  position: absolute; left: 50%; bottom: clamp(24px, 3.5vw, 50px); transform: translateX(-50%);
  z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--brown); font-weight: 500; font-size: 1.08rem; text-align: center;
  padding: 4px 18px; transition: transform .2s var(--ease);
}
.hero__explore .flower { background: var(--tan); width: 30px; height: 30px; }
.hero__explore:hover { transform: translateX(-50%) translateY(-3px); }

/* ===== Statement / collage ===== */
.statement { padding: clamp(64px, 9vw, 110px) 0; text-align: center; }
.statement .eyebrow { justify-content: center; }
.statement__grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: center; max-width: 1100px; margin: 10px auto 0; }
.statement__text { grid-column: 1 / -1; grid-row: 1; font-size: clamp(1.9rem, 4.2vw, 3.3rem); line-height: 1.25; max-width: 30ch; margin: 0 auto; padding: 30px 0; }
.statement__text .ic { color: var(--tan); font-size: .8em; }
.statement__img { border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); width: 150px; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.statement__img:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.statement__img img { width: 100%; height: 150px; object-fit: cover; transition: transform .5s var(--ease); }
.statement__img:hover img { transform: scale(1.08); }
.statement__img--a { justify-self: start; align-self: start; }
.statement__img--b { justify-self: end; align-self: start; }
.statement__img--c { justify-self: start; align-self: end; }
.statement__img--d { justify-self: end; align-self: end; }
.stars { color: #d59a4e; letter-spacing: 2px; font-size: .9rem; }

/* ===== Section base ===== */
.section { padding: clamp(60px, 8vw, 100px) 0; }
.section--blush { background: var(--blush); }
.section--blush2 { background: var(--blush-2); }
.section__head { max-width: 640px; margin-bottom: 46px; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }

/* ===== Treatments (expandable accordion) ===== */
.section__lead { max-width: 60ch; margin-top: 14px; font-size: 1.02rem; }
.svc-list { display: grid; gap: 16px; }
.svc { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: background .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.svc:hover { border-color: var(--line-2); }
.svc[open] { background: #fdf3e8; box-shadow: var(--shadow-sm); }
.svc__summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: 20px; padding: 26px 32px; }
.svc__summary::-webkit-details-marker { display: none; }
.svc__summary:focus-visible { outline: 3px solid var(--tan); outline-offset: -3px; border-radius: var(--radius); }
.svc__icon { flex: none; width: 52px; height: 52px; color: var(--tan); display: grid; place-items: center; background: var(--cream); border-radius: 14px; }
.svc__icon img, .svc__icon svg { width: 30px; height: 30px; }
.svc__head { flex: 1; display: grid; gap: 4px; min-width: 0; }
.svc__head h3 { font-size: clamp(1.35rem, 2.6vw, 2rem); }
.svc__tag { color: var(--text-soft); font-size: .96rem; }
.svc__toggle { position: relative; flex: none; width: 26px; height: 26px; }
.svc__toggle::before, .svc__toggle::after { content: ""; position: absolute; background: var(--tan); border-radius: 2px; transition: transform .28s var(--ease), opacity .2s; }
.svc__toggle::before { top: 12px; left: 3px; width: 20px; height: 2px; }
.svc__toggle::after { top: 3px; left: 12px; width: 2px; height: 20px; }
.svc[open] .svc__toggle::after { transform: rotate(90deg); opacity: 0; }
.svc__panel { display: grid; grid-template-columns: 300px 1fr; gap: 30px; padding: 4px 32px 32px; align-items: start; animation: svcIn .35s var(--ease); }
@keyframes svcIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.svc__media { border-radius: var(--radius-sm); overflow: hidden; }
.svc__media img { width: 100%; height: 210px; object-fit: cover; }
.svc__content p { font-size: 1rem; margin-bottom: 18px; }
.svc__list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 11px 22px; margin-bottom: 24px; }
.svc__list li { position: relative; padding-left: 24px; font-size: .92rem; color: var(--brown-mid); }
.svc__list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--tan); }
.svc__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 18px; border-top: 1px solid var(--line); }
.svc__price { font-size: .95rem; color: var(--brown-mid); }
.svc__price b { color: var(--brown); font-weight: 600; }
.svc__price span { color: var(--text-soft); }

/* ===== Provider ===== */
.provider { display: grid; grid-template-columns: .95fr 1.05fr; gap: 60px; align-items: center; }
.provider__media { position: relative; }
.provider__media img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius); }
.provider__card { position: absolute; left: 22px; bottom: 22px; right: 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; border-radius: var(--radius-sm); color: #fbeede; background: linear-gradient(120deg, rgba(70,46,28,.85), rgba(120,86,56,.7)); backdrop-filter: blur(3px); }
.provider__card strong { font-family: var(--serif); font-size: 1.25rem; display: block; }
.provider__card small { opacity: .85; }
.provider__card .flower { background: #f0d3b0; }
.provider__copy h2 { margin: 6px 0 16px; }
.provider__intro { font-size: 1.04rem; margin-bottom: 26px; }
.provider__intro b { color: var(--brown); font-weight: 600; }
.values { list-style: none; display: grid; gap: 18px; margin-bottom: 28px; }
.values li { display: flex; align-items: center; gap: 16px; font-size: 1.05rem; color: var(--brown-mid); }
.values__icon { flex: none; width: 30px; height: 30px; color: var(--tan); }
.values__icon svg { width: 30px; height: 30px; }

/* About expandable */
.about-more { border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2); margin-bottom: 28px; }
.about-more summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 2px; }
.about-more summary::-webkit-details-marker { display: none; }
.about-more__label { font-family: var(--sans); font-weight: 600; color: var(--brown); font-size: 1rem; }
.about-more[open] .about-more__label::after { content: " — show less"; color: var(--text-soft); font-weight: 400; }
.about-more__toggle { position: relative; flex: none; width: 22px; height: 22px; }
.about-more__toggle::before, .about-more__toggle::after { content: ""; position: absolute; background: var(--tan); border-radius: 2px; transition: transform .28s var(--ease), opacity .2s; }
.about-more__toggle::before { top: 10px; left: 1px; width: 20px; height: 2px; }
.about-more__toggle::after { top: 1px; left: 10px; width: 2px; height: 20px; }
.about-more[open] .about-more__toggle::after { transform: rotate(90deg); opacity: 0; }
.about-more__body { padding: 0 2px 22px; animation: svcIn .35s var(--ease); }
.about-more__body p { font-size: .98rem; margin-bottom: 14px; }
.about-more__stats { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 20px; }
.about-more__stats div { display: grid; gap: 2px; }
.about-more__stats strong { font-family: var(--serif); font-size: 1.7rem; color: var(--brown); }
.about-more__stats small { color: var(--text-soft); font-size: .82rem; }

/* ===== Bento ===== */
.bento { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; align-items: start; }
.bento__col { display: flex; flex-direction: column; gap: 20px; }
.bento__card { position: relative; background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; display: flex; flex-direction: column; gap: 12px; overflow: hidden; }
.bento__card--cream h3 { font-size: 1.5rem; }
.bento__card .badge { align-self: flex-start; background: var(--blush); color: var(--brown-mid); font-family: var(--sans); font-size: .72rem; font-weight: 600; letter-spacing: .1em; padding: 5px 12px; border-radius: 999px; }
.bento__card p { font-size: .96rem; }
.bento__card .btn { margin-top: auto; align-self: flex-start; }
.bento__free { min-height: 232px; }
.bento__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; }
.bento__chips span { background: var(--cream); border: 1px solid var(--line); padding: 7px 14px; border-radius: 999px; font-size: .82rem; color: var(--brown-mid); }

/* image card */
.bento__img { padding: 0; min-height: 200px; }
.bento__img img { width: 100%; height: 100%; min-height: 200px; object-fit: cover; }
.bento__img--tall { flex: 1; min-height: 320px; }

/* before / after comparison */
.ba { padding: 0; min-height: 520px; cursor: ew-resize; user-select: none; -webkit-user-select: none; touch-action: pan-y; }
.ba__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; -webkit-user-drag: none; user-select: none; }
/* Real before/after pair: the "before" image is clipped by the slider position. */
.ba__img--after { }
.ba__img--before { clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba__tag { position: absolute; top: 18px; z-index: 3; background: rgba(253,247,239,.92); color: var(--brown); font-family: var(--sans); font-size: .78rem; font-weight: 600; padding: 5px 12px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.ba__tag--before { left: 18px; }
.ba__tag--after { right: 18px; }
.ba__handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px; transform: translateX(-1px); background: rgba(255,255,255,.92); border: 0; z-index: 4; cursor: ew-resize; padding: 0; }
.ba__handle::before { content: ""; position: absolute; top: 50%; left: 50%; width: 46px; height: 46px; transform: translate(-50%,-50%); border-radius: 50%; background: rgba(253,247,239,.95); box-shadow: 0 6px 18px -6px rgba(40,28,20,.5); }
.ba__handle svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 1; color: var(--brown); pointer-events: none; }
.ba__caption { position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 3; display: flex; flex-direction: column; gap: 10px; padding: 18px 20px; border-radius: var(--radius-sm); background: linear-gradient(180deg, rgba(44,32,24,0), rgba(44,32,24,.6)); color: #fff; }
.ba__caption strong { font-family: var(--serif); font-weight: 400; font-size: 1.32rem; color: #fff; }
.ba__chips { display: flex; gap: 8px; }
.ba__chips span { display: inline-flex; align-items: center; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.35); color: #fff; font-size: .78rem; padding: 5px 12px; border-radius: 999px; -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px); }

/* feature card (heading + image) */
.bento__feature { padding: 0; min-height: 286px; }
.bento__feature figcaption { padding: 24px 26px 4px; }
.bento__feature figcaption h3 { font-size: 1.42rem; line-height: 1.12; }
.bento__feature-img { flex: 1; min-height: 150px; overflow: hidden; }
.bento__feature-img img { width: 100%; height: 100%; min-height: 150px; object-fit: cover; }

/* tailored faces */
.bento__faces { display: flex; }
.bento__faces img { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; border: 3px solid var(--cream-2); }
.bento__faces img + img { margin-left: -16px; }
.bento__tailored h3 { font-size: 1.42rem; }

/* stat */
.bento__stat { min-height: 232px; justify-content: flex-start; }
.bento__stat-num { font-family: var(--serif); font-weight: 400; font-size: 3.4rem; line-height: 1; color: var(--brown); }
.bento__stat-num span { font-size: 1.7rem; color: var(--tan); margin-left: 4px; }
.bento__watermark { position: absolute; right: -4px; bottom: 8px; font-family: var(--serif); font-size: 3rem; line-height: 1; color: var(--brown); opacity: .07; pointer-events: none; }


/* ===== Medical ===== */
.medical { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.medical__copy h2 { margin-bottom: 18px; }
.medical__copy p { font-size: 1.04rem; margin-bottom: 22px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.chips span { background: var(--cream); border: 1px solid var(--line-2); padding: 9px 16px; border-radius: 999px; font-size: .9rem; color: var(--brown-mid); }
.medical__support { display: inline-flex; align-items: center; gap: 14px; background: var(--cream); border: 1px solid var(--line-2); border-radius: var(--radius-sm); padding: 14px 18px; }
.medical__support-icon { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--blush); color: var(--tan); display: grid; place-items: center; }
.medical__support-icon svg { width: 22px; height: 22px; }
.medical__support strong { display: block; color: var(--brown); font-family: var(--sans); }
.medical__support small { color: var(--text-soft); }
.medical__media img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--radius); }

/* ===== Testimonials ===== */
.testi { display: grid; grid-template-columns: 1fr 1fr .9fr; grid-template-rows: auto 1fr; gap: 30px 40px; align-items: start; }
.testi__head { grid-column: 1 / 3; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.testi__nav { display: flex; gap: 10px; }
.round-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-2); background: #fff; color: var(--brown); font-size: 1.1rem; cursor: pointer; transition: background .2s, transform .2s; }
.round-btn:hover { background: var(--cream-2); transform: translateY(-2px); }
.testi__cards { grid-column: 1 / 3; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card { background: #fff; border-radius: var(--radius); }
.quote { padding: 28px 26px; display: flex; flex-direction: column; gap: 14px; }
.quote blockquote { color: var(--brown-mid); font-size: 1rem; line-height: 1.6; }
.quote figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote figcaption img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.quote figcaption span { display: grid; }
.quote figcaption strong { font-family: var(--sans); color: var(--brown); }
.quote figcaption small { color: var(--text-soft); }
.testi__media { grid-column: 3; grid-row: 1 / 3; position: relative; height: 100%; min-height: 360px; border-radius: var(--radius); overflow: hidden; }
.testi__media img { width: 100%; height: 100%; object-fit: cover; }

/* ===== Google Reviews ===== */
.greviews { max-width: 1120px; margin: 0 auto; }
.greviews__summary { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 30px; box-shadow: var(--shadow-sm); margin-bottom: 30px; }
.greviews__g { flex: none; display: grid; place-items: center; }
.greviews__score { display: grid; gap: 3px; }
.greviews__score strong { font-family: var(--serif); font-size: 2.5rem; color: var(--brown); line-height: 1; }
.greviews__score small { color: var(--text-soft); font-size: .92rem; }
.greviews__score small b { color: var(--brown-mid); font-weight: 600; }
.stars--lg { font-size: 1.3rem; letter-spacing: 3px; }
.greviews__cta { margin-left: auto; }
.greviews__grid { columns: 3; column-gap: 22px; }
.greview { break-inside: avoid; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px 22px 24px; margin: 0 0 22px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.greview:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.greview__top { display: flex; align-items: center; gap: 12px; margin-bottom: 11px; }
.greview__avatar { flex: none; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--c, #8a7868); color: #fff; font-weight: 600; font-size: 1.15rem; font-family: var(--sans); }
.greview__avatar--sm { width: 34px; height: 34px; font-size: .92rem; }
.greview__id { display: grid; gap: 1px; flex: 1; min-width: 0; }
.greview__id strong { font-family: var(--sans); font-weight: 600; color: var(--brown); font-size: .98rem; }
.greview__id small { color: var(--text-soft); font-size: .8rem; }
.greview__g { flex: none; opacity: .92; }
.greview .stars { font-size: 1rem; letter-spacing: 1px; }
.greview p { margin-top: 8px; color: var(--brown-mid); font-size: .94rem; line-height: 1.6; }
.mini-quote figcaption .greview__avatar { box-shadow: none; }

/* ===== Blog ===== */
.blog { display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: start; }
.post__img { border-radius: var(--radius-sm); overflow: hidden; }
.post__img img { width: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.post:hover .post__img img { transform: scale(1.05); }
.post__meta { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--text-soft); margin: 16px 0 8px; }
.post--feature .post__img img { height: 360px; }
.post--feature h3 { font-size: 1.8rem; }
.blog__side { display: grid; gap: 28px; }
.post--row { display: grid; grid-template-columns: 150px 1fr; gap: 18px; align-items: center; }
.post--row .post__img img { height: 120px; }
.post--row .post__meta { margin: 0 0 6px; }
.post--row h3 { font-size: 1.25rem; }

/* ===== Appointment ===== */
.appointment { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: stretch; }
.appointment__copy { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 40px; }
.appointment__copy h2 { margin-bottom: 8px; }
.appointment__copy > p { margin-bottom: 28px; }
.appt-form { display: grid; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .85rem; font-weight: 600; color: var(--brown-mid); }
.field input, .field select, .field textarea { font: inherit; color: var(--brown); background: var(--cream); border: 1px solid var(--line-2); border-radius: 12px; padding: 13px 15px; width: 100%; transition: border-color .2s, box-shadow .2s; }
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--tan); box-shadow: 0 0 0 3px rgba(176,138,102,.18); background: #fff; }
.appt-form .btn { justify-self: start; }
.form__success { color: var(--brown-mid); font-weight: 600; }
.appointment__media { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 400px; }
.appointment__media img { width: 100%; height: 100%; object-fit: cover; }
.appointment__contact { position: absolute; left: 16px; bottom: 16px; display: flex; gap: 10px; flex-wrap: wrap; }
.appointment__contact a { background: rgba(253,247,239,.92); color: var(--brown); padding: 9px 16px; border-radius: 999px; font-size: .85rem; font-weight: 500; }

/* ===== FAQ ===== */
.faq { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.faq__left h2 { margin-bottom: 32px; }
.faq__cta { border-radius: var(--radius); overflow: hidden; position: relative; }
.faq__cta img { width: 100%; height: 240px; object-fit: cover; }
.faq__cta-inner { position: absolute; inset: 0; background: linear-gradient(120deg, rgba(44,32,24,.78), rgba(120,86,56,.55)); display: flex; flex-direction: column; justify-content: space-between; padding: 24px; color: #fbeede; }
.faq__cta-inner strong { font-family: var(--serif); font-size: 1.3rem; display: block; margin-bottom: 6px; }
.faq__cta-inner small { opacity: .85; max-width: 30ch; display: block; }
.faq__cta-inner .btn { align-self: flex-start; }
.faq__list { display: grid; gap: 14px; }
.faq__item { background: var(--cream-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 26px; }
.faq__item[open] { background: #fdf3e8; }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 0; font-family: var(--serif); font-size: 1.15rem; color: var(--brown); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { position: relative; flex: none; width: 20px; height: 20px; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--brown-mid); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.faq__icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.faq__icon::after { top: 0; left: 9px; width: 2px; height: 20px; }
.faq__item[open] .faq__icon::after { transform: rotate(90deg); opacity: 0; }
.faq__item p { padding: 0 0 22px; font-size: .96rem; }

/* ===== CTA ===== */
.cta-section { position: relative; min-height: 460px; display: flex; align-items: center; overflow: hidden; }
.cta-section__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-section::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(243,228,216,.92) 0%, rgba(243,228,216,.6) 45%, rgba(243,228,216,0) 75%); }
.cta-section__inner { position: relative; z-index: 1; padding: 70px 0; }
.cta-section__inner h2 { margin-bottom: 16px; }
.cta-section__inner p { font-size: 1.06rem; max-width: 40ch; margin-bottom: 28px; }
.cta-section__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===== Footer ===== */
.footer { background: var(--cream-2); border: 1px solid var(--line-2); border-radius: clamp(26px, 3vw, 46px); margin: clamp(30px, 4vw, 56px) clamp(14px, 1.8vw, 30px) clamp(14px, 1.8vw, 30px); padding: clamp(48px, 6vw, 72px) clamp(22px, 4vw, 56px) 28px; text-align: center; }
.footer__inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 40px; }
.footer__brand { display: grid; justify-items: center; }
.footer__brand .brand { margin-bottom: 16px; }
.footer__brand p { color: var(--text-soft); max-width: 34ch; margin: 0 auto 18px; }
.footer__badges { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.footer__badges span { display: inline-flex; align-items: center; gap: 7px; font-size: .85rem; color: var(--brown-mid); font-weight: 500; }
.footer__col { display: grid; gap: 12px; align-content: start; justify-items: center; }
.footer__col h4 { font-family: var(--sans); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--brown); margin-bottom: 4px; }
.footer__col a, .footer__col address { color: var(--text-soft); font-style: normal; transition: color .2s; }
.footer__col a:hover { color: var(--brown); }
.footer__bottom { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; padding-top: 24px; border-top: 1px solid var(--line-2); color: var(--text-soft); }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--brown-mid); transition: background .2s, color .2s; }
.footer__social a:hover { background: var(--cream-2); color: var(--brown); }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__col:last-child { grid-column: 1 / -1; flex-direction: row; }
  .bento__col:last-child > * { flex: 1; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 880px) {
  .nav__left, .nav__right .btn { display: none; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .brand { justify-self: start; }
  .nav__toggle { display: flex; }
  .nav__mobile.open { display: flex; }
  .provider, .medical, .appointment, .faq, .blog, .testi { grid-template-columns: 1fr; }
  .testi__head, .testi__cards { grid-column: 1; }
  .testi__cards { grid-template-columns: 1fr; }
  .testi__media { grid-column: 1; grid-row: auto; min-height: 320px; }
  .trow { grid-template-columns: 1fr; gap: 18px; }
  .trow__plus { display: none; }
  .post--feature h3 { font-size: 1.5rem; }
  .hero__fan { transform: translateX(-50%) scale(.72); bottom: 120px; }
  .hero__fan.in { animation: none; }
  .statement__grid { grid-template-columns: 1fr 1fr; }
  .statement__img { width: 100%; }
  .statement__img img { height: 120px; }
  .statement__text { grid-column: 1 / -1; grid-row: auto; order: -1; }
}
@media (max-width: 760px) {
  .svc__summary { padding: 20px; gap: 14px; }
  .svc__icon { width: 44px; height: 44px; }
  .svc__panel { grid-template-columns: 1fr; gap: 20px; padding: 0 20px 24px; }
  .svc__media img { height: 200px; }
  .svc__list { grid-template-columns: 1fr; }
}
@media (max-width: 980px) { .greviews__grid { columns: 2; } }
@media (max-width: 620px) { .greviews__grid { columns: 1; } .greviews__cta { margin-left: 0; } .greviews__summary { justify-content: center; text-align: center; } }
@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; }
  .bento, .footer__inner { grid-template-columns: 1fr; }
  .bento__col:last-child { flex-direction: column; }
  .post--row { grid-template-columns: 110px 1fr; }
  .footer__bottom { justify-content: center; }
}

@media (max-width: 540px) {
  .hero__media > img { height: clamp(520px, 82vh, 680px); object-position: center 28%; }
  .hero__content { padding-top: 40px; }
  .hero__content h1 { font-size: clamp(1.7rem, 7vw, 2.3rem); margin-bottom: 12px; }
  .hero__content p { font-size: .88rem; max-width: 30ch; }
  .hero__fan { transform: translateX(-50%) scale(.52); bottom: 96px; }
  .hero__wave { height: clamp(120px, 30vw, 180px); }
}

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: .001ms !important; animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero__fan.in .ray { opacity: 1; transform: rotate(var(--a)) scale(1); }
}

/* ===== Floating WhatsApp button ===== */
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 60; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 6px 20px rgba(0,0,0,.25); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.wa-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 10px 26px rgba(0,0,0,.3); }
.wa-float:focus-visible { outline: 3px solid var(--tan); outline-offset: 3px; }
.wa-float svg { width: 30px; height: 30px; }
@media (max-width: 540px) { .wa-float { width: 52px; height: 52px; right: 14px; bottom: 14px; } }

/* ===== Form honeypot (visually hidden) ===== */
.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__error { color: #b3261e; font-weight: 600; }

/* ===== UGC / social section ===== */
.ugc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 340px)); justify-content: center; gap: 22px; align-items: start; }
.ugc-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.ugc__frame { position: relative; width: 100%; aspect-ratio: 9 / 16; background: #000; }
.ugc__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ugc-item__caption { padding: 14px 16px; font-size: .92rem; color: var(--brown-mid); margin: 0; }
/* Instagram /embed/ iframe — fills the card width; height auto-set by script.js */
.ig-embed { width: 100%; height: 560px; border: 0; display: block; background: #fff; }

/* ===== Statement intro videos (replace the photo collage) ===== */
.statement__text--solo { grid-column: auto; grid-row: auto; margin: 0 auto; }
.statement-videos { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 340px)); justify-content: center; gap: 22px; max-width: 1120px; margin: 36px auto 0; align-items: start; }
.statement-video { background: #fff; border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); }
.statement-video .ugc__frame { position: relative; width: 100%; aspect-ratio: 9 / 16; background: #000; }
.statement-video .ugc__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.statement-video__caption { padding: 12px 14px; font-size: .88rem; color: var(--brown-mid); margin: 0; text-align: left; }

/* ===== Mobile: video sliders + before/after ===== */
@media (max-width: 760px) {
  /* Turn the video grids into a horizontal swipe slider */
  .statement-videos, .ugc-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    margin-top: 28px;
    padding: 2px 20px 14px;
    /* let the slider bleed to screen edges for a natural carousel feel */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    scroll-padding-left: 20px;
  }
  .statement-video, .ugc-item {
    flex: 0 0 86%;
    max-width: 86%;
    scroll-snap-align: center;
  }
  .ig-embed { height: 540px; }
  .statement-videos::-webkit-scrollbar, .ugc-grid::-webkit-scrollbar { height: 4px; }
  .statement-videos::-webkit-scrollbar-thumb, .ugc-grid::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 4px; }

  /* Before/After: shorter and scroll-friendly on phones */
  .ba { min-height: 420px; }
}
