/* =============================================================
   CONSTRU-ART · styles.css
   Dirección visual: plano técnico contemporáneo
   ============================================================= */

/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg: #14171a;
  --bg-2: #1f2428;
  --steel: #3a4147;
  --mist: #e9ecee;
  --white: #ffffff;
  --tq: #17c3ce;
  --tq-deep: #0a7f88;
  --wood: #b98255;

  --ink: #14171a;
  --ink-soft: #4b545a;
  --on-dark: #f4f6f7;
  --on-dark-soft: #a9b2b8;
  --line: rgba(20, 23, 26, 0.14);
  --line-dark: rgba(255, 255, 255, 0.14);

  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --sans: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  --gutter: 20px;
  --maxw: 1200px;
  --radius: 2px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 64px;
}

/* =============================================================
   2. Reset y base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  padding-bottom: 72px; /* barra inferior móvil */
}
img, svg, iframe { 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; }
ul, ol { list-style: none; padding: 0; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 700; line-height: 1; letter-spacing: 0.01em; text-transform: uppercase; text-wrap: balance; }
::selection { background: var(--tq); color: var(--bg); }
:focus-visible { outline: 2px solid var(--tq); outline-offset: 3px; }

.skip-link {
  position: fixed; top: -100px; left: 12px; z-index: 9999;
  padding: 10px 16px; background: var(--tq); color: var(--bg); font-weight: 600;
}
.skip-link:focus { top: 12px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.icon { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.icon--fill { fill: currentColor; stroke: none; }

/* =============================================================
   3. Tipografía y componentes base
   ============================================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--tq-deep);
}
.eyebrow::before {
  content: ""; width: 28px; height: 8px; flex: none;
  background:
    linear-gradient(currentColor, currentColor) left bottom / 100% 1px no-repeat,
    repeating-linear-gradient(90deg, currentColor 0 1px, transparent 1px 7px) left bottom / 100% 8px no-repeat;
}
.on-dark .eyebrow, .eyebrow--light { color: var(--tq); }

.h2 { font-size: clamp(34px, 8vw, 60px); margin-top: 14px; }
.lead { font-size: clamp(17px, 2.4vw, 20px); color: var(--ink-soft); max-width: 60ch; margin-top: 18px; }
.on-dark .lead { color: var(--on-dark-soft); }

.section { padding-block: clamp(56px, 9vw, 112px); position: relative; }
.section--mist { background: var(--mist); }
.section--dark { background: var(--bg); color: var(--on-dark); }
.section--dark2 { background: var(--bg-2); color: var(--on-dark); }
.on-dark { color: var(--on-dark); }
.section-head { max-width: 780px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }

/* Botones */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 26px;
  font-family: var(--display); font-weight: 700; font-size: 18px; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius); border: 1.5px solid transparent;
  transition: transform 0.35s var(--ease-out), background-color 0.25s, color 0.25s, border-color 0.25s;
  text-align: center; line-height: 1.1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--tq); color: var(--bg); border-color: var(--tq); }
.btn--primary:hover { background: #4fdbe4; border-color: #4fdbe4; }
.btn--ghost { color: var(--on-dark); border-color: rgba(255, 255, 255, 0.4); }
.btn--ghost:hover { border-color: var(--tq); color: var(--tq); }
.btn--dark { background: var(--bg); color: var(--white); border-color: var(--bg); }
.btn--dark:hover { background: var(--bg-2); }
.btn--line { color: var(--ink); border-color: var(--ink); }
.btn--line:hover { background: var(--ink); color: var(--white); }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }

.text-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.text-link:hover { color: var(--tq); }

/* =============================================================
   4. Barra superior y encabezado
   ============================================================= */
.topbar { background: #0c0e10; color: var(--on-dark-soft); font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em; }
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 36px; }
.topbar a { color: var(--on-dark); }
.topbar a:hover { color: var(--tq); }
.status { display: inline-flex; align-items: center; gap: 8px; }
.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--steel); flex: none; }
.status[data-state="open"]::before { background: #3ddc84; box-shadow: 0 0 0 3px rgba(61, 220, 132, 0.2); }
.status[data-state="closed"]::before { background: #f0a24a; }
.topbar-phone { display: none; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(20, 23, 26, 0.96); color: var(--on-dark);
  border-bottom: 1px solid var(--line-dark);
}
@supports (backdrop-filter: blur(10px)) {
  .site-header { background: rgba(20, 23, 26, 0.86); backdrop-filter: blur(12px); }
}
.hdr { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 16px; }
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-mark { width: 70px; height: auto; aspect-ratio: 1212 / 816; flex: none; display: block; background: #fff; padding: 4px 5px; }
.logo--full img { width: 210px; height: auto; display: block; background: #fff; padding: 12px; }
.logo-word { font-family: var(--display); font-weight: 700; font-size: 26px; letter-spacing: 0.08em; line-height: 1; }
.logo-word i { font-style: normal; color: var(--tq); }
.logo-sub { display: none; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; color: var(--on-dark-soft); text-transform: uppercase; margin-top: 4px; }
.logo-text { display: flex; flex-direction: column; }

.nav { display: none; }
.nav-list { display: flex; align-items: center; gap: 30px; }
.nav-list a {
  font-family: var(--display); font-weight: 600; font-size: 17px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--on-dark-soft); padding: 6px 0; border-bottom: 2px solid transparent; transition: color 0.2s, border-color 0.2s;
}
.nav-list a:hover { color: var(--white); }
.nav-list a[aria-current="page"] { color: var(--white); border-bottom-color: var(--tq); }
.nav-list .nav-ext { display: inline-flex; align-items: center; gap: 6px; color: var(--tq); }
.nav-list .nav-ext:hover { color: #7fe9f0; }
.hdr-actions { display: flex; align-items: center; gap: 10px; }
.hdr-cta { display: none; min-height: 44px; padding: 0 18px; font-size: 16px; }
.burger { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line-dark); border-radius: var(--radius); }
.burger .icon { width: 22px; height: 22px; }
.burger .icon-x { display: none; }
.burger[aria-expanded="true"] .icon-menu { display: none; }
.burger[aria-expanded="true"] .icon-x { display: block; }

.mnav { display: none; background: var(--bg); border-top: 1px solid var(--line-dark); }
.mnav.is-open { display: block; }
.mnav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--gutter); border-bottom: 1px solid var(--line-dark);
  font-family: var(--display); font-weight: 600; font-size: 24px; letter-spacing: 0.08em; text-transform: uppercase;
}
.mnav a[aria-current="page"] { color: var(--tq); }
.mnav .mnav-cta { padding: 20px var(--gutter) 24px; border: 0; }

/* =============================================================
   5. Hero
   ============================================================= */
.hero { background: var(--bg); color: var(--on-dark); position: relative; overflow: clip; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 48px 48px;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
  mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}
.hero-grid { position: relative; display: grid; gap: 36px; padding-block: 40px 0; }
.hero-copy { position: relative; z-index: 1; }
.hero .eyebrow { color: var(--on-dark-soft); }
.hero h1 {
  display: flex; flex-direction: column; gap: 4px; margin-top: 18px;
  font-size: 20px; letter-spacing: 0.12em; color: var(--tq);
}
.hero h1 .h1-brand { font-size: 24px; color: var(--white); letter-spacing: 0.14em; }
.hero h1 .h1-brand i { font-style: normal; color: var(--tq); }
.hero h1 .h1-sub { font-family: var(--mono); font-size: 12px; font-weight: 400; letter-spacing: 0.1em; color: var(--on-dark-soft); }
.display {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(50px, 14.5vw, 128px); line-height: 0.9; letter-spacing: 0; margin-top: 18px;
}
.display em { font-style: normal; color: var(--tq); }
.hero-text { margin-top: 24px; font-size: clamp(17px, 2.4vw, 20px); color: var(--on-dark-soft); max-width: 46ch; }
.hero-loc { margin-top: 22px; display: inline-flex; align-items: center; gap: 10px; font-family: var(--mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark); }
.hero-loc .icon { color: var(--tq); }

/* Panel de listones: la fachada, dibujada */
.slats {
  position: relative; overflow: hidden; background-color: #17110d;
  background-image:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.55)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.012 0.8' numOctaves='2' seed='4'/%3E%3CfeColorMatrix values='0 0 0 0 0.10  0 0 0 0 0.06  0 0 0 0 0.03  0 0 0 0.55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"),
    repeating-linear-gradient(90deg, #c08a5c 0 16px, #a3703f 16px 22px, #17110d 22px 26px);
}
.hero-art { position: relative; height: 240px; }
.hero-art { overflow: hidden; background: #0e1113; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 40% 30%; }
.hero-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20, 23, 26, 0.35), rgba(20, 23, 26, 0) 30%, rgba(20, 23, 26, 0.55)); pointer-events: none; }
.facade-fig { position: relative; margin: 0 0 clamp(36px, 5vw, 64px); background: #0e1113; }
.facade-fig img { display: block; width: 100%; height: auto; max-height: 560px; object-fit: cover; object-position: 50% 35%; aspect-ratio: 4 / 3; }
.facade-fig .dim { left: 16px; right: 16px; bottom: 16px; }
@media (min-width: 720px) { .facade-fig img { aspect-ratio: 16 / 9; } }
.dim {
  position: absolute; left: var(--gutter); right: var(--gutter); bottom: 22px; z-index: 2;
  display: flex; align-items: center; gap: 10px; color: var(--white);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}
.dim::before, .dim::after { content: ""; height: 1px; background: var(--tq); flex: 1; box-shadow: 0 0 0 0.5px rgba(23, 195, 206, 0.4); }
.dim span { white-space: nowrap; padding: 4px 10px; background: rgba(20, 23, 26, 0.82); border: 1px solid rgba(23, 195, 206, 0.6); }

/* Regla que se dibuja: efecto firma */
.ruler {
  position: relative; height: 22px; margin-top: 0; z-index: 2;
  background:
    repeating-linear-gradient(90deg, var(--tq) 0 1px, transparent 1px 60px) 0 100% / 100% 22px no-repeat,
    repeating-linear-gradient(90deg, rgba(23, 195, 206, 0.75) 0 1px, transparent 1px 12px) 0 100% / 100% 10px no-repeat,
    linear-gradient(var(--tq), var(--tq)) 0 100% / 100% 1px no-repeat;
  clip-path: inset(0 0 0 0);
  animation: rulerDraw 1.6s var(--ease-out) 0.2s both;
}
@keyframes rulerDraw { from { clip-path: inset(0 100% 0 0); } to { clip-path: inset(0 0 0 0); } }

/* Franja de datos */
.facts { background: var(--bg-2); color: var(--on-dark); border-top: 1px solid var(--line-dark); }
.facts-list { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; overflow-y: visible; }
.facts-list::-webkit-scrollbar { display: none; }
.facts-list li {
  flex: 0 0 76%; scroll-snap-align: start; padding: 22px var(--gutter);
  border-right: 1px solid var(--line-dark); display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px; color: var(--on-dark-soft); line-height: 1.4;
}
.facts-list li:last-child { border-right: 0; }
.facts-list .icon { color: var(--tq); margin-top: 1px; width: 22px; height: 22px; }
.facts-list strong { display: block; color: var(--white); font-weight: 600; margin-bottom: 2px; }

/* =============================================================
   6. Tarjetas de áreas
   ============================================================= */
.areas { display: grid; gap: 16px; margin-top: 40px; }
.area {
  display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line);
  padding: 26px 24px 24px; position: relative; transition: border-color 0.3s, transform 0.4s var(--ease-out);
}
.area:hover { border-color: var(--tq); transform: translateY(-3px); }
.area-idx { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; color: var(--ink-soft); display: flex; justify-content: space-between; align-items: center; }
.area-idx .icon { width: 34px; height: 34px; color: var(--tq-deep); stroke-width: 1.4; }
.area h3 { font-size: 34px; margin-top: 26px; }
.area p { margin-top: 12px; color: var(--ink-soft); }
.area ul { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 6px; }
.area li { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 9px; background: var(--mist); color: var(--ink); }
.area .btn-slot { margin-top: auto; padding-top: 26px; }

/* =============================================================
   7. Pasos
   ============================================================= */
.steps { display: grid; gap: 0; margin-top: 44px; counter-reset: step; }
.step { position: relative; padding: 26px 0 26px 66px; border-top: 1px solid var(--line); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  position: absolute; left: 0; top: 22px; font-family: var(--display); font-weight: 700; font-size: 46px; line-height: 1; color: var(--tq-deep);
}
.step h3 { font-size: 28px; }
.step p { margin-top: 8px; color: var(--ink-soft); max-width: 46ch; }
.on-dark .step { border-color: var(--line-dark); }
.on-dark .step::before { color: var(--tq); }
.on-dark .step p { color: var(--on-dark-soft); }

/* =============================================================
   8. Categorías
   ============================================================= */
.cats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 40px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.cat {
  display: flex; flex-direction: column; gap: 10px; padding: 20px 16px 18px; min-height: 172px;
  background: var(--bg); color: var(--on-dark); position: relative; transition: background-color 0.3s;
}
a.cat:hover { background: var(--bg-2); }
.cat > .icon { width: 34px; height: 34px; color: var(--tq); stroke-width: 1.4; }
.cat h3 { font-size: 22px; letter-spacing: 0.04em; margin-top: 8px; line-height: 1.05; }
.cat p { font-size: 13.5px; line-height: 1.4; color: var(--on-dark-soft); }
.cat .cat-go { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tq); }
.cat--cta { background: var(--tq); color: var(--bg); }
.cat--cta > .icon { color: var(--bg); }
.cat--cta p { color: rgba(20, 23, 26, 0.78); }
.cat--cta .cat-go { color: var(--bg); }
a.cat--cta:hover { background: #4fdbe4; }
.cats--light { background: var(--line); border-color: var(--line); }
.cats--light .cat { background: var(--white); color: var(--ink); }
.cats--light .cat p { color: var(--ink-soft); }
.cats--light .cat > .icon { color: var(--tq-deep); }
.cats--light .cat .cat-go { color: var(--tq-deep); }
.cats--light a.cat:hover { background: var(--mist); }
.cats--light .cat--cta { background: var(--tq); color: var(--bg); }
.cats--light .cat--cta > .icon, .cats--light .cat--cta .cat-go { color: var(--bg); }
.cats--light a.cat--cta:hover { background: #4fdbe4; }

.callout { margin-top: 40px; padding: 26px 22px; border: 1px solid var(--line-dark); display: grid; gap: 18px; align-items: center; }
.callout h3 { font-size: 30px; }
.callout p { color: var(--on-dark-soft); margin-top: 8px; }
.section--mist .callout, .callout--light { border-color: var(--line); }
.callout--light p { color: var(--ink-soft); }

/* =============================================================
   9. Puente a Taller AM
   ============================================================= */
.bridge { background: var(--bg); color: var(--on-dark); position: relative; overflow: clip; }
.bridge-grid { display: grid; }
.bridge-art { position: relative; height: 160px; }
.bridge-art .slats { position: absolute; inset: 0; }
.bridge-body { padding: 48px var(--gutter) 60px; position: relative; }
.bridge-body::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.6;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 40px 40px;
}
.bridge-body > * { position: relative; }
.bridge h2 { font-size: clamp(32px, 7vw, 52px); margin-top: 14px; }
.bridge h3 { font-family: var(--mono); font-weight: 500; font-size: 13px; letter-spacing: 0.16em; color: var(--on-dark-soft); margin-top: 18px; }
.bridge-msg { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: clamp(38px, 9vw, 72px); line-height: 0.95; margin-top: 12px; color: var(--white); }
.bridge-msg em { font-style: normal; color: var(--tq); }
.bridge p.txt { margin-top: 20px; color: var(--on-dark-soft); max-width: 52ch; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.chips li { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 10px; border: 1px solid var(--line-dark); color: var(--on-dark); }
.bridge .text-link { margin-top: 22px; color: var(--on-dark-soft); }

/* =============================================================
   10. Próximamente
   ============================================================= */
.soon { background: var(--mist); position: relative; overflow: clip; }
.soon::before {
  content: ""; position: absolute; inset: 0 0 0 auto; width: 38%; opacity: 0.5; pointer-events: none;
  background: repeating-linear-gradient(135deg, transparent 0 14px, rgba(20, 23, 26, 0.06) 14px 15px);
}
.soon-inner { position: relative; display: grid; gap: 18px; padding-block: clamp(44px, 7vw, 80px); }
.tag { display: inline-flex; justify-self: start; align-self: flex-start; padding: 6px 12px; background: var(--bg); color: var(--tq); font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }
.soon h2 { font-size: clamp(34px, 8vw, 64px); }
.soon p { color: var(--ink-soft); max-width: 52ch; }
.soon .place { display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }
.soon .place .icon { color: var(--tq-deep); }

/* =============================================================
   11. Visita y contacto
   ============================================================= */
.visit { display: grid; gap: 32px; margin-top: 40px; }
.info-list { display: grid; gap: 0; }
.info-item { display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); }
.info-item:last-child { border-bottom: 1px solid var(--line); }
.info-item .icon { width: 24px; height: 24px; color: var(--tq-deep); margin-top: 3px; }
.info-item h3 { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.14em; color: var(--ink-soft); }
.info-item p, .info-item a.val { margin-top: 6px; font-size: 17px; display: block; }
.info-item a.val:hover { color: var(--tq-deep); }
.hours { width: 100%; border-collapse: collapse; margin-top: 8px; font-size: 16px; }
.hours th, .hours td { padding: 7px 0; text-align: left; font-weight: 400; border-bottom: 1px dashed var(--line); }
.hours td { text-align: right; font-family: var(--mono); font-size: 14px; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--tq-deep); font-weight: 600; }
.hours tr.is-closed td { color: var(--ink-soft); }
.map { position: relative; min-height: 320px; background: var(--mist); border: 1px solid var(--line); overflow: hidden; }
.map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; filter: grayscale(0.25) contrast(1.02); }
.map-fallback { position: absolute; inset: auto 12px 12px auto; }

.final { background: var(--bg); color: var(--on-dark); position: relative; overflow: clip; text-align: center; }
.final::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
}
.final .container { position: relative; padding-block: clamp(64px, 10vw, 120px); }
.final-big { font-family: var(--display); font-weight: 700; text-transform: uppercase; font-size: clamp(40px, 10vw, 92px); line-height: 0.95; }
.final-big em { font-style: normal; color: var(--tq); }
.final p.lead { margin-inline: auto; }
.final .btn { margin-top: 30px; min-width: min(100%, 320px); }

/* Encabezado de página interior */
.page-hero { background: var(--bg); color: var(--on-dark); position: relative; overflow: clip; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px) 0 0 / 48px 48px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 90%);
  mask-image: linear-gradient(180deg, #000, transparent 90%);
}
.page-hero .container { position: relative; padding-block: 48px 0; }
.page-hero h1 { font-size: clamp(42px, 11vw, 96px); line-height: 0.92; margin-top: 16px; }
.page-hero h1 em { font-style: normal; color: var(--tq); }
.page-hero .lead { color: var(--on-dark-soft); }
.crumbs { font-family: var(--mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark-soft); display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a:hover { color: var(--tq); }
.page-hero .btn-row { padding-bottom: 44px; }

/* Renta */
.rent-grid { display: grid; gap: 16px; margin-top: 40px; }
.rent { background: var(--white); border: 1px solid var(--line); padding: 26px 24px; display: flex; flex-direction: column; gap: 14px; }
.rent > .icon { width: 44px; height: 44px; color: var(--tq-deep); stroke-width: 1.3; }
.rent h3 { font-size: 36px; }
.rent p { color: var(--ink-soft); }
.rent .btn { margin-top: auto; }
.note { margin-top: 28px; padding: 16px 18px; border-left: 3px solid var(--tq); background: var(--mist); font-size: 15px; color: var(--ink-soft); }
.on-dark .note { background: rgba(255, 255, 255, 0.05); color: var(--on-dark-soft); }

/* =============================================================
   12. Pie de página
   ============================================================= */
.site-footer { background: #0c0e10; color: var(--on-dark-soft); padding-top: 56px; font-size: 15px; }
.foot-grid { display: grid; gap: 36px; padding-bottom: 44px; }
.site-footer h4 { font-family: var(--mono); font-size: 12px; font-weight: 500; letter-spacing: 0.16em; color: var(--white); margin-bottom: 14px; }
.site-footer a:hover { color: var(--tq); }
.foot-brand .logo-word { color: var(--white); }
.foot-brand p { margin-top: 14px; max-width: 34ch; }
.foot-links li + li { margin-top: 8px; }
.foot-links .nav-ext { color: var(--tq); display: inline-flex; gap: 6px; align-items: center; }
.foot-bottom { border-top: 1px solid var(--line-dark); padding-block: 20px; display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.foot-bottom p:first-child { color: var(--on-dark); }

/* =============================================================
   13. Acciones fijas
   ============================================================= */
.mbar {
  position: fixed; inset: auto 0 0 0; z-index: 90; display: grid; grid-template-columns: 1.6fr 1fr 1fr;
  background: var(--bg); border-top: 1px solid var(--line-dark); padding-bottom: env(safe-area-inset-bottom);
}
.mbar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; min-height: 64px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--on-dark);
}
.mbar a .icon { width: 22px; height: 22px; }
.mbar a:first-child { background: var(--tq); color: var(--bg); font-weight: 500; }
.wa-float {
  display: none; position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 60px; height: 60px; border-radius: 50%;
  align-items: center; justify-content: center; background: var(--tq); color: var(--bg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35); transition: transform 0.35s var(--ease-out);
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); }
.wa-float .icon { width: 28px; height: 28px; }

/* =============================================================
   14. Revelado suave (el contenido siempre es visible sin JS)
   ============================================================= */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: 0.08s; }
.js .reveal[data-delay="2"] { transition-delay: 0.16s; }
.js .reveal[data-delay="3"] { transition-delay: 0.24s; }

/* =============================================================
   15. Responsive (mobile-first)
   ============================================================= */
.hero-grid, .areas, .steps, .rent-grid, .visit, .foot-grid, .bridge-grid, .soon-inner, .info-list { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 540px) {
  .btn-row { flex-direction: row; flex-wrap: wrap; }
  .facts-list li { flex-basis: 46%; }
  .cats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .logo-sub { display: block; }
}
@media (min-width: 720px) {
  :root { --gutter: 32px; }
  .areas, .rent-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; border-top: 0; }
  .step { padding: 24px 0 0 0; border-top: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .step::before { position: static; display: block; margin-bottom: 14px; }
  .on-dark .step { border-color: var(--line-dark); }
  .hero-art { height: 300px; }
  .callout { grid-template-columns: 1fr auto; padding: 32px; }
  .visit { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .foot-bottom { flex-direction: row; justify-content: space-between; }
  .facts-list li { flex-basis: 34%; }
  .topbar-phone { display: inline; }
}
@media (min-width: 960px) {
  :root { --header-h: 76px; }
  body { padding-bottom: 0; }
  .mbar, .mnav, .burger { display: none !important; }
  .nav { display: block; }
  .hdr-cta { display: inline-flex; }
  .wa-float { display: inline-flex; }
  .hero-grid { padding-block: 64px 0; }
  .hero-copy { padding-bottom: 72px; max-width: 58%; }
  .hero h1 { font-size: 22px; }
  .hero h1 .h1-brand { font-size: 28px; }
  .hero-art { position: absolute; top: 0; right: 0; bottom: 22px; width: 44vw; max-width: 720px; height: auto; }
  .btn-row { margin-top: 36px; }
  .areas { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .cat { min-height: 200px; padding: 24px 20px 20px; }
  .facts-list li { flex: 1 1 0; }
  .bridge-grid { grid-template-columns: 0.62fr 1.38fr; min-height: 560px; }
  .bridge-art { height: auto; }
  .bridge-body { padding: 84px 56px 84px 64px; }
  .rent-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .soon-inner { grid-template-columns: 1.2fr 0.8fr; align-items: end; }
}
@media (min-width: 1280px) {
  .display { font-size: clamp(88px, 7.4vw, 122px); }
}

/* =============================================================
   16. Movimiento reducido: solo se apaga lo intrusivo
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ruler { animation-duration: 0.01s; }
  /* Se conservan hovers y revelados (más rápidos) */
  .js .reveal { transition-duration: 0.25s; transform: none; }
}

/* Ajustes finales */
.foot-taller { color: var(--tq); }
.foot-taller svg { display: inline-block; vertical-align: -0.2em; margin-left: 4px; }
