:root {
    --bg: #090a0d;
    --bg-soft: #101217;
    --surface: #14171d;
    --surface-2: #191d25;
    --text: #f4f5f7;
    --muted: #a8afba;
    --line: rgba(255,255,255,.11);
    --blue: #123f70;
    --blue-bright: #1a5b9f;
    --red: #d51e2b;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(0,0,0,.42);
    --radius: 24px;
    --radius-sm: 14px;
    --container: min(1180px, calc(100% - 40px));
    --header-height: 88px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
address { font-style: normal; }
figure { margin: 0; }

.container { width: var(--container); margin-inline: auto; }
.narrow { max-width: 820px; }
.section { padding: 110px 0; position: relative; }
.centered { text-align: center; margin-inline: auto; }
.centered-actions { justify-content: center; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
    position: fixed; z-index: 9999; top: 12px; left: 12px; transform: translateY(-150%);
    background: white; color: black; padding: 12px 18px; border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.eyebrow {
    margin: 0 0 16px;
    color: #8fb8e3;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .19em;
    text-transform: uppercase;
}
.section-heading { max-width: 690px; margin-bottom: 48px; }
.section-heading.centered { margin-bottom: 58px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: -.035em;
    line-height: 1.08;
}
h1 { font-size: clamp(3.1rem, 7vw, 6.7rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 4rem); }
h3 { font-size: 1.35rem; }
p { color: var(--muted); }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    font-size: .92rem;
    letter-spacing: .01em;
    transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid rgba(90,161,230,.55); outline-offset: 3px; }
.button-primary {
    color: white;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue));
    box-shadow: 0 12px 30px rgba(18,63,112,.36);
}
.button-primary:hover { box-shadow: 0 16px 36px rgba(18,63,112,.5); }
.button-outline { color: white; border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.03); }
.button-outline:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.07); }
.button-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.button-large { min-height: 56px; padding-inline: 28px; }
.text-link, .footer-link, .service-link, .team-info a {
    color: #b7d7f7;
    font-weight: 750;
    transition: color .2s ease;
}
.text-link:hover, .footer-link:hover, .service-link:hover, .team-info a:hover { color: white; }

.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    height: var(--header-height);
    background: rgba(9,10,13,.76);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(18px);
    transition: background .25s ease, border-color .25s ease, height .25s ease;
}
.site-header.scrolled { background: rgba(9,10,13,.94); border-color: var(--line); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { width: 132px; height: 64px; display: grid; place-items: center; overflow: hidden; }
.brand img { width: 136px; max-width: none; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { color: #c7ccd4; font-size: .92rem; font-weight: 700; position: relative; }
.site-nav a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px;
    background: var(--blue-bright); transition: right .22s ease;
}
.site-nav a:hover, .site-nav a.active { color: white; }
.site-nav a:hover::after, .site-nav a.active::after { right: 0; }
.brand-stripe { position: absolute; right: 0; bottom: -1px; display: flex; flex-direction: column; gap: 2px; width: 72px; transform: skewY(-12deg); transform-origin: right; }
.brand-stripe span { height: 3px; }
.brand-stripe span:first-child { background: #0b43ff; }
.brand-stripe span:last-child { background: #ff1010; }
.menu-toggle { display: none; border: 0; background: transparent; width: 44px; height: 44px; padding: 9px; }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; background: white; margin: 5px 0; transition: transform .2s ease, opacity .2s ease; }

.hero {
    position: relative;
    min-height: 100svh;
    padding: calc(var(--header-height) + 70px) 0 72px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 20%, rgba(20,75,129,.22), transparent 32%),
        linear-gradient(145deg, #08090c 0%, #0c0e13 58%, #0a111a 100%);
}
.hero::before {
    content: ""; position: absolute; inset: auto -10% -35% auto; width: 650px; height: 650px;
    border: 1px solid rgba(255,255,255,.05); border-radius: 50%; box-shadow: 0 0 0 80px rgba(255,255,255,.018), 0 0 0 160px rgba(255,255,255,.012);
}
.hero-noise { position: absolute; inset: 0; opacity: .12; pointer-events: none; background-image: radial-gradient(rgba(255,255,255,.25) .55px, transparent .55px); background-size: 5px 5px; mix-blend-mode: soft-light; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; position: relative; z-index: 1; }
.hero-copy { max-width: 720px; }
.hero h1 { margin-bottom: 26px; }
.hero h1 span { color: #c7d8e9; }
.hero-lead { max-width: 610px; font-size: clamp(1.05rem, 1.5vw, 1.24rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 26px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; list-style: none; padding: 0; margin: 0; color: #c9ced7; font-size: .86rem; }
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #5a9bd8; box-shadow: 0 0 0 5px rgba(90,155,216,.12); }
.hero-visual { position: relative; }
.hero-frame {
    position: relative;
    width: min(440px, 100%);
    margin-left: auto;
    border-radius: 220px 220px 30px 30px;
    overflow: hidden;
    min-height: 620px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,.13);
    background: var(--surface);
}
.hero-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(4,5,8,.88) 0%, transparent 42%); pointer-events: none; }
.hero-frame img { width: 100%; height: 100%; min-height: 620px; object-fit: cover; object-position: center; }
.hero-card { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 24px; padding: 18px 20px; border-radius: 16px; background: rgba(9,10,13,.78); border: 1px solid rgba(255,255,255,.14); backdrop-filter: blur(12px); }
.hero-card strong, .hero-card span { display: block; }
.hero-card strong { font-size: 1.02rem; }
.hero-card span { color: var(--muted); font-size: .88rem; }
.scroll-indicator { position: absolute; left: 50%; bottom: 24px; width: 28px; height: 46px; border: 1px solid rgba(255,255,255,.25); border-radius: 999px; transform: translateX(-50%); }
.scroll-indicator span { position: absolute; width: 4px; height: 8px; border-radius: 99px; background: white; left: 50%; top: 10px; transform: translateX(-50%); animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%,0); } 25% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,14px); } }

.experience-section { background: #0d0f14; }
.split-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 80px; align-items: start; }
.experience-copy > p { font-size: 1.08rem; max-width: 700px; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 40px; }
.feature-grid article { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.025); }
.feature-number { display: block; color: #6fa8df; font-weight: 900; font-size: .76rem; letter-spacing: .13em; margin-bottom: 28px; }
.feature-grid h3 { margin-bottom: 10px; font-family: inherit; letter-spacing: -.02em; }
.feature-grid p { margin-bottom: 0; font-size: .92rem; }

.services-section { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-card { position: relative; min-height: 255px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: linear-gradient(150deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); display: flex; flex-direction: column; transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.service-card:hover { transform: translateY(-5px); border-color: rgba(117,174,227,.34); background: linear-gradient(150deg, rgba(20,71,120,.2), rgba(255,255,255,.02)); }
.service-premium { border-color: rgba(69,130,187,.58); background: linear-gradient(145deg, rgba(20,72,122,.34), rgba(8,16,26,.62)); }
.service-featured { box-shadow: inset 0 0 0 1px rgba(255,255,255,.04); }
.service-badge { align-self: flex-start; margin-bottom: 16px; padding: 5px 9px; border-radius: 999px; background: rgba(44,104,162,.24); color: #bddcff; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.service-head { display: flex; justify-content: space-between; gap: 18px; align-items: flex-start; }
.service-head h3, .service-head h2 { font-family: inherit; font-size: 1.08rem; letter-spacing: -.02em; margin-bottom: 14px; }
.service-head strong { color: white; white-space: nowrap; }
.service-card p { font-size: .9rem; margin-bottom: 24px; }
.service-link { margin-top: auto; font-size: .88rem; }

.executive-section { background: #101319; overflow: hidden; }
.executive-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 90px; align-items: center; }
.executive-media { position: relative; width: min(430px,100%); }
.executive-media::before { content: ""; position: absolute; inset: 24px -24px -24px 24px; border: 1px solid rgba(70,132,192,.32); border-radius: var(--radius); }
.executive-media img { position: relative; z-index: 1; border-radius: var(--radius); width: 100%; max-height: 620px; object-fit: cover; }
.executive-price { position: absolute; z-index: 2; right: -34px; bottom: 34px; width: 130px; height: 130px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: #f5f6f7; color: #0b0c0f; box-shadow: var(--shadow); }
.executive-price span { font-size: .66rem; text-transform: uppercase; letter-spacing: .11em; }
.executive-price strong { font-family: Georgia,serif; font-size: 1.55rem; }
.executive-copy p { max-width: 690px; }
.check-list { list-style: none; padding: 0; margin: 26px 0 34px; display: grid; grid-template-columns: 1fr 1fr; gap: 11px 24px; color: #d5d8df; }
.check-list li { position: relative; padding-left: 24px; font-size: .92rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: #7eb0df; font-weight: 900; }

.gallery-section { background: #090a0d; }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 250px; gap: 12px; }
.gallery-grid figure { overflow: hidden; border-radius: 16px; background: var(--surface); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.035); }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.centered-action { text-align: center; margin-top: 38px; }

.team-section { background: #0d0f14; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card { overflow: hidden; border-radius: var(--radius); background: #15181e; border: 1px solid var(--line); }
.team-photo { aspect-ratio: 1/1; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.team-card:hover .team-photo img { transform: scale(1.03); }
.team-info { padding: 22px 24px 26px; }
.team-info h3, .team-info h2 { margin-bottom: 8px; font-family: inherit; letter-spacing: -.02em; }
.team-info h2 { font-size: 1.4rem; }
.team-info p { font-size: .9rem; }
.team-info a { font-size: .88rem; }

.space-section { min-height: 720px; padding: 0; display: grid; align-items: center; overflow: hidden; }
.space-image { position: absolute; inset: 0; }
.space-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,9,12,.92) 0%, rgba(8,9,12,.62) 46%, rgba(8,9,12,.2) 100%); }
.space-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.space-content { position: relative; z-index: 2; padding-block: 110px; }
.space-card { max-width: 620px; padding: 38px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.16); background: rgba(9,10,13,.76); backdrop-filter: blur(12px); box-shadow: var(--shadow); }
.space-facts { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.space-facts span { padding: 8px 12px; border-radius: 999px; border: 1px solid var(--line); color: #d8dde5; font-size: .8rem; }

.reviews-section { background: #f1f3f6; color: #0a0c0f; }
.reviews-section p { color: #59616c; }
.reviews-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: center; }
.review-visual { padding: 46px; border-radius: var(--radius); background: white; box-shadow: 0 25px 60px rgba(10,20,30,.12); border: 1px solid rgba(0,0,0,.06); }
.review-google-label { display: inline-flex; padding: 8px 13px; border-radius: 999px; background: #f1f3f6; color: #1f2937; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: .75rem; margin-bottom: 20px; }
.review-visual p { font-family: Georgia,serif; font-size: 1.8rem; line-height: 1.25; color: #15181d; }
.review-visual span { color: #747b85; font-size: .86rem; }

.instagram-section { background: #0a0b0e; }
.instagram-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 38px; }
.instagram-header h2 { margin-bottom: 0; }
.instagram-feed { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.insta-item { aspect-ratio: 1/1; overflow: hidden; position: relative; background: var(--surface); }
.insta-item::after { content: "↗"; position: absolute; top: 12px; right: 12px; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(9,10,13,.76); color: white; opacity: 0; transform: translateY(5px); transition: opacity .2s ease, transform .2s ease; }
.insta-item:hover::after { opacity: 1; transform: translateY(0); }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.insta-item:hover img { transform: scale(1.035); }

.location-section { background: #101319; }
.location-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: stretch; }
.location-info address { color: #b9c0ca; margin-bottom: 28px; }
.location-info address strong { color: white; font-size: 1.12rem; }
.location-neighborhoods { max-width: 560px; font-size: .88rem; margin: -12px 0 24px; }
.location-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hours-table { border-top: 1px solid var(--line); }
.hours-table > div { display: flex; justify-content: space-between; gap: 18px; padding: 11px 0; border-bottom: 1px solid var(--line); color: #c8cdd5; }
.hours-table strong { color: white; }
.map-wrapper { min-height: 610px; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); background: linear-gradient(135deg, #171b22, #0b0d12); }
.map-wrapper iframe { width: 100%; height: 100%; min-height: 610px; border: 0; }
.map-consent { height: 100%; min-height: 610px; display: grid; place-content: center; text-align: center; padding: 30px; }
.map-consent strong { font-family: Georgia,serif; font-size: 2rem; }
.map-consent p { max-width: 380px; margin: 12px auto 22px; }
.map-consent .text-link { margin-top: 14px; font-size: .84rem; }

.final-cta { padding: 84px 0; background: radial-gradient(circle at 10% 10%, rgba(35,94,151,.33), transparent 38%), #0a0c11; border-top: 1px solid var(--line); }
.final-cta-inner { display: flex; justify-content: space-between; gap: 40px; align-items: center; }
.final-cta h2 { max-width: 780px; margin-bottom: 0; }

.site-footer { padding: 74px 0 110px; background: #06070a; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3,1fr); gap: 50px; }
.footer-brand img { width: 165px; margin-bottom: 22px; }
.footer-brand p { max-width: 290px; }
.site-footer h2 { font-family: inherit; font-size: .84rem; letter-spacing: .11em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer p, .site-footer address { font-size: .86rem; color: #9098a5; }
.footer-link { display: block; margin: 8px 0; font-size: .86rem; }
.cookie-settings-link { padding: 0; border: 0; background: transparent; color: #aeb7c4; font: inherit; text-align: left; cursor: pointer; }
.cookie-settings-link:hover, .cookie-settings-link:focus-visible { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); padding-top: 24px; margin-top: 54px; }
.footer-bottom p { margin: 0; font-size: .76rem; }

.floating-actions { position: fixed; z-index: 850; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 10px; }
.floating-booking { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 13px 24px; border-radius: 999px; background: linear-gradient(135deg, var(--blue-bright), var(--blue)); color: white; font-weight: 850; box-shadow: 0 14px 36px rgba(0,0,0,.4); }
.floating-whatsapp { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: #1f9e59; box-shadow: 0 14px 36px rgba(0,0,0,.4); }
.floating-whatsapp svg { width: 25px; fill: white; }
.floating-whatsapp span { display: none; }

.cookie-banner { position: fixed; z-index: 2000; left: 20px; right: 20px; bottom: 20px; max-width: 980px; margin-inline: auto; padding: 22px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border: 1px solid rgba(255,255,255,.16); border-radius: 18px; background: rgba(16,18,23,.97); box-shadow: var(--shadow); backdrop-filter: blur(18px); }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { display: block; margin-bottom: 5px; }
.cookie-banner p { margin: 0; font-size: .84rem; }
.cookie-banner p a { color: #8cc4fa; text-decoration: underline; text-underline-offset: 3px; }
.cookie-actions { display: flex; flex-shrink: 0; gap: 10px; }

.page-hero { padding: calc(var(--header-height) + 75px) 0 80px; background: radial-gradient(circle at 80% 10%, rgba(20,75,129,.22), transparent 30%), #0a0c10; overflow: hidden; }
.page-hero-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 80px; align-items: center; }
.page-hero h1 { font-size: clamp(3rem, 6vw, 5.8rem); margin-bottom: 24px; }
.page-hero p { max-width: 680px; font-size: 1.08rem; }
.page-hero-image { max-height: 570px; border-radius: 220px 220px 24px 24px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.page-hero-image img { width: 100%; height: 570px; object-fit: cover; }
.services-grid-full .service-card { min-height: 275px; }
.service-info-section { background: #0d0f14; }
.info-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.info-cards article { padding: 30px; border: 1px solid var(--line); background: rgba(255,255,255,.025); border-radius: var(--radius-sm); }
.info-cards span { color: #77aee2; font-weight: 900; font-size: .76rem; letter-spacing: .12em; }
.info-cards h2 { font-family: inherit; font-size: 1.25rem; margin: 28px 0 10px; }
.info-cards p { margin-bottom: 0; }
.team-grid-large .team-card { min-height: 500px; }
.team-booking-section { background: #101319; }
.contact-details-section { background: #0c0e12; }
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.contact-cards article { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--surface); }
.contact-label { display: block; color: #7aaee0; font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 26px; }
.contact-cards h2 { font-family: inherit; font-size: 1.22rem; }
.small-note { font-size: .82rem; margin-top: 20px; }
.legal-hero { padding-bottom: 70px; }
.legal-hero h1 { margin-bottom: 18px; }
.legal-content { background: #f4f5f7; color: #14171c; }
.prose { max-width: 860px; }
.prose h2 { font-family: inherit; font-size: 1.35rem; letter-spacing: -.02em; margin: 42px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: #4f5864; }
.prose a { color: #174f86; font-weight: 800; }
.error-section { min-height: 75svh; display: grid; place-items: center; padding: calc(var(--header-height) + 70px) 0 80px; }
.error-section h1 { font-size: clamp(3rem, 7vw, 6rem); }

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

@media (max-width: 1040px) {
    :root { --container: min(100% - 32px, 940px); }
    .site-nav { gap: 20px; }
    .header-cta { display: none; }
    .hero-grid, .page-hero-grid { gap: 42px; }
    .hero-frame { min-height: 560px; }
    .hero-frame img { min-height: 560px; }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-grid article { display: grid; grid-template-columns: 48px 1fr; column-gap: 12px; }
    .feature-grid article p { grid-column: 2; }
    .feature-number { margin-bottom: 0; }
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
    :root { --header-height: 72px; --container: min(100% - 28px, 720px); }
    .section { padding: 80px 0; }
    .brand { width: 102px; height: 52px; }
    .brand img { width: 108px; }
    .menu-toggle { display: block; margin-left: auto; }
    .site-nav {
        position: fixed; inset: var(--header-height) 0 auto; height: calc(100svh - var(--header-height));
        display: flex; flex-direction: column; align-items: stretch; gap: 0; padding: 24px 20px 110px;
        background: rgba(9,10,13,.985); transform: translateX(100%); visibility: hidden; transition: transform .25s ease, visibility .25s ease;
    }
    .site-nav.open { transform: translateX(0); visibility: visible; }
    .site-nav a { padding: 18px 4px; font-family: Georgia,serif; font-size: 1.7rem; border-bottom: 1px solid var(--line); }
    .site-nav a::after { display: none; }
    .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .hero { min-height: auto; padding-top: calc(var(--header-height) + 42px); }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-copy { text-align: left; }
    .hero h1 { font-size: clamp(3.15rem, 14vw, 5.2rem); }
    .hero-frame { width: 100%; max-height: 620px; border-radius: 180px 180px 24px 24px; }
    .hero-frame img { min-height: 600px; }
    .scroll-indicator { display: none; }
    .split-grid, .executive-grid, .reviews-grid, .location-grid, .page-hero-grid { grid-template-columns: 1fr; gap: 42px; }
    .section-heading { margin-bottom: 36px; }
    .feature-grid { margin-top: 30px; }
    .executive-media { margin-inline: auto; }
    .check-list { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 230px; }
    .gallery-wide { grid-column: span 2; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .team-card:last-child { grid-column: 1 / -1; width: calc(50% - 12px); justify-self: center; }
    .space-section { min-height: 640px; }
    .space-image::after { background: rgba(8,9,12,.65); }
    .instagram-header { align-items: flex-start; flex-direction: column; }
    .instagram-feed { grid-template-columns: repeat(2,1fr); }
    .map-wrapper, .map-wrapper iframe, .map-consent { min-height: 480px; }
    .final-cta-inner { align-items: flex-start; flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: auto; }
    .page-hero-image { max-height: 500px; border-radius: 160px 160px 20px 20px; }
    .page-hero-image img { height: 500px; }
    .contact-cards, .info-cards { grid-template-columns: 1fr; }
    .cookie-banner { align-items: stretch; flex-direction: column; }
    .cookie-actions { width: 100%; }
    .cookie-actions .button { flex: 1; }
}

@media (max-width: 560px) {
    :root { --container: min(100% - 22px, 520px); }
    body { font-size: 15px; padding-bottom: 72px; }
    .section { padding: 66px 0; }
    .brand-stripe { width: 54px; }
    h2 { font-size: clamp(2rem, 10vw, 3rem); }
    .hero { padding-bottom: 44px; }
    .hero h1 { font-size: clamp(2.75rem, 14vw, 4.5rem); }
    .hero-lead { font-size: 1rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-trust { gap: 12px 18px; }
    .hero-frame { min-height: 500px; border-radius: 140px 140px 20px 20px; }
    .hero-frame img { min-height: 500px; }
    .hero-card { left: 14px; right: 14px; bottom: 14px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 225px; }
    .executive-price { right: -4px; bottom: 18px; width: 112px; height: 112px; }
    .gallery-grid { grid-auto-rows: 180px; }
    .team-grid { grid-template-columns: 1fr; }
    .team-card:last-child { grid-column: auto; width: auto; }
    .space-card { padding: 26px; }
    .review-visual { padding: 30px; }
    .review-visual p { font-size: 1.45rem; }
    .instagram-feed { gap: 5px; }
    .location-actions { flex-direction: column; }
    .location-actions .button { width: 100%; }
    .hours-table > div { font-size: .88rem; }
    .map-wrapper, .map-wrapper iframe, .map-consent { min-height: 390px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; }
    .floating-actions { left: 0; right: 0; bottom: 0; gap: 0; height: 66px; background: #08090c; border-top: 1px solid var(--line); padding: 8px; }
    .floating-booking { flex: 1; height: 50px; min-height: 50px; border-radius: 12px; }
    .floating-whatsapp { width: 54px; height: 50px; border-radius: 12px; margin-right: 8px; }
    .cookie-banner { left: 10px; right: 10px; bottom: 76px; padding: 18px; }
    .cookie-actions { flex-direction: column-reverse; }
    .page-hero { padding-top: calc(var(--header-height) + 48px); }
    .page-hero h1 { font-size: clamp(2.75rem, 13vw, 4.2rem); }
    .page-hero-image, .page-hero-image img { height: 430px; }
    .page-hero-image { border-radius: 130px 130px 18px 18px; }
}

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