/* ============================================================
   Olas de Chile Ecocamp — style.css
   ============================================================ */

:root {
  --bg: #fbfaf7;
  --surface: #ffffff;
  --surface-alt: #f4f2ec;
  --border: #e6e3da;

  --text: #1c1c1a;
  --muted: #6b6b66;
  --subtle: #9a988f;

  --primary: #2d4a3e;
  --primary-hover: #3a5d4f;
  --primary-soft: #e8efe9;
  --sand: #f0d9a8;
  --accent: #c8853d;
  --accent-soft: #f6ecdc;

  --font-display: "Montserrat", Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --s1: 0.5rem;  --s2: 1rem;   --s3: 1.5rem; --s4: 2rem;
  --s5: 2.5rem;  --s6: 3rem;   --s7: 4rem;   --s8: 5rem;  --s9: 6.5rem;

  --r-sm: 8px; --r-md: 14px; --r-lg: 22px;

  --sh-sm: 0 1px 3px rgba(28, 28, 26, 0.06);
  --sh-md: 0 4px 24px rgba(28, 28, 26, 0.08);
  --sh-lg: 0 16px 56px rgba(28, 28, 26, 0.14);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.45s;

  --max: 1180px;
  --nav-h: 74px;

  --arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E");
}

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

html {
  scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body); font-size: 16px; line-height: 1.65;
  color: var(--text); background: var(--bg); overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--primary); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--primary); color: #fff; padding: 0.75rem 1.25rem;
}
.skip-link:focus { left: 0; }

.wrap { max-width: var(--max); margin: 0 auto; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--s4);
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
/* Pages intérieures : nav toujours lisible sur fond sombre du page-hero */
.nav.scrolled {
  background: rgba(251, 250, 247, 0.82);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--sh-sm);
}

.nav-logo, .footer-logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 500;
  letter-spacing: -0.02em; color: #fff; transition: color var(--dur) var(--ease);
}
.nav.scrolled .nav-logo { color: var(--text); }

/* Pastille claire sous le badge : son contour et son texte sont noirs,
   il lui faut donc un fond clair pour rester lisible sur le hero sombre. */
.logo-mark {
  display: block; flex-shrink: 0;
  width: 42px; height: 42px; padding: 3px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 4px rgba(28, 28, 26, 0.14);
}
.logo-mark img { width: 100%; height: 100%; object-fit: contain; }

.nav-links { display: flex; align-items: center; gap: var(--s4); }
.nav-dropdown { position: relative; }
.nav-dropdown::after { content: ""; position: absolute; left: -0.5rem; right: -0.5rem; top: 100%; height: 0.75rem; }
.nav-dropdown-toggle { border: 0; background: none; cursor: pointer; padding: 0; }
.nav-dropdown-toggle::before { content: "⌄"; margin-left: 0.35rem; float: right; font-size: 0.75em; opacity: 0.7; }
.nav-dropdown-menu { position: absolute; top: calc(100% + 0.65rem); left: 50%; transform: translateX(-50%) translateY(-6px); display: flex; flex-direction: column; min-width: 190px; padding: 0.5rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-md); box-shadow: var(--sh-lg); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur) var(--ease); }
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu, .nav-dropdown.open .nav-dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-dropdown-link { padding: 0.65rem 0.8rem; color: var(--muted); border-radius: var(--r-sm); white-space: nowrap; }
.nav-dropdown-link:hover, .nav-dropdown-link.active { color: var(--text); background: var(--alt); }
.nav-dropdown.active .nav-dropdown-toggle { font-weight: 500; }
.nav-link {
  position: relative; font-size: 0.9rem; color: rgba(255, 255, 255, 0.9);
  transition: color var(--dur) var(--ease);
}
.nav.scrolled .nav-link { color: var(--muted); }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 1px;
  background: currentColor; transition: width var(--dur) var(--ease);
}
.nav-link:hover { color: #fff; }
.nav.scrolled .nav-link:hover { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link.active { color: #fff; }
.nav.scrolled .nav-link.active { color: var(--text); font-weight: 500; }

.nav-right { display: flex; align-items: center; gap: var(--s3); }

.lang-toggle {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255, 255, 255, 0.9); transition: color var(--dur) var(--ease);
}
.nav.scrolled .lang-toggle { color: var(--muted); }
.lang-toggle button { padding: 2px 4px; opacity: 0.5; transition: opacity 0.2s var(--ease); }
.lang-toggle button.active, .lang-toggle button:hover { opacity: 1; }
.lang-sep { opacity: 0.4; }

.nav-cta {
  padding: 0.55rem 1.3rem; border-radius: 100px;
  font-size: 0.85rem; font-weight: 500;
  background: var(--primary); color: #fff !important;
  transition: background var(--dur) var(--ease), transform 0.2s var(--ease);
}
.nav-cta:hover { background: var(--primary-hover); transform: translateY(-1px); }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 24px; height: 2px; border-radius: 2px; background: #fff; transition: all var(--dur) var(--ease); }
.nav.scrolled .nav-burger span { background: var(--text); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  display: flex; flex-direction: column; gap: var(--s2);
  max-height: calc(100vh - var(--nav-h));
  max-height: calc(100dvh - var(--nav-h));
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: var(--s4); background: var(--bg); box-shadow: var(--sh-lg);
  transform: translateY(-110%); opacity: 0; pointer-events: none;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a { font-size: 1.05rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
.mobile-menu-group { display: flex; flex-direction: column; }
.mobile-menu-group strong { padding: 0.6rem 0 0.2rem; color: var(--primary); font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.mobile-menu-group a { padding-left: 0.75rem; }
.mobile-menu a[aria-current] { font-weight: 500; color: var(--primary); }
.mobile-menu .nav-cta {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; margin-top: var(--s2); padding: 0.95rem 1.5rem;
  font-size: 0.95rem; border-bottom: none;
}
.mobile-menu .nav-cta::after {
  content: ""; width: 15px; height: 15px; flex-shrink: 0; background: currentColor;
  -webkit-mask: var(--arrow) center / contain no-repeat;
  mask: var(--arrow) center / contain no-repeat;
}

/* ============================================================
   HERO (accueil)
   ============================================================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden; background-color: #1a1a14;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img, .hero-bg picture { width: 100%; height: 100%; object-fit: cover; }

/* Hero slideshow */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide img { 
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  transition: transform 7s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.hero-slide.active img { transform: scale(1); }

.hero-arrow {
  position: absolute; z-index: 3; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,0.15); color: #fff;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.hero-arrow svg { width: 20px; height: 20px; }
.hero-arrow:hover { background: rgba(255,255,255,0.28); transform: translateY(-50%) scale(1.08); }
.hero-prev { left: 1rem; }
.hero-next { right: 1rem; }

.hero-dots {
  position: absolute; z-index: 3; bottom: var(--s6); left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.6rem;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.6);
  background: transparent; cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  padding: 0;
}
.hero-dot.active { background: #fff; border-color: #fff; transform: scale(1.3); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,.60) 0%, rgba(0,0,0,.38) 40%, rgba(0,0,0,.78) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 780px; padding: var(--s5) var(--s4); }
.hero-content-inner { position: relative; color: #fff; }

.hero-eyebrow {
  display: inline-block; margin-bottom: var(--s4);
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.45rem 1.1rem; border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 100px;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 1px 4px rgba(0,0,0,.45);
  opacity: 0; animation: fadeUp 1s var(--ease) 0.15s forwards;
}
.hero-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.5rem, 6.5vw, 4.7rem); line-height: 1.04; letter-spacing: -0.03em;
  margin-bottom: var(--s3); text-shadow: 0 2px 12px rgba(0,0,0,.5);
  opacity: 0; animation: fadeUp 1s var(--ease) 0.3s forwards;
}
.hero-title em { font-style: normal; display: block; color: var(--sand); }
.hero-subtitle {
  max-width: 580px; margin: 0 auto var(--s5);
  font-size: 1.1rem; font-weight: 300; line-height: 1.75; color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 6px rgba(0,0,0,.5);
  opacity: 0; animation: fadeUp 1s var(--ease) 0.45s forwards;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center; gap: var(--s2); flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s var(--ease) 0.6s forwards;
}
.hero-scroll {
  position: absolute; left: 0; right: 0; bottom: var(--s5); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.7);
  opacity: 0; animation: fadeUp 1s var(--ease) 0.9s forwards;
}
.hero-scroll-line { position: relative; width: 1px; height: 44px; background: rgba(255,255,255,.3); overflow: hidden; }
.hero-scroll-line::after {
  content: ""; position: absolute; left: 0; top: -44px; width: 100%; height: 44px;
  background: rgba(255, 255, 255, 0.9); animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine { to { top: 44px; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ============================================================
   PAGE HERO (pages intérieures)
   ============================================================ */
.page-hero {
  position: relative; min-height: 62vh; display: flex; align-items: flex-end;
  padding: var(--s9) var(--s4) var(--s7); overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,28,26,.62) 0%, rgba(28,28,26,.35) 45%, rgba(28,28,26,.72) 100%);
}
.page-hero-content { position: relative; z-index: 2; color: #fff; }
.page-hero-content .eyebrow { color: var(--sand); }
.page-hero-content .title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem); color: #fff; margin-bottom: var(--s3);
}
.page-hero-content .title em { color: var(--sand); }
.page-hero-content .lead { color: rgba(255, 255, 255, 0.88); max-width: 660px; }

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.85rem 1.75rem; border-radius: 100px;
  font-size: 0.95rem; font-weight: 500; white-space: nowrap;
  transition: all var(--dur) var(--ease);
}
.btn svg { width: 17px; height: 17px; }
.btn-light { background: #fff; color: var(--text); }
.btn-light:hover { background: var(--accent-soft); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-ghost { border: 1px solid rgba(255, 255, 255, 0.42); color: #fff; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.75); transform: translateY(-2px); }
.btn-dark { background: var(--primary); color: #fff; }
.btn-dark:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: var(--sh-md); }

/* ============================================================
   PRIMITIVES DE SECTION
   ============================================================ */
.section { padding: var(--s9) var(--s4); }
.section.alt { background: var(--surface-alt); }
.section-head { margin-bottom: var(--s7); }
.section-head.center { text-align: center; }
.section-head.center .lead { margin-inline: auto; }
.section-cta { text-align: center; margin-top: var(--s6); }

.eyebrow {
  margin-bottom: var(--s2);
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent);
}
.title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.12; letter-spacing: -0.025em;
  margin-bottom: var(--s3);
}
.title em { font-style: normal; color: var(--primary); }
.lead { max-width: 640px; font-size: 1.08rem; font-weight: 300; line-height: 1.75; color: var(--muted); }
.body { font-size: 1.03rem; line-height: 1.8; color: var(--muted); margin-bottom: var(--s3); }

.note {
  padding: var(--s3); border-radius: var(--r-md); border-left: 3px solid var(--accent);
  background: var(--accent-soft); font-size: 0.9rem; line-height: 1.6; color: var(--muted);
}

.price-pill {
  display: inline-flex; align-items: baseline; gap: 0.5rem; margin-top: var(--s3);
  padding: 0.7rem 1.5rem; background: var(--primary-soft); border-radius: 100px;
}
.price-label { font-size: 0.85rem; color: var(--muted); }
.price-value { font-family: var(--font-display); font-size: 1.45rem; font-weight: 500; color: var(--primary); }
.unit { font-size: 0.78rem; color: var(--subtle); margin-left: 0.35rem; }

/* ============================================================
   ACCUEIL · INTRO + STATS
   ============================================================ */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s7); align-items: center; }
.intro-text { max-width: 500px; }
.intro-image { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--sh-lg); }
.intro-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.intro-image:hover img { transform: scale(1.04); }

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3);
  margin-top: var(--s8); padding-top: var(--s6); border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat strong {
  display: block; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--primary); letter-spacing: -0.02em;
}
.stat span { font-size: 0.85rem; color: var(--subtle); }

/* ============================================================
   CARTES DE CATÉGORIE (accueil)
   ============================================================ */
.sites { background: var(--surface-alt); }
.cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s4); }

.cat-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--surface); border-radius: var(--r-lg); box-shadow: var(--sh-sm);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.cat-card:hover { box-shadow: var(--sh-lg); transform: translateY(-5px); }
.cat-media { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.cat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.media-placeholder { width: 100%; height: 100%; min-height: 220px; background: #e5e5e2; }
.cat-card:hover .cat-media img { transform: scale(1.06); }
.cat-count {
  position: absolute; top: 1rem; left: 1rem;
  padding: 0.35rem 0.85rem; border-radius: 100px;
  font-size: 0.74rem; font-weight: 500; color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.cat-body { display: flex; flex-direction: column; flex: 1; padding: var(--s4); }
.cat-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; margin-bottom: 0.4rem; }
.cat-desc { font-size: 0.94rem; line-height: 1.65; color: var(--muted); margin-bottom: var(--s3); flex: 1; }
.cat-foot {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s2);
  padding-top: var(--s3); border-top: 1px solid var(--border);
}
.cat-price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; color: var(--primary); }
.cat-arrow {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--primary-soft); color: var(--primary);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.cat-arrow svg { width: 16px; height: 16px; }
.cat-card:hover .cat-arrow { background: var(--primary); color: #fff; transform: translateX(3px); }

/* ============================================================
   TEASER SERVICES (accueil)
   ============================================================ */
.svc-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s7); align-items: center; }
.svc-teaser-img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--sh-lg); }
.svc-teaser-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   PAGE SITIOS
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: var(--s4); }
.chip {
  padding: 0.5rem 1.1rem; border-radius: 100px; font-size: 0.85rem; font-weight: 500;
  border: 1px solid var(--border); background: var(--surface); color: var(--muted);
  transition: all var(--dur) var(--ease);
}
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.cat-block { margin-top: var(--s8); scroll-margin-top: calc(var(--nav-h) + 20px); }
.cat-block[hidden] { display: none; }
.cat-block-head {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--s6); align-items: center;
  margin-bottom: var(--s6);
}
.cat-block-img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--sh-md); }
.cat-block-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-block-info .title { font-size: clamp(1.7rem, 3vw, 2.3rem); }

.am-cols { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); margin-top: var(--s4); }
.am-cols h4 {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--subtle); margin-bottom: var(--s2);
}
.am { display: flex; align-items: center; gap: 0.55rem; font-size: 0.9rem; padding: 0.2rem 0; }
.am svg { width: 16px; height: 16px; flex-shrink: 0; }
.am-yes { color: var(--text); }
.am-yes svg { color: var(--primary); }
.am-no { color: var(--subtle); }
.am-no svg { color: #c4a29a; }

.site-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.important-notice { display: flex; align-items: center; justify-content: center; gap: .65rem; max-width: 760px; margin: 0 auto; padding: 1rem 1.25rem; border: 1px solid var(--sand); border-radius: var(--r-md); background: rgba(221, 198, 157, .22); color: var(--primary); text-align: center; }
.important-notice strong { font-weight: 600; }
.service-comfort { max-width: 760px; margin: var(--s3) auto 0; text-align: center; }
.how-overview { padding-top: var(--s5); padding-bottom: var(--s6); }
.mv-grid.how-grid { grid-template-columns: repeat(2, minmax(0, 340px)); justify-content: center; margin-top: var(--s4); }
.mv-grid.team-grid { grid-template-columns: repeat(2, minmax(0, 420px)); justify-content: center; }
.chip-count { margin-left: .35rem; opacity: .7; font-variant-numeric: tabular-nums; }
.site-card {
  display: flex; flex-direction: column;
  padding: var(--s3); background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-md);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.site-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); border-color: var(--primary-soft); }
.site-card-head { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: var(--s2); }
.site-num {
  flex-shrink: 0; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--primary-soft); color: var(--primary);
  font-family: var(--font-display); font-size: 0.95rem; font-weight: 600;
}
.site-name { display: block; font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; line-height: 1.3; }
.site-cat { display: block; font-size: 0.75rem; color: var(--subtle); }
.site-desc { font-size: 0.88rem; line-height: 1.6; color: var(--muted); flex: 1; margin-bottom: var(--s2); }
.site-region {
  font-size: 0.75rem; color: var(--accent); font-weight: 500;
  margin-bottom: var(--s3); display: block;
}
.site-card-foot {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s2);
  padding-top: var(--s2); border-top: 1px solid var(--border);
}
.site-price { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--primary); }
.site-btn {
  padding: 0.42rem 1rem; border-radius: 100px; font-size: 0.8rem; font-weight: 500;
  border: 1px solid var(--border); transition: all var(--dur) var(--ease);
}
.site-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ============================================================
   CARTES SERVICES / PROXIMITÉ
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.svc-card, .near-card {
  display: flex; flex-direction: column;
  padding: var(--s4); background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.svc-card:hover, .near-card:hover { box-shadow: var(--sh-md); transform: translateY(-4px); }
.svc-icon {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--primary-soft); color: var(--primary); margin-bottom: var(--s3);
}
.svc-icon svg { width: 22px; height: 22px; }
.svc-card h3, .near-card h3 {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 0.5rem;
}
.svc-card p, .near-card p { font-size: 0.92rem; line-height: 1.7; color: var(--muted); flex: 1; }
.svc-link {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: var(--s3);
  font-size: 0.85rem; font-weight: 500; color: var(--primary);
  transition: gap var(--dur) var(--ease);
}
.svc-link svg { width: 15px; height: 15px; }
.svc-link:hover { gap: 0.7rem; }

.callout {
  text-align: center; padding: var(--s7) var(--s4);
  background: var(--primary-soft); border-radius: var(--r-lg);
}
.callout .lead { margin-inline: auto; }

/* ============================================================
   PAGE CONÓCENOS
   ============================================================ */
.story-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: var(--s7); align-items: center; }
.story-img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--sh-lg); }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-placeholder { background: #e7e7e5; }

.mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.mv-card {
  padding: var(--s5) var(--s4); background: var(--surface);
  border-radius: var(--r-lg); border-top: 3px solid var(--accent); box-shadow: var(--sh-sm);
}
.mv-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; margin-bottom: var(--s2); }
.mv-card p { font-size: 0.96rem; line-height: 1.75; color: var(--muted); }
.partner-promo { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: var(--s7); padding: var(--s4); background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.partner-image { min-height: 320px; border-radius: var(--r-md); overflow: hidden; background: #e7e7e5; }
.partner-image img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.partner-copy { padding: var(--s3) var(--s4) var(--s3) 0; }
.partner-copy .title { margin-bottom: var(--s3); }
.partner-copy .lead { margin-bottom: var(--s4); }
.team-card { overflow: hidden; padding: 0 0 var(--s5); }
.team-card h3, .team-card p { margin-left: var(--s4); margin-right: var(--s4); }
.team-card h3 { margin-top: var(--s4); }
.team-photo { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 38%; }

.eco-section { background: var(--primary); color: #fff; }
.eco-section .eyebrow { color: var(--sand); }
.eco-section .title { color: #fff; }
.eco-section .title em { color: var(--sand); }
.eco-section .lead { color: rgba(255, 255, 255, 0.85); }

.eco-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.eco-card {
  padding: var(--s4); border-radius: var(--r-lg);
  background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.12);
}
.eco-card .eco-icon {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.12); color: var(--sand); margin-bottom: var(--s3);
}
.eco-card .eco-icon svg { width: 22px; height: 22px; }
.eco-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 0.5rem; color: #fff; }
.eco-card p { font-size: 0.92rem; line-height: 1.7; color: rgba(255, 255, 255, 0.82); }

.wave-list { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; }
.wave-chip {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.5rem 1.1rem 0.5rem 0.5rem; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--border); font-size: 0.9rem;
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.wave-chip:hover { border-color: var(--primary); transform: translateY(-2px); }
.wave-chip small { font-size: 0.7rem; color: var(--subtle); font-weight: 400; display: block; }
.wave-n {
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--primary-soft); color: var(--primary);
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
}

/* ============================================================
   PAGE INDICACIONES
   ============================================================ */
.directions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6); align-items: start; }
.route { padding-bottom: var(--s4); margin-bottom: var(--s4); border-bottom: 1px solid var(--border); }
.route h3 {
  display: flex; align-items: center; gap: 0.7rem; margin-bottom: var(--s2);
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 500;
}
.route-num {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--primary); background: var(--primary-soft);
  padding: 0.2rem 0.5rem; border-radius: 100px;
}
.route p { font-size: 0.97rem; line-height: 1.75; color: var(--muted); }

.map {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md);
  aspect-ratio: 1/1; background: var(--surface-alt); display: flex; flex-direction: column;
}
.map iframe { width: 100%; flex: 1; border: 0; filter: grayscale(0.15) contrast(0.96); }
.map-links {
  display: flex; gap: 0.4rem; padding: var(--s2);
  background: var(--surface); border-top: 1px solid var(--border);
}
.map-link {
  flex: 1; text-align: center; padding: 0.4rem 0.6rem;
  font-size: 0.78rem; font-weight: 500; border-radius: var(--r-sm);
  background: var(--surface-alt); color: var(--muted);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.map-link:hover { background: var(--primary); color: #fff; }

.rules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.rule-card {
  padding: var(--s4); background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-lg);
}
.rule-card h3 {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: var(--s3);
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 500;
}
.rule-card .svc-icon { width: 38px; height: 38px; margin: 0; flex-shrink: 0; }
.rule-card .svc-icon svg { width: 18px; height: 18px; }
.rule-card li {
  position: relative; padding-left: 1.1rem; margin-bottom: 0.5rem;
  font-size: 0.92rem; line-height: 1.65; color: var(--muted);
}
.rule-card li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}

/* ============================================================
   CHECKLIST BAGAGES
   ============================================================ */
.pack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.pack-card {
  padding: var(--s4); background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-lg);
}
.pack-card h3 {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: var(--s3);
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 500;
}
.pack-card .svc-icon { width: 38px; height: 38px; margin: 0; flex-shrink: 0; }
.pack-card .svc-icon svg { width: 18px; height: 18px; }
.pack-list li {
  display: flex; align-items: flex-start; gap: 0.6rem; padding: 0.3rem 0;
  font-size: 0.92rem; line-height: 1.55; color: var(--muted);
}
.pack-list svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 0.28em; color: var(--primary); }

/* ============================================================
   FAQ (accordéon)
   ============================================================ */
.faq-wrap { max-width: 820px; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  display: flex; align-items: center; gap: var(--s2); width: 100%;
  padding: var(--s3) 0; text-align: left;
  font-family: var(--font-display); font-size: 1.08rem; font-weight: 500; line-height: 1.4;
  transition: color var(--dur) var(--ease);
}
.faq-q:hover { color: var(--primary); }
.faq-n {
  flex-shrink: 0; font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; color: var(--accent);
}
.faq-q > span:nth-child(2) { flex: 1; }
.faq-toggle {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--primary-soft); color: var(--primary);
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease);
}
.faq-toggle svg { width: 15px; height: 15px; }
.faq-q[aria-expanded="true"] .faq-toggle {
  transform: rotate(45deg); background: var(--primary); color: #fff;
}
.faq-a { padding: 0 0 var(--s3) calc(0.72rem + var(--s2) + 1ch); }
.faq-a[hidden] { display: none; }
.faq-a p { font-size: 0.97rem; line-height: 1.8; color: var(--muted); max-width: 64ch; }

/* ============================================================
   GALERIE
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: var(--s2); }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--r-md); cursor: zoom-in; padding: 0; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 2; }
.gallery-cap {
  position: absolute; inset: 0; display: flex; align-items: flex-end; padding: var(--s3);
  background: linear-gradient(180deg, transparent 45%, rgba(28, 28, 26, 0.6) 100%);
  color: #fff; font-size: 0.85rem; font-weight: 500; text-align: left;
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.gallery-item:hover .gallery-cap { opacity: 1; }

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.testimonials { background: var(--surface-alt); }
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s3); }
.google-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: var(--s2); padding: 0.4rem 1rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: 100px;
  font-size: 0.85rem; color: var(--muted);
}
.google-badge strong { color: var(--text); }
.testimonial {
  display: flex; flex-direction: column;
  padding: var(--s4); background: var(--surface); border-radius: var(--r-lg); box-shadow: var(--sh-sm);
}
.stars { display: flex; gap: 2px; margin-bottom: var(--s3); }
.stars svg { width: 16px; height: 16px; fill: var(--accent); }
.testimonial-text {
  flex: 1; margin-bottom: var(--s4);
  font-family: var(--font-body); font-size: 0.94rem; line-height: 1.7;
  display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--primary-soft); color: var(--primary);
  font-family: var(--font-display); font-weight: 500;
}
.author-name { display: block; font-size: 0.9rem; font-weight: 500; }
.author-date { display: block; font-size: 0.8rem; color: var(--subtle); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--primary); color: #fff; text-align: center; }
.contact-inner { max-width: 660px; }
.contact .eyebrow { color: var(--sand); }
.contact .title { color: #fff; }
.contact .title em { color: var(--sand); }
.contact .lead { color: rgba(255, 255, 255, 0.85); margin: 0 auto var(--s5); }

.contact-actions { display: flex; justify-content: center; gap: var(--s2); flex-wrap: wrap; margin-bottom: var(--s6); }
.contact-actions .btn-light svg { fill: currentColor; stroke: none; }
.contact-info {
  display: flex; justify-content: center; gap: var(--s5); flex-wrap: wrap;
  padding-top: var(--s5); border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.info-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.93rem; color: rgba(255, 255, 255, 0.85); transition: color 0.2s var(--ease);
}
.info-item svg { width: 18px; height: 18px; color: var(--sand); }
a.info-item:hover { color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #1a1a18; color: rgba(255, 255, 255, 0.6); padding: var(--s7) var(--s4) var(--s4); }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: var(--s6);
  padding-bottom: var(--s5); border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-brand p { margin-top: var(--s2); font-size: 0.9rem; line-height: 1.7; max-width: 380px; }
.footer-logo { font-size: 1.2rem; }
.footer-logo .logo-mark { width: 54px; height: 54px; }
.footer-col h4 {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45); margin-bottom: var(--s3);
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; font-size: 0.9rem; }
.footer-links a:hover { color: #fff; }
.footer-contact {
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.7rem;
  font-size: 0.9rem; transition: color 0.2s var(--ease);
}
.footer-contact svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--sand); }
a.footer-contact:hover { color: #fff; }
.footer-bottom { padding-top: var(--s4); font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); text-align: center; }

/* ============================================================
   WHATSAPP FLOTTANT + BACK TO TOP + LIGHTBOX
   ============================================================ */
.wa-float {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transform: scale(0); transition: transform 0.4s var(--ease), box-shadow var(--dur) var(--ease);
}
.wa-float.show { transform: scale(1); }
.wa-float:hover { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }

.wa-float::after {
  content: "";
  position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #25d366;
  opacity: 0; animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}

.wa-tooltip {
  position: absolute; right: 68px; top: 50%; transform: translateY(-50%);
  background: var(--text); color: #fff; font-size: 0.8rem; font-weight: 500;
  padding: 0.5rem 1rem; border-radius: 100px; white-space: nowrap;
  pointer-events: none; opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.wa-tooltip::after {
  content: ""; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--text);
}
.wa-float:hover .wa-tooltip, .wa-float:focus-within .wa-tooltip { opacity: 1; }

.back-to-top {
  position: fixed; right: 1.25rem; bottom: 5.5rem; z-index: 89;
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--surface); color: var(--primary); border: 1px solid var(--border);
  box-shadow: var(--sh-sm); transform: translateY(20px); opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.back-to-top.show { transform: translateY(0); opacity: 1; }
.back-to-top:hover { background: var(--primary); color: #fff; box-shadow: var(--sh-md); }
.back-to-top svg { width: 18px; height: 18px; }

/* ============================================================
   SITE PLAN + WAVE MAP + DIR PHOTOS
   ============================================================ */
.site-plan {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg);
}
.site-plan img { width: 100%; display: block; }
.site-plan figcaption {
  padding: var(--s2) var(--s3); background: var(--surface);
  font-size: 0.85rem; color: var(--subtle); text-align: center;
}

.wave-map-layout {
  display: grid; grid-template-columns: 260px 1fr; gap: var(--s6); align-items: start;
}
.wave-map-fig { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); }
.wave-map-fig img { width: 100%; display: block; }

.dir-photos { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); margin-top: var(--s4); }
.dir-photo { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); }
.dir-photo img { width: 100%; display: block; aspect-ratio: 3/2; object-fit: cover; }
.dir-photo figcaption {
  padding: var(--s2) var(--s3); background: var(--surface);
  font-size: 0.82rem; color: var(--muted); text-align: center;
}

.lightbox {
  position: fixed; inset: 0; z-index: 150; display: grid; place-items: center;
  padding: var(--s4); background: rgba(20, 20, 18, 0.92);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  animation: fadeIn 0.3s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; border-radius: var(--r-md); object-fit: contain; }
.lightbox-close {
  position: absolute; top: 1rem; right: 1.4rem; font-size: 2.4rem; line-height: 1; color: #fff; opacity: 0.75;
}
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); border: 0; background: rgba(255,255,255,.14); color: #fff; font-size: 2rem; width: 3rem; height: 3rem; border-radius: 50%; cursor: pointer; }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }
.lightbox-close:hover { opacity: 1; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav-links { gap: var(--s3); }
  .site-grid, .svc-grid, .rules-grid, .eco-grid, .pack-grid { grid-template-columns: repeat(2, 1fr); }
  .mv-grid { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .intro-grid, .svc-teaser-grid, .directions-grid, .story-grid,
  .cat-block-head, .partner-promo { grid-template-columns: 1fr; gap: var(--s5); }
  .wave-map-layout { grid-template-columns: 1fr; }
  .wave-map-fig { max-width: 260px; margin: 0 auto; }
  .dir-photos { grid-template-columns: 1fr; }
  .intro-image, .story-img { aspect-ratio: 16/10; order: -1; }
  .partner-copy { padding: 0 var(--s2) var(--s2); }
  .intro-text { max-width: none; }
  .cat-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: var(--s4); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .nav { padding: 0 var(--s3); }
  .nav-links, .nav-right > .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .section { padding: var(--s8) var(--s3); }
  .page-hero { min-height: 54vh; padding: var(--s8) var(--s3) var(--s6); }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .site-grid, .svc-grid, .rules-grid, .eco-grid, .pack-grid, .am-cols { grid-template-columns: 1fr; }
  .faq-q { font-size: 1rem; }
  .faq-a { padding-left: 0; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 210px; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(2) { grid-column: span 1; }
  .contact-info { flex-direction: column; gap: var(--s3); }
  .footer-top { grid-template-columns: 1fr; gap: var(--s4); }
  .wa-float { right: 1rem; bottom: 1rem; }
  .back-to-top { right: 1rem; bottom: 5.2rem; }
}
