/* Reset Hotel · Coworking · Café — Brand Design System
   Source: Manual Corporativo Reset (Nov 2021). Applies uniformly to all 3 verticals.
   Palette: P 61-7 U red, P 175-16 C navy, P 111-15 C deep blue, P 179-1 C paper.
   Fonts: Archivo (Coolvetica substitute) + Dancing Script (Carolina Cursive substitute). */

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

:root {
  /* Brand palette (sampled from Manual Corporativo) */
  --red: #B7003B;
  --red-dark: #960030;          /* deprecated — use var(--red) + filter:brightness(.92) */
  --navy: #173845;
  --navy-light: #24495A;
  --blue-deep: #1F5770;
  --paper: #F1F1F2;
  --white: #fff;
  --text: #1C1C1C;
  --muted: #5D6C73;
  --light-bg: var(--paper);
  --border: #D8DCDF;
  --wa-green: #25D366;
  --wa-green-dark: #1da851;
  /* Typography */
  --font: 'Archivo', system-ui, sans-serif;
  --font-script: 'Dancing Script', cursive;
  /* Type scale (1.2× modular) */
  --fs-xs: 12px; --fs-sm: 14px; --fs-base: 16px;
  --fs-md: 19px; --fs-lg: 23px; --fs-xl: 28px; --fs-2xl: 34px;
  /* Letter-spacing scale */
  --ls-tight: 0; --ls-normal: .5px; --ls-wide: 1px; --ls-wider: 2px;
  /* Spacing (8pt scale) */
  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px;
  /* Radius */
  --radius-sm: 4px; --radius-md: 8px; --radius-lg: 16px; --radius-full: 999px;
  /* Shadow */
  --shadow-sm: 0 2px 4px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.10);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.14);
  /* Z-index scale */
  --z-nav: 20; --z-overlay: 900; --z-modal: 1000;
  /* Layout */
  --max-w: 1440px;
  --speed: .25s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Skip link (a11y) ─────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  z-index: 100;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; outline: 2px solid var(--white); outline-offset: 2px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Top Nav ──────────────────────────────────────────────── */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.top-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
}
.logo-img { height: 50px; }
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--speed);
}
.nav-links a:hover,
.nav-links a.active { color: var(--red); }
.nav-social {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  transition: background var(--speed), transform var(--speed);
}
.nav-social a:hover { background: var(--red-dark); transform: translateY(-1px); }
.nav-social svg { width: 16px; height: 16px; fill: currentColor; }
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
  transition: border-color var(--speed), color var(--speed);
}
.lang-btn:hover { border-color: var(--red); color: var(--red); }
.lang-btn::after { content: "\25BE"; font-size: 10px; }
.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.menu-btn span {
  width: 22px; height: 2px;
  background: var(--navy);
}

/* ── Red Banner Bar (CTA | title centered | CTA) ──────────── */
.red-banner {
  background: var(--red);
  padding: 14px 24px;
}
.red-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}
.banner-title {
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}
.banner-title .cafe {
  font-family: var(--font-script);
  font-size: 26px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-left: 2px;
}
.btn-banner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  transition: background var(--speed), transform var(--speed);
  line-height: 1.2;
}
.btn-banner:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

/* ── Carousel ─────────────────────────────────────────────── */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform .5s ease;
}
.carousel-slide {
  min-width: 100%;
  position: relative;
}
.carousel-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  max-height: 720px;
  object-fit: cover;
  object-position: center 35%;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.4);
  color: white;
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  z-index: 3;
  font-size: 20px;
  cursor: pointer;
  transition: background var(--speed);
  z-index: 5;
}
.carousel-btn:hover { background: rgba(0,0,0,.7); }
.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }
.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.carousel-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  cursor: pointer;
  transition: background var(--speed);
}
.carousel-dot.active { background: var(--white); }

/* ── Hero Overlay (headline + subhead on carousel) ─────────── */
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 24px 96px;
  background: linear-gradient(
    to bottom,
    rgba(23, 56, 69, 0) 40%,
    rgba(23, 56, 69, .35) 65%,
    rgba(23, 56, 69, .72) 100%
  );
  pointer-events: none;
  z-index: 2;
}
.hero-overlay-inner {
  max-width: 900px;
  width: 100%;
  text-align: center;
  color: var(--white);
  pointer-events: none;
}
.hero-title {
  font-family: var(--font);
  font-weight: 600;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.1;
  margin: 0 0 12px;
  letter-spacing: .3px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
}
.hero-title .script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.15em;
  color: var(--white);
}
.hero-title .hero-sep {
  opacity: .6;
  margin: 0 .15em;
  font-weight: 300;
}
.hero-slogan {
  font-size: clamp(10px, 1vw, 12px);
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .78);
  text-shadow: 0 1px 6px rgba(0, 0, 0, .3);
}
.hero-sub {
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 400;
  margin: 0 0 24px;
  opacity: .92;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .3);
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .4px;
  text-decoration: none;
  border-radius: 999px;
  transition: background var(--speed), transform var(--speed), box-shadow var(--speed);
  box-shadow: 0 6px 20px rgba(183, 0, 59, .35);
  pointer-events: auto;
}
.hero-cta::after { content: "\2192"; font-size: 16px; transition: transform var(--speed); }
.hero-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(183, 0, 59, .45);
}
.hero-cta:hover::after { transform: translateX(4px); }
.hero-cta:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

/* ── Welcome Row (icons+wordmark | Rompe copy | BIENVENIDO) ─ */
.welcome-row {
  padding: var(--space-7) var(--space-5);
  background: var(--white);
}
.welcome-row-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.welcome-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.welcome-icons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.welcome-icon {
  width: 88px; height: 88px;
  border-radius: 50%;
  display: block;
  object-fit: contain;
  transition: transform var(--speed);
}
.welcome-icon:hover { transform: translateY(-2px) scale(1.05); }
.welcome-wordmark {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--navy);
  text-transform: uppercase;
  line-height: 1.15;
}
.welcome-wordmark .cafe {
  font-family: var(--font-script);
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  text-transform: none;
  letter-spacing: 0;
  margin-left: 4px;
}
.welcome-copy p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  max-width: 380px;
}
.welcome-heading {
  border-left: 3px solid var(--red);
  padding-left: 18px;
}
.welcome-heading h2 {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin: 0;
}
.welcome-heading h2 .highlight { color: var(--red); }
.welcome-heading .script {
  font-family: var(--font-script);
  font-size: 36px;
  color: var(--navy);
  font-weight: 400;
}

/* ── About Red (photo LEFT, red panel RIGHT, matches reference) ── */
.about-red {
  background: var(--white);
}
.about-red-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 480px;
}
.about-red-photo {
  overflow: hidden;
}
.about-red-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.about-red-copy {
  background: var(--red);
  color: var(--white);
  padding: var(--space-7) var(--space-7);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-red-copy h2 {
  font-size: var(--fs-2xl);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}
.about-red-copy h3 {
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  opacity: .9;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.35);
}
.about-red-copy p {
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 12px;
  color: rgba(255,255,255,.95);
}
.about-red-copy .about-more {
  margin-top: 6px;
  font-size: 14px;
}
.about-red-copy .about-more summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 700;
  padding: 8px 0;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,.5);
}
.about-red-copy .about-more summary::-webkit-details-marker { display: none; }
.about-red-copy .about-more summary::after {
  content: "\25BE";
  transition: transform var(--speed);
}
.about-red-copy .about-more[open] summary::after { transform: rotate(180deg); }
.about-red-copy .about-more p { margin-top: 12px; }

/* ── Coworking Banner (hero band on coworking.html) ───────── */
.cowork-banner {
  background: var(--paper);
  padding: var(--space-7) var(--space-5);
}
.cowork-banner-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}
.cowork-banner-logo img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.08));
}
.cowork-banner-copy h2 {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.cowork-banner-copy p {
  font-size: 14px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: lowercase;
}
.cowork-banner-illustrations {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cowork-banner-illustrations img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  transition: transform var(--speed);
}
.cowork-banner-illustrations img:hover { transform: translateY(-3px) scale(1.04); }

/* ── Un espacio para Todos — 3 brand tiles as-is ──────────── */
.cowork-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  color: inherit;
  text-decoration: none;
  background: var(--navy);
  overflow: hidden;
}
.cowork-tiles img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform .45s ease, filter .45s ease;
}
.cowork-tiles:hover img { filter: brightness(1.04); }
.cowork-tiles:hover img:nth-child(2) { transform: scale(1.02); }

/* ── 3-column photo strip (real photos) ───────────────────── */
.photo-strip { background: var(--white); }
.photo-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.photo-strip-inner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.photo-strip-inner img:hover { transform: scale(1.03); }

/* ── Map section (Google embed) ───────────────────────────── */
.map-section {
  background: var(--paper);
  padding: 0;
  line-height: 0;
}
.map-section iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* ── Newsletter band (special events) ─────────────────────── */
.newsletter-band {
  background: var(--white);
  padding: 40px 20px 44px;
  text-align: center;
}
.newsletter-band-inner {
  max-width: 520px;
  margin: 0 auto;
}
.newsletter-band h3 {
  color: var(--red);
  font-family: var(--font);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: .3px;
  line-height: 1.2;
  margin-bottom: 18px;
}
.newsletter-form {
  display: flex;
  gap: 0;
  align-items: stretch;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  max-width: 440px;
  margin: 0 auto;
  background: var(--white);
}
.newsletter-form input[type="email"] {
  flex: 1 1 auto;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  border: 0;
  outline: none;
  background: var(--white);
  min-width: 0;
}
.newsletter-form input[type="email"]::placeholder { color: var(--muted); }
.newsletter-form input[type="email"]:focus { outline: 2px solid var(--red); outline-offset: -2px; }
.newsletter-form button {
  padding: 12px 28px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--white);
  background: var(--red);
  border: 0;
  cursor: pointer;
  transition: background var(--speed);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--red-dark); }
.newsletter-form button:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }
.newsletter-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}
.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;
}

/* Legacy .cowork-inner kept for JS observer hook */
.cowork-inner { max-width: var(--max-w); margin: 0 auto; }

/* ── Newsletter CTA (WhatsApp-routed, no form) ────────────── */
.newsletter {
  background: var(--paper);
  padding: var(--space-7) var(--space-5);
  text-align: center;
}
.newsletter-inner { max-width: 720px; margin: 0 auto; }
.newsletter h2 {
  font-size: var(--fs-xl);
  color: var(--navy);
  margin-bottom: 8px;
}
.newsletter p { color: var(--muted); margin-bottom: 20px; font-size: 14px; }

/* ── Contact channels grid (3 branded icons) ──────────────── */
.contact-channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 32px 0 16px;
}
.contact-channel-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  color: var(--navy);
  transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed);
}
.contact-channel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  border-color: var(--red);
}
.contact-channel-card img,
.contact-channel-icon {
  width: 48px; height: 48px;
  object-fit: contain;
}
.contact-channel-icon {
  fill: currentColor;
  color: var(--red);
  transition: color var(--speed), transform var(--speed);
}
.contact-channel-card:hover .contact-channel-icon {
  color: var(--red-dark);
  transform: translateY(-1px);
}
.contact-channel-card strong { font-size: 15px; font-weight: 600; color: var(--navy); }
.contact-channel-card span { font-size: 13px; color: var(--muted); }

/* ── Red Divider ──────────────────────────────────────────── */
.red-divider {
  height: 4px;
  background: var(--red);
  width: 100%;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: var(--space-3) var(--space-6);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: var(--ls-normal);
  text-transform: uppercase;
  transition: background var(--speed), transform var(--speed), box-shadow var(--speed), color var(--speed);
  cursor: pointer;
  border: none;
  text-align: center;
  font-family: var(--font);
  border-radius: var(--radius-sm);
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-dark); }
.btn-red-outline {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-red-outline:hover { background: var(--red); color: var(--white); }
.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 700;
  letter-spacing: var(--ls-normal);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.btn-wa:hover { background: var(--wa-green-dark); transform: translateY(-1px); }

/* ── Sections ─────────────────────────────────────────────── */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--space-8) var(--space-5);
}
.section h2 {
  font-size: var(--fs-xl);
  text-align: center;
  margin-bottom: 8px;
  color: var(--navy);
}
.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 40px;
}
.section-cta { text-align: center; margin-top: 32px; }

/* ── Page Hero (sub-pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  min-height: clamp(200px, 26vw, 300px);
  padding: clamp(var(--space-6), 4vw, var(--space-7)) var(--space-4);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(183,0,59,.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(31,87,112,.25) 0%, transparent 45%);
  pointer-events: none;
}
.page-hero > * { position: relative; }
.page-hero h1 {
  font-size: clamp(var(--fs-2xl), 5vw, 52px);
  font-weight: 700;
  margin-bottom: var(--space-4);
  letter-spacing: var(--ls-tight);
}
.page-hero h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: var(--red);
  margin: var(--space-4) auto 0;
  border-radius: var(--radius-full);
}
.page-hero p { opacity: .85; font-size: clamp(var(--fs-sm), 2vw, var(--fs-md)); }

/* ── Card grid ────────────────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--speed);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.card-img {
  aspect-ratio: 4 / 3;
  height: auto;
  overflow: hidden;
  background: var(--light-bg);
}
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform .4s ease;
}
.card:hover .card-img img { transform: scale(1.05); }
.card-img-ph {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--paper), var(--border));
  color: var(--muted);
  font-size: var(--fs-xl);
  font-weight: 700;
}
.card-img-btn {
  display: block;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  width: 100%;
  font: inherit;
  color: inherit;
}
.card-img-btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: -2px;
}
.card-body { padding: 20px; }
.card-body h3 { font-size: var(--fs-md); margin-bottom: var(--space-2); color: var(--navy); }
.card-meta {
  display: flex; flex-wrap: wrap;
  gap: 8px; margin-bottom: 12px;
}
.card-meta span {
  font-size: 12px;
  color: var(--muted);
  background: var(--light-bg);
  padding: 4px 10px;
  border-radius: 20px;
}
.card-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 12px;
}
.card-price small { font-size: 13px; font-weight: 400; color: var(--muted); }
.card-actions { display: flex; }
.card-actions .btn { width: 100%; font-size: 13px; padding: 10px 16px; }

/* Coworking cards */
.card-cap { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.card-equip { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.tag {
  font-size: 11px; padding: 3px 8px;
  background: var(--light-bg); border-radius: 4px; color: var(--muted);
}
.badge-silent {
  display: inline-block; font-size: 11px; padding: 2px 8px;
  background: var(--navy); color: var(--white);
  border-radius: 4px; font-weight: 500; vertical-align: middle;
}
.rates {
  width: 100%; border-collapse: collapse;
  margin-bottom: 16px; font-size: 14px;
}
.rates td { padding: 6px 0; border-bottom: 1px solid var(--border); }
.rates td:last-child { text-align: right; font-weight: 600; color: var(--red); }

/* Category headings */
.cat-section { margin-bottom: var(--space-7); }
.cat-title {
  font-size: var(--fs-md); font-weight: 600;
  margin-bottom: var(--space-5); padding-bottom: var(--space-2);
  border-bottom: 3px solid var(--red);
  display: inline-block; color: var(--navy);
}
.cat-sub {
  font-size: var(--fs-sm); color: var(--muted);
  max-width: 680px;
  margin: calc(var(--space-2) * -1) 0 var(--space-5);
}

/* Suite note */
.suite-note { font-size: var(--fs-xs); color: var(--muted); margin-bottom: var(--space-4); }

/* Suite full-apartment CTA (below 401/402/403 cards) */
.suite-full-cta {
  margin-top: var(--space-5);
  padding: var(--space-5) var(--space-6);
  background: var(--paper);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.suite-full-copy {
  font-size: var(--fs-sm);
  color: var(--navy);
  max-width: 520px;
  margin: 0;
  line-height: 1.5;
}
.suite-full-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.suite-full-price {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}
.suite-full-price small {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 400;
  color: var(--muted);
  margin-left: var(--space-2);
}

/* ── Room type cards (hotel.html) ─────────────────────────── */
.room-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.room-card {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--speed), transform var(--speed);
}
.room-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.room-img {
  position: relative;
  width: 100%;
  height: 240px;
  padding: 0;
  border: 0;
  background: var(--light-bg);
  cursor: pointer;
  overflow: hidden;
  display: block;
}
.room-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.room-img:hover img { transform: scale(1.04); }
.room-photos-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(23, 56, 69, .85);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  backdrop-filter: blur(4px);
}
.room-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.room-body h3 { font-size: var(--fs-md); color: var(--navy); margin: 0; }
.room-sub { font-size: 13px; color: var(--muted); margin: 0; }
.room-rooms-list summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  padding: 6px 0;
  list-style: none;
}
.room-rooms-list summary::-webkit-details-marker { display: none; }
.room-rooms-list summary::before { content: "+ "; }
.room-rooms-list[open] summary::before { content: "\2212 "; }
.room-rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 8px;
}
.room-rooms-grid .btn {
  padding: 8px 4px;
  font-size: 12px;
  letter-spacing: .3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.room-rooms-grid .btn small {
  font-size: 10px;
  font-weight: 400;
  opacity: .8;
  letter-spacing: 0;
  text-transform: none;
}

/* ── Room modal (full-screen, scoped carousel) ────────────── */
.room-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 40px 20px;
}
.room-modal[data-open="true"] { display: flex; flex-direction: column; }
.room-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 12px;
  z-index: 2;
  transition: transform var(--speed);
}
.room-modal-close:hover { transform: scale(1.1); }
.room-modal-close:focus-visible { outline: 2px solid var(--white); outline-offset: 4px; }
.room-modal-title {
  color: var(--white);
  font-size: 18px;
  margin: 0 0 16px;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  z-index: 2;
}
.room-modal-carousel {
  max-width: 1100px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.room-modal-carousel .carousel-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  max-height: 75vh;
  object-fit: contain;
  background: var(--navy);
}
body.modal-open { overflow: hidden; }

/* ── CTA band ─────────────────────────────────────────────── */
.cta-band {
  background: var(--red);
  color: var(--white);
  padding: var(--space-8) var(--space-5);
  text-align: center;
}
.cta-band-inner { max-width: 600px; margin: 0 auto; }
.cta-band h2 { font-size: var(--fs-xl); margin-bottom: var(--space-3); }
.cta-band p { opacity: .85; margin-bottom: 24px; }
.cta-band .btn-wa { font-size: 16px; padding: 14px 36px; }

/* ── Contact ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.contact-info h3 { margin-bottom: 8px; font-size: 20px; color: var(--navy); }
.contact-info p { color: var(--muted); margin-bottom: 24px; }
.contact-channels { display: flex; flex-direction: column; gap: 12px; }
.contact-channels .btn { text-align: center; }
.contact-map { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,.1); }
.contact-map iframe { display: block; }

/* ── Footer (RED, matches brand/Footer.jpg) ───────────────── */
footer {
  background: var(--red);
  color: var(--white);
  padding: 44px 40px 20px;
  position: relative;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto 1.2fr auto 1fr auto;
  gap: 36px;
  align-items: center;
}
/* Col 1: navy circle logo + Reset wordmark + HOTEL-COWORKING Café stacked */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 170px;
}
.footer-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.footer-isotype {
  width: 62%;
  height: auto;
  color: var(--white);
}
.footer-brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  line-height: 1;
}
.footer-brand-word {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .5px;
  line-height: 1;
}
.footer-brand-word sup { font-size: 11px; vertical-align: super; font-weight: 600; }
.footer-brand-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--white);
  text-transform: uppercase;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  white-space: nowrap;
}
.footer-brand-sub .cafe {
  font-family: var(--font-script);
  font-size: 20px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--white);
}
/* Col 2: "RESERVA NUESTROS ESPACIOS" giant stacked text */
.footer-reserva {
  font-size: 44px;
  font-weight: 900;
  line-height: .92;
  letter-spacing: -1.5px;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity var(--speed);
  display: block;
}
.footer-reserva:hover { opacity: .9; }
.footer-reserva:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
  border-radius: 2px;
}
.footer-reserva span { display: block; }
/* Col 3: Reservas y Eventos block */
.footer-block h4 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .3px;
  margin-bottom: 14px;
  color: var(--white);
}
.footer-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--white);
}
.footer-line-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  fill: currentColor;
  color: var(--white);
  opacity: .9;
}
.footer-line a { color: inherit; text-decoration: none; transition: opacity var(--speed); }
.footer-line a:hover { text-decoration: underline; text-underline-offset: 3px; }
.footer-line a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
  border-radius: 2px;
}
/* Col 4: vertical divider (soft white rule, matches brand reference) */
.footer-divider {
  width: 1.5px;
  background: rgba(255, 255, 255, .55);
  align-self: stretch;
  min-height: 110px;
  margin: 0;
}
/* Col 5: Horarios + Espacios que enriquecen */
.footer-hours-block h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 8px;
}
.footer-hours {
  font-size: 16px;
  line-height: 1.45;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-enriquecen {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--white);
  line-height: 1;
}
/* Col 6: 3 social icons stacked vertically (right) */
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, .9);
  color: var(--white);
  transition: transform var(--speed), background var(--speed), color var(--speed), box-shadow var(--speed);
}
.footer-socials a:hover {
  transform: translateY(-2px);
  background: var(--white);
  color: var(--red);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}
.footer-socials a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}
.footer-socials svg { width: 18px; height: 18px; fill: currentColor; }
/* Bottom: copyright strip */
.footer-copy {
  grid-column: 1 / -1;
  text-align: right;
  font-size: 11px;
  color: rgba(255,255,255,.7);
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.22);
  font-style: italic;
}

/* ── Trust Strip (Google + Instagram + Location map) ──────── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px 24px;
}
.trust-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  text-decoration: none;
  transition: transform var(--speed), box-shadow var(--speed), border-color var(--speed);
}
.trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
  border-color: var(--red);
}
.trust-item:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}
.trust-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
}
.trust-icon-star { color: #f5a623; font-size: 22px; line-height: 1; }
.trust-icon-ig svg { width: 22px; height: 22px; fill: var(--red); }
.trust-copy { display: flex; flex-direction: column; line-height: 1.3; min-width: 0; }
.trust-copy strong { font-size: 16px; font-weight: 600; color: var(--navy); }
.trust-copy span { font-size: 13px; color: var(--muted); margin-top: 2px; }
.trust-item-map { padding: 0; overflow: hidden; position: relative; }
.trust-item-map img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  display: block;
}
.trust-item-map .trust-copy {
  position: absolute;
  left: 12px;
  bottom: 10px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, .92);
  border-radius: 4px;
  backdrop-filter: blur(2px);
}
.trust-item-map .trust-copy strong { font-size: 14px; }
.trust-item-map .trust-copy span { font-size: 11px; }

/* ── Floating WhatsApp ────────────────────────────────────── */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa-green);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
  z-index: 60;
  transition: transform var(--speed), box-shadow var(--speed), background var(--speed);
  animation: wa-float-pulse 1.6s ease-out 3;
}
.wa-float:hover {
  background: var(--wa-green-dark);
  transform: scale(1.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .28);
}
.wa-float:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}
.wa-float svg { width: 28px; height: 28px; fill: currentColor; }
@keyframes wa-float-pulse {
  0%   { box-shadow: 0 6px 18px rgba(0,0,0,.22), 0 0 0 0 rgba(37, 211, 102, .6); }
  70%  { box-shadow: 0 6px 18px rgba(0,0,0,.22), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 6px 18px rgba(0,0,0,.22), 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
}

/* ── i18n ─────────────────────────────────────────────────── */
[lang="es"] [data-lang="en"] { display: none; }
[lang="en"] [data-lang="es"] { display: none; }

/* ── Typography fallbacks (bilingual safety) ──────────────── */
.section h2,
.page-hero h1,
.footer-reserva {
  overflow-wrap: break-word;
  hyphens: auto;
}
.card { display: flex; flex-direction: column; }
.card-body { flex: 1; display: flex; flex-direction: column; }
.card-body .card-actions { margin-top: auto; }

/* ── Wide-desktop guard (≥1600px) ─────────────────────────── */
@media (min-width: 1600px) {
  .carousel-slide img { max-height: 720px; }
}

/* ── Tablet intermediate (769-1024px) ─────────────────────── */
@media (max-width: 1024px) and (min-width: 769px) {
  .footer-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "brand   reserva  reserva"
      "block   hours    socials"
      "copy    copy     copy";
    gap: 28px 24px;
    align-items: start;
  }
  .footer-brand       { grid-area: brand; }
  .footer-reserva     { grid-area: reserva; font-size: 38px; }
  .footer-block       { grid-area: block; }
  .footer-hours-block { grid-area: hours; }
  .footer-socials     { grid-area: socials; flex-direction: row; gap: 12px; align-self: start; }
  .footer-divider     { display: none; }
  .footer-copy        { grid-area: copy; text-align: center; }

  .grid,
  .room-grid,
  .cowork-tiles { grid-template-columns: repeat(2, 1fr); }
}

/* ── Mobile ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-btn { display: flex; }
  .top-bar.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    padding: 24px; gap: 16px;
    border-bottom: 1px solid var(--border);
    z-index: 50;
  }
  .red-banner-inner { grid-template-columns: 1fr; text-align: center; gap: 10px; }
  .red-banner .banner-title { display: none; }
  .red-banner .btn-banner { width: 100%; justify-content: center; }
  .footer-socials a,
  .nav-social a,
  .top-bar .nav-icons a { width: 44px; height: 44px; }
  .footer-socials svg,
  .nav-social svg { width: 20px; height: 20px; }
  .banner-title { font-size: 14px; letter-spacing: 1.5px; order: -1; }
  .banner-title .cafe { font-size: 20px; }
  .btn-banner { padding: 8px 16px; font-size: 10px; letter-spacing: 1.5px; }
  /* .carousel-slide img height now driven by aspect-ratio in base rule */
  .hero-overlay { padding: 0 16px 56px; }
  .hero-title { font-size: clamp(20px, 6.5vw, 28px); margin-bottom: 8px; }
  .hero-title .hero-sep { margin: 0 .08em; }
  .hero-slogan { font-size: 9px; letter-spacing: .22em; margin-bottom: 10px; }
  .hero-sub { font-size: 13px; margin-bottom: 14px; }
  .hero-cta { padding: 10px 20px; font-size: 12px; }
  .welcome-row { padding: 36px 16px; }
  .welcome-row-inner { grid-template-columns: 1fr; gap: 24px; text-align: center; justify-items: center; }
  .welcome-brand { align-items: center; }
  .welcome-icons { gap: 14px; }
  .welcome-icon { width: 64px; height: 64px; }
  .welcome-wordmark { font-size: 13px; letter-spacing: 1.5px; }
  .welcome-wordmark .cafe { font-size: 20px; }
  .welcome-copy p { max-width: 100%; margin: 0 auto; text-align: center; }
  .welcome-heading { border-left: none; border-top: 3px solid var(--red); padding: 12px 0 0; text-align: center; }
  .welcome-heading h2 { font-size: 22px; }
  .welcome-heading .script { font-size: 28px; }
  .about-red-inner { grid-template-columns: 1fr; min-height: 0; }
  /* .about-red-photo img sizing now driven by aspect-ratio */
  .about-red-copy { padding: 36px 20px; }
  .about-red-copy h2 { font-size: 26px; }
  .about-red-copy h3 { font-size: 16px; }
  .cowork-banner { padding: 32px 16px; }
  .cowork-banner-inner { grid-template-columns: 1fr; gap: 20px; text-align: center; justify-items: center; }
  .cowork-banner-logo img { width: 120px; }
  .cowork-banner-copy h2 { font-size: 22px; }
  .cowork-banner-illustrations img { width: 64px; height: 64px; }
  .cowork-tiles { grid-template-columns: 1fr; }
  .cowork-tiles img { aspect-ratio: 4 / 3; }
  .photo-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 3px; }
  .photo-strip-inner img { aspect-ratio: 3 / 2; height: auto; }
  .photo-strip-inner img:nth-child(3) { grid-column: span 2; }
  .map-section iframe { height: 280px; }
  .newsletter-band { padding: 32px 16px 36px; }
  .grid { grid-template-columns: 1fr; }
  .room-grid { grid-template-columns: 1fr; gap: 20px; }
  .room-img { aspect-ratio: 4 / 3; height: auto; }
  .room-modal { padding: 20px 12px; }
  /* .room-modal-carousel img sizing handled by base aspect-ratio rule */
  .contact-grid { grid-template-columns: 1fr; }
  footer { padding: 40px 20px 22px; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand    brand"
      "reserva  reserva"
      "block    hours"
      "socials  socials"
      "copy     copy";
    gap: 28px 20px;
    text-align: left;
  }
  .footer-brand { grid-area: brand; flex-direction: row; justify-content: center; align-items: center; gap: 16px; max-width: 100%; }
  .footer-brand-text { align-items: flex-start; }
  .footer-circle { width: 76px; height: 76px; }
  .footer-brand-word { font-size: 28px; }
  .footer-reserva {
    grid-area: reserva;
    font-size: 28px;
    text-align: center;
    letter-spacing: 0;
    padding: 16px 12px;
    background: rgba(255, 255, 255, .08);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .15);
  }
  .footer-block { grid-area: block; text-align: left; min-width: 0; }
  .footer-hours-block { grid-area: hours; text-align: left; min-width: 0; }
  .footer-block h4, .footer-hours-block h4 { font-size: 13px; letter-spacing: .2px; margin-bottom: 10px; }
  .footer-line { font-size: 13px; line-height: 1.4; align-items: flex-start; }
  .footer-hours { font-size: 13px; }
  .footer-enriquecen { font-size: 20px; line-height: 1.1; }
  .footer-divider { display: none; }
  .footer-socials {
    grid-area: socials;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, .18);
  }
  .footer-copy { grid-area: copy; text-align: center; margin-top: 0; padding-top: 0; border-top: none; }
  .newsletter-form { flex-direction: column; border: 0; background: transparent; }
  .newsletter-form input[type="email"] { border: 1px solid var(--border); border-radius: 4px; }
  .newsletter-form button { border-radius: 4px; padding: 14px 28px; }
  .section { padding: 40px 16px; }
  /* .page-hero padding handled by clamp() in base rule */
  .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .wa-float svg { width: 26px; height: 26px; }
  .trust-strip { padding: 20px 16px; }
  .trust-strip-inner { grid-template-columns: 1fr; gap: 12px; }
  .trust-item { padding: 12px 16px; }
  .trust-item-map img { height: 120px; }
  .contact-channels-grid { grid-template-columns: 1fr; gap: 12px; }
}
