/* ==========================================================
   Life Care Homes — stylesheet
   ========================================================== */

@font-face {
  font-family: 'Fraunces Disp';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/Fraunces-Medium.woff) format('woff');
}
@font-face {
  font-family: 'Fraunces Disp';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/Fraunces-SemiBold.woff) format('woff');
}
@font-face {
  font-family: 'Fraunces Disp';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url(../fonts/Fraunces-MediumItalic.woff) format('woff');
}
@font-face {
  font-family: 'Source Sans Body';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(../fonts/SourceSans3-Regular.woff) format('woff');
}
@font-face {
  font-family: 'Source Sans Body';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(../fonts/SourceSans3-SemiBold.woff) format('woff');
}
@font-face {
  font-family: 'Source Sans Body';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(../fonts/SourceSans3-Bold.woff) format('woff');
}

/* ---------- Tokens ---------- */
:root {
  --pine-950: #12261c;
  --pine-800: #1f4d3a;
  --pine-600: #2f6b4f;
  --pine-500: #3f7f5e;
  --pine-tint: #e9f1ec;
  --berry-700: #7e1943;
  --berry-600: #9c1f52;
  --berry-500: #b8386c;
  --berry-tint: #f6e6ec;
  --walnut-600: #7a4f34;
  --walnut-500: #96633f;

  --cream: #f7f1e6;
  --paper: #fffdf8;
  --paper-2: #fbf5e9;
  --ink: #241f19;
  --ink-soft: #635747;
  --ink-faint: #8b7f6d;
  --line: #e3d7c1;
  --line-strong: #cfc0a2;

  --shadow-color: 30 24% 20%;
  --shadow-sm: 0 1px 2px hsl(var(--shadow-color) / 0.08);
  --shadow-md: 0 8px 24px -8px hsl(var(--shadow-color) / 0.22);
  --shadow-lg: 0 24px 60px -20px hsl(var(--shadow-color) / 0.32);

  --font-disp: 'Fraunces Disp', Georgia, 'Iowan Old Style', serif;
  --font-body: 'Source Sans Body', -apple-system, 'Segoe UI', Roboto, sans-serif;

  --container: 1160px;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --pine-950: #d7ead9;
    --pine-800: #7fc79a;
    --pine-600: #6bb389;
    --pine-500: #5aa17a;
    --pine-tint: #182420;

    --berry-700: #f2a9c6;
    --berry-600: #e78aab;
    --berry-500: #d97398;
    --berry-tint: #2a1620;

    --walnut-600: #c99c74;
    --walnut-500: #b98761;

    --cream: #14120e;
    --paper: #1c1913;
    --paper-2: #211d16;
    --ink: #f1ead9;
    --ink-soft: #c9bda6;
    --ink-faint: #93866f;
    --line: #33301f;
    --line-strong: #454027;

    --shadow-color: 0 0% 0%;
    --shadow-sm: 0 1px 2px hsl(var(--shadow-color) / 0.4);
    --shadow-md: 0 8px 24px -8px hsl(var(--shadow-color) / 0.55);
    --shadow-lg: 0 24px 60px -20px hsl(var(--shadow-color) / 0.65);
  }
}
:root[data-theme="dark"] {
  --pine-950: #d7ead9;
  --pine-800: #7fc79a;
  --pine-600: #6bb389;
  --pine-500: #5aa17a;
  --pine-tint: #182420;

  --berry-700: #f2a9c6;
  --berry-600: #e78aab;
  --berry-500: #d97398;
  --berry-tint: #2a1620;

  --walnut-600: #c99c74;
  --walnut-500: #b98761;

  --cream: #14120e;
  --paper: #1c1913;
  --paper-2: #211d16;
  --ink: #f1ead9;
  --ink-soft: #c9bda6;
  --ink-faint: #93866f;
  --line: #33301f;
  --line-strong: #454027;

  --shadow-color: 0 0% 0%;
  --shadow-sm: 0 1px 2px hsl(var(--shadow-color) / 0.4);
  --shadow-md: 0 8px 24px -8px hsl(var(--shadow-color) / 0.55);
  --shadow-lg: 0 24px 60px -20px hsl(var(--shadow-color) / 0.65);
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, p, blockquote, ul { margin: 0; }
ul { padding: 0; list-style: none; }
button { font: inherit; }

h1, h2, h3, .disp {
  font-family: var(--font-disp);
  font-weight: 600;
  letter-spacing: -0.01em;
  text-wrap: balance;
  color: var(--ink);
}
em, .accent-italic {
  font-family: var(--font-disp);
  font-style: italic;
  font-weight: 500;
  color: var(--berry-600);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pine-600);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--berry-600);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2.5px solid var(--pine-600); outline-offset: 3px; }
.btn-primary { background: var(--berry-600); color: #fff8f4; box-shadow: var(--shadow-md); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--pine-600); color: var(--pine-800); }
.btn-ghost svg { width: 17px; height: 17px; margin-right: 2px; color: var(--berry-600); }
.btn-on-berry { background: var(--cream); color: var(--berry-700); box-shadow: var(--shadow-md); }
.btn-on-berry:hover { transform: translateY(-2px); }
.btn-outline-on-berry { background: transparent; border-color: rgba(255,255,255,0.55); color: #fdf4ee; }
.btn-outline-on-berry:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -60px;
  left: 12px;
  z-index: 100;
  background: var(--pine-800);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.94rem;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 12px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 14px 28px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 42px; height: 42px; flex-shrink: 0; }
.brand-word { font-family: var(--font-disp); font-weight: 600; font-size: 1.28rem; color: var(--pine-800); line-height: 1.1; }
.brand-sub { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--berry-600); }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { text-decoration: none; font-weight: 600; font-size: 0.94rem; color: var(--ink-soft); transition: color 0.15s ease; border-radius: 4px; }
.main-nav a:hover { color: var(--pine-800); }
.main-nav a:focus-visible, .header-phone:focus-visible, .brand:focus-visible {
  outline: 2.5px solid var(--pine-600); outline-offset: 3px; border-radius: 6px;
}
.header-cta { display: flex; align-items: center; gap: 14px; }
.header-phone { display: flex; align-items: center; gap: 8px; text-decoration: none; font-weight: 700; color: var(--pine-800); font-size: 0.95rem; }
.header-phone svg { width: 17px; height: 17px; color: var(--berry-600); }

/* Hamburger toggle (hidden until mobile breakpoint) */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}
.nav-toggle:focus-visible { outline: 2.5px solid var(--pine-600); outline-offset: 2px; }
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .nt-l1, .nav-toggle .nt-l2, .nav-toggle .nt-l3 { transition: transform 0.25s ease, opacity 0.25s ease; transform-origin: 12px 12px; }
.nav-toggle[aria-expanded="true"] .nt-l1 { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nt-l2 { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nt-l3 { transform: translateY(-5.5px) rotate(-45deg); }

/* Slide-down mobile nav panel */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 28px 22px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  padding: 13px 10px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
}
.mobile-nav a:hover, .mobile-nav a:focus-visible { background: var(--pine-tint); color: var(--pine-800); }
.mobile-nav-phone { display: flex !important; align-items: center; gap: 9px; color: var(--pine-800) !important; border-top: 1px solid var(--line); margin-top: 6px; padding-top: 16px !important; }
.mobile-nav-phone svg { width: 17px; height: 17px; color: var(--berry-600); }
.mobile-nav .btn { margin-top: 8px; width: 100%; }

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-cta .btn-primary { display: none; }
  .header-phone span { display: none; }
  .nav-toggle { display: inline-flex; }
}
@media (min-width: 901px) {
  .mobile-nav { display: none !important; }
}
@media (max-width: 480px) {
  .header-row { padding: 12px 18px; gap: 8px; }
  .brand { gap: 9px; }
  .brand img { width: 36px; height: 36px; }
  .brand-word { font-size: 1.08rem; }
  .brand-sub { font-size: 0.58rem; }
  .mobile-nav { padding: 8px 18px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .nav-toggle .nt-l1, .nav-toggle .nt-l2, .nav-toggle .nt-l3 { transition: none; }
}

/* ---------- Hero ---------- */
.hero { padding: 68px 0 84px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pine-tint); color: var(--pine-800);
  border: 1px solid color-mix(in srgb, var(--pine-600) 30%, transparent);
  padding: 7px 14px 7px 10px; border-radius: 999px;
  font-size: 0.8rem; font-weight: 700; margin-bottom: 22px;
}
.hero-badge svg { width: 15px; height: 15px; }
.hero h1 { font-size: clamp(2.5rem, 4.6vw, 3.75rem); line-height: 1.05; margin-bottom: 20px; }
.hero-sub { font-family: var(--font-disp); font-weight: 500; font-size: 1.28rem; color: var(--pine-800); margin-bottom: 18px; text-wrap: balance; }
.hero-lede { font-size: 1.08rem; color: var(--ink-soft); max-width: 46ch; margin-bottom: 34px; }
.hero-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }

.hero-art { position: relative; }
.hero-art-frame { position: relative; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); aspect-ratio: 640 / 500; }
.hero-art-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-seal { position: absolute; right: -18px; bottom: -18px; width: 172px; height: 172px; z-index: 5; }
.hero-seal img { width: 100%; height: 100%; }
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 460px; margin: 0 auto; }
}
@media (max-width: 600px) {
  .hero { padding: 40px 0 48px; }
  .hero-lede { margin-bottom: 26px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .hero-seal { width: 116px; height: 116px; right: -8px; bottom: -8px; }
}

/* ---------- Mission strip ---------- */
.mission-strip { background: var(--pine-800); padding: 16px 0; }
.mission-strip p {
  text-align: center;
  color: #eef4ee;
  font-family: var(--font-disp);
  font-style: italic;
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}
@media (max-width: 480px) { .mission-strip p { font-size: 0.88rem; } }

/* ---------- Differentiators (ribbon) ---------- */
.ribbon { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-2); }
.ribbon-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.ribbon-item { display: flex; align-items: flex-start; gap: 12px; padding: 26px 20px; text-align: left; }
.ribbon-item:not(:last-child) { border-right: 1px solid var(--line); }
.ribbon-item svg { width: 28px; height: 28px; color: var(--berry-600); flex-shrink: 0; margin-top: 2px; }
.ribbon-item strong { display: block; font-size: 0.98rem; color: var(--ink); margin-bottom: 3px; }
.ribbon-item span { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.45; }
@media (max-width: 980px) {
  .ribbon-row { grid-template-columns: repeat(2, 1fr); }
  .ribbon-item:nth-child(2n) { border-right: none; }
  .ribbon-item:not(:nth-last-child(-n+2)) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .ribbon-row { grid-template-columns: 1fr; }
  .ribbon-item { border-right: none !important; border-bottom: 1px solid var(--line); }
  .ribbon-item:last-child { border-bottom: none; }
}

/* ---------- Pull quote ---------- */
.pull-quote-section { padding: 72px 0; text-align: center; }
.pull-quote-icon { width: 30px; height: 30px; color: var(--berry-600); margin: 0 auto 22px; }
.pull-quote {
  font-family: var(--font-disp);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.4;
  max-width: 30ch;
  margin: 0 auto;
  color: var(--ink);
  text-wrap: balance;
}
@media (max-width: 600px) { .pull-quote-section { padding: 48px 0; } }

/* ---------- Section spacing ---------- */
.section { padding: 96px 0; }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-top: 14px; }
.section-head p { margin-top: 16px; color: var(--ink-soft); font-size: 1.06rem; }
.section-alt { background: var(--paper-2); }
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 34px; }
}

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 28px 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--pine-600) 35%, var(--line)); }
.service-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--pine-tint); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.service-icon svg { width: 26px; height: 26px; color: var(--pine-600); }
.service-card:nth-child(3n+2) .service-icon { background: var(--berry-tint); }
.service-card:nth-child(3n+2) .service-icon svg { color: var(--berry-600); }
.service-card h3 { font-size: 1.14rem; font-weight: 600; margin-bottom: 8px; }
.service-card p { color: var(--ink-soft); font-size: 0.98rem; }

@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .service-card { padding: 24px 22px; } }

/* ---------- Specializing in ---------- */
.specialize-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 44px 48px;
}
.specialize-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 32px; margin-top: 22px; }
.specialize-check { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.98rem; color: var(--ink); }
.specialize-check svg { width: 20px; height: 20px; color: var(--pine-600); flex-shrink: 0; }
.credential {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  border-left: 1px solid var(--line);
}
.credential img { width: 64px; height: 64px; flex-shrink: 0; }
.credential strong { display: block; font-size: 1rem; color: var(--ink); margin-bottom: 4px; }
.credential span { display: block; font-size: 0.86rem; color: var(--ink-soft); max-width: 20ch; }
@media (max-width: 860px) {
  .specialize-panel { grid-template-columns: 1fr; padding: 34px 30px; }
  .credential { border-left: none; border-top: 1px solid var(--line); padding: 22px 0 0; }
}
@media (max-width: 480px) {
  .specialize-grid { grid-template-columns: 1fr; }
  .specialize-panel { padding: 26px 22px; border-radius: 18px; }
}

/* ---------- Community split ---------- */
.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.split-art-frame { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); aspect-ratio: 640 / 500; }
.split-art-frame img { width: 100%; height: 100%; object-fit: cover; }
.split-copy h2 { font-size: clamp(1.9rem, 3vw, 2.4rem); margin: 14px 0 20px; }
.split-copy p { color: var(--ink-soft); font-size: 1.08rem; max-width: 52ch; }
.pillars { margin-top: 30px; display: grid; gap: 16px; }
.pillar { display: flex; gap: 14px; align-items: flex-start; }
.pillar svg { width: 22px; height: 22px; color: var(--berry-600); flex-shrink: 0; margin-top: 3px; }
.pillar strong { font-size: 1rem; color: var(--ink); }
.pillar span { display: block; color: var(--ink-soft); font-size: 0.92rem; margin-top: 2px; }

@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-item {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.gallery-item figcaption {
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item:first-child img { aspect-ratio: 4 / 3.6; }
@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-column: span 2; grid-row: auto; }
  .gallery-item:first-child img { aspect-ratio: 16 / 9; }
}
@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-item:first-child { grid-column: auto; }
  .gallery-item:first-child img { aspect-ratio: 4 / 3; }
}

/* ---------- Service area ---------- */
.area-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.area-chips { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.area-chip { display: inline-flex; align-items: center; gap: 10px; background: var(--paper); border: 1px solid var(--line); padding: 12px 20px 12px 14px; border-radius: 999px; font-weight: 700; font-size: 1rem; }
.area-chip svg { width: 18px; height: 18px; color: var(--berry-600); }
.area-art-frame { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.area-art-frame img { width: 100%; height: auto; }
@media (max-width: 900px) { .area-wrap { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(155deg, var(--berry-700), var(--berry-600) 55%, var(--berry-500));
  color: #fdf3ef; border-radius: 30px; padding: 64px 56px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fffaf7; font-size: clamp(1.8rem, 3vw, 2.3rem); }
.cta-band p.lede { color: #fdeef2; font-size: 1.08rem; margin-top: 14px; max-width: 46ch; }
.cta-quote { font-family: var(--font-disp); font-style: italic; font-weight: 500; font-size: 1.3rem; color: #fff; margin-top: 26px; max-width: 40ch; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.cta-actions .btn { width: 100%; justify-content: center; }
.cta-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.3); padding: 8px 16px; border-radius: 999px; font-size: 0.85rem; font-weight: 700; }
.cta-badge svg { width: 14px; height: 14px; }
@media (max-width: 820px) { .cta-band { grid-template-columns: 1fr; padding: 44px 30px; border-radius: 22px; } }
@media (max-width: 480px) {
  .cta-band { padding: 34px 22px; border-radius: 18px; }
  .cta-quote { font-size: 1.12rem; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--pine-800); color: #eef4ee; padding: 64px 0 28px; }
@media (max-width: 600px) { .site-footer { padding: 44px 0 22px; } }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .site-footer { background: #0d1512; }
}
:root[data-theme="dark"] .site-footer { background: #0d1512; }

.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 38px; height: 38px; }
.footer-brand-word { font-family: var(--font-disp); font-weight: 600; font-size: 1.2rem; color: #fff; }
.footer-brand-sub { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: #e7b8cb; }
.site-footer p { color: #cfe0d2; font-size: 0.95rem; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: #a9c9ae; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col li { color: #eef4ee; text-decoration: none; font-size: 0.98rem; }
.footer-col a { display: inline-flex; align-items: center; gap: 9px; }
.footer-col a svg { width: 15px; height: 15px; color: #e7b8cb; flex-shrink: 0; }
.footer-col a:hover { color: #f6d3e0; }
.footer-col a:focus-visible { outline: 2px solid #f6d3e0; outline-offset: 3px; border-radius: 4px; }
.footer-note { color: #bcd6c2 !important; font-style: italic; font-size: 0.92rem !important; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding-top: 26px; font-size: 0.86rem; color: #a9c2ac; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

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