:root {
  --navy: #022d46;
  --navy-deep: #012638;
  --navy-soft: #0d4057;
  --green: #4f8d6b;
  --green-light: #a8c697;
  --coral: #f26a5a;
  --coral-soft: #ffaaa0;
  --cream: #f5ecdc;
  --cream-deep: #ead9be;
  --white: #fffdf8;
  --ink: #173b4d;
  --muted: #607177;
  --line: rgba(23, 59, 77, 0.16);
  --shadow: 0 22px 60px rgba(23, 59, 77, 0.12);
  --display: Georgia, 'Times New Roman', serif;
  --sans: 'Trebuchet MS', 'Segoe UI', Arial, sans-serif;
  --container: 1160px;
  --radius: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body:has(.whatsapp-panel:not([hidden])) { overflow: hidden; }

a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }

.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: -80px;
  padding: 10px 16px;
  color: var(--navy);
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow);
  transition: top 180ms ease;
}

.skip-link:focus { top: 16px; }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  color: var(--white);
  background: rgba(2, 45, 70, 0.94);
  border-bottom: 1px solid rgba(255, 253, 248, 0.13);
  backdrop-filter: blur(16px);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 80px; }

.brand, .footer-brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { width: 40px; height: 40px; object-fit: cover; border-radius: 50%; }
.brand-name, .footer-brand > span { font-family: var(--display); font-size: 28px; line-height: 1; letter-spacing: -0.055em; }
.brand-name > span, .footer-brand > span > span { color: var(--green-light); }

.site-nav { display: flex; align-items: center; gap: 28px; font-size: 13px; }
.site-nav > a:not(.button) { color: rgba(255, 253, 248, 0.8); transition: color 180ms ease; }
.site-nav > a:not(.button):hover { color: var(--white); }
.menu-toggle { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.015em;
  transition: transform 220ms var(--ease), background 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}
.button:hover { transform: translateY(-3px); }
.button span { font-size: 18px; font-weight: 400; transition: transform 220ms ease; }
.button:hover span:not(.ui-arrow) { transform: translate(3px, -3px); }
.button-small { min-height: 42px; padding: 0 16px; font-size: 12px; }
.button-light { color: var(--navy); background: var(--white); }
.button-light:hover { background: var(--green-light); box-shadow: 0 8px 22px rgba(168, 198, 151, 0.2); }
.button-instagram { color: var(--green-light); border-color: rgba(168, 198, 151, 0.5); background: transparent; }
.button-instagram:hover { color: var(--navy); border-color: var(--green-light); background: var(--green-light); }
.button-coral { color: var(--white); background: var(--coral); box-shadow: 0 12px 24px rgba(242, 106, 90, 0.24); }
.button-coral:hover { background: #e85c4d; box-shadow: 0 16px 30px rgba(242, 106, 90, 0.3); }
.button-navy { color: var(--white); background: var(--navy); }
.button-navy:hover { background: var(--navy-deep); box-shadow: 0 12px 24px rgba(23, 59, 77, 0.18); }
.button-outline { color: var(--navy); border-color: var(--line); background: transparent; }
.button-outline:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }

.hero {
  position: relative;
  min-height: 750px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}
.hero::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 79% 35%, rgba(79, 141, 107, 0.23), transparent 27%), radial-gradient(circle at 11% 95%, rgba(242, 106, 90, 0.12), transparent 25%);
  content: '';
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr); gap: 70px; align-items: center; min-height: 750px; padding-top: 78px; }
.hero-copy { max-width: 600px; padding-block: 60px 80px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 22px; color: var(--green); font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.eyebrow-dot { width: 8px; height: 8px; background: var(--coral); border-radius: 50%; box-shadow: 0 0 0 5px rgba(242, 106, 90, 0.15); }
.eyebrow-green { color: var(--green); }
.eyebrow-coral { color: var(--coral-soft); }
.hero h1 { max-width: 620px; margin: 0; font-family: var(--display); font-size: clamp(52px, 7vw, 92px); font-weight: 400; line-height: 0.98; letter-spacing: -0.075em; }
h1 em, h2 em { color: var(--coral); font-style: normal; }
.hero-lead { max-width: 530px; margin: 30px 0 0; color: rgba(255, 253, 248, 0.72); font-size: 18px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 24px; margin-top: 40px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding-block: 8px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 700; transition: gap 200ms var(--ease), color 200ms ease; }
.text-link:hover { gap: 16px; }
.ui-arrow { display: inline-block; flex: 0 0 16px; width: 16px; height: 16px; font-size: 0; line-height: 1; --arrow-rotation: 0deg; transform: rotate(var(--arrow-rotation)); transition: transform 220ms ease; }
.ui-arrow svg { display: block; width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button:hover .ui-arrow { transform: translate(3px, -3px) rotate(var(--arrow-rotation)); }
.ui-arrow-down { --arrow-rotation: 135deg; }
.ui-arrow-diagonal-down { --arrow-rotation: 90deg; }
.text-link-light { color: var(--white); }
.text-link-dark { color: var(--navy); }
.hero-note { display: flex; align-items: center; gap: 12px; max-width: 390px; margin-top: 60px; color: rgba(255, 253, 248, 0.52); font-size: 12px; }
.star-badge { display: grid; flex: 0 0 28px; place-items: center; width: 28px; height: 28px; color: var(--navy); background: var(--coral); border-radius: 50%; font-size: 19px; }
.hero-art { position: relative; display: grid; place-items: center; min-height: 550px; }
.art-panel { position: relative; z-index: 2; width: min(100%, 520px); padding: 26px; background: transparent; border: 0; box-shadow: none; }
.art-panel img { display: block; width: 100%; height: auto; object-fit: contain; }
.team-photo-panel { width: min(100%, 470px); padding: 0; overflow: hidden; border: 1px solid rgba(255, 253, 248, 0.16); border-radius: 28px; background: rgba(23, 59, 77, 0.34); box-shadow: 0 24px 56px rgba(2, 45, 70, 0.26); }
.team-photo-panel img { width: 100%; object-fit: cover; }
.team-photo-panel .floating-star-top { top: 22px; right: 22px; }
.team-photo-panel .floating-star-bottom { bottom: 18px; left: 22px; }
.art-caption { display: flex; align-items: center; gap: 12px; padding: 16px 4px 0; color: rgba(255, 253, 248, 0.75); font-family: var(--display); font-size: 15px; font-style: italic; }
.caption-line { width: 30px; height: 1px; background: var(--green); }
.floating-star { position: absolute; z-index: 3; color: var(--coral); font-size: 32px; }
.floating-star-top { top: 7%; right: 7%; }
.floating-star-bottom { bottom: 14%; left: 4%; color: var(--green-light); font-size: 22px; }
.hero-orbit { position: absolute; z-index: 0; border: 1px solid rgba(255, 253, 248, 0.08); border-radius: 50%; }
.hero-orbit-one { width: 760px; height: 760px; right: -400px; top: -250px; }
.hero-orbit-two { width: 480px; height: 480px; left: -390px; bottom: -250px; border-color: rgba(79, 141, 107, 0.19); }
.scroll-cue { position: absolute; z-index: 2; right: 24px; bottom: 34px; display: flex; align-items: center; gap: 14px; color: rgba(255, 253, 248, 0.5); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; transform: rotate(90deg) translateX(100%); transform-origin: right bottom; }
.scroll-line { display: block; width: 52px; height: 1px; background: var(--coral); }

.locations-strip { color: var(--white); background: var(--green); }
.locations-inner { display: flex; align-items: center; justify-content: space-between; min-height: 86px; gap: 24px; }
.strip-label { margin: 0; font-family: var(--display); font-size: 17px; font-style: italic; }
.location-list { display: flex; flex-wrap: wrap; gap: 28px; font-size: 12px; font-weight: 700; }
.location-list span { display: inline-flex; align-items: center; gap: 8px; }
.location-list i { color: var(--green-light); font-size: 21px; font-style: normal; }
.strip-star { color: var(--coral-soft); font-size: 30px; }

.section { padding: 104px 0; }
.split-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.75fr); justify-content: space-between; gap: 120px; }
.section-heading h2, .section-intro h2 { max-width: 560px; margin: 0; font-family: var(--display); font-size: clamp(43px, 5vw, 66px); font-weight: 400; line-height: 1.03; letter-spacing: -0.065em; }
.section-heading h2 em, .section-intro h2 em, .process-section h2 em, .faq-section h2 em { color: var(--green); }
.section-body { align-self: end; max-width: 450px; padding-bottom: 4px; }
.section-body p, .section-intro > p, .heading-support { color: var(--muted); font-size: 15px; }
.section-body .body-large { color: var(--navy); font-size: 20px; line-height: 1.55; }
.about-seal { width: 82px; margin-top: 26px; overflow: hidden; background: var(--navy); border-radius: 50%; }
.about-seal img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.section-body .text-link { margin-top: 18px; }

.care-section { position: relative; overflow: hidden; color: var(--white); background: var(--navy-deep); }
.care-section::after { position: absolute; right: -170px; bottom: -260px; width: 580px; height: 580px; border: 1px solid rgba(79, 141, 107, 0.3); border-radius: 50%; content: ''; }
.section-intro { display: flex; align-items: end; justify-content: space-between; gap: 80px; margin-bottom: 58px; }
.section-intro-light h2 { color: var(--white); }
.section-intro > p { max-width: 355px; margin: 0 0 6px; color: rgba(255, 253, 248, 0.58); }
.pillars-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pillar-card { min-height: 320px; padding: 24px; background: rgba(255, 253, 248, 0.045); border: 1px solid rgba(255, 253, 248, 0.14); transition: transform 250ms var(--ease), background 250ms ease, border-color 250ms ease; }
.pillar-card:hover { background: rgba(255, 253, 248, 0.09); border-color: rgba(168, 198, 151, 0.65); transform: translateY(-7px); }
.pillar-card-accent { color: var(--navy); background: var(--coral); border-color: var(--coral); }
.pillar-card-accent:hover { background: var(--coral-soft); border-color: var(--coral-soft); }
.pillar-card-green { color: var(--navy); background: var(--green-light); border-color: var(--green-light); }
.pillar-card-green:hover { background: #bad2aa; border-color: #bad2aa; }
.pillar-number { display: block; color: var(--green-light); font-size: 11px; font-weight: 800; letter-spacing: 0.1em; }
.pillar-card-accent .pillar-number, .pillar-card-green .pillar-number { color: rgba(23, 59, 77, 0.56); }
.pillar-icon { display: block; margin-top: 45px; font-family: var(--display); font-size: 60px; font-weight: 400; line-height: 0.7; }
.pillar-icon svg { display: block; width: 52px; height: 52px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.icon-spiral { color: var(--green-light); }
.icon-star { color: var(--navy); }
.icon-heart { color: var(--coral); }
.icon-leaf { color: var(--navy); }
.pillar-card h3 { margin: 34px 0 8px; font-family: var(--display); font-size: 24px; font-weight: 400; line-height: 1.05; letter-spacing: -0.035em; }
.pillar-card p { margin: 0; color: rgba(255, 253, 248, 0.57); font-size: 12px; line-height: 1.55; }
.pillar-card-accent p, .pillar-card-green p { color: rgba(23, 59, 77, 0.7); }

.process-section { background: var(--cream); }
.narrow-heading { max-width: 560px; }
.process-list { max-width: 930px; margin: 65px 0 0 auto; border-top: 1px solid var(--line); }
.process-item { display: grid; grid-template-columns: 90px minmax(0, 1fr) 32px; align-items: center; gap: 26px; min-height: 142px; border-bottom: 1px solid var(--line); transition: padding 200ms var(--ease), background 200ms ease; }
.process-item:hover { padding-inline: 20px; background: rgba(255, 253, 248, 0.68); }
.process-mark { color: var(--coral); font-family: var(--display); font-size: 20px; }
.process-item h3 { margin: 0 0 5px; font-family: var(--display); font-size: 27px; font-weight: 400; letter-spacing: -0.04em; }
.process-item p { margin: 0; color: var(--muted); font-size: 13px; }
.process-arrow { color: var(--green); font-size: 24px; transition: transform 200ms ease; }
.process-item:hover .process-arrow { transform: translate(3px, -3px); }

.units-section { padding: 88px 0; color: var(--white); background: var(--green); }
.units-section .section-intro { margin-bottom: 42px; }
.units-section .eyebrow { color: var(--cream); }
.units-section h2 { color: var(--white); }
.units-section h2 em { color: var(--navy); }
.units-section .section-intro > p { color: rgba(255, 253, 248, 0.76); }
.units-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.unit-card { min-height: 320px; display: flex; flex-direction: column; align-items: flex-start; padding: 30px; color: var(--navy); background: var(--cream); border: 1px solid rgba(23, 59, 77, 0.08); transition: transform 240ms var(--ease), background 240ms ease; }
.unit-card:hover { transform: translateY(-7px); }
.unit-card-featured { background: var(--cream); color: var(--navy); }
.unit-card-top { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.unit-tag { color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.unit-card-featured .unit-tag { color: var(--green); }
.unit-pin { color: var(--coral); font-size: 27px; line-height: 1; }
.unit-card h3 { margin: 68px 0 0; font-family: var(--display); font-size: 36px; font-weight: 400; letter-spacing: -0.06em; line-height: 1; }
.unit-card p { margin: 8px 0 auto; color: var(--muted); font-size: 12px; }
.unit-card-featured p { color: var(--muted); }
.unit-card .button { width: 100%; margin-top: 28px; }

.faq-section { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: 0.7fr 1fr; gap: 120px; align-items: start; }
.faq-section .section-heading { max-width: 430px; }
.faq-section h2 { font-size: clamp(40px, 4.5vw, 59px); }
.heading-support { margin-top: 28px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; }
.faq-item button { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 27px 0; color: var(--navy); background: none; border: 0; cursor: pointer; text-align: left; font-family: var(--display); font-size: 21px; font-weight: 400; letter-spacing: -0.02em; }
.faq-item button:hover { color: var(--green); }
.faq-plus { display: grid; flex: 0 0 32px; place-items: center; width: 32px; height: 32px; color: var(--green); border: 1px solid var(--green); border-radius: 50%; font-family: var(--sans); font-size: 22px; font-weight: 300; transition: transform 220ms ease, color 220ms ease, background 220ms ease; }
.faq-item button[aria-expanded='true'] .faq-plus { color: var(--white); background: var(--green); transform: rotate(45deg); }
.faq-answer { max-width: 580px; padding: 0 50px 25px 0; color: var(--muted); font-size: 14px; }
.faq-answer p { margin: 0; }

.final-cta { position: relative; overflow: hidden; color: var(--white); background: var(--navy); }
.final-cta::before, .final-cta::after { position: absolute; width: 340px; height: 340px; border: 1px solid rgba(168, 198, 151, 0.2); border-radius: 50%; content: ''; }
.final-cta::before { top: -240px; left: -100px; }
.final-cta::after { right: -120px; bottom: -250px; }
.final-cta-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; padding: 78px 0; text-align: center; }
.cta-star { color: var(--coral); font-size: 42px; line-height: 1; }
.final-cta .eyebrow { margin-top: 22px; }
.final-cta h2 { max-width: 700px; margin: 0 0 35px; font-family: var(--display); font-size: clamp(45px, 6vw, 74px); font-weight: 400; line-height: 1; letter-spacing: -0.07em; }
.final-cta h2 em { color: var(--green-light); }

.site-footer { color: var(--white); background: var(--navy-deep); }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; min-height: 118px; gap: 30px; }
.footer-brand > span { font-size: 26px; }
.footer-top p { margin: 0; color: rgba(255, 253, 248, 0.52); font-size: 12px; text-align: center; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0 28px; color: rgba(255, 253, 248, 0.36); border-top: 1px solid rgba(255, 253, 248, 0.11); font-size: 10px; }

.whatsapp-widget { position: fixed; z-index: 25; right: 24px; bottom: 24px; }
.whatsapp-toggle { display: inline-flex; align-items: center; gap: 10px; min-height: 55px; padding: 0 18px 0 12px; color: var(--white); background: var(--coral); border: 0; border-radius: 999px; box-shadow: 0 14px 35px rgba(13, 45, 61, 0.26); cursor: pointer; font-size: 12px; font-weight: 700; transition: transform 220ms var(--ease), background 220ms ease; }
.whatsapp-toggle:hover { background: #e85c4d; transform: translateY(-4px); }
.whatsapp-glyph { display: grid; place-items: center; width: 32px; height: 32px; color: var(--coral); background: var(--white); border-radius: 50%; font-size: 22px; }
.whatsapp-glyph svg { display: block; width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.whatsapp-panel { position: absolute; right: 0; bottom: 70px; width: min(350px, calc(100vw - 32px)); padding: 18px; color: var(--navy); background: var(--white); border: 1px solid rgba(23, 59, 77, 0.1); box-shadow: 0 24px 70px rgba(13, 45, 61, 0.25); }
.panel-heading { display: flex; align-items: start; justify-content: space-between; gap: 20px; padding: 4px 4px 14px; }
.panel-heading button { width: 28px; height: 28px; color: var(--muted); background: transparent; border: 0; cursor: pointer; font-size: 24px; line-height: 1; }
.panel-kicker { display: block; margin-bottom: 3px; color: var(--green); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }
.panel-heading strong { font-family: var(--display); font-size: 21px; font-weight: 400; }
.whatsapp-panel > a { display: flex; align-items: center; gap: 12px; padding: 14px 4px; border-top: 1px solid var(--line); transition: background 180ms ease, padding 180ms ease; }
.whatsapp-panel > a:hover { padding-inline: 10px; background: var(--cream); }
.whatsapp-panel > a > span:nth-child(2) { display: flex; flex: 1; flex-direction: column; }
.whatsapp-panel > a strong { font-size: 13px; }
.whatsapp-panel > a small { color: var(--muted); font-size: 10px; }
.panel-pin { color: var(--green); font-size: 22px; }

.reveal { animation: reveal-in 800ms var(--ease) both; }
.reveal-delay-short { animation-delay: 90ms; }
.reveal-delay { animation-delay: 180ms; }
.reveal-delay-long { animation-delay: 270ms; }
@keyframes reveal-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr); gap: 35px; }
  .hero h1 { font-size: clamp(48px, 7vw, 72px); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { gap: 60px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 36px), var(--container)); }
  .header-inner { min-height: 68px; }
  .menu-toggle { display: grid; place-items: center; gap: 4px; width: 44px; height: 44px; padding: 10px; color: var(--white); background: transparent; border: 1px solid rgba(255, 253, 248, 0.22); border-radius: 50%; cursor: pointer; }
  .menu-toggle span { display: block; width: 17px; height: 1px; background: currentColor; transition: transform 180ms ease, opacity 180ms ease; }
  .menu-toggle[aria-expanded='true'] span:first-child { transform: translateY(5px) rotate(45deg); }
  .menu-toggle[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded='true'] span:last-child { transform: translateY(-5px) rotate(-45deg); }
  .site-nav { position: absolute; inset: 68px 18px auto; display: flex; align-items: stretch; flex-direction: column; gap: 0; padding: 12px; visibility: hidden; background: var(--navy-deep); border: 1px solid rgba(255, 253, 248, 0.14); opacity: 0; transform: translateY(-10px); transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease; }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .site-nav > a:not(.button) { padding: 14px; border-bottom: 1px solid rgba(255, 253, 248, 0.1); }
  .site-nav .button { margin-top: 12px; }
  .hero, .hero-grid { min-height: 0; }
  .hero { padding-bottom: 56px; }
  .hero-grid { display: block; padding-top: 80px; }
  .hero-copy { padding-block: 50px 0; }
  .hero h1 { font-size: clamp(47px, 15vw, 70px); }
  .hero-lead { font-size: 16px; }
  .hero-note { margin-top: 38px; }
  .hero-art { min-height: 0; margin: 18px 0 0; }
  .art-panel { width: min(70vw, 280px); padding: 8px; }
  .hero-team .hero-art { margin-top: 30px; }
  .hero-team .team-photo-panel { width: min(88vw, 360px); padding: 0; border-radius: 22px; transform: none; }
  .hero-team .floating-star { display: block; }
  .hero-team .team-photo-panel .floating-star-top { top: 18px; right: 18px; font-size: 26px; }
  .hero-team .team-photo-panel .floating-star-bottom { bottom: 16px; left: 16px; font-size: 18px; }
  .art-caption { padding-top: 6px; font-size: 11px; }
  .hero-orbit { display: none; }
  .floating-star { display: none; }
  .scroll-cue { display: none; }
  .locations-inner { align-items: flex-start; flex-direction: column; gap: 12px; padding-block: 22px; }
  .location-list { gap: 9px 18px; }
  .strip-star { position: absolute; right: 22px; }
  .section { padding: 70px 0; }
  .split-grid, .faq-grid { grid-template-columns: 1fr; gap: 34px; }
  .section-heading h2, .section-intro h2 { font-size: clamp(43px, 13vw, 60px); }
  .section-body { max-width: none; }
  .section-body .text-link { display: flex; width: max-content; margin-inline: auto; }
  .section-body .body-large { font-size: 18px; }
  .section-intro { align-items: start; flex-direction: column; gap: 22px; margin-bottom: 38px; }
  .section-intro > p { max-width: 500px; }
  .pillars-grid, .units-grid { grid-template-columns: 1fr; }
  .pillar-card { min-height: 260px; }
  .pillar-icon { margin-top: 34px; }
  .pillar-card h3 { margin-top: 24px; }
  .process-list { margin-top: 44px; }
  .process-item { grid-template-columns: 46px minmax(0, 1fr) 22px; gap: 10px; min-height: 145px; }
  .process-item:hover { padding-inline: 8px; }
  .process-item h3 { font-size: 23px; }
  .process-item p { font-size: 12px; }
  .unit-card { min-height: 270px; padding: 24px; }
  .unit-card h3 { margin-top: 52px; font-size: 34px; }
  .faq-grid { gap: 42px; }
  .faq-item button { gap: 16px; font-size: 19px; }
  .faq-answer { padding-right: 34px; }
  .final-cta-inner { padding: 88px 0; }
  .about-seal { margin-inline: auto; }
  .footer-top { grid-template-columns: 1fr; justify-items: center; gap: 16px; padding-block: 34px; text-align: center; }
  .footer-top p { text-align: center; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 8px; text-align: center; }
  .whatsapp-widget { right: 16px; bottom: 16px; }
  .whatsapp-label { display: none; }
  .whatsapp-toggle { width: 48px; min-height: 48px; justify-content: center; padding: 0; }
}

@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; }
}
