/* =============================================================
   styles.css — Grúas en Roses · Dark theme
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:         #0d0f1a;
  --bg2:        #111325;
  --bg3:        #1a1d35;
  --accent:     #f5c518;
  --accent2:    #e6b400;
  --text:       #ffffff;
  --text-dim:   #9aa0b8;
  --text-dark:  #0d0f1a;
  --border:     rgba(245,197,24,0.25);
  --border-soft:rgba(255,255,255,0.08);
  --shadow:     0 4px 24px rgba(0,0,0,0.5);
  --radius:     8px;
  --radius-lg:  16px;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:  cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --nav-h:      72px;
  --container:  1200px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
  font-size: 16px;
}

body {
  font-family: 'Roboto', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
  min-height: 100dvh;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.08; }
ul { list-style: none; }

::selection { background: var(--accent); color: var(--text-dark); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .5rem 1rem; background: var(--accent); color: var(--text-dark);
  z-index: 9999; border-radius: var(--radius); font-weight: 700; font-size: .875rem;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* =============================================================
   3. Typography
   ============================================================= */
.eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

h1, h2, h3 { font-family: 'Oswald', sans-serif; }

h1 { font-size: clamp(2.4rem, 6vw, 5.2rem); font-weight: 700; letter-spacing: -.01em; }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 500; }

/* =============================================================
   4. Container & layout
   ============================================================= */
.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

/* =============================================================
   5. Header
   ============================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .35s var(--ease-out), box-shadow .35s var(--ease-out);
}

.site-header.scrolled {
  background: rgba(13,15,26,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-link img {
  height: 56px;
  width: auto;
  border-radius: 6px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

.main-nav a {
  display: block;
  padding: .5rem 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: .05em;
  color: var(--text-dim);
  transition: color .2s;
  white-space: nowrap;
}

.main-nav a:hover { color: var(--accent); }

/* Lang selector */
.lang-selector {
  position: relative;
  margin-left: .5rem;
}

.lang-btn-current {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--text-dim);
  background: transparent;
  cursor: pointer;
  transition: color .2s, border-color .2s;
}
.lang-btn-current:hover { color: var(--accent); border-color: var(--accent); }
.lang-btn-current svg { transition: transform .2s; }
.lang-selector.open .lang-btn-current svg { transform: rotate(180deg); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  background: var(--bg2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 100%;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s var(--ease-out);
}

.lang-selector.open .lang-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lang-dropdown button {
  display: block;
  width: 100%;
  padding: .5rem 1rem;
  text-align: left;
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  letter-spacing: .06em;
  color: var(--text-dim);
  background: transparent;
  transition: background .15s, color .15s;
}

.lang-dropdown button:hover,
.lang-dropdown button.active { background: var(--bg3); color: var(--accent); }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1.25rem;
  background: var(--accent);
  color: var(--text-dark);
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: background .2s;
  margin-left: .75rem;
}
.header-phone:hover { background: var(--accent2); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px;
  margin-left: auto;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================================
   6. Mobile menu overlay
   ============================================================= */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: rgba(13,15,26,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  padding: var(--nav-h) 2rem 2rem;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .04em;
  transition: color .2s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mobile-menu a:hover { color: var(--accent); }

.mobile-menu .mobile-phone {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 2rem;
  background: var(--accent);
  color: var(--text-dark);
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 1rem;
}

.mobile-lang {
  display: flex;
  gap: .75rem;
  margin-top: .5rem;
}
.mobile-lang button {
  padding: .4rem .9rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  color: var(--text-dim);
  background: transparent;
  transition: color .2s, border-color .2s, background .2s;
  min-height: 44px;
}
.mobile-lang button:hover,
.mobile-lang button.active { color: var(--accent); border-color: var(--accent); background: rgba(245,197,24,.08); }

/* =============================================================
   7. Floating buttons (left side)
   ============================================================= */
.float-btns {
  position: fixed;
  left: 1.25rem;
  bottom: 2rem;
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
  transition: transform .25s var(--ease-out), box-shadow .25s;
}

.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0,0,0,.5);
}

.float-btn-call { background: #25a244; }
.float-btn-wa   { background: #25d366; }

.float-btn svg { width: 24px; height: 24px; fill: white; }

/* Pulse ring on call button */
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.7); opacity: 0; }
}

.float-btn-call::before {
  content: '';
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid #25a244;
  animation: pulse-ring 2s cubic-bezier(.4,0,.6,1) infinite;
  pointer-events: none;
}

/* =============================================================
   8. Hero
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  padding-bottom: 7rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img-hero-grua.webp');
  background-size: cover;
  background-position: center center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(13,15,26,.88) 0%,
    rgba(13,15,26,.65) 45%,
    rgba(13,15,26,.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .9rem;
  background: rgba(245,197,24,.15);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .8rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,197,24,.25);
  flex-shrink: 0;
}

.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: -.01em;
  margin-bottom: 1.25rem;
}

.hero-title .accent { color: var(--accent); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-dim);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 3rem;
}

/* Stats row */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  font-size: .78rem;
  color: var(--text-dim);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .2rem;
}

/* =============================================================
   9. Buttons
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .04em;
  transition: background .2s, color .2s, transform .2s var(--ease-out), box-shadow .2s;
  min-height: 44px;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: var(--text-dark);
}
.btn-primary:hover { background: var(--accent2); box-shadow: 0 6px 20px rgba(245,197,24,.35); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,.3);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-wa {
  background: #25d366;
  color: white;
}
.btn-wa:hover { background: #1da851; box-shadow: 0 6px 20px rgba(37,211,102,.3); }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* =============================================================
   10. Section shared styles
   ============================================================= */
.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 580px;
  margin: .75rem auto 0;
}

/* =============================================================
   11. Services
   ============================================================= */
.services { background: var(--bg2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.svc-card {
  background: var(--bg3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s;
}

.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}

.svc-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.svc-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 52px; height: 52px;
  background: rgba(245,197,24,.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.svc-icon svg { width: 26px; height: 26px; stroke: var(--accent); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.svc-card h3 {
  margin-bottom: .6rem;
  font-size: 1.1rem;
  color: var(--text);
}

.svc-card p {
  font-size: .92rem;
  color: var(--text-dim);
  line-height: 1.55;
}

/* =============================================================
   12. About
   ============================================================= */
.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: var(--accent);
  color: var(--text-dark);
  padding: .6rem 1rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
}

.about-content { display: flex; flex-direction: column; gap: 1rem; }
.about-content h2 { margin-bottom: .25rem; }
.about-content p { color: var(--text-dim); font-size: 1rem; }

.checklist {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-top: .5rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .95rem;
  color: var(--text-dim);
}

.checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  margin-top: .1rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23f5c518' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='10' cy='10' r='9'/%3E%3Cpath d='M6 10l3 3 5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* =============================================================
   13. CTA Band
   ============================================================= */
.cta-band {
  background: var(--accent);
  padding-block: clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.cta-band h2 {
  color: var(--text-dark);
  margin-bottom: .75rem;
}

.cta-band p {
  color: rgba(13,15,26,.7);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.cta-band-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem;
}

.btn-dark {
  background: var(--text-dark);
  color: var(--accent);
}
.btn-dark:hover { background: #1a1d30; box-shadow: 0 6px 20px rgba(0,0,0,.3); }

.btn-wa-dark {
  background: #25d366;
  color: white;
}
.btn-wa-dark:hover { background: #1da851; }

/* =============================================================
   14. Zones
   ============================================================= */
.zones { background: var(--bg2); }

.zones-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}

.zone-pill {
  padding: .6rem 1.25rem;
  background: var(--bg3);
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  letter-spacing: .05em;
  color: var(--text-dim);
  transition: background .2s, color .2s, border-color .2s;
}

.zone-pill:hover {
  background: rgba(245,197,24,.1);
  border-color: var(--border);
  color: var(--accent);
}

/* =============================================================
   15. Gallery
   ============================================================= */
.gallery { background: var(--bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-soft);
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,15,26,.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity .3s;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  letter-spacing: .06em;
  color: var(--accent);
  text-transform: uppercase;
}

/* =============================================================
   16. Contact
   ============================================================= */
.contact { background: var(--bg2); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background: var(--bg3);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color .3s, transform .3s var(--ease-out);
}

.contact-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.contact-card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.contact-card-icon.phone-icon { background: rgba(37,162,68,.15); }
.contact-card-icon.wa-icon    { background: rgba(37,211,102,.15); }
.contact-card-icon.mail-icon  { background: rgba(245,197,24,.12); }

.contact-card-icon svg { width: 26px; height: 26px; }

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: .5rem;
  color: var(--text);
}

.contact-card a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  transition: opacity .2s;
}
.contact-card a:hover { opacity: .8; }

.contact-card p {
  font-size: .85rem;
  color: var(--text-dim);
  margin-top: .35rem;
}

/* =============================================================
   17. Footer
   ============================================================= */
.site-footer {
  background: #080a14;
  border-top: 1px solid var(--border-soft);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand { display: flex; flex-direction: column; gap: .75rem; }
.footer-brand img {
  height: 48px;
  width: auto;
  border-radius: 6px;
}
.footer-brand p {
  font-size: .9rem;
  color: var(--text-dim);
  max-width: 260px;
  line-height: 1.5;
}

.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a {
  font-size: .88rem;
  color: var(--text-dim);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--text); }

.footer-contact-info { display: flex; flex-direction: column; gap: .6rem; }
.footer-contact-info a {
  font-size: .9rem;
  color: var(--text-dim);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.footer-contact-info a:hover { color: var(--accent); }
.footer-contact-info a svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 1.8; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-block: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-bottom p {
  font-size: .8rem;
  color: var(--text-dim);
}

.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a {
  font-size: .8rem;
  color: var(--text-dim);
  transition: color .2s;
}
.footer-legal a:hover { color: var(--text); }

/* =============================================================
   18. Cookie banner
   ============================================================= */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: var(--bg2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  max-width: min(660px, calc(100vw - 3rem));
  width: 100%;
  transition: opacity .4s, transform .4s var(--ease-out);
}

.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

.cookie-banner p {
  font-size: .88rem;
  color: var(--text-dim);
  flex: 1;
  min-width: 200px;
}

.cookie-banner a { color: var(--accent); text-decoration: underline; }

.cookie-btns {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.cookie-btns button {
  padding: .5rem 1rem;
  border-radius: var(--radius);
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: background .2s, color .2s;
  min-height: 44px;
}

.cookie-accept {
  background: var(--accent);
  color: var(--text-dark);
}
.cookie-accept:hover { background: var(--accent2); }

.cookie-reject {
  background: transparent;
  color: var(--text-dim);
  border: 1px solid var(--border-soft);
}
.cookie-reject:hover { color: var(--text); border-color: rgba(255,255,255,.2); }

/* =============================================================
   19. Reveal animations
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Defensive: data-split elements must never be hidden */
.reveal[data-split] { opacity: 1; transform: none; }

.reveal-stagger .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger .reveal:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger .reveal:nth-child(6) { transition-delay: 400ms; }

/* =============================================================
   20. Legal page inner styles
   ============================================================= */
.legal-page {
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 5rem;
  min-height: 100vh;
}

.legal-page h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 2rem;
  color: var(--accent);
}

.legal-page h2 {
  font-size: 1.2rem;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: .75rem;
}

.legal-page p, .legal-page li {
  font-size: .95rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: .75rem;
}

.legal-page ul { margin-left: 1.5rem; list-style: disc; margin-bottom: 1rem; }
.legal-page a { color: var(--accent); text-decoration: underline; }

/* =============================================================
   21. Responsive
   ============================================================= */

/* ≤1024px — 2-col services */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ≤768px — mobile layout */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* Hide desktop nav, show hamburger */
  .main-nav, .header-phone, .lang-selector { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding-bottom: 5rem; }
  .hero-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(13,15,26,.7) 0%,
      rgba(13,15,26,.5) 100%
    );
  }
  .hero-stats { gap: 1.5rem; }

  /* Sections */
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { order: -1; }

  .services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .float-btns { left: 1rem; bottom: 1.5rem; }
}

/* ≤480px — small phones */
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 1rem; }
  .cookie-banner { bottom: .75rem; padding: 1rem; }
  .cta-band-btns { flex-direction: column; align-items: center; }
  .cta-band-btns .btn { width: 100%; justify-content: center; }
}

/* Safe area insets (iOS notch / home indicator) */
@supports (padding: env(safe-area-inset-bottom)) {
  .float-btns { bottom: calc(2rem + env(safe-area-inset-bottom)); }
  .cookie-banner { bottom: calc(1.5rem + env(safe-area-inset-bottom)); }
  .site-footer { padding-bottom: env(safe-area-inset-bottom); }
}

/* Reduced motion — only gate intrusive effects */
@media (prefers-reduced-motion: reduce) {
  .float-btn-call::before { animation: none; }
  html { scroll-behavior: auto; }
}
