/* ============================================================
   Community Accident and Recovery Center
   Visual system: warm editorial / refined-clinic
   Display: Fraunces (optical serif) · Body: Hanken Grotesk
   ============================================================ */

:root {
  /* Warm, calming palette — jewel-toned greens, honeyed amber, terracotta */
  --ink: #1d2e28;          /* deep warm green-charcoal text   */
  --muted: #586a60;        /* muted sage gray                 */
  --paper: #f7f2e7;        /* warm ivory background           */
  --paper-2: #f0e7d4;      /* deeper cream for alt sections   */
  --white: #fffdf8;        /* warm white card surface         */
  --mist: #e0eee5;         /* soft sage mist                  */

  --pine: #0f463c;         /* deep emerald pine — primary dark */
  --pine-2: #082c26;       /* darkest pine                    */
  --teal: #18806c;         /* vivid emerald-teal              */
  --teal-soft: #d2e9df;    /* pale teal wash                  */

  --clay: #c8552f;         /* warm terracotta accent / CTA    */
  --clay-deep: #a4401f;    /* pressed terracotta              */
  --gold: #e0a32c;         /* honeyed amber accent            */
  --gold-deep: #c4861a;    /* deeper amber                    */
  --coral: #e08a5f;        /* soft coral highlight            */
  --plum: #7d4e6b;         /* muted plum — rare cool accent   */

  --line: rgba(15, 70, 60, 0.13);
  --line-strong: rgba(15, 70, 60, 0.22);

  --shadow-sm: 0 1px 2px rgba(14, 44, 38, 0.05), 0 3px 10px rgba(14, 44, 38, 0.06);
  --shadow-md: 0 6px 18px rgba(14, 44, 38, 0.08), 0 16px 38px rgba(14, 44, 38, 0.10);
  --shadow-lg: 0 12px 30px rgba(14, 44, 38, 0.11), 0 30px 70px rgba(14, 44, 38, 0.16);

  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 36px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  position: relative;
  margin: 0;
  background-color: var(--paper);
  background-image:
    radial-gradient(58rem 40rem at 86% -10%, rgba(24, 128, 108, 0.22), transparent 60%),
    radial-gradient(46rem 34rem at -8% 4%, rgba(224, 163, 44, 0.20), transparent 58%),
    radial-gradient(44rem 36rem at 18% 46%, rgba(125, 78, 107, 0.10), transparent 60%),
    radial-gradient(40rem 34rem at 102% 52%, rgba(224, 138, 95, 0.15), transparent 60%),
    radial-gradient(48rem 40rem at 92% 88%, rgba(24, 128, 108, 0.12), transparent 62%),
    radial-gradient(70rem 60rem at 50% 122%, rgba(15, 70, 60, 0.10), transparent 62%);
  background-attachment: fixed;
  color: var(--ink);
  font-family: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  font-size: 1.02rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Fine grain overlay for atmosphere — fixed, non-interactive */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

body > * {
  position: relative;
  z-index: 2;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 100;
  padding: 11px 20px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  background: var(--pine);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition: top 0.18s var(--ease);
}

.skip-link:focus {
  top: 0;
}

a {
  color: inherit;
}

::selection {
  background: var(--gold);
  color: var(--pine-2);
}

/* ---------------------------------- Header ---------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto auto auto auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(246, 241, 231, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--pine);
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 14px;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(255, 255, 255, 0.18), transparent 55%),
    linear-gradient(150deg, var(--teal), var(--pine-2));
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: 'Fraunces', serif;
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.15;
  color: var(--pine);
}

.brand small {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  position: relative;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s, background 0.18s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--pine);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--clay);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(200, 85, 47, 0.30);
  transition: transform 0.18s var(--ease), box-shadow 0.18s, background 0.18s;
}

.header-call::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5); }
  70% { box-shadow: 0 0 0 7px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.header-call:hover,
.header-call:focus-visible {
  background: var(--clay-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(164, 64, 31, 0.36);
}

.language-toggle {
  display: grid;
  grid-template-columns: auto auto;
  padding: 4px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.language-toggle button {
  min-height: 34px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 0.86rem;
  white-space: nowrap;
  transition: color 0.18s, background 0.2s var(--ease);
}

.language-toggle button.active {
  background: var(--pine);
  color: var(--white);
}

/* ---------------------------------- Hero ---------------------------------- */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: clamp(44px, 6vw, 96px) clamp(18px, 5vw, 76px);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--clay), var(--gold));
  opacity: 0.9;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 14ch;
  margin: 0;
  color: var(--pine);
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.6rem, 5.4vw, 4.7rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.015em;
  text-wrap: balance;
}

h1 em {
  font-style: italic;
  background: linear-gradient(100deg, var(--clay), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin: 0;
  color: var(--pine);
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

h3 {
  margin: 12px 0 8px;
  color: var(--ink);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.24rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.lead {
  max-width: 56ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  max-width: 100%;
  padding: 14px 26px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.2s, background 0.18s, border-color 0.18s;
}

.button.primary {
  background: var(--clay);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(200, 85, 47, 0.32);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--clay-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(164, 64, 31, 0.38);
}

.button.secondary {
  border-color: var(--line-strong);
  background: var(--white);
  color: var(--pine);
  box-shadow: var(--shadow-sm);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: var(--teal);
  background: var(--mist);
  transform: translateY(-2px);
}

.emergency-note {
  position: relative;
  max-width: 52ch;
  margin: 28px 0 0;
  padding: 14px 16px 14px 18px;
  border-radius: var(--r-sm);
  background: rgba(224, 163, 44, 0.13);
  border: 1px solid rgba(224, 163, 44, 0.32);
  color: #6b4f0f;
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

/* warm decorative frame offset behind hero image */
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: var(--r-lg);
  background: linear-gradient(150deg, rgba(24, 128, 108, 0.40), rgba(224, 138, 95, 0.30) 55%, rgba(224, 163, 44, 0.28));
}

.hero-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(185deg, rgba(13, 47, 42, 0) 40%, rgba(13, 47, 42, 0.78));
  pointer-events: none;
}

.image-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  gap: 14px;
  align-items: end;
  justify-content: space-between;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-md);
  background: rgba(13, 47, 42, 0.42);
  color: var(--white);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
}

.image-caption strong,
.image-caption span {
  display: block;
}

.image-caption strong {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
}

.image-caption span {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: right;
}

/* staggered hero entrance */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy > *,
  .hero-visual {
    opacity: 0;
    animation: rise 0.85s var(--ease) forwards;
  }

  .hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
  .hero-copy > *:nth-child(2) { animation-delay: 0.14s; }
  .hero-copy > *:nth-child(3) { animation-delay: 0.23s; }
  .hero-copy > *:nth-child(4) { animation-delay: 0.32s; }
  .hero-copy > *:nth-child(5) { animation-delay: 0.41s; }
  .hero-visual { animation-delay: 0.2s; }

  @keyframes rise {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* ------------------------------ Quick contact ------------------------------ */

.quick-contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.6);
}

.quick-contact a {
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 26px clamp(18px, 4vw, 48px);
  text-decoration: none;
  transition: background 0.2s;
}

.quick-contact a:hover,
.quick-contact a:focus-visible {
  background: var(--white);
}

.quick-contact a + a {
  border-left: 1px solid var(--line);
}

.quick-contact span {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quick-contact strong {
  color: var(--pine);
  font-size: 1.06rem;
  overflow-wrap: anywhere;
  transition: color 0.18s;
}

.quick-contact a:hover strong,
.quick-contact a:focus-visible strong {
  color: var(--clay);
}

/* ------------------------------- Sections ------------------------------- */

.section,
.split-section,
.steps-section {
  padding: clamp(56px, 7.5vw, 104px) clamp(18px, 5vw, 76px);
}

.section {
  background:
    radial-gradient(40rem 30rem at 4% -6%, rgba(224, 163, 44, 0.10), transparent 60%),
    radial-gradient(38rem 30rem at 100% 104%, rgba(24, 128, 108, 0.10), transparent 62%);
}

.section-intro,
.steps-intro {
  position: relative;
  max-width: 50ch;
  margin-bottom: 38px;
}

.section-intro::after,
.steps-intro::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 24px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--clay), var(--gold) 32%, rgba(24, 128, 108, 0.45) 70%, transparent);
  opacity: 0.7;
}

.facebook-section .section-intro::after {
  margin-left: auto;
  margin-right: auto;
  max-width: 22rem;
  background: linear-gradient(90deg, transparent, var(--gold) 35%, var(--clay) 65%, transparent);
}

.steps-section {
  position: relative;
  background:
    radial-gradient(40rem 30rem at 100% -10%, rgba(24, 128, 108, 0.10), transparent 60%),
    radial-gradient(36rem 28rem at -6% 110%, rgba(224, 163, 44, 0.12), transparent 62%),
    var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
  align-items: stretch;
}

.steps-photo,
.support-photos figure,
.contact-photo {
  margin: 0;
}

.steps-photo {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--mist);
  box-shadow: var(--shadow-md);
}

.steps-photo img,
.support-photos img,
.contact-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.steps-photo:hover img,
.support-photos figure:hover img,
.contact-photo:hover img {
  transform: scale(1.04);
}

.step-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: accident-steps;
}

.step-list li {
  position: relative;
  min-height: 184px;
  padding: 24px 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
  counter-increment: accident-steps;
  transition: transform 0.22s var(--ease), box-shadow 0.22s, border-color 0.22s;
}

.step-list li:hover {
  transform: translateY(-3px);
  border-color: var(--teal-soft);
  box-shadow: var(--shadow-md);
}

.step-list li::before {
  content: counter(accident-steps);
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 12px;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(255, 255, 255, 0.16), transparent 55%),
    linear-gradient(150deg, var(--teal), var(--pine));
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.step-list strong,
.step-list span {
  display: block;
}

.step-list strong {
  color: var(--pine);
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.step-list span {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.95rem;
}

.step-list li:last-child {
  grid-column: 1 / -1;
  min-height: auto;
  background: linear-gradient(135deg, var(--mist), rgba(216, 231, 223, 0.4));
  border-color: var(--teal-soft);
}

.support-photos {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
  margin: 0 0 22px;
}

.support-photos figure {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--mist);
  box-shadow: var(--shadow-md);
}

.support-photos figcaption,
.contact-photo figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(13, 47, 42, 0.46);
  color: var(--white);
  font-weight: 600;
  font-size: 0.96rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.help-grid article {
  position: relative;
  min-height: 240px;
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background:
    radial-gradient(22rem 16rem at 110% -20%, rgba(24, 128, 108, 0.10), transparent 60%),
    var(--white);
  overflow: hidden;
  transition: transform 0.22s var(--ease), box-shadow 0.22s, border-color 0.22s;
}

.help-grid article::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.help-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--teal-soft);
  box-shadow: var(--shadow-md);
}

.help-grid article:hover::after {
  transform: scaleX(1);
}

.help-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background:
    radial-gradient(120% 120% at 30% 18%, rgba(255, 255, 255, 0.22), transparent 55%),
    linear-gradient(150deg, var(--teal), var(--pine));
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.help-grid article:nth-child(2) span {
  background:
    radial-gradient(120% 120% at 30% 18%, rgba(255, 255, 255, 0.24), transparent 55%),
    linear-gradient(150deg, var(--gold), var(--clay));
}

.help-grid article:nth-child(3) span {
  background:
    radial-gradient(120% 120% at 30% 18%, rgba(255, 255, 255, 0.22), transparent 55%),
    linear-gradient(150deg, var(--coral), var(--clay-deep));
}

.help-grid article:nth-child(4) span {
  background:
    radial-gradient(120% 120% at 30% 18%, rgba(255, 255, 255, 0.20), transparent 55%),
    linear-gradient(150deg, var(--plum), var(--pine-2));
}

.help-grid article:nth-child(2) {
  background:
    radial-gradient(22rem 16rem at 110% -20%, rgba(224, 163, 44, 0.13), transparent 60%),
    var(--white);
}

.help-grid article:nth-child(3) {
  background:
    radial-gradient(22rem 16rem at 110% -20%, rgba(224, 138, 95, 0.13), transparent 60%),
    var(--white);
}

.help-grid article:nth-child(4) {
  background:
    radial-gradient(22rem 16rem at 110% -20%, rgba(125, 78, 107, 0.12), transparent 60%),
    var(--white);
}

.help-grid p {
  margin: 0;
  color: var(--muted);
}

/* --------------------------------- About --------------------------------- */

.about-section {
  background:
    radial-gradient(42rem 32rem at 96% 8%, rgba(24, 128, 108, 0.10), transparent 60%),
    radial-gradient(38rem 30rem at -4% 96%, rgba(125, 78, 107, 0.09), transparent 62%),
    var(--paper-2);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}

.about-copy p {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.66;
}

.about-copy .disclaimer {
  margin-bottom: 0;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  color: var(--muted);
  font-size: 0.96rem;
}

.about-points {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-points li {
  position: relative;
  padding: 20px 20px 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease);
}

.about-points li::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: var(--teal);
}

.about-points li:nth-child(2)::before {
  background: var(--gold);
}

.about-points li:nth-child(3)::before {
  background: var(--clay);
}

.about-points li:hover {
  transform: translateX(3px);
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points strong {
  color: var(--pine);
  font-family: 'Fraunces', serif;
  font-size: 1.08rem;
  font-weight: 600;
}

.about-points span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ------------------------------ Split section ------------------------------ */

.split-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(48rem 40rem at 88% 110%, rgba(24, 128, 108, 0.55), transparent 60%),
    radial-gradient(40rem 32rem at 6% -10%, rgba(224, 163, 44, 0.22), transparent 60%),
    radial-gradient(36rem 30rem at 70% -20%, rgba(224, 138, 95, 0.18), transparent 62%),
    linear-gradient(160deg, var(--pine), var(--pine-2));
  color: var(--white);
}

.split-section h2 {
  color: var(--white);
}

.split-section p:not(.eyebrow) {
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.80);
  font-size: 1.1rem;
}

.split-section .eyebrow {
  color: var(--gold);
}

.split-section .eyebrow::before {
  background: var(--gold);
}

.area-box {
  position: relative;
  display: grid;
  min-height: 270px;
  place-content: center;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-lg);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), var(--shadow-lg);
  text-align: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.area-box strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.7rem;
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(120deg, #fbe6b6, var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.area-box span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* -------------------------------- Facebook -------------------------------- */

.facebook-section {
  background:
    radial-gradient(44rem 34rem at 12% -8%, rgba(24, 128, 108, 0.12), transparent 60%),
    radial-gradient(38rem 30rem at 92% 108%, rgba(224, 163, 44, 0.14), transparent 62%),
    var(--paper-2);
  border-top: 1px solid var(--line);
}

.facebook-section .section-intro {
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.facebook-section .section-intro .eyebrow {
  justify-content: center;
}

.facebook-frame {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 500px);
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
  max-width: 1020px;
  margin: 0 auto;
}

.facebook-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-lg);
  background:
    radial-gradient(28rem 22rem at 110% -10%, rgba(224, 163, 44, 0.26), transparent 60%),
    linear-gradient(155deg, var(--pine), var(--pine-2));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), var(--shadow-lg);
  color: var(--white);
}

.facebook-badge {
  display: grid;
  place-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.facebook-copy h3 {
  margin: 4px 0 6px;
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.12;
}

.facebook-copy p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
  line-height: 1.6;
}

.facebook-copy .button.secondary {
  background: var(--white);
  border-color: var(--white);
  color: var(--pine);
}

.facebook-copy .button.secondary:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

.facebook-embed {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.facebook-embed iframe {
  display: block;
  width: 100%;
  max-width: 500px;
  min-height: 540px;
  margin: 0 auto;
  border-radius: var(--r-md);
  background: var(--mist);
}

/* --------------------------------- Contact --------------------------------- */

.contact-section {
  background:
    radial-gradient(40rem 32rem at 90% 0%, rgba(24, 128, 108, 0.12), transparent 60%),
    radial-gradient(34rem 28rem at 4% 104%, rgba(224, 138, 95, 0.10), transparent 62%),
    var(--paper-2);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 22px;
  align-items: stretch;
  max-width: 1180px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--pine);
  font-weight: 600;
  font-size: 0.94rem;
}

.lead-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  padding: 13px 15px;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
}

input::placeholder,
textarea::placeholder {
  color: #9aa79e;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(24, 128, 108, 0.16);
}

.lead-form button {
  border: 0;
  font: inherit;
  margin-top: 4px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 600;
}

.lead-form .consent {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  background: var(--mist);
  color: var(--ink);
  font-weight: 500;
  font-size: 0.94rem;
}

.lead-form .consent input[type="checkbox"] {
  width: 20px;
  min-height: 20px;
  height: 20px;
  margin-top: 1px;
  padding: 0;
  flex: 0 0 auto;
  accent-color: var(--teal);
}

.form-privacy {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-status:focus {
  outline: none;
}

.contact-photo {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

/* --------------------------------- Footer --------------------------------- */

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 36px;
  align-items: center;
  justify-content: space-between;
  padding: 36px clamp(18px, 5vw, 76px);
  background: var(--pine-2);
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

.site-footer strong {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.08rem;
}

.site-footer p strong + span {
  display: block;
  margin-top: 4px;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  margin-left: 18px;
  text-decoration: none;
  transition: color 0.18s;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
}

/* -------------------------------- Responsive -------------------------------- */

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto auto auto;
    position: sticky;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    background: rgba(246, 241, 231, 0.98);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 10;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px clamp(14px, 4vw, 48px);
    border-radius: var(--r-sm);
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    max-width: 660px;
    min-height: 440px;
  }

  .hero-visual img {
    min-height: 440px;
  }

  .quick-contact,
  .help-grid,
  .split-section,
  .step-list,
  .steps-layout,
  .support-photos,
  .facebook-section,
  .facebook-frame,
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }

  .quick-contact a:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .steps-layout,
  .facebook-section,
  .facebook-frame,
  .about-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .steps-photo,
  .support-photos figure,
  .contact-photo {
    min-height: 320px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 0.98rem;
  }

  .quick-contact,
  .help-grid,
  .split-section,
  .step-list,
  .support-photos,
  .facebook-section,
  .facebook-frame,
  .contact-layout,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .header-call,
  .language-toggle {
    grid-column: 1 / -1;
    width: 100%;
  }

  .language-toggle {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 380px;
  }

  .image-caption {
    display: grid;
  }

  .image-caption span {
    max-width: none;
    text-align: left;
  }

  .quick-contact a + a,
  .quick-contact a:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .area-box {
    min-height: 200px;
  }

  .area-box strong {
    font-size: 2.2rem;
  }

  .step-list li:last-child {
    grid-column: auto;
  }

  .lead-form {
    padding: 20px;
  }

  .site-footer {
    display: grid;
  }

  .site-footer a {
    display: block;
    margin: 8px 0 0;
  }
}
