/* ==========================================================
   Llegar a Irlanda — guides hub
   ========================================================== */

/* Big editorial hero */
.hub-hero {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
[data-theme="dark"] .hub-hero { background: var(--bg-subtle); }
.hub-hero .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .hub-hero .container { grid-template-columns: 1fr; gap: 40px; } }

.hub-hero h1 {
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 144;
  font-weight: 600;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: -.03em;
  margin: 16px 0 28px;
  text-wrap: balance;
}
.hub-hero h1 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--marca);
}
.hub-hero p.lead {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(20px, 1.7vw, 24px);
  line-height: 1.45;
  color: var(--text);
  margin: 0 0 32px;
  max-width: 560px;
}
.hub-hero__stats {
  display: flex; gap: 48px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.hub-hero__stats .stat .num {
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 144;
  font-weight: 600;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--marca);
}
[data-theme="dark"] .hub-hero__stats .stat .num { color: var(--marca-deep); }
.hub-hero__stats .stat .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 8px;
}

.hub-illustration {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(80% 60% at 30% 30%, color-mix(in oklab, var(--gold) 70%, transparent), transparent 60%),
    radial-gradient(70% 50% at 80% 80%, color-mix(in oklab, var(--marca) 80%, transparent), transparent 60%),
    linear-gradient(135deg, var(--marca-deep), var(--bg-deep));
  position: relative;
  overflow: hidden;
}
.hub-illustration::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 10px);
}

/* "Empezar por aquí" path */
.start-path {
  padding: 80px 0;
}
.start-path__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.start-path__head .kicker { margin-bottom: 14px; display: inline-block; }
.start-path__head h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0 0 16px;
}
.start-path__head h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--marca);
}
.start-path__head p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-soft);
  margin: 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 900px) { .timeline { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .timeline { grid-template-columns: 1fr; } }
.timeline::before {
  content: '';
  position: absolute;
  top: 30px; left: 4%; right: 4%;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
@media (max-width: 900px) { .timeline::before { display: none; } }
.step {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.step__dot {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  color: var(--marca);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
[data-theme="dark"] .step__dot { color: var(--marca-deep); background: var(--bg-2); }
.step:hover .step__dot { background: var(--marca); color: var(--on-marca); border-color: var(--marca); }
.step h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin: 0;
}
.step p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-soft);
  margin: 0;
}

/* Big guide cards */
.guides-big {
  padding: 80px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
[data-theme="dark"] .guides-big { background: var(--bg-subtle); }
.guides-big__head {
  margin-bottom: 56px;
  text-align: center;
}
.guides-big__head h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -.025em;
}
.guides-big__head h2 em {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  color: var(--marca);
}
.guide-big-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 800px) { .guide-big-list { grid-template-columns: 1fr; } }
.guide-big {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 36px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: flex-start;
}
.guide-big:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--marca);
}
.guide-big__num {
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 144;
  font-weight: 600;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--gold-deep);
}
[data-theme="dark"] .guide-big__num { color: var(--gold); }
.guide-big h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 0 0 12px;
}
.guide-big p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 20px;
}
.guide-big__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}
.guide-big__list li {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--text-soft);
  display: flex; align-items: center; gap: 8px;
}
.guide-big__list li::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--marca);
  border-radius: 50%;
  flex: 0 0 4px;
}
.guide-big__list li a:hover { color: var(--marca); }
.guide-big__more {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--marca);
  display: inline-flex; align-items: center; gap: 6px;
}
[data-theme="dark"] .guide-big__more { color: var(--marca-deep); }
.guide-big__more::after { content: '→'; transition: transform var(--t-fast); }
.guide-big:hover .guide-big__more::after { transform: translateX(4px); }

/* Popular articles */
.hub-popular { padding: 80px 0; }
.hub-popular__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media (max-width: 800px) { .hub-popular__layout { grid-template-columns: 1fr; gap: 40px; } }
