@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --paper: #F6FAF9;
  --paper-2: #EDF5F3;
  --white: #FFFFFF;
  --ink: #12312E;
  --ink-2: #2B4F4B;
  --muted: #567673;
  --teal: #2E8F84;
  --teal-deep: #1D6A61;
  --teal-dark: #0F3F3A;
  --teal-soft: #BFE1DB;
  --wash: #E7F3F0;
  --wash-2: #D8ECE7;
  --euc: #6FB3A6;
  --warm: #E9A377;
  --warm-deep: #C4703F;
  --warm-soft: #FBE7D8;
  --star: #E3A032;
  --border: #DBEAE6;
  --border-2: #C4DBD6;
  --nav-h: 76px;
  --max-w: 1200px;
  --pad: clamp(1.15rem, 4.5vw, 3rem);
  --r-lg: 40px;
  --r-md: 24px;
  --r-sm: 14px;
  --shadow-sm: 0 4px 14px -8px rgba(15, 63, 58, 0.34);
  --shadow: 0 22px 46px -30px rgba(15, 63, 58, 0.45);
  --shadow-lg: 0 40px 70px -44px rgba(15, 63, 58, 0.55);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Figtree', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
svg { display: block; }

h1, h2, h3, h4 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.14;
  color: var(--ink);
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
h4 { font-size: 1.02rem; }
p { color: var(--muted); }
strong { color: var(--ink); font-weight: 600; }

:focus-visible {
  outline: 3px solid var(--warm-deep);
  outline-offset: 3px;
  border-radius: 8px;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
.narrow { max-width: 860px; }
section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

.tint { color: var(--teal-deep); }
.underline-warm {
  background-image: linear-gradient(to top, var(--warm-soft) 0 38%, transparent 38%);
  padding: 0 0.12em;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal-deep);
}
.eyebrow::before {
  content: ''; width: 22px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--warm), var(--euc));
}
.eyebrow.on-dark { color: var(--teal-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 50px; padding: 0.72rem 1.6rem;
  font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600;
  border: 2px solid transparent; border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn svg { width: 18px; height: 18px; }
.btn-teal { background: var(--teal-deep); color: #fff; box-shadow: 0 12px 24px -16px rgba(29, 106, 97, 0.9); }
.btn-teal:hover { background: var(--teal); transform: translateY(-2px); }
.btn-warm { background: #F4C8A6; color: #55290C; border-color: #E3A578; }
.btn-warm:hover { background: #EFB98F; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-2); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-deep); background: var(--white); }
.btn-white { background: var(--white); color: var(--teal-dark); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-sm { min-height: 46px; padding: 0.5rem 1.25rem; font-size: 0.95rem; }
.btn-block { width: 100%; }

.textlink {
  display: inline-flex; align-items: center; gap: 0.4rem;
  min-height: 44px;
  font-family: 'Outfit', sans-serif; font-weight: 600; color: var(--teal-deep);
}
.textlink:hover { color: var(--warm-deep); gap: 0.65rem; }
.textlink::after { content: '\203A'; font-size: 1.3em; line-height: 0; transform: translateY(-1px); }

/* ---------- Nav ---------- */
nav {
  position: fixed; top: 40px; left: 0; right: 0;
  height: var(--nav-h); z-index: 500;
  background: rgba(246, 250, 249, 0.9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.nav-inner {
  width: 100%; max-width: 1260px; margin: 0 auto; padding: 0 var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-logo { display: inline-flex; align-items: center; gap: 0.6rem; min-height: 44px; }
.logo-mark {
  width: 38px; height: 38px; border-radius: 13px; flex-shrink: 0;
  background: linear-gradient(150deg, var(--teal) 0%, var(--teal-deep) 100%);
  display: grid; place-items: center;
  box-shadow: 0 8px 16px -10px rgba(29, 106, 97, 0.9);
}
.logo-mark svg { width: 22px; height: 22px; fill: #fff; }
.logo-text {
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1.2rem;
  color: var(--ink); letter-spacing: -0.02em; line-height: 1.1;
}
.logo-text em { font-style: normal; font-weight: 400; color: var(--teal); }

.nav-links { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
.nav-links > li > a:not(.btn) {
  display: inline-flex; align-items: center; min-height: 44px;
  padding: 0 0.72rem; border-radius: 999px;
  font-size: 0.95rem; font-weight: 500; color: var(--ink-2);
}
.nav-links > li > a:not(.btn):hover { background: var(--wash); color: var(--teal-deep); }
.nav-links > li > a:not(.btn)[aria-current="page"] { color: var(--teal-deep); font-weight: 600; background: var(--wash); }
.nav-links .btn { margin-left: 0.5rem; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 13px;
  border: 1px solid var(--border-2); background: var(--white);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 19px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform 0.22s ease, opacity 0.22s 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); }

/* ---------- Page heads ---------- */
.page-head {
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 3.4rem) 0 clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(180deg, var(--wash) 0%, var(--paper) 100%);
}
.page-head::before {
  content: ''; position: absolute; top: -180px; right: -140px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(111, 179, 166, 0.3), rgba(111, 179, 166, 0) 70%);
}
.page-head::after {
  content: ''; position: absolute; bottom: -120px; left: -110px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(233, 163, 119, 0.24), rgba(233, 163, 119, 0) 70%);
}
.page-head .container { position: relative; z-index: 1; }
.page-head h1 { margin: 0.7rem 0 0.9rem; max-width: 17ch; }
.page-head .lede { font-size: clamp(1.02rem, 1.5vw, 1.16rem); max-width: 58ch; }
.crumb { font-size: 0.86rem; color: var(--muted); display: flex; align-items: center; flex-wrap: wrap; gap: 0.35rem; }
.crumb a { display: inline-flex; align-items: center; min-height: 44px; color: var(--teal-deep); font-weight: 500; }
.crumb a:hover { text-decoration: underline; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: calc(var(--nav-h) + 3.2rem) 0 clamp(4rem, 7vw, 6rem);
  background:
    radial-gradient(900px 520px at 88% 6%, rgba(191, 225, 219, 0.55), rgba(191, 225, 219, 0) 68%),
    radial-gradient(680px 480px at 4% 88%, rgba(251, 231, 216, 0.7), rgba(251, 231, 216, 0) 66%),
    linear-gradient(180deg, #FFFFFF 0%, var(--paper) 100%);
}
.hero-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(46, 143, 132, 0.16) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(560px 420px at 76% 78%, #000, transparent 72%);
  mask-image: radial-gradient(560px 420px at 76% 78%, #000, transparent 72%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.42rem 1rem 0.42rem 0.72rem; border-radius: 999px;
  background: var(--white); border: 1px solid var(--border);
  font-size: 0.86rem; font-weight: 600; color: var(--teal-deep);
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--euc); box-shadow: 0 0 0 4px rgba(111, 179, 166, 0.25); }
.hero h1 { margin: 1.1rem 0 1.1rem; }
.hero-sub { font-size: clamp(1.03rem, 1.6vw, 1.2rem); max-width: 50ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.8rem 0 1.6rem; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 0.5rem 1.6rem; }
.hero-fact { display: flex; align-items: center; gap: 0.5rem; font-size: 0.92rem; font-weight: 500; color: var(--ink-2); }
.hero-fact svg { width: 17px; height: 17px; fill: none; stroke: var(--teal); stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* Arch portal */
.hero-visual { position: relative; }
.portal {
  position: relative; border-radius: 240px 240px 44px 44px; overflow: hidden;
  border: 1px solid var(--border); background: var(--wash);
  box-shadow: var(--shadow-lg);
}
.portal svg { width: 100%; height: auto; }
.portal-ring {
  position: absolute; inset: -14px; border-radius: 254px 254px 58px 58px;
  border: 1px dashed rgba(46, 143, 132, 0.35); pointer-events: none;
}
.portal-card {
  position: absolute; left: -26px; bottom: 34px; z-index: 2;
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.8rem 1.1rem; border-radius: 18px;
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.portal-card .pc-ico {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--warm-soft); flex-shrink: 0;
}
.portal-card .pc-ico svg { width: 20px; height: 20px; fill: none; stroke: var(--warm-deep); stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.portal-card .t { font-family: 'Outfit', sans-serif; font-weight: 600; color: var(--ink); font-size: 0.96rem; line-height: 1.3; }
.portal-card .s { font-size: 0.8rem; color: var(--muted); line-height: 1.4; }
.portal-tag {
  position: absolute; right: -14px; top: 74px; z-index: 2;
  padding: 0.5rem 0.95rem; border-radius: 999px;
  background: var(--teal-dark); color: #fff;
  font-family: 'Outfit', sans-serif; font-size: 0.83rem; font-weight: 600;
  box-shadow: var(--shadow);
}

/* ---------- Assurance strip ---------- */
.assure { margin-top: -3.2rem; position: relative; z-index: 3; padding-bottom: 0; }
.assure-inner {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow); padding: clamp(1.4rem, 3vw, 2rem);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem;
}
.assure-item { display: flex; align-items: flex-start; gap: 0.8rem; }
.assure-ico {
  width: 44px; height: 44px; border-radius: 14px; flex-shrink: 0;
  display: grid; place-items: center; background: var(--wash);
}
.assure-ico svg { width: 21px; height: 21px; fill: none; stroke: var(--teal-deep); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.assure-item .t { font-family: 'Outfit', sans-serif; font-weight: 600; color: var(--ink); line-height: 1.35; }
.assure-item .s { font-size: 0.86rem; color: var(--muted); line-height: 1.5; }

/* ---------- Section heads ---------- */
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: 0.7rem 0 0.85rem; }
.section-head p { font-size: 1.04rem; }

/* ---------- Treatment cards ---------- */
.tcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.tcard {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 1.6rem 1.5rem 1.35rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal-soft); }
.tcard-ico {
  width: 52px; height: 52px; border-radius: 17px; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--wash), var(--wash-2)); margin-bottom: 1.1rem;
}
.tcard-ico svg { width: 26px; height: 26px; fill: none; stroke: var(--teal-deep); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.tcard.warm .tcard-ico { background: linear-gradient(150deg, var(--warm-soft), #F6D6BC); }
.tcard.warm .tcard-ico svg { stroke: var(--warm-deep); }
.tcard h3 { margin-bottom: 0.5rem; }
.tcard p { font-size: 0.95rem; flex-grow: 1; }
.tcard .from { display: inline-block; margin-top: 0.9rem; font-size: 0.85rem; font-weight: 600; color: var(--teal-deep); }
.tcard .textlink { margin-top: 0.35rem; }

/* ---------- Panels ---------- */
.panel {
  background: var(--wash); border-radius: var(--r-lg);
  padding: clamp(2rem, 4.5vw, 3.6rem);
}
.panel.dark { background: linear-gradient(155deg, #17514A 0%, #0F3F3A 100%); color: rgba(255,255,255,0.86); }
.panel.dark h2, .panel.dark h3, .panel.dark .t { color: #fff; }
.panel.dark p { color: rgba(255,255,255,0.78); }
.panel.warm { background: linear-gradient(150deg, #FDF1E7 0%, #FBE7D8 100%); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.6rem, 4vw, 3.2rem); align-items: center; }
.split.wide-left { grid-template-columns: 1.15fr 0.85fr; }

/* ---------- Membership plan ---------- */
.plan-price {
  display: flex; align-items: baseline; gap: 0.35rem;
  font-family: 'Outfit', sans-serif; color: #fff;
}
.plan-price .num { font-size: clamp(2.8rem, 6vw, 4rem); font-weight: 700; line-height: 1; letter-spacing: -0.03em; }
.plan-price .per { font-size: 1rem; color: rgba(255,255,255,0.72); }
.ticks { list-style: none; display: grid; gap: 0.7rem; margin-top: 0.4rem; }
.ticks li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.97rem; }
.ticks li::before {
  content: ''; width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background: var(--teal-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F3F3A' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E") center/13px no-repeat;
}
.panel.dark .ticks li { color: rgba(255,255,255,0.86); }

/* ---------- Reviews widget ---------- */
.rev-widget {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--shadow); overflow: hidden;
}
.rev-top {
  display: grid; grid-template-columns: auto 1fr auto; gap: 1.4rem; align-items: center;
  padding: 1.5rem clamp(1.3rem, 3vw, 2.2rem);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #FFFFFF, var(--paper));
}
.rev-score { text-align: center; }
.rev-score .num {
  font-family: 'Outfit', sans-serif; font-size: 3.1rem; font-weight: 700;
  color: var(--ink); line-height: 1; letter-spacing: -0.03em;
}
.rev-score .out { font-size: 0.78rem; color: var(--muted); }
.rev-top .mid .t { font-family: 'Outfit', sans-serif; font-weight: 600; color: var(--ink); font-size: 1.06rem; }
.rev-top .mid .s { font-size: 0.87rem; color: var(--muted); }
.rev-verified {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.4rem 0.85rem; border-radius: 999px;
  background: var(--wash); color: var(--teal-deep);
  font-size: 0.78rem; font-weight: 600; white-space: nowrap;
}
.rev-verified svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

.stars { display: inline-flex; gap: 2px; }
.stars svg { width: 17px; height: 17px; fill: var(--star); }
.stars .off { fill: #DFE7E5; }
.stars.big svg { width: 21px; height: 21px; }

.rev-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; padding: 0;
}
.rev-card { padding: 1.5rem clamp(1.3rem, 2.4vw, 1.8rem); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.rev-card:nth-child(3n) { border-right: none; }
.rev-card:nth-last-child(-n+3) { border-bottom: none; }
.rev-who { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.7rem; }
.rev-av {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.92rem; color: #fff;
}
.av-1 { background: #2E8F84; } .av-2 { background: #C4703F; } .av-3 { background: #4E7FA6; }
.av-4 { background: #6E8F4A; } .av-5 { background: #8B6BA8; } .av-6 { background: #B0524F; }
.rev-who .n { font-weight: 600; color: var(--ink); font-size: 0.95rem; line-height: 1.3; }
.rev-who .d { font-size: 0.78rem; color: var(--muted); }
.rev-card p { font-size: 0.93rem; line-height: 1.65; margin-top: 0.5rem; }
.rev-foot {
  padding: 0.95rem 1.4rem; background: var(--paper-2);
  font-size: 0.82rem; color: var(--muted); text-align: center;
}

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.person {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 1.6rem 1.5rem; text-align: center;
}
.person .av-wrap {
  width: 118px; height: 118px; margin: 0 auto 1.1rem; border-radius: 50%;
  overflow: hidden; border: 4px solid var(--wash);
}
.person .av-wrap svg { width: 100%; height: 100%; }
.person h3 { margin-bottom: 0.15rem; }
.person .role { font-size: 0.88rem; font-weight: 600; color: var(--teal-deep); }
.person .quals { font-size: 0.84rem; color: var(--muted); margin-top: 0.15rem; }
.person p { font-size: 0.93rem; margin-top: 0.85rem; text-align: left; }
.gdc {
  display: inline-block; margin-top: 1rem;
  padding: 0.3rem 0.8rem; border-radius: 999px;
  background: var(--paper-2); border: 1px solid var(--border);
  font-size: 0.76rem; font-weight: 600; color: var(--ink-2); letter-spacing: 0.02em;
}

/* ---------- Fees ---------- */
.fee-block { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; margin-bottom: 1.6rem; }
.fee-head {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 1.1rem 1.4rem; background: var(--wash); border-bottom: 1px solid var(--border);
}
.fee-head svg { width: 22px; height: 22px; fill: none; stroke: var(--teal-deep); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.fee-head h3 { margin: 0; }
.fee-row {
  display: grid; grid-template-columns: 1fr auto; gap: 1rem; align-items: baseline;
  padding: 0.95rem 1.4rem; border-bottom: 1px solid var(--border);
}
.fee-row:last-child { border-bottom: none; }
.fee-row .name { font-weight: 600; color: var(--ink); }
.fee-row .desc { display: block; font-weight: 400; font-size: 0.88rem; color: var(--muted); line-height: 1.5; }
.fee-row .amt { font-family: 'Outfit', sans-serif; font-weight: 600; color: var(--teal-deep); white-space: nowrap; font-size: 1.02rem; }

.note-box {
  display: flex; gap: 0.9rem; align-items: flex-start;
  padding: 1.15rem 1.3rem; border-radius: var(--r-sm);
  background: var(--warm-soft); border: 1px solid #F2CFB4;
}
.note-box svg { width: 21px; height: 21px; flex-shrink: 0; margin-top: 3px; fill: none; stroke: var(--warm-deep); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.note-box p { color: #6B3413; font-size: 0.93rem; }
.note-box.calm { background: var(--wash); border-color: var(--border-2); }
.note-box.calm svg { stroke: var(--teal-deep); }
.note-box.calm p { color: var(--ink-2); }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 1.1rem; counter-reset: st; }
.step {
  display: grid; grid-template-columns: 54px 1fr; gap: 1.1rem; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 1.35rem 1.4rem;
}
.step::before {
  counter-increment: st; content: counter(st);
  width: 54px; height: 54px; border-radius: 18px;
  display: grid; place-items: center;
  background: var(--wash); color: var(--teal-deep);
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.3rem;
}
.step h3 { margin-bottom: 0.3rem; }
.step p { font-size: 0.95rem; }

/* ---------- Gallery ---------- */
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.gal-tile {
  display: block; width: 100%; text-align: left; padding: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md);
  overflow: hidden; transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.gal-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--teal-soft); }
.gal-art { display: block; position: relative; aspect-ratio: 4 / 3; background: var(--wash); }
.gal-art svg { width: 100%; height: 100%; }
.gal-art::after {
  content: ''; position: absolute; right: 12px; bottom: 12px;
  width: 34px; height: 34px; border-radius: 11px;
  background: rgba(255,255,255,0.92) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230F3F3A' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5M11 8.5v5M8.5 11h5'/%3E%3C/svg%3E") center/18px no-repeat;
  box-shadow: var(--shadow-sm); opacity: 0; transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.gal-tile:hover .gal-art::after, .gal-tile:focus-visible .gal-art::after { opacity: 1; transform: translateY(0); }
.gal-cap { display: block; padding: 0.95rem 1.15rem 1.1rem; }
.gal-cap .gt { display: block; font-family: 'Outfit', sans-serif; font-weight: 600; color: var(--ink); font-size: 1.02rem; }
.gal-cap .gs { display: block; font-size: 0.87rem; color: var(--muted); line-height: 1.5; }

.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  display: none; align-items: center; justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(12, 44, 40, 0.82);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.lightbox.open { display: flex; }
.lb-panel {
  position: relative; width: min(940px, 100%, calc(64vh * 4 / 3));
  background: var(--white); border-radius: var(--r-md); overflow: hidden;
  box-shadow: 0 50px 90px -40px rgba(0,0,0,0.6);
}
.lb-stage { position: relative; }
.lb-art { aspect-ratio: 4 / 3; background: var(--wash); }
.lb-art svg { display: block; width: 100%; height: 100%; }
.lb-cap { padding: 1.1rem 1.4rem 1.3rem; }
.lb-cap h3 { margin-bottom: 0.25rem; }
.lb-cap p { font-size: 0.94rem; }
.lb-count { font-size: 0.8rem; color: var(--muted); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.lb-close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 46px; height: 46px; border-radius: 14px; border: none;
  background: rgba(255,255,255,0.94); box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
}
.lb-close svg { width: 20px; height: 20px; fill: none; stroke: var(--ink); stroke-width: 2.4; stroke-linecap: round; }
.lb-close:hover { background: #fff; }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.94); box-shadow: var(--shadow-sm);
  display: grid; place-items: center;
}
.lb-nav svg { width: 20px; height: 20px; fill: none; stroke: var(--ink); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.lb-prev { left: 12px; }
.lb-next { right: 12px; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0.8rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-sm);
  overflow: hidden;
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.05rem 1.3rem; min-height: 56px; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-weight: 600; color: var(--ink); font-size: 1.02rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
  background: var(--wash) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231D6A61' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/14px no-repeat;
  transition: transform 0.22s ease;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--teal-deep); }
.faq-body { padding: 0 1.3rem 1.25rem; }
.faq-body p + p { margin-top: 0.7rem; }
.faq-body p { font-size: 0.96rem; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: clamp(1.4rem, 3vw, 2.1rem);
}
.form-card.accent { border-top: 4px solid var(--teal); }
.form-card.accent-warm { border-top: 4px solid var(--warm); }
.form-card > h2, .form-card > h3 { margin-bottom: 0.4rem; }
.form-intro { font-size: 0.94rem; margin-bottom: 1.4rem; }
.field { margin-bottom: 1rem; }
.field label, .fieldset-legend {
  display: block; margin-bottom: 0.35rem;
  font-size: 0.88rem; font-weight: 600; color: var(--ink);
}
.field .hint { font-weight: 400; color: var(--muted); font-size: 0.83rem; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--ink);
  padding: 0.8rem 0.95rem; min-height: 50px;
  background: var(--paper); border: 1px solid var(--border-2); border-radius: 12px;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.field textarea { min-height: 118px; resize: vertical; line-height: 1.6; }
.field select { appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23567673' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 16px;
  padding-right: 2.6rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: var(--white);
  border-color: var(--teal); box-shadow: 0 0 0 4px rgba(46, 143, 132, 0.16);
}
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--warm-deep); outline-offset: 2px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.check {
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 0.75rem 0.9rem; min-height: 50px;
  border: 1px solid var(--border-2); border-radius: 12px; background: var(--paper);
  cursor: pointer; margin-bottom: 0.6rem;
}
.check input { width: 22px; height: 22px; flex-shrink: 0; margin-top: 2px; font-size: 16px; accent-color: var(--teal-deep); }
.check span { font-size: 0.93rem; color: var(--ink-2); }
.check:hover { border-color: var(--teal-soft); background: var(--white); }
.form-legal { font-size: 0.81rem; color: var(--muted); margin-top: 0.9rem; line-height: 1.6; }
.form-success {
  display: none; text-align: center; padding: 2rem 1rem;
}
.form-success.show { display: block; }
.form-success .ok {
  width: 62px; height: 62px; margin: 0 auto 1.1rem; border-radius: 50%;
  background: var(--wash); display: grid; place-items: center;
}
.form-success .ok svg { width: 30px; height: 30px; fill: none; stroke: var(--teal-deep); stroke-width: 2.8; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { font-size: 0.95rem; max-width: 46ch; margin: 0 auto; }
form.hidden { display: none; }

/* ---------- Contact / map ---------- */
.map-wrap {
  border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--border); background: var(--wash);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }
.info-list { list-style: none; display: grid; gap: 1.15rem; }
.info-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.info-ico {
  width: 42px; height: 42px; border-radius: 13px; flex-shrink: 0;
  display: grid; place-items: center; background: var(--wash);
}
.info-ico svg { width: 20px; height: 20px; fill: none; stroke: var(--teal-deep); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.info-list .t { font-family: 'Outfit', sans-serif; font-weight: 600; color: var(--ink); }
.info-list .s { font-size: 0.93rem; color: var(--muted); }
.info-list a { color: var(--teal-deep); font-weight: 500; }
.info-list a:hover { text-decoration: underline; }

.hours-strip h3 { margin-bottom: 0.15rem; }
.hours-days {
  list-style: none; margin-top: 1.1rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(128px, 1fr)); gap: 0.6rem;
}
.hours-days li {
  display: flex; flex-direction: column; gap: 0.25rem; text-align: center;
  padding: 0.9rem 0.55rem; border-radius: var(--r-sm);
  background: var(--paper); border: 1px solid var(--border);
}
.hours-days .d { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.hours-days .t { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.93rem; line-height: 1.35; color: var(--ink); }
.hours-days li.late { background: var(--wash); border-color: var(--wash-2); }
.hours-days li.late .d, .hours-days li.late .t { color: var(--teal-deep); }
.hours-days li.shut { background: transparent; border-style: dashed; }
.hours-days li.shut .t { color: var(--muted); font-weight: 500; }
.hours-note { margin-top: 1.1rem; font-size: 0.88rem; }

.hours { width: 100%; border-collapse: collapse; }
.hours th, .hours td { text-align: left; padding: 0.62rem 0; border-bottom: 1px solid var(--border); font-size: 0.95rem; }
.hours th { font-weight: 500; color: var(--ink-2); }
.hours td { text-align: right; font-weight: 600; color: var(--ink); font-family: 'Outfit', sans-serif; }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: none; }
.hours .closed { color: var(--muted); font-weight: 500; }
.panel.dark .hours th { color: rgba(255,255,255,0.78); }
.panel.dark .hours td { color: #fff; }
.panel.dark .hours th, .panel.dark .hours td { border-color: rgba(255,255,255,0.16); }
.panel.dark .hours .closed { color: rgba(255,255,255,0.5); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(150deg, #17514A 0%, #0F3F3A 100%);
  border-radius: var(--r-lg); padding: clamp(2.2rem, 5vw, 3.6rem);
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -120px; right: -80px; width: 340px; height: 340px;
  border-radius: 50%; background: radial-gradient(circle, rgba(111,179,166,0.35), transparent 68%);
}
.cta-band::after {
  content: ''; position: absolute; bottom: -140px; left: -60px; width: 300px; height: 300px;
  border-radius: 50%; background: radial-gradient(circle, rgba(233,163,119,0.24), transparent 68%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 0.8rem; }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 54ch; margin: 0 auto 1.7rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.42rem 0.9rem; border-radius: 999px;
  background: var(--white); border: 1px solid var(--border);
  font-size: 0.86rem; font-weight: 500; color: var(--ink-2);
}
a.chip { min-height: 44px; padding-top: 0; padding-bottom: 0; }
.chip.solid { background: var(--wash); border-color: var(--wash-2); color: var(--teal-deep); font-weight: 600; }

/* ---------- Anchor offset ---------- */
.anchor { scroll-margin-top: calc(var(--nav-h) + 60px); }

/* ---------- Treatment sections ---------- */
.treat {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center; padding: clamp(1.8rem, 4vw, 2.6rem);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  margin-bottom: 1.6rem;
}
.treat:nth-child(even) .treat-art { order: -1; }
.treat-art { border-radius: var(--r-md); overflow: hidden; background: var(--wash); aspect-ratio: 5 / 4; }
.treat-art svg { width: 100%; height: 100%; }
.treat h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 0.7rem; }
.treat .price-tag {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-bottom: 0.9rem;
  padding: 0.35rem 0.85rem; border-radius: 999px;
  background: var(--wash); color: var(--teal-deep); font-size: 0.85rem; font-weight: 600;
}
.treat p + p { margin-top: 0.8rem; }
.honest {
  margin-top: 1.1rem; padding: 0.9rem 1.1rem; border-radius: var(--r-sm);
  background: var(--paper-2); border-left: 3px solid var(--euc);
}
.honest .lbl {
  display: block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--teal-deep); margin-bottom: 0.2rem;
}
.honest p { font-size: 0.92rem; color: var(--ink-2); }

/* ---------- Footer ---------- */
.footer { background: #0E3A36; color: rgba(255,255,255,0.72); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 2rem; }
.footer .logo-text { color: #fff; }
.footer .logo-text em { color: var(--teal-soft); }
.footer .logo-mark { background: linear-gradient(150deg, #3FA79A, #1D6A61); }
.foot-brand p { color: rgba(255,255,255,0.7); font-size: 0.93rem; margin-top: 1rem; max-width: 34ch; }
.foot-contact { margin-top: 1.2rem; display: grid; gap: 0.45rem; }
.foot-contact a { display: inline-flex; align-items: center; gap: 0.55rem; min-height: 44px; color: #fff; font-weight: 500; }
.foot-contact a svg { width: 17px; height: 17px; fill: none; stroke: var(--teal-soft); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.foot-contact a:hover { color: var(--teal-soft); }
.foot-col h4 { color: #fff; font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.5rem; }
.foot-col ul { list-style: none; }
.foot-col a { display: inline-flex; align-items: center; min-height: 44px; font-size: 0.93rem; }
.foot-col a:hover { color: #fff; }
.footer .hours th { color: rgba(255,255,255,0.72); font-size: 0.9rem; }
.footer .hours td { color: #fff; font-size: 0.9rem; }
.footer .hours th, .footer .hours td { border-color: rgba(255,255,255,0.14); padding: 0.45rem 0; }
.footer .hours .closed { color: rgba(255,255,255,0.5); }
.foot-bottom {
  margin-top: 2.6rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.14);
  display: flex; flex-wrap: wrap; gap: 0.8rem 2rem; justify-content: space-between;
  font-size: 0.82rem; line-height: 1.7;
}
.foot-bottom p { color: rgba(255,255,255,0.6); max-width: 62ch; }

/* ---------- Responsive ---------- */
@media (max-width: 1060px) {
  .nav-toggle { display: flex; }
  /* absolute (not fixed) because nav's backdrop-filter makes it the containing block */
  .nav-links {
    display: none; position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0.15rem;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 1rem var(--pad) 1.5rem;
    box-shadow: 0 26px 40px -30px rgba(15, 63, 58, 0.5);
    max-height: calc(100vh - var(--nav-h) - 40px); overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links > li > a:not(.btn) { min-height: 50px; font-size: 1.02rem; border-radius: 12px; }
  .nav-links .btn { margin: 0.6rem 0 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 470px; margin: 0 auto; }
  .assure-inner { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
  .tcards { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-grid { grid-template-columns: repeat(2, 1fr); }
  .rev-card:nth-child(3n) { border-right: 1px solid var(--border); }
  .rev-card:nth-child(2n) { border-right: none; }
  .rev-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--border); }
  .rev-card:nth-last-child(-n+2) { border-bottom: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .split, .split.wide-left { grid-template-columns: 1fr; }
  .treat, .treat:nth-child(even) { grid-template-columns: 1fr; }
  .treat .treat-art, .treat:nth-child(even) .treat-art { order: -1; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  :root { --r-lg: 28px; --r-md: 20px; }
  .tcards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; }
  .rev-top { grid-template-columns: 1fr; row-gap: 0.85rem; justify-items: center; text-align: center; }
  .rev-top .mid .s { max-width: 42ch; margin: 0 auto; }
  .rev-verified { justify-self: center; }
  .plan-price { flex-direction: column; align-items: flex-start; gap: 0.15rem; }
  .plan-price .per { line-height: 1.4; }
  .rev-grid { grid-template-columns: 1fr; }
  .rev-card { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
  .rev-card:last-child { border-bottom: none !important; }
  .form-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .assure { margin-top: -2rem; }
  .assure-inner { grid-template-columns: 1fr; }
  .portal-card { left: 0; bottom: -18px; }
  .portal-tag { right: 0; top: 20px; }
  .hero-visual { margin-bottom: 2.4rem; }
  .foot-bottom { flex-direction: column; }
  .step { grid-template-columns: 44px 1fr; gap: 0.9rem; }
  .step::before { width: 44px; height: 44px; border-radius: 14px; font-size: 1.1rem; }
  .fee-row { grid-template-columns: 1fr; gap: 0.2rem; }
  .fee-row .amt { justify-self: start; }
  .map-wrap iframe { height: 320px; }
  .lb-nav { width: 42px; height: 42px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* Lightwork demo attribution bar (sticky above the site nav) */
.lw-demo-bar { position: sticky; top: 0; z-index: 9999; display: block; height: 40px; line-height: 40px; box-sizing: border-box; padding: 0 8px; background: #241631; color: rgba(255,255,255,0.88); font-family: system-ui, -apple-system, "Segoe UI", sans-serif; font-size: clamp(9px, 2.7vw, 13px); letter-spacing: 0; white-space: nowrap; text-decoration: none; text-align: center; }
.lw-demo-bar strong { color: #78ffd3; font-weight: 700; }
.lw-demo-bar:hover { background: #2f1d40; color: #ffffff; }
