:root {
  --bg: #f3eee6;
  --bg-2: #e7ddd1;
  --paper: #fffdfa;
  --ink: #191715;
  --muted: #6f685f;
  --accent: #7b654f;
  --accent-dark: #4f4032;
  --line: rgba(25, 23, 21, .13);
  --white: #fff;
  --shadow: 0 24px 70px rgba(53, 43, 35, .14);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1240px;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  direction: rtl;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: #cfc0af; color: var(--ink); }

.skip-link {
  position: fixed;
  inset-inline-start: 20px;
  top: -70px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 0 0 12px 12px;
  background: var(--ink);
  color: white;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 108px 0; }
.section-sm { padding: 72px 0; }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.section-title {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -.04em;
  font-weight: 500;
}
.section-subtitle {
  margin: 22px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.22rem);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: var(--header-h);
  transition: background .3s ease, box-shadow .3s ease, color .3s ease;
  color: white;
}
.site-header.is-scrolled {
  background: rgba(248, 244, 238, .93);
  color: var(--ink);
  box-shadow: 0 6px 25px rgba(0,0,0,.08);
  backdrop-filter: blur(16px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
  min-width: 165px;
}
.brand-mark { font-size: 1.75rem; letter-spacing: .08em; font-weight: 300; }
.brand-sub { margin-top: 5px; font-size: .57rem; letter-spacing: .17em; text-transform: uppercase; opacity: .75; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { text-decoration: none; font-size: .93rem; position: relative; }
.nav a:not(.btn)::after { content: ""; position: absolute; inset: auto 0 -8px; height: 1px; transform: scaleX(0); transform-origin: right; background: currentColor; transition: transform .25s ease; }
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
.menu-toggle { display: none; border: 0; background: transparent; color: inherit; width: 44px; height: 44px; border-radius: 50%; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 23px; height: 1px; margin: 5px auto; background: currentColor; transition: .25s; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  text-decoration: none;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.btn-light { background: white; color: var(--ink); }
.btn-ghost { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); color: white; backdrop-filter: blur(8px); }
.btn-outline { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-sm { min-height: 42px; padding-inline: 19px; font-size: .88rem; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #81776f;
  color: white;
}
.hero-media { position: absolute; inset: 0; }
.hero-media picture, .hero-media img { width: 100%; height: 100%; }
.hero-media img { object-fit: cover; object-position: center; transform: scale(1.02); animation: heroZoom 16s ease-out both; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,12,10,.32) 0%, rgba(18,15,13,.05) 42%, rgba(18,15,13,.72) 100%); }
.hero-glow { position: absolute; width: 58vw; height: 58vw; left: -18vw; bottom: -30vw; border-radius: 50%; background: rgba(239,221,201,.22); filter: blur(90px); }
.hero-content { position: relative; z-index: 2; padding: calc(var(--header-h) + 70px) 0 70px; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .65fr); align-items: end; gap: 70px; }
.hero h1 { margin: 0; max-width: 840px; font-size: clamp(3.6rem, 8.6vw, 8.5rem); line-height: .91; letter-spacing: -.055em; font-weight: 300; }
.hero h1 span { display: block; margin-top: 19px; font-size: clamp(1.8rem, 4vw, 3.8rem); line-height: 1.05; letter-spacing: -.035em; }
.hero-copy { max-width: 430px; }
.hero-copy p { margin: 0 0 26px; font-size: clamp(1rem, 1.8vw, 1.25rem); color: rgba(255,255,255,.87); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-scroll { position: absolute; left: 28px; bottom: 34px; writing-mode: vertical-rl; font-size: .73rem; letter-spacing: .17em; opacity: .72; text-transform: uppercase; }
.hero-scroll::after { content: ""; display: inline-block; width: 1px; height: 54px; margin-top: 14px; background: currentColor; animation: scrollLine 2s infinite; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1.01); } }
@keyframes scrollLine { 0%,100% { transform: scaleY(.3); transform-origin: top; } 50% { transform: scaleY(1); } }

.value-strip { background: var(--ink); color: white; }
.value-grid { min-height: 115px; display: grid; grid-template-columns: repeat(4,1fr); }
.value-item { display: flex; align-items: center; gap: 15px; padding: 25px 28px; border-inline-start: 1px solid rgba(255,255,255,.12); }
.value-item:first-child { border-inline-start: 0; }
.value-num { width: 38px; height: 38px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; font-size: .72rem; }
.value-item strong { display: block; font-size: .95rem; }
.value-item small { color: rgba(255,255,255,.62); }

.intro-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 88px; align-items: center; }
.intro-image { position: relative; min-height: 690px; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); }
.intro-image img { width: 100%; height: 100%; object-fit: cover; }
.intro-image::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); border-radius: inherit; pointer-events: none; }
.intro-copy p { font-size: 1.12rem; color: var(--muted); }
.signature-line { margin-top: 35px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.signature-line strong { font-size: 1.1rem; }

.video-section { background: #171512; color: white; overflow: hidden; }
.video-header { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 42px; }
.video-header .section-subtitle { color: rgba(255,255,255,.65); margin-inline-start: auto; max-width: 510px; }
.video-shell { position: relative; border-radius: var(--radius-xl); overflow: hidden; background: black; box-shadow: 0 35px 90px rgba(0,0,0,.36); }
.video-shell video { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.video-note { display: flex; justify-content: space-between; gap: 20px; margin-top: 18px; color: rgba(255,255,255,.58); font-size: .83rem; }

.features-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 22px; margin-top: 55px; }
.feature-card { position: relative; min-height: 420px; overflow: hidden; border-radius: var(--radius-lg); background: var(--paper); box-shadow: 0 18px 50px rgba(62,50,40,.08); }
.feature-card:nth-child(1), .feature-card:nth-child(4) { grid-column: span 7; }
.feature-card:nth-child(2), .feature-card:nth-child(3) { grid-column: span 5; }
.feature-image { height: 245px; overflow: hidden; background: #eee7de; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.feature-card:hover .feature-image img { transform: scale(1.045); }
.feature-content { padding: 28px 30px 32px; }
.feature-content h3 { margin: 0 0 9px; font-size: 1.32rem; }
.feature-content p { margin: 0; color: var(--muted); }

.immersive { position: relative; min-height: 78svh; display: grid; align-items: end; overflow: hidden; color: white; }
.immersive img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.immersive::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,16,14,.12), rgba(18,16,14,.72)); }
.immersive-content { position: relative; z-index: 1; padding: 100px 0; max-width: 690px; }
.immersive h2 { font-size: clamp(2.6rem, 6vw, 6.2rem); line-height: .98; margin: 0 0 25px; font-weight: 300; letter-spacing: -.045em; }
.immersive p { max-width: 570px; color: rgba(255,255,255,.82); font-size: 1.15rem; }

.accessories { background: #ded3c6; }
.accessory-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 55px; }
.accessory-card { border-radius: var(--radius-lg); overflow: hidden; background: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.42); backdrop-filter: blur(8px); transition: transform .3s ease, box-shadow .3s ease; }
.accessory-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.accessory-card img { width: 100%; aspect-ratio: 4/4.7; object-fit: cover; }
.accessory-card:nth-child(2) img { object-position: center; }
.accessory-info { padding: 28px; }
.accessory-info small { color: var(--accent); letter-spacing: .1em; text-transform: uppercase; }
.accessory-info h3 { margin: 8px 0 11px; font-size: 1.5rem; }
.accessory-info p { margin: 0; color: var(--muted); }

.gallery { background: var(--paper); }
.gallery-grid { display: grid; grid-template-columns: repeat(12,1fr); grid-auto-rows: 190px; gap: 16px; margin-top: 50px; }
.gallery-item { position: relative; overflow: hidden; border: 0; padding: 0; border-radius: 18px; background: #ddd; }
.gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 3; }
.gallery-item:nth-child(2) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(3) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 4; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 4; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gallery-item::after { content: "+"; position: absolute; left: 18px; bottom: 18px; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--ink); font-size: 1.4rem; transform: scale(.88); opacity: 0; transition: .25s; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover::after, .gallery-item:focus-visible::after { opacity: 1; transform: scale(1); }

.lead-section { position: relative; overflow: hidden; background: var(--ink); color: white; }
.lead-section::before { content: ""; position: absolute; width: 620px; height: 620px; border-radius: 50%; background: rgba(150,120,91,.26); filter: blur(110px); right: -250px; top: -270px; }
.lead-grid { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; gap: 80px; align-items: center; }
.lead-copy .section-subtitle { color: rgba(255,255,255,.68); }
.contact-points { display: grid; gap: 14px; margin-top: 36px; }
.contact-point { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.86); }
.contact-point span { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.08); }
.lead-card { padding: 36px; border-radius: var(--radius-xl); background: #f8f4ee; color: var(--ink); box-shadow: 0 35px 90px rgba(0,0,0,.28); }
.lead-card h3 { margin: 0 0 7px; font-size: 1.6rem; }
.lead-card > p { color: var(--muted); margin: 0 0 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 700; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 53px;
  padding: 12px 15px;
  border: 1px solid #d8cfc4;
  border-radius: 13px;
  background: #fff;
  color: var(--ink);
  outline: 0;
  transition: border .2s, box-shadow .2s;
}
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(123,101,79,.12); }
.checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: .77rem; color: var(--muted); }
.checkbox input { margin-top: 5px; accent-color: var(--ink); }
.checkbox a { color: var(--ink); }
.form-actions { margin-top: 20px; display: grid; gap: 12px; }
.form-actions .btn { width: 100%; border: 0; }
.form-status { min-height: 22px; margin: 0; font-size: .85rem; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; justify-content: space-between; gap: 20px; padding: 24px 0; border: 0; background: transparent; color: var(--ink); text-align: right; font-weight: 700; }
.faq-question span:last-child { font-size: 1.4rem; font-weight: 300; transition: transform .25s; }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer > div { overflow: hidden; }
.faq-answer p { margin: 0 0 24px; color: var(--muted); }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }

.site-footer { padding: 55px 0 28px; background: #0f0e0c; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .8fr; gap: 50px; padding-bottom: 42px; }
.footer-brand p { max-width: 450px; color: rgba(255,255,255,.58); }
.footer-title { margin: 0 0 14px; font-size: .84rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); }
.footer-links { display: grid; gap: 9px; }
.footer-links a, .footer-links button { width: fit-content; padding: 0; border: 0; background: none; color: rgba(255,255,255,.78); text-decoration: none; }
.footer-links a:hover, .footer-links button:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.11); color: rgba(255,255,255,.44); font-size: .78rem; }

.whatsapp-float { position: fixed; z-index: 780; left: 24px; bottom: 24px; width: 60px; height: 60px; display: grid; place-items: center; border-radius: 50%; background: #1faa59; color: white; text-decoration: none; box-shadow: 0 14px 35px rgba(0,0,0,.25); transition: transform .25s; }
.whatsapp-float:hover { transform: translateY(-4px) scale(1.03); }
.whatsapp-float svg { width: 29px; height: 29px; fill: currentColor; }
.mobile-cta { display: none; }

.modal { position: fixed; inset: 0; z-index: 1200; display: none; place-items: center; padding: 24px; background: rgba(11,10,9,.74); backdrop-filter: blur(9px); }
.modal.open { display: grid; }
.modal-panel { position: relative; width: min(100%, 980px); max-height: 88svh; overflow: auto; border-radius: 25px; background: #f9f6f0; box-shadow: 0 30px 100px rgba(0,0,0,.42); }
.modal-close { position: sticky; z-index: 2; top: 16px; float: left; margin: 16px; width: 42px; height: 42px; border: 0; border-radius: 50%; background: rgba(0,0,0,.08); font-size: 1.4rem; }
.lightbox-image { width: 100%; min-height: 320px; max-height: 82svh; object-fit: contain; background: #171512; }

.cookie-banner { position: fixed; z-index: 1300; inset: auto 20px 20px; display: none; }
.cookie-banner.show { display: block; }
.cookie-card { width: min(100%, 620px); margin-inline-start: auto; padding: 24px; border-radius: 22px; background: rgba(255,253,249,.97); color: var(--ink); box-shadow: 0 25px 80px rgba(0,0,0,.26); border: 1px solid rgba(45,36,29,.1); backdrop-filter: blur(16px); }
.cookie-card h2 { margin: 0 0 7px; font-size: 1.24rem; }
.cookie-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.cookie-actions .btn { min-height: 43px; padding-inline: 17px; font-size: .82rem; }
.cookie-links { margin-top: 13px; display: flex; gap: 17px; font-size: .76rem; color: var(--muted); }
.cookie-settings { padding: 32px; }
.cookie-settings h2 { margin-top: 0; }
.consent-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.consent-row:last-of-type { border-bottom: 0; }
.consent-row strong { display: block; }
.consent-row small { color: var(--muted); }
.switch { position: relative; width: 52px; height: 30px; flex: 0 0 auto; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; inset: 0; border-radius: 999px; background: #b7b1a9; transition: .25s; }
.slider::before { content: ""; position: absolute; width: 24px; height: 24px; right: 3px; top: 3px; border-radius: 50%; background: white; transition: .25s; box-shadow: 0 2px 6px rgba(0,0,0,.25); }
.switch input:checked + .slider { background: var(--accent-dark); }
.switch input:checked + .slider::before { transform: translateX(-22px); }
.switch input:disabled + .slider { opacity: .65; }
.consent-save { margin-top: 24px; width: 100%; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

.legal-page { min-height: 100vh; background: #f5f0e9; }
.legal-header { position: static; color: var(--ink); background: rgba(255,255,255,.65); }
.legal-main { padding: 90px 0; }
.legal-card { max-width: 920px; margin-inline: auto; padding: clamp(28px,5vw,60px); border-radius: var(--radius-xl); background: white; box-shadow: var(--shadow); }
.legal-card h1 { font-size: clamp(2.3rem,5vw,4.3rem); line-height: 1; font-weight: 400; }
.legal-card h2 { margin-top: 44px; }
.legal-card p, .legal-card li { color: #554f49; }
.legal-card a { color: var(--accent-dark); }

:focus-visible { outline: 3px solid #b58d66; outline-offset: 4px; }

@media (max-width: 1020px) {
  .nav { position: fixed; top: var(--header-h); inset-inline: 16px; display: none; padding: 24px; border-radius: 20px; background: rgba(248,244,238,.98); color: var(--ink); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 8px; }
  .nav.open { display: flex; }
  .nav a { padding: 11px 8px; }
  .menu-toggle { display: block; }
  .hero-grid, .intro-grid, .lead-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 35px; }
  .hero-copy { max-width: 560px; }
  .intro-image { min-height: 570px; }
  .value-grid { grid-template-columns: repeat(2,1fr); }
  .value-item:nth-child(3) { border-inline-start: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .value-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.12); }
  .accessory-grid { grid-template-columns: 1fr 1fr; }
  .accessory-card:last-child { grid-column: 1/-1; display: grid; grid-template-columns: 1fr 1fr; }
  .accessory-card:last-child img { aspect-ratio: auto; height: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 720px) {
  :root { --header-h: 68px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 78px 0; }
  .site-header .btn-sm { display: none; }
  .brand { min-width: 130px; }
  .brand-mark { font-size: 1.42rem; }
  .hero { min-height: 830px; }
  .hero-media img { object-position: center; }
  .hero-content { padding-bottom: 45px; }
  .hero h1 { font-size: clamp(3rem, 18vw, 5.6rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-actions .btn { padding-inline: 12px; }
  .hero-scroll { display: none; }
  .value-grid { grid-template-columns: 1fr; }
  .value-item { border-inline-start: 0; border-top: 1px solid rgba(255,255,255,.12); }
  .value-item:first-child { border-top: 0; }
  .intro-grid { gap: 45px; }
  .intro-image { min-height: 480px; }
  .signature-line { align-items: flex-start; flex-direction: column; }
  .video-header { display: block; }
  .video-header .section-subtitle { margin-top: 18px; }
  .video-note { flex-direction: column; gap: 4px; }
  .features-grid { display: grid; grid-template-columns: 1fr; }
  .feature-card:nth-child(n) { grid-column: auto; }
  .immersive { min-height: 700px; }
  .immersive img { object-position: 45% center; }
  .immersive::after { background: linear-gradient(180deg, rgba(18,16,14,.12), rgba(18,16,14,.8)); }
  .accessory-grid { grid-template-columns: 1fr; }
  .accessory-card:last-child { grid-column: auto; display: block; }
  .accessory-card:last-child img { height: auto; aspect-ratio: 4/4.7; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; }
  .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(1) { grid-column: 1/-1; grid-row: span 2; }
  .lead-grid { gap: 44px; }
  .lead-card { padding: 25px 20px; border-radius: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float { bottom: 86px; left: 16px; width: 54px; height: 54px; }
  .mobile-cta { position: fixed; z-index: 760; bottom: 0; inset-inline: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; padding: 8px; background: rgba(248,244,238,.96); box-shadow: 0 -8px 25px rgba(0,0,0,.12); backdrop-filter: blur(14px); }
  .mobile-cta .btn { min-height: 48px; padding-inline: 10px; font-size: .83rem; }
  .cookie-banner { inset: auto 10px 76px; }
  .cookie-card { padding: 19px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .cookie-actions .btn:first-child { grid-column: 1/-1; }
  .cookie-links { flex-wrap: wrap; }
}

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