/* =====================================================================
   IVORY & ARCH DENTAL STUDIO — styles.css
   Calm clinical luxe. Marylebone private dental & cosmetic clinic.
   Palette: clinical blue, soft mint, warm white, ink, soft coral accent.
   Fonts: Fraunces (display) + Albert Sans (body).
   ===================================================================== */

/* ---------- TOKENS ---------- */
:root {
  --blue:      #2f6fb0;
  --blue-deep: #235488;
  --blue-soft: #eaf2fa;
  --mint:      #cfeee4;
  --mint-deep: #a7d9c9;
  --mint-tint: #eef9f5;
  --white:     #f7f6f3;
  --paper:     #ffffff;
  --ink:       #1a2230;
  --ink-soft:  #4a5568;
  --ink-faint: #7a8699;
  --coral:     #ff8f7a;
  --coral-deep:#f4715a;
  --line:      #e4e6ea;
  --line-soft: #eef0f3;

  --gold:      #c9a96a;

  /* type */
  --display: "Fraunces", "Playfair Display", Georgia, serif;
  --body: "Albert Sans", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* spacing rhythm (8px) */
  --s-1: 8px;  --s-2: 16px; --s-3: 24px; --s-4: 32px;
  --s-5: 40px; --s-6: 48px; --s-7: 64px; --s-8: 80px;
  --s-9: 112px; --s-10: 144px;

  --container: 1180px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(26,34,48,.05), 0 2px 8px rgba(26,34,48,.04);
  --shadow:    0 6px 24px rgba(35,84,136,.08), 0 2px 6px rgba(26,34,48,.05);
  --shadow-lg: 0 22px 60px rgba(35,84,136,.14), 0 8px 24px rgba(26,34,48,.07);
  --shadow-coral: 0 10px 30px rgba(244,113,90,.28);

  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }
ul { list-style: none; padding: 0; }

::selection { background: var(--coral); color: #fff; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- TYPE ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.08; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.7rem); font-weight: 460; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { color: var(--ink-soft); }

.display-italic { font-style: italic; }
.accent-coral { color: var(--coral-deep); }
.accent-blue { color: var(--blue); }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--s-3); }
.section { padding-block: var(--s-9); }
.section--tight { padding-block: var(--s-7); }
.narrow { max-width: 720px; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body);
  font-size: .76rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--blue);
}
.kicker::before {
  content: ""; width: 22px; height: 1.5px; background: var(--coral); display: inline-block;
}
.kicker--center::after {
  content: ""; width: 22px; height: 1.5px; background: var(--coral); display: inline-block;
}
.section-head { max-width: 660px; margin-bottom: var(--s-6); }
.section-head.center { margin-inline: auto; }
.section-head .lead { margin-top: var(--s-2); font-size: 1.12rem; }

.lead { font-size: 1.15rem; color: var(--ink-soft); line-height: 1.65; }

.eyebrow-num {
  font-family: var(--display); font-style: italic;
  color: var(--coral-deep); font-size: 1.1rem; margin-right: 6px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body); font-weight: 650; font-size: .98rem;
  padding: 15px 28px; border-radius: var(--radius-pill);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s, color .25s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn--primary { background: var(--coral); color: #4a1a12; box-shadow: var(--shadow-coral); }
.btn--primary:hover { background: var(--coral-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 16px 36px rgba(244,113,90,.36); }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--dark:hover svg { transform: translateX(4px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--ink); background: var(--paper); transform: translateY(-2px); }
.btn--light { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }
.btn--sm { padding: 11px 20px; font-size: .9rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 650; color: var(--blue);
  transition: gap .3s var(--ease), color .25s;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.link-arrow:hover { color: var(--coral-deep); gap: 11px; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  transition: box-shadow .3s, background .3s, border-color .3s;
  background: rgba(247,246,243,.72);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(247,246,243,.9);
  box-shadow: 0 1px 0 rgba(26,34,48,.06), 0 8px 30px rgba(35,84,136,.07);
  border-bottom-color: var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: var(--s-3); }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-size: 1.32rem; font-weight: 500; letter-spacing: -.01em; color: var(--ink); }
.brand .brand-mark { width: 36px; height: 36px; flex: none; }
.brand small { display: block; font-family: var(--body); font-size: .58rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--blue); margin-top: 2px; }
.brand-text { line-height: 1; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; padding: 9px 14px; font-size: .96rem; font-weight: 550; color: var(--ink-soft);
  border-radius: 9px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--blue-deep); font-weight: 650; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 2px;
  background: var(--coral); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: var(--s-2); }

.hamburger {
  display: none; width: 46px; height: 46px; border-radius: 11px;
  border: 1px solid var(--line); background: var(--paper);
  position: relative; flex: none;
}
.hamburger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 22px; }
.hamburger span:nth-child(3) { top: 28px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 76px 0 0; z-index: 99;
  background: var(--white);
  padding: var(--s-4) var(--s-3) var(--s-6);
  transform: translateX(100%); transition: transform .4s var(--ease-out);
  display: flex; flex-direction: column; gap: var(--s-1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { font-family: var(--display); font-size: 1.5rem; padding: 14px 8px; border-bottom: 1px solid var(--line-soft); color: var(--ink); }
.mobile-nav a.active { color: var(--blue); }
.mobile-nav .btn { margin-top: var(--s-3); }

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; padding-block: var(--s-9) var(--s-9); }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg .orb { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .55; }
.orb-1 { width: 520px; height: 520px; right: -160px; top: -120px; background: radial-gradient(circle at 30% 30%, var(--mint), transparent 68%); }
.orb-2 { width: 420px; height: 420px; left: -140px; bottom: -120px; background: radial-gradient(circle at 50% 50%, rgba(255,143,122,.4), transparent 66%); }
.orb-3 { width: 300px; height: 300px; right: 22%; bottom: -60px; background: radial-gradient(circle at 50% 50%, var(--blue-soft), transparent 70%); }
.hero-arch {
  position: absolute; right: -4%; top: 50%; transform: translateY(-50%);
  width: min(46vw, 560px); z-index: 0; opacity: .9;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s-7); align-items: center; }
.hero-copy { max-width: 600px; }
.hero h1 { margin-top: var(--s-3); }
.hero h1 .ital { font-style: italic; color: var(--blue); }
.hero .lead { margin-top: var(--s-3); max-width: 480px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s-2); margin-top: var(--s-5); }
.hero-meta { display: flex; align-items: center; gap: var(--s-3); margin-top: var(--s-5); flex-wrap: wrap; }
.hero-meta .stars { color: var(--coral-deep); letter-spacing: 2px; font-size: 1rem; }
.hero-meta .meta-text { font-size: .9rem; color: var(--ink-soft); }
.hero-meta .meta-text strong { color: var(--ink); }

/* hero card / smile visual */
.hero-visual { position: relative; }
.smile-card {
  position: relative; background: var(--paper); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: var(--s-4); border: 1px solid var(--line-soft);
}
.smile-card .smile-svg { width: 100%; border-radius: var(--radius); overflow: hidden; }
.smile-card .card-row { display: flex; align-items: center; justify-content: space-between; margin-top: var(--s-3); }
.smile-card .card-row .label { font-size: .82rem; color: var(--ink-faint); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.smile-card .card-row .val { font-family: var(--display); font-size: 1.05rem; color: var(--ink); }
.float-chip {
  position: absolute; background: var(--paper); border-radius: var(--radius-pill);
  padding: 10px 16px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 9px;
  font-size: .86rem; font-weight: 600; color: var(--ink);
  animation: floaty 5s var(--ease) infinite;
}
.float-chip svg { width: 18px; height: 18px; }
.float-chip--tl { top: -18px; left: -22px; }
.float-chip--br { bottom: 26px; right: -26px; animation-delay: -2.5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* sparkle animation */
.sparkle { transform-origin: center; animation: twinkle 3.5s ease-in-out infinite; }
.sparkle--2 { animation-delay: -1.2s; }
.sparkle--3 { animation-delay: -2.3s; }
@keyframes twinkle { 0%,100% { opacity: .35; transform: scale(.8); } 50% { opacity: 1; transform: scale(1.15); } }

/* ---------- TRUST STRIP ---------- */
.trust-strip { border-block: 1px solid var(--line-soft); background: var(--paper); }
.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap; padding-block: var(--s-4); }
.trust-item { display: flex; align-items: center; gap: 11px; font-size: .92rem; font-weight: 600; color: var(--ink-soft); }
.trust-item svg { width: 22px; height: 22px; color: var(--blue); flex: none; }

/* ---------- CARDS / SERVICES ---------- */
.card-grid { display: grid; gap: var(--s-3); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.svc-card {
  position: relative; background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: var(--s-4);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  display: flex; flex-direction: column; overflow: hidden;
}
.svc-card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px;
  background: linear-gradient(var(--coral), var(--mint-deep)); transform: scaleY(0); transform-origin: top;
  transition: transform .4s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card:hover::after { transform: scaleY(1); }
.svc-icon {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center;
  background: var(--mint-tint); color: var(--blue); margin-bottom: var(--s-3);
  transition: background .3s, transform .4s var(--ease);
}
.svc-icon svg { width: 28px; height: 28px; }
.svc-card:hover .svc-icon { background: var(--mint); transform: rotate(-6deg) scale(1.05); }
.svc-card h3 { margin-bottom: 8px; }
.svc-card p { font-size: .96rem; flex-grow: 1; }
.svc-card .card-foot { margin-top: var(--s-3); display: flex; align-items: center; justify-content: space-between; }
.price-tag { font-family: var(--display); font-size: 1.4rem; color: var(--ink); }
.price-tag .from { font-family: var(--body); font-size: .72rem; color: var(--ink-faint); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; display: block; }

.badge-pop {
  position: absolute; top: 16px; right: 16px; z-index: 3;
  background: var(--coral); color: #4a1a12; font-size: .68rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius-pill);
}

/* ---------- SERVICES LIST PAGE ---------- */
.svc-list { display: grid; gap: var(--s-2); }
.svc-row {
  position: relative; display: grid; grid-template-columns: 56px 1fr auto auto; gap: var(--s-3); align-items: center;
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: var(--s-3) var(--s-4); transition: box-shadow .3s, border-color .3s, transform .3s;
}
.svc-row:hover { box-shadow: var(--shadow); border-color: transparent; transform: translateX(3px); }
.svc-row.is-popular { border-color: var(--coral); background: linear-gradient(180deg, #fff, #fff6f3); }
.svc-row .row-icon { width: 50px; height: 50px; border-radius: 13px; background: var(--mint-tint); color: var(--blue); display: grid; place-items: center; }
.svc-row .row-icon svg { width: 26px; height: 26px; }
.svc-row .row-main h3 { font-size: 1.18rem; margin-bottom: 2px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.svc-row .row-main p { font-size: .92rem; margin: 0; }
.svc-row .row-dur { font-size: .85rem; color: var(--ink-faint); font-weight: 600; display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.svc-row .row-dur svg { width: 15px; height: 15px; }
.svc-row .row-price { text-align: right; }
.svc-row .row-price .price-tag { font-size: 1.35rem; }
.svc-row .row-cta { margin-left: var(--s-2); }
.tag-pop { background: var(--coral); color: #4a1a12; font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 4px 9px; border-radius: var(--radius-pill); }
.tag-free { background: var(--mint); color: var(--blue-deep); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 4px 9px; border-radius: var(--radius-pill); }

/* ---------- WHY US / STATS ---------- */
.why { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.why::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(620px 320px at 80% -10%, rgba(207,238,228,.14), transparent 60%),
    radial-gradient(520px 300px at 0% 110%, rgba(255,143,122,.16), transparent 60%);
}
.why .container { position: relative; z-index: 1; }
.why h2 { color: #fff; }
.why .lead { color: rgba(255,255,255,.72); }
.why .kicker { color: var(--mint-deep); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3); margin-top: var(--s-6); }
.stat {
  padding: var(--s-4); border-radius: var(--radius-lg);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  transition: background .3s, transform .3s;
}
.stat:hover { background: rgba(255,255,255,.07); transform: translateY(-4px); }
.stat .num { font-family: var(--display); font-size: clamp(2.4rem, 4vw, 3.2rem); line-height: 1; color: #fff; display: flex; align-items: baseline; gap: 2px; }
.stat .num .suffix { color: var(--coral); font-size: .55em; }
.stat .label { margin-top: 10px; color: rgba(255,255,255,.66); font-size: .94rem; }

/* ---------- SPLIT FEATURE ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-7); align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(150deg, var(--mint-tint), var(--blue-soft));
  aspect-ratio: 4/3.4; box-shadow: var(--shadow); border: 1px solid var(--line-soft);
}
.feature-list { display: grid; gap: var(--s-2); margin-top: var(--s-4); }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; }
.feature-list .tick {
  width: 26px; height: 26px; border-radius: 50%; background: var(--mint); color: var(--blue-deep);
  display: grid; place-items: center; flex: none; margin-top: 2px;
}
.feature-list .tick svg { width: 15px; height: 15px; }
.feature-list .ft-body strong { color: var(--ink); display: block; font-weight: 650; }
.feature-list .ft-body span { font-size: .94rem; color: var(--ink-soft); }

/* step path */
.step-path { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3); margin-top: var(--s-6); position: relative; }
.step {
  text-align: center; position: relative; padding: var(--s-3);
}
.step .step-dot {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto var(--s-2);
  background: var(--paper); border: 2px dashed var(--mint-deep); color: var(--blue);
  display: grid; place-items: center; font-family: var(--display); font-size: 1.5rem; position: relative; z-index: 2;
}
.step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step p { font-size: .92rem; }

/* ---------- TESTIMONIALS ---------- */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.test-card {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: var(--s-4); display: flex; flex-direction: column; gap: var(--s-3);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.test-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.test-card .stars { color: var(--coral-deep); letter-spacing: 2px; font-size: 1rem; }
.test-card blockquote { font-family: var(--display); font-size: 1.12rem; line-height: 1.5; color: var(--ink); font-weight: 420; }
.test-author { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none; display: grid; place-items: center;
  font-family: var(--display); font-weight: 600; color: #fff; font-size: 1.05rem;
}
.test-author .who strong { display: block; font-weight: 650; color: var(--ink); font-size: .96rem; }
.test-author .who span { font-size: .85rem; color: var(--ink-faint); }

/* ---------- CTA BAND ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-inner {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 76px); color: #fff; position: relative; overflow: hidden;
  text-align: center;
}
.cta-inner::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,143,122,.35), transparent 65%); border-radius: 50%;
}
.cta-inner::after {
  content: ""; position: absolute; left: -100px; bottom: -120px; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(207,238,228,.22), transparent 65%); border-radius: 50%;
}
.cta-inner > * { position: relative; z-index: 1; }
.cta-inner h2 { color: #fff; }
.cta-inner .lead { color: rgba(255,255,255,.85); max-width: 540px; margin: var(--s-2) auto var(--s-5); }
.cta-inner .hero-cta { justify-content: center; }
.cta-inner .kicker { color: var(--mint); }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding-block: var(--s-8) var(--s-4); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--s-5); }
.site-footer .brand { color: #fff; }
.site-footer .brand small { color: var(--mint-deep); }
.footer-about p { color: rgba(255,255,255,.6); margin-top: var(--s-2); font-size: .95rem; max-width: 280px; }
.footer-col h4 { font-family: var(--body); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: var(--s-2); }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a, .footer-col li { color: rgba(255,255,255,.6); font-size: .95rem; transition: color .2s; }
.footer-col a:hover { color: var(--coral); }
.footer-hours { display: grid; gap: 7px; }
.footer-hours .row { display: flex; justify-content: space-between; gap: var(--s-2); font-size: .92rem; }
.footer-hours .row span:last-child { color: rgba(255,255,255,.85); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: var(--s-2); margin-top: var(--s-7); padding-top: var(--s-4); border-top: 1px solid rgba(255,255,255,.1); flex-wrap: wrap; font-size: .87rem; color: rgba(255,255,255,.5); }
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: rgba(255,255,255,.7); transition: all .25s; }
.footer-bottom .socials a:hover { background: var(--coral); color: #4a1a12; border-color: var(--coral); transform: translateY(-2px); }
.footer-bottom .socials svg { width: 17px; height: 17px; }

/* ---------- DIVIDERS ---------- */
.wave-divider { display: block; width: 100%; height: 60px; color: var(--paper); }
.wave-divider svg { width: 100%; height: 100%; }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .4s; }

/* ---------- PAGE HERO (sub pages) ---------- */
.page-hero { position: relative; overflow: hidden; padding-block: var(--s-8) var(--s-7); background: linear-gradient(180deg, var(--blue-soft), var(--white)); }
.page-hero::before {
  content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle at 40% 40%, var(--mint), transparent 68%); opacity: .5; border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-top: var(--s-2); }
.page-hero .lead { margin-top: var(--s-3); max-width: 600px; }
.breadcrumb { font-size: .85rem; color: var(--ink-faint); display: flex; gap: 8px; align-items: center; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { opacity: .6; }

/* ---------- ABOUT ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.value-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: var(--s-4); transition: transform .35s var(--ease), box-shadow .35s; }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.value-card .v-num { font-family: var(--display); font-style: italic; color: var(--coral-deep); font-size: 1.3rem; }
.value-card h3 { margin: 10px 0 8px; font-size: 1.25rem; }
.value-card p { font-size: .95rem; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3); }
.team-card { text-align: center; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: var(--s-5) var(--s-3); transition: transform .35s var(--ease), box-shadow .35s; }
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.team-avatar {
  width: 92px; height: 92px; border-radius: 50%; margin: 0 auto var(--s-3); display: grid; place-items: center;
  font-family: var(--display); font-size: 2rem; font-weight: 500; color: #fff; position: relative;
}
.team-avatar::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1.5px dashed var(--mint-deep); }
.team-card h3 { font-size: 1.2rem; }
.team-card .role { color: var(--blue); font-weight: 600; font-size: .9rem; margin-top: 2px; }
.team-card .bio { font-size: .88rem; margin-top: 10px; color: var(--ink-soft); }

.cred-row { display: flex; flex-wrap: wrap; gap: var(--s-2); justify-content: center; }
.cred-chip {
  display: inline-flex; align-items: center; gap: 9px; padding: 12px 20px; border-radius: var(--radius-pill);
  background: var(--paper); border: 1px solid var(--line); font-weight: 600; font-size: .92rem; color: var(--ink-soft);
}
.cred-chip svg { width: 18px; height: 18px; color: var(--blue); }

/* story block */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-7); align-items: center; }
.story-media {
  border-radius: var(--radius-lg); aspect-ratio: 1/1.05; position: relative; overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line-soft);
}
.story-stat {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,.92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border-radius: var(--radius); padding: var(--s-3); display: flex; gap: var(--s-3);
}
.story-stat .si { flex: 1; }
.story-stat .si .n { font-family: var(--display); font-size: 1.7rem; color: var(--ink); }
.story-stat .si .l { font-size: .78rem; color: var(--ink-faint); }

/* ---------- GALLERY ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-2); grid-auto-flow: dense; }
.tile {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1/1;
  cursor: pointer; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft);
}
.tile.wide { grid-column: span 2; }
.tile.tall { grid-row: span 2; aspect-ratio: 1/2.06; }
.tile .tile-art { position: absolute; inset: 0; transition: transform .6s var(--ease); }
.tile:hover .tile-art { transform: scale(1.07); }
.tile .tile-cap {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--s-3); background: linear-gradient(180deg, transparent 40%, rgba(26,34,48,.78));
  color: #fff; opacity: 0; transform: translateY(10px); transition: opacity .4s, transform .4s;
}
.tile:hover .tile-cap, .tile:focus-within .tile-cap { opacity: 1; transform: none; }
.tile .tile-cap .cat { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--coral); }
.tile .tile-cap h3 { color: #fff; font-size: 1.15rem; margin-top: 4px; }

/* before/after slider */
.ba-wrap { max-width: 760px; margin: 0 auto; }
.ba-slider {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10;
  box-shadow: var(--shadow-lg); user-select: none; touch-action: none; cursor: ew-resize;
}
.ba-layer { position: absolute; inset: 0; }
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-label { position: absolute; top: 14px; padding: 6px 14px; border-radius: var(--radius-pill); font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: rgba(26,34,48,.6); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.ba-label.before { left: 14px; }
.ba-label.after { right: 14px; background: rgba(244,113,90,.85); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); box-shadow: 0 0 0 1px rgba(26,34,48,.1); }
.ba-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 46px; height: 46px; border-radius: 50%; background: #fff; box-shadow: var(--shadow);
  display: grid; place-items: center; color: var(--blue);
}
.ba-knob svg { width: 22px; height: 22px; }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--s-6); align-items: start; }
.contact-methods { display: grid; gap: var(--s-2); }
.method-card {
  display: flex; gap: var(--s-3); align-items: flex-start; background: var(--paper);
  border: 1px solid var(--line-soft); border-radius: var(--radius); padding: var(--s-3) var(--s-4);
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.method-card:hover { box-shadow: var(--shadow); transform: translateX(3px); border-color: transparent; }
.method-card .m-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--mint-tint); color: var(--blue); display: grid; place-items: center; flex: none; }
.method-card .m-icon svg { width: 22px; height: 22px; }
.method-card h3 { font-size: 1.05rem; margin-bottom: 2px; }
.method-card p { font-size: .94rem; margin: 0; }
.method-card a { color: var(--blue); font-weight: 600; }

.hours-table { width: 100%; border-collapse: collapse; background: var(--paper); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); }
.hours-table th, .hours-table td { padding: 13px var(--s-3); text-align: left; font-size: .94rem; border-bottom: 1px solid var(--line-soft); }
.hours-table th { font-family: var(--body); font-weight: 600; color: var(--ink); width: 50%; }
.hours-table td { color: var(--ink-soft); text-align: right; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.hours-table tr.today { background: var(--mint-tint); }
.hours-table tr.today td, .hours-table tr.today th { font-weight: 700; color: var(--blue-deep); }
.hours-table .closed { color: var(--coral-deep); }

/* forms */
.form-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: var(--s-5); box-shadow: var(--shadow-sm); }
.field { margin-bottom: var(--s-3); }
.field label { display: block; font-size: .88rem; font-weight: 650; color: var(--ink); margin-bottom: 7px; }
.field .req { color: var(--coral-deep); }
.input, .textarea, .select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px;
  background: var(--white); color: var(--ink); transition: border-color .2s, box-shadow .2s, background .2s;
}
.input:focus, .textarea:focus, .select:focus { outline: none; border-color: var(--blue); background: var(--paper); box-shadow: 0 0 0 4px var(--blue-soft); }
.textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2); }
.field .err-msg { display: none; color: var(--coral-deep); font-size: .82rem; margin-top: 6px; font-weight: 600; }
.field.invalid .input, .field.invalid .textarea, .field.invalid .select { border-color: var(--coral-deep); background: #fff6f4; }
.field.invalid .err-msg { display: block; }
.form-note { font-size: .82rem; color: var(--ink-faint); margin-top: var(--s-2); }

.form-success {
  display: none; align-items: flex-start; gap: 13px; padding: var(--s-3) var(--s-4);
  background: var(--mint-tint); border: 1px solid var(--mint-deep); border-radius: var(--radius);
  margin-bottom: var(--s-3); color: var(--blue-deep);
}
.form-success.show { display: flex; }
.form-success svg { width: 22px; height: 22px; flex: none; color: var(--blue); margin-top: 2px; }
.form-success strong { display: block; color: var(--ink); }

/* map placeholder */
.map-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10; border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); margin-top: var(--s-3); }
.map-bg { position: absolute; inset: 0; }
.map-pin {
  position: absolute; top: 44%; left: 50%; transform: translate(-50%,-100%);
  color: var(--coral-deep); filter: drop-shadow(0 6px 10px rgba(0,0,0,.2)); animation: pinbob 2.6s var(--ease) infinite;
}
.map-pin svg { width: 46px; height: 46px; }
@keyframes pinbob { 0%,100% { transform: translate(-50%,-100%); } 50% { transform: translate(-50%,-115%); } }
.map-chip {
  position: absolute; left: 16px; bottom: 16px; background: var(--paper); border-radius: var(--radius);
  padding: 12px 16px; box-shadow: var(--shadow); font-size: .9rem;
}
.map-chip strong { display: block; color: var(--ink); }
.map-chip span { color: var(--ink-faint); font-size: .85rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; display: grid; gap: var(--s-2); }
.faq-item { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.faq-item.open { box-shadow: var(--shadow); border-color: transparent; }
.faq-q {
  width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: var(--s-2);
  padding: var(--s-3) var(--s-4); font-family: var(--display); font-size: 1.12rem; color: var(--ink); font-weight: 460;
}
.faq-q .faq-ico { width: 28px; height: 28px; border-radius: 50%; background: var(--mint-tint); color: var(--blue); display: grid; place-items: center; flex: none; transition: transform .3s, background .3s; }
.faq-q .faq-ico svg { width: 15px; height: 15px; }
.faq-item.open .faq-q .faq-ico { transform: rotate(45deg); background: var(--coral); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 var(--s-4) var(--s-4); color: var(--ink-soft); font-size: .98rem; }

/* ---------- MEMBERSHIPS ---------- */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); align-items: stretch; }
.plan-card {
  position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: var(--s-5); display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-card.featured { border-color: var(--blue); box-shadow: var(--shadow); transform: scale(1.02); }
.plan-card.featured:hover { transform: scale(1.02) translateY(-6px); }
.plan-card.featured::before {
  content: "Most chosen"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: #4a1a12; font-size: .68rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: 6px 16px; border-radius: var(--radius-pill);
}
.plan-card .plan-name { font-family: var(--display); font-size: 1.5rem; }
.plan-card .plan-tag { font-size: .9rem; color: var(--ink-faint); margin-top: 4px; }
.plan-price { margin: var(--s-3) 0; display: flex; align-items: baseline; gap: 4px; }
.plan-price .amt { font-family: var(--display); font-size: 3rem; color: var(--ink); line-height: 1; }
.plan-price .per { color: var(--ink-faint); font-size: .95rem; }
.plan-card ul { display: grid; gap: 12px; margin: var(--s-2) 0 var(--s-4); }
.plan-card ul li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.plan-card ul li svg { width: 18px; height: 18px; color: var(--blue); flex: none; margin-top: 3px; }
.plan-card ul li.muted { color: var(--ink-faint); }
.plan-card ul li.muted svg { color: var(--line); }
.plan-card .btn { margin-top: auto; }

/* ---------- CHECKOUT ---------- */
.checkout-grid { display: grid; grid-template-columns: 1.4fr .85fr; gap: var(--s-5); align-items: start; }
.checkout-main { display: grid; gap: var(--s-3); }
.co-block { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: var(--s-4); }
.co-block h2 { font-size: 1.4rem; margin-bottom: var(--s-1); }
.co-block .co-step { display: flex; align-items: center; gap: 11px; margin-bottom: var(--s-3); }
.co-block .co-step .num { width: 30px; height: 30px; border-radius: 50%; background: var(--blue); color: #fff; display: grid; place-items: center; font-family: var(--display); font-size: 1rem; flex: none; }
.co-block .co-step h2 { margin: 0; }

.toggle-row { display: flex; gap: var(--s-2); flex-wrap: wrap; margin-bottom: var(--s-2); }
.seg {
  display: inline-flex; background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-pill); padding: 4px;
}
.seg button { padding: 9px 18px; border-radius: var(--radius-pill); font-size: .88rem; font-weight: 600; color: var(--ink-soft); transition: all .25s; }
.seg button.active { background: var(--blue); color: #fff; box-shadow: var(--shadow-sm); }
.seg-label { font-size: .82rem; font-weight: 700; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .06em; align-self: center; margin-right: 6px; }

.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: 10px; }
.slot {
  padding: 12px 8px; border: 1.5px solid var(--line); border-radius: 11px; background: var(--white);
  font-weight: 600; font-size: .92rem; color: var(--ink); transition: all .2s; text-align: center;
}
.slot:hover:not(:disabled) { border-color: var(--blue); transform: translateY(-2px); }
.slot.selected { background: var(--blue); color: #fff; border-color: var(--blue); }
.slot:disabled { opacity: .4; cursor: not-allowed; text-decoration: line-through; }
.slot small { display: block; font-size: .68rem; font-weight: 600; color: inherit; opacity: .7; }
.slot-error { display: none; color: var(--coral-deep); font-size: .85rem; font-weight: 600; margin-top: 10px; }

.pay-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: var(--s-3); }
.pay-tab {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 16px; border: 1.5px solid var(--line);
  border-radius: 11px; background: var(--white); font-weight: 600; font-size: .9rem; color: var(--ink-soft); transition: all .2s;
}
.pay-tab .pt-ico { font-weight: 800; font-size: .82rem; }
.pay-tab.active { border-color: var(--blue); background: var(--blue-soft); color: var(--blue-deep); }
.pay-panel { display: none; }
.pay-panel.active { display: block; animation: fadeIn .3s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.redirect-notice { display: flex; gap: 13px; align-items: flex-start; padding: var(--s-3) var(--s-4); background: var(--blue-soft); border: 1px solid #cfe1f3; border-radius: var(--radius); color: var(--blue-deep); }
.redirect-notice svg { width: 24px; height: 24px; flex: none; color: var(--blue); margin-top: 2px; }
.redirect-notice strong { color: var(--ink); display: block; }

.card-input-wrap { position: relative; }
.card-brand-icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); width: 36px; height: 24px; pointer-events: none; }

/* order summary */
.summary { position: sticky; top: 100px; }
.summary-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: var(--s-4); box-shadow: var(--shadow); }
.summary-card h2 { font-size: 1.3rem; margin-bottom: var(--s-3); }
.sum-service-row { display: flex; gap: 13px; align-items: flex-start; padding-bottom: var(--s-3); border-bottom: 1px solid var(--line-soft); margin-bottom: var(--s-3); }
.sum-service-row .si { width: 48px; height: 48px; border-radius: 12px; background: var(--mint-tint); color: var(--blue); display: grid; place-items: center; flex: none; }
.sum-service-row .si svg { width: 24px; height: 24px; }
.sum-service-row .sd strong { display: block; color: var(--ink); font-size: 1.02rem; }
.sum-service-row .sd span { font-size: .85rem; color: var(--ink-faint); }
.sum-line { display: flex; justify-content: space-between; padding: 7px 0; font-size: .95rem; color: var(--ink-soft); }
.sum-line.discount { color: var(--blue); font-weight: 600; }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: var(--s-3); margin-top: var(--s-2); border-top: 2px solid var(--line); }
.sum-total .lbl { font-weight: 700; color: var(--ink); }
.sum-total .amt { font-family: var(--display); font-size: 1.9rem; color: var(--ink); }

.promo-row { display: flex; gap: 8px; margin: var(--s-3) 0; }
.promo-row .input { flex: 1; }
.promo-msg { font-size: .84rem; margin-top: 8px; font-weight: 600; min-height: 1em; }
.promo-msg.ok { color: var(--blue); }
.promo-msg.err { color: var(--coral-deep); }

.secure-row { display: flex; align-items: center; gap: 9px; justify-content: center; margin-top: var(--s-3); color: var(--ink-faint); font-size: .85rem; font-weight: 600; }
.secure-row svg { width: 16px; height: 16px; color: var(--blue); }
.gateway-chips { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin-top: var(--s-2); }
.gw-chip {
  font-size: .64rem; font-weight: 800; letter-spacing: .04em; padding: 5px 9px; border-radius: 7px;
  background: var(--white); border: 1px solid var(--line); color: var(--ink-soft);
}
.demo-note { text-align: center; font-size: .8rem; color: var(--ink-faint); margin-top: var(--s-2); font-style: italic; }
.free-note { display: none; padding: var(--s-3) var(--s-4); background: var(--mint-tint); border: 1px solid var(--mint-deep); border-radius: var(--radius); color: var(--blue-deep); }
.free-note strong { color: var(--ink); }

.spinner { width: 18px; height: 18px; border: 2px solid rgba(74,26,18,.3); border-top-color: #4a1a12; border-radius: 50%; display: none; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.btn.loading .btn-label { display: none; }
.btn.loading .spinner { display: inline-block; }

/* ---------- SUCCESS ---------- */
.success-wrap { max-width: 640px; margin: 0 auto; text-align: center; }
.check-circle {
  width: 110px; height: 110px; border-radius: 50%; margin: 0 auto var(--s-4);
  background: var(--mint-tint); display: grid; place-items: center; position: relative;
}
.check-circle::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--mint-deep); animation: ringPulse 2s var(--ease) infinite; }
@keyframes ringPulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.35); opacity: 0; } }
.check-svg { width: 56px; height: 56px; }
.check-svg path { stroke: var(--blue); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; fill: none; stroke-dasharray: 60; stroke-dashoffset: 60; animation: drawCheck .7s var(--ease) .25s forwards; }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }

.success-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: var(--s-5); box-shadow: var(--shadow); text-align: left; margin-top: var(--s-5); }
.success-card .sc-ref { display: flex; justify-content: space-between; align-items: center; padding-bottom: var(--s-3); border-bottom: 1px solid var(--line-soft); margin-bottom: var(--s-3); flex-wrap: wrap; gap: var(--s-2); }
.success-card .sc-ref .rk { font-size: .82rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.success-card .sc-ref .rv { font-family: var(--display); font-size: 1.4rem; color: var(--ink); }
.sc-line { display: flex; justify-content: space-between; padding: 8px 0; font-size: .96rem; }
.sc-line .l { color: var(--ink-faint); }
.sc-line .v { color: var(--ink); font-weight: 600; }

.steps-next { display: grid; gap: var(--s-2); margin-top: var(--s-5); text-align: left; }
.step-next { display: flex; gap: 15px; align-items: flex-start; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: var(--s-3) var(--s-4); }
.step-next .sn-num { width: 34px; height: 34px; border-radius: 50%; background: var(--mint); color: var(--blue-deep); display: grid; place-items: center; font-family: var(--display); flex: none; font-weight: 600; }
.step-next h3 { font-size: 1.05rem; margin-bottom: 2px; }
.step-next p { font-size: .92rem; margin: 0; }

/* ---------- STICKY MOBILE BOOK BAR ---------- */
.sticky-book {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(247,246,243,.95); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line); padding: 11px var(--s-3); gap: var(--s-2); align-items: center;
  box-shadow: 0 -6px 24px rgba(35,84,136,.1);
}
.sticky-book .sb-info { flex: 1; min-width: 0; }
.sticky-book .sb-info strong { display: block; font-size: .92rem; color: var(--ink); }
.sticky-book .sb-info span { font-size: .78rem; color: var(--ink-faint); }
.sticky-book .btn { flex: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .step-path { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .hero-visual { max-width: 460px; }
  .hero-arch { display: none; }
  .split, .story-grid, .contact-grid, .checkout-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .split--reverse .split-media { order: 0; }
  .summary { position: static; }
  .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: 1fr; }
  .plan-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-6px); }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav-links, .nav-cta .btn { display: none; }
  .hamburger { display: block; }
  .section { padding-block: var(--s-8); }
  .sticky-book { display: flex; }
  body.has-sticky-bar { padding-bottom: 74px; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { padding-inline: var(--s-2); }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .tile.wide { grid-column: span 2; }
  .tile.tall { grid-row: span 1; aspect-ratio: 1/1; }
  .step-path { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 44px 1fr; row-gap: 10px; }
  .svc-row .row-dur { grid-column: 2; }
  .svc-row .row-price { grid-column: 1 / -1; text-align: left; display: flex; align-items: center; justify-content: space-between; }
  .svc-row .row-cta { grid-column: 1 / -1; margin-left: 0; }
  .svc-row .row-cta .btn { width: 100%; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--s-3); }
  h1 { font-size: clamp(2.2rem, 9vw, 2.8rem); }
}
