/* ═══════════════════════════════════════════════════════════
   ZARAGOZA HOME — TEMA MID
   Estilo: Editorial Moderno · Blanco / Azul Ebro / Coral
   Tipografía: DM Serif Display + DM Sans
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

:root {
  /* Paleta */
  --white:        #ffffff;
  --off-white:    #f8f7f4;
  --light-gray:   #f0ede8;
  --mid-gray:     #e2ddd6;
  --text:         #1a1a1a;
  --text-mid:     #4a4540;
  --text-soft:    #8c857c;
  --navy:         #1a3a5c;
  --navy-mid:     #244d7a;
  --navy-light:   rgba(26,58,92,0.08);
  --coral:        #e85d26;
  --coral-dark:   #c44d1e;
  --coral-light:  rgba(232,93,38,0.10);
  --booking-blue: #003580;
  --booking-pale: #eef3fb;

  /* Shadows */
  --shadow-xs: 0 1px 8px rgba(26,26,26,0.06);
  --shadow-sm: 0 4px 20px rgba(26,26,26,0.09);
  --shadow-md: 0 12px 40px rgba(26,26,26,0.13);
  --shadow-lg: 0 24px 64px rgba(26,26,26,0.18);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;

  /* Type */
  --serif: 'DM Serif Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--white); color: var(--text); font-family: var(--sans); font-weight: 400; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--coral); border-radius: 4px; }

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3.5rem; height: 68px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
#navbar.scrolled {
  border-bottom-color: var(--mid-gray);
  box-shadow: var(--shadow-xs);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--text); font-family: var(--sans);
  font-size: 1.15rem; font-weight: 600; letter-spacing: -0.02em;
}
.nav-logo img { height: 34px; width: auto; border-radius: 5px; }
.nav-logo span { color: var(--coral); }
.nav-links { display: flex; gap: 0.25rem; list-style: none; }
.nav-links a {
  font-size: 0.84rem; font-weight: 500; color: var(--text-mid);
  padding: 0.45rem 0.9rem; border-radius: 50px;
  transition: all 0.2s;
}
.nav-links a:hover { background: var(--light-gray); color: var(--text); }
.nav-cta {
  background: var(--coral); color: white;
  padding: 0.55rem 1.4rem; border-radius: 50px;
  font-size: 0.84rem; font-weight: 600;
  box-shadow: 0 3px 12px rgba(232,93,38,0.3);
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(232,93,38,0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); display: block; border-radius: 2px; transition: all 0.3s; }

/* ─────────────────────────────────────────
   HERO — Foto pantalla completa + texto superpuesto
   Estructura como tema 1 pero aire y luz
───────────────────────────────────────── */
#hero {
  height: 100vh; min-height: 680px;
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../img/calle-alfonso.jpg') center 40%/cover no-repeat;
  transform: scale(1.04);
  animation: zoomHero 22s ease-in-out infinite alternate;
}
@keyframes zoomHero { from { transform: scale(1.04); } to { transform: scale(1.09); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(255,255,255,0.97) 0%,
    rgba(255,255,255,0.55) 35%,
    rgba(255,255,255,0.05) 70%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 4rem 5rem;
  width: 100%; max-width: 820px;
  animation: fadeUp 1s ease both;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }

.hero-location-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--coral); color: white;
  padding: 0.35rem 1rem; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 1.4rem;
}
.hero-location-tag svg { width: 12px; height: 12px; fill: white; }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 1.05; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 1.2rem;
}
.hero-title em { font-style: italic; color: var(--navy); }

.hero-sub {
  font-size: 1.05rem; line-height: 1.7; color: var(--text-mid);
  max-width: 520px; margin-bottom: 2rem; font-weight: 400;
}

/* Award badge inline en el hero */
.hero-award-inline {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: var(--booking-pale); border: 1.5px solid var(--booking-blue);
  border-radius: var(--r-sm); padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}
.hero-award-inline .score {
  font-family: var(--serif); font-size: 1.6rem; color: var(--booking-blue); line-height: 1;
}
.hero-award-inline .award-info { font-size: 0.72rem; color: var(--booking-blue); font-weight: 600; }
.hero-award-inline .award-info span { display: block; font-weight: 400; color: var(--text-soft); font-size: 0.65rem; }
.hero-award-inline img { height: 36px; width: auto; border-radius: 3px; }

.hero-btns { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.btn-coral {
  background: var(--coral); color: white;
  padding: 0.85rem 2rem; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600;
  box-shadow: 0 4px 16px rgba(232,93,38,0.35);
  transition: all 0.2s; display: inline-block;
}
.btn-coral:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,93,38,0.45); }
.btn-outline-navy {
  background: transparent; color: var(--navy);
  padding: 0.85rem 2rem; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600;
  border: 2px solid var(--navy); transition: all 0.2s; display: inline-block;
}
.btn-outline-navy:hover { background: var(--navy); color: white; }

.hero-scroll {
  position: absolute; bottom: 2.5rem; right: 4rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-soft);
}
.hero-scroll span { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; writing-mode: vertical-rl; }
.scroll-track { width: 1px; height: 56px; background: var(--mid-gray); position: relative; overflow: hidden; }
.scroll-track::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 50%; background: var(--coral); animation: scrollTrack 2s ease-in-out infinite; }
@keyframes scrollTrack { from { top: -50%; } to { top: 150%; } }

/* ─────────────────────────────────────────
   SCORE BAR — 9,8 muy prominente
───────────────────────────────────────── */
.score-bar {
  background: var(--navy); color: white;
  padding: 0; overflow: hidden;
}
.score-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: stretch;
}
.score-main {
  background: var(--booking-blue);
  padding: 1.8rem 3rem;
  display: flex; align-items: center; gap: 1.5rem;
  flex-shrink: 0;
}
.score-main img { height: 64px; width: auto; border-radius: 4px; }
.score-big { font-family: var(--serif); font-size: 3.5rem; line-height: 1; color: white; }
.score-big sup { font-size: 1.2rem; vertical-align: super; }
.score-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); }
.score-label strong { display: block; font-size: 1rem; color: white; margin-bottom: 0.15rem; }
.score-stars { color: #FFD700; font-size: 1.1rem; letter-spacing: 2px; }
.score-items {
  display: flex; flex: 1;
  align-items: center; justify-content: space-around;
  padding: 1.5rem 2rem; flex-wrap: wrap; gap: 1.5rem;
}
.score-item { text-align: center; }
.score-item .s-num { font-family: var(--serif); font-size: 1.8rem; color: white; line-height: 1; }
.score-item .s-label { font-size: 0.68rem; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.2rem; }
.score-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* ─────────────────────────────────────────
   INTRO — Igual estructura que tema 1
───────────────────────────────────────── */
#intro-section { padding: 7rem 4rem; background: var(--white); }
#intro {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.intro-image-stack { position: relative; height: 580px; }
.intro-img-main {
  position: absolute; top: 0; left: 0; width: 82%; height: 82%;
  object-fit: cover; border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}
.intro-img-secondary {
  position: absolute; bottom: 0; right: 0; width: 52%; height: 52%;
  object-fit: cover; border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  border: 5px solid var(--white);
}
.intro-accent-block {
  position: absolute; top: 45%; left: -18px;
  width: 36px; height: 100px;
  background: var(--coral); border-radius: 3px;
  transform: translateY(-50%);
}

.eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--coral);
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem;
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--coral); border-radius: 2px; }
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  line-height: 1.12; letter-spacing: -0.02em;
  color: var(--text); margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--navy); }
.divider-coral { width: 48px; height: 3px; background: var(--coral); border-radius: 3px; margin: 1.5rem 0; }
.body-text { font-size: 0.95rem; line-height: 1.8; color: var(--text-mid); max-width: 540px; }

.stats-row { display: flex; gap: 2.5rem; margin-top: 2.5rem; }
.stat { position: relative; }
.stat::after { content: ''; position: absolute; top: 0; right: -1.25rem; height: 100%; width: 1px; background: var(--mid-gray); }
.stat:last-child::after { display: none; }
.stat-num { font-family: var(--serif); font-size: 2.8rem; color: var(--navy); line-height: 1; }
.stat-lbl { font-size: 0.68rem; color: var(--text-soft); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.25rem; }

/* ─────────────────────────────────────────
   APARTAMENTOS
───────────────────────────────────────── */
#apartments { background: var(--off-white); padding: 7rem 4rem; }
#apartments .inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .eyebrow { justify-content: center; }
.section-header .eyebrow::before { display: none; }

.apartments-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.apt-card { position: relative; overflow: hidden; cursor: pointer; }
.apt-card img { width: 100%; height: 560px; object-fit: cover; filter: brightness(0.82); transition: transform 0.7s ease, filter 0.4s ease; display: block; }
.apt-card:hover img { transform: scale(1.05); filter: brightness(0.65); }
.apt-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,58,92,0.88) 0%, rgba(26,58,92,0.1) 55%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem;
}
.apt-tag { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 0.4rem; }
.apt-name { font-family: var(--serif); font-size: 2rem; color: white; line-height: 1.1; margin-bottom: 0.6rem; }
.apt-desc { font-size: 0.78rem; color: rgba(255,255,255,0.75); line-height: 1.65; max-width: 320px; margin-bottom: 1.2rem; }
.apt-specs-row { display: flex; gap: 1.2rem; margin-bottom: 1.4rem; }
.apt-spec { font-size: 0.7rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 0.35rem; }
.apt-spec-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }
.apt-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--coral); color: white;
  padding: 0.6rem 1.3rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600;
  transition: all 0.2s; align-self: flex-start;
}
.apt-cta:hover { background: white; color: var(--coral); transform: translateX(4px); }

.apt-together {
  grid-column: 1/-1;
  background: var(--navy); color: white;
  padding: 2.2rem 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.apt-together h3 { font-family: var(--serif); font-size: 1.7rem; margin-bottom: 0.3rem; }
.apt-together p { font-size: 0.85rem; color: rgba(255,255,255,0.7); max-width: 520px; }
.btn-white-coral {
  background: white; color: var(--coral);
  padding: 0.85rem 2rem; border-radius: 50px;
  font-size: 0.84rem; font-weight: 700; white-space: nowrap;
  transition: all 0.2s; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white-coral:hover { background: var(--coral); color: white; transform: translateY(-2px); }

/* ─────────────────────────────────────────
   AMENITIES
───────────────────────────────────────── */
#amenities { padding: 6rem 4rem; background: var(--navy); overflow: hidden; }
#amenities .inner { max-width: 1200px; margin: 0 auto; }

/* Texto + fotos: dos columnas con altura fija y overflow hidden */
.amenities-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3rem;
  min-height: 0;
}
.amenities-top .section-title { color: white; }
.amenities-top .section-title em { color: var(--coral); }
.amenities-top .amenities-photos { align-self: start; }
.amenities-top .body-text { color: rgba(255,255,255,.7); }
.amenities-top .eyebrow { color: var(--coral); }
.amenities-top .divider-coral { background: var(--coral); }

/* Fotos: 3 en mosaico, contenedor con altura fija y overflow hidden */
.amenities-photos {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 200px 200px;
  gap: .7rem;
  overflow: hidden;
}
.amenities-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.amenities-photos img:first-child {
  grid-column: 1;
  grid-row: 1 / 3;
}
.amenities-photos img:nth-child(2) { grid-column: 2; grid-row: 1; }
.amenities-photos img:nth-child(3) { grid-column: 2; grid-row: 2; }

/* Grid amenities: 5 columnas, completamente separado de las fotos */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  clear: both;
}
.amenity-item {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 1.2rem .8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
  transition: background .2s, transform .2s;
}
.amenity-item:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-3px);
}
.a-emoji  { font-size: 1.5rem; }
.a-name   { font-size: .76rem; font-weight: 600; color: white; line-height: 1.3; }
.a-detail { font-size: .65rem; color: rgba(255,255,255,.5); line-height: 1.4; }

/* ─────────────────────────────────────────
   LOCATION — El Tubo, Plaza España, Pilar
   Protagonistas visuales con fotos grandes
───────────────────────────────────────── */
#location { background: var(--off-white); padding: 7rem 4rem; }
#location .inner { max-width: 1200px; margin: 0 auto; }
.location-header { margin-bottom: 4rem; max-width: 600px; }

/* Tres landmarks como tarjetas hero */
.landmarks-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 3rem;
}
.landmark-card {
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; height: 420px; cursor: default;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.landmark-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.landmark-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.75);
}
.landmark-card:hover img { transform: scale(1.06); filter: brightness(0.6); }
.landmark-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,58,92,0.92) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem;
}
.landmark-time {
  display: inline-block; background: var(--coral);
  color: white; font-size: 0.68rem; font-weight: 700;
  padding: 0.25rem 0.7rem; border-radius: 50px;
  letter-spacing: 0.05em; margin-bottom: 0.6rem; align-self: flex-start;
}
.landmark-name { font-family: var(--serif); font-size: 1.6rem; color: white; line-height: 1.1; margin-bottom: 0.4rem; }
.landmark-desc { font-size: 0.75rem; color: rgba(255,255,255,0.72); line-height: 1.55; }

/* Lista de otros puntos */
.location-extras {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem;
}
.loc-extra {
  background: var(--white); border-radius: var(--r-md);
  padding: 1.2rem 1.4rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--mid-gray);
  transition: all 0.2s;
}
.loc-extra:hover { box-shadow: var(--shadow-sm); border-color: var(--coral); transform: translateX(3px); }
.loc-extra-time {
  background: var(--coral-light); color: var(--coral);
  border-radius: 50px; padding: 0.3rem 0.7rem;
  font-size: 0.72rem; font-weight: 700; white-space: nowrap; flex-shrink: 0;
}
.loc-extra h4 { font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 0.1rem; }
.loc-extra p { font-size: 0.72rem; color: var(--text-soft); }

/* Parking banner */
.parking-strip {
  background: var(--navy); border-radius: var(--r-md);
  padding: 1.5rem 2rem;
  display: flex; align-items: center; gap: 1.5rem;
  flex-wrap: wrap;
}
.parking-p-icon { font-size: 2.2rem; }
.parking-strip h4 { font-family: var(--serif); font-size: 1.2rem; color: white; margin-bottom: 0.2rem; }
.parking-strip p { font-size: 0.8rem; color: rgba(255,255,255,0.65); max-width: 520px; }
.map-wrap { margin-top: 1.5rem; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); }

/* ─────────────────────────────────────────
   GALLERY — Carrusel infinito como tema 1
───────────────────────────────────────── */
#gallery { padding: 5rem 0; overflow: hidden; background: var(--white); }
.gallery-header { padding: 0 4rem; margin-bottom: 2.5rem; display: flex; align-items: flex-end; justify-content: space-between; max-width: 1200px; margin-left: auto; margin-right: auto; }
.gallery-strip-wrap { overflow: hidden; }
.gallery-strip {
  display: flex; gap: 0.6rem;
  animation: slide 55s linear infinite;
  width: max-content;
}
.gallery-strip:hover { animation-play-state: paused; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.gallery-strip img {
  height: 300px; width: auto; object-fit: cover; flex-shrink: 0;
  border-radius: var(--r-sm);
  filter: brightness(0.88);
  transition: all 0.35s;
}
.gallery-strip img:hover { filter: brightness(1); transform: scale(1.03); }

/* ─────────────────────────────────────────
   BOOKING — Nueva sección 3 bloques
───────────────────────────────────────── */
#booking-section { padding: 7rem 4rem; background: var(--off-white); }
.booking-section-inner { max-width: 1200px; margin: 0 auto; }

/* Cabecera con award */
.booking-header {
  display: flex; align-items: center; justify-content: space-between;
  gap: 3rem; margin-bottom: 4rem; flex-wrap: wrap;
}
.booking-header-text { flex: 1; min-width: 280px; }

/* Grid de los dos aptos */
.apts-booking-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-bottom: 2rem;
}
.apt-booking-card {
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  border: 1.5px solid var(--mid-gray);
  transition: box-shadow 0.3s;
}
.apt-booking-card:hover { box-shadow: var(--shadow-md); }

.apt-booking-header { display: flex; gap: 0; }
.apt-booking-photo { width: 140px; flex-shrink: 0; }
.apt-booking-photo img { width: 100%; height: 100%; object-fit: cover; }
.apt-booking-info { padding: 1.4rem; flex: 1; }
.apt-booking-tag {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--coral);
  display: block; margin-bottom: 0.3rem;
}
.apt-booking-info h3 {
  font-family: var(--serif); font-size: 1.3rem; color: var(--text);
  line-height: 1.1; margin-bottom: 0.4rem;
}
.apt-booking-info h3 em { font-style: italic; color: var(--navy); }
.apt-booking-info > p { font-size: 0.75rem; color: var(--text-soft); margin-bottom: 0.8rem; line-height: 1.5; }

.apt-booking-platforms { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.platform-pill {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.3rem 0.75rem; border-radius: 50px;
  font-size: 0.68rem; font-weight: 600;
  background: var(--off-white); border: 1.5px solid var(--mid-gray);
  color: var(--text-mid); transition: all 0.2s;
}
.platform-pill:hover { border-color: var(--coral); color: var(--coral); }
.platform-pill--booking { border-color: #003580; color: #003580; background: var(--booking-pale); }
.platform-pill--booking:hover { background: #003580; color: white; }

.lodgify-widget-slot {
  border-top: 1.5px solid var(--mid-gray);
  padding: 1.5rem;
  background: var(--off-white);
}
.lodgify-placeholder-mid {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.4rem; text-align: center; padding: 1.5rem;
  border: 2px dashed var(--mid-gray); border-radius: var(--r-sm);
  background: var(--white);
}
.lodgify-placeholder-mid span { font-size: 1.8rem; }
.lodgify-placeholder-mid strong { font-size: 0.82rem; color: var(--text); }
.lodgify-placeholder-mid small { font-size: 0.68rem; color: var(--text-soft); }

/* Bloque Los dos juntos — nueva estructura */
.together-booking-block {
  background: var(--navy); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
}
.together-header {
  padding: 2.5rem 3rem 2rem; color: white;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.together-header h3 {
  font-family: var(--serif); font-size: 2rem; line-height: 1.1;
  color: white; margin: 0.8rem 0 0.8rem;
}
.together-header h3 em { font-style: italic; color: var(--coral); }
.together-header > p { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.7; max-width: 700px; }
.together-body {
  display: grid; grid-template-columns: 1fr 1fr;
}

/* Calendario visual */
.joint-calendar-wrap {
  padding: 2rem 2.5rem; background: rgba(255,255,255,0.05);
  border-right: 1px solid rgba(255,255,255,0.1);
}
.joint-cal-header h4 { font-size: 0.95rem; font-weight: 600; color: white; margin-bottom: 0.2rem; }
.joint-cal-header p  { font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-bottom: 0.8rem; }
.joint-cal-legend { display: flex; gap: 1.2rem; margin-bottom: 1rem; }
.cal-legend-free { font-size: 0.72rem; color: #6ee7a0; font-weight: 600; }
.cal-legend-busy { font-size: 0.72rem; color: #f87171; font-weight: 600; }

.joint-calendar { min-height: 220px; }
.cal-loading { color: rgba(255,255,255,0.4); font-size: 0.82rem; padding: 2rem 0; text-align: center; }
.cal-error   { color: #f87171; font-size: 0.82rem; padding: 1rem 0; }

.cal-table { width: 100%; border-collapse: collapse; }
.cal-table th {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  padding: 0.4rem 0; text-align: center;
}
.cal-table td {
  text-align: center; padding: 0.3rem 0.2rem;
  font-size: 0.8rem; border-radius: 6px; cursor: default;
}
.cal-day { color: white; }
.cal-free { background: rgba(110,231,160,0.18); color: #6ee7a0; font-weight: 600; }
.cal-free:hover { background: rgba(110,231,160,0.35); }
.cal-busy { background: rgba(248,113,113,0.18); color: #f87171; }
.cal-past { color: rgba(255,255,255,0.2); }

.joint-cal-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1rem; padding-top: 0.8rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.joint-cal-nav button {
  background: rgba(255,255,255,0.1); border: none; color: white;
  padding: 0.4rem 0.9rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; cursor: pointer;
  transition: background 0.2s;
}
.joint-cal-nav button:hover { background: rgba(255,255,255,0.2); }
#cal-month-label { font-size: 0.85rem; font-weight: 600; color: white; }

/* Formulario dentro del bloque juntos */
.together-booking-form {
  background: var(--white); padding: 2.5rem;
  display: flex; flex-direction: column;
}
.together-booking-form h4 {
  font-family: var(--serif); font-size: 1.3rem; color: var(--text);
  margin-bottom: 1.5rem;
}
.together-form { display: flex; flex-direction: column; gap: 0.9rem; }
.tf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.tf-group { display: flex; flex-direction: column; gap: 0.35rem; }
.tf-group label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mid); }
.tf-group input, .tf-group textarea {
  background: var(--off-white); border: 1.5px solid var(--mid-gray);
  color: var(--text); padding: 0.75rem 0.9rem;
  font-family: var(--sans); font-size: 0.85rem;
  border-radius: var(--r-sm); outline: none; transition: border-color 0.2s;
}
.tf-group input:focus, .tf-group textarea:focus { border-color: var(--coral); background: var(--white); }
.tf-group textarea { height: 90px; resize: none; }
.tf-note { font-size: 0.68rem; color: var(--text-soft); text-align: center; margin-top: 0.4rem; }

/* Responsive */
@media (max-width: 960px) {
  .booking-header { flex-direction: column; gap: 2rem; margin-bottom: 2.5rem; }
  .apts-booking-grid { grid-template-columns: 1fr; }
  .apt-booking-header { flex-direction: column; }
  .apt-booking-photo { width: 100%; height: 180px; }
  .together-header { padding: 2rem 1.5rem; }
  .together-body { grid-template-columns: 1fr; }
  .joint-calendar-wrap { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 1.5rem; }
  .together-booking-form { padding: 1.5rem; }
  .tf-row { grid-template-columns: 1fr; }
}

/* Award grande */
.booking-award-big {
  background: var(--booking-blue); border-radius: var(--r-lg);
  padding: 2.5rem; color: white; margin-bottom: 2rem;
  display: flex; align-items: center; gap: 2rem;
  box-shadow: 0 12px 40px rgba(0,53,128,0.25);
}
.booking-award-big img { height: 100px; width: auto; border-radius: var(--r-sm); flex-shrink: 0; }
.award-big-text {}
.award-score-big { font-family: var(--serif); font-size: 4rem; line-height: 1; color: white; }
.award-score-big span { font-size: 1.4rem; color: rgba(255,255,255,0.6); }
.award-big-label { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.2rem; }
.award-big-sub { font-size: 0.75rem; color: rgba(255,255,255,0.65); }
.award-stars-big { color: #FFD700; font-size: 1.1rem; letter-spacing: 2px; margin-top: 0.4rem; }

/* Plataformas */
.platforms-list { display: flex; flex-direction: column; gap: 0.9rem; }
.platform-card {
  background: var(--white); border: 1.5px solid var(--mid-gray);
  border-radius: var(--r-md); padding: 1rem 1.4rem;
  display: flex; align-items: center; gap: 1.1rem;
  color: var(--text); transition: all 0.25s;
  box-shadow: var(--shadow-xs);
}
.platform-card:hover { border-color: var(--coral); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.platform-card.booking-card:hover { border-color: var(--booking-blue); }
.plat-logo-wrap { min-width: 44px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.plat-logo-wrap svg { display: block; }
.platform-card h4 { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 0.15rem; }
.platform-card p { font-size: 0.73rem; color: var(--text-soft); margin: 0; }
.platform-card .booking-score-tag {
  font-size: 0.72rem; font-weight: 700; color: var(--booking-blue);
  background: var(--booking-pale); padding: 0.15rem 0.5rem; border-radius: 50px;
  display: inline-block; margin-top: 0.2rem;
}
.plat-arr { margin-left: auto; color: var(--coral); font-size: 1.1rem; font-weight: 300; flex-shrink: 0; }
.booking-card .plat-arr { color: var(--booking-blue); }

/* Lodgify */
.lodgify-wrap {
  background: var(--white); border: 1.5px solid var(--mid-gray);
  border-radius: var(--r-md); padding: 2rem; text-align: center; margin-top: 1.2rem;
  box-shadow: var(--shadow-xs);
}
.lodgify-wrap p { font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; }
.lodgify-wrap small { font-size: 0.75rem; color: var(--text-soft); }
.lodgify-placeholder-box {
  background: var(--off-white); border: 1.5px dashed var(--mid-gray);
  border-radius: var(--r-sm); padding: 2rem; margin-top: 1rem;
  font-size: 0.78rem; color: var(--text-soft); line-height: 1.7;
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
#contact { padding: 7rem 4rem; background: var(--white); }
#contact .inner {
  max-width: 780px; margin: 0 auto; text-align: center;
}
.contact-form { margin-top: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; text-align: left; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 0.7rem; font-weight: 600; color: var(--text-mid); letter-spacing: 0.06em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--off-white); border: 1.5px solid var(--mid-gray);
  color: var(--text); padding: 0.8rem 1rem;
  font-family: var(--sans); font-size: 0.88rem; font-weight: 400;
  border-radius: var(--r-sm); outline: none; transition: border-color 0.2s, background 0.2s;
  appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--coral); background: var(--white);
}
.form-group textarea { height: 120px; resize: none; }
.form-group select option { background: white; }
.form-submit { grid-column: 1/-1; display: flex; justify-content: center; margin-top: 0.5rem; }
.form-submit button {
  background: var(--coral); color: white; border: none;
  padding: 0.9rem 3rem; border-radius: 50px;
  font-family: var(--sans); font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(232,93,38,0.35);
}
.form-submit button:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(232,93,38,0.45); }
.form-note { grid-column: 1/-1; text-align: center; font-size: 0.72rem; color: var(--text-soft); margin-top: 0.3rem; }
#zh-form-msg { grid-column: 1/-1; padding: 0.9rem; border-radius: var(--r-sm); text-align: center; font-size: 0.85rem; display: none; margin-top: 0.5rem; }
#zh-form-msg.success { background: rgba(45,122,58,0.1); border: 1.5px solid rgba(45,122,58,0.3); color: #2d7a3a; }
#zh-form-msg.error { background: rgba(200,50,50,0.1); border: 1.5px solid rgba(200,50,50,0.3); color: #b43232; }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  background: var(--navy); color: rgba(255,255,255,0.8);
  padding: 4rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.footer-brand .logo {
  display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem;
  font-size: 1.2rem; font-weight: 600; color: white; letter-spacing: -0.01em;
}
.footer-brand .logo img { height: 34px; border-radius: 5px; }
.footer-brand .logo span { color: var(--coral); }
.footer-brand p { font-size: 0.82rem; line-height: 1.8; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer-col h4 { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.2rem; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-col p { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.9; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: rgba(255,255,255,0.3);
}

/* ─────────────────────────────────────────
   MOBILE
───────────────────────────────────────── */
@media (max-width: 960px) {
  #navbar { padding: 0 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  #navbar.menu-open .nav-links {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 1rem; right: 1rem;
    background: white; padding: 1.5rem; border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg); gap: 0.3rem;
  }

  #hero { padding-bottom: 4rem; }
  .hero-content { padding: 0 1.5rem 4rem; }
  .hero-title { font-size: 2.8rem; }

  #intro-section, #apartments, #amenities, #location, #booking-section, #contact { padding: 4rem 1.5rem; }
  #gallery { padding: 3rem 0; }
  .gallery-header { padding: 0 1.5rem; }

  #intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .intro-image-stack { height: 360px; }
  .apartments-grid { grid-template-columns: 1fr; }
  .apt-card img { height: 400px; }
  #amenities .inner { padding: 0; }
  .amenities-top { grid-template-columns: 1fr; gap: 2rem; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .landmarks-grid { grid-template-columns: 1fr; gap: 1rem; }
  .landmark-card { height: 300px; }
  .location-extras { grid-template-columns: 1fr; }
  #booking { grid-template-columns: 1fr; gap: 3rem; }
  .booking-award-big { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .contact-form { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  footer { padding: 3rem 1.5rem; }
  .score-bar-inner { flex-direction: column; }
  .score-main { justify-content: center; }
  .score-items { gap: 1rem; padding: 1.2rem; }
}

/* ── SELECTOR DE IDIOMA ── */
.lang-switcher {
  display: flex; align-items: center; gap: 0.2rem; margin-right: 0.5rem;
}
.lang-btn {
  display: inline-flex; align-items: center; gap: 0.25rem;
  padding: 0.28rem 0.55rem; border-radius: 50px;
  font-size: 0.7rem; font-weight: 600; color: var(--text-mid);
  text-decoration: none; transition: all 0.2s;
  border: 1.5px solid transparent;
}
.lang-btn span { font-size: 0.65rem; }
.lang-btn:hover { background: var(--light-gray); color: var(--text); }
.lang-btn--active { border-color: var(--coral); color: var(--coral); background: var(--coral-light); }

@media (max-width: 960px) {
  .lang-switcher { order: -1; gap: 0.15rem; }
  .lang-btn span { display: none; }
  .lang-btn { padding: 0.3rem 0.4rem; font-size: 1rem; }
}
/* ═══════════════════════════════════════════════════
   ZARAGOZA HOME MID — Blog / Descubre Zaragoza
   Añadir a assets/css/main.css
═══════════════════════════════════════════════════ */

/* ── BLOG HERO ── */
.blog-hero {
  height: 50vh; min-height: 380px; max-height: 520px;
  position: relative; overflow: hidden; margin-top: 68px;
  display: flex; align-items: flex-end;
}
.blog-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  transform: scale(1.04);
  animation: zoomHero 20s ease-in-out infinite alternate;
}
.blog-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
}
.blog-hero-content {
  position: relative; z-index: 2; padding: 0 4rem 3rem; width: 100%;
}
.blog-hero-title {
  font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text); line-height: 1.05; letter-spacing: -0.02em; margin-bottom: 0.8rem;
}
.blog-hero-title em { font-style: italic; color: var(--navy); }
.blog-hero-sub { font-size: 1rem; color: var(--text-mid); max-width: 580px; line-height: 1.65; }

/* ── FILTROS ── */
.blog-filters-bar {
  background: var(--white); border-bottom: 1px solid var(--mid-gray);
  position: sticky; top: 68px; z-index: 50;
  box-shadow: var(--shadow-xs);
}
.blog-filters-inner {
  max-width: 1300px; margin: 0 auto; padding: 0.9rem 4rem;
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center;
}
.filter-group { display: flex; align-items: center; gap: 0.4rem; flex-wrap: wrap; }
.filter-label { font-size: 0.7rem; font-weight: 700; color: var(--text-soft); letter-spacing: 0.1em; text-transform: uppercase; margin-right: 0.2rem; }
.filter-pill {
  display: inline-block; padding: 0.3rem 0.8rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 500; color: var(--text-mid);
  background: var(--off-white); border: 1.5px solid var(--mid-gray);
  text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.filter-pill:hover { border-color: var(--coral); color: var(--coral); }
.filter-pill.active { background: var(--coral); color: white; border-color: var(--coral); }

/* ── LAYOUT BLOG ── */
.blog-section {
  max-width: 1300px; margin: 0 auto; padding: 3.5rem 4rem;
  display: grid; grid-template-columns: 1fr 300px; gap: 3.5rem; align-items: start;
}

/* Artículo destacado */
.blog-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-md); margin-bottom: 3rem;
  grid-column: 1; /* dentro del main, no sidebar */
}
.blog-featured-img img { width: 100%; height: 360px; object-fit: cover; display: block; }
.blog-featured-img--placeholder img { height: 360px; object-fit: cover; filter: brightness(0.85); }
.blog-featured-content {
  background: var(--navy); padding: 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.blog-featured-title {
  font-family: var(--serif); font-size: 1.7rem; color: white;
  line-height: 1.2; margin: 0.6rem 0 1rem;
}
.blog-featured-title a { color: inherit; text-decoration: none; }
.blog-featured-title a:hover { color: var(--coral); }
.blog-featured-excerpt { font-size: 0.88rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 1.5rem; }

/* Grid de artículos */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-bottom: 3rem;
}
.blog-card {
  background: var(--white); border-radius: var(--r-md);
  box-shadow: var(--shadow-xs); border: 1.5px solid var(--mid-gray);
  overflow: hidden; transition: all 0.3s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--coral); }
.blog-card-img-wrap {
  display: block; overflow: hidden; position: relative;
  height: 190px;
}
.blog-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.06); }
.blog-card-lang {
  position: absolute; top: 0.6rem; right: 0.6rem;
  font-size: 1.1rem; line-height: 1;
  background: white; border-radius: 50%; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
}
.blog-card-body { padding: 1.2rem 1.4rem; }
.blog-card-title {
  font-family: var(--serif); font-size: 1.05rem; color: var(--text);
  line-height: 1.25; margin: 0.4rem 0 0.6rem;
}
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--navy); }
.blog-card-excerpt { font-size: 0.78rem; color: var(--text-soft); line-height: 1.6; margin-bottom: 0.8rem; }
.blog-card-link { font-size: 0.75rem; font-weight: 600; color: var(--coral); text-decoration: none; }
.blog-card-link:hover { text-decoration: underline; }

/* Meta de artículo */
.blog-meta { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.blog-date { font-size: 0.68rem; color: rgba(255,255,255,0.5); }
.blog-featured .blog-cat { font-size: 0.65rem; font-weight: 700; background: var(--coral); color: white; padding: 0.15rem 0.5rem; border-radius: 50px; letter-spacing: 0.05em; }
.blog-card .blog-date { color: var(--text-soft); }
.blog-card .blog-cat { font-size: 0.65rem; font-weight: 700; background: var(--coral-light); color: var(--coral); padding: 0.15rem 0.5rem; border-radius: 50px; }
.blog-lang-badge { font-size: 0.68rem; font-weight: 700; background: rgba(255,255,255,0.15); color: white; padding: 0.15rem 0.5rem; border-radius: 50px; }
.blog-read-more { display: inline-block; margin-top: auto; }

/* Paginación */
.blog-pagination { display: flex; justify-content: center; gap: 0.4rem; margin-top: 2rem; }
.blog-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 0.82rem; font-weight: 600; color: var(--text-mid);
  background: var(--off-white); border: 1.5px solid var(--mid-gray);
  text-decoration: none; transition: all 0.2s;
}
.blog-pagination .page-numbers.current { background: var(--coral); color: white; border-color: var(--coral); }
.blog-pagination .page-numbers:hover { border-color: var(--coral); color: var(--coral); }
.blog-pagination .prev, .blog-pagination .next { width: auto; padding: 0 1rem; border-radius: 50px; }

/* Empty state */
.blog-empty { text-align: center; padding: 4rem; color: var(--text-soft); }

/* ── SIDEBAR ── */
.blog-sidebar { position: sticky; top: 130px; display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget {
  background: var(--white); border-radius: var(--r-md);
  border: 1.5px solid var(--mid-gray); padding: 1.5rem;
  box-shadow: var(--shadow-xs);
}
.sidebar-widget h3 { font-family: var(--serif); font-size: 1.1rem; color: var(--text); margin-bottom: 1rem; }
.sidebar-widget p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 0.8rem; }
.sidebar-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-list li a {
  font-size: 0.82rem; color: var(--text-mid); text-decoration: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.4rem 0; border-bottom: 1px solid var(--light-gray);
  transition: color 0.2s;
}
.sidebar-list li a:hover { color: var(--coral); }
.sidebar-list li a span { font-size: 0.7rem; color: var(--text-soft); }

/* ── SINGLE POST ── */
.single-post-wrap {
  max-width: 1300px; margin: 0 auto; padding: 3.5rem 4rem;
  display: grid; grid-template-columns: 1fr 300px; gap: 3.5rem;
}
.single-content { max-width: 720px; }
.single-content h1 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--text); line-height: 1.15; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.single-content h2 { font-family: var(--serif); font-size: 1.5rem; color: var(--navy); margin: 2.5rem 0 1rem; }
.single-content h3 { font-size: 1.1rem; font-weight: 600; color: var(--text); margin: 1.8rem 0 0.8rem; }
.single-content p  { font-size: 0.95rem; color: var(--text-mid); line-height: 1.85; margin-bottom: 1.2rem; }
.single-content ul, .single-content ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.single-content li { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; }
.single-content a  { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.single-content a:hover { color: var(--coral); }
.single-content hr { border: none; border-top: 1px solid var(--mid-gray); margin: 2rem 0; }
.zh-article-cta {
  background: var(--navy); border-radius: var(--r-md); padding: 1.5rem 2rem; margin-top: 2rem;
}
.zh-article-cta p { color: rgba(255,255,255,0.9) !important; margin: 0 !important; font-size: 0.95rem !important; }
.zh-article-cta a { color: var(--coral) !important; text-decoration: none !important; }
.zh-article-cta a:hover { text-decoration: underline !important; }

/* ── RESPONSIVE BLOG ── */
@media (max-width: 1024px) {
  .blog-section { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; }
  .blog-sidebar { display: none; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-hero-content { padding: 0 1.5rem 2.5rem; }
  .blog-filters-inner { padding: 0.8rem 1.5rem; }
  .single-post-wrap { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; }
}
@media (max-width: 640px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img img { height: 240px; }
  .blog-grid { grid-template-columns: 1fr; }
}

/* ── SINGLE POST ────────────────────────────────────────────────── */
.single-post-wrap {
  max-width: 1300px; margin: 100px auto 0; padding: 2.5rem 4rem;
  display: grid; grid-template-columns: 1fr 300px; gap: 4rem; align-items: start;
}

/* Breadcrumb */
.single-breadcrumb {
  display: flex; flex-wrap: wrap; gap: .4rem; align-items: center;
  font-size: .75rem; color: var(--text-soft); margin-bottom: 1.5rem;
}
.single-breadcrumb a { color: var(--text-soft); text-decoration: none; }
.single-breadcrumb a:hover { color: var(--coral); }
.single-breadcrumb span { color: var(--mid-gray); }

/* Header */
.single-header { margin-bottom: 2.5rem; }
.single-meta-top { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; margin-bottom: 1.2rem; }
.single-lang-badge { background: var(--off-white); border: 1.5px solid var(--mid-gray); border-radius: 50px; padding: .2rem .7rem; font-size: .72rem; font-weight: 600; color: var(--text-mid); }
.single-cat-badge { background: var(--coral-light); color: var(--coral); border-radius: 50px; padding: .2rem .7rem; font-size: .72rem; font-weight: 700; text-decoration: none; }
.single-cat-badge:hover { background: var(--coral); color: white; }
.single-date, .single-read-time { font-size: .75rem; color: var(--text-soft); }
.single-title { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--text); line-height: 1.15; letter-spacing: -.02em; margin-bottom: 1rem; }
.single-excerpt { font-size: 1.05rem; color: var(--text-mid); line-height: 1.7; border-left: 3px solid var(--coral); padding-left: 1rem; margin-bottom: 1.5rem; }
.single-featured-img { border-radius: var(--r-md); overflow: hidden; margin-bottom: 2rem; box-shadow: var(--shadow-md); }
.single-featured-img img { width: 100%; height: auto; display: block; }

/* Body content */
.single-body { font-size: .96rem; line-height: 1.85; color: var(--text-mid); }
.single-body h2 { font-family: var(--serif); font-size: 1.6rem; color: var(--navy); margin: 2.5rem 0 1rem; line-height: 1.2; }
.single-body h3 { font-size: 1.15rem; font-weight: 600; color: var(--text); margin: 2rem 0 .8rem; }
.single-body p { margin-bottom: 1.2rem; }
.single-body ul, .single-body ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.single-body li { margin-bottom: .5rem; }
.single-body strong { color: var(--text); font-weight: 600; }
.single-body a { color: var(--navy); text-underline-offset: 3px; }
.single-body a:hover { color: var(--coral); }
.single-body hr { border: none; border-top: 1px solid var(--mid-gray); margin: 2.5rem 0; }
.single-body blockquote { border-left: 3px solid var(--coral); padding: .8rem 1.2rem; margin: 1.5rem 0; background: var(--off-white); border-radius: 0 var(--r-sm) var(--r-sm) 0; font-style: italic; color: var(--text-mid); }

/* Tags */
.single-tags { display: flex; flex-wrap: wrap; gap: .4rem; align-items: center; margin: 2.5rem 0; padding-top: 1.5rem; border-top: 1px solid var(--mid-gray); }
.single-tags-label { font-size: .75rem; font-weight: 600; color: var(--text-soft); text-transform: uppercase; letter-spacing: .06em; margin-right: .3rem; }
.single-tag { background: var(--off-white); border: 1.5px solid var(--mid-gray); border-radius: 50px; padding: .25rem .8rem; font-size: .75rem; color: var(--text-mid); text-decoration: none; transition: all .2s; }
.single-tag:hover { border-color: var(--coral); color: var(--coral); }

/* Navegación anterior/siguiente */
.single-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--mid-gray); }
.post-nav-item { background: var(--off-white); border: 1.5px solid var(--mid-gray); border-radius: var(--r-md); padding: 1.2rem 1.4rem; text-decoration: none; transition: all .25s; }
.post-nav-item:hover { border-color: var(--coral); box-shadow: var(--shadow-sm); }
.post-nav-next { text-align: right; }
.nav-dir { display: block; font-size: .7rem; font-weight: 600; color: var(--coral); text-transform: uppercase; letter-spacing: .08em; margin-bottom: .3rem; }
.nav-title { font-size: .85rem; font-weight: 500; color: var(--text); line-height: 1.4; }

/* Responsive */
@media (max-width: 1024px) {
  .single-post-wrap { grid-template-columns: 1fr; padding: 2rem 1.5rem; margin-top: 80px; }
  .single-post-nav { grid-template-columns: 1fr; }
  .post-nav-next { text-align: left; }
}

/* ── FOOTER SOCIAL LINKS ─────────────────────────────────────── */
.footer-social {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background .2s, transform .2s;
  border: 1px solid rgba(255,255,255,.15);
}
.footer-social a:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-2px);
}
