@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,500;0,600;1,500&display=swap');

:root {
  --black: #090909;
  --ink: #1c1919;
  --muted: #6e6867;
  --paper: #fffdfa;
  --soft: #f4f0eb;
  --red: #c85761;
  --red-dark: #8f343d;
  --white: #fff;
  --line: rgba(28, 25, 25, .13);
  --shadow: 0 28px 70px rgba(28, 18, 19, .12);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Montserrat', Arial, sans-serif;
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 400 16px/1.75 var(--sans); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 48px), var(--content)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 12px 18px; background: var(--white); color: var(--black); }
.skip-link:focus { top: 16px; }

.site-header { position: sticky; top: 0; z-index: 100; height: 104px; background: var(--black); color: var(--white); border-bottom: 1px solid rgba(255,255,255,.12); transition: height .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled { height: 84px; box-shadow: 0 16px 40px rgba(0,0,0,.2); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { width: 300px; max-width: 30vw; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.nav { display: flex; align-items: center; gap: 38px; }
.nav a { position: relative; color: rgba(255,255,255,.82); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: .02em; }
.nav a:not(.nav-cta)::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -13px; height: 2px; background: var(--red); transition: right .22s ease; }
.nav a:hover, .nav a.active { color: var(--white); }
.nav a:hover::after, .nav a.active::after { right: 0; }
.nav-cta { padding: 15px 24px; border: 1px solid rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: .12em !important; font-size: 12px !important; transition: color .2s ease, background .2s ease, border-color .2s ease; }
.nav-cta:hover { background: var(--white); color: var(--black) !important; border-color: var(--white); }
.menu-toggle { display: none; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.4); background: transparent; color: var(--white); cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ''; display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded='true'] span { opacity: 0; }
.menu-toggle[aria-expanded='true']::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded='true']::after { transform: translateY(-7px) rotate(-45deg); }

.hero { min-height: 720px; position: relative; display: grid; align-items: center; color: var(--white); overflow: hidden; background: var(--black); }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { height: 100%; object-fit: cover; object-position: 64% center; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,10,8,.98) 0%, rgba(6,10,8,.86) 35%, rgba(6,10,8,.38) 62%, rgba(6,10,8,.1) 100%); }
.hero-content { position: relative; z-index: 1; padding: 110px 0 145px; }
.eyebrow { display: flex; align-items: center; gap: 13px; margin: 0 0 22px; color: var(--red); font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow::before { content: ''; width: 32px; height: 2px; background: currentColor; }
.hero h1, .display { margin: 0; font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; line-height: .95; }
.hero h1 { max-width: 730px; font-size: clamp(60px, 7.4vw, 112px); }
.hero h1 em { display: block; color: var(--red); font-weight: 500; }
.hero-copy { max-width: 600px; margin: 32px 0 0; color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.75; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; gap: 12px; padding: 0 27px; border: 1px solid transparent; text-decoration: none; text-transform: uppercase; letter-spacing: .11em; font-size: 12px; font-weight: 700; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: var(--white); }
.button-primary:hover { background: var(--red-dark); }
.button-light { border-color: rgba(255,255,255,.65); color: var(--white); }
.button-light:hover { background: var(--white); color: var(--black); }
.button-dark { background: var(--black); color: var(--white); }
.button-outline { border-color: var(--ink); color: var(--ink); }
.button-outline:hover { background: var(--ink); color: var(--white); }

.proof-bar { position: relative; z-index: 3; margin-top: -65px; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--white); box-shadow: var(--shadow); }
.proof { min-height: 130px; display: grid; grid-template-columns: 52px 1fr; align-items: center; gap: 18px; padding: 28px 34px; border-right: 1px solid var(--line); }
.proof:last-child { border-right: 0; }
.proof-mark { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--red); font: 500 24px/1 var(--serif); }
.proof strong { display: block; margin-bottom: 2px; font: 600 21px/1.2 var(--serif); }
.proof small { color: var(--muted); font-size: 12px; }

.section { padding: 125px 0; }
.section-soft { background: var(--soft); }
.section-black { background: var(--black); color: var(--white); }
.section-head { display: grid; grid-template-columns: 1fr .85fr; gap: 70px; align-items: end; margin-bottom: 58px; }
.section-head h2, .about-copy h2, .daycare-copy h2, .contact-copy h2 { margin: 0; max-width: 760px; font: 500 clamp(44px, 5vw, 74px)/1.02 var(--serif); letter-spacing: -.035em; }
.section-head p { margin: 0; color: var(--muted); }
.section-black .section-head p { color: rgba(255,255,255,.64); }
.section-black .eyebrow { color: #e17b84; }

.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: start; }
.intro-title { position: sticky; top: 130px; }
.intro-title span { display: block; font: 500 clamp(54px, 6vw, 88px)/.98 var(--serif); text-transform: uppercase; }
.intro-title span:last-child { color: var(--red); font-style: italic; margin-left: 1em; }
.intro-copy { font-size: 18px; color: #3f3a39; }
.intro-copy p:first-child { margin-top: 0; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 42px; }
.feature { padding-top: 20px; border-top: 1px solid var(--line); }
.feature strong { display: block; font: 600 22px/1.25 var(--serif); }
.feature span { color: var(--muted); font-size: 13px; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { min-width: 0; background: var(--white); box-shadow: 0 16px 40px rgba(35,24,25,.08); }
.service-image { position: relative; aspect-ratio: 4/5; overflow: hidden; background: #ddd; }
.service-image img { height: 100%; object-fit: cover; object-position: center 36%; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.service-card:hover .service-image img { transform: scale(1.04); }
.service-number { position: absolute; right: 18px; top: 18px; display: grid; place-items: center; width: 52px; height: 52px; background: var(--red); color: var(--white); font: italic 500 18px/1 var(--serif); }
.service-body { padding: 30px 30px 34px; }
.service-body h3 { margin: 0 0 13px; font: 600 31px/1.1 var(--serif); }
.service-body p { min-height: 84px; margin: 0 0 24px; color: var(--muted); font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--red-dark); text-decoration: none; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 700; }
.text-link::after { content: '→'; font-size: 17px; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.daycare-panel { display: grid; grid-template-columns: 1.03fr .97fr; min-height: 640px; background: var(--red-dark); color: var(--white); box-shadow: var(--shadow); }
.daycare-copy { padding: clamp(48px, 7vw, 90px); }
.daycare-copy p { color: rgba(255,255,255,.76); }
.daycare-photo { position: relative; overflow: hidden; }
.daycare-photo img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; margin: 34px 0; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.18); }
.price { padding: 20px; background: rgba(255,255,255,.08); }
.price strong { display: block; font: 600 31px/1 var(--serif); }
.price span { color: rgba(255,255,255,.7); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.note { font-size: 12px; }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.about-images { position: relative; min-height: 670px; }
.about-main { position: absolute; inset: 0 16% 9% 0; height: 91%; object-fit: cover; }
.about-small { position: absolute; width: 42%; right: 0; bottom: 0; aspect-ratio: 1; object-fit: cover; border: 12px solid var(--paper); }
.about-badge { position: absolute; right: 7%; top: 4%; width: 118px; height: 118px; display: grid; place-items: center; text-align: center; border-radius: 50%; background: var(--red); color: var(--white); border: 6px solid var(--paper); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.about-badge strong { display: block; font: 600 28px/1 var(--serif); }
.about-copy > p { color: var(--muted); font-size: 17px; }
.checks { display: grid; gap: 16px; padding: 0; margin: 34px 0; list-style: none; }
.checks li { display: grid; grid-template-columns: 28px 1fr; gap: 13px; align-items: start; }
.checks li::before { content: '✓'; display: grid; place-items: center; width: 26px; height: 26px; background: var(--red); color: var(--white); font-size: 12px; }
.team-line { padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; }

.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.quote { padding: 46px; border: 1px solid rgba(255,255,255,.18); }
.quote-mark { color: var(--red); font: 500 68px/.6 var(--serif); }
.quote blockquote { margin: 24px 0 30px; font: 500 25px/1.5 var(--serif); }
.quote cite { color: rgba(255,255,255,.58); font-style: normal; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }

.gallery { columns: 3 280px; column-gap: 16px; }
.gallery img { width: 100%; height: auto; margin: 0 0 16px; break-inside: avoid; object-fit: contain; background: var(--soft); }

.page-hero { position: relative; min-height: 500px; display: grid; align-items: end; overflow: hidden; background: var(--black); color: var(--white); }
.page-hero-media { position: absolute; inset: 0; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.page-hero-media.portrait { background: #121111; }
.page-hero-media.portrait img { object-fit: contain; object-position: right center; }
.page-hero-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9,9,9,.96), rgba(9,9,9,.72) 48%, rgba(9,9,9,.22)); }
.page-hero-inner { position: relative; z-index: 1; padding-block: 100px 86px; }
.page-hero h1 { max-width: 900px; margin: 0; font: 500 clamp(58px, 7vw, 104px)/.95 var(--serif); letter-spacing: -.04em; }
.page-hero-copy { max-width: 680px; margin: 26px 0 0; color: rgba(255,255,255,.76); font-size: 18px; }
.breadcrumbs { margin-bottom: 22px; color: rgba(255,255,255,.54); font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--white); }

.content-page { padding: 100px 0 125px; }
.content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 80px; align-items: start; }
.content-main { min-width: 0; }
.lead { margin: 0 0 28px; color: #3f3a39; font-size: 19px; line-height: 1.8; }
.content-main > p { color: #4f4948; }
.content-main h2 { margin: 70px 0 22px; font: 500 clamp(37px, 4vw, 56px)/1.05 var(--serif); letter-spacing: -.03em; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { margin: 0 0 14px; font: 600 27px/1.15 var(--serif); }
.content-main .eyebrow + h2 { margin-top: 0; }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 32px 0; }
.info-block { padding: 32px; border: 1px solid var(--line); background: var(--white); }
.info-block.accent { background: var(--red-dark); color: var(--white); border-color: var(--red-dark); }
.info-block.accent p, .info-block.accent li { color: rgba(255,255,255,.78); }
.policy-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.policy-list li { position: relative; padding-left: 23px; color: #514a49; }
.policy-list li::before { content: ''; position: absolute; left: 0; top: .72em; width: 7px; height: 7px; background: var(--red); }
.retained-prices { background: var(--red-dark); border-color: rgba(255,255,255,.2); }
.retained-prices .price { background: rgba(255,255,255,.08); color: var(--white); }
.info-block.accent .policy-list li::before { background: var(--white); }
.callout { margin: 50px 0; padding: 38px 42px; border-left: 4px solid var(--red); background: var(--soft); }
.callout strong { display: block; margin-bottom: 8px; font: 600 25px/1.2 var(--serif); }
.page-aside { position: sticky; top: 110px; }
.aside-card { padding: 30px; background: var(--black); color: var(--white); }
.aside-card + .aside-card { margin-top: 18px; }
.aside-card.red { background: var(--red-dark); }
.aside-card h3 { margin: 0 0 12px; font: 600 25px/1.2 var(--serif); }
.aside-card p { color: rgba(255,255,255,.68); font-size: 13px; }
.aside-card .button { width: 100%; margin-top: 12px; }
.page-links { display: grid; margin-top: 18px; border-top: 1px solid rgba(255,255,255,.14); }
.page-links a { padding: 13px 0; color: rgba(255,255,255,.75); border-bottom: 1px solid rgba(255,255,255,.14); text-decoration: none; font-size: 12px; }
.page-links a:hover { color: var(--white); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 52px 0 76px; }
.mission-card { padding: 42px; background: var(--soft); }
.mission-card h2 { margin: 0 0 18px; font-size: 42px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.team-card { padding: 28px; border-top: 3px solid var(--red); background: var(--white); box-shadow: 0 12px 32px rgba(35,24,25,.07); }
.team-photo { width: calc(100% + 56px); max-width: none; height: auto; aspect-ratio: 3 / 4; margin: -28px -28px 24px; object-fit: cover; object-position: center 24%; }
.team-card h3 { margin-bottom: 4px; }
.team-card p { margin: 0; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.service-overview { display: grid; gap: 28px; }
.service-row { display: grid; grid-template-columns: 280px 1fr; min-height: 300px; background: var(--white); box-shadow: 0 14px 34px rgba(35,24,25,.07); }
.service-row img { height: 100%; object-fit: cover; object-position: center 34%; }
.service-row-copy { padding: 42px; }
.service-row-copy h2 { margin: 0 0 17px; }
.contact-form { display: grid; gap: 18px; margin-top: 34px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field textarea { width: 100%; padding: 15px 16px; border: 1px solid var(--line); background: var(--white); color: var(--ink); }
.field textarea { min-height: 150px; resize: vertical; }
.consent { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: 12px; }
.consent input { margin-top: 5px; }
.fine-print { color: var(--muted); font-size: 11px; }

.contact-panel { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 550px; background: var(--black); color: var(--white); }
.contact-copy { padding: clamp(48px, 7vw, 88px); }
.contact-copy p { max-width: 580px; color: rgba(255,255,255,.68); }
.contact-details { display: grid; align-content: center; padding: clamp(36px, 6vw, 75px); background: #151313; }
.detail { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.detail:last-child { border-bottom: 0; }
.detail-icon { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.25); color: var(--red); font: 600 15px/1 var(--serif); }
.detail strong { display: block; margin-bottom: 3px; font: 600 18px/1.25 var(--serif); }
.detail a, .detail span { color: rgba(255,255,255,.68); text-decoration: none; font-size: 13px; }
.detail a:hover { color: var(--white); }

.site-footer { padding: 38px 0; background: var(--black); color: rgba(255,255,255,.58); border-top: 1px solid rgba(255,255,255,.12); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.footer-brand { display: block; width: 220px; max-width: 38vw; flex: 0 0 220px; }
.footer-brand img { width: 100%; height: auto; aspect-ratio: 613 / 120; object-fit: contain; }
.footer-copy { font-size: 11px; text-align: center; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: inherit; text-decoration: none; font-size: 11px; }
.footer-links a:hover { color: var(--white); }
.whatsapp-fab { position: fixed; right: 24px; bottom: 24px; z-index: 80; display: flex; align-items: center; gap: 10px; min-height: 54px; padding: 0 19px; background: #26795a; color: var(--white); border-radius: 30px; box-shadow: 0 14px 34px rgba(0,0,0,.24); text-decoration: none; font-size: 12px; font-weight: 700; }
.whatsapp-fab::before { content: 'W'; display: grid; place-items: center; width: 26px; height: 26px; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; font-size: 11px; }

.error-page { min-height: 100vh; display: grid; place-items: center; padding: 48px; background: var(--black); color: var(--white); text-align: center; }
.error-page h1 { margin: 0; font: 500 clamp(86px, 16vw, 190px)/.8 var(--serif); color: var(--red); }
.error-page h2 { margin: 30px 0 12px; font: 500 36px/1.1 var(--serif); }
.error-page p { color: rgba(255,255,255,.65); }

@media (max-width: 1000px) {
  .site-header, .site-header.is-scrolled { height: 84px; }
  .brand { width: 245px; max-width: 65vw; }
  .menu-toggle { display: block; }
  .nav { position: fixed; inset: 84px 0 0; display: grid; align-content: start; gap: 0; padding: 24px; background: rgba(9,9,9,.98); transform: translateX(100%); transition: transform .25s ease; }
  .nav.is-open { transform: translateX(0); }
  .nav a { padding: 19px 8px; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 16px; }
  .nav a::after { display: none; }
  .nav-cta { margin-top: 18px; border: 1px solid rgba(255,255,255,.7) !important; text-align: center; }
  .hero { min-height: 670px; }
  .hero-bg img { object-position: 61% center; }
  .hero-bg::after { background: linear-gradient(90deg, rgba(6,10,8,.94) 0%, rgba(6,10,8,.72) 58%, rgba(6,10,8,.22) 100%); }
  .proof-grid { grid-template-columns: 1fr; }
  .proof { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof:last-child { border-bottom: 0; }
  .intro-grid, .section-head, .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .intro-title { position: static; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: 1 / 3; display: grid; grid-template-columns: 1fr 1fr; }
  .service-card:last-child .service-image { aspect-ratio: auto; }
  .daycare-panel, .contact-panel { grid-template-columns: 1fr; }
  .daycare-photo { min-height: 520px; }
  .about-images { min-height: 620px; }
  .content-layout { grid-template-columns: 1fr; gap: 50px; }
  .page-aside { position: static; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-wrap: wrap; }
  .footer-copy { order: 3; flex: 1 0 100%; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 30px), var(--content)); }
  .hero { min-height: 700px; align-items: end; }
  .hero-bg img { object-position: 67% center; }
  .hero-bg::after { background: linear-gradient(0deg, rgba(6,10,8,.99) 0%, rgba(6,10,8,.72) 60%, rgba(6,10,8,.22) 100%); }
  .hero-content { padding: 230px 0 82px; }
  .hero h1 { font-size: clamp(51px, 15vw, 76px); }
  .hero-copy { font-size: 15px; }
  .actions { display: grid; }
  .button { width: 100%; }
  .proof-bar { margin-top: 0; }
  .proof { min-height: 110px; padding: 24px; }
  .section { padding: 86px 0; }
  .section-head { margin-bottom: 38px; }
  .section-head h2, .about-copy h2, .daycare-copy h2, .contact-copy h2 { font-size: 43px; }
  .intro-title span { font-size: 54px; }
  .intro-title span:last-child { margin-left: .35em; }
  .feature-list { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: auto; display: block; }
  .service-card:last-child .service-image { aspect-ratio: 4/4.15; }
  .service-body p { min-height: auto; }
  .daycare-panel { margin-inline: -15px; }
  .daycare-copy { padding: 54px 30px; }
  .daycare-photo { min-height: 420px; }
  .about-images { min-height: 480px; }
  .about-main { right: 9%; }
  .about-small { width: 45%; border-width: 8px; }
  .about-badge { width: 96px; height: 96px; right: 2%; border-width: 4px; }
  .quote-grid { grid-template-columns: 1fr; }
  .quote { padding: 34px 28px; }
  .quote blockquote { font-size: 21px; }
  .gallery { columns: 1; }
  .page-hero { min-height: 430px; }
  .page-hero-inner { padding-block: 90px 60px; }
  .page-hero h1 { font-size: 55px; }
  .page-hero-copy { font-size: 15px; }
  .content-page { padding: 72px 0 90px; }
  .detail-grid, .mission-grid, .team-grid, .form-grid { grid-template-columns: 1fr; }
  .mission-grid { margin-bottom: 58px; }
  .info-block, .mission-card, .callout { padding: 28px; }
  .service-row { grid-template-columns: 1fr; }
  .service-row img { height: auto; aspect-ratio: 4/3; object-position: center 32%; }
  .service-row-copy { padding: 30px; }
  .contact-panel { margin-inline: -15px; }
  .contact-copy, .contact-details { padding: 52px 28px; }
  .footer-inner { flex-direction: column; flex-wrap: nowrap; }
  .footer-brand { width: 220px; max-width: 75vw; flex-basis: auto; }
  .whatsapp-fab { right: 15px; bottom: 15px; width: 54px; padding: 0; justify-content: center; }
  .whatsapp-fab span { display: none; }
}

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

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