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

  :root {
    --primary: #A9B88D;
    --primary-dark: #6F7F58;
    --bg: #FAF9F5;
    --card: #FFFFFF;
    --text: #2F332D;
    --text-secondary: #6E756A;
    --border: #D8DED2;
    --urgent: #B5453A;
    --urgent-dark: #93362D;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shadow-soft: 0 12px 32px rgba(47, 51, 45, 0.06);
    --shadow-hover: 0 20px 48px rgba(47, 51, 45, 0.10);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
  }

  html { scroll-behavior: smooth; }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important;
      scroll-behavior: auto !important;
    }
  }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.005em;
  }

  em {
    font-style: italic;
    font-weight: 400;
    color: var(--primary-dark);
  }

  a { color: inherit; }
  img, svg { display: block; max-width: 100%; }
  button { font-family: inherit; cursor: pointer; }

  :focus-visible { outline: 2px solid var(--primary-dark); outline-offset: 3px; border-radius: 4px; }

  .container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.75rem;
  }

  .skip-link {
    position: absolute; left: -999px; top: 0; z-index: 1000;
    background: var(--primary-dark); color: #fff;
    padding: 0.8rem 1.4rem; border-radius: 0 0 var(--radius-sm) 0;
    font-size: 0.9rem;
  }
  .skip-link:focus { left: 0; }

  /* PRELOADER */
  .preloader {
    position: fixed; inset: 0; z-index: 500;
    background: var(--bg);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
  }
  .preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
  .preloader-mark {
    font-family: 'Fraunces', serif;
    font-size: 1rem;
    letter-spacing: 0.32em;
    color: var(--primary-dark);
    display: flex; align-items: center; gap: 0.7rem;
  }
  .preloader-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--primary);
    animation: breathe 1.6s ease-in-out infinite;
  }
  @keyframes breathe {
    0%, 100% { transform: scale(0.7); opacity: 0.5; }
    50% { transform: scale(1); opacity: 1; }
  }

  /* ANNOUNCEMENT BAR */
  .announcement-bar {
    background: var(--primary-dark);
    color: #fff;
    text-align: center;
    font-size: 0.8rem;
    letter-spacing: 0.01em;
    padding: 0.55rem 1.25rem;
  }

  /* NAV */
  header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 200;
    background: rgba(250, 249, 245, 0.86);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
  }
  nav {
    display: flex; align-items: center; justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.75rem;
    max-width: 1160px; margin: 0 auto;
  }
  .nav-links {
    display: flex; align-items: center; gap: 1.7rem;
    list-style: none;
  }
  .nav-links a {
    text-decoration: none; color: var(--text-secondary);
    font-size: 0.84rem; font-weight: 500;
    transition: color 0.25s var(--ease);
    position: relative; white-space: nowrap;
  }
  .nav-links a::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: -4px;
    height: 1px; background: var(--primary-dark);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.3s var(--ease);
  }
  .nav-links a:hover { color: var(--text); }
  .nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

  .nav-start { display: flex; align-items: center; gap: 1.6rem; }

  .nav-logo {
    display: inline-flex; align-items: center;
    text-decoration: none; color: var(--text);
    flex-shrink: 0;
  }
  .nav-logo img { width: 46px; height: 46px; object-fit: contain; flex-shrink: 0; }

  .nav-actions { display: flex; align-items: center; gap: 0.9rem; }

  .lang-toggle {
    display: flex; align-items: center; border: 1px solid var(--border);
    border-radius: 999px; padding: 3px; flex-shrink: 0;
  }
  .lang-toggle button {
    border: none; background: none; padding: 0.35rem 0.6rem;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em;
    color: var(--text-secondary); border-radius: 999px;
    transition: background 0.25s var(--ease), color 0.25s var(--ease);
  }
  .lang-toggle button.is-active { background: var(--primary-dark); color: #fff; }

  .nav-cta {
    display: inline-flex; align-items: center;
    background: var(--primary-dark); color: #fff;
    border: none; border-radius: 999px;
    padding: 0.7rem 1.3rem; font-size: 0.8rem; font-weight: 500;
    text-decoration: none; white-space: nowrap;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  }
  .nav-cta:hover { background: var(--text); box-shadow: var(--shadow-soft); transform: translateY(-2px); }

  .btn-urgent {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: none; border: none; color: var(--urgent-dark);
    padding: 0; font-family: 'Fraunces', serif;
    font-size: 1rem; font-weight: 500; white-space: nowrap;
    transition: opacity 0.25s var(--ease);
  }
  .btn-urgent:hover { opacity: 0.7; }
  .btn-urgent svg { width: 16px; height: 16px; flex-shrink: 0; }

  .nav-toggle {
    display: flex; align-items: center; justify-content: center;
    background: none; border: none; width: 40px; height: 40px;
    position: relative; color: var(--text); flex-shrink: 0;
  }
  .nav-toggle svg {
    width: 22px; height: 22px; position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav-toggle .icon-close { opacity: 0; transform: translate(-50%, -50%) rotate(-40deg); }
  .nav-toggle.is-open .icon-menu { opacity: 0; transform: translate(-50%, -50%) rotate(40deg); }
  .nav-toggle.is-open .icon-close { opacity: 1; transform: translate(-50%, -50%) rotate(0); }

  /* MOBILE MENU */
  .mobile-menu {
    position: fixed; inset: 0; z-index: 260;
    background: var(--bg);
    overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateY(-12px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s var(--ease);
  }
  .mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu-bg {
    position: absolute; right: -12%; bottom: -8%; width: 70%; max-width: 420px;
    opacity: 0.07; pointer-events: none;
  }
  .mobile-menu-inner {
    position: relative; z-index: 1; min-height: 100%;
    display: flex; flex-direction: column; justify-content: center;
    max-width: 420px; margin: 0 auto; padding: 6.5rem 2rem 3rem;
  }
  .mobile-menu-links { display: flex; flex-direction: column; }
  .mobile-menu-links a {
    font-family: 'Fraunces', serif;
    font-size: 1.15rem; text-decoration: none; color: var(--text);
    padding: 0.95rem 0; border-bottom: 1px solid var(--border);
  }
  .mobile-menu-actions {
    display: flex; align-items: center; justify-content: flex-start;
    flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem;
  }
  .mobile-menu-actions .nav-cta {
    background: none; color: var(--primary-dark); padding: 0;
    font-family: 'Fraunces', serif; font-size: 1.02rem; font-weight: 500;
    box-shadow: none;
  }
  .mobile-menu-actions .nav-cta:hover { background: none; box-shadow: none; transform: none; opacity: 0.7; }
  .mobile-menu .lang-toggle { border: none; padding: 0; gap: 0.35rem; }
  .mobile-menu .lang-toggle button { padding: 0.2rem 0.3rem; font-size: 0.85rem; color: var(--text-secondary); background: none; }
  .mobile-menu .lang-toggle button.is-active {
    background: none; color: var(--primary-dark);
    text-decoration: underline; text-underline-offset: 3px;
  }
  .lang-toggle-sep { color: var(--border); font-size: 0.85rem; }

  /* HERO */
  .hero {
    position: relative;
    min-height: 100svh;
    display: flex; align-items: center;
    padding: 8rem 1.75rem 5rem;
    overflow: hidden;
  }
  .hero-grid {
    max-width: 1160px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    align-items: center; width: 100%;
  }
  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--text-secondary); margin-bottom: 1.5rem;
  }
  .hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
  .hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: var(--text); margin-bottom: 1.25rem;
  }
  .hero p {
    font-size: 1.12rem; font-weight: 500; color: var(--text);
    max-width: 34ch; margin-bottom: 2.25rem;
  }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--primary-dark); color: #fff;
    border: none; border-radius: 999px;
    padding: 1rem 1.9rem; font-size: 0.95rem; font-weight: 500;
    text-decoration: none;
    box-shadow: var(--shadow-soft);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  }
  .btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); background: var(--text); }
  .btn-primary svg { transition: transform 0.35s var(--ease); }
  .btn-primary:hover svg { transform: translateX(3px); }

  .hero-visual {
    position: relative; width: 100%; aspect-ratio: 1107 / 753;
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-hover);
  }
  .hero-visual img {
    position: absolute; inset: -0.5%; width: 101%; height: 101%;
    object-fit: cover;
  }
  .parallax-layer { transition: transform 0.2s var(--ease); will-change: transform; }

  /* SECTION SCAFFOLDING */
  section { padding: 6.5rem 0; }
  .section-head { max-width: 640px; margin: 0 auto 3.5rem; text-align: center; }
  .section-eyebrow {
    display: block; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--primary-dark); font-weight: 500; margin-bottom: 0.9rem;
  }
  .section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: 0.9rem; }
  .section-head p { color: var(--text-secondary); font-size: 1.02rem; }

  .reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
  .reveal.is-visible { opacity: 1; transform: translateY(0); }

  /* WHO WE ARE */
  .about-grid {
    max-width: 640px; margin: 0 auto; text-align: center;
  }
  .about-text h2 {
    font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 1.2rem;
  }
  .about-text p { color: var(--text-secondary); font-size: 1.08rem; max-width: 46ch; margin: 0 auto 1.5rem; }
  .about-tags {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.6rem;
    font-size: 0.86rem; letter-spacing: 0.04em; color: var(--text);
  }
  .about-tag-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }

  /* OUR STORY */
  .story-section, .family-section { background: var(--card); }
  .story-grid {
    max-width: 640px; margin: 0 auto; text-align: center;
  }
  .story-eyebrow {
    display: block; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--primary-dark); font-weight: 500; margin-bottom: 0.9rem;
  }
  .story-text h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 1.4rem; }
  .story-text p { color: var(--text-secondary); font-size: 1.04rem; max-width: 46ch; margin: 0 auto 1.1rem; }

  .story-badge {
    display: flex; gap: 1rem; align-items: flex-start; text-align: left;
    border-left: 3px solid var(--primary); padding: 0.2rem 0 0.2rem 1.25rem;
    margin: 1.5rem auto 0; max-width: 44ch;
  }
  .story-badge svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 0.2rem; }
  .story-badge strong { display: block; font-family: 'Fraunces', serif; font-weight: 500; font-size: 1.02rem; margin-bottom: 0.3rem; }
  .story-badge p { color: var(--text-secondary); font-size: 0.92rem; margin: 0; }

  /* TREATMENT PROGRAM */
  .program-alt { background: var(--card); }
  .program-list { max-width: 760px; margin: 0 auto; }
  .program-item {
    padding: 1.85rem 0; border-bottom: 1px solid var(--border);
    display: grid; grid-template-columns: 8rem 1fr; gap: 1.5rem;
  }
  .program-item:first-child { padding-top: 0; }
  .program-item:last-child { border-bottom: none; }
  .program-num {
    font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--primary-dark); font-weight: 500;
  }
  .program-item h3 { font-size: 1.12rem; margin-bottom: 0.5rem; }
  .program-item p { color: var(--text-secondary); font-size: 0.96rem; max-width: 56ch; }

  /* LIFE AT SUSPIROS */
  .life-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 160px;
    gap: 1rem;
  }
  .life-tile {
    border-radius: var(--radius-lg);
    background: var(--card);
    border: 1px solid var(--border);
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  }
  .life-tile:hover { transform: translateY(-4px) scale(1.015); box-shadow: var(--shadow-hover); }
  .life-tile svg { width: 46%; height: 46%; }
  .life-tile.tone-a { background: rgba(169, 184, 141, 0.16); }
  .life-tile.tone-b { background: var(--card); }
  .life-caption {
    position: absolute; left: 1rem; bottom: 0.85rem;
    font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-secondary);
  }
  .life-tile--wide { grid-column: span 2; }
  .life-tile--tall { grid-row: span 2; }

  /* FAQ */
  .faq-list { max-width: 760px; margin: 0 auto; }
  .faq-item {
    border-bottom: 1px solid var(--border);
  }
  .faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: 1rem; background: none; border: none;
    padding: 1.5rem 0.25rem; text-align: left;
    font-family: 'Fraunces', serif; font-size: 1.08rem; color: var(--text);
  }
  .faq-plus {
    flex-shrink: 0; width: 26px; height: 26px; position: relative;
  }
  .faq-plus::before, .faq-plus::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    background: var(--primary-dark);
    transform: translate(-50%, -50%);
    transition: transform 0.35s var(--ease);
  }
  .faq-plus::before { width: 14px; height: 1.5px; }
  .faq-plus::after { width: 1.5px; height: 14px; }
  .faq-item.is-open .faq-plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s var(--ease);
  }
  .faq-answer p { color: var(--text-secondary); padding: 0 0.25rem 1.5rem; font-size: 0.95rem; max-width: 60ch; }

  /* CONTACT */
  .contact-alt { background: var(--card); }
  .contact-grid {
    display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem;
    align-items: start;
  }
  .contact-info-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.4rem 0; border-bottom: 1px solid var(--border);
  }
  .contact-info-item:first-child { padding-top: 0; }
  .contact-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(169, 184, 141, 0.18);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .contact-icon svg { width: 18px; height: 18px; }
  .contact-info-item h4 { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; margin-bottom: 0.25rem; }
  .contact-info-item p, .contact-info-item a { font-size: 1rem; text-decoration: none; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .field { margin-bottom: 1.1rem; }
  .field label {
    display: block; font-size: 0.82rem; color: var(--text-secondary); margin-bottom: 0.5rem;
  }
  .field input, .field textarea {
    width: 100%; border: 1px solid var(--border); border-radius: var(--radius-sm);
    padding: 0.85rem 1rem; font-family: inherit; font-size: 0.95rem; color: var(--text);
    background: var(--bg);
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  }
  .field input:focus, .field textarea:focus {
    outline: none; border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(111, 127, 88, 0.15);
  }
  .field textarea { resize: vertical; min-height: 110px; }
  .form-note { font-size: 0.8rem; color: var(--text-secondary); margin-top: 0.75rem; }
  .hp-field { position: absolute; left: -9999px; }
  .form-error {
    display: none; font-size: 0.85rem; color: var(--urgent-dark);
    margin-top: 0.9rem;
  }
  .form-error.is-visible { display: block; }
  .form-success {
    display: none; text-align: center; padding: 2.5rem 1rem;
    background: rgba(169, 184, 141, 0.14); border-radius: var(--radius-lg);
  }
  .form-success.is-visible { display: block; }
  .form-success h3 { margin-bottom: 0.5rem; }
  .form-success p { color: var(--text-secondary); }

  /* FOOTER */
  footer {
    border-top: 1px solid var(--border);
    padding: 3rem 0 2.25rem;
  }
  .footer-inner {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1.5rem;
  }
  .footer-mark { font-family: 'Fraunces', serif; letter-spacing: 0.2em; font-size: 1rem; }
  .footer-tag { color: var(--text-secondary); font-size: 0.82rem; margin-top: 0.35rem; }
  .footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem 1.75rem; list-style: none; }
  .footer-links a { text-decoration: none; color: var(--text-secondary); font-size: 0.85rem; transition: color 0.25s var(--ease); }
  .footer-links a:hover { color: var(--text); }
  .footer-bottom {
    margin-top: 2.25rem; padding-top: 1.5rem; border-top: 1px solid var(--border);
    color: var(--text-secondary); font-size: 0.78rem; text-align: center;
  }

  /* FLOATING CTA */
  .floating-cta {
    position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 150;
    opacity: 0; visibility: hidden; transform: translateY(16px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s var(--ease);
  }
  .floating-cta.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
  .floating-cta a {
    display: inline-flex; align-items: center; gap: 0.55rem;
    background: var(--text); color: #fff; text-decoration: none;
    border-radius: 999px; padding: 0.9rem 1.5rem; font-size: 0.85rem; font-weight: 500;
    box-shadow: var(--shadow-hover);
    transition: transform 0.3s var(--ease), background 0.3s var(--ease);
  }
  .floating-cta a:hover { background: var(--primary-dark); transform: translateY(-2px); }

  /* COOKIE NOTICE */
  .cookie-banner {
    position: fixed; left: 1.5rem; right: 1.5rem; bottom: 1.5rem; z-index: 250;
    max-width: 640px; margin: 0 auto;
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    padding: 1.25rem 1.5rem;
    display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem;
    opacity: 0; visibility: hidden; transform: translateY(16px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s var(--ease);
  }
  .cookie-banner.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
  .cookie-banner p { flex: 1 1 320px; font-size: 0.86rem; color: var(--text-secondary); margin: 0; }
  .cookie-banner .btn-primary { padding: 0.7rem 1.4rem; font-size: 0.85rem; flex-shrink: 0; }

  /* EMERGENCY MODAL */
  .emergency-overlay {
    position: fixed; inset: 0; z-index: 400;
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem;
    opacity: 0; visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s var(--ease);
  }
  .emergency-overlay.is-open { opacity: 1; visibility: visible; }
  .emergency-backdrop {
    position: absolute; inset: 0; background: rgba(47, 51, 45, 0.55);
    backdrop-filter: blur(3px);
  }
  .emergency-card {
    position: relative; background: var(--card);
    border-radius: var(--radius-lg); max-width: 460px; width: 100%;
    padding: 2.25rem 2rem 2rem;
    box-shadow: var(--shadow-hover);
    transform: translateY(16px) scale(0.98); opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
  }
  .emergency-overlay.is-open .emergency-card { transform: translateY(0) scale(1); opacity: 1; }
  .emergency-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; padding-right: 1.5rem; }
  .emergency-intro { color: var(--text-secondary); font-size: 0.92rem; margin-bottom: 1.5rem; }
  .emergency-close {
    position: absolute; top: 1.4rem; right: 1.4rem;
    width: 30px; height: 30px; border: none; background: none;
    color: var(--text-secondary); font-size: 1.4rem; line-height: 1;
    display: flex; align-items: center; justify-content: center; border-radius: 50%;
    transition: background 0.25s var(--ease), color 0.25s var(--ease);
  }
  .emergency-close:hover { background: var(--bg); color: var(--text); }
  .emergency-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .emergency-list a {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    text-decoration: none; padding: 0.85rem 1rem;
    background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  }
  .emergency-list a:hover { border-color: var(--urgent); background: rgba(181, 69, 58, 0.06); }
  .emergency-list a span { font-size: 0.86rem; color: var(--text); }
  .emergency-list a strong { font-family: 'Fraunces', serif; font-size: 1rem; color: var(--urgent-dark); white-space: nowrap; }
  .emergency-footnote { font-size: 0.78rem; color: var(--text-secondary); margin-top: 1.5rem; }

  /* RESPONSIVE */
  @media (max-width: 1080px) {
    .nav-links { gap: 1.1rem; }
    .nav-links a { font-size: 0.8rem; }
  }

  @media (max-width: 940px) {
    .nav-links { display: none; }
  }

  @media (max-width: 860px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .hero p { margin-left: auto; margin-right: auto; }
    .hero-visual { order: -1; max-width: 320px; margin: 0 auto; }
    .program-item { grid-template-columns: 1fr; gap: 0.4rem; }
    .life-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
    .life-tile--wide { grid-column: span 2; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-inner { flex-direction: column; align-items: flex-start; }
    section { padding: 4.5rem 0; }
    .floating-cta { right: 1rem; bottom: 1rem; left: 1rem; }
    .floating-cta a { justify-content: center; width: 100%; }
    .emergency-card { padding: 1.9rem 1.5rem 1.6rem; }
    .cookie-banner { left: 1rem; right: 1rem; bottom: 1rem; flex-direction: column; align-items: stretch; text-align: center; }
    .cookie-banner p { flex: none; }
    .cookie-banner .btn-primary { width: 100%; justify-content: center; }
    body.cookie-open .floating-cta { bottom: 6.5rem; }
  }

  @media (max-width: 520px) {
    nav { padding: 1rem; gap: 0.5rem; }
    .nav-start { gap: 0.6rem; }
    .nav-logo img { width: 44px; height: 44px; }
    .lang-toggle button { padding: 0.22rem 0.36rem; font-size: 0.62rem; }
    .nav-cta { padding: 0.5rem 0.8rem; font-size: 0.7rem; }
    .nav-toggle { width: 34px; height: 34px; }
    .nav-toggle svg { width: 19px; height: 19px; }
  }

  @media (max-width: 420px) {
    .btn-urgent { padding: 0.6rem 0.85rem; font-size: 0.74rem; }
  }

  /* PAGE HERO (subpages) */
  .page-hero { padding: 10.5rem 1.75rem 3rem; text-align: center; }
  .page-back {
    display: inline-flex; align-items: center; gap: 0.4rem;
    font-size: 0.85rem; color: var(--text-secondary); text-decoration: none;
    margin-bottom: 1.5rem;
    transition: gap 0.3s var(--ease), color 0.3s var(--ease);
  }
  .page-back:hover { gap: 0.65rem; color: var(--primary-dark); }
  .page-back svg { transition: transform 0.3s var(--ease); }
  .page-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--primary-dark); font-weight: 500; margin-bottom: 1.1rem;
  }
  .page-hero h1 { font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: 1.1rem; }
  .page-hero p { color: var(--text-secondary); font-size: 1.06rem; max-width: 54ch; margin: 0 auto; }
  @media (max-width: 860px) {
    .page-hero { padding: 9rem 1.5rem 2.5rem; }
  }

  /* HOME TEASERS */
  .bg-alt { background: var(--card); }
  .teaser { max-width: 640px; margin: 0 auto; text-align: center; }
  .teaser h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 1.1rem; }
  .teaser p { color: var(--text-secondary); font-size: 1.04rem; max-width: 52ch; margin: 0 auto 1.5rem; }
  .teaser-link {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--primary-dark); font-weight: 500; text-decoration: none;
    border-bottom: 1px solid var(--primary); padding-bottom: 2px;
    transition: gap 0.3s var(--ease);
  }
  .teaser-link:hover { gap: 0.8rem; }
  .about-tags + .teaser-link { margin-top: 1.75rem; }
  .section-more { text-align: center; margin-top: 2.75rem; }
  .home-cta { background: var(--primary-dark); color: #fff; text-align: center; }
  .home-cta h2 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 1rem; }
  .home-cta p { color: rgba(255, 255, 255, 0.82); font-size: 1.04rem; max-width: 46ch; margin: 0 auto 1.75rem; }
  .home-cta .btn-primary { background: #fff; color: var(--primary-dark); }
  .home-cta .btn-primary svg path { stroke: var(--primary-dark); }
  .home-cta .btn-primary:hover { background: var(--bg); }

  /* VALUES GRID (About page) */
  .values-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.25rem 2.5rem;
    max-width: 800px; margin: 0 auto; text-align: left;
  }
  .value-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
  .value-item p { color: var(--text-secondary); font-size: 0.95rem; max-width: 40ch; }
  @media (max-width: 640px) {
    .values-grid { grid-template-columns: 1fr; }
  }

  /* TEAM NOTE */
  .team-note {
    max-width: 640px; margin: 3rem auto 0; text-align: center;
    color: var(--text-secondary); font-size: 0.92rem; font-style: italic;
  }

  /* TEAM SLIDER + PHOTO PLACEHOLDERS */
  .team-card {
    flex: 0 0 auto; width: min(300px, 78vw); scroll-snap-align: start;
    display: flex; flex-direction: column; gap: 1.1rem;
  }
  .team-photo-placeholder {
    aspect-ratio: 4 / 3; border-radius: var(--radius-md);
    background: rgba(169, 184, 141, 0.14);
    border: 1px dashed var(--border);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.6rem; color: var(--text-secondary);
  }
  .team-photo-placeholder svg { width: 34px; height: 34px; opacity: 0.6; }
  .team-photo-placeholder span {
    font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  }
  .team-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
  .team-card p { color: var(--text-secondary); font-size: 0.95rem; margin-bottom: 0.6rem; }
  .team-card p:last-child { margin-bottom: 0; }

  /* REVIEWS PLACEHOLDER */
  .reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  }
  .review-placeholder {
    border: 1px dashed var(--border); border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
    color: var(--text-secondary);
  }
  .review-avatar-placeholder {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(169, 184, 141, 0.18);
    display: flex; align-items: center; justify-content: center;
  }
  .review-avatar-placeholder svg { width: 20px; height: 20px; opacity: 0.6; }
  .review-placeholder .review-lines { width: 100%; }
  .review-placeholder .review-line {
    height: 8px; border-radius: 4px; background: var(--border);
    margin: 0 auto 0.5rem;
  }
  .review-placeholder .review-line:nth-child(1) { width: 90%; }
  .review-placeholder .review-line:nth-child(2) { width: 70%; }
  .review-placeholder .review-line:last-child { margin-bottom: 0; }
  .review-placeholder .review-label {
    font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  }
  @media (max-width: 860px) {
    .reviews-grid { grid-template-columns: 1fr; }
  }

  /* HOW WE WORK (light, minimal - matches the mobile menu style) */
  .how-we-work { position: relative; overflow: hidden; }
  .how-we-work-bg {
    position: absolute; right: -12%; bottom: -14%; width: 46%; max-width: 420px;
    opacity: 0.06; pointer-events: none;
  }
  .how-we-work .container { position: relative; z-index: 1; }
  .how-photo-placeholder {
    max-width: 760px; margin: 0 auto 3rem; aspect-ratio: 16 / 6;
    border-radius: var(--radius-lg);
    background: rgba(169, 184, 141, 0.14);
    border: 1px dashed var(--border);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.7rem; color: var(--text-secondary);
  }
  .how-photo-placeholder svg { width: 34px; height: 34px; opacity: 0.7; }
  .how-photo-placeholder span {
    font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  }
  @media (max-width: 640px) {
    .how-photo-placeholder { aspect-ratio: 4 / 3; }
  }

  /* WE'RE HERE TO HELP (condition card slider) */
  .slider-track {
    display: flex; gap: 1.5rem; overflow-x: auto;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    padding: 0.25rem 0.25rem 1.25rem;
    scrollbar-width: thin; scrollbar-color: var(--border) transparent;
  }
  .slider-track::-webkit-scrollbar { height: 6px; }
  .slider-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
  .help-card {
    flex: 0 0 auto; width: min(380px, 82vw); scroll-snap-align: start;
    border-radius: var(--radius-lg);
    padding: 2.25rem 2rem; display: flex; flex-direction: column; gap: 1rem;
  }
  .help-card.tone-a { background: rgba(169, 184, 141, 0.16); }
  .help-card.tone-b { background: #EFE8DA; }
  .help-card h3 { font-size: 1.15rem; }
  .help-card p { color: var(--text-secondary); font-size: 0.96rem; }

  /* INTERVENTION / FAMILY SUPPORT CTA */
  .intervention-card {
    background: rgba(169, 184, 141, 0.16); border-radius: var(--radius-lg);
    padding: 2.75rem 2.5rem; max-width: 760px; margin: 0 auto; text-align: center;
    box-shadow: var(--shadow-soft);
  }
  .about-grid + .intervention-card { margin-top: 4rem; }
  .intervention-card h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); margin-bottom: 1.1rem; }
  .intervention-card p { color: var(--text-secondary); font-size: 1.02rem; max-width: 56ch; margin: 0 auto 1.75rem; }
  @media (max-width: 640px) {
    .intervention-card { padding: 2.25rem 1.5rem; }
  }
