:root {
    --navy: #1d3a66;
    --navy-deep: #142a4d;
    --navy-soft: #eef2f9;
    --yellow: #ffc20e;
    --yellow-deep: #b57f00;
    --ink: #1e2c42;
    --ink-soft: #55657f;
    --line: #e3e8f0;
    --bg: #f7f9fc;
    --wa: #1da851;
    --radius: 18px;
    --shadow: 0 18px 46px rgb(20 42 77 / .10);
    --wrap: 1100px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation: none !important; transition: none !important; }
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }

a { color: var(--navy); }
:focus-visible { outline: 3px solid var(--yellow-deep); outline-offset: 3px; border-radius: 6px; }

.skip {
    position: absolute; left: -9999px; top: 0;
    background: var(--navy); color: #fff; padding: .7rem 1.1rem;
    border-radius: 0 0 10px 0; z-index: 100; text-decoration: none;
}
.skip:focus { left: 0; }

/* ---------- Header ---------- */
header {
    position: sticky; top: 0; z-index: 50;
    background: rgb(255 255 255 / .94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}
.bar { display: flex; align-items: center; gap: 1rem; min-height: 68px; }

.logo { display: flex; align-items: center; text-decoration: none; margin-right: auto; }

/* ---------- Logo lockup (recreated as vector, recolours by context) ---------- */
.logo-svg { height: 50px; width: auto; display: block; overflow: visible; }
.lg-tooth  { fill: var(--yellow); }
.lg-swoosh { fill: var(--yellow); }
.lg-band   { fill: var(--navy); }
.lg-word {
    fill: var(--navy);
    font-family: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 800; font-size: 44px; font-style: italic; letter-spacing: -1.5px;
}
.lg-sub {
    fill: #fff;
    font-family: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700; font-size: 11.5px; letter-spacing: 2px;
}
/* On the navy footer the wordmark flips to white and the band to a tint. */
.foot-logo .logo-svg { height: 54px; }
.foot-logo .lg-word { fill: #fff; }
.foot-logo .lg-band { fill: rgb(255 255 255 / .16); }

.mainnav { display: flex; gap: 1.35rem; }
.mainnav a {
    font-size: .92rem; font-weight: 600; color: var(--ink-soft);
    text-decoration: none; padding: .3rem 0;
    border-bottom: 2px solid transparent;
}
.mainnav a:hover { color: var(--navy); border-bottom-color: var(--yellow); }

/* ---------- Mobile menu (details/summary disclosure) ---------- */
.menu { display: none; }
.menu > summary {
    list-style: none; cursor: pointer;
    width: 40px; height: 40px; flex: none; border-radius: 11px;
    display: grid; place-items: center;
    background: var(--navy-soft); color: var(--navy);
    transition: background-color .15s ease, color .15s ease;
}
.menu > summary::-webkit-details-marker { display: none; }
.menu > summary:hover { background: var(--navy); color: #fff; }
.menu > summary svg { width: 21px; height: 21px; }
.menu .ic-close { display: none; }
.menu[open] > summary { background: var(--navy); color: #fff; }
.menu[open] .ic-open { display: none; }
.menu[open] .ic-close { display: block; }
/* Absolute against <header>, which is sticky and so is the containing block. */
.menu-panel {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 55;
    background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgb(20 42 77 / .13);
    padding: .6rem 1.25rem 1.15rem;
    display: grid; gap: 0;
}
.menu-panel a {
    padding: .85rem .2rem; font-size: .98rem; font-weight: 700;
    color: var(--navy); text-decoration: none;
    border-bottom: 1px solid var(--line);
}
.menu-panel a:hover { color: var(--yellow-deep); }
.menu-panel .btn { margin-top: .9rem; border-bottom: 0; color: #fff; }
.menu-panel .btn:hover { color: #fff; }

.social { display: flex; gap: .4rem; }
.social a {
    width: 34px; height: 34px; border-radius: 10px;
    display: grid; place-items: center;
    background: var(--navy-soft); color: var(--navy);
    transition: background-color .15s ease, color .15s ease;
}
.social a:hover { background: var(--navy); color: #fff; }
.social svg { width: 17px; height: 17px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .78rem 1.5rem; border-radius: 99px;
    font-size: .95rem; font-weight: 700; text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
    white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn-call { background: var(--navy); color: #fff; box-shadow: 0 8px 20px rgb(20 42 77 / .28); }
.btn-call:hover { background: var(--navy-deep); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 8px 20px rgb(29 168 81 / .3); }
.btn-ghost { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--navy); }
.btn-sm { padding: .58rem 1.1rem; font-size: .88rem; }

/* ---------- Decorative shapes ---------- */
.shape { position: absolute; z-index: 0; pointer-events: none; transform: rotate(45deg); }
.shape-a { top: -120px; left: -130px; width: 320px; height: 320px; background: var(--navy); border-radius: 52px; opacity: .07; }
.shape-b { top: 40px; right: -110px; width: 260px; height: 260px; background: var(--yellow); border-radius: 46px; opacity: .16; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 3.6rem 0 3.2rem; }
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 3rem; align-items: center; }

.eyebrow {
    display: inline-flex; align-items: center; gap: .45rem;
    background: var(--navy-soft); color: var(--navy);
    font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
    padding: .4rem .9rem; border-radius: 99px; margin-bottom: 1.1rem;
}
.eyebrow svg { width: 14px; height: 14px; }

h1 {
    font-size: clamp(1.95rem, 4.6vw, 2.85rem);
    line-height: 1.15; letter-spacing: -.02em;
    color: var(--navy); margin-bottom: 1rem;
}
h1 b { color: var(--yellow-deep); font-weight: 800; }

.lead { font-size: 1.06rem; color: var(--ink-soft); max-width: 34rem; margin-bottom: 1.7rem; }

.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hero-note { font-size: .88rem; color: var(--ink-soft); display: flex; align-items: flex-start; gap: .45rem; }
.hero-note svg { width: 16px; height: 16px; color: var(--yellow-deep); flex: none; margin-top: .28rem; }

/* ---------- Hero image ---------- */
.shots {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 22px;
    overflow: hidden;
    background: var(--navy-soft);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.shots img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Sections ---------- */
section { scroll-margin-top: 84px; }
.band { padding: 3.6rem 0; }
.band-alt { background: #fff; border-block: 1px solid var(--line); }

.head { max-width: 44rem; margin: 0 auto 2.5rem; text-align: center; }
.head h2 { font-size: clamp(1.5rem, 3.4vw, 2rem); color: var(--navy); letter-spacing: -.015em; line-height: 1.25; margin-bottom: .6rem; }
.head p { color: var(--ink-soft); }
.rule { width: 56px; height: 4px; border-radius: 99px; background: linear-gradient(90deg, var(--navy), var(--yellow)); margin: 0 auto 1.1rem; }

/* ---------- Services ---------- */
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.1rem; }
.service {
    background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.5rem 1.4rem;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.service:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #cfd9e8; }
.service-icon {
    width: 44px; height: 44px; border-radius: 13px;
    display: grid; place-items: center; margin-bottom: .9rem;
    background: var(--navy-soft); color: var(--navy);
}
.service-icon svg { width: 22px; height: 22px; }
.service h3 { font-size: 1.02rem; color: var(--navy); margin-bottom: .35rem; }
.service p { font-size: .92rem; color: var(--ink-soft); }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem 1.8rem; }
.feature { display: flex; gap: .95rem; align-items: flex-start; }
.feature-icon {
    width: 42px; height: 42px; flex: none; border-radius: 12px;
    display: grid; place-items: center;
    background: var(--yellow); color: var(--navy-deep);
}
.feature-icon svg { width: 21px; height: 21px; }
.feature h3 { font-size: 1rem; color: var(--navy); margin-bottom: .25rem; }
.feature p { font-size: .92rem; color: var(--ink-soft); }

/* ---------- First visit steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.6rem 1.4rem; counter-reset: step; }
.step { position: relative; padding-top: .3rem; counter-increment: step; }
.step::before {
    content: counter(step);
    display: grid; place-items: center;
    width: 34px; height: 34px; border-radius: 11px;
    background: var(--navy); color: var(--yellow);
    font-weight: 800; font-size: .95rem;
    margin-bottom: .75rem;
}
.step h3 { font-size: 1rem; color: var(--navy); margin-bottom: .3rem; }
.step p { font-size: .92rem; color: var(--ink-soft); }

/* ---------- Visit ---------- */
.visit { display: grid; grid-template-columns: 1fr 1fr; gap: 2.2rem; align-items: start; }
.info-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.8rem 1.7rem; }
.info-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 1.1rem; display: flex; align-items: center; gap: .55rem; }
.info-card h3 svg { width: 19px; height: 19px; color: var(--yellow-deep); }

.hours { list-style: none; display: grid; gap: .55rem; font-size: .94rem; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .55rem; border-bottom: 1px dashed var(--line); }
.hours li:last-child { border-bottom: 0; padding-bottom: 0; }
.hours span:first-child { color: var(--ink-soft); }
.hours span:last-child { font-weight: 700; color: var(--ink); text-align: right; }
.hours .closed { color: var(--ink-soft); font-weight: 600; }

.addr { font-size: .95rem; color: var(--ink-soft); display: grid; gap: 1rem; }
.addr-row { display: flex; gap: .7rem; align-items: flex-start; }
.addr-row svg { width: 18px; height: 18px; color: var(--yellow-deep); flex: none; margin-top: .25rem; }
.addr strong { display: block; color: var(--ink); }
.addr a { font-weight: 700; text-decoration: none; }
.addr a:hover { color: var(--yellow-deep); }

.areas { margin-top: 2.2rem; text-align: center; font-size: .93rem; color: var(--ink-soft); }
.areas h3 { font-size: 1rem; color: var(--navy); margin-bottom: .6rem; }
.chips { display: flex; flex-wrap: wrap; gap: .45rem; justify-content: center; margin-top: .8rem; }
.chip { background: #fff; border: 1px solid var(--line); border-radius: 99px; padding: .3rem .85rem; font-size: .84rem; font-weight: 600; color: var(--navy); }
.band-alt .chip { background: var(--bg); }

/* ---------- FAQ ---------- */
.faq { max-width: 46rem; margin: 0 auto; display: grid; gap: .7rem; }
.faq details {
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    padding: 0 1.2rem;
}
.faq summary {
    list-style: none; cursor: pointer;
    padding: 1.05rem 2rem 1.05rem 0; position: relative;
    font-weight: 700; color: var(--navy); font-size: .99rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: ""; position: absolute; right: .2rem; top: 50%;
    width: 9px; height: 9px; margin-top: -6px;
    border-right: 2.5px solid var(--yellow-deep);
    border-bottom: 2.5px solid var(--yellow-deep);
    transform: rotate(45deg);
    transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq p { padding-bottom: 1.1rem; font-size: .94rem; color: var(--ink-soft); }
.faq a { font-weight: 700; text-decoration: none; }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; background: var(--navy); color: #fff; padding: 3.4rem 0; text-align: center; }
.cta .shape-c { position: absolute; bottom: -140px; right: -100px; width: 300px; height: 300px; background: none; border: 3px solid var(--yellow); border-radius: 52px; transform: rotate(45deg); opacity: .38; }
.cta .shape-d { position: absolute; top: -120px; left: -90px; width: 240px; height: 240px; background: #fff; border-radius: 44px; transform: rotate(45deg); opacity: .06; }
.cta .wrap { position: relative; z-index: 1; }
.cta h2 { font-size: clamp(1.5rem, 3.4vw, 2rem); margin-bottom: .7rem; letter-spacing: -.015em; }
.cta p { color: #c7d4e8; max-width: 36rem; margin: 0 auto 1.8rem; }
.cta .actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.cta .btn-call { background: var(--yellow); color: var(--navy-deep); box-shadow: 0 8px 22px rgb(0 0 0 / .22); }
.cta .btn-call:hover { background: #ffcf3d; }
.cta .btn-ghost { background: transparent; color: #fff; border-color: rgb(255 255 255 / .35); }
.cta .btn-ghost:hover { border-color: #fff; }

/* ---------- Privacy ---------- */
.privacy { max-width: 46rem; margin: 0 auto; font-size: .93rem; color: var(--ink-soft); }
.privacy h2 { font-size: 1.3rem; color: var(--navy); margin-bottom: .9rem; }
.privacy p { margin-bottom: .8rem; }
.privacy p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
footer { background: var(--navy-deep); color: #a9bad4; padding: 2.6rem 0 1.6rem; font-size: .88rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 1.7rem; border-bottom: 1px solid rgb(255 255 255 / .12); }
.foot-col h3 { color: #fff; font-size: .84rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: .7rem; }
.foot-col ul { list-style: none; display: grid; gap: .4rem; }
footer a { color: #cddaee; text-decoration: none; }
footer a:hover { color: var(--yellow); }
.foot-social { display: flex; gap: .5rem; margin-top: .9rem; }
.foot-social a {
    width: 34px; height: 34px; border-radius: 10px;
    display: grid; place-items: center;
    background: rgb(255 255 255 / .1); color: #fff;
}
.foot-social a:hover { background: var(--yellow); color: var(--navy-deep); }
.foot-social svg { width: 17px; height: 17px; }
.foot-bottom { padding-top: 1.2rem; display: flex; flex-wrap: wrap; gap: .6rem; justify-content: space-between; font-size: .81rem; }

/* ---------- Brand accent bar pinned above the sticky header ---------- */
body::before {
    content: ""; position: fixed; inset: 0 0 auto 0; height: 4px; z-index: 60;
    background: linear-gradient(90deg, var(--navy) 0%, var(--navy) 45%, var(--yellow) 45%, var(--yellow) 100%);
}
header { top: 4px; }

/* ---------- Section eyebrow label ---------- */
.kicker {
    display: inline-block; margin-bottom: .55rem;
    font-size: .74rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
    color: var(--yellow-deep);
}

/* ---------- Navy contrast band ---------- */
.band-navy { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.band-navy .wrap { position: relative; z-index: 1; }
.band-navy .kicker { color: var(--yellow); }
.band-navy .head h2 { color: #fff; }
.band-navy .head p { color: #c1d0e6; }
.band-navy .feature h3 { color: #fff; }
.band-navy .feature p { color: #b3c4dd; }
.band-navy .shape-e {
    position: absolute; top: -110px; right: -90px; width: 260px; height: 260px;
    background: none; border: 3px solid var(--yellow); border-radius: 46px; transform: rotate(45deg); opacity: .35;
}
.band-navy .shape-f {
    position: absolute; bottom: -130px; left: -90px; width: 240px; height: 240px;
    background: #fff; border-radius: 44px; transform: rotate(45deg); opacity: .05;
}

/* ---------- Service card polish ---------- */
.service { position: relative; overflow: hidden; }
.service::after {
    content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
    background: linear-gradient(90deg, var(--navy), var(--yellow));
    transition: width .25s ease;
}
.service:hover::after { width: 100%; }
.service-icon { transition: background-color .2s ease, color .2s ease; }
.service:hover .service-icon { background: var(--navy); color: var(--yellow); }

/* ---------- Yellow offset frame behind the hero slideshow ---------- */
.shots-frame { position: relative; }
.shots-frame::before {
    content: ""; position: absolute; inset: 18px -18px -18px 18px;
    border: 3px solid var(--yellow); border-radius: 24px; z-index: 0;
}
.shots-frame .shots { position: relative; z-index: 1; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.1rem; }
.quote {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.6rem 1.5rem;
    display: flex; flex-direction: column; gap: .9rem;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.quote:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #cfd9e8; }
.stars { display: flex; gap: .1rem; color: var(--yellow); }
.stars svg { width: 17px; height: 17px; }
.quote blockquote { font-size: .95rem; color: var(--ink-soft); }
.quote figcaption { display: flex; align-items: center; gap: .65rem; margin-top: auto; }
.quote-avatar {
    width: 36px; height: 36px; border-radius: 50%; flex: none;
    display: grid; place-items: center;
    background: var(--navy); color: var(--yellow); font-weight: 800; font-size: .9rem;
}
.quote-who strong { display: block; color: var(--ink); font-weight: 700; font-size: .9rem; }
.quote-who span { color: var(--ink-soft); font-size: .81rem; }
.quotes-more { text-align: center; margin-top: 1.9rem; }

/* ---------- Steps connector ---------- */
.step { position: relative; }
.step::after {
    content: ""; position: absolute; left: 40px; top: 17px; right: -1.4rem; height: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
}
.step:last-child::after { display: none; }

.chip { transition: background-color .15s ease, border-color .15s ease, color .15s ease; }
.chip:hover { background: var(--navy); border-color: var(--navy); color: var(--yellow); }

footer { border-top: 4px solid var(--yellow); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .hero-grid { grid-template-columns: 1fr; gap: 2.2rem; }
    .visit { grid-template-columns: 1fr; gap: 1.4rem; }
    .foot-grid { grid-template-columns: 1fr 1fr; }
    /* The offset frame and the step connectors only read correctly in the wide layout. */
    .shots-frame::before { display: none; }
    .step::after { display: none; }
}
/* Header shrinks in stages: social icons go, then the desktop nav is
   replaced by the hamburger, then the WhatsApp button moves into the menu,
   and finally the call button drops to icon only. */
@media (max-width: 1150px) {
    .social { display: none; }
}
@media (max-width: 980px) {
    .mainnav { display: none; }
    .menu { display: block; }
    /* Header WhatsApp gives way to the floating button below this width. */
    .nav-wa { display: none; }
}
@media (max-width: 760px) {
    .hero { padding: 2.6rem 0 2.4rem; }
    .band { padding: 2.8rem 0; }
    .lead { font-size: 1rem; }
}
@media (max-width: 520px) {
    .foot-grid { grid-template-columns: 1fr; gap: 1.6rem; }
}
@media (max-width: 430px) {
    .call-num { display: none; }
    .btn-call.btn-sm { padding: .58rem .8rem; }
}
@media (max-width: 420px) {
    .hero-actions .btn, .cta .actions .btn { width: 100%; }
}

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 2.6rem; align-items: center; }
.about-copy p { margin-bottom: 1rem; color: var(--ink-soft); }
.about-copy p:last-child { margin-bottom: 0; }
.about-copy strong { color: var(--ink); }
.about-card {
    background: var(--navy); color: #fff; border-radius: var(--radius);
    padding: 2.1rem 2rem; box-shadow: var(--shadow);
    position: relative; overflow: hidden;
}
.about-card h3 { font-size: 1rem; color: #fff; margin-bottom: 1.1rem; }
.about-card ul { list-style: none; display: grid; gap: 1.05rem; margin-bottom: 1.6rem; }
.about-card li { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; color: #c3d2e8; }
.about-card li svg { width: 18px; height: 18px; color: var(--yellow); flex: none; margin-top: .2rem; }
.about-card li strong { display: block; color: #fff; font-weight: 700; }
.about-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.about-actions .btn { flex: 1 1 170px; }
.about-card .btn-call { background: var(--yellow); color: var(--navy-deep); }
.about-card .btn-call:hover { background: #ffcf3d; }

/* ---------- Legal pages ---------- */
.legal { max-width: 48rem; margin: 0 auto; }
.legal h2 { font-size: 1.25rem; color: var(--navy); margin: 2.2rem 0 .7rem; letter-spacing: -.01em; }
.legal h2:first-of-type { margin-top: 0; }
.legal h3 { font-size: 1rem; color: var(--navy); margin: 1.4rem 0 .4rem; }
.legal p, .legal li { color: var(--ink-soft); font-size: .96rem; }
.legal p { margin-bottom: .9rem; }
.legal ul { margin: 0 0 .9rem 1.1rem; display: grid; gap: .35rem; }
.legal a { font-weight: 700; }
.legal-meta {
    background: var(--navy-soft); border-radius: 12px;
    padding: .9rem 1.1rem; font-size: .88rem; color: var(--ink-soft); margin-bottom: 2rem;
}
.legal-meta strong { color: var(--ink); }
.page-head { text-align: center; max-width: 44rem; margin: 0 auto 2.4rem; }
.page-head h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: .5rem; }
.page-head p { color: var(--ink-soft); }

/* ---------- Floating WhatsApp button (responsive only) ---------- */
.wa-float {
    position: fixed; right: 1rem; z-index: 150;
    bottom: 1rem;                                    /* fallback */
    bottom: max(1rem, env(safe-area-inset-bottom));  /* clears the iOS home bar */
    width: 56px; height: 56px; border-radius: 50%;
    display: none; place-items: center;
    background: var(--wa); color: #fff;
    box-shadow: 0 10px 26px rgb(29 168 81 / .45);
    transition: transform .15s ease, box-shadow .15s ease;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgb(29 168 81 / .55); }

/* ---------- Cookie consent ---------- */
.cookie {
    position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 200;
    max-width: 720px; margin: 0 auto;
    background: #fff; border: 1px solid var(--line); border-radius: 16px;
    box-shadow: 0 22px 50px rgb(20 42 77 / .22);
    padding: 1.2rem 1.3rem;
    display: none;
}
.cookie[data-show="1"] { display: block; }
.cookie h2 { font-size: 1rem; color: var(--navy); margin-bottom: .4rem; }
.cookie p { font-size: .9rem; color: var(--ink-soft); margin-bottom: 1rem; }
.cookie a { font-weight: 700; }
.cookie-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie-actions .btn { flex: 1 1 auto; }
.btn-plain { background: var(--navy-soft); color: var(--navy); }
.btn-plain:hover { background: #e2e9f5; }
@media (max-width: 560px) {
    .cookie-actions .btn { width: 100%; }
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 1.6rem; }
}

@media (max-width: 480px) {
    .about-actions .btn { flex: 1 1 100%; }
}

/* The floating button is declared further up the file, so its reveal has to
   come after that base rule to win the cascade at equal specificity. */
@media (max-width: 980px) {
    .wa-float { display: grid; }
}
