/* ================================================================
   DiarioRelojero — stylesheet
   ================================================================ */

/* === VARIABLES === */
:root {
  --bg:           #131313;
  --bg-card:      #191919;
  --bg-card-hover:#1e1e1e;
  --text:         #e4e2e1;
  --text-muted:   #7a7774;
  --accent:       #d4af37;
  --accent-dim:   rgba(212,175,55,0.12);
  --border:       #252525;
  --gap:          128px;
  --margin:       64px;
  --container:    1200px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Noto Serif', serif;
  line-height: 1.2;
}
h1 { font-size: clamp(40px, 6vw, 80px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(20px, 2.5vw, 26px); }
h4 { font-size: 17px; }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}

/* === LAYOUT === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--margin);
}

section { padding: var(--gap) 0; }

.section-header { margin-bottom: 64px; }
.section-header p {
  color: var(--text-muted);
  max-width: 580px;
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.6;
}

/* === HEADER / NAV === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(19,19,19,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Noto Serif', serif;
  font-size: 17px;
  color: var(--accent);
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: all 0.25s;
}

/* === HERO (homepage) === */
.hero {
  position: relative;
  padding: 180px 0 160px;
  border-bottom: 1px solid var(--border);
  background-image:
    linear-gradient(to right, rgba(19,19,19,0.92) 35%, rgba(19,19,19,0.55) 70%, rgba(19,19,19,0.3) 100%),
    url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.hero-inner { max-width: 640px; }
.hero h1 { margin-bottom: 24px; }
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* === PAGE HERO (inner pages) === */
.page-hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(32px, 4.5vw, 56px); margin-top: 12px; }
.page-hero p  {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.6;
}

/* breadcrumb */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.breadcrumb a { transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-primary { background: var(--accent); color: #131313; }
.btn-primary:hover { background: #c9a430; }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

/* === OVERVIEW CARDS (index) === */
.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.overview-card {
  background: var(--bg);
  padding: 48px 40px;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
}
.overview-card:hover { background: var(--bg-card); }
.overview-card .number {
  font-family: 'Noto Serif', serif;
  font-size: 52px;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 28px;
}
.overview-card h3 { margin-bottom: 12px; }
.overview-card p  { color: var(--text-muted); font-size: 15px; flex: 1; margin-bottom: 28px; }
.card-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.card-link:hover { text-decoration: underline; }

/* featured row (index) */
.featured-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.featured-card {
  background: var(--bg);
  padding: 40px;
  transition: background 0.2s;
}
.featured-card:hover { background: var(--bg-card); }
.featured-card h3 { font-size: 20px; margin-bottom: 10px; }
.featured-card p  { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; line-height: 1.6; }

/* === MODEL CARDS === */
.models-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}
.model-card {
  background: var(--bg);
  transition: background 0.2s;
  overflow: hidden;
}
.model-card:hover { background: var(--bg-card); }

.model-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #0a0a0a;
}
.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.92);
}
.model-card:hover .model-image img {
  transform: scale(1.04);
  filter: brightness(1);
}
.model-body { padding: 40px 48px 48px; }
.model-card .model-ref {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.model-card .model-brand {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.model-brand--link {
  transition: opacity 0.2s;
  text-decoration: none;
}
.model-brand--link:hover { opacity: 0.7; }
.model-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding: 10px 18px;
  background: var(--accent-dim);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 4px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.model-cta:hover {
  background: rgba(212,175,55,0.2);
  border-color: rgba(212,175,55,0.45);
}
.model-card h3 { margin-bottom: 4px; }
.model-card p  { color: var(--text-muted); font-size: 15px; margin: 16px 0 24px; line-height: 1.6; }
.specs-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.specs-table tr { border-top: 1px solid var(--border); }
.specs-table td { padding: 9px 0; vertical-align: top; }
.specs-table td:first-child { color: var(--text-muted); width: 42%; }

/* Brand model links (marcas → modelos) */
.brand-model-link {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(212,175,55,0.4);
  text-underline-offset: 3px;
  transition: color 0.2s, text-decoration-color 0.2s;
  font-size: inherit;
}
.brand-model-link:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

/* === BRAND CARDS === */
.brands-category { margin-bottom: 80px; }
.brands-category:last-child { margin-bottom: 0; }
.brands-category-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.brand-card {
  background: var(--bg);
  overflow: hidden;
  transition: background 0.2s;
}
.brand-card:hover { background: var(--bg-card); }
.brand-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #151515, #0d0d0d);
}
.brand-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.brand-card:hover .brand-image img { transform: scale(1.05); }
.brand-info  { padding: 28px; }
.brand-info h3 { margin-bottom: 4px; }
.brand-country {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.brand-info > p { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; line-height: 1.55; }
.brand-meta { display: flex; gap: 20px; }
.brand-meta-item label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 3px;
}
.brand-meta-item span { font-size: 13px; color: var(--text); }

/* === TIPOS PAGE === */
.tipo-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin-bottom: 1px;
}
.tipo-text {
  background: var(--bg);
  padding: 64px;
}
.tipo-text h3   { margin-bottom: 16px; font-size: 28px; }
.tipo-text p    { color: var(--text-muted); margin-bottom: 20px; line-height: 1.7; }
.tipo-text ul   { color: var(--text-muted); }
.tipo-text ul li {
  padding: 7px 0 7px 20px;
  position: relative;
  border-top: 1px solid var(--border);
  font-size: 15px;
}
.tipo-text ul li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }

.tipo-image {
  position: relative;
  overflow: hidden;
  background: #080808;
  min-height: 420px;
}
.tipo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.80);
}
.tipo-item:hover .tipo-image img {
  transform: scale(1.04);
  filter: brightness(0.92);
}
.tipo-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 32px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tipo-image-caption .caption-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(228,226,225,0.5);
}
.tipo-image-caption .caption-value {
  font-family: 'Noto Serif', serif;
  font-size: 26px;
  color: var(--accent);
  line-height: 1.1;
}

/* === TIMELINE (historia) === */
.timeline {
  position: relative;
  padding-left: 56px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-bottom: 64px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -56px;
  top: 7px;
  width: 9px;
  height: 9px;
  background: var(--accent);
}
.timeline-year {
  font-family: 'Noto Serif', serif;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 8px;
}
.timeline-item h3 { margin-bottom: 10px; font-size: 20px; }
.timeline-item p  { color: var(--text-muted); font-size: 15px; max-width: 640px; line-height: 1.65; }
.timeline-era {
  margin-top: 80px;
  margin-bottom: 48px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.timeline-era:first-child { margin-top: 0; }
.timeline-era h2 { font-size: 28px; }

/* === HISTORIA SCROLLYTELLING === */
.historia-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.historia-sticky-col {
  position: sticky;
  top: 96px;
}

.historia-sticky {
  height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.historia-img-frame {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: #080808;
  min-height: 200px;
}

.historia-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: opacity, transform, filter;
}

/* Base layer — always shows the current era image, with a slow continuous Ken Burns drift */
.historia-img-base {
  z-index: 1;
  animation: historiaKenBurns 22s ease-in-out infinite alternate;
}

/* Overlay — transitions in over the base when the era changes */
.historia-img-overlay {
  z-index: 2;
  opacity: 0;
  transform: scale(1.07);
  filter: blur(10px) brightness(0.7);
  transition:
    opacity   1.1s cubic-bezier(0.65, 0, 0.35, 1),
    transform 1.4s cubic-bezier(0.4, 0, 0.2, 1),
    filter    1.0s cubic-bezier(0.65, 0, 0.35, 1);
}
.historia-img-overlay.is-active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0) brightness(1);
}

@keyframes historiaKenBurns {
  0%   { transform: scale(1)    translate3d(0, 0, 0); }
  100% { transform: scale(1.08) translate3d(-1.5%, -1%, 0); }
}

/* Subtle vignette over the frame for editorial mood */
.historia-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.45) 100%);
}

.historia-sticky-info {
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.historia-era-period {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.historia-era-title {
  font-family: 'Noto Serif', serif;
  font-size: 16px;
  color: var(--text-muted);
  transition: opacity 0.45s ease, transform 0.45s ease;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .historia-layout { grid-template-columns: 1fr 320px; gap: 48px; }
}
@media (max-width: 900px) {
  .historia-layout { grid-template-columns: 1fr; }
  .historia-sticky-col { display: none; }
}

/* Historia: imagen inline por era en móvil */
.era-img-mobile {
  display: none;
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-top: 20px;
  filter: brightness(0.82);
}
@media (max-width: 900px) {
  .era-img-mobile { display: block; }
}

/* === OFFER CARDS === */
.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 10px 20px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover  { border-color: var(--accent); color: var(--accent); }
.filter-btn.active { background: var(--accent); color: #131313; border-color: var(--accent); }

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.offer-card {
  background: var(--bg);
  overflow: hidden;
  transition: background 0.2s;
}
.offer-card:hover { background: var(--bg-card); }
.offer-image {
  background: #fff;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.offer-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.35);
}
.offer-info { padding: 24px; }
.offer-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 8px;
  background: var(--accent-dim);
  color: var(--accent);
  margin-bottom: 12px;
}
.offer-info .offer-brand {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
}
.offer-info h3 { font-size: 18px; margin-bottom: 10px; }
.offer-info p  { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.55; }
.offer-price {
  font-family: 'Noto Serif', serif;
  font-size: 30px;
  color: var(--accent);
  margin-bottom: 16px;
}
.offer-price small {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}
.offer-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  transition: opacity 0.2s;
}
.offer-link:hover { opacity: 0.8; text-decoration: underline; }

/* === FOOTER === */
footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 48px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { display: block; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); max-width: 280px; line-height: 1.6; }
.footer-links h4 {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.affiliate-note {
  border: 1px solid var(--border);
  padding: 20px 24px;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}
.affiliate-note strong { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  color: var(--text-muted);
  font-size: 12px;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--text); }

/* ================================================================
   HOME — "Por dónde empezar" section
   ================================================================ */
.start-paths-section {
  padding: 96px 0 64px;
  background: linear-gradient(180deg, transparent 0%, rgba(212,175,55,0.025) 100%);
}
.start-paths-header {
  max-width: 640px;
  margin: 0 auto 56px;
  text-align: center;
}
.start-paths-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
}
.start-paths-header p {
  color: var(--text-muted);
  font-size: 16px;
}
.start-paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.start-path {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 32px 32px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.start-path:hover {
  transform: translateY(-3px);
  border-color: rgba(212,175,55,0.4);
  background: var(--bg-card-hover);
}
.start-path-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  align-self: flex-start;
}
.start-path-title {
  font-family: 'Noto Serif', serif;
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text);
}
.start-path-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex: 1;
}
.start-path-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.start-path-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  transition: gap 0.2s;
}
.start-path:hover .start-path-link {
  color: var(--accent);
  filter: brightness(1.15);
}

/* ================================================================
   HOME — "Explorar el sitio" (secondary nav)
   ================================================================ */
.explore-section {
  padding: 64px 0 96px;
}
.explore-header {
  margin-bottom: 40px;
}
.explore-header h2 {
  font-size: clamp(22px, 2.6vw, 28px);
  margin-top: 8px;
}
.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.explore-card {
  background: var(--bg);
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.explore-card:hover {
  background: var(--bg-card);
}
.explore-card-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 12px;
}
.explore-card h3 {
  font-family: 'Noto Serif', serif;
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.3;
}
.explore-card p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ================================================================
   CONTENT PAGES — closing CTA block
   ================================================================ */
.content-cta-block {
  margin: 96px auto 0;
  max-width: 880px;
  padding: 56px 48px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212,175,55,0.05) 100%);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 6px;
  text-align: center;
}
.content-cta-block .eyebrow {
  margin-bottom: 16px;
}
.content-cta-block h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 16px;
  line-height: 1.3;
}
.content-cta-block p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.content-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--accent);
  color: #131313;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 4px;
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s;
}
.content-cta-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

/* ================================================================
   COMPARATIVAS — listado en recomendaciones
   ================================================================ */
.comparativas-block {
  margin: 96px auto 0;
  max-width: 1000px;
  padding-top: 64px;
  border-top: 1px solid var(--border);
}
.comparativas-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.comparativas-header h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 14px 0 12px;
}
.comparativas-header p {
  color: var(--text-muted);
  font-size: 15px;
}
.comparativas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.comparativa-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 28px 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.comparativa-card:hover {
  border-color: rgba(212,175,55,0.45);
  transform: translateY(-2px);
  background: var(--bg-card-hover);
}
.comparativa-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  align-self: flex-start;
}
.comparativa-title {
  font-family: 'Noto Serif', serif;
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 10px;
  color: var(--text);
}
.comparativa-meta {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 18px;
  flex: 1;
}
.comparativa-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
}

/* ================================================================
   RESEÑAS — individual review pages
   ================================================================ */
.review-article {
  max-width: 800px;
  margin: 0 auto;
}
.review-hero {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  margin-bottom: 56px;
  align-items: center;
}
.review-hero-img {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}
.review-hero-img img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}
.review-hero-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 6px;
}
.review-rating {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.review-rating-num {
  font-family: 'Noto Serif', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.review-rating-max {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  color: var(--text-muted);
}
.review-rating-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.review-tldr {
  font-family: 'Noto Serif', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  margin: 0 !important;
}

/* Reuse vs-article styles for the review body */
.review-article > p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}
.review-article > p strong { color: var(--text); font-weight: 600; }
.review-article > h2 {
  font-family: 'Noto Serif', serif;
  font-size: clamp(22px, 2.6vw, 28px);
  margin: 56px 0 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  line-height: 1.25;
}

/* rec-card → leer reseña link */
.rec-review-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.rec-review-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ================================================================
   COMPARATIVA — vs article (PRX vs Khaki Field, etc.)
   ================================================================ */
.vs-article {
  max-width: 780px;
  margin: 0 auto;
}
.vs-watches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}
.vs-watch {
  display: flex;
  flex-direction: column;
}
.vs-watch-img-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 18px;
}
.vs-watch-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}
.vs-watch:hover .vs-watch-img-wrap img {
  transform: scale(1.04);
}
.vs-watch-caption {
  margin-top: 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vs-watch-brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.vs-watch-name {
  font-family: 'Noto Serif', serif;
  font-size: 16px;
  color: var(--text);
  line-height: 1.3;
}
.vs-intro {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 24px;
}
.vs-intro strong { color: var(--accent); font-weight: 600; }
.vs-section-title {
  font-family: 'Noto Serif', serif;
  font-size: clamp(24px, 3vw, 32px);
  margin: 64px 0 24px;
  line-height: 1.25;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.vs-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 32px 0 14px;
  color: var(--accent);
}
.vs-article p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 20px;
}
.vs-article p strong { color: var(--text); font-weight: 600; }
.vs-list {
  list-style: none;
  margin: 16px 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vs-list li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  padding-left: 22px;
  position: relative;
}
.vs-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  top: 0;
}
.vs-list li strong { color: var(--text); font-weight: 600; }

.vs-table-wrap {
  overflow-x: auto;
  margin: 24px 0 40px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg-card);
}
.vs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}
.vs-table th,
.vs-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.vs-table tr:last-child td { border-bottom: none; }
.vs-table thead th {
  font-family: 'Noto Serif', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(212,175,55,0.06);
}
.vs-table tbody td:first-child {
  color: var(--text-muted);
  font-weight: 500;
  width: 30%;
}
.vs-table tbody td {
  color: var(--text);
}

.vs-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 56px 0 32px;
}
.vs-cta-card {
  background: var(--bg-card);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 6px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.vs-cta-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.vs-cta-title {
  font-family: 'Noto Serif', serif;
  font-size: 22px;
  line-height: 1.2;
  margin: 6px 0;
  color: var(--text);
}
.vs-cta-meta {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  margin-bottom: 14px !important;
  line-height: 1.5 !important;
}
.vs-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 12px 18px;
  background: var(--accent);
  color: #131313;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 4px;
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s;
  align-self: flex-start;
}
.vs-cta-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}
.vs-disclaimer {
  font-size: 12px !important;
  color: var(--text-muted) !important;
  line-height: 1.6 !important;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 32px !important;
}

/* ================================================================
   LEGAL PAGES (aviso-legal, privacidad)
   ================================================================ */
.legal-header {
  max-width: 740px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}
.legal-header h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 12px;
}
.legal-updated {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 8px;
}
.legal-content {
  max-width: 740px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 80px;
}
.legal-section h2 {
  font-size: 20px;
  font-family: 'Noto Serif', serif;
  margin-bottom: 16px;
  color: var(--text);
}
.legal-section h3 {
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--text);
}
.legal-section p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section strong { color: var(--text); }
.legal-list {
  list-style: none;
  margin: 12px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-list li {
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.legal-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
  top: 3px;
}
.legal-list a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-list a:hover { opacity: 0.8; }
.legal-section a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-section a:hover { opacity: 0.8; }

/* ================================================================
   MOVIMIENTOS — anatomy, escape animation, comparison, bridge
   ================================================================ */

/* In-page TOC */
.mov-toc {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(19,19,19,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mov-toc-inner {
  display: flex;
  gap: 32px;
  padding: 14px 0;
  align-items: center;
}
.mov-toc-inner a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s ease;
  position: relative;
}
.mov-toc-inner a:hover { color: var(--text); }

/* Section spacing */
.mov-section {
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.mov-section-dark {
  background: #0e0e0e;
}

.mov-lead {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 56ch;
  margin: 18px 0 0;
}

/* Anatomy — grid of part cards */
.mov-anatomy-head {
  max-width: 760px;
  margin-bottom: 64px;
}
.mov-anatomy-head h2 { margin: 8px 0 0; }

.mov-anatomy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mov-part-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.mov-part-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(212,175,55,0.35);
  transform: translateY(-2px);
}
.mov-part-icon {
  width: 96px;
  height: 96px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mov-part-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.mov-part-meta {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 12px;
}
.mov-part-tag {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
}
.mov-part-card h3 {
  font-family: 'Noto Serif', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}
.mov-part-aka {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  font-style: italic;
}
.mov-part-card p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
}

.mov-gloss-link {
  font-size: 11px;
  color: var(--accent);
  opacity: 0.65;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.mov-gloss-link:hover { opacity: 1; }

.inline-gloss {
  color: var(--text);
  border-bottom: 1px dotted var(--accent);
  transition: color 0.2s ease;
}
.inline-gloss:hover { color: var(--accent); }

/* Full movement (animated) */
.mov-full-head {
  max-width: 760px;
  margin-bottom: 56px;
}
.mov-full-head h2 { margin: 8px 0 0; }

.mov-full-stage {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 64px;
  align-items: center;
}
.mov-full-svg {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 80px rgba(212,175,55,0.05));
}

/* Each animated SVG group: explicit transform-origin in viewBox coords */
.mov-full-rotor   { transform-origin: 250px 250px; animation: mov-rotor-swing 7s cubic-bezier(0.55,0,0.45,1) infinite; }
.mov-full-barrel  { transform-origin: 170px 200px; animation: mov-spin-cw   90s linear infinite; }
.mov-full-gear    { transform-origin: 270px 230px; animation: mov-spin-ccw  18s linear infinite; }
.mov-full-gear-2  { transform-origin: 340px 245px; animation: mov-spin-cw   12s linear infinite; }
.mov-full-escape  { transform-origin: 370px 320px; animation: mov-tick     4.2s steps(12) infinite; }
.mov-full-balance { transform-origin: 215px 360px; animation: mov-balance-full 1.4s cubic-bezier(0.55,0,0.45,1) infinite; }

@keyframes mov-rotor-swing {
  0%   { transform: rotate(-35deg); }
  50%  { transform: rotate(40deg); }
  100% { transform: rotate(-35deg); }
}
@keyframes mov-spin-cw  { to { transform: rotate(360deg); } }
@keyframes mov-spin-ccw { to { transform: rotate(-360deg); } }
@keyframes mov-tick     { to { transform: rotate(360deg); } }
@keyframes mov-balance-full {
  0%   { transform: rotate(-280deg); }
  50%  { transform: rotate(280deg); }
  100% { transform: rotate(-280deg); }
}

@media (prefers-reduced-motion: reduce) {
  .mov-full-rotor, .mov-full-barrel, .mov-full-gear,
  .mov-full-gear-2, .mov-full-escape, .mov-full-balance {
    animation: none;
  }
}

.mov-full-legend {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 24px;
  border-left: 1px solid var(--border);
}
.mov-full-legend-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.mov-full-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mov-full-dot-balance { background: var(--accent); box-shadow: 0 0 8px rgba(212,175,55,0.6); }
.mov-full-dot-escape  { background: var(--accent); opacity: 0.85; }
.mov-full-dot-gear    { background: var(--accent); opacity: 0.65; }
.mov-full-dot-barrel  { background: var(--accent); opacity: 0.5; }
.mov-full-dot-rotor   { background: transparent; border: 1.5px solid var(--accent); }

/* Escape animation section */
.mov-escape {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.mov-escape-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mov-escape-text h2 { margin: 8px 0 24px; }
.mov-escape-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  max-width: 56ch;
}
.mov-escape-text strong { color: var(--text); font-weight: 600; }
.mov-escape-foot {
  margin-top: 28px !important;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 14px;
}
.mov-escape-foot a {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.mov-escape-foot a:hover { border-bottom-color: var(--accent); }

/* Balance wheel — pure CSS animation */
.balance-wheel {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 24px rgba(212,175,55,0.18));
}
.balance-rotor {
  position: absolute;
  inset: 0;
  animation: balance-oscillate 1.4s cubic-bezier(0.55, 0, 0.45, 1) infinite;
  transform-origin: center center;
}
.balance-ring {
  position: absolute;
  inset: 0;
  border: 2.5px solid var(--accent);
  border-radius: 50%;
  opacity: 0.92;
}
.balance-ring::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0.45;
}
.balance-spoke {
  position: absolute;
  background: var(--accent);
  top: 50%;
  left: 50%;
}
.balance-spoke-h {
  width: 100%;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.balance-spoke-v {
  height: 100%;
  width: 1.5px;
  transform: translate(-50%, -50%);
}
.balance-pivot {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(212,175,55,0.7);
}

@keyframes balance-oscillate {
  0%   { transform: rotate(-280deg); }
  50%  { transform: rotate(280deg); }
  100% { transform: rotate(-280deg); }
}

@media (prefers-reduced-motion: reduce) {
  .balance-rotor { animation: none; }
}

.mov-escape-rhythm {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Noto Serif', serif;
  font-style: italic;
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.05em;
}
.mov-escape-rhythm .tick { color: var(--accent); }
.mov-escape-rhythm .dot { opacity: 0.5; }

/* Comparison table */
.mov-compare-head {
  text-align: left;
  max-width: 720px;
  margin-bottom: 56px;
}
.mov-compare-head h2 { margin: 8px 0 0; }
.mov-compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.mov-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 720px;
}
.mov-compare-table thead th {
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: #0a0a0a;
}
.mov-compare-table tbody tr {
  transition: background 0.2s ease;
}
.mov-compare-table tbody tr:hover {
  background: var(--bg-card-hover);
}
.mov-compare-table tbody tr + tr th,
.mov-compare-table tbody tr + tr td {
  border-top: 1px solid var(--border);
}
.mov-compare-table th[scope="row"] {
  font-family: 'Noto Serif', serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  padding: 22px 24px;
  text-align: left;
  white-space: nowrap;
}
.mov-compare-table th[scope="row"] a {
  color: var(--text);
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.mov-compare-table th[scope="row"] a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.mov-compare-table td {
  padding: 22px 24px;
  color: var(--text-muted);
  vertical-align: middle;
}

/* Bridge cards */
.mov-bridge {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mov-bridge-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.mov-bridge-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(212,175,55,0.35);
  transform: translateY(-2px);
}
.mov-bridge-card h3 {
  margin: 10px 0 16px;
  font-size: 26px;
}
.mov-bridge-card p {
  color: var(--text-muted);
  margin-bottom: 28px;
  max-width: 48ch;
}
.mov-bridge-link {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--accent);
  transition: gap 0.2s ease, letter-spacing 0.2s ease;
}
.mov-bridge-card:hover .mov-bridge-link {
  letter-spacing: 0.18em;
}

/* === NOTICIAS === */
.news-teaser-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.news-teaser-header h2 {
  font-family: 'Noto Serif', serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  margin: 0;
}
.news-teaser-all {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.75;
  transition: opacity 0.15s;
}
.news-teaser-all:hover { opacity: 1; }

.news-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 1px;
  background: var(--border);
}
.news-sidebar {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: var(--border);
}

.news-card {
  background: var(--bg-card);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.15s;
}
.news-card:hover { background: #1a1a1a; }
.news-card--lead { padding: 48px 52px; }

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.news-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 3px 8px;
  opacity: 0.8;
}
.news-date {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.news-card-title {
  font-family: 'Noto Serif', serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 12px;
}
.news-card--lead .news-card-title {
  font-size: clamp(20px, 2.4vw, 28px);
  margin-bottom: 20px;
  line-height: 1.35;
}
.news-card-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}
.news-card--lead .news-card-excerpt {
  font-size: 15px;
  line-height: 1.75;
}
.news-card-link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.15s;
  margin-top: auto;
}
.news-card-link:hover { opacity: 1; }

/* Homepage lead card — imagen */
.news-card--lead {
  padding: 0;
}
.news-card--lead .news-card-img-wrap {
  overflow: hidden;
  aspect-ratio: 21/9;
}
.news-card--lead .news-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
  transition: filter 0.4s, transform 0.4s;
}
.news-card--lead:hover .news-card-img-wrap img {
  filter: brightness(1);
  transform: scale(1.02);
}
.news-card--lead .news-card-content {
  padding: 36px 40px;
}

/* Noticias page grid */
.news-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  margin-bottom: 80px;
}
/* Fix: slot vacío en grid impar → fondo de página */
.news-page-grid::after {
  content: '';
  background: var(--bg);
}

.news-page-card {
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: background 0.15s;
  overflow: hidden;
}
.news-page-card:hover { background: #1a1a1a; }

/* Imagen de tarjeta normal */
.news-page-card-img-wrap {
  overflow: hidden;
  aspect-ratio: 16/9;
  flex-shrink: 0;
}
.news-page-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.88);
  transition: filter 0.35s, transform 0.35s;
}
.news-page-card:hover .news-page-card-img-wrap img {
  filter: brightness(1);
  transform: scale(1.03);
}

.news-page-card-content {
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Tarjeta destacada: imagen a la izquierda */
.news-page-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 42% 1fr;
  border-bottom: 1px solid var(--border);
}
.news-page-card--featured .news-page-card-img-wrap {
  aspect-ratio: unset;
  height: 100%;
  min-height: 360px;
}
.news-page-card--featured .news-page-card-content {
  padding: 48px 52px;
}

.news-page-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.news-page-card-title {
  font-family: 'Noto Serif', serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  margin-bottom: 16px;
}
.news-page-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
.news-page-card-title a:hover { color: var(--accent); }
.news-page-card--featured .news-page-card-title {
  font-size: clamp(22px, 3vw, 32px);
  margin-bottom: 24px;
}
.news-page-card-body {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
}
.news-page-card--featured .news-page-card-body {
  font-size: 15px;
}
.news-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.15s;
}
.news-source:hover { opacity: 0.85; color: var(--accent); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  :root { --margin: 40px; }
  .overview-grid    { grid-template-columns: repeat(2, 1fr); }
  .models-grid      { grid-template-columns: 1fr; }
  .featured-row     { grid-template-columns: 1fr; }
  .footer-inner     { grid-template-columns: 1fr 1fr; gap: 40px; }
  .start-paths-grid { grid-template-columns: 1fr; gap: 20px; max-width: 640px; margin: 0 auto; }
  .explore-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --gap: 80px; --margin: 24px; }

  .site-header { position: relative; z-index: auto; backdrop-filter: none; -webkit-backdrop-filter: none; }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 24px var(--margin);
    gap: 20px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; z-index: 1000; position: relative; }

  .hero { padding: 80px 0 64px; }

  .overview-grid { grid-template-columns: 1fr; }
  .featured-row  { grid-template-columns: 1fr; }
  .brands-grid   { grid-template-columns: 1fr; }
  .offers-grid   { grid-template-columns: 1fr; }
  .tipo-item     { grid-template-columns: 1fr; }
  .tipo-image    { min-height: 220px; order: -1; }
  .footer-inner  { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .start-paths-section { padding: 64px 0 40px; }
  .start-path    { padding: 28px 24px 24px; }
  .content-cta-block { margin: 64px 0 0; padding: 40px 28px; }
  .vs-cta-grid   { grid-template-columns: 1fr; gap: 16px; }
  .vs-section-title { margin-top: 48px; }
  .vs-watches    { grid-template-columns: 1fr; gap: 20px; margin-bottom: 40px; }
  .vs-watch-img-wrap { padding: 14px; }
  .review-hero   { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .review-hero-side { padding: 20px; }
  .explore-grid  { grid-template-columns: 1fr; }
  .explore-section { padding: 48px 0 64px; }
  .comparativas-grid { grid-template-columns: 1fr; gap: 16px; }
  .comparativas-block { margin-top: 64px; padding-top: 40px; }

  /* Noticias — mobile */
  .news-layout              { grid-template-columns: 1fr; }
  .news-sidebar             { grid-template-rows: auto; grid-template-columns: 1fr; }
  .news-card                { padding: 28px 24px; }
  .news-card--lead          { padding: 0; }
  .news-card--lead .news-card-content { padding: 24px; }
  .news-page-grid           { grid-template-columns: 1fr; }
  .news-page-card-content   { padding: 24px; }
  .news-page-card--featured { grid-template-columns: 1fr; }
  .news-page-card--featured .news-page-card-img-wrap { min-height: 240px; height: 240px; }
  .news-page-card--featured .news-page-card-content  { padding: 32px 28px; }
  .news-teaser-header       { flex-direction: column; gap: 12px; align-items: flex-start; }
  .model-body    { padding: 24px; }
  .tipo-text     { padding: 40px 24px; }

  /* Movimientos — mobile */
  .mov-section         { padding: 64px 0; }
  .mov-toc-inner       { gap: 18px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; }
  .mov-toc-inner a     { white-space: nowrap; }
  .mov-anatomy-grid    { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .mov-part-card       { padding: 22px 18px 20px; }
  .mov-part-icon       { width: 72px; height: 72px; margin-bottom: 14px; }
  .mov-escape          { grid-template-columns: 1fr !important; gap: 40px; }
  .mov-escape-visual   { order: -1; }
  .balance-wheel       { width: 220px; height: 220px; }
  .mov-compare-table   { font-size: 13px; }
  .mov-compare-table th,
  .mov-compare-table td { padding: 14px 12px; }
  .mov-bridge          { grid-template-columns: 1fr !important; gap: 16px; }
  .mov-bridge-card     { padding: 40px 28px; }
  .mov-full-stage      { grid-template-columns: 1fr; gap: 24px; }
  .mov-full-svg        { max-width: 100%; width: 100%; }
  .mov-full-legend     { flex-direction: row; flex-wrap: wrap; padding-left: 0; padding-top: 16px; border-left: none; border-top: 1px solid var(--border); gap: 10px 16px; }
  .mov-full-legend-row { font-size: 11px; gap: 8px; }
  .mov-full-dot        { width: 8px; height: 8px; }
}

@media (min-width: 769px) and (max-width: 1080px) {
  .mov-anatomy-grid { grid-template-columns: repeat(2, 1fr); }
}

