/* =====================================================================
   Cornerstone Plumbing — LANDING components (Client-First structure)
   ---------------------------------------------------------------------
   Hierarchy: section_landing-[name]  →  padding-global  →  container-large
              →  padding-section-[size]  →  landing_[name]_component
              →  landing_[name]_[block]  →  __element  →  .is-* modifier

   Global shared components (buttons, pills, eyebrow, calllink, stars,
   photo placeholders, the scheduler widget, modal, before/after slider,
   sticky call bar) are intentionally un-prefixed — they recur across
   sections and several are JS-driven. All colour via var(--token).
   ===================================================================== */

/* =============================================================
   BASE
============================================================= */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--paper);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; }
[data-lucide] { stroke-width: 2; flex-shrink: 0; }

/* =============================================================
   GLOBAL TYPOGRAPHY HELPERS
============================================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent-soft); margin: 0;
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--accent-soft); border-radius: 2px;
}
.h2 { font-family: var(--font-display); font-weight: var(--display-weight); letter-spacing: -0.025em; line-height: 1.12; margin: 0; font-size: clamp(26px, 2.2vw + 16px, 38px); color: var(--fg); text-wrap: balance; }
.h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.015em; line-height: 1.18; margin: 0; font-size: 19px; color: var(--fg); }
.lede { font-size: clamp(17px, 1vw + 13px, 19px); color: var(--fg-muted); line-height: 1.5; max-width: 50ch; text-wrap: pretty; margin: 0; }

.landing_section-head { max-width: 60ch; display: flex; flex-direction: column; gap: 14px; margin-bottom: clamp(32px, 4vw, 52px); }

/* =============================================================
   GLOBAL — Buttons
============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border-radius: var(--r2);
  font-family: var(--font-body); font-weight: 700; font-size: 15px; line-height: 1;
  cursor: pointer; border: 1px solid transparent; text-decoration: none; white-space: nowrap;
  transition: background 150ms var(--ease), color 150ms, transform 90ms, box-shadow 150ms, border-color 150ms;
}
.btn [data-lucide] { width: 17px; height: 17px; }
.btn:active { transform: translateY(1px); }
.btn:disabled { cursor: not-allowed; }
.btn-primary { background: var(--cta); color: var(--on-cta); box-shadow: var(--shadow-sm); }
.btn-primary:disabled { background: var(--paper-3); color: var(--fg-subtle); box-shadow: none; }
.btn-primary:hover:not(:disabled) { background: var(--cta-hover); }
.btn-outline-cta { background: var(--paper); color: var(--cta); border-color: var(--cta); }
.btn-outline-cta:hover:not(:disabled) { background: var(--cta); color: var(--on-cta); }
.btn-outline-cta.is-solid { background: var(--cta); color: var(--on-cta); border-color: var(--cta); }
#headerCta.btn-outline-cta.is-solid:not(:disabled) {
   transform-origin: center;
   animation: schedCtaColor 3.2s var(--ease) infinite;
}
#headerCta.btn-outline-cta.is-solid:not(:disabled):hover {
   animation: schedHeartbeat 1.4s var(--ease) infinite;
   background: var(--cta-hover);
   border-color: var(--cta-hover);
   box-shadow: 0 12px 26px -8px rgba(226,73,29,0.5);
}
.btn-ghost { background: var(--paper); color: var(--fg); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--paper-2); border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 16px 26px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-on-dark { background: var(--paper); color: var(--ink); }
.btn-on-dark:hover { background: rgba(255,255,255,0.9); }
.btn-ghost-dark { background: transparent; color: var(--paper); border-color: rgba(255,255,255,0.3); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

/* Scheduler's primary action: larger & calm at rest, heartbeat on hover */
.sched-steps .btn-primary { position: relative; }
.sched-steps .btn-primary:not(:disabled) {
  padding: 17px 24px; font-size: 16px; transform-origin: center;
  transition: box-shadow 220ms var(--ease), background 150ms var(--ease);
  animation: schedCtaColor 3.2s var(--ease) infinite;
}
.sched-steps .btn-primary:not(:disabled):hover {
  animation: schedHeartbeat 1.4s var(--ease) infinite;
  background: var(--cta-hover);
  box-shadow: 0 12px 26px -8px rgba(226,73,29,0.5);
}
@keyframes schedCtaColor {
   0%, 100% { background-color: var(--cta); }
   44%, 56% { background-color: var(--cta-hover); }
   50% { background-color: var(--cta-press); }
}
@keyframes schedHeartbeat { 0% { transform: scale(1,1); } 12% { transform: scale(1.015,1.06); } 24% { transform: scale(1,1); } 36% { transform: scale(1.015,1.06); } 52%,100% { transform: scale(1,1); } }

/* Footer CTA "See available times" — same effect as scheduler */
.landing_cta_actions .btn-primary:not(:disabled) { transform-origin: center; animation: schedCtaColor 3.2s var(--ease) infinite; }
.landing_cta_actions .btn-primary:not(:disabled):hover { animation: schedHeartbeat 1.4s var(--ease) infinite; background: var(--cta-hover); box-shadow: 0 12px 26px -8px rgba(226,73,29,0.5); }

@media (prefers-reduced-motion: reduce) {
   #headerCta.btn-outline-cta.is-solid:not(:disabled),
   #headerCta.btn-outline-cta.is-solid:not(:disabled):hover,
  .sched-steps .btn-primary:not(:disabled),
  .sched-steps .btn-primary:not(:disabled):hover,
  .landing_cta_actions .btn-primary:not(:disabled),
  .landing_cta_actions .btn-primary:not(:disabled):hover { animation: none !important; }
}

/* phone link with subtle underline-grow */
.calllink { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: var(--fg); }
.calllink [data-lucide] { width: 17px; height: 17px; color: var(--accent-soft); }
.calllink .u { position: relative; }
.calllink .u::after { content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px; background: var(--accent-soft); transform: scaleX(0); transform-origin: left; transition: transform 220ms var(--ease); }
.calllink:hover .u::after { transform: scaleX(1); }

/* =============================================================
   GLOBAL — Pills & stars
============================================================= */
.pill { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 36px; padding: 0 16px; border-radius: var(--rf); font-size: 14px; font-weight: 600; line-height: 1; border: 1px solid var(--line); background: var(--paper); color: var(--fg); }
.pill [data-lucide], .pill svg { width: 16px; height: 16px; display: block; }
.pill .star { color: inherit; }
.pill-accent { background: var(--paper-2); border-color: var(--line); color: var(--fg-muted); }

.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars [data-lucide], .stars svg { width: 15px; height: 15px; }

/* =============================================================
   GLOBAL — Photo placeholders (brand duotone)
============================================================= */
.ph { position: relative; border-radius: var(--r3); overflow: hidden; background-color: var(--accent-deep); display: grid; place-items: center; color: rgba(255,255,255,0.72); isolation: isolate; }
.ph::before { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(255,255,255,0.16) 1.5px, transparent 1.7px); background-size: 20px 20px; background-position: center; z-index: 0; }
.ph .glyph { position: relative; z-index: 1; display: grid; place-items: center; gap: 10px; text-align: center; }
.ph .glyph [data-lucide] { width: 46px; height: 46px; opacity: 0.5; }
.ph .glyph .cap { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.ph .tag { position: absolute; top: 12px; right: 12px; z-index: 2; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--paper); background: rgba(11,35,48,0.5); border: 1px solid rgba(255,255,255,0.2); padding: 5px 9px; border-radius: var(--rf); backdrop-filter: blur(4px); }
.ph .label { position: absolute; left: 14px; bottom: 14px; z-index: 2; color: var(--paper); }
.ph .label b { display: block; font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; }
.ph .label span { font-size: 12px; color: rgba(255,255,255,0.78); }
.ph-owner { aspect-ratio: 4 / 5; }

/* =============================================================
   GLOBAL — Brand lockup (header + footer)
============================================================= */
.brand { display: flex; align-items: center; gap: 11px; cursor: pointer; }
.brand .mk { width: 38px; height: 38px; border-radius: 10px; background: var(--accent); color: var(--paper); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 17px; box-shadow: var(--shadow-sm); letter-spacing: -0.02em; }
.brand-text { display: flex; flex-direction: column; justify-content: center; }
.brand .nm { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; color: var(--fg); line-height: 1; }
.brand .sub { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-subtle); margin-top: 3px; }

/* =============================================================
   SECTION — Emergency banner
============================================================= */
.landing_emergency { background: var(--ink); color: var(--paper); font-size: 13px; padding: 8px 0; }
.landing_emergency_inner { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.landing_emergency .dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.92); box-shadow: 0 0 0 3px rgba(255,255,255,0.18); }
.landing_emergency a { color: var(--paper); font-weight: 700; }
.landing_emergency a .u { border-bottom: 1px solid rgba(255,255,255,0.5); }

/* =============================================================
   SECTION — Header (sticky)
============================================================= */
.landing_header { position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.landing_header_component { height: 64px; display: flex; align-items: center; gap: 16px; }
.landing_header_spacer { flex: 1; }
.landing_header .phone { font-family: var(--font-display); font-weight: 800; font-size: 17px; }
.landing_header .phone [data-lucide] { width: 16px; height: 16px; }
@media (max-width: 600px) { .landing_header .phone .num { display: none; } .brand .sub { display: none; } }

/* =============================================================
   SECTION — Hero + scheduler
============================================================= */
.section_landing-hero { padding: clamp(34px, 5vw, 68px) 0 clamp(40px, 5vw, 72px); position: relative; }
.section_landing-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1200px 520px at 88% -8%, var(--accent-tint) 0%, transparent 60%),
    linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 70%);
}
.landing_hero_component { display: grid; grid-template-columns: 1fr 0.86fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
@media (max-width: 920px) { .landing_hero_component { grid-template-columns: 1fr; gap: 28px; } }
.landing_hero_copy h1 { font-family: var(--font-display); font-weight: var(--display-weight); font-size: clamp(34px, 3.5vw + 16px, 54px); line-height: 1.02; letter-spacing: -0.035em; margin: 16px 0 0; text-wrap: balance; }
.landing_hero_copy h1 .accent { color: var(--accent-soft); }
.landing_hero_copy .lede { margin-top: 18px; }
.landing_hero_actions { display: flex; flex-wrap: wrap; gap: 14px 36px; align-items: center; margin-top: 26px; }
.landing_hero_pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
@media (max-width: 760px) {
  .landing_hero_actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .landing_hero_actions a[data-book-modal] { background: var(--cta); color: var(--on-cta); padding: 13px 20px; border-radius: var(--radius-button); font-family: var(--font-display); font-weight: 800; box-shadow: var(--shadow-md); }
  .landing_hero_actions a[data-book-modal] [data-lucide] { color: var(--on-cta); }
  .landing_hero_actions a[data-book-modal] .u::after { display: none; }
}

/* Scheduler widget (mounts in hero + modal) */
.sched { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r4); box-shadow: var(--shadow-lg); padding: 22px; display: flex; flex-direction: column; gap: 15px; position: relative; scroll-margin-top: 84px; }
.sched.flash { animation: flash 1.1s var(--ease); }
@keyframes flash { 0%,100%{ box-shadow: var(--shadow-lg);} 18%{ box-shadow: 0 0 0 4px var(--accent-tint), var(--shadow-lg);} }
.sched-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.sched-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-soft); }
.sched-eyebrow [data-lucide] { width: 14px; height: 14px; }
.sched-title { font-family: var(--font-display); font-weight: 800; font-size: 19px; letter-spacing: -0.02em; line-height: 1.22; margin-top: 7px; color: var(--fg); }
.soonest { display: inline-flex; align-items: center; gap: 6px; padding: 6px 10px; border-radius: var(--rf); background: var(--accent-tint); color: var(--accent-soft); font-size: 11px; font-weight: 700; white-space: nowrap; }
.soonest .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-soft); position: relative; }
.soonest .dot::after { content:""; position:absolute; inset:-4px; border-radius:50%; border:1px solid var(--accent-soft); opacity:0; animation: ping 1.8s var(--ease) infinite; }
@keyframes ping { 0%{ transform: scale(0.6); opacity:0.7;} 100%{ transform: scale(1.5); opacity:0;} }
.sched-step-label { font-size: 12px; font-weight: 600; color: var(--fg-muted); }
.days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.day { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 10px 3px; border: 1px solid var(--line); border-radius: var(--r2); background: var(--paper); cursor: pointer; font-family: var(--font-body); transition: box-shadow 140ms var(--ease); }
.day:hover { background: var(--paper-2); border-color: var(--line-strong); }
.day .dn { font-size: 11px; font-weight: 600; color: var(--fg-muted); }
.day .dd { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: -0.02em; color: var(--fg); line-height: 1; }
.day.on { background: var(--accent-tint); border-color: var(--accent-tint2); }
.day.on .dn { color: var(--fg-subtle); }
.day.on .dd { color: var(--accent-soft); }
.slot-lbl { display: flex; justify-content: space-between; align-items: baseline; font-size: 12px; color: var(--fg-muted); }
.slot-lbl .muted { color: var(--fg-subtle); font-size: 11px; }
.slots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.slot { display: flex; align-items: center; justify-content: space-between; padding: 12px 13px; border: 1px solid var(--line); border-radius: var(--r2); background: var(--paper); cursor: pointer; font-family: var(--font-body); text-align: left; transition: box-shadow 140ms var(--ease); }
.slot:hover:not(:disabled) { border-color: var(--accent); background: var(--accent-tint); }
.slot .t { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: -0.01em; color: var(--fg); }
.slot .st { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--accent-soft); }
.slot.on { background: var(--accent-tint); border-color: var(--accent-tint2); }
.slot.on .t, .slot.on .st { color: var(--accent-soft); }
.slot:disabled { background: var(--paper-2); opacity: 0.55; cursor: not-allowed; }
.slot:disabled .t { text-decoration: line-through; color: var(--fg-muted); }
.slot:disabled .st { color: var(--fg-subtle); }
.sched-fine { display: flex; align-items: flex-start; gap: 7px; font-size: 12px; color: var(--fg-muted); line-height: 1.4; }
.sched-fine [data-lucide] { width: 13px; height: 13px; color: var(--accent-soft); margin-top: 2px; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field label { font-size: 12.5px; font-weight: 650; color: var(--fg); }
.field input, .field textarea { font-family: var(--font-body); font-size: 14.5px; padding: 11px 13px; border: 1px solid var(--line-strong); border-radius: var(--r2); width: 100%; color: var(--fg); background: var(--paper); transition: border-color 140ms, box-shadow 140ms; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-tint); }
.field textarea { min-height: 62px; resize: vertical; }
.field .help { font-size: 11.5px; color: var(--fg-muted); line-height: 1.4; }
.sched-back { border: 1px solid var(--line-strong); background: var(--paper); display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: var(--rf); font-size: 12px; font-weight: 600; color: var(--fg-muted); cursor: pointer; font-family: var(--font-body); transition: all 140ms; }
.sched-back:hover { background: var(--paper-2); color: var(--fg); }
.sched-back [data-lucide] { width: 13px; height: 13px; }
.sched-when { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: var(--rf); background: var(--accent-tint); color: var(--accent-soft); font-size: 12px; font-weight: 700; }
.sched-when [data-lucide] { width: 13px; height: 13px; }
.sched-form { display: flex; flex-direction: column; gap: 12px; }
.sched-steps { display: flex; flex-direction: column; gap: 15px; }
.sched-steps.anim { animation: fade 280ms var(--ease); }
@keyframes fade { from { transform: translateY(8px); } to { transform: none; } }
.done { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 13px; padding: 10px 4px; }
.done .check { width: 56px; height: 56px; border-radius: 50%; background: var(--ok-bg); color: var(--ok); display: grid; place-items: center; animation: pop 360ms var(--ease); }
.done .check [data-lucide] { width: 28px; height: 28px; }
@keyframes pop { 0%{ transform: scale(0.5);} 60%{ transform: scale(1.08);} 100%{ transform: scale(1);} }
.done .title { font-family: var(--font-display); font-weight: 800; font-size: 21px; line-height: 1.2; color: var(--fg); }
.receipt { width: 100%; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r2); padding: 15px; display: flex; flex-direction: column; gap: 9px; text-align: left; }
.receipt .r { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; }
.receipt .r span { color: var(--fg-muted); }
.receipt .r b { font-weight: 650; text-align: right; }

/* =============================================================
   SECTION — Trust strip
============================================================= */
.section_landing-trust-strip { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.landing_trust-strip_component { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; padding: clamp(56px, 5vw, 72px) 0; align-items: center; }
.landing_trust-strip_item { display: flex; gap: 16px; align-items: flex-start; }
.landing_trust-strip_item__icon { width: 44px; height: 44px; border-radius: var(--r2); background: var(--accent-tint); color: var(--accent-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.landing_trust-strip_item__icon [data-lucide], .landing_trust-strip_item__icon svg { width: 22px; height: 22px; display: block; }
.landing_trust-strip_item__icon .star { color: var(--accent-soft); }
.landing_trust-strip_item__title { display: block; color: var(--fg); font-family: var(--font-display); font-weight: 700; font-size: 17.5px; letter-spacing: -0.014em; line-height: 1.18; }
.landing_trust-strip_item__text { display: block; color: var(--fg-muted); font-size: 14.5px; line-height: 1.4; margin-top: 2px; min-height: 42px; max-width: 24ch; text-wrap: pretty; }
@media (max-width: 760px) {
   .landing_trust-strip_component { grid-template-columns: 1fr; gap: 24px; padding: 52px 0; }
   .landing_trust-strip_item { align-items: center; }
   .landing_trust-strip_item__title { font-size: 16.5px; }
   .landing_trust-strip_item__text { font-size: 14px; min-height: 0; }
}

/* =============================================================
   SECTION — Services
============================================================= */
.landing_services_component { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 820px) { .landing_services_component { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .landing_services_component { grid-template-columns: 1fr; } }
.landing_services_card { border: 1px solid var(--line); border-radius: var(--r3); padding: 24px; background: var(--paper); box-shadow: var(--shadow-sm); transition: box-shadow 240ms var(--ease), transform 240ms var(--ease), border-color 240ms; position: relative; overflow: hidden; }
.landing_services_card::after { content:""; position:absolute; left:0; top:0; height:3px; width:0; background: var(--accent); transition: width 300ms var(--ease); }
.landing_services_card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--line-strong); }
.landing_services_card:hover::after { width: 100%; }
.landing_services_card__icon { width: 46px; height: 46px; border-radius: var(--r2); background: var(--accent-tint); color: var(--accent); display: grid; place-items: center; margin-bottom: 16px; transition: background 240ms, color 240ms; }
.landing_services_card:hover .landing_services_card__icon { background: var(--accent); color: var(--paper); }
.landing_services_card__icon [data-lucide] { width: 23px; height: 23px; }
.landing_services_card__title { margin-bottom: 7px; }
.landing_services_card__body { font-size: 14px; color: var(--fg-muted); margin: 0; line-height: 1.5; }

/* =============================================================
   SECTION — Recent work (before / after)
============================================================= */
.section_landing-work { position: relative; overflow: hidden; }
.landing_work_tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.work-tab { display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; border-radius: var(--rf); background: var(--paper); border: 1px solid var(--line-strong); font-family: var(--font-body); font-weight: 600; font-size: 13.5px; color: var(--fg-muted); cursor: pointer; transition: box-shadow 150ms var(--ease); }
.work-tab [data-lucide], .work-tab svg { width: 15px; height: 15px; }
.work-tab:hover { border-color: var(--accent); color: var(--accent); }
.work-tab.on { background: var(--accent); border-color: var(--accent); color: var(--paper); }
.landing_work_component { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 880px) { .landing_work_component { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .landing_work_component { grid-template-columns: 1fr; } }
.job { margin: 0; border: 1px solid var(--line); border-radius: var(--r3); overflow: hidden; background: var(--paper); box-shadow: var(--shadow-sm); transition: box-shadow 240ms var(--ease), transform 240ms var(--ease); }
.job:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.job.hide { display: none; }
.job .ph { border-radius: 0; aspect-ratio: 4 / 3; background-color: var(--accent-deep); background-image: radial-gradient(rgba(255,255,255,0.13) 1.5px, transparent 1.7px); background-size: 20px 20px; }
.job .ph::before { content: none; }
.ba { position: relative; aspect-ratio: 4 / 3; overflow: hidden; cursor: ew-resize; touch-action: none; user-select: none; -webkit-user-select: none; }
.ba-pane { position: absolute; inset: 0; display: grid; place-items: center; }
.ba-pane::before { content: none; }
.ba-after { background-color: var(--accent-deep); background-image: radial-gradient(rgba(255,255,255,0.13) 1.5px, transparent 1.7px); background-size: 20px 20px; }
.ba-before { background-color: #5a636e; background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.10) 0 2px, transparent 2px 13px); clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0); }
.ba-glyph { position: relative; color: rgba(255,255,255,0.5); }
.ba-glyph [data-lucide], .ba-glyph svg { width: 40px; height: 40px; }
.ba-lab { position: absolute; top: 12px; z-index: 3; font-family: var(--font-body); font-weight: 700; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper); padding: 4px 9px; border-radius: var(--rf); backdrop-filter: blur(3px); }
.lab-before { left: 12px; background: rgba(20,24,28,0.5); }
.lab-after { right: 12px; background: rgba(11,35,48,0.42); }
.ba-handle { position: absolute; top: 0; bottom: 0; left: var(--pos, 50%); width: 2px; background: var(--paper); z-index: 4; transform: translateX(-1px); display: grid; place-items: center; }
.ba-handle::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 36px; height: 36px; border-radius: 50%; background: var(--paper); box-shadow: var(--shadow-md); z-index: -1; animation: baKnobPulse 2.4s var(--ease) infinite; }
.ba-handle [data-lucide], .ba-handle svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 19px; height: 19px; color: var(--accent); }
.ba-handle:focus-visible { outline: none; }
.ba-handle:focus-visible::after { box-shadow: 0 0 0 3px var(--accent-tint), var(--shadow-md); }
@keyframes baKnobPulse { 0% { box-shadow: var(--shadow-md), 0 0 0 0 rgba(255,255,255,0.5); } 70%, 100% { box-shadow: var(--shadow-md), 0 0 0 13px rgba(255,255,255,0); } }
.ba:hover .ba-handle::after, .ba:focus-within .ba-handle::after { animation: none; }
@media (prefers-reduced-motion: reduce) { .ba-handle::after { animation: none !important; } }
.job figcaption { display: flex; align-items: flex-start; gap: 12px; padding: 16px; text-align: left; }
.job-ic { margin-top: 2px; width: 38px; height: 38px; border-radius: var(--r2); background: var(--accent-tint); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.job-ic [data-lucide], .job-ic svg { width: 19px; height: 19px; }
.job-meta { display: flex; flex-direction: column; }
.job-meta b { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: -0.01em; line-height: 1.25; }
.job-cat { font-size: 12px; font-weight: 600; color: var(--accent); letter-spacing: 0.02em; margin-top: 3px; }
.job-desc { font-size: 13px; color: var(--fg-muted); line-height: 1.5; margin-top: 8px; text-wrap: pretty; }
.landing_work_foot { display: flex; align-items: center; gap: 9px; margin-top: 26px; font-size: 13.5px; color: var(--fg-subtle); }
.landing_work_foot [data-lucide], .landing_work_foot svg { width: 16px; height: 16px; }

/* =============================================================
   Wave section transitions (why / how / faq)
============================================================= */
.sec-wave { position: absolute; left: 0; width: 100%; height: 48px; fill: var(--paper); pointer-events: none; z-index: 0; display: block; }
.sec-wave-top { top: -1px; transform: scaleY(-1); }
.sec-wave-bottom { bottom: -1px; }

/* =============================================================
   SECTION — Why us
============================================================= */
.section_landing-why { position: relative; overflow: hidden; background: var(--paper-2); }
.landing_why_component { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(28px, 4vw, 60px); align-items: center; }
@media (max-width: 880px) { .landing_why_component { grid-template-columns: 1fr; gap: 32px; } }
.landing_why_copy p { color: var(--fg-muted); font-size: 16.5px; line-height: 1.62; margin: 0 0 16px; max-width: 54ch; }
.landing_why_copy p:first-of-type { margin-top: 18px; }
.landing_why_copy p .name { color: var(--fg); font-weight: 700; }
.landing_why_badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.landing_why_photo { position: relative; }
.landing_why_float { position: absolute; left: -34px; bottom: 88px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r3); box-shadow: var(--shadow-md); padding: 14px 16px; display: flex; align-items: center; gap: 12px; max-width: 230px; }
.landing_why_float .n { font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.02em; color: var(--accent); line-height: 1; }
.landing_why_float .l { font-size: 12px; color: var(--fg-muted); line-height: 1.3; }
@media (max-width: 880px) { .landing_why_float { left: 12px; } }
@media (max-width: 460px) { .landing_why_float { position: static; margin-top: 14px; max-width: none; } }

/* =============================================================
   SECTION — How it works
============================================================= */
.section_landing-how { position: relative; overflow: hidden; background: var(--paper-2); }
.landing_how_component { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 12px; }
.landing_how_track { position: absolute; top: 31px; left: 32px; right: calc(33.333% - 49px); height: 2px; background: var(--line-strong); border-radius: 2px; overflow: hidden; }
.landing_how_track::after { content:""; position:absolute; inset:0; width: 0; background: var(--accent); transition: width 1100ms var(--ease); }
.landing_how_component.in .landing_how_track::after { width: 100%; }
@media (max-width: 740px) { .landing_how_component { grid-template-columns: 1fr; gap: 0; } .landing_how_track { display: none; } }
.landing_how_step { position: relative; display: flex; flex-direction: column; gap: 12px; }
.landing_how_step__badge { width: 64px; height: 64px; border-radius: 50%; background: var(--paper); border: 2px solid var(--line-strong); color: var(--accent); display: grid; place-items: center; position: relative; z-index: 1; transition: border-color 320ms var(--ease), transform 320ms var(--ease), background 320ms; }
.landing_how_step__badge [data-lucide] { width: 26px; height: 26px; }
.landing_how_step__badge .num { position: absolute; top: -7px; right: -7px; width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: var(--paper); font-family: var(--font-display); font-weight: 800; font-size: 12px; display: grid; place-items: center; border: 2px solid var(--paper-2); }
.landing_how_component.in .landing_how_step__badge { border-color: var(--accent); }
.landing_how_step h3 { margin-top: 2px; }
.landing_how_step p { font-size: 15px; color: var(--fg-muted); margin: 0; line-height: 1.55; max-width: 34ch; }
@media (max-width: 740px) {
  .landing_how_step { flex-direction: row; align-items: flex-start; gap: 16px; padding-bottom: 28px; }
  .landing_how_step:not(:last-child)::before { content:""; position:absolute; left:31px; top:62px; bottom:-4px; width:2px; background: var(--line-strong); }
  .landing_how_step__badge { flex-shrink: 0; }
  .landing_how_step__body { padding-top: 4px; }
}
.landing_how_punch { margin-top: 40px; background: var(--accent-tint); border: 1px solid var(--accent-tint2); border-radius: var(--r4); padding: clamp(22px, 3vw, 32px); display: flex; align-items: center; gap: 18px; position: relative; overflow: hidden; }
.landing_how_punch .qic { width: 48px; height: 48px; border-radius: var(--r2); background: var(--accent); color: var(--paper); display: grid; place-items: center; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.landing_how_punch p { margin: 0; font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 1.6vw + 10px, 24px); letter-spacing: -0.02em; line-height: 1.3; color: var(--fg); }
.landing_how_punch p .hl { color: var(--accent); }

/* =============================================================
   SECTION — Reviews
============================================================= */
.landing_reviews_component { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(24px, 3vw, 40px); align-items: start; }
@media (max-width: 860px) { .landing_reviews_component { grid-template-columns: 1fr; } }
.landing_reviews_summary { display: block; text-decoration: none; background: var(--ink); color: var(--paper); border-radius: var(--r4); padding: 30px; position: relative; overflow: hidden; box-shadow: var(--shadow-md); transition: background 280ms var(--ease), box-shadow 280ms var(--ease), transform 280ms var(--ease); }
.landing_reviews_summary:hover { background: var(--accent-deep); box-shadow: 0 12px 40px rgba(26,60,140,0.32), 0 2px 8px rgba(26,60,140,0.16); transform: translateY(-2px); }
@media (min-width: 861px) { .landing_reviews_summary { position: sticky; top: 88px; } }
.landing_reviews_summary .big { font-family: var(--font-display); font-weight: 800; font-size: 64px; letter-spacing: -0.03em; line-height: 1; }
.landing_reviews_summary .gstars { display: inline-flex; gap: 2px; color: var(--star); margin-top: 8px; }
.landing_reviews_summary .gstars [data-lucide] { width: 18px; height: 18px; fill: currentColor; }
.landing_reviews_summary .cnt { color: rgba(255,255,255,0.7); font-size: 14px; margin-top: 12px; line-height: 1.5; }
.landing_reviews_summary .gbadge { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; padding: 9px 13px; border-radius: var(--rf); background: rgba(255,255,255,0.08); font-size: 12.5px; font-weight: 600; transition: background 220ms var(--ease), color 220ms var(--ease); cursor: pointer; }
.landing_reviews_summary:hover .gbadge,
.landing_reviews_summary .gbadge:hover { background: rgba(255,255,255,0.18); color: var(--paper); }
.landing_reviews_summary .gbadge .g { font-family: var(--font-display); font-weight: 800; }
.rev-seeall { margin-top: 22px; width: 100%; }
.rev-seeall [data-lucide] { width: 16px; height: 16px; }
.landing_reviews_col { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.rev-list { display: flex; flex-direction: column; gap: 16px; width: 100%; }
.rev-more.hidden { display: none; }
.rev-more.show { animation: revIn 420ms var(--ease) both; }
@keyframes revIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.rev-loadmore { align-self: center; }
.rev-loadmore [data-lucide] { width: 17px; height: 17px; }
@media (prefers-reduced-motion: reduce) { .rev-more.show { animation: none; } }
.rev { border: 1px solid var(--line); border-radius: var(--r3); padding: 22px; background: var(--paper); box-shadow: var(--shadow-sm); transition: box-shadow 240ms var(--ease), transform 240ms; }
.rev:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.rev .top { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.rev .date { font-size: 12px; color: var(--fg-subtle); }
.rev p { font-size: 15.5px; line-height: 1.55; margin: 13px 0 16px; color: var(--fg); }
.rev .by { display: flex; align-items: center; gap: 11px; }
.rev .by .av { width: 38px; height: 38px; border-radius: 50%; background: var(--accent-tint); color: var(--accent-press); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 14px; }
.rev .by b { font-size: 14px; font-weight: 700; }
.rev .by span { font-size: 12.5px; color: var(--fg-muted); display: block; }
.rev .by .src { margin-left: auto; font-size: 11px; color: var(--fg-subtle); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.rev .stars { color: var(--star); }
.rev .stars [data-lucide], .rev .stars svg { fill: currentColor; }
.rev .stars .empty { color: var(--line-strong); fill: var(--line-strong); }

/* =============================================================
   SECTION — FAQ
============================================================= */
.section_landing-faq { position: relative; overflow: hidden; background: var(--paper-2); }
.landing_faq_free { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; padding: 10px 16px; border-radius: var(--rf); background: var(--accent-tint); color: var(--accent-press); font-weight: 700; font-size: 14px; }
.landing_faq_free [data-lucide] { width: 17px; height: 17px; }
.landing_faq_component { max-width: 800px; }
.faq { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 0; font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; color: var(--fg); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; flex-shrink: 0; }
.faq summary .pm [data-lucide] { width: 16px; height: 16px; color: var(--fg-muted); transition: transform 240ms var(--ease); }
.faq[open] summary .pm { background: var(--accent); border-color: var(--accent); }
.faq[open] summary .pm [data-lucide] { transform: rotate(45deg); color: var(--paper); }
.faq .ans { padding: 0 0 22px; color: var(--fg-muted); font-size: 15.5px; line-height: 1.6; max-width: 68ch; animation: fade 280ms var(--ease); }
.faq .ans .ranges { list-style: none; padding: 0; margin: 12px 0; display: flex; flex-direction: column; gap: 9px; }
.faq .ans .ranges li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 15px; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r2); font-size: 14.5px; }
.faq .ans .ranges li b { color: var(--fg); font-family: var(--font-display); font-weight: 700; white-space: nowrap; }
.faq .ans .note { display: flex; gap: 8px; align-items: flex-start; margin-top: 12px; padding: 12px 14px; background: var(--accent-tint); border-radius: var(--r2); font-size: 14px; color: var(--fg); }
.faq .ans .note [data-lucide] { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* =============================================================
   SECTION — Service area
============================================================= */
.landing_area_component { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
@media (max-width: 820px) { .landing_area_component { grid-template-columns: 1fr; } }
.landing_area_heading { margin-top: 14px; }
.landing_area_chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip { display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px; border-radius: var(--rf); background: var(--paper); border: 1px solid var(--line-strong); font-weight: 600; font-size: 14.5px; color: var(--fg); transition: box-shadow 160ms var(--ease), transform 160ms var(--ease); }
.chip [data-lucide] { width: 14px; height: 14px; color: var(--accent); }
.chip:hover { border-color: var(--accent); background: var(--accent-tint); color: var(--accent-press); }
.chip.primary { background: var(--accent); border-color: var(--accent); color: var(--paper); }
.chip.primary [data-lucide] { color: var(--paper); }
.landing_area_note { margin-top: 22px; font-size: 14.5px; color: var(--fg-muted); }
.landing_area_map { aspect-ratio: 4 / 3; }

/* =============================================================
   SECTION — Final CTA band
============================================================= */
.landing_cta_band { background: var(--ink); color: var(--paper); border-radius: var(--r4); padding: clamp(34px, 4vw, 60px); position: relative; overflow: hidden; text-align: center; }
.landing_cta_band .pat { position: absolute; inset: 0; opacity: 0.45; pointer-events: none; z-index: 0; }
.landing_cta_inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.landing_cta_copy { display: flex; flex-direction: column; align-items: center; }
.landing_cta_copy h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 1.6vw + 18px, 40px); letter-spacing: -0.03em; line-height: 1.08; margin: 0 auto; max-width: 22ch; color: var(--paper); text-wrap: balance; }
.landing_cta_copy p { color: rgba(255,255,255,0.72); margin: 14px auto 0; max-width: 48ch; font-size: 17px; line-height: 1.5; }
.landing_cta_actions { display: flex; flex-direction: row; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }
.landing_cta_actions .btn { justify-content: center; }
.landing_cta_actions .calllink { color: var(--paper); justify-content: center; }
.landing_cta_actions .calllink [data-lucide] { color: var(--paper); }
@media (max-width: 600px) { .landing_cta_actions { flex-direction: column; width: 100%; max-width: 330px; } }

/* =============================================================
   SECTION — Footer
============================================================= */
.landing_footer { background: var(--ink); color: rgba(255,255,255,0.66); padding: 48px 0 36px; }
.landing_footer_top { display: flex; flex-wrap: wrap; gap: 24px 40px; justify-content: space-between; align-items: center; }
.landing_footer .brand .nm { color: var(--paper); }
.landing_footer .brand .sub { color: rgba(255,255,255,0.5); }
.landing_footer_meta { font-size: 14px; line-height: 1.7; }
.landing_footer_meta b { color: var(--paper); font-weight: 600; }
.landing_footer_contact { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.landing_footer_phone { font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--paper); display: inline-flex; align-items: center; gap: 9px; }
.landing_footer_phone [data-lucide] { width: 18px; height: 18px; color: var(--accent); }
.landing_footer_rate { display: inline-flex; align-items: center; gap: 7px; color: var(--paper); font-weight: 600; font-size: 14px; }
.landing_footer_rate .stars { color: var(--star); }
.landing_footer_rate .stars [data-lucide] { width: 14px; height: 14px; fill: currentColor; }
.landing_footer_fine { width: 100%; border-top: 1px solid rgba(255,255,255,0.12); margin-top: 30px; padding-top: 22px; font-size: 12.5px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* =============================================================
   GLOBAL — Booking modal
============================================================= */
.modal { position: fixed; inset: 0; z-index: 90; display: none; align-items: flex-start; justify-content: center; padding: 28px 16px; overflow-y: auto; }
.modal.open { display: flex; }
.modal-overlay { position: fixed; inset: 0; background: rgba(11,35,48,0.55); backdrop-filter: blur(3px); opacity: 0; transition: opacity 220ms var(--ease); }
.modal.open .modal-overlay { opacity: 1; }
.modal-card { position: relative; z-index: 1; width: 100%; max-width: 440px; margin: auto; transform: translateY(14px) scale(0.98); opacity: 0; transition: transform 260ms var(--ease), opacity 260ms var(--ease); }
.modal.open .modal-card { transform: none; opacity: 1; }
.modal-card .sched { box-shadow: var(--shadow-lg); }
.modal-x { position: absolute; top: -13px; right: -13px; z-index: 5; width: 36px; height: 36px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--fg-muted); transition: all 150ms var(--ease); }
.modal-x:hover { color: var(--fg); background: var(--paper-2); }
.modal-x [data-lucide], .modal-x svg { width: 18px; height: 18px; }
body.modal-lock { overflow: hidden; }
@media (max-width: 480px) { .modal-x { top: 6px; right: 6px; } }

/* =============================================================
   GLOBAL — Sticky mobile call bar
============================================================= */
.callbar { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60; background: var(--ink); color: var(--paper); border-radius: var(--r3); padding: 11px 12px 11px 15px; display: none; align-items: center; gap: 12px; box-shadow: var(--shadow-lg); }
.callbar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 3px rgba(31,138,91,0.3); flex-shrink: 0; }
.callbar .txt { flex: 1; line-height: 1.25; }
.callbar .txt b { display: block; font-size: 13.5px; }
.callbar .txt span { font-size: 11px; color: rgba(255,255,255,0.6); }
.callbar .cta { background: var(--cta); color: var(--on-cta); padding: 10px 15px; border-radius: var(--r2); font-weight: 700; font-size: 13.5px; display: inline-flex; gap: 7px; align-items: center; }
.callbar .cta [data-lucide] { width: 15px; height: 15px; }
@media (max-width: 720px) { .callbar { display: flex; } body { padding-bottom: 76px; } }

/* =============================================================
   Scroll reveal (transform-only — content never opacity-gated)
============================================================= */
.js [data-reveal] { transform: translateY(20px); transition: transform 640ms var(--ease); }
.js [data-reveal].in { transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal], .landing_how_track::after, .sched-steps, .done .check { transition: none !important; animation: none !important; opacity: 1 !important; transform: none !important; }
  .landing_how_track::after { width: 100% !important; }
}

/* =============================================================
   Narrow phone refinements
============================================================= */
@media (max-width: 440px) {
  .section_landing-hero .landing_hero_copy h1 { font-size: 30px; }
  .sched { padding: 17px; border-radius: var(--r3); }
  .sched-title { font-size: 17px; }
  .day { padding: 9px 2px; }
  .day .dd { font-size: 16px; }
  .slot { padding: 10px 11px; }
  .landing_reviews_summary .big { font-size: 52px; }
}
