@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Manrope:wght@600;700;800&display=swap");

:root {
  --navy: #102a32;
  --teal: #176d73;
  --cream: #f7f1e8;
  --paper: #fffaf3;
  --white: #ffffff;
  --ink: #102026;
  --muted: #5f7174;
  --gold: #d8a23a;
  --cta: #c85d3d;
  --cta-dark: #a94a30;
  --line: rgba(16, 32, 38, 0.12);
  --shadow: 0 18px 45px rgba(16, 42, 50, 0.12);
  --radius: 8px;
  --radius-lg: 18px;
  --max: 1180px;
  --nav-height: 72px;
  --font: "Inter", "Aptos", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --display: "Manrope", "Inter", "Aptos Display", "Segoe UI", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: var(--display);
}

*, *::before, *::after { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body { max-width: 100%; margin: 0; overflow-x: hidden; font-family: var(--font); color: var(--ink); background: var(--cream); line-height: 1.6; overflow-wrap: anywhere; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 800; line-height: 1.06; letter-spacing: 0; }
h3, h4 { font-weight: 700; }
ul { margin: 0; padding: 0; list-style: none; }
.container { width: min(100% - 32px, var(--max)); margin: 0 auto; }
.section { padding: 72px 0; }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--white { background: var(--white); }
.section--dark { background: var(--navy); color: var(--white); }
.eyebrow { display: block; margin-bottom: 14px; color: var(--cta); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.section--dark .eyebrow { color: var(--gold); }
.section-title { max-width: 760px; margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.4rem); }
.section-intro { max-width: 690px; color: var(--muted); font-size: 1.07rem; line-height: 1.75; }
.section--dark .section-intro { color: rgba(255, 255, 255, 0.72); }
.text-center { text-align: center; }
.text-center .section-title, .text-center .section-intro { margin-left: auto; margin-right: auto; }
.nav { position: sticky; top: 0; z-index: 50; min-height: var(--nav-height); background: rgba(247, 241, 232, 0.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.nav.scrolled { box-shadow: 0 6px 20px rgba(16, 42, 50, 0.08); }
.nav__inner { min-height: var(--nav-height); display: flex; align-items: center; justify-content: space-between; gap: 16px; width: min(100% - 28px, var(--max)); margin: 0 auto; }
.nav__logo { display: flex; flex: 0 1 auto; flex-direction: column; gap: 1px; min-width: 0; max-width: min(260px, calc(100vw - 96px)); color: var(--navy); font-weight: 900; line-height: 1.05; overflow-wrap: normal; }
.nav__logo span { color: var(--teal); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.nav__links { display: none; align-items: center; gap: 18px; }
.nav__links a, .nav__mobile a { color: var(--navy); font-size: 0.9rem; font-weight: 750; }
.nav__links a:hover, .nav__links a.active, .nav__mobile a:hover, .nav__mobile a.active { color: var(--cta); }
.nav__cta { display: none; }
.nav__hamburger { display: inline-flex; width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); cursor: pointer; }
.nav__hamburger span { width: 20px; height: 2px; background: var(--navy); transition: transform 0.2s ease, opacity 0.2s ease; }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; z-index: 40; flex-direction: column; gap: 14px; padding: 20px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
.nav__mobile.open { display: flex; }
@media (min-width: 1120px) { .nav__links, .nav__cta { display: flex; } .nav__hamburger { display: none; } }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; max-width: 100%; padding: 0.82rem 1.25rem; border: 2px solid transparent; border-radius: var(--radius); font-weight: 850; line-height: 1.1; text-align: center; white-space: normal; cursor: pointer; transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease; }
.btn:hover { transform: translateY(-1px); }
.btn--primary { color: var(--white); background: var(--cta); border-color: var(--cta); box-shadow: 0 14px 28px rgba(200, 93, 61, 0.24); }
.btn--primary:hover { background: var(--cta-dark); border-color: var(--cta-dark); }
.btn--secondary { color: var(--navy); background: var(--white); border-color: var(--line); }
.btn--teal { color: var(--white); background: var(--teal); border-color: var(--teal); }
.btn--ghost-light { color: var(--white); border-color: rgba(255, 255, 255, 0.55); }
.btn-row { display: flex; flex-wrap: wrap; max-width: 100%; gap: 12px; align-items: center; }
.hero { position: relative; min-height: calc(100vh - var(--nav-height)); display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--navy); }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16, 42, 50, 0.94) 0%, rgba(16, 42, 50, 0.82) 44%, rgba(16, 42, 50, 0.26) 100%), url("../assets/img/hero-recovery-path.webp") center / cover no-repeat; }
.hero__inner { position: relative; z-index: 1; width: min(100% - 32px, var(--max)); margin: 0 auto; padding: 88px 0; }
.hero__content { max-width: 760px; }
.hero h1 { margin-bottom: 22px; font-size: clamp(2.7rem, 6.8vw, 5.7rem); }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero__sub { max-width: 650px; margin-bottom: 28px; color: rgba(255, 255, 255, 0.78); font-size: clamp(1.05rem, 2vw, 1.28rem); }
.hero__trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.pill, .hero__trust span { display: inline-flex; align-items: center; min-height: 34px; padding: 0.35rem 0.75rem; border: 1px solid rgba(255, 255, 255, 0.22); border-radius: 999px; color: rgba(255, 255, 255, 0.86); background: rgba(255, 255, 255, 0.08); font-size: 0.84rem; font-weight: 750; }
.page-hero { padding: 88px 0 72px; color: var(--white); background: linear-gradient(135deg, rgba(16, 42, 50, 0.98), rgba(23, 109, 115, 0.88)), url("../assets/img/hero-recovery-path.webp") center / cover no-repeat; }
.page-hero__inner { width: min(100% - 32px, var(--max)); margin: 0 auto; }
.page-hero h1 { max-width: 850px; margin-bottom: 18px; font-size: clamp(2.3rem, 5vw, 4.6rem); }
.page-hero p { max-width: 680px; color: rgba(255, 255, 255, 0.76); font-size: 1.12rem; }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.card { min-height: 100%; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 10px 28px rgba(16, 42, 50, 0.07); }
.card--accent { border-top: 5px solid var(--cta); }
.card--teal { border-top: 5px solid var(--teal); }
.card--gold { border-top: 5px solid var(--gold); }
.card h2, .card h3 { margin-bottom: 12px; color: var(--navy); }
.card p, .card li { color: var(--muted); }
.card ul { display: grid; gap: 8px; margin-top: 16px; }
.card li { position: relative; padding-left: 18px; }
.card li::before { content: ""; position: absolute; left: 0; top: 0.72em; width: 7px; height: 7px; border-radius: 50%; background: var(--cta); }
.service-label { display: inline-flex; margin-bottom: 16px; padding: 0.3rem 0.75rem; border-radius: 999px; color: var(--teal); background: rgba(23, 109, 115, 0.1); font-size: 0.76rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.quote-panel { padding: clamp(32px, 5vw, 56px); border-radius: var(--radius-lg); color: var(--white); background: var(--navy); box-shadow: var(--shadow); }
.quote-panel blockquote { margin: 0; font-family: var(--display); font-size: clamp(1.6rem, 3.6vw, 3rem); font-weight: 700; line-height: 1.18; letter-spacing: 0; }
.quote-panel p { margin-top: 18px; color: rgba(255, 255, 255, 0.68); }
.split { display: grid; gap: 34px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.05fr 0.95fr; } }
.feature-list { display: grid; gap: 14px; margin-top: 22px; }
.feature { display: flex; gap: 14px; align-items: flex-start; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255, 255, 255, 0.7); }
.feature strong { display: block; color: var(--navy); }
.feature span { width: 28px; height: 28px; flex: 0 0 28px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--white); background: var(--teal); font-size: 0.82rem; font-weight: 900; }
.locations-band { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .locations-band { grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)); } }
.location-tile { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 10px 28px rgba(16, 42, 50, 0.06); }
.location-tile strong { display: block; margin-bottom: 6px; color: var(--navy); }
.location-tile span { display: block; color: var(--muted); font-size: 0.92rem; }
.notice { padding: 22px; border-left: 5px solid var(--teal); border-radius: 0 var(--radius) var(--radius) 0; background: rgba(23, 109, 115, 0.08); color: var(--muted); }
.steps { counter-reset: step; display: grid; gap: 14px; }
.step { counter-increment: step; position: relative; padding: 22px 22px 22px 72px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
.step::before { content: counter(step); position: absolute; left: 22px; top: 22px; width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--white); background: var(--cta); font-weight: 900; }
.step h3 { margin-bottom: 6px; }
.blog-list { display: grid; gap: 18px; }
.blog-card { display: grid; gap: 12px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); }
.blog-card time, .blog-card .tag { color: var(--cta); font-size: 0.78rem; font-weight: 850; letter-spacing: 0.08em; text-transform: uppercase; }
.form-wrap { padding: clamp(24px, 5vw, 40px); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); }
.form-grid { display: grid; gap: 16px; }
@media (min-width: 720px) { .form-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
label { display: grid; gap: 7px; color: var(--navy); font-size: 0.88rem; font-weight: 800; }
input, select, textarea { width: 100%; border: 2px solid rgba(16, 32, 38, 0.14); border-radius: var(--radius); padding: 0.88rem 0.95rem; color: var(--ink); background: var(--paper); font: inherit; }
textarea { min-height: 148px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--teal); outline: 0; background: var(--white); }
.footer { background: var(--navy); color: rgba(255, 255, 255, 0.68); }
.footer__grid { display: grid; gap: 30px; padding: 48px 0; }
@media (min-width: 820px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer h2, .footer h3, .footer strong { color: var(--white); }
.footer a { color: rgba(255, 255, 255, 0.74); }
.footer a:hover { color: var(--gold); }
.footer__nav { display: grid; gap: 8px; }
.footer__bottom { padding: 18px 0; border-top: 1px solid rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.45); font-size: 0.84rem; }
.crisis-bar { padding: 14px 0; background: rgba(200, 93, 61, 0.18); color: rgba(255, 255, 255, 0.82); font-size: 0.9rem; }
.crisis-bar a { color: var(--gold); font-weight: 900; }
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; }

/* ============================================
   PROFESSIONAL VISUAL REFRESH
   ============================================ */
:root {
  --navy: #132224;
  --teal: #2f746f;
  --cream: #eee7da;
  --paper: #f8f7f2;
  --white: #ffffff;
  --ink: #111b1d;
  --muted: #617071;
  --gold: #bd9149;
  --cta: #a8614d;
  --cta-dark: #8d4d3d;
  --line: rgba(17, 27, 29, 0.1);
  --shadow: 0 20px 55px rgba(19, 34, 36, 0.12);
}

body {
  background:
    radial-gradient(circle at top left, rgba(145, 167, 155, 0.22), transparent 34rem),
    linear-gradient(180deg, #f8f7f2, var(--paper));
  color: var(--ink);
  line-height: 1.65;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
}

.section {
  padding: clamp(64px, 8vw, 104px) 0;
}

.section--cream {
  background: var(--paper);
}

.section--paper {
  background: linear-gradient(180deg, #fbfaf5, var(--paper));
}

.section--white {
  background: #fffdf8;
}

.section--dark {
  background:
    radial-gradient(circle at 86% 12%, rgba(189, 145, 73, 0.16), transparent 26rem),
    linear-gradient(135deg, #132224, #173f3d);
}

.section--dark h1,
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.eyebrow {
  color: var(--cta);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
}

.section--dark .eyebrow {
  color: #d7b56f;
}

.section-title {
  max-width: 790px;
  font-size: clamp(2.05rem, 4.2vw, 3.55rem);
  text-wrap: balance;
}

.section-intro {
  color: var(--muted);
  line-height: 1.8;
}

.nav {
  background: rgba(255, 253, 248, 0.9);
  border-bottom-color: rgba(17, 27, 29, 0.08);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav.scrolled {
  box-shadow: 0 10px 30px rgba(19, 34, 36, 0.08);
}

.nav__logo {
  color: var(--navy);
}

.nav__logo span {
  color: var(--teal);
}

.nav__links a,
.nav__mobile a {
  color: rgba(17, 27, 29, 0.78);
  font-weight: 720;
}

.nav__links a:hover,
.nav__links a.active,
.nav__mobile a:hover,
.nav__mobile a.active {
  color: var(--cta);
}

.nav__hamburger,
.nav__mobile {
  background: #fffdf8;
}

.btn {
  border-width: 1px;
  font-weight: 820;
}

.btn--primary {
  background: linear-gradient(180deg, var(--cta), var(--cta-dark));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 30px rgba(168, 97, 77, 0.22);
}

.btn--primary:hover {
  box-shadow: 0 20px 38px rgba(168, 97, 77, 0.29);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(19, 34, 36, 0.07);
}

.btn--teal {
  background: linear-gradient(180deg, var(--teal), #173f3d);
  box-shadow: 0 16px 30px rgba(47, 116, 111, 0.2);
}

.btn--ghost-light {
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  background: #132224;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(15, 31, 33, 0.96) 0%, rgba(23, 63, 61, 0.86) 46%, rgba(23, 63, 61, 0.18) 100%),
    linear-gradient(180deg, rgba(17, 27, 29, 0.14), rgba(17, 27, 29, 0.36)),
    url("../assets/img/hero-recovery-path.webp") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 18%;
  background: linear-gradient(180deg, transparent, rgba(15, 31, 33, 0.45));
}

.hero__inner {
  padding: clamp(84px, 11vw, 132px) 0;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.85rem, 6.9vw, 5.85rem);
  text-wrap: balance;
}

.hero h1 em {
  color: #dfc178;
}

.hero__sub {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

.pill,
.hero__trust span {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(15, 31, 33, 0.98), rgba(23, 63, 61, 0.9)),
    url("../assets/img/hero-recovery-path.webp") center / cover no-repeat;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -14%;
  bottom: -42%;
  width: 48%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(189, 145, 73, 0.1);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--white);
  text-wrap: balance;
}

.card,
.location-tile,
.blog-card,
.step,
.form-wrap {
  border-color: rgba(17, 27, 29, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 253, 248, 0.96));
  box-shadow: 0 8px 24px rgba(19, 34, 36, 0.07);
}

.card,
.blog-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover,
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(17, 27, 29, 0.14);
}

.card--accent {
  border-top-color: var(--cta);
}

.card--teal {
  border-top-color: var(--teal);
}

.card--gold {
  border-top-color: var(--gold);
}

.card h2,
.card h3,
.feature strong,
.location-tile strong,
label {
  color: var(--navy);
}

.card p,
.card li,
.location-tile span,
.notice {
  color: var(--muted);
}

.card li::before,
.step::before {
  background: var(--cta);
}

.service-label {
  border: 1px solid rgba(47, 116, 111, 0.16);
  color: #173f3d;
  background: rgba(47, 116, 111, 0.08);
}

.quote-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at top right, rgba(189, 145, 73, 0.16), transparent 18rem),
    linear-gradient(135deg, #132224, #173f3d);
  box-shadow: var(--shadow);
}

.quote-panel blockquote {
  color: var(--white);
}

.feature {
  border-color: rgba(17, 27, 29, 0.09);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 6px 18px rgba(19, 34, 36, 0.045);
}

.feature span {
  background: linear-gradient(180deg, var(--teal), #173f3d);
}

.notice {
  border: 1px solid rgba(47, 116, 111, 0.14);
  border-left: 5px solid var(--teal);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: rgba(47, 116, 111, 0.075);
  box-shadow: 0 8px 24px rgba(19, 34, 36, 0.07);
}

input,
select,
textarea {
  border-width: 1px;
  border-color: rgba(17, 27, 29, 0.14);
  background: rgba(248, 247, 242, 0.82);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(47, 116, 111, 0.7);
  box-shadow: 0 0 0 4px rgba(47, 116, 111, 0.1);
}

.footer {
  background:
    radial-gradient(circle at top left, rgba(189, 145, 73, 0.12), transparent 24rem),
    linear-gradient(135deg, #132224, #0d1719);
}

.footer a:hover,
.crisis-bar a {
  color: #d7b56f;
}

.crisis-bar {
  background: rgba(168, 97, 77, 0.18);
}

/* ============================================
   V3 DISTINCT PREMIUM AESTHETIC
   ============================================ */
:root {
  --navy: #172321;
  --teal: #5f776d;
  --cream: #ebe3d4;
  --paper: #f6f0e6;
  --white: #fffdfa;
  --ink: #172321;
  --muted: #66716d;
  --gold: #b88b4a;
  --cta: #9b5b47;
  --cta-dark: #7c4436;
  --line: rgba(23, 35, 33, 0.12);
  --shadow: 0 24px 70px rgba(23, 35, 33, 0.14);
  --radius: 7px;
  --radius-lg: 14px;
}

body {
  background:
    linear-gradient(90deg, rgba(23, 35, 33, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fbf8f1 0%, #f0e8da 48%, #fbf8f1 100%);
  background-size: 72px 72px, auto;
}

.nav {
  background: rgba(251, 248, 241, 0.86);
}

.nav__inner {
  width: min(100% - 40px, 1240px);
}

.nav__logo {
  font-family: var(--display);
  font-size: clamp(1rem, 2.8vw, 1.22rem);
  font-weight: 800;
}

.nav__logo span {
  margin-top: 3px;
  color: #6e837a;
  font-family: var(--font);
  font-size: 0.66rem;
  white-space: nowrap;
}

.nav__links {
  gap: 22px;
}

.nav__links a {
  font-size: 0.84rem;
  letter-spacing: 0.01em;
}

.btn {
  min-height: 48px;
  padding-inline: 1.35rem;
  border-radius: 999px;
}

.btn--primary {
  background: #9b5b47;
  box-shadow: 0 18px 38px rgba(155, 91, 71, 0.24);
}

.btn--primary:hover {
  background: #7c4436;
}

.btn--secondary {
  background: rgba(255, 253, 250, 0.74);
}

.btn--teal {
  background: #445f57;
}

.hero {
  min-height: calc(100svh - var(--nav-height));
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(17, 27, 29, 0.94) 0%, rgba(23, 35, 33, 0.84) 42%, rgba(23, 35, 33, 0.16) 100%),
    linear-gradient(180deg, rgba(17, 27, 29, 0.08), rgba(17, 27, 29, 0.44)),
    url("../assets/img/hero-recovery-path.webp") center / cover no-repeat;
}

.hero__content {
  max-width: 840px;
  padding: clamp(20px, 3vw, 34px) 0;
}

.hero .eyebrow {
  color: #d7b56f;
}

.hero h1 {
  font-size: clamp(3.1rem, 7.2vw, 6.25rem);
  line-height: 0.98;
}

.hero h1 em {
  color: #d7b56f;
}

.hero__sub {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
}

.hero__trust span {
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.1);
  backdrop-filter: blur(8px);
}

.page-hero {
  padding-top: clamp(92px, 10vw, 136px);
  background:
    linear-gradient(135deg, rgba(17, 27, 29, 0.97), rgba(68, 95, 87, 0.88)),
    url("../assets/img/hero-recovery-path.webp") center / cover no-repeat;
}

.page-hero h1 {
  max-width: 960px;
  line-height: 1;
}

.section-title {
  line-height: 1.03;
}

.section-intro {
  font-size: 1.1rem;
}

.grid-3,
.grid-4 {
  gap: 26px;
}

.card,
.location-tile,
.blog-card,
.step,
.form-wrap {
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 253, 250, 0.94), rgba(250, 246, 238, 0.98));
  box-shadow: 0 18px 42px rgba(23, 35, 33, 0.08);
}

.card {
  padding: clamp(28px, 3.5vw, 40px);
}

.card::after,
.location-tile::after,
.blog-card::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 20px;
  background: rgba(155, 91, 71, 0.36);
}

.card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 72px rgba(23, 35, 33, 0.16);
}

.card--accent,
.card--teal,
.card--gold {
  border-top: 0;
}

.card--accent {
  box-shadow: inset 0 4px 0 rgba(155, 91, 71, 0.72), 0 18px 42px rgba(23, 35, 33, 0.08);
}

.card--teal {
  box-shadow: inset 0 4px 0 rgba(95, 119, 109, 0.72), 0 18px 42px rgba(23, 35, 33, 0.08);
}

.card--gold {
  box-shadow: inset 0 4px 0 rgba(184, 139, 74, 0.72), 0 18px 42px rgba(23, 35, 33, 0.08);
}

.service-label {
  border-color: rgba(95, 119, 109, 0.22);
  color: #445f57;
  background: rgba(95, 119, 109, 0.08);
}

.quote-panel {
  background:
    radial-gradient(circle at top right, rgba(215, 181, 111, 0.18), transparent 18rem),
    linear-gradient(135deg, #172321, #344d46);
}

.feature,
.notice {
  background: rgba(255, 253, 250, 0.7);
}

.feature span {
  background: #445f57;
}

.location-tile {
  min-height: 156px;
  min-width: 0;
}

.form-wrap {
  background: rgba(255, 253, 250, 0.92);
}

input,
select,
textarea {
  background: rgba(246, 240, 230, 0.72);
}

.footer {
  background:
    radial-gradient(circle at top left, rgba(215, 181, 111, 0.12), transparent 26rem),
    linear-gradient(135deg, #172321, #0b1211);
}

.article-layout {
  display: grid;
  gap: 34px;
  align-items: start;
}

.article-body,
.related-card,
.resource-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 250, 0.94);
  box-shadow: 0 18px 42px rgba(23, 35, 33, 0.08);
}

.article-body {
  padding: clamp(28px, 4vw, 46px);
}

.article-body > * + * {
  margin-top: 18px;
}

.article-body h2 {
  color: var(--navy);
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
}

.article-body p,
.article-body li {
  color: var(--muted);
  line-height: 1.78;
}

.article-body ul {
  display: grid;
  gap: 10px;
  padding-left: 1.15rem;
}

.article-lead {
  color: var(--navy) !important;
  font-size: 1.16rem;
  font-weight: 650;
}

.related-card,
.resource-card {
  padding: 24px;
}

.related-card h2,
.resource-card h2,
.resource-card h3 {
  margin-bottom: 14px;
  color: var(--navy);
}

.link-list {
  display: grid;
  gap: 10px;
}

.link-list a,
.text-link {
  color: #445f57;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.link-list a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(23, 35, 33, 0.1);
}

.resource-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}

a.location-tile,
a.blog-card,
a.card {
  color: inherit;
  text-decoration: none;
}

.location-tile .tile-link,
.blog-card .tile-link {
  display: inline-block;
  margin-top: 12px;
  color: #445f57;
  font-weight: 850;
}

.location-tile .tile-link {
  max-width: 100%;
  line-height: 1.35;
}

.mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-nav a {
  padding: 0.62rem 0.86rem;
  border: 1px solid rgba(23, 35, 33, 0.13);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 253, 250, 0.78);
  font-size: 0.86rem;
  font-weight: 850;
  text-decoration: none;
}

@media (min-width: 860px) {
  .article-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .resource-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ============================================
   SW COMPONENTS: hero, consult band, WhatsApp float, guide articles
   (tokens mapped from sw-* placeholders to site variables)
   ============================================ */
.sw-hero {
  background:
    radial-gradient(circle at 88% 10%, rgba(47, 116, 111, 0.10), transparent 30rem),
    radial-gradient(circle at 4% 92%, rgba(189, 145, 73, 0.09), transparent 26rem),
    var(--cream);
  color: var(--ink);
  padding: clamp(3.5rem, 8vw, 6.5rem) 1.5rem;
  border-bottom: 1px solid var(--line);
}
.sw-hero__inner { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.78fr); gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.sw-hero__eyebrow { font-family: var(--font); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cta); margin: 0 0 1.1rem; }
.sw-hero__title { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 5.2vw, 4.2rem); line-height: 1.06; letter-spacing: 0; margin: 0 0 1.4rem; }
.sw-hero__title em { font-style: italic; color: var(--cta); }
.sw-hero__sub { font-family: var(--font); font-size: clamp(1.02rem, 1.6vw, 1.18rem); line-height: 1.72; color: var(--muted); max-width: 33rem; margin: 0 0 2rem; }
.sw-hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.sw-btn { font-family: var(--font); font-weight: 750; font-size: 1rem; min-height: 48px; padding: 0.9rem 1.9rem; border-radius: 999px; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease; }
.sw-btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.sw-btn--primary { background: var(--cta); color: #fff; box-shadow: 0 10px 24px rgba(168, 97, 77, 0.22); }
.sw-btn--primary:hover { background: var(--cta-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(168, 97, 77, 0.28); }
.sw-btn--ghost { color: var(--ink); border: 2px solid rgba(17, 27, 29, 0.3); background: rgba(255, 255, 255, 0.45); }
.sw-btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); transform: translateY(-2px); }
.sw-hero__note { font-family: var(--font); font-size: 0.86rem; color: var(--muted); margin-top: 1rem; }
.sw-hero__places { font-family: var(--font); font-style: normal; font-weight: 650; font-size: 1.05rem; color: var(--teal); border-top: 1px solid rgba(28, 27, 24, 0.14); padding-top: 1.1rem; margin-top: 2rem; }
.sw-hero__media { aspect-ratio: 4 / 3; max-height: 430px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.sw-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
@media (max-width: 860px) {
  .sw-hero { padding: 2.25rem 1.25rem 3rem; }
  .sw-hero__inner { grid-template-columns: 1fr; gap: 1.9rem; }
  .sw-hero__media { order: 2; aspect-ratio: 4 / 3; max-height: 300px; }
  .sw-hero__title { font-size: clamp(2.1rem, 8.5vw, 2.7rem); }
  .sw-hero__actions .sw-btn { flex: 1 1 100%; }
}

.sw-whatsapp-float { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 900; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 14px rgba(28, 27, 24, 0.25); transition: transform 0.15s ease, box-shadow 0.15s ease; }
.sw-whatsapp-float:hover { transform: scale(1.06); box-shadow: 0 8px 22px rgba(28, 27, 24, 0.3); }
.sw-whatsapp-float:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.sw-whatsapp-float svg { width: 1.9rem; height: 1.9rem; fill: #fff; }
@media (max-width: 640px) { .sw-whatsapp-float { width: 3.15rem; height: 3.15rem; right: 1rem; bottom: 1rem; } .sw-whatsapp-float svg { width: 1.7rem; height: 1.7rem; } }

.sw-consult-band { background: linear-gradient(135deg, var(--teal), #1e4f4b); color: #f4efe4; padding: clamp(2.75rem, 6vw, 4.25rem) 1.5rem; }
.sw-consult-band__inner { max-width: 880px; margin: 0 auto; text-align: center; }
.sw-consult-band__title { font-family: var(--display); font-weight: 800; font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin: 0 0 0.8rem; color: #fff; }
.sw-consult-band__sub { font-family: var(--font); font-size: 1.05rem; line-height: 1.65; max-width: 36rem; margin: 0 auto 1.8rem; opacity: 0.9; }
.sw-consult-band .sw-btn--primary { background: var(--gold); color: var(--navy); box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2); }
.sw-consult-band .sw-btn--primary:hover { background: #cda05a; box-shadow: 0 14px 30px rgba(0, 0, 0, 0.26); }

.sw-article { max-width: 760px; margin: 0 auto; padding: 3.5rem 1.5rem 4rem; }
.sw-article h1 { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 4.5vw, 2.8rem); line-height: 1.12; margin: 0 0 1rem; }
.sw-article h2 { font-family: var(--display); font-weight: 800; font-size: 1.5rem; margin: 2.5rem 0 0.75rem; }
.sw-article .sw-standfirst { font-size: 1.15rem; color: var(--teal); margin: 0 0 2rem; }
.sw-table { width: 100%; border-collapse: collapse; margin: 1.25rem 0; font-size: 0.95rem; }
.sw-table th, .sw-table td { text-align: left; padding: 0.7rem 0.8rem; border-bottom: 1px solid rgba(28, 27, 24, 0.15); }
.sw-table th { font-weight: 600; background: rgba(46, 126, 133, 0.08); }
.sw-callout { background: var(--white); border-left: 4px solid var(--cta); padding: 1.1rem 1.3rem; margin: 1.75rem 0; border-radius: 0 8px 8px 0; }
.sw-steps { counter-reset: step; list-style: none; padding: 0; margin: 1.5rem 0; }
.sw-steps li { counter-increment: step; padding: 1rem 0 1rem 3.2rem; position: relative; border-bottom: 1px solid rgba(28, 27, 24, 0.12); }
.sw-steps li::before { content: counter(step); position: absolute; left: 0; top: 1rem; width: 2.1rem; height: 2.1rem; border-radius: 50%; background: var(--teal); color: var(--cream); font-family: var(--display); font-weight: 800; display: flex; align-items: center; justify-content: center; }

.trust-grid,
.faq-list,
.intent-list {
  display: grid;
  gap: 18px;
}

.trust-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 820px) {
  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.trust-item,
.faq-item,
.intent-item,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 250, 0.88);
  box-shadow: 0 14px 34px rgba(23, 35, 33, 0.075);
}

.trust-item,
.faq-item,
.intent-item {
  padding: clamp(22px, 3vw, 30px);
}

.trust-item strong,
.faq-item h3,
.intent-item h3 {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-family: var(--display);
}

.trust-item p,
.faq-item p,
.intent-item p {
  color: var(--muted);
  line-height: 1.72;
}

.intent-item ul {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.intent-item li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.intent-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cta);
}

.cta-panel {
  padding: clamp(28px, 5vw, 48px);
  background:
    radial-gradient(circle at top right, rgba(184, 139, 74, 0.14), transparent 18rem),
    linear-gradient(135deg, rgba(255, 253, 250, 0.94), rgba(246, 240, 230, 0.98));
}

.cta-panel .btn-row {
  margin-top: 20px;
}

.medical-story__panel {
  max-width: 940px;
  margin: 0 auto;
}

.medical-story__panel .section-intro {
  max-width: 820px;
}

.home-proof {
  display: block;
}

.home-proof__content {
  min-width: 0;
}

.home-proof__items {
  display: grid;
  gap: 0;
}

.home-proof__item {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.home-proof__item:first-child {
  padding-top: 0;
  border-top: 0;
}

.home-proof__item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-family: var(--display);
  font-size: 1.05rem;
}

.home-proof__item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.home-proof__actions {
  margin-top: 22px;
}

@media (min-width: 900px) {
  .home-proof__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 22px;
  }

  .home-proof__item,
  .home-proof__item:first-child {
    padding: 0 18px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .home-proof__item:first-child {
    padding-left: 0;
    border-left: 0;
  }
}

.photo-story .section-title {
  max-width: 820px;
}

.photo-story__grid {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.photo-story__copy {
  min-width: 0;
}

.photo-story__copy .section-intro + .section-intro {
  margin-top: 12px;
}

.photo-feature,
.photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 35, 33, 0.08);
}

.photo-feature picture,
.photo-card picture {
  display: block;
  overflow: hidden;
  background: var(--cream);
}

.photo-feature picture {
  aspect-ratio: 5 / 4;
}

.photo-feature--hospital picture {
  aspect-ratio: 4 / 5;
}

.photo-card picture {
  aspect-ratio: 4 / 5;
}

.photo-feature img,
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-feature figcaption,
.photo-card figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.photo-feature figcaption {
  padding: 18px 20px 20px;
}

.photo-card figcaption {
  padding: 14px 16px 16px;
}

.photo-strip {
  display: grid;
  gap: 18px;
  margin-top: clamp(24px, 4vw, 42px);
}

@media (min-width: 720px) {
  .photo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .photo-strip--wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .photo-story__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .photo-story__grid--reverse {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  }
}

@media (max-width: 860px) {
  .photo-feature picture {
    aspect-ratio: 16 / 11;
  }

  .photo-feature--hospital picture {
    aspect-ratio: 4 / 5;
  }
}

.meta-note {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.7;
}

.service-card-link {
  color: inherit;
  text-decoration: none;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  justify-content: space-between;
}

.footer__legal {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.7);
}

.privacy-consent {
  margin-top: 16px;
}

.privacy-consent input {
  width: auto;
  min-width: 18px;
}

.privacy-consent label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.55;
}

.privacy-consent a {
  color: var(--teal);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

body,
main,
section,
header,
footer,
nav,
.container,
.nav__inner,
.nav__mobile,
.nav__logo,
.split,
.grid-2,
.grid-3,
.grid-4,
.trust-grid,
.faq-list,
.intent-list,
.resource-grid,
.article-layout,
.sw-hero__inner,
.sw-hero__actions,
.mini-nav,
.btn-row,
.footer__grid {
  min-width: 0;
}

.nav__mobile {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

.mini-nav a,
.sw-btn {
  max-width: 100%;
  text-align: center;
  white-space: normal;
}

@media (max-width: 420px) {
  .container,
  .nav__inner,
  .page-hero__inner,
  .hero__inner {
    width: min(100% - 24px, var(--max));
  }

  .section {
    padding-block: 56px;
  }

  .card,
  .trust-item,
  .faq-item,
  .intent-item,
  .form-wrap,
  .cta-panel {
    padding: 22px;
  }

  .sw-btn,
  .btn {
    width: 100%;
  }
}

/* Footer grid gains a fourth column for the Guides nav */
@media (min-width: 820px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
