/* ============================================================
   Precision Dental Solutions — Brand stylesheet
   Palette: Maple Red #C7393E · Dark Steel Red #A34748 ·
            Covert Black #17161B · White #FFFFFF
   Type: Archivo (display) + Figtree (body)
   ============================================================ */

:root {
  /* Brand */
  --red: #C7393E;
  --red-deep: #A34748;
  --red-press: #9c2b30;
  --ink: #17161B;
  --ink-2: #201f27;
  --ink-3: #2c2b34;
  --white: #ffffff;

  /* Neutrals */
  --bg: #faf7f3;
  --bg-muted: #f3efe9;
  --surface: #fdfbf8;
  --text: #1d1c22;
  --text-soft: #56535e;
  --text-faint: #8a8792;
  --border: #e8e1d8;
  --border-strong: #d9d0c4;

  /* Tokens */
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(23,22,27,.06), 0 2px 8px rgba(23,22,27,.05);
  --shadow-md: 0 8px 28px rgba(23,22,27,.10);
  --shadow-lg: 0 24px 60px rgba(23,22,27,.18);
  --shadow-red: 0 14px 34px rgba(199,57,62,.32);
  --ring: 0 0 0 4px rgba(199,57,62,.30);

  --container: 1180px;
  --pad: clamp(20px, 5vw, 40px);
  --t-fast: 160ms cubic-bezier(.2,.7,.3,1);
  --t: 240ms cubic-bezier(.2,.7,.3,1);

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
svg { display: block; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 6px; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.08; letter-spacing: -.02em; color: var(--ink); font-weight: 800; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--muted { background: var(--bg-muted); }
.text-red { color: var(--red); }

.skip-link {
  position: absolute; left: 12px; top: -56px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px;
  transition: top var(--t-fast);
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; letter-spacing: .01em;
  padding: .72rem 1.25rem; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  min-height: 46px; white-space: nowrap;
}
.btn--lg { padding: .9rem 1.6rem; min-height: 54px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn--primary:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn--primary:active { background: var(--red-press); transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.section--dark .btn--ghost, .hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.section--dark .btn--ghost:hover, .hero .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--red);
  margin-bottom: 1rem;
}
.eyebrow--center { justify-content: center; }
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(199,57,62,.18); }
.section--dark .eyebrow, .hero .eyebrow { color: #ff8d91; }
.section--dark .eyebrow__dot, .hero .eyebrow__dot { background: var(--red); box-shadow: 0 0 0 4px rgba(199,57,62,.3); }

/* ---------- Topbar ---------- */
.topbar { background: var(--ink); color: rgba(255,255,255,.82); font-size: .82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .55rem; }
.topbar__list { display: flex; gap: 1.4rem; list-style: none; padding: 0; }
.topbar__list li { display: inline-flex; align-items: center; gap: .45rem; }
.topbar__list a:hover { color: #fff; }
.topbar .i { width: 15px; height: 15px; fill: none; stroke: var(--red); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.topbar__note { color: rgba(255,255,255,.6); }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94); border-bottom: 1px solid var(--border); transition: box-shadow var(--t), background var(--t); }
@media (min-width: 901px) { .nav { background: rgba(255,255,255,.85); backdrop-filter: blur(12px); } }
.nav.is-stuck { box-shadow: var(--shadow-md); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: .7rem; }

.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand__mark { width: 40px; height: auto; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 900; letter-spacing: .04em; font-size: 1.18rem; color: var(--ink); }
.brand__sub { font-family: var(--font-display); font-weight: 600; letter-spacing: .22em; text-transform: uppercase; font-size: .58rem; color: var(--red); margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: .4rem; }
.nav__links > a:not(.btn) { padding: .5rem .7rem; border-radius: 10px; font-weight: 600; color: var(--text-soft); font-size: .96rem; transition: color var(--t-fast), background var(--t-fast); }
.nav__links > a:not(.btn):hover { color: var(--ink); background: var(--bg-muted); }
.nav__cta { margin-left: .4rem; }

.nav__toggle { display: none; width: 46px; height: 46px; border: 1.5px solid var(--border-strong); border-radius: 12px; background: #fff; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform var(--t), opacity var(--t-fast); }
.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); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; padding-block: clamp(56px, 8vw, 104px); }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(900px 480px at 78% 8%, rgba(199,57,62,.30), transparent 62%),
    radial-gradient(700px 500px at 10% 100%, rgba(163,71,72,.18), transparent 58%),
    linear-gradient(180deg, #17161b 0%, #1c1a21 100%);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px; mask-image: radial-gradient(circle at 70% 30%, #000, transparent 72%);
}
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); font-weight: 900; color: #fff; letter-spacing: -.03em; }
.hero__lede { color: rgba(255,255,255,.78); font-size: clamp(1.05rem, 1.6vw, 1.25rem); max-width: 38ch; margin-top: 1.25rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.hero__trust { display: flex; align-items: center; gap: .85rem; margin-top: 2.25rem; color: rgba(255,255,255,.8); font-size: .95rem; }
.hero__trust strong { color: #fff; }

.stars { display: inline-flex; gap: 3px; }
.stars svg { width: 20px; height: 20px; fill: #ffb400; }
.stars--sm svg { width: 17px; height: 17px; }

/* Hero panel */
.hero__panel { position: relative; min-height: 360px; display: grid; place-items: center; }
.hero__shield {
  position: relative; width: min(380px, 80%); aspect-ratio: 1; display: grid; place-items: center;
  background: radial-gradient(circle at 50% 42%, rgba(199,57,62,.30), transparent 62%);
}
.hero__shield img { width: 78%; filter: drop-shadow(0 26px 50px rgba(0,0,0,.5)); animation: floaty 6s ease-in-out infinite; }
.hero__card {
  position: absolute; right: -4px; bottom: 8px; width: min(280px, 86%);
  background: rgba(255,255,255,.97); color: var(--ink); border-radius: var(--radius-lg);
  padding: 1.1rem 1.2rem; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.6);
}
.hero__card-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--text-faint); font-weight: 700; font-family: var(--font-display); }
.hero__card-time { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; margin-top: 2px; }
.hero__card-list { list-style: none; padding: 0; margin-top: .7rem; display: grid; gap: .45rem; }
.hero__card-list li { display: flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--text-soft); }
.hero__card-list .i { width: 17px; height: 17px; fill: none; stroke: var(--red); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; flex: none; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Stats strip ---------- */

/* ---------- Section heads ---------- */
.section__head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section__head h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
.section__lede { color: var(--text-soft); font-size: 1.1rem; margin-top: 1rem; }
.section__lede--light { color: rgba(255,255,255,.78); }

/* ---------- Grid + cards ---------- */
.grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.8rem; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--red), var(--red-deep)); transform: scaleX(0); transform-origin: left; transition: transform var(--t); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border-strong); }
.card:hover::before { transform: scaleX(1); }
.card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.card p { color: var(--text-soft); }
.card__icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: rgba(199,57,62,.10); margin-bottom: 1.1rem; }
.card__icon svg { width: 28px; height: 28px; fill: none; stroke: var(--red); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Equipment categories ---------- */
.eq-head { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(28px, 5vw, 64px); margin-bottom: clamp(40px, 5vw, 64px); }
.eq-head__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border); }
.eq-head__media img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 10; }
.eq-head__copy h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
.eq-head__copy .section__lede { max-width: 46ch; }
@media (max-width: 860px) { .eq-head { grid-template-columns: 1fr; } .eq-head__media { order: -1; } }

.eq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 20px); }
.eq-grid--4 { grid-template-columns: repeat(4, 1fr); }
.eq-item { display: flex; gap: 1rem; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.25rem 1.3rem; box-shadow: var(--shadow-sm); transition: transform var(--t), border-color var(--t); }
.eq-item:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.eq-item__ic { flex: none; width: 52px; height: 52px; border-radius: 13px; background: rgba(199,57,62,.10); display: grid; place-items: center; }
.eq-item__ic svg { width: 24px; height: 24px; fill: none; stroke: var(--red); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.eq-item__ic img { width: 32px; height: 32px; object-fit: contain; display: block; }
.eq-item h3 { font-size: 1.08rem; margin-bottom: .2rem; }
.eq-item p { color: var(--text-soft); font-size: .92rem; line-height: 1.5; }

.brands { margin-top: clamp(36px, 5vw, 56px); text-align: center; }
.brands__label { font-family: var(--font-display); font-weight: 600; color: var(--text-faint); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; }
.brands__row { list-style: none; padding: 0; margin-top: 1.1rem; display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem .8rem; }
.chip { font-family: var(--font-display); font-weight: 700; color: var(--text-soft); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-pill); padding: .5rem 1.15rem; font-size: .95rem; letter-spacing: .01em; }

/* ---------- Shop CTA ---------- */
.shop__cta { margin-top: clamp(32px, 4.5vw, 52px); text-align: center; }
.shop__cta .btn .i { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.shop__note { margin-top: 1rem; color: var(--text-faint); font-size: .9rem; }
.shop__note a { color: var(--red); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Why (dark) ---------- */
.section--dark { background: var(--ink); color: #fff; }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.why__copy h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
.why__copy .btn { margin-top: 1.6rem; }
.why__list { list-style: none; padding: 0; display: grid; gap: 1rem; }
.why__list li { display: flex; gap: 1rem; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: var(--radius); padding: 1.2rem 1.3rem; transition: background var(--t), border-color var(--t), transform var(--t); }
.why__list li:hover { background: rgba(255,255,255,.07); border-color: rgba(199,57,62,.5); transform: translateX(4px); }
.why__icon { flex: none; width: 48px; height: 48px; border-radius: 12px; background: rgba(199,57,62,.16); display: grid; place-items: center; }
.why__icon svg { width: 24px; height: 24px; fill: none; stroke: #ff8d91; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.why__list h3 { color: #fff; font-size: 1.12rem; margin-bottom: .25rem; }
.why__list p { color: rgba(255,255,255,.7); font-size: .96rem; }

/* ---------- Process ---------- */
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.4vw, 28px); counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.7rem 1.5rem; position: relative; box-shadow: var(--shadow-sm); }
.step__num { font-family: var(--font-display); font-weight: 900; font-size: 2.4rem; color: rgba(199,57,62,.22); line-height: 1; display: block; margin-bottom: .6rem; }
.step h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.step p { color: var(--text-soft); font-size: .96rem; }

/* ---------- About ---------- */
/* Full-bleed image band */
.imgband { width: 100%; max-height: 56vh; overflow: hidden; background: var(--ink); }
.imgband img { display: block; width: 100%; height: 100%; max-height: 56vh; object-fit: cover; object-position: center 40%; }

/* CTA banner (image background + overlay) */
.banner { position: relative; isolation: isolate; min-height: clamp(360px, 52vh, 520px); display: grid; align-items: center; background: var(--ink); overflow: hidden; }
.banner__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; z-index: -2; }
.banner__overlay { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(23,22,27,.86) 0%, rgba(23,22,27,.66) 46%, rgba(23,22,27,.30) 100%); }
.banner__inner { color: #fff; padding-block: clamp(48px, 8vw, 88px); max-width: 620px; }
.banner__inner h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.08; margin-bottom: .9rem; }
.banner__lede { color: rgba(255,255,255,.82); font-size: 1.05rem; line-height: 1.6; margin-bottom: 1.6rem; max-width: 48ch; }

.about__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.about__media { display: grid; place-items: center; }
.about__photo {
  position: relative; width: 100%; max-width: 480px; aspect-ratio: 4 / 5; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.about__photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.4); border-radius: inherit; pointer-events: none; }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__copy h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); margin-bottom: 1rem; }
.about__copy p { color: var(--text-soft); margin-bottom: 1rem; }
.about__points { list-style: none; padding: 0; margin-top: 1.2rem; display: grid; gap: .65rem; }
.about__points li { display: flex; align-items: center; gap: .65rem; font-weight: 600; color: var(--ink); }
.about__points .i, .contact__list .i, .book__assure .i { width: 18px; height: 18px; fill: none; stroke: var(--red); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ---------- Reviews ---------- */
.quote { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.8rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 1rem; }
.quote blockquote { font-size: 1.08rem; color: var(--ink); line-height: 1.55; }
.quote figcaption { display: flex; flex-direction: column; }
.quote figcaption strong { font-family: var(--font-display); }
.quote figcaption span { color: var(--text-faint); font-size: .9rem; }

/* ---------- Book CTA ---------- */
.book { background: linear-gradient(135deg, var(--red) 0%, var(--red-deep) 60%, #7e2d31 100%); color: #fff; padding-block: clamp(56px, 8vw, 100px); position: relative; overflow: hidden; }
.book::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(circle at 15% 30%, #000, transparent 70%); }
.book__grid { position: relative; display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.book__copy h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.book__copy > p { color: rgba(255,255,255,.9); font-size: 1.1rem; }
.book__copy a { text-decoration: underline; font-weight: 700; }
.book .eyebrow { color: #fff; }
.book .eyebrow__dot { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,.25); }
.book__assure { list-style: none; padding: 0; margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 1.2rem; }
.book__assure li { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; }
.book__assure .i { stroke: #fff; }

/* ---------- Form ---------- */
.form { background: #fff; color: var(--text); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-lg); display: grid; gap: 1rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--ink); }
.req { color: var(--red); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--text); background: var(--bg-muted);
  border: 1.5px solid var(--border); border-radius: 12px; padding: .8rem .9rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast); width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--red); background: #fff; box-shadow: var(--ring); }
.field.is-invalid input, .field.is-invalid select { border-color: var(--red); background: #fdf3f3; }
.field__error { color: var(--red); font-size: .82rem; font-weight: 600; min-height: 0; }
.field.is-invalid .field__error { min-height: 1em; }
.form__status { text-align: center; font-weight: 600; min-height: 1.2em; }
.form__status.is-ok { color: #1c7d4d; }
.form__status.is-err { color: var(--red); }

/* ---------- Contact + FAQ ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.contact__list { list-style: none; padding: 0; margin-top: 1.6rem; display: grid; gap: 1.1rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(199,57,62,.10); display: grid; place-items: center; }
.contact__ic svg { width: 22px; height: 22px; fill: none; stroke: var(--red); stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.contact__list strong { font-family: var(--font-display); display: block; margin-bottom: 2px; }
.contact__list p { color: var(--text-soft); }
.contact__list a:hover { color: var(--red); }

/* Instagram follow CTA */
.ig-cta { display: flex; align-items: center; gap: 1rem; margin-top: 1.6rem; padding: 1rem 1.1rem; border-radius: var(--radius); text-decoration: none;
  background: linear-gradient(120deg, rgba(199,57,62,.10), rgba(199,57,62,.04));
  border: 1px solid var(--border); transition: transform var(--t), border-color var(--t), box-shadow var(--t); }
.ig-cta:hover { transform: translateY(-3px); border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.ig-cta__ic { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: #fff;
  background: linear-gradient(45deg, #F58529, #DD2A7B 45%, #8134AF 75%, #515BD4); }
.ig-cta__ic svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.ig-cta__txt { display: flex; flex-direction: column; line-height: 1.3; color: var(--text-soft); font-size: .9rem; }
.ig-cta__txt strong { font-family: var(--font-display); color: var(--ink); font-size: 1.02rem; margin-bottom: 1px; }
.ig-cta__arrow { width: 20px; height: 20px; margin-left: auto; flex: none; fill: none; stroke: var(--red); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform var(--t-fast); }
.ig-cta:hover .ig-cta__arrow { transform: translateX(3px); }

.faq__title { font-size: 1.6rem; margin-bottom: 1.2rem; }
.accordion { display: grid; gap: .7rem; }
.acc { border: 1px solid var(--border); border-radius: var(--radius); background: #fff; overflow: hidden; transition: border-color var(--t-fast), box-shadow var(--t-fast); }
.acc:has(.acc__q[aria-expanded="true"]) { border-color: var(--red-deep); box-shadow: var(--shadow-sm); }
.acc__q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.05rem 1.2rem; background: none; border: 0; font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1.02rem; }
.acc__chev { width: 20px; height: 20px; fill: none; stroke: var(--red); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; flex: none; transition: transform var(--t); }
.acc__q[aria-expanded="true"] .acc__chev { transform: rotate(180deg); }
.acc__a { overflow: hidden; max-height: 0; transition: max-height var(--t); }
.acc__a p { padding: 0 1.2rem 1.15rem; color: var(--text-soft); }

/* Intro overlay banner with stats (flows out of the hero) */
.introband { position: relative; isolation: isolate; min-height: clamp(440px, 62vh, 600px); display: grid; align-items: stretch; background: var(--ink); overflow: hidden; }
.introband__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 36%; z-index: -2; }
.introband__overlay { position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(180deg, rgba(23,22,27,.74) 0%, rgba(23,22,27,.22) 28%, rgba(23,22,27,0) 46%),
  linear-gradient(0deg, rgba(23,22,27,.97) 0%, rgba(23,22,27,.88) 16%, rgba(23,22,27,.55) 34%, rgba(23,22,27,.12) 58%, rgba(23,22,27,0) 76%); }
.introband__inner { width: 100%; color: #fff; display: flex; flex-direction: column; justify-content: space-between; gap: clamp(28px, 5vw, 56px); padding-block: clamp(28px, 4vw, 52px); }
.introband__copy { max-width: 640px; }
.introband .eyebrow { text-shadow: 0 1px 10px rgba(0,0,0,.4); }
.introband__title { color: #fff; font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.1; margin-bottom: 0; text-shadow: 0 2px 20px rgba(0,0,0,.5); }
.introband__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2.4vw, 32px); padding-top: clamp(18px, 2.5vw, 26px); border-top: 1px solid rgba(255,255,255,.28); }
.istat { display: flex; flex-direction: column; gap: .15rem; }
.istat__num { font-family: var(--font-display); font-weight: 900; font-size: clamp(1.7rem, 3.6vw, 2.6rem); letter-spacing: -.02em; color: #fff; line-height: 1; text-shadow: 0 2px 14px rgba(0,0,0,.55); }
.istat__num::first-letter { color: var(--red); }
.istat__label { color: rgba(255,255,255,.9); font-size: .88rem; letter-spacing: .02em; text-shadow: 0 1px 10px rgba(0,0,0,.6); }
@media (max-width: 600px) { .introband__stats { grid-template-columns: repeat(2, 1fr); row-gap: clamp(18px, 5vw, 26px); } }

/* WhatsApp floating chat link */
.wa-fab {
  position: fixed; right: clamp(16px, 3vw, 28px); bottom: clamp(16px, 3vw, 28px);
  z-index: 1000; display: inline-flex; align-items: center; gap: 0;
  height: 56px; padding: 0; border-radius: 999px; overflow: hidden;
  background: #25d366; color: #fff; box-shadow: 0 8px 24px rgba(18,140,70,.4);
  transition: padding var(--t), box-shadow var(--t-fast), transform var(--t-fast);
}
.wa-fab__icon { width: 30px; height: 30px; flex: none; margin: 0 13px; }
.wa-fab__label {
  font-family: var(--font-display); font-weight: 700; font-size: .95rem; white-space: nowrap;
  max-width: 0; opacity: 0; transition: max-width var(--t), opacity var(--t-fast), margin var(--t);
}
.wa-fab:hover, .wa-fab:focus-visible { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(18,140,70,.5); }
.wa-fab:hover .wa-fab__icon, .wa-fab:focus-visible .wa-fab__icon { margin-left: 16px; margin-right: 8px; }
.wa-fab:hover .wa-fab__label, .wa-fab:focus-visible .wa-fab__label { max-width: 160px; opacity: 1; margin-right: 18px; }
@media (max-width: 600px) { .wa-fab { height: 52px; } .wa-fab__label { display: none; } }
@media (prefers-reduced-motion: reduce) { .wa-fab, .wa-fab__icon, .wa-fab__label { transition: none; } }

/* Brand wave divider (echoes the letterhead / business-card ribbon) */
.wave { background: var(--bg-muted); line-height: 0; margin-bottom: -1px; }
.wave svg { display: block; width: 100%; height: clamp(64px, 8vw, 112px); }
.wave__red { fill: var(--red); }
.wave__ink { fill: var(--ink); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.72); padding-top: clamp(28px, 4vw, 44px); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: clamp(28px, 4vw, 56px); padding-bottom: 2.5rem; }
.brand--footer .brand__name { color: #fff; }
.footer__tagline { margin-top: 1rem; font-family: var(--font-display); font-weight: 700; font-style: italic; letter-spacing: .02em; color: var(--red); font-size: 1.02rem; }
.footer__blurb { margin-top: .6rem; max-width: 32ch; font-size: .95rem; }
.footer__social { margin-top: 1.2rem; display: flex; gap: .6rem; }
.footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.75); transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast); }
.footer__social a:hover { color: #fff; border-color: var(--red); background: var(--red); }
.footer__social svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.footer__col h3 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1rem; }
.footer__col a, .footer__col p { display: block; color: rgba(255,255,255,.7); margin-bottom: .55rem; font-size: .95rem; transition: color var(--t-fast); }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.4rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; color: rgba(255,255,255,.55); }
.footer__legal a:hover { color: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.3,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid, .why__grid, .about__grid, .book__grid, .contact__grid { grid-template-columns: 1fr; }
  .hero__panel { order: -1; min-height: 280px; }
  .about__media { order: -1; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .eq-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .topbar__note { display: none; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto;
    width: min(320px, 84vw); height: 100vh; height: 100dvh;
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    background: #fff; padding: 86px 22px 28px; gap: .3rem; box-shadow: var(--shadow-lg);
    transform: translateX(110%); visibility: hidden;
    transition: transform var(--t), visibility 0s linear var(--t); z-index: 90; overflow-y: auto;
  }
  .nav__links.is-open { transform: translateX(0); visibility: visible; transition: transform var(--t), visibility 0s; }
  .nav__links > a:not(.btn) { padding: .85rem .7rem; border-bottom: 1px solid var(--border); border-radius: 0; }
  .nav__cta { margin: .8rem 0 0; }
  body.nav-open { overflow: hidden; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(23,22,27,.5); opacity: 0; pointer-events: none; transition: opacity var(--t); z-index: 80; }
  .nav-scrim.is-open { opacity: 1; pointer-events: auto; }
}

@media (max-width: 560px) {
  .grid--3, .eq-grid, .steps { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .topbar__list { gap: .9rem; }
  .topbar__sep { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px 28px; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__shield img { animation: none; }
}
