/* ==========================================================
   Central Park Wellness — site styles
   Premium retail-health look: white + one confident red,
   pill buttons, hairlines, soft layered shadows, airy type.
   ========================================================== */

:root {
  --red: #c8102e;
  --red-dark: #a50d24;
  --red-tint: #fdf0f2;
  --red-line: #f5cdd4;
  --ink: #101828;
  --gray-700: #344054;
  --gray-500: #667085;
  --gray-100: #f2f4f7;
  --gray-50: #f9fafb;
  --line: #eaecf0;
  --line-strong: #d0d5dd;
  --green: #1c4d97;
  --green-tint: #e9f0fb;
  --radius: 16px;
  --shadow-card: 0 1px 2px rgba(16, 24, 40, 0.04), 0 12px 32px rgba(16, 24, 40, 0.06);
  --shadow-card-hover: 0 2px 4px rgba(16, 24, 40, 0.05), 0 20px 44px rgba(16, 24, 40, 0.10);
  --shadow-photo: 0 2px 4px rgba(16, 24, 40, 0.06), 0 24px 56px rgba(16, 24, 40, 0.12);
  --maxw: 1320px;
  --font-head: "Plus Jakarta Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

:focus-visible { outline: 3px solid rgba(200, 16, 46, 0.35); outline-offset: 2px; border-radius: 4px; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -0.02em; color: var(--ink); }

h2.section-title {
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.section-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 660px;
}

section { padding: 88px 0; }

/* ---------- top utility bar ---------- */
.topbar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}
.topbar-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-msg { color: var(--gray-500); }
.topbar-msg strong { color: var(--ink); font-weight: 600; }
.langs { display: flex; align-items: center; gap: 2px; flex: none; }
.langs a {
  text-decoration: none;
  color: var(--gray-500);
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 999px;
  transition: color 0.12s ease, background 0.12s ease;
}
.langs a:hover { color: var(--ink); background: var(--gray-100); }
.langs a.on { color: var(--red); font-weight: 700; background: var(--red-tint); }

/* ---------- header ---------- */
header.site { background: #fff; }
.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
}
.brand svg { flex: none; }
.brand-logo { height: 56px; width: auto; display: block; }
.foot-logo { height: 44px; width: auto; display: block; }
.brand .name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.15;
  white-space: nowrap;
  letter-spacing: -0.02em;
}
.brand .name em { font-style: normal; color: var(--red); }
.brand .tag { font-size: 0.79rem; color: var(--gray-500); letter-spacing: 0.01em; }

.head-right { display: flex; align-items: center; gap: 26px; flex: none; }
.head-phone {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--ink);
}
.head-phone svg { color: var(--red); flex: none; }
.head-phone b {
  font-family: var(--font-head);
  font-size: 1.14rem;
  font-weight: 800;
  display: block;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.head-phone small { font-size: 0.76rem; color: var(--gray-500); display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.99rem;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.btn svg { flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary, .btn-red, .btn-dark {
  background: var(--red);
  color: #fff;
  box-shadow: 0 2px 6px rgba(200, 16, 46, 0.25), 0 8px 20px rgba(200, 16, 46, 0.18);
}
.btn-primary:hover, .btn-red:hover, .btn-dark:hover { background: var(--red-dark); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-small { padding: 10px 20px; font-size: 0.92rem; }

/* ---------- main nav (clean white, sticky) ---------- */
nav.mainbar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 60;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mainbar-in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mainbar-links { display: flex; align-items: center; gap: 4px; flex-wrap: nowrap; }
.mainbar-links a {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 15px 15px 13px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.12s ease, border-color 0.12s ease;
}
.mainbar-links a:hover { color: var(--red); border-bottom-color: var(--red); }
.mainbar-call {
  margin-left: auto;
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
  padding: 14px 4px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mainbar-call:hover { color: var(--red-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  padding: 14px 4px;
  cursor: pointer;
  align-items: center;
  gap: 9px;
}

/* ---------- hero ---------- */
.hero { padding: 84px 0 92px; overflow: hidden; background: #fff; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 20px 0 20px;
}
.hero h1 .accent { color: var(--red); }
.hero .sub {
  font-size: 1.17rem;
  color: var(--gray-500);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero .sub strong { color: var(--ink); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 26px; }
.hero-ctas .btn { padding: 15px 30px; font-size: 1.03rem; }

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-tint);
  color: var(--green);
  font-weight: 600;
  font-size: 0.87rem;
  padding: 7px 15px;
  border-radius: 999px;
}
.status-chip.closed { background: var(--gray-100); color: var(--gray-700); }
.status-chip .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: currentColor;
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 50% { opacity: 0.4; } }

.hero-note { font-size: 0.92rem; color: var(--gray-500); }
.hero-note a { color: var(--red); font-weight: 600; text-decoration: none; }
.hero-note a:hover { text-decoration: underline; }

/* hero photo card */
.photo-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-photo);
  background: linear-gradient(150deg, #1d2637, #101828);
  aspect-ratio: 4 / 4.6;
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card .ph-fallback { display: none; }
.photo-card.noimg .ph-fallback {
  display: flex;
  position: absolute; inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #d3dae4;
  text-align: center;
  padding: 30px;
  font-family: var(--font-head);
  font-weight: 600;
}
.photo-card .badge {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(16, 24, 40, 0.18);
  display: flex; align-items: center; gap: 8px;
  color: var(--ink);
}
.photo-card .badge svg { color: var(--red); }

/* ---------- trust bar ---------- */
.trust {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 40px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.trust-item svg { flex: none; color: var(--red); margin-top: 3px; }
.trust-item b {
  display: block;
  font-family: var(--font-head);
  font-size: 1rem;
  margin-bottom: 3px;
  color: var(--ink);
}
.trust-item span { font-size: 0.86rem; color: var(--gray-500); line-height: 1.55; }

/* ---------- seasonal banner ---------- */
.season { background: #fff; padding: 36px 0 0; }
.season-in {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  background: linear-gradient(120deg, var(--red) 0%, #9e0c22 100%);
  color: #fff;
  border-radius: 20px;
  padding: 26px 32px;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.2), 0 16px 40px rgba(200, 16, 46, 0.18);
}
.season svg { flex: none; opacity: 0.95; }
.season b { font-family: var(--font-head); font-size: 1.16rem; display: block; letter-spacing: -0.01em; }
.season p { font-size: 0.94rem; opacity: 0.92; }
.season .btn { background: #fff; color: var(--red); margin-left: auto; box-shadow: none; padding: 11px 24px; }
.season .btn:hover { background: #fff; }

/* ---------- services ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 44px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--red-tint);
  color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card h3 { font-size: 1.22rem; font-weight: 800; margin-bottom: 10px; }
.card p { font-size: 0.95rem; color: var(--gray-500); margin-bottom: 16px; }
.card ul { list-style: none; margin-top: auto; }
.card ul li {
  font-size: 0.9rem;
  padding: 8px 0 8px 27px;
  position: relative;
  border-top: 1px solid var(--gray-100);
  color: var(--gray-700);
}
.card ul li::before {
  content: "";
  position: absolute; left: 2px; top: 14px;
  width: 15px; height: 15px;
  background: var(--green-tint);
  border-radius: 50%;
}
.card ul li::after {
  content: "";
  position: absolute; left: 6px; top: 18.5px;
  width: 6px; height: 3.5px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}
.services-note {
  margin-top: 30px;
  font-size: 0.97rem;
  color: var(--gray-700);
  background: var(--gray-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 24px;
}
.services-note a { color: var(--red); font-weight: 700; text-decoration: none; }
.services-note a:hover { text-decoration: underline; }

/* ---------- how it works ---------- */
.how { background: var(--gray-50); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 44px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
}
.step .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: var(--red);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 12px rgba(200, 16, 46, 0.3);
}
.step h3 { font-size: 1.13rem; margin-bottom: 9px; font-weight: 800; }
.step p { font-size: 0.94rem; color: var(--gray-500); }
.step p strong { color: var(--ink); }

/* ---------- pricing promise ---------- */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.price-box {
  background: var(--ink);
  color: #e9edf3;
  border-radius: 20px;
  padding: 44px 40px;
  box-shadow: 0 4px 10px rgba(16, 24, 40, 0.2), 0 24px 56px rgba(16, 24, 40, 0.24);
}
.price-box h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: -0.02em;
}
.price-box p { color: #98a2b3; font-size: 0.97rem; margin-bottom: 22px; }
.price-box .phone-line {
  display: flex; align-items: center; gap: 13px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px 20px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 16px;
  transition: background 0.15s ease;
}
.price-box .phone-line:hover { background: rgba(255, 255, 255, 0.1); }
.price-box .phone-line svg { color: #fda29b; }
.price-box .phone-line span { font-size: 0.79rem; font-weight: 600; color: #98a2b3; display: block; }
.checks { list-style: none; margin-top: 28px; }
.checks li {
  padding: 12px 0 12px 38px;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
  font-size: 1rem;
  color: var(--gray-700);
}
.checks li:last-child { border-bottom: none; }
.checks li b { font-weight: 700; color: var(--ink); }
.checks li::before {
  content: "";
  position: absolute; left: 0; top: 15px;
  width: 23px; height: 23px;
  background: var(--green-tint);
  border-radius: 50%;
}
.checks li::after {
  content: "";
  position: absolute; left: 6.5px; top: 21.5px;
  width: 9px; height: 5px;
  border-left: 2.5px solid var(--green);
  border-bottom: 2.5px solid var(--green);
  transform: rotate(-45deg);
}
.honesty {
  margin-top: 24px;
  font-size: 0.92rem;
  color: var(--gray-500);
  border-left: 3px solid var(--red);
  padding: 4px 0 4px 18px;
}

/* ---------- about / provider ---------- */
.about { background: var(--gray-50); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: center;
}
.about .photo-card { aspect-ratio: 4 / 4.4; }
.about h2 { margin-bottom: 6px; }
.cred {
  display: inline-block;
  background: var(--red-tint);
  border: 1px solid var(--red-line);
  color: var(--red-dark);
  font-weight: 700;
  font-size: 0.82rem;
  border-radius: 999px;
  padding: 6px 16px;
  margin: 10px 0 20px;
}
.about p.bio { color: var(--gray-700); margin-bottom: 14px; }
.about p.bio strong { color: var(--ink); }
.mini-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.mini-photos .photo-card { aspect-ratio: 4 / 2.9; border-radius: 14px; }
.mini-photos .cap {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(16, 24, 40, 0.8);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 999px;
}

/* ---------- location ---------- */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  margin-top: 44px;
  align-items: stretch;
}
.loc-info {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.loc-row { display: flex; gap: 15px; padding: 13px 0; border-bottom: 1px solid var(--gray-100); }
.loc-row:last-of-type { border-bottom: none; }
.loc-row svg { flex: none; color: var(--red); margin-top: 3px; }
.loc-row b { display: block; font-family: var(--font-head); font-size: 0.99rem; color: var(--ink); }
.loc-row span, .loc-row a.plain { font-size: 0.93rem; color: var(--gray-500); text-decoration: none; }
.loc-row a.plain:hover { color: var(--red); }

table.hours { border-collapse: collapse; width: 100%; font-size: 0.93rem; }
table.hours td { padding: 4px 0; color: var(--gray-500); }
table.hours td:last-child { text-align: right; font-weight: 600; color: var(--ink); }
table.hours tr.today td { color: var(--red); font-weight: 700; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--line);
  min-height: 400px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; }

/* ---------- visit form (charcoal band) ---------- */
.visit { background: var(--ink); color: #e9edf3; }
.visit .section-kicker { color: #fda29b; }
.visit h2 { color: #fff; }
.visit .section-lead { color: #98a2b3; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  margin-top: 38px;
}
.visit-side p { color: #98a2b3; font-size: 0.97rem; margin-bottom: 20px; }
.visit-side .phone-line {
  display: flex; align-items: center; gap: 13px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 16px 20px;
  text-decoration: none;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 16px;
  transition: background 0.15s ease;
}
.visit-side .phone-line:hover { background: rgba(255, 255, 255, 0.1); }
.visit-side .phone-line svg { color: #fda29b; }
.visit-side .phone-line span { font-size: 0.78rem; font-weight: 600; color: #98a2b3; display: block; }
.emergency {
  font-size: 0.85rem;
  color: #fecdca;
  background: rgba(200, 16, 46, 0.14);
  border: 1px solid rgba(253, 162, 155, 0.35);
  border-radius: 12px;
  padding: 13px 17px;
}

form.request {
  background: #fff;
  color: var(--ink);
  border-radius: 20px;
  padding: 38px 36px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.32);
}
form.request .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form.request label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin: 16px 0 6px;
  color: var(--gray-700);
}
form.request input, form.request select, form.request textarea {
  width: 100%;
  font: inherit;
  font-size: 0.97rem;
  padding: 12px 15px;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}
form.request input:focus, form.request select:focus, form.request textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.12);
}
form.request textarea { resize: vertical; min-height: 100px; }
form.request button { width: 100%; margin-top: 24px; font-size: 1.03rem; padding: 15px 26px; }
form.request .fine { font-size: 0.8rem; color: var(--gray-500); margin-top: 14px; text-align: center; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 40px auto 0; }
details.faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.15s ease;
}
details.faq:hover { box-shadow: var(--shadow-card-hover); }
details.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 20px 56px 20px 26px;
  position: relative;
  color: var(--ink);
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "";
  position: absolute;
  right: 26px; top: 26px;
  width: 9px; height: 9px;
  border-right: 2.5px solid var(--red);
  border-bottom: 2.5px solid var(--red);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
details.faq[open] summary::after { transform: rotate(-135deg); top: 30px; }
details.faq .a { padding: 0 26px 22px; color: var(--gray-500); font-size: 0.96rem; }
details.faq .a strong { color: var(--ink); }
details.faq .a a { color: var(--red); font-weight: 600; }

/* ---------- footer ---------- */
footer.site {
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--gray-500);
  padding: 64px 0 32px;
  font-size: 0.92rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
}
footer.site h4 {
  color: var(--gray-500);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
footer.site a { color: var(--gray-700); text-decoration: none; font-weight: 500; }
footer.site a:hover { color: var(--red); }
footer.site li { list-style: none; padding: 5px 0; }
.foot-brand {
  display: flex; align-items: center; gap: 11px;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.foot-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.79rem;
  color: #98a2b3;
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .mainbar-links a { padding: 15px 11px 13px; font-size: 0.9rem; }
}

@media (max-width: 980px) {
  .hero-grid, .price-grid, .about-grid, .visit-grid, .loc-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 40px; }
  .hero { padding: 56px 0 64px; }
  .photo-card { aspect-ratio: 4 / 3; }
  .about .photo-card { max-width: 500px; aspect-ratio: 4 / 3.4; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cards, .steps { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  section { padding: 60px 0; }
  .head-phone { display: none; }

  .nav-toggle { display: inline-flex; }
  .mainbar-in { flex-wrap: wrap; }
  .mainbar-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-bottom: 10px;
  }
  .mainbar-links.open { display: flex; }
  .mainbar-links a { border-top: 1px solid var(--gray-100); border-bottom: none; padding: 13px 6px; }
  .mainbar-links a:hover { border-bottom: none; background: var(--gray-50); }
  .season .btn { margin-left: 0; }
  .season-in { padding: 22px 24px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .trust-grid { grid-template-columns: 1fr; gap: 20px; }
  .topbar-in { justify-content: center; text-align: center; row-gap: 4px; }
  .header-in { padding: 14px 18px; gap: 12px; }
  .brand .name { font-size: 1.05rem; white-space: normal; }
  .brand svg { width: 32px; height: 32px; }
  .brand-logo { height: 42px; }
  .foot-logo { height: 36px; }
  .btn-dark.head-cta { padding: 11px 18px; font-size: 0.9rem; }
  form.request .row { grid-template-columns: 1fr; }
  form.request { padding: 28px 22px; }
  .price-box { padding: 32px 26px; }
  .hero { padding: 44px 0 56px; }
  .hero-ctas .btn { width: 100%; }
  .mini-photos { grid-template-columns: 1fr; }
}

/* ==========================================================
   Refinement pass — accessibility, calmer secondary accent,
   mobile call bar, form safety, type-size bumps
   ========================================================== */
:root { --teal: #1e4e8c; }

/* skip link + screen-reader-only helper */
.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 0; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* calmer secondary accent — keep red for actions only */
.trust-item svg { color: var(--teal); }
.loc-row svg { color: var(--teal); }
details.faq summary::after { border-right-color: var(--teal); border-bottom-color: var(--teal); }
.photo-card .badge svg { color: var(--teal); }

/* readable minimum sizes */
.topbar { font-size: 0.87rem; }
.head-phone small { font-size: 0.8rem; }
form.request .fine { font-size: 0.84rem; }
.foot-bottom { font-size: 0.83rem; }
footer.site { font-size: 0.94rem; }
.langs a { padding: 6px 12px; }

/* form safety elements */
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--gray-700);
  font-weight: 500;
}
.consent input { width: auto; margin-top: 4px; accent-color: var(--red); }
.form-note {
  font-size: 0.84rem;
  color: var(--gray-500);
  background: var(--gray-50);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 15px;
  margin-top: 16px;
}
form.request .fine a { color: var(--red); font-weight: 600; }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .status-chip .dot { animation: none; }
  .btn, .card, details.faq { transition: none; }
}

/* mobile sticky call bar */
.mobile-bar { display: none; }
@media (max-width: 980px) {
  .mobile-bar {
    display: flex;
    gap: 10px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 80;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 24px rgba(16, 24, 40, 0.08);
  }
  .mobile-bar .btn { flex: 1; padding: 13px 10px; font-size: 0.97rem; }
  body { padding-bottom: 76px; }
  footer.site { padding-bottom: 90px; }
}

/* consent row — beat form.request specificity */
form.request label.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-700);
}
form.request label.consent input {
  width: auto;
  margin: 3px 0 0;
  accent-color: var(--red);
}

/* small storefront thumbnail beside the address */
.loc-thumb {
  width: 96px;
  height: 96px;
  border-radius: 12px;
  object-fit: cover;
  flex: none;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft, 0 2px 8px rgba(16,24,40,.06));
}
@media (max-width: 560px) {
  .loc-thumb { width: 80px; height: 80px; }
}

/* ==========================================================
   Depth & motion pass — ambient gradients, layered hero,
   scroll reveals, gradient accents. All progressive.
   ========================================================== */

/* ambient warmth instead of flat white */
.hero {
  background:
    radial-gradient(900px 520px at 88% -12%, rgba(200, 16, 46, 0.07), transparent 62%),
    radial-gradient(720px 460px at -12% 112%, rgba(32, 112, 107, 0.07), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #fbf8f4 100%);
}
.trust { background: linear-gradient(180deg, #fbf8f4 0%, #ffffff 100%); border-top: none; }
.how { background: linear-gradient(180deg, #ffffff 0%, #f3f7fc 100%); border-top: none; }
.about { background: linear-gradient(180deg, #fdfaf6 0%, #f6f1ea 100%); border-top: none; }
.visit {
  background:
    radial-gradient(720px 420px at 92% -6%, rgba(200, 16, 46, 0.16), transparent 55%),
    radial-gradient(560px 380px at -8% 106%, rgba(58, 109, 182, 0.12), transparent 55%),
    var(--ink);
}

/* layered hero art */
.hero-art { position: relative; }
.hero-art .photo-card { position: relative; z-index: 1; }
.hero-art::before {
  content: "";
  position: absolute;
  top: -22px; right: -22px;
  width: 72%; height: 72%;
  background: linear-gradient(135deg, #fde3e8 0%, #fff1ec 100%);
  border-radius: 28px;
  transform: rotate(4deg);
  z-index: 0;
}
.hero-art::after {
  content: "";
  position: absolute;
  left: -30px; bottom: -26px;
  width: 150px; height: 118px;
  background-image: radial-gradient(rgba(200, 16, 46, 0.4) 1.6px, transparent 1.6px);
  background-size: 15px 15px;
  opacity: 0.45;
  z-index: 0;
}
.float-chip {
  position: absolute;
  top: 20px; right: -18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.86rem;
  padding: 11px 17px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.12), 0 18px 40px rgba(16, 24, 40, 0.12);
  animation: floaty 4.5s ease-in-out infinite alternate;
}
.float-chip svg { color: var(--green); flex: none; }
@keyframes floaty { from { transform: translateY(0); } to { transform: translateY(-10px); } }

/* gradient headline accent with hand-drawn underline */
.hero h1 .accent {
  background: linear-gradient(100deg, var(--red) 10%, #f04e30 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 1%; right: 3%; bottom: -0.06em;
  height: 0.18em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M3 9 Q 60 -2 117 7' fill='none' stroke='%23c8102e' stroke-width='4' stroke-linecap='round' opacity='0.35'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

/* richer buttons + card life */
.btn-primary, .btn-red, .btn-dark {
  background: linear-gradient(135deg, #d81834 0%, #a50d24 100%);
}
.btn-primary:hover, .btn-red:hover, .btn-dark:hover {
  background: linear-gradient(135deg, #e11d39 0%, #b11029 100%);
  box-shadow: 0 4px 10px rgba(200, 16, 46, 0.3), 0 14px 30px rgba(200, 16, 46, 0.25);
}
.card .icon { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.card:hover .icon {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 22px rgba(200, 16, 46, 0.18);
}
.step .num { background: linear-gradient(135deg, #d81834, #a50d24); }
.photo-card { isolation: isolate; }
.photo-card img { transition: transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1); }
.photo-card:hover img { transform: scale(1.035); }

/* nav shadow once scrolling */
nav.mainbar.scrolled { box-shadow: 0 6px 22px rgba(16, 24, 40, 0.09); }

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease, box-shadow 0.2s ease;
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .float-chip { right: 8px; }
  .hero-art::before { right: -10px; }
  .hero-art::after { left: -12px; }
}
@media (prefers-reduced-motion: reduce) {
  .float-chip { animation: none; }
  .photo-card img { transition: none; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ==========================================================
   BOLD pass — immersive red hero, icon nav with scrollspy,
   beautiful mobile menu panel, bright price-quote card
   ========================================================== */

/* ---- immersive hero ---- */
.hero {
  background:
    radial-gradient(1000px 620px at 88% -18%, rgba(255, 255, 255, 0.16), transparent 55%),
    radial-gradient(820px 540px at -12% 118%, rgba(0, 0, 0, 0.28), transparent 60%),
    linear-gradient(135deg, #c8102e 0%, #8f0b20 100%);
  padding: 92px 0 100px;
}
.hero h1 { color: #fff; font-size: clamp(2.5rem, 5.4vw, 4rem); }
.hero h1 .accent {
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  color: #ffcdd5;
}
.hero h1 .accent::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M3 9 Q 60 -2 117 7' fill='none' stroke='%23ffffff' stroke-width='4' stroke-linecap='round' opacity='0.55'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.hero .sub { color: rgba(255, 255, 255, 0.88); }
.hero .sub strong { color: #fff; }
.hero .status-chip,
.hero .status-chip.closed {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.hero .btn-red {
  background: #fff;
  color: var(--red);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22), 0 20px 46px rgba(0, 0, 0, 0.22);
}
.hero .btn-red:hover { background: #fff5f6; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.26), 0 26px 54px rgba(0, 0, 0, 0.26); }
.hero .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.hero .btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.hero-note { color: rgba(255, 255, 255, 0.82); }
.hero-note a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.hero-art::before {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-art::after {
  background-image: radial-gradient(rgba(255, 255, 255, 0.55) 1.6px, transparent 1.6px);
  opacity: 0.55;
}
.hero .photo-card {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 40px 90px rgba(0, 0, 0, 0.35);
  border: 4px solid rgba(255, 255, 255, 0.92);
  border-radius: 24px;
}
.trust { background: linear-gradient(180deg, #ffffff 0%, #fbf8f4 100%); }

/* ---- desktop nav: icon links, pill hovers, gradient accent line ---- */
nav.mainbar { position: sticky; }
nav.mainbar::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c8102e, #f04e30 55%, #c8102e);
}
.mainbar-in { padding: 7px 24px; }
.mainbar-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: none;
  border-radius: 999px;
  padding: 9px 15px;
  font-weight: 600;
  transition: background 0.15s ease, color 0.15s ease;
}
.mainbar-links a:hover { background: var(--red-tint); color: var(--red); border-bottom: none; }
.mainbar-links a.active { background: var(--red-tint); color: var(--red); }
.nav-ic { display: inline-flex; align-items: center; justify-content: center; color: var(--red); }
.nav-ic svg { width: 16px; height: 16px; }

/* ---- beautiful mobile menu panel ---- */
@media (max-width: 980px) {
  nav.mainbar { position: sticky; }
  .mainbar-in { position: relative; }
  .mainbar-links {
    position: absolute;
    left: 10px; right: 10px;
    width: auto;
    top: calc(100% + 8px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.14), 0 34px 80px rgba(16, 24, 40, 0.22);
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 2px;
    z-index: 90;
  }
  .mainbar-links.open { display: flex; animation: menuIn 0.22s ease; }
  .mainbar-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    border-radius: 14px;
    border-top: none !important;
    padding: 12px 12px;
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--ink);
  }
  .mainbar-links a:hover, .mainbar-links a:active { background: var(--gray-50); }
  .nav-ic {
    width: 38px; height: 38px;
    border-radius: 12px;
    background: var(--red-tint);
    flex: none;
  }
  .nav-ic svg { width: 18px; height: 18px; }
}
@keyframes menuIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- bright price-quote card (was too dark) ---- */
.price-box {
  background: linear-gradient(165deg, #ffffff 0%, #fdeef1 78%, #fce4e9 100%);
  color: var(--gray-700);
  border: 1px solid var(--red-line);
  box-shadow: 0 10px 24px rgba(200, 16, 46, 0.10), 0 30px 70px rgba(16, 24, 40, 0.12);
  position: relative;
  overflow: hidden;
}
.price-box::before {
  content: "";
  position: absolute;
  top: -46px; right: -46px;
  width: 170px; height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(200, 16, 46, 0.14), rgba(200, 16, 46, 0.03) 70%);
}
.price-box h3 { color: var(--ink); }
.price-box p { color: var(--gray-500); }
.price-box .phone-line {
  background: linear-gradient(135deg, #d81834 0%, #a50d24 100%);
  border: none;
  color: #fff;
  box-shadow: 0 6px 14px rgba(200, 16, 46, 0.3), 0 18px 40px rgba(200, 16, 46, 0.28);
}
.price-box .phone-line:hover { background: linear-gradient(135deg, #e11d39 0%, #b11029 100%); }
.price-box .phone-line svg { color: #ffd9de; }
.price-box .phone-line span { color: rgba(255, 255, 255, 0.88); }

@media (prefers-reduced-motion: reduce) {
  .mainbar-links.open { animation: none; }
}

/* ==========================================================
   Hero v3 — warm light canvas, bold red art panel behind
   the photo (dialed back from the full red band)
   ========================================================== */
.hero {
  background:
    radial-gradient(900px 540px at 88% -14%, rgba(200, 16, 46, 0.09), transparent 58%),
    radial-gradient(700px 460px at -10% 112%, rgba(32, 112, 107, 0.07), transparent 60%),
    linear-gradient(165deg, #fffdfb 0%, #fdf1ec 55%, #faf5ef 100%);
}
.hero h1 { color: var(--ink); }
.hero h1 .accent {
  background: linear-gradient(100deg, var(--red) 10%, #f04e30 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .accent::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M3 9 Q 60 -2 117 7' fill='none' stroke='%23c8102e' stroke-width='4' stroke-linecap='round' opacity='0.35'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.hero .sub { color: var(--gray-500); }
.hero .sub strong { color: var(--ink); }
.hero .status-chip {
  background: var(--green-tint);
  color: var(--green);
  border: none;
  backdrop-filter: none;
}
.hero .status-chip.closed { background: #fff; color: var(--gray-700); border: 1px solid var(--line); }
.hero .btn-red {
  background: linear-gradient(135deg, #d81834 0%, #a50d24 100%);
  color: #fff;
  box-shadow: 0 2px 6px rgba(200, 16, 46, 0.25), 0 8px 20px rgba(200, 16, 46, 0.18);
}
.hero .btn-red:hover {
  background: linear-gradient(135deg, #e11d39 0%, #b11029 100%);
  box-shadow: 0 4px 10px rgba(200, 16, 46, 0.3), 0 14px 30px rgba(200, 16, 46, 0.25);
}
.hero .btn-ghost { background: #fff; color: var(--ink); border-color: var(--line-strong); }
.hero .btn-ghost:hover { border-color: var(--ink); background: #fff; }
.hero-note { color: var(--gray-500); }
.hero-note a { color: var(--red); text-decoration: none; }
.hero-note a:hover { text-decoration: underline; }
.hero-art::before {
  background: linear-gradient(135deg, #d81834 0%, #8f0b20 100%);
  border: none;
  top: -26px; right: -26px;
  width: 80%; height: 84%;
  border-radius: 30px;
  transform: rotate(5deg);
  box-shadow: 0 24px 60px rgba(200, 16, 46, 0.28);
}
.hero-art::after {
  background-image: radial-gradient(rgba(200, 16, 46, 0.4) 1.6px, transparent 1.6px);
  opacity: 0.5;
}
.hero .photo-card {
  border: 5px solid #fff;
  box-shadow: 0 10px 26px rgba(16, 24, 40, 0.16), 0 34px 80px rgba(16, 24, 40, 0.22);
}
.trust { background: linear-gradient(180deg, #faf5ef 0%, #ffffff 100%); }

/* ==========================================================
   Visit section — lightened (was charcoal)
   ========================================================== */
.visit {
  background:
    radial-gradient(820px 480px at 92% -8%, rgba(200, 16, 46, 0.08), transparent 55%),
    radial-gradient(620px 420px at -8% 108%, rgba(32, 112, 107, 0.06), transparent 55%),
    linear-gradient(165deg, #fdf4f0 0%, #faf6f1 100%);
  color: var(--ink);
}
.visit .section-kicker { color: var(--red); }
.visit h2 { color: var(--ink); }
.visit .section-lead { color: var(--gray-500); }
.visit-side p { color: var(--gray-500); }
.visit-side .phone-line {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-card);
}
.visit-side .phone-line:hover { background: #fff; box-shadow: var(--shadow-card-hover); }
.visit-side .phone-line svg { color: var(--red); }
.visit-side .phone-line span { color: var(--gray-500); }
.emergency {
  color: #8f1d1d;
  background: #fdeceb;
  border: 1px dashed #efb3b8;
}
form.request {
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.10), 0 34px 80px rgba(16, 24, 40, 0.14);
}

/* ==========================================================
   Service card thumbnails — photo header with icon chip;
   graceful branded fallback while images are pending
   ========================================================== */
.card { overflow: hidden; }
.card-media {
  position: relative;
  margin: -34px -30px 22px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background:
    radial-gradient(320px 200px at 80% 0%, rgba(200, 16, 46, 0.10), transparent 60%),
    linear-gradient(135deg, #fdeef1 0%, #faf5ef 100%);
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1); }
.card:hover .card-media img { transform: scale(1.05); }
.card-media.noimg { aspect-ratio: 5 / 2; }
.card-media.noimg img { display: none; }
.card-ic {
  position: absolute;
  left: 14px; bottom: 14px;
  width: 46px; height: 46px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(16, 24, 40, 0.18);
}
.card-ic svg { width: 21px; height: 21px; }
@media (prefers-reduced-motion: reduce) {
  .card-media img { transition: none; }
}

/* hide the topbar message on phones — language row stays */
@media (max-width: 700px) {
  .topbar-msg { display: none; }
  .topbar-in { justify-content: center; padding: 7px 16px; }
}

/* in-page form success card + inline error */
.form-success {
  background: #fff;
  border-radius: 20px;
  padding: 52px 40px;
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.10), 0 34px 80px rgba(16, 24, 40, 0.14);
  border: 1px solid var(--line);
  text-align: center;
  color: var(--ink);
}
.form-success .fs-ic {
  width: 74px; height: 74px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  animation: pop 0.45s cubic-bezier(0.2, 1.4, 0.4, 1);
}
.form-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.form-success p {
  color: var(--gray-500);
  max-width: 400px;
  margin: 0 auto 24px;
}
@keyframes pop {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.form-error {
  margin-top: 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #b42318;
  background: #fdeceb;
  border: 1px solid #f0b6ba;
  border-radius: 10px;
  padding: 11px 15px;
}
@media (prefers-reduced-motion: reduce) {
  .form-success .fs-ic { animation: none; }
}

/* ==========================================================
   Reviews section — authentic quotes with avatars
   ========================================================== */
.reviews { background: #fff; }
.rev-sub { color: var(--gray-500); font-size: 1.02rem; font-weight: 500; margin: 0; }
.rev-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  grid-template-rows: auto auto;
  gap: 22px;
  margin-top: 36px;
}
.rev-quote {
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff 24%, #fdf0ee 100%);
  border: 1px solid #f6dcd9;
  border-radius: 22px;
  padding: 42px 42px 40px;
  box-shadow: 0 2px 4px rgba(200, 16, 46, 0.04), 0 18px 40px rgba(200, 16, 46, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  margin: 0;
}
.rev-mark {
  position: absolute;
  top: -34px;
  right: 14px;
  font-family: var(--font-head);
  font-size: 200px;
  line-height: 1;
  font-weight: 800;
  color: rgba(200, 16, 46, 0.07);
  pointer-events: none;
  user-select: none;
}
.rev-head { display: flex; align-items: center; gap: 13px; }
.rev-ava {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  background: var(--ava-bg, #eef2f6);
  color: var(--ava-ink, #475467);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.75), 0 3px 8px rgba(16, 24, 40, 0.10);
}
.rev-ava-check { background: linear-gradient(135deg, #d81834, #8f0b20); }
.rev-stars { display: flex; gap: 4px; }
.rev-quote blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0;
}
.rev-quote figcaption { color: var(--gray-500); font-size: 0.95rem; font-weight: 600; }
.rev-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.rev-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.rev-card .rev-stars svg { width: 15px; height: 15px; }
.rev-card blockquote { font-size: 0.98rem; line-height: 1.65; color: var(--gray-700); margin: 0; }
.rev-who { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.rev-who strong { font-size: 0.95rem; letter-spacing: 0.01em; color: var(--ink); }
.rev-who span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-500);
}
.rev-note { font-size: 0.75rem; font-style: italic; color: #98a2b3; margin: -4px 0 0; }
@media (max-width: 980px) {
  .rev-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 16px; }
  .rev-quote { grid-row: auto; padding: 32px 26px; }
  .rev-mark { font-size: 150px; top: -24px; right: 6px; }
}

/* ==========================================================
   Hero v4 — full-bleed slider with diagonal slab
   ========================================================== */
.heroslide { position: relative; overflow: hidden; background: #2a0710; padding: 0; }
.hs-track { display: flex; transition: transform 0.65s cubic-bezier(0.77, 0, 0.18, 1); }
.hs-cell {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  min-height: clamp(580px, 84vh, 860px);
  display: flex;
  align-items: stretch;
  visibility: hidden;
  transition: visibility 0s 0.7s;
}
.hs-cell[aria-hidden="false"] { visibility: visible; transition-delay: 0s; }
.hs-media, .hs-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hs-media img { object-fit: cover; }
.hs-slab {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.hs-inner { position: relative; z-index: 3; display: flex; align-items: center; width: 100%; }
.hs-caption { max-width: 640px; padding: 96px 0; color: #fff; }
.hs-caption .status-chip,
.hs-caption .status-chip.closed {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(5px);
}
.hs-title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(2.3rem, 4.9vw, 4.2rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 18px 0 20px;
}
.hs-title strong { font-weight: 800; display: block; }
.hs-lede {
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.94);
  max-width: 32em;
  margin: 0 0 30px;
}
.hs-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  padding: 14px 18px 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.btn-hero .bh-arr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, background 0.25s ease;
}
.btn-hero:hover { background: #fff; color: #a50d24; transform: translateY(-2px); border-color: #fff; }
.btn-hero:hover .bh-arr { background: rgba(165, 13, 36, 0.12); transform: translateX(3px); }
.btn-hero.solid { background: #fff; color: #a50d24; border-color: #fff; }
.btn-hero.solid .bh-arr { background: rgba(165, 13, 36, 0.12); }
.btn-hero.solid:hover { background: var(--ink); color: #fff; }
.btn-hero.solid:hover .bh-arr { background: rgba(255, 255, 255, 0.18); }
.hs-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
  display: flex;
  gap: 10px;
  z-index: 5;
}
.hs-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}
.hs-dot.on { background: #fff; transform: scale(1.25); }
.hs-dot:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.hs-quick {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 6;
  width: 170px;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.hq {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 17px 16px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.25;
  text-decoration: none;
  transition: filter 0.2s ease, gap 0.2s ease;
}
.hq svg { flex: none; }
.hq-1 { background: #1e4e8c; }
.hq-2 { background: #193f74; }
.hq-3 { background: #14335f; }
.hq:hover { filter: brightness(1.14); gap: 14px; }
@media (max-width: 1100px) {
  .hs-quick { display: none; }
}
@media (max-width: 860px) {
  /* Phone layout: full photo on top (zoomed out), text on solid red below */
  .hs-cell {
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    background: linear-gradient(170deg, #7c0a1d 0%, #a50d24 100%);
  }
  .hs-slab { display: none; }
  .hs-media { position: relative; inset: auto; width: 100%; height: 62vw; max-height: 330px; }
  .hs-inner { flex: 1; align-items: flex-start; }
  .hs-caption { padding: 20px 0 88px; max-width: 100%; }
  .hs-title { font-size: clamp(1.65rem, 6.8vw, 2.3rem); margin-top: 12px; }
  .hs-lede { font-size: 1rem; margin-bottom: 20px; }
  .btn-hero { font-size: 0.95rem; padding: 12px 14px 12px 18px; }
  .hs-actions .btn-hero:not(.solid):not(:only-child) { display: none; }
  .hs-dots { bottom: 16px; }
  .hs-cell:nth-child(1) .hs-media img { object-position: 50% 45% !important; }
  .hs-cell:nth-child(2) .hs-media img { object-position: 58% 40% !important; }
  .hs-cell:nth-child(3) .hs-media img { object-position: 55% 30% !important; }
}
@media (prefers-reduced-motion: reduce) {
  .hs-track { transition: none; }
  .hs-cell { transition: none; }
}

/* ==========================================================
   Editorial split bands (prices / about)
   ========================================================== */
section.split-band { padding: 0; }
.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
  background: #fff;
}
.split-band .sb-media { position: relative; min-height: 560px; }
.split-band .sb-media picture,
.split-band .sb-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.band-flip .sb-media { order: 2; }
.sb-copy {
  padding: clamp(56px, 7vw, 108px) clamp(28px, 6vw, 100px);
  max-width: 780px;
  justify-self: start;
  align-self: center;
}
.band-flip .sb-copy { justify-self: end; }
.sb-title { font-family: var(--font-head); line-height: 1.14; margin-bottom: 20px; }
.sb-title span {
  display: block;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1.55rem, 2.7vw, 2.5rem);
  color: var(--ink);
}
.sb-title strong {
  display: block;
  font-weight: 800;
  font-size: clamp(1.85rem, 3.3vw, 3rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 2px;
}
.sb-copy .checks { margin-top: 22px; }
.sb-copy .honesty { margin-top: 18px; }
.btn-band {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  padding: 15px 18px 15px 24px;
  border-radius: 10px;
  text-decoration: none;
  margin-top: 26px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.btn-band .bb-arr {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease;
}
.btn-band:hover { background: var(--ink); transform: translateY(-2px); }
.btn-band:hover .bb-arr { transform: translateX(3px); }
.sb-note { margin-top: 14px; font-size: 0.85rem; color: var(--gray-500); }
@media (max-width: 920px) {
  .split-band { grid-template-columns: 1fr; }
  .split-band .sb-media { min-height: 300px; }
  .split-band .sb-media, .band-flip .sb-media { order: -1; }
  .sb-copy { padding: 38px 24px 54px; max-width: none; justify-self: stretch; }
}

/* ==========================================================
   Feature band — solid red, circle-clipped photo (about)
   ========================================================== */
section.band-feature { padding: 0; background: #7c0a1d; border: 0; }
.bf-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; }
.bf-media { position: relative; min-height: 600px; height: 100%; clip-path: circle(87% at 4% 50%); }
.bf-media picture,
.bf-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
  display: block;
}
.bf-copy { padding: clamp(60px, 7vw, 110px) clamp(28px, 5.5vw, 96px); color: #fff; max-width: 760px; }
.bf-title {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 20px;
}
.bf-title strong { display: block; font-weight: 800; }
.cred-light,
.band-feature .cred {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
}
.band-feature p.bio { color: rgba(255, 255, 255, 0.93); }
.band-feature p.bio strong { color: #fff; }
.band-feature .btn-hero { margin-top: 24px; }
@media (max-width: 920px) {
  .bf-grid { grid-template-columns: 1fr; }
  .bf-media { min-height: 380px; clip-path: circle(150% at 50% -75%); }
  .bf-media img { object-position: 50% 48%; }
  .bf-copy { padding: 40px 24px 56px; max-width: none; }
}

/* ==========================================================
   CTA strip — teal transition band
   ========================================================== */
section.cta-strip { padding: 0; background: #1e4e8c; }
.strip-in {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 34px;
  padding: 26px 24px;
}
.cta-strip p {
  margin: 0;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  text-align: center;
}
.cta-strip p strong { font-weight: 800; }
.cta-strip .btn-hero { flex: none; padding: 12px 15px 12px 20px; font-size: 0.98rem; }

/* FAQ section — soft teal wash so it separates from the footer */
section#faq {
  background:
    radial-gradient(1100px 420px at 85% -10%, rgba(30, 78, 140, 0.10), transparent 60%),
    linear-gradient(180deg, #edf3fa 0%, #e4edf8 100%);
  border-top: 1px solid #d8e3f2;
  border-bottom: 1px solid #d8e3f2;
}
section#faq .section-kicker { color: #193f74; }
details.faq { border: 1px solid #d5e2f3; }
details.faq[open] { border-color: #9db9e0; }

/* Visit section — balanced left column */
.phone-line small { display: block; font-weight: 500; color: var(--gray-500); font-size: 0.82rem; margin-top: 3px; }
.next-steps {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  margin-top: 16px;
  box-shadow: var(--shadow-card);
}
.next-steps b { font-family: var(--font-head); font-size: 0.95rem; color: var(--ink); }
.next-steps ol { list-style: none; margin: 10px 0 0; padding: 0; counter-reset: ns; }
.next-steps li {
  counter-increment: ns;
  position: relative;
  padding: 7px 0 7px 38px;
  color: var(--gray-700);
  font-size: 0.93rem;
  line-height: 1.5;
}
.next-steps li::before {
  content: counter(ns);
  position: absolute;
  left: 0;
  top: 7px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fdf0f2;
  color: var(--red);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
}

