/* =====================================================================
   HURLING CLUB — Design System
   "De Irlanda al fin del mundo"
   Navy heritage + Irish tricolor sporting accents + Caslon display
   ===================================================================== */

/* ---- Tokens ---------------------------------------------------------- */
:root {
  /* Color — from the crest and the real kit */
  --navy:        #0E1A3C;   /* Shield navy — dominant canvas        */
  --navy-900:    #0A1330;   /* deeper navy for layering             */
  --navy-700:    #1B2A55;   /* raised navy surface                  */
  --shamrock:    #1B7A46;   /* Irish green — heritage/identity      */
  --shamrock-600:#166139;
  --orange:      #D8622A;   /* Kit orange — energy, CTAs, action    */
  --orange-600:  #BE521F;
  --gold:        #C6A15B;   /* Crest gold — hairlines only          */
  --gold-soft:   #D8BB86;
  --bone:        #F1ECE1;   /* warm paper — light sections          */
  --bone-200:    #E5DECF;
  --ink:         #0B1020;   /* text on light                        */
  --ink-60:      #4A4E5C;   /* muted text on light                  */
  --paper-60:    rgba(241,236,225,.72); /* muted text on navy       */
  --paper-40:    rgba(241,236,225,.64); /* de-emphasized, still AA   */
  --line-navy:   rgba(198,161,91,.28);  /* gold hairline on navy    */
  --line-ink:    rgba(11,16,32,.14);    /* hairline on bone         */

  /* Type */
  --display: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  --body:    "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:    "Space Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Fluid type scale */
  --fs-eyebrow: 0.72rem;
  --fs-body:    clamp(1rem, 0.96rem + 0.25vw, 1.14rem);
  --fs-lead:    clamp(1.25rem, 1.05rem + 0.9vw, 1.6rem);
  --fs-h3:      clamp(1.35rem, 1.1rem + 1.1vw, 1.9rem);
  --fs-h2:      clamp(2rem, 1.4rem + 2.6vw, 3.4rem);
  --fs-h1:      clamp(2.7rem, 1.6rem + 4.8vw, 5.6rem);
  --fs-mega:    clamp(2.3rem, 1.05rem + 5vw, 5.4rem);

  /* Space & structure */
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --maxw: 1240px;
  --section-y: clamp(4.5rem, 9vw, 9rem);
  --radius: 3px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--bone);
  background: var(--navy);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* Skip link — offscreen until focused (keyboard hospitality) */
.skip {
  position: fixed; top: 0.75rem; left: 0.75rem; z-index: 200;
  transform: translateY(-160%);
  background: var(--orange); color: #fff; font-weight: 700;
  padding: 0.7em 1.1em; border-radius: var(--radius);
  transition: transform .25s var(--ease);
}
.skip:focus { transform: translateY(0); }

/* ---- Layout helpers -------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--navy  { background: var(--navy); color: var(--bone); }
.section--deep  { background: var(--navy-900); color: var(--bone); }
.section--bone  { background: var(--bone); color: var(--ink); }
.section--green { background: var(--shamrock); color: var(--bone); }

/* ---- Typography ------------------------------------------------------ */
.eyebrow {
  font-family: var(--body);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 1.8em; height: 1px;
  background: var(--gold);
  opacity: 0.8;
}
.section--bone .eyebrow { color: var(--shamrock-600); }
.section--bone .eyebrow::before { background: var(--shamrock-600); }

h1, h2, h3, .display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.01em;
}
h2 { font-size: var(--fs-h2); line-height: 1.06; }
h3 { font-size: var(--fs-h3); font-family: var(--display); }
.lead { font-size: var(--fs-lead); line-height: 1.5; }
.measure { max-width: 60ch; }
.measure-sm { max-width: 42ch; }
em, .italic { font-style: italic; }

/* scoreline / data — the signature */
.score {
  font-family: var(--mono);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum" 1;
}

/* ---- Buttons --------------------------------------------------------- */
/* Primary CTA — shamrock green with a fine gold hairline (echoes the crest) */
.btn {
  --bg: var(--shamrock); --fg: #fff; --bd: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  min-height: 3rem; padding: 0.8em 1.7em;
  background: var(--bg); color: var(--fg);
  font-weight: 700; font-size: 0.84rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid var(--bd); border-radius: 7px; cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 12px 26px -16px rgba(0,0,0,.55);
  transition: transform .22s var(--ease), background .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.btn:hover { background: var(--shamrock-600); transform: translateY(-2px); border-color: var(--gold-soft);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 16px 30px -14px rgba(27,122,70,.55); }
.btn:active { transform: translateY(0) scale(.985); }
.btn .arw { transition: transform .22s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

/* Secondary — refined outline that fills subtly on hover */
.btn--ghost {
  --bg: transparent; --fg: var(--bone); --bd: var(--line-navy);
  box-shadow: none;
}
.btn--ghost:hover { --bg: rgba(241,236,225,.08); --bd: var(--gold); box-shadow: none; }
.section--bone .btn--ghost, .section--warm .btn--ghost { --fg: var(--ink); --bd: var(--line-ink); }
.section--bone .btn--ghost:hover, .section--warm .btn--ghost:hover { --bg: rgba(11,16,32,.05); --bd: var(--ink); }
/* botones sobre sección verde — legibles */
.section--green .btn { --bg: var(--bone); --fg: var(--navy-900); --bd: var(--bone); }
.section--green .btn:hover { background:#fff; border-color:#fff; }
.section--green .btn--ghost { --bg: transparent; --fg: var(--bone); --bd: rgba(241,236,225,.55); }
.section--green .btn--ghost:hover { --bg: rgba(255,255,255,.12); --bd: var(--bone); }
/* — CTAs premium sin caja: Sumate y Contacto (solo texto + flecha) — */
a.btn[href$="sumate.html"],
a.btn[href$="contacto.html"] {
  --bg: transparent; background: transparent;
  border: 0; border-radius: 0; box-shadow: none;
  min-height: 0; padding: 0; gap: 0.5em;
  color: var(--bone); font-weight: 600; letter-spacing: 0.16em;
}
a.btn[href$="sumate.html"]:hover,
a.btn[href$="contacto.html"]:hover {
  background: transparent; border-color: transparent; box-shadow: none;
  transform: none; color: var(--gold-soft);
}
/* la flecha conserva su deslizamiento (definido en .btn:hover .arw) */

/* text link with animated underline */
.tlink {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--orange);
  padding-bottom: 3px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1.5px; background-repeat: no-repeat; background-position: left bottom;
  transition: background-size .35s var(--ease);
}
.tlink:hover { background-size: 100% 1.5px; }
.tlink .arw { transition: transform .3s var(--ease); }
.tlink:hover .arw { transform: translateX(4px); }
.section--bone .tlink, .section--warm .tlink { color: var(--shamrock-600); }

/* =====================================================================
   NAVBAR
   ===================================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem var(--gutter);
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(10,19,48,.86);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--line-navy);
  padding-block: 0.75rem;
}
.nav__brand { display: flex; align-items: center; gap: 0.7rem; color: var(--bone); }
.nav__crest { width: 34px; height: auto; flex: none; }
.nav__word { font-family: var(--display); font-size: 1.05rem; letter-spacing: 0.02em; line-height: 1; }
.nav__word span { display: block; font-family: var(--body); font-size: 0.56rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold); margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); }
.nav__links a {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--paper-60); transition: color .25s var(--ease); position: relative;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--bone); }
.nav__links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1.5px; background: var(--orange);
}
.nav__cta { display: inline-flex; }
.nav__toggle { display: none; background: none; border: 0; color: var(--bone); padding: 6px; }
.nav__toggle svg { width: 26px; height: 26px; }

/* mobile nav */
.nav__drawer { display: none; }
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__drawer {
    display: block; position: fixed; inset: 0; z-index: 99;
    background: var(--navy-900);
    padding: 6rem var(--gutter) 2rem;
    transform: translateY(-100%); visibility: hidden;
    transition: transform .5s var(--ease);
    overflow-y: auto;
  }
  .nav__drawer.is-open { transform: translateY(0); visibility: visible; }
  .nav__drawer a { display: block; font-family: var(--display); font-size: clamp(1.8rem,7vw,2.6rem); padding: 0.5rem 0; color: var(--bone); border-bottom: 1px solid var(--line-navy); }
  .nav__drawer a:last-of-type { border-bottom: 0; }
  .nav__drawer .btn { margin-top: 1.4rem; }
  body.nav-open { overflow: hidden; }
}

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-block: 6.5rem clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 78% 12%, rgba(27,122,70,.28), transparent 55%),
    radial-gradient(90% 80% at 10% 100%, rgba(216,98,42,.20), transparent 60%),
    linear-gradient(180deg, var(--navy-900), var(--navy) 60%);
}
/* Photography layer — set `--hero-photo: url('...')` on the .hero element and a
   full-bleed image drops in with the legibility scrim already handled. */
.hero__photo {
  position: absolute; inset: 0; z-index: 0;
  background-image: var(--hero-photo, none);
  background-size: cover; background-position: center;
}
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,19,48,.72), rgba(10,19,48,.35) 55%, transparent 100%),
    linear-gradient(0deg, rgba(10,19,48,.92) 4%, rgba(10,19,48,.30) 46%, rgba(10,19,48,.55) 100%);
}

/* Hero slideshow — real club photos cross-fading behind the scrim */
.hero__slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--navy-900); }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.05);
  opacity: 0; transition: opacity 1.8s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(80% 60% at 50% 46%, rgba(12,16,24,.42), rgba(12,16,24,.06) 60%, transparent 80%),
    linear-gradient(180deg, rgba(12,16,24,.5), transparent 15%),
    linear-gradient(0deg, rgba(14,26,60,.62), rgba(14,26,60,.16) 20%, transparent 40%);
}
@media (prefers-reduced-motion: reduce) { .hero__slide { transition: none; } }
/* faint pitch-line grid — a material nod to the field */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image:
    linear-gradient(to right, rgba(241,236,225,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(241,236,225,.04) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(120% 100% at 50% 40%, #000 30%, transparent 82%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.hero__eyebrow { margin-bottom: 1.6rem; }

/* Centered homepage hero — title, then eyebrow, then text-only actions */
.hero:has(.hero__inner--center) { justify-content: center; }
.hero__inner--center { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero__crest { width: auto; height: clamp(64px, 7.4vw, 104px); margin-bottom: clamp(0rem, 0.3vw, 0.2rem); filter: drop-shadow(0 6px 18px rgba(0,0,0,.35)); }
.hero__inner--center h1 {
  font-size: clamp(2.5rem, 1rem + 6vw, 6.2rem); line-height: 0.95;
  max-width: 18ch; text-shadow: 0 2px 24px rgba(0,0,0,.5), 0 1px 4px rgba(0,0,0,.4);
}
.hero__inner--center .hero__link { text-shadow: 0 1px 12px rgba(0,0,0,.6), 0 1px 3px rgba(0,0,0,.5); }
.hero__inner--center .hero__eyebrow { margin-bottom: 0; margin-top: 1.6rem; }
.hero__inner--center .hero__eyebrow::after {
  content: ""; width: 1.8em; height: 1px; background: var(--gold); opacity: 0.8;
}
.hero__inner--center .hero__actions { justify-content: center; margin-top: clamp(0.4rem, 1vw, 0.85rem); gap: clamp(1.5rem, 4vw, 2.75rem); }
.hero > .hero__scroll {
  position: absolute; left: 50%; bottom: clamp(1.5rem, 4vw, 2.75rem); z-index: 2;
  transform: translateX(-50%); margin-top: 0;
}

/* Text-only hero buttons — the letters are the button, no box */
.hero__link {
  position: relative; font-family: var(--body); font-weight: 400;
  font-size: clamp(0.9rem, 0.86rem + 0.2vw, 1.02rem); letter-spacing: 0.06em;
  color: var(--bone); display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.35rem 0.15rem; transition: color 0.25s var(--ease);
}
.hero__link::after {
  content: ""; position: absolute; left: 0.15rem; right: 0.15rem; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: center;
  transition: transform 0.32s var(--ease);
}
.hero__link:hover { color: var(--gold-soft); }
.hero__link:hover::after { transform: scaleX(1); }
.hero__link .arw { transition: transform 0.25s var(--ease); }
.hero__link:hover .arw { transform: translateX(4px); }
.hero__link--primary { color: var(--gold-soft); }
.hero__link--primary::after { transform: scaleX(1); }

/* Patrons — affiliation logos, subtle and white, along the hero foot */
.hero__patrons {
  position: absolute; left: 0; right: 0; bottom: clamp(0.5rem, 1.6vw, 1.1rem); z-index: 2;
  margin-inline: auto;
  width: calc(100% - 2 * var(--gutter));
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(2.4rem, 5.5vw, 5.5rem);
}
/* Harp logos (DFAT, Embassy) sized by HEIGHT so the harps match; longer text just runs wider */
.hero__patrons img {
  height: clamp(38px, 4.3vw, 54px); width: auto;
  object-fit: contain; opacity: 0.82;
  transition: opacity 0.25s var(--ease);
}
.hero__patrons img:hover { opacity: 1; }
/* GAA is a wide wordmark — size it smaller so its bold text matches the harp lockups */
.hero__patrons img[src*="gaa"] { height: auto; width: clamp(150px, 15vw, 205px); }
/* Mobile: hide the patrons row entirely */
@media (max-width: 768px) {
  .hero__patrons { display: none; }
}

/* Maker credit — Fusco Studio, under the address block */
.footer__by { margin-top: 1.6rem; display: flex; flex-direction: column; align-items: flex-start; gap: 0.55rem; }
.footer__by-label { font-family: var(--body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.footer__by img { height: 15px; width: auto; opacity: 0.7; transition: opacity 0.25s var(--ease); }
.footer__by:hover img { opacity: 1; }
.hero h1 {
  font-size: var(--fs-mega);
  max-width: 15ch;
  text-wrap: balance;
}
.hero h1 .thin { color: var(--paper-60); font-style: italic; }
.hero__sub {
  margin-top: 1.8rem; max-width: 46ch;
  color: var(--paper-60); font-size: var(--fs-lead); line-height: 1.5;
}
.hero__sub .en { display: block; margin-top: 0.5rem; color: var(--gold-soft); font-style: italic; }
.hero__actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll {
  margin-top: 3.2rem; display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; color: var(--paper-40);
  text-transform: uppercase;
}
.hero__scroll .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

/* image slot — clearly art-directed placeholder for the client's real photos */
.imgslot {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background:
    repeating-linear-gradient(135deg, rgba(198,161,91,.05) 0 14px, transparent 14px 28px),
    linear-gradient(150deg, var(--navy-700), var(--navy-900));
  border: 1px solid var(--line-navy);
  display: grid; place-items: center;
  min-height: 240px; color: var(--paper-40);
}
.imgslot__tag {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  text-align: center; padding: 1rem 1.4rem; max-width: 30ch; line-height: 1.5;
}
.imgslot__tag b { color: var(--gold-soft); display: block; margin-bottom: 0.4em; letter-spacing: 0.16em; }
.imgslot.on-bone { background:
    repeating-linear-gradient(135deg, rgba(11,16,32,.04) 0 14px, transparent 14px 28px),
    linear-gradient(150deg, var(--bone-200), #ded6c4);
  border-color: var(--line-ink); color: var(--ink-60); }
.imgslot.on-bone .imgslot__tag b { color: var(--shamrock-600); }
/* Real photo fills a placeholder box with no layout change (honest edge kept) */
.imgslot > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Archival document — a founding paper mounted on navy */
.archdoc { margin: 0; display: grid; justify-items: center; text-align: center; }
.archdoc__frame {
  max-width: 760px; width: 100%; border-radius: 4px; overflow: hidden;
  border: 1px solid var(--line-navy);
  padding: clamp(0.7rem, 2vw, 1.4rem); background: #efe8d6;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.7), inset 0 0 0 1px rgba(11,16,32,.06);
}
.archdoc__frame img { display: block; width: 100%; height: auto; border-radius: 2px; }
.archdoc__cap {
  margin-top: 1.4rem; max-width: 56ch; color: var(--paper-60);
  font-size: 0.95rem; line-height: 1.6;
}
.archdoc__cap .score { display: block; color: var(--gold-soft); margin-bottom: 0.5rem; }
.archdoc__cap b { color: var(--bone); font-weight: 600; }

/* =====================================================================
   MANIFESTO — two hemispheres
   ===================================================================== */
.hemi { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
@media (min-width: 900px) { .hemi { grid-template-columns: 1.1fr 0.9fr; } }
.hemi__lead h2 { margin-bottom: 1.4rem; text-wrap: balance; }
.hemi__lead p + p { margin-top: 1.1rem; }
.hemi__lead .drop::first-letter {
  font-family: var(--display); font-size: 3.4em; line-height: 0.7; float: left;
  padding: 0.06em 0.14em 0 0; color: var(--orange);
}
.hemi__aside { display: grid; gap: 1.2rem; }
.hemi__map { aspect-ratio: 4/5; }

/* =====================================================================
   STATS BAND — scoreline signature
   ===================================================================== */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line-navy); border: 1px solid var(--line-navy); }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--navy); padding: clamp(1.6rem,3vw,2.6rem) clamp(1.2rem,2.5vw,2rem); }
.stat__num { font-family: var(--mono); font-weight: 700; font-size: clamp(2.4rem,5vw,3.6rem); line-height: 1; color: var(--gold); letter-spacing: -0.03em; }
.stat__num .u { color: var(--orange); }
.stat__label { margin-top: 0.8rem; font-size: 0.82rem; color: var(--paper-60); line-height: 1.45; }
.stat__label b { color: var(--bone); font-weight: 700; display: block; letter-spacing: 0.02em; }

/* =====================================================================
   SPORTS GRID
   ===================================================================== */
.sports { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
@media (min-width: 640px) { .sports { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1040px) { .sports { grid-template-columns: repeat(4,1fr); } }
.sport {
  position: relative; display: flex; flex-direction: column;
  border: 1px solid var(--line-ink); border-radius: var(--radius); overflow: hidden;
  background: #fff; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.sport:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -30px rgba(11,16,32,.5); }
.sport__img { aspect-ratio: 4/5; min-height: 0; border: 0; border-bottom: 1px solid var(--line-ink); border-radius: 0; }
.sport__body { padding: 1.3rem 1.3rem 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.sport__kicker { font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange-600); }
.sport h3 { font-size: 1.4rem; }
.sport p { font-size: 0.9rem; color: var(--ink-60); line-height: 1.5; }
.sport__meta { margin-top: auto; padding-top: 0.9rem; display: flex; align-items: center; gap: 0.5rem; border-top: 1px solid var(--line-ink); font-size: 0.78rem; color: var(--ink-60); }
.sport__meta .score { color: var(--shamrock-600); font-size: 0.9rem; }
.sport.is-flag { outline: 2px solid var(--shamrock); outline-offset: -2px; }
.sport__flag { position: absolute; top: 0; right: 0; background: var(--shamrock); color: #fff; font-family: var(--mono); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.4em 0.8em; }

/* =====================================================================
   SPLIT / FEATURE
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } .split.rev .split__media { order: -1; } }
.split__media { align-self: stretch; }
.split__media .imgslot { height: 100%; min-height: 360px; }
.split__body h2 { margin-bottom: 1.2rem; }
.split__body .lead { color: inherit; opacity: 0.86; margin-bottom: 1.6rem; }

/* timeline */
.timeline { display: grid; gap: 0; }
.tl {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1rem,3vw,2.4rem);
  padding: 1.6rem 0; border-top: 1px solid var(--line-navy);
}
.tl:last-child { border-bottom: 1px solid var(--line-navy); }
.tl__year { font-family: var(--mono); font-weight: 700; font-size: clamp(1.4rem,3vw,2rem); color: var(--orange); line-height: 1; letter-spacing: -0.02em; }
.tl__body h3 { font-size: 1.3rem; margin-bottom: 0.4rem; color: var(--bone); }
.tl__body p { color: var(--paper-60); font-size: 0.94rem; max-width: 56ch; }
.section--bone .tl { border-color: var(--line-ink); }
.section--bone .tl__body h3 { color: var(--ink); }
.section--bone .tl__body p { color: var(--ink-60); }

/* =====================================================================
   CTA BANNER
   ===================================================================== */
.cta {
  text-align: center; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--shamrock), var(--shamrock-600));
}
.cta::after { content:""; position:absolute; inset:0; background: radial-gradient(80% 120% at 50% -20%, rgba(255,255,255,.14), transparent 60%); pointer-events:none; }
.cta__inner { position: relative; z-index: 1; }
.cta h2 { max-width: 20ch; margin: 0 auto 1.4rem; text-wrap: balance; }
.cta .lead { max-width: 52ch; margin: 0 auto 2rem; opacity: .9; }
.cta .btn { --bg: var(--navy); --bd: var(--gold); }
.cta .btn:hover { --bg: var(--navy-900); }
.cta .btn--ghost { --fg: #fff; --bd: rgba(255,255,255,.55); }
.cta .btn--ghost:hover { --bg: rgba(255,255,255,.12); --bd: #fff; }

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer { background: var(--navy-900); color: var(--paper-60); padding-block: clamp(3.5rem,7vw,6rem) 2rem; border-top: 1px solid var(--line-navy); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 2.6rem; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer__brand { display: flex; gap: 0.9rem; align-items: flex-start; }
.footer__brand .nav__crest { width: 46px; }
.footer__brand h3 { color: var(--bone); font-size: 1.3rem; }
.footer__welcome { margin-top: 1rem; max-width: 40ch; font-size: 0.92rem; }
.footer__welcome .en { display: block; margin-top: 0.6rem; color: var(--gold-soft); font-style: italic; }
.footer h4 { font-family: var(--body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer__col a { display: block; padding: 0.28rem 0; color: var(--paper-60); font-size: 0.92rem; transition: color .25s var(--ease); }
.footer__col a:hover { color: var(--bone); }
.footer__addr { font-size: 0.92rem; line-height: 1.7; }
.footer__addr a { color: var(--gold-soft); }
.footer__social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer__social a { display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid var(--line-navy); border-radius: 50%; color: var(--paper-60); transition: all .3s var(--ease); }
.footer__social a:hover { color: var(--navy); background: var(--gold); border-color: var(--gold); }
.footer__social svg { width: 17px; height: 17px; }
.footer__affil { margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line-navy); display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem 2.2rem; }
.footer__affil span { font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper-40); }
.footer__affil .aff { font-size: 0.8rem; color: var(--paper-60); letter-spacing: 0.02em; }
.footer__base { margin-top: 2.4rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.06em; color: var(--paper-40); }

/* =====================================================================
   PAGE HEADER (inner pages)
   ===================================================================== */
.pagehead {
  position: relative; padding: clamp(9rem,16vw,12rem) 0 clamp(3rem,6vw,5rem);
  background:
    radial-gradient(100% 120% at 85% 0%, rgba(27,122,70,.22), transparent 55%),
    linear-gradient(180deg, var(--navy-900), var(--navy));
  overflow: hidden;
}
.pagehead::before { content:""; position:absolute; inset:0; z-index:1;
  background-image: linear-gradient(to right, rgba(241,236,225,.035) 1px, transparent 1px), linear-gradient(to bottom, rgba(241,236,225,.035) 1px, transparent 1px);
  background-size: 74px 74px; mask-image: radial-gradient(120% 100% at 70% 0%, #000 20%, transparent 80%); }
/* Photography layer for inner-page headers — set `--head-photo: url('...')`. */
.pagehead__photo { position:absolute; inset:0; z-index:0; background-image: var(--head-photo, none); background-size:cover; background-position:center; }
.pagehead__photo::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, rgba(10,19,48,.94), rgba(10,19,48,.55) 62%, rgba(10,19,48,.72)); }
.pagehead__inner { position: relative; z-index: 2; }

/* Photo hero (Historia, Deportes) — neutral, non-blue fade so the picture reads in full colour */
.pagehead--photo .pagehead__photo { background-position: center 36%; filter: saturate(1) contrast(1.02); }
.pagehead--photo .pagehead__photo::after {
  background:
    linear-gradient(90deg, rgba(10,13,20,.74) 0%, rgba(10,13,20,.30) 46%, rgba(10,13,20,.02) 78%),
    linear-gradient(0deg, rgba(10,13,20,.5), transparent 42%),
    linear-gradient(180deg, rgba(10,13,20,.42), transparent 16%);
}
.pagehead--photo h1, .pagehead--photo .lead { text-shadow: 0 2px 20px rgba(0,0,0,.5), 0 1px 4px rgba(0,0,0,.45); }
.pagehead--photo .crumb { text-shadow: 0 1px 6px rgba(0,0,0,.6); }
/* El Club clubhouse — bias crop down to the building (bright sky sits up top) */
.pagehead--elclub .pagehead__photo { background-position: center 68%; }
.crumb { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--paper-40); margin-bottom: 1.4rem; }
.crumb a { color: var(--paper-60); }
.crumb a:hover { color: var(--gold-soft); }
.pagehead h1 { font-size: var(--fs-h1); max-width: 16ch; text-wrap: balance; }
.pagehead .lead { margin-top: 1.4rem; max-width: 52ch; color: var(--paper-60); }

/* prose */
.prose { max-width: 68ch; }
.prose p + p { margin-top: 1.1rem; }
.prose h2 { margin: 2.6rem 0 1rem; }
.prose h3 { margin: 2rem 0 0.6rem; }
.prose a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--line-ink); }
.section--navy .prose a, .section--deep .prose a { color: var(--gold-soft); }

/* cards grid (institucional, sedes) */
.cards { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
@media (min-width: 700px){ .cards.two { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px){ .cards.three { grid-template-columns: repeat(3,1fr); } }
.card { border: 1px solid var(--line-navy); border-radius: var(--radius); padding: clamp(1.4rem,3vw,2rem); background: var(--navy-700); }
.section--bone .card { background: #fff; border-color: var(--line-ink); }
.card h3 { font-size: 1.4rem; margin-bottom: 0.7rem; }
.card p { color: var(--paper-60); font-size: 0.94rem; }
.section--bone .card p { color: var(--ink-60); }
.card .score { color: var(--orange); }

/* contact */
.contact { display: grid; grid-template-columns: 1fr; gap: clamp(2rem,5vw,3.5rem); }
@media (min-width: 900px){ .contact { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 0.5rem; margin-bottom: 1.2rem; }
.field label { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.9em 1em; font: inherit; font-size: 0.95rem;
  background: var(--navy-900); border: 1px solid var(--line-navy); border-radius: var(--radius); color: var(--bone);
  transition: border-color .25s var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); outline: none; }
.field input::placeholder, .field textarea::placeholder { color: var(--paper-40); }

/* info list */
.info { display: grid; gap: 1.6rem; }
.info__row { display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: start; padding-bottom: 1.6rem; border-bottom: 1px solid var(--line-navy); }
.info__row:last-child { border-bottom: 0; }
.info__ic { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border: 1px solid var(--line-navy); border-radius: 50%; color: var(--gold); }
.info__ic svg { width: 18px; height: 18px; }
.info__row h4, .info__row h3 { font-family: var(--body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.35rem; }
.info__row p, .info__row a { font-size: 0.98rem; color: var(--bone); }
.info__row a:hover { color: var(--gold-soft); }

/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
/* Progressive enhancement: only hide reveals when JS is confirmed active
   (html.js). No-JS or a JS failure leaves all content visible. */
html.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
html.js [data-reveal].is-in { opacity: 1; transform: none; }
html.js [data-reveal][data-delay="1"] { transition-delay: .08s; }
html.js [data-reveal][data-delay="2"] { transition-delay: .16s; }
html.js [data-reveal][data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) { html.js [data-reveal] { opacity: 1; transform: none; } }

/* section eyebrow header block */
.shead { margin-bottom: clamp(2rem,4vw,3.4rem); max-width: 62ch; }
.shead .eyebrow { margin-bottom: 1.2rem; }
.shead h2 { text-wrap: balance; }
.shead p { margin-top: 1rem; color: inherit; opacity: 0.72; }

.hr-gold { height: 1px; background: var(--line-navy); border: 0; margin-block: 0; }

/* =====================================================================
   TWO ISLANDS — additions for the approved M0–M7 homepage & new IA
   ===================================================================== */

/* M3 — La Comunidad: the warm golden "day" band (pampa light) */
.section--warm {
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(216,98,42,.10), transparent 55%),
    linear-gradient(160deg, #F3ECDD, #EAD9BC);
  color: var(--ink);
}
.section--warm .eyebrow { color: var(--orange-600); }
.section--warm .eyebrow::before { background: var(--orange-600); }

/* la línea de encuentro — a meaning-bearing seam between movements */
.seam { height: 1px; border: 0; background: var(--line-navy); }
.section--bone + .section--bone .seam, .seam.on-bone { background: var(--line-ink); }

/* ES · EN language switch (English is a future localización — visual presence now) */
.nav__lang {
  background: none; border: 1px solid var(--line-navy); color: var(--paper-60);
  font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.12em;
  padding: 0.5em 0.7em; border-radius: var(--radius);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.nav__lang b { color: var(--bone); }
.nav__lang:hover:not([disabled]) { border-color: var(--gold); color: var(--bone); }
.nav__lang[disabled] { cursor: default; opacity: .85; }
.nav.is-scrolled .nav__lang { border-color: var(--line-navy); }

/* M5 — Esta Semana: current fixtures/events, brisk fast-lane cadence */
.fixtures { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line-ink); border: 1px solid var(--line-ink); border-radius: var(--radius); overflow: hidden; }
@media (min-width: 720px){ .fixtures { grid-template-columns: repeat(3,1fr); } }
.fx { background: #fff; padding: 1.3rem 1.4rem; display: flex; flex-direction: column; gap: 0.4rem; }
.fx__date { font-family: var(--mono); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.04em; color: var(--orange-600); }
.fx h3 { font-size: 1.15rem; color: var(--ink); }
.fx p { font-size: 0.88rem; color: var(--ink-60); }
.section--deep .fixtures { background: var(--line-navy); border-color: var(--line-navy); }
.section--deep .fx { background: var(--navy-700); }
.section--deep .fx h3 { color: var(--bone); }
.section--deep .fx p { color: var(--paper-60); }

/* Sumate — the two paths */
.paths { display: grid; grid-template-columns: 1fr; gap: 1.4rem; }
@media (min-width: 760px){ .paths { grid-template-columns: 1fr 1fr; } }
.path { border: 1px solid var(--line-navy); border-radius: var(--radius); padding: clamp(1.6rem,3vw,2.4rem); background: var(--navy-700); display: flex; flex-direction: column; gap: 0.7rem; }
.path h2 { font-size: 1.6rem; line-height: 1.1; }
.path p { color: var(--paper-60); font-size: 0.95rem; flex: 1; }

/* subtle full-bleed community media */
.band-media { position: relative; min-height: clamp(360px, 52vh, 560px); display: grid; align-items: end; }
.band-media .imgslot { position: absolute; inset: 0; border-radius: 0; border: 0; }
.band-media__inner { position: relative; z-index: 2; padding: clamp(2rem,5vw,4rem); }

/* utilities */
.center { text-align: center; }
.mt-s { margin-top: 1rem; } .mt-m { margin-top: 2rem; } .mt-l { margin-top: 3rem; }
.flex-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* =====================================================================
   RUGBY — Historia del Rugby (timeline experience). Scoped; page-only.
   ===================================================================== */
.visually-hidden { position:absolute!important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }

.pagehead--rugby .pagehead__photo { background-position: center 32%; }

/* Intro */
.rug-intro { text-align:center; padding-bottom: clamp(2rem,5vw,3.5rem); }
.rug-intro__lead { font-family:var(--display); font-size:clamp(1.5rem,1rem + 2.4vw,2.5rem); line-height:1.34; color:var(--bone); margin-inline:auto; text-wrap:balance; }
.rug-intro__cue { margin-top:2.2rem; font-family:var(--mono); font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:var(--paper-40); display:inline-flex; align-items:center; gap:.6rem; }
.rug-intro__dot { width:7px; height:7px; border-radius:50%; background:var(--shamrock); animation:pulse 2.4s var(--ease) infinite; }

/* Timeline shell — editorial, mostly typographic */
.rugline { padding-top: clamp(1rem,3vw,2rem); }
.rugline__inner { position:relative; max-width:940px; margin-inline:auto; }
.rugline__line { position:absolute; left:50%; top:.4rem; bottom:.4rem; width:1px; transform:translateX(-50%); background:var(--line-navy); overflow:hidden; }
.rugline__fill { display:block; width:100%; height:0; background:linear-gradient(180deg, var(--shamrock), var(--gold)); }
.rugline__note { text-align:center; margin-top:clamp(2.5rem,6vw,4rem); font-family:var(--mono); font-size:.64rem; letter-spacing:.1em; text-transform:uppercase; color:var(--paper-40); }

/* Item — two columns, content alternates side; the line is the spine */
.rt { position:relative; display:grid; grid-template-columns:1fr 1fr; column-gap:clamp(2.5rem,7vw,6rem);
  margin-block: clamp(2.75rem,6.5vw,5.5rem); }
.rt__side { grid-column:2; }
.rt:nth-of-type(even) .rt__side { grid-column:1; text-align:right; }
.rt__dot { position:absolute; left:50%; top:.55rem; transform:translate(-50%,0); width:11px; height:11px; border-radius:50%;
  background:var(--navy-900); border:1px solid var(--gold); z-index:2; }
.rt__label { display:block; font-family:var(--body); font-weight:700; font-size:.68rem; letter-spacing:.2em; text-transform:uppercase; color:var(--gold-soft); margin-bottom:.7rem; }
.rt__year { font-family:var(--display); font-size:clamp(2.4rem,1.4rem + 3.2vw,4.2rem); line-height:.9; color:var(--bone); }
.rt__title { font-family:var(--display); font-size:clamp(1.25rem,1rem + 1.1vw,1.75rem); color:var(--bone); margin-top:.55rem; text-wrap:balance; }
.rt__text { margin-top:.7rem; color:var(--paper-60); max-width:38ch; line-height:1.62; }
.rt:nth-of-type(even) .rt__text { margin-left:auto; }
.rt__text b { color:var(--bone); font-weight:600; }
.rt__score { font-family:var(--mono); font-weight:700; color:var(--gold-soft); white-space:nowrap; }

/* Occasional small archival image — a lateral accent, never the protagonist */
.rt__float { margin:1.3rem 0 0; max-width:230px; }
.rt:nth-of-type(even) .rt__float { margin-left:auto; }
.rt__float img { width:100%; aspect-ratio:4/3; object-fit:cover; border-radius:var(--radius); border:1px solid var(--line-navy);
  transition:transform .5s var(--ease); }
.rt__float:hover img { transform:scale(1.015); }
.rt__float figcaption { margin-top:.5rem; font-family:var(--mono); font-size:.6rem; letter-spacing:.08em; text-transform:uppercase; color:var(--paper-40); }

/* Marker reveal */
html.js .rt[data-reveal] .rt__dot { transform:translate(-50%,0) scale(0); transition:transform .5s var(--ease) .12s; }
html.js .rt[data-reveal].is-in .rt__dot { transform:translate(-50%,0) scale(1); }

/* Champion moments (1966, 2023) — centred, gold, typographic */
.rt.rt--champ { grid-template-columns:1fr; justify-items:center; text-align:center; margin-block: clamp(3.5rem,8vw,7rem); }
.rt.rt--champ .rt__side { grid-column:1; text-align:center; max-width:44ch; }
.rt.rt--champ .rt__label { color:var(--gold-soft); }
.rt.rt--champ .rt__year { color:var(--gold-soft); font-size:clamp(3rem,2rem + 4.5vw,5.5rem); }
.rt.rt--champ .rt__text { margin-inline:auto; max-width:46ch; }
.rt.rt--champ .rt__dot { width:16px; height:16px; background:var(--gold); border-color:var(--gold); box-shadow:0 0 16px rgba(198,161,91,.55); }
.rt__big { font-family:var(--mono); font-weight:700; font-size:clamp(3rem,2rem + 6vw,6rem); color:var(--gold-soft); line-height:1; margin:.5rem 0 .1rem; }
.rt__big span { color:var(--paper-40); margin:0 .06em; }

/* Mobile — one clean column: año / título / texto (line to the left) */
@media (max-width:820px) {
  .rugline__inner { padding-left:4px; }
  .rugline__line { left:13px; transform:none; }
  .rt, .rt:nth-of-type(even), .rt.rt--champ {
    grid-template-columns:1fr; column-gap:0; padding-left:40px; margin-block:2.6rem; justify-items:start; text-align:left; }
  .rt__side, .rt:nth-of-type(even) .rt__side, .rt.rt--champ .rt__side { grid-column:1; text-align:left; max-width:none; }
  .rt__dot, .rt.rt--champ .rt__dot { left:13px; }
  .rt__text, .rt:nth-of-type(even) .rt__text, .rt.rt--champ .rt__text { max-width:none; margin-left:0; margin-inline:0; }
  .rt__float, .rt:nth-of-type(even) .rt__float { margin-left:0; max-width:250px; }
  .rt__big { text-align:left; }
}

/* =====================================================================
   DEPORTES — cinematic hero + editorial sports gallery. Page-scoped.
   ===================================================================== */
.pagehead--cine { min-height:min(88vh,920px); display:flex; flex-direction:column; justify-content:flex-end;
  padding-block: clamp(7rem,16vh,11rem) clamp(3.5rem,8vh,5.5rem); }
.pagehead--cine .pagehead__photo { background-position:center 32%; }
.pagehead--cine .pagehead__photo::after {
  background: linear-gradient(0deg, rgba(10,19,48,.9) 3%, rgba(10,19,48,.26) 48%, rgba(10,19,48,.5) 100%); }
.pagehead--cine .pagehead__inner { position:relative; z-index:2; }
.pagehead--cine__title { font-size:clamp(2.6rem,1.4rem + 5vw,6rem); line-height:1; max-width:18ch; margin-top:.7rem; text-wrap:balance; }
.pagehead--cine .lead { margin-top:1.2rem; max-width:44ch; color:var(--paper-60); }
.pagehead__cue { position:absolute; left:50%; bottom:clamp(1.1rem,3vh,2rem); transform:translateX(-50%); z-index:2;
  display:inline-flex; align-items:center; gap:.6rem; font-family:var(--mono); font-size:.66rem; letter-spacing:.14em;
  text-transform:uppercase; color:var(--paper-40); white-space:nowrap; }
.pagehead__cue .dot { width:7px; height:7px; border-radius:50%; background:var(--orange); animation:pulse 2.4s var(--ease) infinite; }

/* Gallery */
.sportgal { display:grid; grid-template-columns:repeat(2,1fr); gap:clamp(.9rem,1.6vw,1.4rem); margin-top:clamp(2rem,4vw,3.2rem); }
.sportile { position:relative; display:block; overflow:hidden; border-radius:var(--radius); aspect-ratio:1/1;
  border:1px solid var(--line-navy); background:var(--navy-900); isolation:isolate; transition:opacity .4s var(--ease); }
.sportile__img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0;
  transition:transform .7s var(--ease), filter .6s var(--ease); filter:saturate(.96); }
.sportile__scrim { position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(0deg, rgba(8,13,26,.9) 6%, rgba(8,13,26,.42) 46%, rgba(8,13,26,.12) 100%);
  transition:opacity .5s var(--ease); }
.sportile__body { position:absolute; inset:0; z-index:2; display:flex; flex-direction:column; justify-content:space-between;
  padding:clamp(1.3rem,2.4vw,2.1rem); }
.sportile__num { font-family:var(--mono); font-weight:700; font-size:.72rem; letter-spacing:.22em; color:var(--gold-soft); }
.sportile__foot { display:block; }
.sportile__name { display:block; font-family:var(--display); font-size:clamp(1.9rem,1.2rem + 2vw,3rem); line-height:1;
  color:var(--bone); transition:transform .4s var(--ease); }
.sportile__phrase { display:block; margin-top:.7rem; color:var(--paper-60); max-width:34ch; line-height:1.5; }
.sportile__facts { display:block; margin-top:.9rem; font-family:var(--mono); font-size:.64rem; letter-spacing:.06em; color:var(--paper-40); }
.sportile__cta { display:inline-flex; align-items:center; gap:.5rem; margin-top:1.1rem; font-weight:700; font-size:.76rem;
  letter-spacing:.08em; text-transform:uppercase; color:var(--bone); opacity:.85; transition:opacity .3s var(--ease); }
.sportile__cta .arw { transition:transform .3s var(--ease); }

/* Hover / focus — subtle, premium; siblings dim */
.sportile:hover .sportile__img, .sportile:focus-visible .sportile__img { transform:scale(1.05); filter:saturate(1.03); }
.sportile:hover .sportile__scrim, .sportile:focus-visible .sportile__scrim { opacity:.9; }
.sportile:hover .sportile__name, .sportile:focus-visible .sportile__name { transform:translateY(-3px); }
.sportile:hover .sportile__cta, .sportile:focus-visible .sportile__cta { opacity:1; }
.sportile:hover .sportile__cta .arw, .sportile:focus-visible .sportile__cta .arw { transform:translateX(5px); }
.sportgal:hover .sportile:not(:hover) { opacity:.6; }
.sportgal:focus-within .sportile:not(:focus-within) { opacity:.6; }

/* Touch: no hover dependence */
@media (hover:none) { .sportgal:hover .sportile:not(:hover) { opacity:1; } }

@media (max-width:640px) {
  .sportgal { grid-template-columns:1fr; }
  .sportile { aspect-ratio:4/5; }
}

/* =====================================================================
   HOME — "Un club escrito en el tiempo" timeline + cinematic close.
   Editorial milestones; Irish tricolour as a whisper, not a flag.
   ===================================================================== */
.shead--center { text-align:center; }
.shead--center .eyebrow { justify-content:center; }

.htl-sec { overflow:hidden; }
.htl {
  --rail: 4.8rem;
  list-style:none; margin:clamp(3rem,7vw,5.5rem) 0 0; padding:0;
  position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:clamp(1rem,3vw,2.5rem);
}
.htl__line { position:absolute; left:12.5%; right:12.5%; top:calc(var(--rail) + 1.3rem + 5px); height:1px;
  background:rgba(241,236,225,.14); overflow:hidden; z-index:0; }
.htl__line-fill { display:block; height:100%; width:0;
  background:linear-gradient(90deg, var(--shamrock) 0%, #f4f1ea 50%, var(--orange) 100%);
  transition:width 1.2s var(--ease); }
.htl.htl--in .htl__line-fill { width:100%; }

.htl__item { position:relative; display:flex; flex-direction:column; align-items:center; text-align:center; }
.htl__num { font-family:var(--mono); font-weight:700; line-height:1; color:var(--bone);
  font-size:clamp(2.4rem, 1.4rem + 3vw, 4.4rem); height:var(--rail); display:flex; align-items:flex-end;
  transition:transform .35s var(--ease), color .35s var(--ease); }
.htl__mark { margin-top:1.3rem; width:11px; height:11px; border-radius:50%; background:var(--navy-900);
  border:1px solid var(--gold); position:relative; z-index:2;
  transition:transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease); }
.htl__label { margin-top:1.4rem; color:var(--paper-60); max-width:24ch; line-height:1.55; font-size:.95rem; }
.htl__foot { text-align:center; margin-top:clamp(2.5rem,6vw,4rem); }

/* Hover — one milestone lights up */
.htl__item:hover .htl__num, .htl__item:focus-within .htl__num { transform:translateY(-4px); color:var(--gold-soft); }
.htl__item:hover .htl__mark, .htl__item:focus-within .htl__mark { transform:scale(1.4); border-color:var(--shamrock); box-shadow:0 0 14px rgba(27,122,70,.55); }

/* Mobile — vertical timeline, numbers keep their presence */
@media (max-width:720px) {
  .htl { grid-template-columns:1fr; gap:0; margin-top:2.5rem; }
  .htl__line { left:14px; right:auto; top:.5rem; bottom:.5rem; width:1px; height:auto; }
  .htl__line-fill { width:100%; height:0; transition:height 1.2s var(--ease); }
  .htl.htl--in .htl__line-fill { height:100%; }
  .htl__item { flex-direction:column; align-items:flex-start; text-align:left; padding:1.4rem 0 1.6rem 46px; }
  .htl__num { height:auto; }
  .htl__mark { position:absolute; left:14px; top:1.9rem; margin:0; transform:translateX(-50%); }
  .htl__item:hover .htl__mark, .htl__item:focus-within .htl__mark { transform:translateX(-50%) scale(1.4); }
  .htl__label { margin-top:.7rem; max-width:38ch; }
  .htl__foot { text-align:left; }
}

/* Cinematic closing */
.close { background:var(--navy-900); text-align:center; border-top:1px solid var(--line-navy);
  border-bottom:1px solid var(--line-navy); }
.close__tri { display:block; width:66px; height:3px; margin:0 auto clamp(1.4rem,3vw,2rem); border-radius:2px;
  background:linear-gradient(90deg, var(--shamrock) 0 33.3%, #f4f1ea 33.3% 66.6%, var(--orange) 66.6% 100%); }
.close__crest { width:52px; height:auto; margin:0 auto clamp(1.2rem,2.5vw,1.8rem); opacity:.95;
  filter:drop-shadow(0 6px 18px rgba(0,0,0,.35)); }
.close__title { font-size:clamp(2.2rem, 1.3rem + 4.4vw, 4.8rem); line-height:1.02; text-wrap:balance;
  max-width:20ch; margin:.9rem auto clamp(1.8rem,4vw,2.6rem); }

/* =====================================================================
   HISTORIA — chaptered editorial history-line
   Archival plates, folded milestone dates, Irish tricolour as a whisper.
   ===================================================================== */
.htl__cue { text-align:center; margin-top:clamp(2.5rem,6vw,4rem);
  font-family:var(--mono); font-size:.62rem; letter-spacing:.22em; text-transform:uppercase; color:var(--paper-40); }
.htl__cue span { display:inline-block; margin-top:.5rem; font-size:1rem; }

/* — chapter shell — */
.chap__grid { display:grid; grid-template-columns:1fr; gap:clamp(2.2rem,5vw,4.5rem); align-items:center; }
@media (min-width:920px) {
  .chap__grid { grid-template-columns:1.02fr 0.98fr; }
  .chap--flip .chap__text { order:2; }
  .chap--flip .chap__media { order:1; }
}
.chap__kicker { display:flex; align-items:baseline; gap:1rem; }
.chap__index { font-family:var(--mono); font-weight:700; line-height:1;
  font-size:clamp(2.2rem,1.4rem + 2.4vw,3.4rem); color:var(--gold); opacity:.55; }
.chap__era { font-family:var(--mono); font-size:.66rem; letter-spacing:.22em; text-transform:uppercase; color:var(--gold-soft); }
.chap__title { font-size:clamp(1.9rem,1.3rem + 2.2vw,3rem); line-height:1.04; margin-top:1.1rem; text-wrap:balance; color:var(--bone); }
.chap__rule { display:block; width:64px; height:2px; border-radius:2px; margin:1.3rem 0 1.6rem;
  background:linear-gradient(90deg, var(--shamrock) 0 33.3%, #f4f1ea 33.3% 66.6%, var(--orange) 66.6% 100%); }
.chap__prose p { color:var(--paper-60); line-height:1.7; max-width:56ch; }
.chap__prose p + p { margin-top:1.05rem; }
.chap__prose b { color:var(--bone); font-weight:600; }

/* folded milestone dates */
.chap__dates { list-style:none; margin:clamp(1.8rem,3vw,2.4rem) 0 0; padding:0; display:grid; gap:0; max-width:56ch; }
.cd { display:grid; grid-template-columns:5rem 1fr; gap:1.2rem; align-items:baseline;
  padding:.95rem 0; border-top:1px solid var(--line-navy); }
.cd:last-child { border-bottom:1px solid var(--line-navy); }
.cd__y { font-family:var(--mono); font-weight:700; font-size:1.02rem; color:var(--gold-soft); letter-spacing:-.01em; }
.cd__t { color:var(--paper-60); line-height:1.5; font-size:.95rem; }
.cd__t b { color:var(--bone); font-weight:600; }

/* — archival plate — */
.plate { position:relative; margin:0; }
.plate__frame { position:relative; border:1px solid var(--line-navy); border-radius:var(--radius); overflow:hidden; }
.plate__frame::after { content:""; position:absolute; inset:0; pointer-events:none;
  box-shadow:inset 0 0 0 1px rgba(198,161,91,.10); border-radius:var(--radius); }
.plate img { display:block; width:100%; aspect-ratio:4/5; object-fit:cover;
  filter:grayscale(.28) sepia(.16) contrast(1.03) brightness(.98);
  transition:filter .6s var(--ease), transform 1.1s var(--ease); }
.plate:hover img { filter:grayscale(.06) sepia(.04) contrast(1.03); transform:scale(1.015); }
.plate figcaption { margin-top:.75rem; font-family:var(--mono); font-size:.62rem; letter-spacing:.1em;
  text-transform:uppercase; color:var(--paper-40); line-height:1.4; }
.plate--tri::before { content:""; position:absolute; top:-9px; left:-9px; width:46px; height:2px; z-index:2;
  background:linear-gradient(90deg, var(--shamrock) 0 33.3%, #f4f1ea 33.3% 66.6%, var(--orange) 66.6% 100%); }

/* reveal glide for the plate image */
html.js .chap__media[data-reveal] .plate img { transform:scale(1.06); }
html.js .chap__media[data-reveal].is-in .plate img { transform:scale(1); }

/* — light-section (bone) overrides — */
.section--bone .chap__title { color:var(--ink); }
.section--bone .chap__prose p { color:var(--ink-60); }
.section--bone .chap__prose b { color:var(--ink); }
.section--bone .chap__index { color:var(--shamrock-600); opacity:.7; }
.section--bone .chap__era { color:var(--shamrock-600); }
.section--bone .cd { border-color:var(--line-ink); }
.section--bone .cd:last-child { border-color:var(--line-ink); }
.section--bone .cd__y { color:var(--orange-600); }
.section--bone .cd__t { color:var(--ink-60); }
.section--bone .cd__t b { color:var(--ink); }
.section--bone .plate__frame { border-color:var(--line-ink); }
.section--bone .plate figcaption { color:var(--ink-60); }
@media (prefers-reduced-motion:reduce) {
  .plate img, html.js .chap__media[data-reveal] .plate img { transition:none; transform:none; }
}

/* — archival document plate — horizontal photo shown COMPLETE (Federación) — */
.plate--doc .plate__frame { background:#efe8d6; padding:clamp(.6rem,1.5vw,1.1rem);
  box-shadow:0 18px 40px -24px rgba(0,0,0,.55); }
.plate--doc img { aspect-ratio:1138/530; width:100%; height:auto; object-fit:contain;
  border-radius:1px; filter:grayscale(.14) sepia(.10) contrast(1.02); }
.plate--doc:hover img { transform:none; filter:grayscale(.02) sepia(.03) contrast(1.02); }
html.js .chap__media[data-reveal] .plate--doc img,
html.js .chap__media[data-reveal].is-in .plate--doc img { transform:none; }
.plate--doc.plate--tri::before { top:-9px; left:-9px; }

/* — archival document plate — VERTICAL (full letter/portrait, no crop) — */
.plate--docv .plate__frame { background:#efe8d6; padding:clamp(.6rem,1.6vw,1.2rem);
  box-shadow:0 20px 44px -26px rgba(0,0,0,.55); }
.plate--docv img { aspect-ratio:1530/2048; width:100%; height:auto; object-fit:contain;
  border-radius:1px; filter:grayscale(.12) sepia(.08) contrast(1.03); }
.plate--docv:hover img { transform:none; filter:grayscale(.02) sepia(.02) contrast(1.03); }
html.js .chap__media[data-reveal] .plate--docv img,
html.js .chap__media[data-reveal].is-in .plate--docv img { transform:none; }

/* — crest emblem — transparent club shield, small & understated (Identidad) — */
.plate--emblem { text-align:center; }
.plate--emblem img { width:auto; max-height:clamp(84px,9vw,118px); aspect-ratio:auto;
  object-fit:contain; margin:0 auto; display:block;
  filter:drop-shadow(0 10px 22px rgba(11,16,32,.16)); transition:transform .5s var(--ease); }
.plate--emblem:hover img { transform:translateY(-3px); filter:drop-shadow(0 14px 26px rgba(11,16,32,.20)); }
html.js .chap__media[data-reveal] .plate--emblem img,
html.js .chap__media[data-reveal].is-in .plate--emblem img { transform:none; }
.plate--emblem figcaption { text-align:center; margin-top:1.15rem; }
/* — escudo a doble tamaño (Historia · 03 La prueba del fuego) — */
.plate--emblem--xl img { max-height:clamp(168px,18vw,236px); }

/* =====================================================================
   EL CLUB — editorial portrait of belonging
   Reuses the chapter/plate system; adds a full-bleed Sunday, a
   generations strip and small warm details. Irish tricolour as a whisper.
   ===================================================================== */

/* animated tricolour rule (El Club only — Historia's .chap__rule stays static) */
html.js .chap__text[data-reveal] .chap__rule--draw { width:0; overflow:hidden; transition:width .9s var(--ease) .25s; }
html.js .chap__text[data-reveal].is-in .chap__rule--draw { width:64px; }

/* — SUNDAYS · full-bleed immersive — */
.sunday { position:relative; min-height:min(84vh,860px); display:flex; align-items:flex-end;
  overflow:hidden; background:var(--navy-900); border-block:1px solid var(--line-navy); }
.sunday__img { position:absolute; inset:0; background-size:cover; background-position:center 42%;
  transform:scale(1.03); }
.sunday__scrim { position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(10,19,48,.24) 0%, rgba(10,19,48,.5) 52%, rgba(10,19,48,.9) 100%); }
.sunday__inner { position:relative; z-index:2; padding-block:clamp(3rem,8vw,6rem); }
.sunday .eyebrow { color:var(--gold-soft); }
.sunday__title { color:var(--bone); font-family:var(--display);
  font-size:clamp(2.5rem,1.4rem + 4.6vw,5.4rem); line-height:1.0; margin-top:.7rem;
  text-wrap:balance; text-shadow:0 2px 24px rgba(0,0,0,.4); }
.sunday__line { display:block; height:2px; width:min(64px,42%); overflow:hidden; margin:1.6rem 0 0;
  background:rgba(241,236,225,.18); }
.sunday__line span { display:block; height:100%; width:0; transition:width 1s var(--ease) .2s;
  background:linear-gradient(90deg, var(--shamrock) 0 33.3%, #f4f1ea 33.3% 66.6%, var(--orange) 66.6% 100%); }
html.js .sunday__line[data-reveal].is-in span { width:100%; }
.sunday__copy { color:rgba(241,236,225,.80); max-width:48ch; margin-top:1.5rem; line-height:1.7; }

/* — GENERATIONS · horizontal archival strip — */
.genstrip { display:grid; grid-auto-flow:column; grid-auto-columns:minmax(220px,290px);
  gap:clamp(1rem,2vw,1.6rem); overflow-x:auto; overscroll-behavior-x:contain;
  scroll-snap-type:x proximity; padding-bottom:1.1rem; margin-top:clamp(2rem,4vw,3rem); }
.genstrip > .plate { scroll-snap-align:start; margin:0; }
.genstrip .plate img { aspect-ratio:4/3; }
.genstrip::-webkit-scrollbar { height:6px; }
.genstrip::-webkit-scrollbar-thumb { background:var(--line-navy); border-radius:3px; }
.section--bone .genstrip::-webkit-scrollbar-thumb { background:var(--line-ink); }

/* — clubhouse duo row — */
.platerow { display:grid; grid-template-columns:1fr; gap:clamp(1rem,2vw,1.5rem);
  margin-top:clamp(1.6rem,3vw,2.4rem); }
@media (min-width:760px) { .platerow--2 { grid-template-columns:1fr 1fr; } }
.platerow .plate img { aspect-ratio:4/3; }

/* — natural-ratio photo plates (no aggressive crop) — */
.plate--wide img { aspect-ratio:3/2; }
.plate--sq img { aspect-ratio:1/1; }

/* — carrusel dentro de un plate — */
.pcar { position:relative; }
.pcar__track { display:flex; width:100%; transition:transform .55s var(--ease); }
.pcar__slide { flex:0 0 100%; width:100%; }
.pcar__nav { position:absolute; top:50%; transform:translateY(-50%); z-index:3;
  width:2.6rem; height:2.6rem; display:grid; place-items:center; cursor:pointer;
  font-size:1.5rem; line-height:1; color:var(--bone);
  background:rgba(10,19,48,.42); border:1px solid rgba(241,236,225,.35);
  border-radius:50%; backdrop-filter:blur(3px);
  opacity:0; transition:opacity .25s var(--ease), background .2s var(--ease); }
.pcar:hover .pcar__nav, .pcar:focus-within .pcar__nav { opacity:1; }
.pcar__nav:hover { background:rgba(10,19,48,.72); }
.pcar__nav--prev { left:.7rem; } .pcar__nav--next { right:.7rem; }
.pcar__dots { position:absolute; left:0; right:0; bottom:.7rem; z-index:3;
  display:flex; gap:.45rem; justify-content:center; }
.pcar__dot { width:.5rem; height:.5rem; padding:0; border-radius:50%; cursor:pointer;
  background:rgba(241,236,225,.5); border:1px solid rgba(10,19,48,.35);
  transition:background .2s var(--ease), transform .2s var(--ease); }
.pcar__dot[aria-current="true"] { background:var(--gold); transform:scale(1.25); }
@media (hover:none){ .pcar__nav { opacity:1; } }

/* — current/"actualidad" photos: full colour, not archival sepia — */
.plate--now img { filter:saturate(1.03) contrast(1.02); }
.plate--now:hover img { filter:saturate(1.06) contrast(1.02); }

/* — salón page: editorial single-column shots — */
.salonshot { max-width:860px; margin-inline:auto; }
.salonshot .plate__frame { box-shadow:0 26px 60px -34px rgba(0,0,0,.5); }
.salonshot figcaption { text-align:center; }

/* breadcrumb legible on cream sections */
.section--bone .crumb { color:var(--ink-60); }
.section--bone .crumb a { color:var(--ink); }

/* — values — */
.vals { display:grid; grid-template-columns:1fr; gap:1.4rem;
  margin-top:clamp(2.5rem,5vw,3.6rem); padding-top:clamp(1.8rem,3vw,2.4rem); border-top:1px solid var(--line-ink); }
@media (min-width:760px) { .vals { grid-template-columns:repeat(3,1fr); gap:clamp(1.5rem,3vw,2.6rem); } }
.val__k { display:block; font-family:var(--mono); font-size:.64rem; letter-spacing:.2em;
  text-transform:uppercase; color:var(--orange-600); margin-bottom:.7rem; }
.val h3 { font-size:1.25rem; color:var(--ink); margin-bottom:.5rem; }
.val p { color:var(--ink-60); line-height:1.6; max-width:34ch; }

/* — colour swatches (identity) — */
.swatches { display:flex; gap:.7rem; margin-top:1.6rem; }
.swatches span { width:40px; height:40px; border-radius:50%; }

/* — sedes / roster helpers — */
.sede__k { display:block; font-family:var(--mono); font-size:.66rem; letter-spacing:.18em;
  text-transform:uppercase; color:var(--gold-soft); margin-bottom:.6rem; }
.roster { display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:1rem; margin-top:1.5rem; }
.roster .card { background:#fff; }
.roster__role { display:block; font-family:var(--body); color:var(--shamrock-600); letter-spacing:.14em;
  text-transform:uppercase; font-size:.7rem; margin-bottom:.35rem; }

@media (prefers-reduced-motion:reduce) {
  .chap__rule--draw { width:64px !important; }
  .sunday__line span { width:100% !important; transition:none; }
  .sunday__img { transform:none; }
}

/* =====================================================================
   DEPORTES — cuatro deportes, cuatro historias (editorial scroll journey)
   Reuses chap/plate; adds giant sport names, a stat row, the Irish thread
   divider, an immersive centered variant and a sticky sport-nav.
   ===================================================================== */
.sportch { scroll-margin-top:90px; }

/* giant sport name */
.sportname { font-family:var(--display); font-size:clamp(3.2rem,2rem + 7vw,8rem); line-height:.86;
  letter-spacing:-.01em; color:var(--bone); text-wrap:balance; margin-top:.2rem; }
.section--bone .sportname { color:var(--ink); }

/* stat row (real data only) */
.sportstats { list-style:none; margin:clamp(1.8rem,3.5vw,2.6rem) 0 0; padding:0;
  display:flex; flex-wrap:wrap; gap:clamp(1.6rem,4vw,3.2rem); }
.sstat { display:flex; flex-direction:column; gap:.35rem; }
.sstat__y { font-family:var(--mono); font-weight:700; line-height:1; letter-spacing:-.02em;
  font-size:clamp(1.7rem,1rem + 2.2vw,2.6rem); color:var(--gold-soft); }
.sstat__t { font-family:var(--body); font-size:.72rem; letter-spacing:.14em; text-transform:uppercase;
  color:var(--paper-60); max-width:18ch; line-height:1.45; }
.section--bone .sstat__y { color:var(--orange-600); }
.section--bone .sstat__t { color:var(--ink-60); }

.sport__ctawrap { margin-top:1.7rem; }

/* the Irish thread — chapter-bridge line that draws across on entry */
.thread { position:relative; height:2px; width:100%; overflow:hidden; background:var(--line-navy);
  margin-bottom:clamp(2.6rem,6vw,4.6rem); }
.section--bone .thread { background:var(--line-ink); }
.thread span { position:absolute; top:0; bottom:0; left:0; width:0;
  background:linear-gradient(90deg,var(--shamrock) 0 33.3%,#f4f1ea 33.3% 66.6%,var(--orange) 66.6% 100%);
  transition:width 1.1s var(--ease); }
html.js .thread[data-reveal].is-in span { width:100%; }

/* immersive centered variant (hurling) */
.sportch--center .chap__kicker { justify-content:center; }
.sportch--center .sportname { text-align:center; }
.sportch--center .chap__prose { margin-inline:auto; text-align:center; }
.sportch--center .sportstats { justify-content:center; }
.sportch--center .sport__ctawrap { text-align:center; }
.sportfig { max-width:620px; margin-inline:auto; margin-top:clamp(2rem,4vw,3rem); }

/* sticky sport-nav (large desktop only) */
.sportnav { position:fixed; right:clamp(1.2rem,2.2vw,2.4rem); top:50%; transform:translateY(-50%);
  z-index:40; display:none; transition:opacity .4s var(--ease); }
.sportnav--hidden { opacity:0; pointer-events:none; }
@media (min-width:1200px) { .sportnav { display:block; } }
.sportnav ol { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:1.05rem; }
.sportnav a { display:flex; align-items:center; gap:.65rem; text-decoration:none;
  font-family:var(--mono); font-size:.64rem; letter-spacing:.16em; text-transform:uppercase;
  color:var(--paper-40); transition:color .3s var(--ease); }
.sportnav a::before { content:""; width:16px; height:2px; background:var(--line-navy);
  transition:width .35s var(--ease), background .35s var(--ease); }
.sportnav a:hover { color:var(--bone); }
.sportnav a.is-active { color:var(--bone); }
.sportnav a.is-active::before { width:34px;
  background:linear-gradient(90deg,var(--shamrock),#f4f1ea,var(--orange)); }
.sportnav--light a { color:var(--ink-60); }
.sportnav--light a::before { background:var(--line-ink); }
.sportnav--light a:hover, .sportnav--light a.is-active { color:var(--ink); }

@media (max-width:620px) { .sportname { font-size:clamp(3rem,2rem + 9vw,4.4rem); } }
@media (prefers-reduced-motion:reduce) { .thread span { width:100% !important; transition:none; } }

/* =====================================================================
   DEPORTES — light editorial hero (new hero direction under test)
   Ivory ground, contained framed photo, small serif, Irish micro-lines,
   heritage note and an editorial index of the four sports.
   ===================================================================== */
/* solid nav so it stays legible over a light hero */
.nav--solid { background:rgba(10,19,48,.92); backdrop-filter:blur(14px) saturate(1.4);
  -webkit-backdrop-filter:blur(14px) saturate(1.4); border-bottom-color:var(--line-navy); }

.dhero { background:var(--bone); color:var(--ink); overflow:hidden;
  padding-top:clamp(7rem,4rem + 7vw,10rem); padding-bottom:clamp(3.5rem,7vw,6rem); }
.dhero__grid { display:grid; grid-template-columns:1fr; gap:clamp(2.6rem,5vw,4.5rem); align-items:center; }
@media (min-width:900px) { .dhero__grid { grid-template-columns:1.05fr 0.95fr; gap:clamp(3rem,6vw,6rem); } }

.dhero__tri { display:block; width:52px; height:2px; margin:1.3rem 0 0; border-radius:2px;
  background:linear-gradient(90deg,var(--shamrock) 0 33.3%,#fff 33.3% 66.6%,var(--orange) 66.6% 100%); }
.dhero__title { font-family:var(--display); color:var(--ink); text-wrap:balance; line-height:1.08;
  font-size:clamp(1.9rem,1.2rem + 2.1vw,3.1rem); margin-top:1.4rem; }
.dhero__lead { color:var(--ink-60); max-width:42ch; margin-top:1.2rem; line-height:1.7; }

/* editorial index of the four sports */
.dindex { list-style:none; margin:clamp(2rem,4vw,3rem) 0 0; padding:0; border-top:1px solid var(--line-ink); }
.dindex li { border-bottom:1px solid var(--line-ink); }
.dindex a { display:flex; align-items:center; gap:1rem; padding:.95rem .2rem; text-decoration:none;
  color:var(--ink); transition:padding .3s var(--ease), color .3s var(--ease); }
.dindex__n { font-family:var(--mono); font-size:.72rem; letter-spacing:.14em; color:var(--ink-60);
  width:2.1rem; flex:none; transition:color .3s var(--ease); }
.dindex__name { font-family:var(--display); font-size:clamp(1.15rem,1rem + .6vw,1.5rem); flex:1; }
.dindex__arw { font-family:var(--mono); color:var(--orange-600); opacity:0; transform:translateX(-6px);
  transition:opacity .3s var(--ease), transform .3s var(--ease); }
.dindex a:hover, .dindex a:focus-visible { padding-left:1rem; color:var(--shamrock-600); }
.dindex a:hover .dindex__n { color:var(--orange-600); }
.dindex a:hover .dindex__arw, .dindex a:focus-visible .dindex__arw { opacity:1; transform:translateX(0); }

/* framed editorial photo */
.dhero__fig { margin:0; }
.dhero__frame { border:1px solid var(--line-ink); padding:clamp(.5rem,1vw,.75rem); background:#fff;
  box-shadow:0 30px 60px -40px rgba(11,16,32,.4); }
.dhero__frame img { display:block; width:100%; aspect-ratio:4/5; object-fit:cover; object-position:center 30%;
  filter:saturate(1.02) contrast(1.02); }
.dhero__cap { display:flex; align-items:center; gap:.8rem; margin-top:.85rem;
  font-family:var(--mono); font-size:.62rem; letter-spacing:.14em; text-transform:uppercase; color:var(--ink-60); }
.dhero__cap .tri { display:inline-block; width:26px; height:2px; flex:none;
  background:linear-gradient(90deg,var(--shamrock) 0 33.3%,#d8cfbe 33.3% 66.6%,var(--orange) 66.6% 100%); }
.dhero__est { font-family:var(--mono); font-size:.62rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--ink-60); margin-top:clamp(1.4rem,3vw,2rem); }

/* — Deportes hero v2: type-only lockup (quieter, smaller) — */
.dhero__lockup { max-width:640px; }
.dhero__lockup .dhero__title { font-size:clamp(1.7rem,1.1rem + 1.4vw,2.5rem); }
.dhero__meta { display:flex; align-items:center; gap:.7rem; margin-top:clamp(1.6rem,3vw,2.2rem);
  padding-top:clamp(1.3rem,2.5vw,1.7rem); border-top:1px solid var(--line-ink);
  font-family:var(--mono); font-size:.62rem; letter-spacing:.22em; text-transform:uppercase; color:var(--ink-60); }
.dhero__meta .sep { color:var(--orange-600); }

/* — editorial sports index as a full section — */
.dindex-sec { background:var(--bone); padding-top:0; }
.dindex--lg { margin-top:0; }
.dindex--lg a { padding:clamp(1.15rem,2.4vw,1.8rem) .2rem; gap:clamp(.9rem,3vw,2rem); position:relative; }
.dindex--lg .dindex__n { width:2.4rem; }
.dindex--lg .dindex__name { font-size:clamp(1.5rem,1.1rem + 1.6vw,2.4rem); }
.dindex__meta { font-family:var(--mono); font-size:.62rem; letter-spacing:.12em; text-transform:uppercase;
  color:var(--ink-60); margin-left:auto; text-align:right; white-space:nowrap; }
.dindex--lg .dindex__arw { color:var(--orange-600); margin-left:clamp(.8rem,2vw,1.4rem); opacity:.5; transform:none; }
.dindex--lg a:hover .dindex__arw, .dindex--lg a:focus-visible .dindex__arw { opacity:1; transform:translateX(4px); }
.dindex--lg a::before { content:""; position:absolute; left:-1px; top:14%; bottom:14%; width:2px; transform:scaleY(0);
  transform-origin:top; transition:transform .3s var(--ease);
  background:linear-gradient(180deg,var(--shamrock) 0 33.3%,#d8cfbe 33.3% 66.6%,var(--orange) 66.6% 100%); }
.dindex--lg a:hover::before, .dindex--lg a:focus-visible::before { transform:scaleY(1); }
@media (max-width:680px){ .dindex__meta { display:none; } }

/* — separador delicado con el trébol · líneas verdes que se desvanecen — */
.trebol-div { display:flex; align-items:center; justify-content:center; gap:clamp(.9rem,2vw,1.5rem);
  max-width:620px; margin:0 auto; }
/* banda propia del separador — centrado entre secciones, con aire generoso */
.trebol-band { padding-block:clamp(5rem,10vw,9rem); }
.dhero + .trebol-band { margin-top:calc(-1 * clamp(3.5rem,7vw,6rem)); }
.trebol-band + .section { padding-top:0; }
/* fade-in propio del trébol (además del reveal global), suave */
html.js .trebol-div[data-reveal] { opacity:0; transform:translateY(14px); }
html.js .trebol-div[data-reveal].is-in { opacity:1; transform:none; transition:opacity 1s var(--ease), transform 1s var(--ease); }
@media (prefers-reduced-motion:reduce) { html.js .trebol-div[data-reveal] { opacity:1; transform:none; } }
.trebol-div__line { height:1px; flex:1 1 auto; max-width:220px; }
.trebol-div__line--l { background:linear-gradient(90deg, transparent, var(--shamrock)); }
.trebol-div__line--r { background:linear-gradient(90deg, var(--shamrock), transparent); }
.trebol-div__mark { flex:none; width:clamp(18px,2.2vw,24px); height:auto; color:var(--shamrock); }
.trebol-div__mark svg, .trebol-div__mark img { display:block; width:100%; height:auto; }

/* — el pino · cierre memorial, delicado — */
.pino { display:flex; flex-direction:column; align-items:center; gap:.7rem;
  margin-top:clamp(2.6rem,6vw,4.2rem); color:var(--gold-soft); }
.pino__line { width:1px; height:clamp(16px,3vw,22px);
  background:linear-gradient(180deg, transparent, var(--gold-soft)); opacity:.55; }
.pino__tree { width:clamp(17px,2vw,22px); height:auto; opacity:.9; }
.pino__cap { font-family:var(--mono); font-size:.58rem; letter-spacing:.28em; text-transform:uppercase;
  color:var(--paper-40); }

/* — escena de rugby · jugador recortado + líneas de velocidad (hero) — */
.rugscene { position:relative; display:flex; align-items:center; justify-content:center; overflow:visible; }
.rugscene__art { position:absolute; inset:-6% -4%; width:108%; height:112%; z-index:0; overflow:visible; }
.rugscene__player { position:relative; z-index:1; height:448px; width:auto; max-width:100%;
  display:block; filter:drop-shadow(0 40px 52px rgba(11,16,32,.18)); }
.rugscene__archival { position:absolute; z-index:0; top:50%; left:50%; transform:translate(-50%,calc(-50% - 6px));
  width:min(960px,192%); height:auto; max-width:none; opacity:.39; pointer-events:none; }
.rugscene__archival--strong { opacity:.7; }
/* — banda de sponsors (logos blancos sobre navy) — */
.sponsors { list-style:none; padding:0; margin:clamp(1.4rem,3.5vw,2.6rem) auto clamp(2.6rem,5vw,3.6rem);
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center;
  gap:clamp(2.2rem,5vw,4.6rem); max-width:920px; }
.sponsors li { display:flex; }
.sponsors img { height:clamp(26px,3vw,38px); width:auto; display:block; opacity:.82;
  transition:opacity .25s var(--ease); }
.sponsors img:hover { opacity:1; }
/* — Notas y anuncios (Novedades) · cards editoriales — */
.notes { list-style:none; padding:0; margin:clamp(2rem,4vw,3rem) 0 0;
  display:grid; grid-template-columns:1fr; gap:clamp(1.1rem,2.2vw,1.6rem); }
@media (min-width:760px){ .notes { grid-template-columns:repeat(3,1fr); } }
.note { position:relative; display:flex; flex-direction:column; align-items:flex-start;
  background:#fffdf8; border:1px solid var(--line-ink); border-radius:12px;
  padding:clamp(1.7rem,2.6vw,2.3rem); overflow:hidden;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease); }
.note__rule { position:absolute; top:0; left:0; right:0; height:3px; transform:scaleX(0);
  transform-origin:left; transition:transform .45s var(--ease);
  background:linear-gradient(90deg,var(--shamrock) 0 33.3%,#fff 33.3% 66.6%,var(--orange) 66.6% 100%); }
.note__n { position:absolute; top:.7rem; right:1.1rem; font-family:var(--display);
  font-size:clamp(2.4rem,4vw,3.2rem); line-height:1; color:var(--ink); opacity:.07; pointer-events:none; }
.note__cat { font-family:var(--mono); font-size:.62rem; letter-spacing:.24em; text-transform:uppercase;
  color:var(--orange-600); margin:0; }
.note__title { font-family:var(--display); font-size:clamp(1.35rem,1.1rem + .7vw,1.7rem);
  line-height:1.12; margin:.95rem 0 .65rem; color:var(--ink); text-wrap:balance; }
.note__body { color:var(--ink-60); font-size:1rem; line-height:1.6; margin:0; }
.note__meta { font-family:var(--mono); font-size:.66rem; letter-spacing:.18em; color:var(--ink-60);
  margin:auto 0 0; padding-top:1.3rem; opacity:.7; }
.note__link { margin-top:auto; padding-top:1.4rem; font-family:var(--body); font-weight:600;
  font-size:.8rem; letter-spacing:.05em; text-transform:uppercase; color:var(--shamrock-600);
  display:inline-flex; align-items:center; gap:.5rem; }
.note__link .arw { transition:transform .22s var(--ease); }
.note:hover { transform:translateY(-5px); border-color:rgba(11,16,32,.22);
  box-shadow:0 24px 46px -26px rgba(11,16,32,.42); }
.note:hover .note__rule { transform:scaleX(1); }
.note:hover .note__link .arw { transform:translateX(4px); }
/* — Tablero de la semana (Novedades hero) — placa navy "en vivo" — */
.weekboard { position:relative; width:100%; max-width:520px; color:var(--bone); overflow:hidden;
  background:linear-gradient(158deg, var(--navy) 0%, var(--navy-900) 100%);
  border:1px solid var(--line-navy); border-radius:16px;
  padding:clamp(1.7rem,2.6vw,2.4rem); box-shadow:0 34px 66px -34px rgba(11,16,32,.55); }
.weekboard::before { content:""; position:absolute; top:0; left:0; width:72px; height:3px;
  background:linear-gradient(90deg,var(--shamrock) 0 33.3%,#fff 33.3% 66.6%,var(--orange) 66.6% 100%); }
.weekboard__top { display:flex; align-items:center; justify-content:space-between; gap:1rem;
  font-family:var(--mono); font-size:.66rem; letter-spacing:.2em; text-transform:uppercase; }
.weekboard__live { display:inline-flex; align-items:center; gap:.6rem; color:var(--gold-soft); }
.weekboard__live .dot { width:8px; height:8px; border-radius:50%; background:var(--shamrock); flex:none;
  box-shadow:0 0 0 0 rgba(27,122,70,.55); }
.weekboard__loc { color:var(--paper-40); }
.weekboard__title { font-family:var(--display); font-weight:400; color:var(--bone); text-wrap:balance;
  font-size:clamp(1.55rem,1.2rem + 1.1vw,2.1rem); line-height:1.08; margin:1.25rem 0 1.4rem; }
.weekboard__list { list-style:none; margin:0; padding:0; }
.weekboard__list li { display:grid; grid-template-columns:2rem 1fr auto; align-items:center; gap:.9rem;
  padding:.8rem 0; border-top:1px solid var(--line-navy); }
.wb__day { font-family:var(--mono); font-size:.82rem; font-weight:700; letter-spacing:.06em; color:var(--gold-soft); text-align:center; }
.wb__sport { font-family:var(--body); font-size:1rem; color:var(--bone); }
.wb__tag { font-family:var(--mono); font-size:.6rem; letter-spacing:.13em; text-transform:uppercase;
  color:var(--paper-60); border:1px solid var(--line-navy); border-radius:999px; padding:.3rem .72rem; white-space:nowrap; }
.wb__tag--live { color:#e2f3e9; border-color:rgba(27,122,70,.55); background:rgba(27,122,70,.2); }
.weekboard__foot { display:flex; align-items:center; gap:.7rem; margin:1.5rem 0 0; padding:0;
  font-family:var(--mono); font-size:.6rem; letter-spacing:.2em; text-transform:uppercase; color:var(--paper-40); }
.weekboard__tri { width:26px; height:2px; flex:none; border-radius:2px;
  background:linear-gradient(90deg,var(--shamrock) 0 33.3%,#fff 33.3% 66.6%,var(--orange) 66.6% 100%); }
@media (prefers-reduced-motion:no-preference){
  .weekboard__live .dot { animation:wbpulse 2.2s var(--ease) infinite; }
  @keyframes wbpulse { 0%{box-shadow:0 0 0 0 rgba(27,122,70,.5)} 70%{box-shadow:0 0 0 11px rgba(27,122,70,0)} 100%{box-shadow:0 0 0 0 rgba(27,122,70,0)} }
}
@media (max-width:899px){ .weekboard { max-width:none; } }
/* — En vivo (Novedades) — */
.eyebrow--live { display:inline-flex; align-items:center; gap:.55rem; }
.live-dot { width:9px; height:9px; border-radius:50%; background:#e5484d; flex:none;
  box-shadow:0 0 0 0 rgba(229,72,77,.6); }
@media (prefers-reduced-motion:no-preference){
  .live-dot { animation:livepulse 1.8s var(--ease) infinite; }
  @keyframes livepulse { 0%{box-shadow:0 0 0 0 rgba(229,72,77,.55)} 70%{box-shadow:0 0 0 10px rgba(229,72,77,0)} 100%{box-shadow:0 0 0 0 rgba(229,72,77,0)} }
}
.live { position:relative; margin-top:clamp(1.6rem,3vw,2.4rem); display:grid; gap:1rem; max-width:760px; }
.live__radio { position:absolute; width:1px; height:1px; opacity:0; pointer-events:none; }
.live__tabs { display:grid; grid-template-columns:1fr 1fr; gap:.7rem; }
.live__tab { cursor:pointer; display:flex; flex-direction:column; gap:.2rem;
  border:1px solid var(--line-navy); border-radius:12px; background:rgba(241,236,225,.03);
  padding:clamp(.85rem,1.6vw,1.15rem) clamp(1rem,2vw,1.4rem);
  transition:border-color .25s var(--ease), background .25s var(--ease); }
.live__tab-sport { font-family:var(--display); font-size:clamp(1.1rem,1rem + .4vw,1.35rem); color:var(--bone); line-height:1; }
.live__tab-vs { font-family:var(--mono); font-size:.6rem; letter-spacing:.14em; text-transform:uppercase; color:var(--paper-40); }
.live__tab-when { margin-top:.55rem; font-family:var(--mono); font-size:.66rem; letter-spacing:.06em;
  color:var(--paper-60); font-variant-numeric:tabular-nums; display:inline-flex; align-items:center; gap:.45rem; }
.live__tab-when .tz { font-size:.82em; letter-spacing:.12em; color:var(--gold-soft);
  border:1px solid rgba(198,161,91,.4); border-radius:4px; padding:.05em .35em; }
.live__tab:hover { border-color:var(--paper-40); }
#live-rugby:checked ~ .live__tabs .live__tab--rugby,
#live-hockey:checked ~ .live__tabs .live__tab--hockey { border-color:var(--gold-soft); background:rgba(198,161,91,.13); }
#live-rugby:checked ~ .live__tabs .live__tab--rugby .live__tab-vs,
#live-hockey:checked ~ .live__tabs .live__tab--hockey .live__tab-vs { color:var(--gold-soft); }
#live-rugby:focus-visible ~ .live__tabs .live__tab--rugby,
#live-hockey:focus-visible ~ .live__tabs .live__tab--hockey { outline:2px solid var(--gold-soft); outline-offset:2px; }
.live__panels .live__frame { display:none; }
#live-rugby:checked ~ .live__panels .live__frame--rugby { display:flex; }
#live-hockey:checked ~ .live__panels .live__frame--hockey { display:flex; }
.live__frame { position:relative; aspect-ratio:16/9; width:100%; border-radius:14px; overflow:hidden;
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:1.1rem; text-decoration:none;
  background:radial-gradient(120% 130% at 50% 25%, var(--navy-700), var(--navy-900));
  border:1px solid var(--line-navy); color:var(--bone);
  transition:border-color .25s var(--ease), transform .25s var(--ease); }
.live__frame iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.live__play { width:clamp(58px,7vw,78px); aspect-ratio:1; border-radius:50%; display:grid; place-items:center;
  background:rgba(241,236,225,.1); border:1px solid rgba(241,236,225,.32); color:var(--bone);
  transition:background .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease); }
.live__play svg { width:34%; height:34%; margin-left:8%; }
.live__cta { font-family:var(--mono); font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-soft); }
.live__frame:hover { border-color:var(--gold-soft); }
.live__frame:hover .live__play { background:var(--shamrock); border-color:var(--shamrock); transform:scale(1.06); }
.live__note { color:var(--paper-60); font-size:.92rem; line-height:1.6; max-width:60ch; margin:0; }
/* — Resultados de la fecha (Novedades) — */
.results { list-style:none; margin:clamp(1.8rem,3.5vw,2.6rem) 0 0; padding:0; display:grid; gap:1px;
  grid-template-columns:1fr; background:var(--line-ink); border:1px solid var(--line-ink);
  border-radius:12px; overflow:hidden; }
@media (min-width:760px){ .results { grid-template-columns:1fr 1fr; } }
.result { background:#fffdf8; padding:clamp(1.5rem,2.6vw,2.1rem); display:flex; flex-direction:column; gap:1rem; }
.result__cat { font-family:var(--mono); font-size:.62rem; letter-spacing:.22em; text-transform:uppercase; color:var(--orange-600); }
.result__row { display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:clamp(.8rem,2vw,1.4rem); }
.result__team { font-family:var(--body); font-weight:600; font-size:1.02rem; color:var(--ink); line-height:1.2; }
.result__team.is-home { color:var(--shamrock-600); }
.result__team:last-child { text-align:right; }
.result__score { font-family:var(--display); font-size:clamp(1.8rem,1.4rem + 1.3vw,2.7rem); line-height:1;
  color:var(--ink); display:inline-flex; align-items:center; gap:.55rem; white-space:nowrap; font-variant-numeric:tabular-nums; }
.result__score span { font-size:.44em; color:var(--ink-60); position:relative; top:-.06em; }
/* — dibujo patrimonial (sede 1923) · hero de Deportes — */
.dhero__sketch { align-self:center; margin:0; }
.dhero__sketch img { width:min(560px,100%); height:auto; display:block; margin-inline:auto;
  filter:drop-shadow(0 18px 30px rgba(11,16,32,.09)); }
.dhero__sketch figcaption { font-family:var(--mono); font-size:.6rem; letter-spacing:.16em;
  text-transform:uppercase; color:var(--ink-60); text-align:center; margin-top:1.1rem; }
@media (max-width:899px){ .dhero__sketch { margin-top:2.4rem; } .dhero__sketch img { width:min(420px,86%); } }
/* — variante grande: dibujo de la sede (hero de Historia) — */
@media (min-width:900px){
  .dhero__grid--house { grid-template-columns:0.82fr 1.18fr; gap:clamp(2rem,4vw,3.75rem); }
  .dhero__sketch--house { justify-self:end; width:100%; margin-right:calc(-1 * var(--gutter)); }
  .dhero__sketch--house img { width:min(100%,780px); margin-inline:0 auto; }
  .dhero__sketch--house figcaption { text-align:center; }
}
@media (max-width:899px){ .dhero__sketch--house img { width:min(560px,92%); } }
/* — variante: dibujo del bar arriba a la derecha (hero de El Club) — */
@media (min-width:900px){
  .dhero__grid--bar { grid-template-columns:0.92fr 1.08fr; gap:clamp(2rem,4vw,3.5rem); align-items:start; }
  .dhero__sketch--bar { align-self:start; justify-self:end; margin:0; }
}
.dhero__sketch--bar img { width:min(100%,600px); filter:none; mix-blend-mode:multiply; }
.dhero__sketch--bar figcaption { text-align:center; }
@media (max-width:899px){ .dhero__sketch--bar img { width:min(560px,92%); } }
/* dibujos sueltos (tinta transparente que se desvanece) — sin multiply */
.dhero__sketch--art img { mix-blend-mode:normal; }
.rugscene__crest { position:absolute; z-index:0; width:min(290px,80%); height:auto; opacity:.1;
  left:50%; top:50%; transform:translate(-46%,-52%); pointer-events:none; }
@media (prefers-reduced-motion:no-preference) {
  html.js .rugscene[data-reveal] .rugscene__crest { opacity:0; }
  html.js .rugscene[data-reveal].is-in .rugscene__crest { opacity:.1; transition:opacity 1.1s var(--ease) .25s; }
}
.rugscene .arc { stroke:var(--gold); stroke-width:1.2; opacity:.38; }
.rugscene .ln { stroke:var(--line-ink); stroke-width:2; stroke-linecap:round; opacity:.5; }
.rugscene .ln--g { stroke:var(--shamrock); opacity:.55; }
.rugscene .ln--o { stroke:var(--orange); opacity:.55; }
.rugscene .dot { opacity:.85; }
.rugscene .dot--g { fill:var(--shamrock); }
.rugscene .dot--o { fill:var(--orange); }
@media (max-width:899px) { .rugscene { display:none; } }
@media (prefers-reduced-motion:no-preference) {
  html.js .rugscene[data-reveal] .ln { transform:translateX(-28px); opacity:0; }
  html.js .rugscene[data-reveal].is-in .ln { transform:translateX(0); opacity:.5;
    transition:transform .85s var(--ease), opacity .85s var(--ease); }
  html.js .rugscene[data-reveal].is-in .ln--g { opacity:.55; }
  html.js .rugscene[data-reveal].is-in .ln--o { opacity:.55; }
  html.js .rugscene[data-reveal] .ln:nth-of-type(2){ transition-delay:.06s; }
  html.js .rugscene[data-reveal] .ln:nth-of-type(3){ transition-delay:.12s; }
  html.js .rugscene[data-reveal] .ln:nth-of-type(4){ transition-delay:.18s; }
  html.js .rugscene[data-reveal] .ln:nth-of-type(5){ transition-delay:.24s; }
  html.js .rugscene .arc { stroke-dasharray:1500; stroke-dashoffset:1500; }
  html.js .rugscene[data-reveal].is-in .arc { stroke-dashoffset:0; transition:stroke-dashoffset 1.7s var(--ease) .2s; }
  html.js .rugscene .dot { animation:rugdot 3.4s ease-in-out infinite; }
  @keyframes rugdot { 0%,100%{ opacity:.35 } 50%{ opacity:.85 } }
}
