/* ============================================================
   BrinCR — Vidrios y Aluminios
   Design system: warm & elegant
   ============================================================ */

:root {
  --cream: #faf5ec;
  --cream-2: #f2e9d8;
  --cream-3: #e9ddc6;
  --ink: #241c11;
  --ink-2: #4c4131;
  --ink-3: #7a6c56;
  --gold: #c19a4b;
  --gold-dark: #a67f2e;
  --gold-soft: #e7d5ab;
  --terracotta: #b4552d;
  --terracotta-dark: #93401f;
  --white: #ffffff;
  --shadow-sm: 0 4px 16px rgba(36, 28, 17, 0.08);
  --shadow-md: 0 14px 40px rgba(36, 28, 17, 0.12);
  --shadow-lg: 0 24px 70px rgba(36, 28, 17, 0.18);
  --radius: 18px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 10px 26px rgba(193, 154, 75, 0.4);
}
.btn-gold:hover { box-shadow: 0 16px 34px rgba(193, 154, 75, 0.5); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(36, 28, 17, 0.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-dark); background: rgba(193,154,75,0.06); }
.btn-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover { box-shadow: var(--shadow-md); }

/* ---------- Section scaffolding ---------- */
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-dark {
  background: linear-gradient(160deg, #2a2113, #1c1509);
  color: var(--cream);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream); }
.section-cream { background: var(--cream-2); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.section-dark .eyebrow { color: var(--gold-soft); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; }
.section-head p { color: var(--ink-2); font-size: 18px; }
.section-dark .section-head p { color: rgba(250,245,236,0.75); }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 245, 236, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(36, 28, 17, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-head); font-size: 26px; font-weight: 700; letter-spacing: 0.02em; }
.brand .brand-mark { width: 40px; height: 40px; flex: none; }
.brand small { display: block; font-family: var(--font-body); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--ink-3); font-weight: 500; margin-top: -4px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-weight: 500; font-size: 15.5px; color: var(--ink-2); position: relative; padding: 6px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 42px; height: 42px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px auto; border-radius: 2px; transition: 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(193,154,75,0.28), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, rgba(180,85,45,0.16), transparent 55%),
    var(--cream);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding: 80px 0; }
.hero h1 { font-size: clamp(40px, 6vw, 68px); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold-dark); }
.hero p.lead { font-size: 20px; color: var(--ink-2); max-width: 520px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; }
.hero-stats .stat b { font-family: var(--font-head); font-size: 34px; color: var(--gold-dark); display: block; }
.hero-stats .stat span { color: var(--ink-3); font-size: 14px; letter-spacing: 0.05em; }

.hero-visual { position: relative; }
.hero-visual .glass-card {
  background: linear-gradient(150deg, rgba(255,255,255,0.7), rgba(255,255,255,0.35));
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
  transform: rotate(2deg);
}
.hero-visual .glass-card .glass-pane {
  border-radius: 16px; overflow: hidden; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #d8c9a6, #a98f5f);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-visual .glass-card .glass-pane::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 45%, transparent 60%);
}
.hero-visual .glass-card .glass-pane svg { width: 60%; height: 60%; opacity: 0.9; }
.hero-visual .float-badge {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500;
}
.hero-visual .float-badge .dot { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff; }
.hero-visual .fb-1 { top: -18px; left: -30px; animation: float 6s ease-in-out infinite; }
.hero-visual .fb-2 { bottom: -16px; right: -22px; animation: float 7s ease-in-out infinite reverse; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ============================================================
   Cards / services
   ============================================================ */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(36,28,17,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card .icon {
  width: 58px; height: 58px; border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-soft), var(--cream-2));
  display: grid; place-items: center; margin-bottom: 20px;
  color: var(--gold-dark);
}
.card h3 { font-size: 22px; margin-bottom: 10px; }
.card p { color: var(--ink-2); font-size: 15.5px; }
.card .link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 600; color: var(--gold-dark); font-size: 14.5px; }
.card .link:hover { gap: 10px; }

/* ============================================================
   Testimonials carousel
   ============================================================ */
.testimonials { position: relative; }
.track { overflow: hidden; }
.track-inner { display: flex; transition: transform 0.6s cubic-bezier(0.22,1,0.36,1); }
.t-slide { flex: 0 0 100%; padding: 8px; }
.t-card {
  max-width: 760px; margin: 0 auto; text-align: center;
  background: var(--white); border-radius: var(--radius); padding: 48px 56px;
  box-shadow: var(--shadow-md);
}
.t-card .quote-mark { font-family: var(--font-head); font-size: 70px; line-height: 0.6; color: var(--gold); }
.t-card blockquote { font-size: 21px; font-family: var(--font-head); font-style: italic; color: var(--ink); margin: 20px 0 26px; }
.t-card .author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.t-card .avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--terracotta)); color: #fff; display: grid; place-items: center; font-weight: 600; }
.t-card .author b { display: block; font-size: 15px; }
.t-card .author span { font-size: 13px; color: var(--ink-3); }
.t-nav { display: flex; justify-content: center; gap: 12px; margin-top: 34px; }
.t-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--cream-3); border: none; cursor: pointer; transition: 0.3s; }
.t-dot.active { background: var(--gold); width: 30px; border-radius: 6px; }
.t-arrows { display: flex; justify-content: center; gap: 12px; margin-top: 20px; }
.t-arrows button {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(36,28,17,0.2);
  background: var(--white); cursor: pointer; font-size: 20px; transition: 0.25s;
}
.t-arrows button:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  border-radius: 28px;
  padding: 64px;
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 20% 0%, rgba(255,255,255,0.25), transparent 60%);
}
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 30px; font-size: 17px; }
.cta-band .btn-light:hover { transform: translateY(-2px); }

/* ============================================================
   Page hero (interior)
   ============================================================ */
.page-hero {
  padding: 90px 0 60px;
  background:
    radial-gradient(900px 400px at 90% 0%, rgba(193,154,75,0.22), transparent 60%),
    var(--cream);
  border-bottom: 1px solid rgba(36,28,17,0.06);
}
.page-hero .eyebrow { display: flex; align-items: center; gap: 10px; }
.page-hero .crumb { color: var(--ink-3); font-size: 13px; }
.page-hero h1 { font-size: clamp(34px, 5vw, 54px); margin: 10px 0 16px; }
.page-hero p { color: var(--ink-2); font-size: 18px; max-width: 640px; }

/* ============================================================
   Blog
   ============================================================ */
.blog-card .thumb { border-radius: 14px; overflow: hidden; margin-bottom: 20px; aspect-ratio: 16/10; position: relative; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .thumb img { transform: scale(1.06); }
.blog-meta { display: flex; align-items: center; gap: 14px; font-size: 13px; color: var(--ink-3); margin-bottom: 12px; }
.blog-meta .cat { background: var(--gold-soft); color: var(--gold-dark); padding: 4px 12px; border-radius: 999px; font-weight: 600; }
.blog-card h3 { font-size: 21px; margin-bottom: 10px; }
.blog-card h3 a:hover { color: var(--gold-dark); }
.blog-card p { color: var(--ink-2); font-size: 15px; }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.info-item { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid rgba(36,28,17,0.08); }
.info-item .icon { width: 50px; height: 50px; flex: none; border-radius: 14px; background: var(--gold-soft); display: grid; place-items: center; color: var(--gold-dark); }
.info-item b { font-family: var(--font-head); font-size: 18px; display: block; margin-bottom: 4px; }
.info-item p, .info-item a { color: var(--ink-2); font-size: 15.5px; }
.info-item a:hover { color: var(--gold-dark); }
.social-row { display: flex; gap: 12px; margin-top: 24px; }
.social-row a { width: 46px; height: 46px; border-radius: 50%; background: var(--white); box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--ink-2); transition: 0.25s; }
.social-row a:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }

.form-card { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1px solid rgba(36,28,17,0.16); background: var(--cream);
  font-family: var(--font-body); font-size: 15.5px; color: var(--ink); transition: 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px rgba(193,154,75,0.15);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-status { display: none; padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 18px; font-size: 15px; }
.form-status.ok { display: block; background: #e8f5e9; color: #2e7d32; }
.form-status.err { display: block; background: #fdecea; color: #c62828; }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); line-height: 0; margin-top: 56px; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; filter: saturate(0.85); }

/* ============================================================
   About / team
   ============================================================ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card { text-align: center; padding: 40px 28px; }
.value-card .icon { margin: 0 auto 20px; }
.team-card { text-align: center; }
.team-card .photo { width: 120px; height: 120px; margin: 0 auto 18px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-soft), var(--cream-3)); display: grid; place-items: center; color: var(--gold-dark); overflow: hidden; }
.team-card .photo svg { width: 60%; height: 60%; }
.team-card h3 { font-size: 20px; }
.team-card .role { color: var(--gold-dark); font-size: 13.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.team-card p { color: var(--ink-2); font-size: 14.5px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col .text h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 18px; }
.two-col .text p { color: var(--ink-2); margin-bottom: 16px; }
.two-col .visual { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }

/* ============================================================
   Legal / prose
   ============================================================ */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 30px; margin: 48px 0 16px; }
.prose h3 { font-size: 22px; margin: 32px 0 12px; }
.prose p { color: var(--ink-2); margin-bottom: 16px; }
.prose ul { margin: 0 0 18px 22px; list-style: disc; color: var(--ink-2); }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--gold-dark); text-decoration: underline; }
.prose .legal-note { background: var(--white); border-left: 4px solid var(--gold); padding: 20px 24px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin: 24px 0; }
.prose .legal-note b { color: var(--ink); }
.legal-illustration { border-radius: var(--radius); overflow: hidden; margin: 28px 0; box-shadow: var(--shadow-sm); }
.legal-illustration img { width: 100%; height: 220px; object-fit: cover; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: #1c1509; color: rgba(250,245,236,0.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.site-footer h4 { color: var(--cream); font-size: 17px; margin-bottom: 18px; }
.site-footer .brand { color: var(--cream); margin-bottom: 16px; }
.site-footer .brand small { color: rgba(250,245,236,0.5); }
.footer-col p { font-size: 14.5px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 14.5px; transition: 0.2s; }
.footer-col ul a:hover { color: var(--gold-soft); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.footer-contact svg { flex: none; margin-top: 3px; color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(250,245,236,0.12); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a:hover { color: var(--gold-soft); }

/* ============================================================
   WhatsApp float
   ============================================================ */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 70;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; }

/* ============================================================
   Cookie bar
   ============================================================ */
.cookie-bar {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 80;
  background: var(--white); border-radius: 18px; box-shadow: var(--shadow-lg);
  padding: 20px 24px; display: flex; align-items: center; gap: 20px;
  max-width: 900px; margin: 0 auto;
  transform: translateY(150%); transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar .cookie-icon { flex: none; color: var(--gold-dark); }
.cookie-bar p { font-size: 14px; color: var(--ink-2); flex: 1; }
.cookie-bar p a { color: var(--gold-dark); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex: none; }
.cookie-actions .btn { padding: 10px 18px; font-size: 14px; }

/* ============================================================
   Page-transition logo animation (click overlay)
   ============================================================ */
.transition-overlay {
  position: fixed; inset: 0; z-index: 100;
  background: linear-gradient(160deg, #2a2113, #1c1509);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 22px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.45s ease;
}
.transition-overlay.active { opacity: 1; pointer-events: auto; }
.transition-overlay .t-logo { width: 96px; height: 96px; animation: tPulse 0.9s ease forwards; }
.transition-overlay .t-logo svg { width: 100%; height: 100%; }
.transition-overlay .t-name { font-family: var(--font-head); color: var(--cream); font-size: 30px; letter-spacing: 0.06em; animation: tFade 0.9s ease forwards; }
.transition-overlay .t-bar { width: 160px; height: 3px; background: rgba(250,245,236,0.15); border-radius: 3px; overflow: hidden; }
.transition-overlay .t-bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--terracotta)); animation: tBar 0.7s ease forwards; }
@keyframes tPulse { 0% { transform: scale(0.6); opacity: 0; } 60% { transform: scale(1.06); opacity: 1; } 100% { transform: scale(1); opacity: 1; } }
@keyframes tFade { 0% { opacity: 0; transform: translateY(10px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes tBar { 0% { width: 0; } 100% { width: 100%; } }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero-grid, .contact-grid, .two-col { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 78px 0 auto 0; background: var(--cream);
    flex-direction: column; gap: 0; padding: 10px 24px 24px;
    box-shadow: var(--shadow-md); transform: translateY(-130%); transition: 0.35s;
    border-bottom: 1px solid rgba(36,28,17,0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 14px 0; width: 100%; border-bottom: 1px solid rgba(36,28,17,0.06); }
  .nav-links .nav-cta { margin: 14px 0 0; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .t-card { padding: 34px 24px; }
  .cta-band { padding: 44px 24px; }
  .cookie-bar { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
