@charset "utf-8";
/* ==========================================================================
   Buenos Aires Golf Club — 2026
   1. Tokens          5. Buttons & links     9. Champions timeline
   2. Reset & base    6. Header & nav       10. The club / mosaic
   3. Layout          7. Hero               11. Gallery & lightbox
   4. Typography      8. Stats / sections   12. Contact / footer / motion
   ========================================================================== */

/* ==========================================================================
   1. Tokens
   ========================================================================== */
:root {
  /* brand */
  --ink:        #0A1712;
  --ink-2:      #0F2A20;
  --pine:       #14513B;
  --pine-d:     #0E3A2A;
  --pine-l:     #2C7A5A;
  --brass:      #C9A227;
  --brass-l:    #E0BE55;
  --cream:      #F7F4EC;
  --sand:       #EFE9DC;
  --paper:      #FFFFFF;

  /* text */
  --text:       #17211D;
  --text-soft:  #56635C;
  --text-inv:   #F2EFE6;
  --text-inv-s: rgba(242, 239, 230, .72);

  /* lines */
  --line:       rgba(20, 81, 59, .16);
  --line-inv:   rgba(242, 239, 230, .20);

  /* type */
  --f-display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --f-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* rhythm */
  --wrap:       1200px;
  --gutter:     clamp(1.25rem, 5vw, 4rem);
  --section-y:  clamp(4.5rem, 10vw, 9rem);
  --header-h:   78px;

  /* motion */
  --ease:       cubic-bezier(.22, .61, .36, 1);
  --ease-out:   cubic-bezier(.16, 1, .3, 1);
  --dur:        .55s;
}

@media (max-width: 860px) {
  :root { --header-h: 64px; }
}

/* ==========================================================================
   2. Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
}

/* Smooth scrolling is switched on by JS *after* first paint, so landing on
   /#gallery jumps straight there instead of animating down the whole page. */
html.smooth-scroll { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--f-sans);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4, p, figure, blockquote, ul, ol, dl { margin: 0; }
ul, ol { padding: 0; list-style: none; }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--brass); color: var(--ink); }

.skip-link {
  position: fixed;
  top: .5rem; left: .5rem;
  z-index: 2000;
  padding: .7rem 1.1rem;
  background: var(--pine);
  color: var(--cream);
  border-radius: 4px;
  font-size: .85rem;
  letter-spacing: .04em;
  transform: translateY(-160%);
  transition: transform .3s var(--ease);
}
.skip-link:focus-visible { transform: none; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 1400;
  pointer-events: none;
  background: transparent;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--pine-l), var(--brass));
}

/* ==========================================================================
   3. Layout
   ========================================================================== */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: var(--section-y);
  overflow: hidden;
}
.section--flush { padding-bottom: 0; }
.section--paper  { background: var(--paper); }
.section--cream  { background: var(--cream); }
.section--dark   { background: var(--ink); color: var(--text-inv); }
.section--contact{ background: var(--pine-d); color: var(--text-inv); }

/* Big faded background image behind a dark section */
.section__bg {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  pointer-events: none;
}
.section__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .16;
  filter: saturate(.7);
}
.section--dark .section__bg::after,
.section--contact .section__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--ink) 0%, rgba(10, 23, 18, .55) 40%, var(--ink) 100%);
}
.section--contact .section__bg::after {
  background: linear-gradient(180deg, var(--pine-d) 0%, rgba(14, 58, 42, .6) 45%, var(--pine-d) 100%);
}
.section > .wrap { position: relative; z-index: 1; }

.section__head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__lede {
  margin-top: 1.1rem;
  font-size: clamp(1.05rem, 1rem + .35vw, 1.25rem);
  color: var(--text-soft);
}
.section--dark .section__lede,
.section--contact .section__lede { color: var(--text-inv-s); }
.section__foot { margin-top: clamp(2.5rem, 5vw, 4rem); display: flex; justify-content: center; }

/* Two-column split */
.split {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__text { order: 2; }
}

.split__media figcaption {
  margin-top: .9rem;
  font-size: .82rem;
  letter-spacing: .02em;
  color: var(--text-soft);
  font-style: italic;
  font-family: var(--f-display);
}

/* Image in a brass-offset frame */
.framed { position: relative; }
.framed::before {
  content: "";
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  border: 1px solid var(--brass);
  opacity: .55;
  transition: inset .8s var(--ease-out), opacity .8s var(--ease-out);
}
.framed img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
[data-reveal].is-in .framed::before { inset: .9rem -.9rem -.9rem .9rem; }

/* ==========================================================================
   4. Typography
   ========================================================================== */
.h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 1.5rem + 2.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.012em;
  text-wrap: balance;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--pine-l);
}
.eyebrow::before {
  content: "";
  width: 2rem; height: 1px;
  background: currentColor;
  opacity: .6;
}
.section--dark .eyebrow,
.section--contact .eyebrow { color: var(--brass); }
.section__head--center .eyebrow::after {
  content: "";
  width: 2rem; height: 1px;
  background: currentColor;
  opacity: .6;
}

.prose > p + p { margin-top: 1.15rem; }
.prose p { color: var(--text-soft); }
.prose em { font-family: var(--f-display); font-size: 1.08em; }
.prose--invert p { color: var(--text-inv-s); }

.pullquote {
  padding: 1.6rem 0 1.6rem 1.6rem;
  border-left: 2px solid var(--brass);
}
.pullquote p {
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 1.1rem + .7vw, 1.6rem);
  line-height: 1.35;
  font-style: italic;
  color: var(--cream);
}

/* ==========================================================================
   5. Buttons & links
   ========================================================================== */
.btn {
  --btn-fg: var(--ink);
  --btn-bg: var(--brass);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 1.6rem;
  overflow: hidden;
  isolation: isolate;
  color: var(--btn-fg);
  background: var(--btn-bg);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: color .4s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
  will-change: transform;
}
.btn > span { position: relative; z-index: 2; }
.btn svg {
  position: relative;
  z-index: 2;
  width: 1.05em; height: 1.05em;
  transition: transform .45s var(--ease-out);
}

/* sweep fill */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform .5s var(--ease-out);
}
.btn:hover, .btn:focus-visible {
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -14px rgba(0, 0, 0, .7);
}
.btn:hover::before, .btn:focus-visible::before {
  transform: scaleX(1);
  transform-origin: 0 50%;
}
.btn:hover svg, .btn:focus-visible svg { transform: translateX(5px); }
.btn:active { transform: translateY(0); }

.btn--sm { padding: .7rem 1.15rem; font-size: .7rem; }
.site-header__cta { white-space: nowrap; flex-shrink: 0; }
.btn--wide { padding-inline: 2.2rem; }

.btn--ghost {
  --btn-fg: var(--cream);
  --btn-bg: transparent;
  box-shadow: inset 0 0 0 1px rgba(242, 239, 230, .5);
}
.btn--ghost::before { background: var(--cream); }
.btn--ghost:hover, .btn--ghost:focus-visible {
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--cream), 0 12px 28px -14px rgba(0, 0, 0, .7);
}

/* text link with sliding arrow + growing rule */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1.8rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--pine);
}
.link-arrow span {
  position: relative;
  padding-bottom: 3px;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .45s var(--ease-out);
}
.link-arrow svg { width: 1.1em; height: 1.1em; transition: transform .45s var(--ease-out); }
.link-arrow:hover span, .link-arrow:focus-visible span { background-size: 100% 1px; }
.link-arrow:hover svg, .link-arrow:focus-visible svg { transform: translateX(6px); }
.section--dark .link-arrow, .section--contact .link-arrow { color: var(--brass); }

/* underline that wipes in */
.link-underline {
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size .4s var(--ease-out), color .3s var(--ease);
  padding-bottom: 1px;
}
.link-underline:hover, .link-underline:focus-visible { background-size: 100% 1px; }

/* ==========================================================================
   6. Header & navigation
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  /* Kept short on purpose: while this crossfades, light nav text is briefly
     sitting on the incoming cream background, so the switch must be quick. */
  transition: background .28s var(--ease), box-shadow .28s var(--ease);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 23, 18, .55), transparent);
  opacity: 1;
  transition: opacity .28s var(--ease);
  pointer-events: none;
}
.site-header.is-stuck {
  background: rgba(247, 244, 236, .92);
  backdrop-filter: saturate(1.4) blur(14px);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(10, 23, 18, .8);
}
.site-header.is-stuck::before { opacity: 0; }

/* Set by JS for the first frame only — see main.js. */
.site-header.no-anim,
.site-header.no-anim *,
.site-header.no-anim::before { transition: none !important; }

.site-header__inner {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* -- brand ---------------------------------------------------------------- */
.brand {
  --mark-h: clamp(26px, 3.2vw, 34px);
  position: relative;
  display: flex;
  align-items: baseline;
  gap: calc(var(--mark-h) * .12);
  margin-right: auto;
  flex-shrink: 0;
}
.brand__mark {
  width: auto;
  height: var(--mark-h);
  transition: opacity .22s var(--ease);
}
.brand__mark--dark {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  opacity: 0;
}
.site-header.is-stuck .brand__mark--light { opacity: 0; }
.site-header.is-stuck .brand__mark--dark  { opacity: 1; }

/* "Club" is typeset to match the logo's cap height, and lifted onto the
   wordmark's baseline (the image's own baseline is its bottom edge, which
   sits below the letters because of the arc and padding in the artwork). */
.brand__club {
  font-family: var(--f-display);
  font-size: calc(var(--mark-h) * .62);
  line-height: 1;
  letter-spacing: .01em;
  color: var(--cream);
  transform: translateY(calc(var(--mark-h) * -.2));
  transition: color .22s var(--ease);
}
.site-header.is-stuck .brand__club { color: var(--pine); }

/* While the overlay is open the header floats on top of it, so it has to drop
   its own background and go back to the light-on-dark treatment. */
body.menu-open .site-header,
body.menu-open .site-header.is-stuck {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.menu-open .site-header::before { opacity: 0; }
body.menu-open .brand__mark--light { opacity: 1; }
body.menu-open .brand__mark--dark  { opacity: 0; }
body.menu-open .brand__club { color: var(--cream); }

/* -- desktop nav ---------------------------------------------------------- */
.site-nav ul { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.1rem); }
.site-nav a {
  position: relative;
  display: block;
  padding: .35rem 0;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text-inv);
  transition: color .22s var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .45s var(--ease-out);
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after { transform: scaleX(1); }
.site-header.is-stuck .site-nav a { color: var(--text); }
.site-nav a.is-active { color: var(--brass); }
.site-header.is-stuck .site-nav a.is-active { color: var(--pine); }

/* -- burger --------------------------------------------------------------- */
.burger {
  position: relative;
  z-index: 1310;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  margin-right: -8px;
}
.burger__box {
  display: block;
  width: 26px; height: 16px;
  position: relative;
}
.burger__line {
  position: absolute;
  left: 0;
  width: 100%; height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .45s var(--ease-out), opacity .25s var(--ease), background .22s var(--ease), width .45s var(--ease-out);
}
.burger__line:nth-child(1) { top: 0; }
.burger__line:nth-child(2) { top: 7.25px; width: 70%; }
.burger__line:nth-child(3) { top: 14.5px; }
.site-header.is-stuck .burger__line { background: var(--pine); }

.burger[aria-expanded="true"] .burger__line { background: var(--cream); }
.burger[aria-expanded="true"] .burger__line:nth-child(1) { transform: translateY(7.25px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__line:nth-child(2) { opacity: 0; transform: translateX(-12px); }
.burger[aria-expanded="true"] .burger__line:nth-child(3) { transform: translateY(-7.25px) rotate(-45deg); }

/* Swap between the desktop bar and the burger.
   These have to come *after* the .burger block above, or the base
   `display: grid` would win and the burger would show on desktop too. */
@media (max-width: 1040px) {
  .site-nav, .site-header__cta { display: none; }
}
@media (min-width: 1041px) {
  .burger { display: none; }
}

/* -- mobile menu ---------------------------------------------------------- */
/* Sits BELOW .site-header (z-index 1200) on purpose: the header creates its
   own stacking context, so a menu above it would bury the close button. */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1150;
  background: var(--pine-d);
  color: var(--cream);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  clip-path: circle(0% at calc(100% - 42px) 38px);
  transition: clip-path .6s var(--ease-out), opacity .3s var(--ease), visibility 0s linear .6s;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  clip-path: circle(150% at calc(100% - 42px) 38px);
  transition: clip-path .7s var(--ease-out), opacity .25s var(--ease), visibility 0s;
}
.mobile-menu::after {
  content: "";
  position: absolute;
  inset: auto -20% -25% -20%;
  height: 60%;
  background: radial-gradient(ellipse at 50% 100%, rgba(201, 162, 39, .16), transparent 65%);
  pointer-events: none;
}

.mobile-menu__inner {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  padding: calc(var(--header-h) + 2rem) var(--gutter) 3rem;
}

.mobile-menu__list li {
  opacity: 0;
  transform: translateY(22px);
  border-bottom: 1px solid var(--line-inv);
}
.mobile-menu.is-open .mobile-menu__list li {
  animation: menuIn .55s var(--ease-out) forwards;
  animation-delay: calc(120ms + var(--i) * 65ms);
}
@keyframes menuIn { to { opacity: 1; transform: none; } }

.mobile-menu__list a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: .85rem 0;
  transition: color .35s var(--ease), padding-left .45s var(--ease-out);
}
.mobile-menu__num {
  font-size: .68rem;
  letter-spacing: .18em;
  color: var(--brass);
  opacity: .85;
}
.mobile-menu__text {
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 8vw, 2.6rem);
  line-height: 1.1;
}
.mobile-menu__list a:hover,
.mobile-menu__list a:focus-visible,
.mobile-menu__list a.is-active { color: var(--brass-l); padding-left: .6rem; }

.mobile-menu__foot {
  opacity: 0;
  transform: translateY(22px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
}
.mobile-menu.is-open .mobile-menu__foot {
  animation: menuIn .55s var(--ease-out) forwards;
  animation-delay: calc(120ms + var(--i) * 65ms);
}

/* ==========================================================================
   7. Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--text-inv);
}

.hero__media { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 9s linear;
}
.hero__slide.is-active img { transform: scale(1.14); }

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 23, 18, .62) 0%, rgba(10, 23, 18, .18) 32%, rgba(10, 23, 18, .52) 72%, rgba(10, 23, 18, .88) 100%),
    radial-gradient(120% 80% at 20% 60%, rgba(10, 23, 18, .5), transparent 70%);
}

.hero__body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: calc(var(--header-h) + 3rem) var(--gutter) 8rem;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: 1.4rem;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brass-l);
}
.hero__eyebrow i { width: 2.2rem; height: 1px; background: currentColor; opacity: .55; }

/* Tighten the eyebrow so it stays on one line on a phone. */
@media (max-width: 560px) {
  .hero__eyebrow { gap: .55rem; font-size: .62rem; letter-spacing: .15em; }
  .hero__eyebrow i { width: 3px; height: 3px; border-radius: 50%; opacity: .8; }
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(3rem, 1.6rem + 8vw, 7.5rem);
  line-height: .95;
  letter-spacing: -.02em;
}
/* No overflow clipping here — the italic display face has swashes and
   descenders that would get cut off. */
.hero__line { display: block; }
.hero__line--accent { color: var(--brass-l); font-style: italic; }

.hero__lede {
  max-width: 34ch;
  margin-top: 1.6rem;
  font-size: clamp(1.02rem, .96rem + .45vw, 1.25rem);
  color: var(--text-inv-s);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2.4rem;
}

/* entrance */
.js .hero__eyebrow,
.js .hero__title .hero__line,
.js .hero__lede,
.js .hero__actions {
  opacity: 0;
  transform: translateY(28px);
}
.js .hero.is-ready .hero__eyebrow,
.js .hero.is-ready .hero__title .hero__line,
.js .hero.is-ready .hero__lede,
.js .hero.is-ready .hero__actions {
  animation: heroIn .95s var(--ease-out) forwards;
}
.js .hero.is-ready .hero__eyebrow          { animation-delay: .15s; }
.js .hero.is-ready .hero__line:nth-child(1){ animation-delay: .28s; }
.js .hero.is-ready .hero__line:nth-child(2){ animation-delay: .40s; }
.js .hero.is-ready .hero__lede             { animation-delay: .56s; }
.js .hero.is-ready .hero__actions          { animation-delay: .68s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* dots */
.hero__dots {
  position: absolute;
  left: var(--gutter);
  bottom: 2.5rem;
  z-index: 3;
  display: flex;
  gap: .6rem;
}
.hero__dot { width: 34px; height: 20px; display: grid; place-items: center; }
.hero__dot i {
  display: block;
  width: 100%; height: 2px;
  background: rgba(242, 239, 230, .32);
  transition: background .4s var(--ease), transform .4s var(--ease);
}
.hero__dot:hover i { background: rgba(242, 239, 230, .6); transform: scaleY(2); }
.hero__dot.is-active i { background: var(--brass); transform: scaleY(2); }

/* scroll cue */
.hero__cue {
  position: absolute;
  right: var(--gutter);
  bottom: 2.2rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text-inv-s);
  transition: color .35s var(--ease);
}
.hero__cue:hover { color: var(--brass-l); }
.hero__cue-line {
  position: relative;
  width: 1px; height: 54px;
  background: rgba(242, 239, 230, .25);
  overflow: hidden;
}
.hero__cue-line::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 40%;
  background: var(--brass);
  animation: cueRun 2.2s var(--ease) infinite;
}
@keyframes cueRun {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(250%); }
  100% { transform: translateY(250%); }
}
.hero__cue-text { writing-mode: vertical-rl; }

@media (max-width: 700px) {
  .hero__cue { display: none; }
  .hero__dots { bottom: 1.6rem; }
  .hero__body { padding-bottom: 6rem; }
}

/* ==========================================================================
   8. Stats & course
   ========================================================================== */
.stats {
  position: relative;
  background: var(--pine);
  color: var(--cream);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.6rem, 4vw, 2.5rem);
}
@media (min-width: 800px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }

.stats__item {
  position: relative;
  text-align: center;
  padding-inline: .5rem;
}
@media (min-width: 800px) {
  .stats__item + .stats__item::before {
    content: "";
    position: absolute;
    left: 0; top: 15%;
    width: 1px; height: 70%;
    background: var(--line-inv);
  }
}
.stats__value {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 1.6rem + 3vw, 3.8rem);
  line-height: 1;
  font-weight: 300;
  color: var(--brass-l);
  font-variant-numeric: tabular-nums;
}
.stats__label {
  display: block;
  margin-top: .6rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.stats__sub {
  display: block;
  margin-top: .25rem;
  font-size: .78rem;
  color: rgba(247, 244, 236, .6);
}

/* course */
.course__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
}
@media (min-width: 950px) { .course__grid { grid-template-columns: 1.15fr .85fr; } }

.course__side { display: flex; flex-direction: column; gap: 2rem; }
.course__shot { overflow: hidden; }
.course__shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}
.course__shot:hover img { transform: scale(1.08); }

.nines {
  display: grid;
  gap: 1.5rem;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .nines { grid-template-columns: repeat(3, 1fr); } }

.nine {
  position: relative;
  padding: 2rem 1.6rem;
  background: rgba(242, 239, 230, .04);
  border: 1px solid var(--line-inv);
  overflow: hidden;
  transition: background .45s var(--ease), transform .45s var(--ease-out), border-color .45s var(--ease);
}
.nine::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--nine, var(--brass));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .6s var(--ease-out);
}
.nine:hover {
  background: rgba(242, 239, 230, .07);
  border-color: rgba(242, 239, 230, .3);
  transform: translateY(-4px);
}
.nine:hover::before { transform: scaleX(1); }
.nine__chip {
  display: block;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--nine, var(--brass));
  margin-bottom: 1rem;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--nine, var(--brass)) 22%, transparent);
}
.nine__name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.1;
  margin-bottom: .7rem;
}
.nine__name small {
  display: block;
  font-family: var(--f-sans);
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-inv-s);
  margin-top: .3rem;
}
.nine p { font-size: .93rem; color: var(--text-inv-s); }

/* ==========================================================================
   9. Champions timeline
   ========================================================================== */
.timeline {
  position: relative;
  max-width: 62rem;
  margin-inline: auto;
  padding-left: 2.25rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: .6rem; bottom: .6rem;
  width: 1px;
  background: linear-gradient(180deg, var(--brass), rgba(20, 81, 59, .28) 55%, transparent);
}
@media (min-width: 860px) {
  .timeline { padding-left: 0; }
  .timeline::before { left: 50%; }
}

.tl {
  position: relative;
  padding-bottom: clamp(2.2rem, 4vw, 3.2rem);
}
.tl__marker {
  position: absolute;
  left: -2.25rem; top: .45rem;
  width: 15px; height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 0 1px var(--line);
}
.tl__marker i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pine-l);
  transition: background .5s var(--ease), transform .5s var(--ease-out);
}
.tl--flag .tl__marker { width: 19px; height: 19px; box-shadow: 0 0 0 1px var(--brass); }
.tl--flag .tl__marker i { background: var(--brass); width: 9px; height: 9px; }
.tl.is-in .tl__marker i { transform: scale(1); }

.tl__year {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem);
  line-height: 1;
  color: var(--pine-l);
  letter-spacing: .01em;
}
.tl--flag .tl__year { color: var(--brass); }
.tl__title {
  margin-top: .45rem;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: -.005em;
}
.tl__text { margin-top: .5rem; color: var(--text-soft); font-size: .94rem; }

.tl__media {
  margin-top: 1.1rem;
  overflow: hidden;
  max-width: 30rem;
}
.tl__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 1.1s var(--ease-out);
}
.tl__media:hover img { transform: scale(1.09); }

@media (min-width: 860px) {
  .tl { width: 50%; padding-right: 3rem; }
  .tl__marker { left: auto; right: -7.5px; }
  .tl--flag .tl__marker { right: -9.5px; }
  .tl:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 3rem;
    text-align: left;
  }
  .tl:nth-child(odd) { text-align: right; }
  .tl:nth-child(odd) .tl__media { margin-left: auto; }
  .tl:nth-child(even) .tl__marker { left: -7.5px; right: auto; }
  .tl:nth-child(even).tl--flag .tl__marker { left: -9.5px; }
  .tl:nth-child(odd) .eyebrow { flex-direction: row-reverse; }
}

/* ==========================================================================
   10. The club / mosaic
   ========================================================================== */
.mosaic {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
}
.mosaic__item {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}
.mosaic__item img {
  width: 100%; height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}
.mosaic__item--tall img { aspect-ratio: 3 / 4; }
.mosaic__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 23, 18, .35));
  opacity: 0;
  transition: opacity .5s var(--ease);
}
.mosaic__item:hover img { transform: scale(1.08); }
.mosaic__item:hover::after { opacity: 1; }

/* ==========================================================================
   11. Gallery & lightbox
   ========================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: clamp(2rem, 4vw, 3rem);
}
@media (min-width: 700px)  { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1100px) { .gallery { grid-template-columns: repeat(4, 1fr); } }

.gallery__item {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--ink-2);
  aspect-ratio: 4 / 3;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  filter: saturate(.9);
  transition: transform 1.1s var(--ease-out), filter .5s var(--ease);
}
.gallery__veil {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(14, 58, 42, .58);
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.gallery__veil svg {
  width: 30px; height: 30px;
  color: var(--cream);
  transform: scale(.7) rotate(-12deg);
  transition: transform .5s var(--ease-out);
}
.gallery__item:hover img,
.gallery__item:focus-visible img { transform: scale(1.09); filter: saturate(1.05); }
.gallery__item:hover .gallery__veil,
.gallery__item:focus-visible .gallery__veil { opacity: 1; }
.gallery__item:hover .gallery__veil svg,
.gallery__item:focus-visible .gallery__veil svg { transform: none; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1500;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 14, 11, .94);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lightbox__figure {
  position: relative;
  z-index: 2;
  max-width: min(1180px, 92vw);
  max-height: 84vh;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.lightbox__figure img {
  max-width: 100%;
  max-height: 74vh;
  width: auto;
  object-fit: contain;
  margin-inline: auto;
  box-shadow: 0 30px 80px -40px rgba(0, 0, 0, .9);
  opacity: 0;
  transform: scale(.97);
  transition: opacity .4s var(--ease), transform .5s var(--ease-out);
}
.lightbox.is-loaded .lightbox__figure img { opacity: 1; transform: none; }
.lightbox__figure figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--text-inv-s);
  font-size: .85rem;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
}
.lightbox__count {
  font-family: var(--f-sans);
  font-style: normal;
  font-size: .7rem;
  letter-spacing: .16em;
  color: var(--brass);
  flex-shrink: 0;
}

.lightbox__nav, .lightbox__close {
  position: absolute;
  z-index: 3;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  color: var(--cream);
  background: rgba(247, 244, 236, .08);
  border: 1px solid rgba(247, 244, 236, .18);
  border-radius: 50%;
  transition: background .35s var(--ease), transform .35s var(--ease-out), border-color .35s var(--ease);
}
.lightbox__nav svg, .lightbox__close svg { width: 22px; height: 22px; }
.lightbox__nav:hover, .lightbox__close:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--ink);
}
.lightbox__nav--prev { left: clamp(.5rem, 3vw, 2.5rem); top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: clamp(.5rem, 3vw, 2.5rem); top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox__nav--next:hover { transform: translateY(-50%) translateX(3px); }
.lightbox__close { top: clamp(.75rem, 2.5vw, 1.75rem); right: clamp(.75rem, 2.5vw, 1.75rem); }

.lightbox__share {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: clamp(.75rem, 2.5vw, 1.75rem);
  transform: translateX(-50%);
}
@media (max-width: 640px) {
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__figure { max-height: 70vh; }
  .lightbox__figure img { max-height: 58vh; }
}

/* ==========================================================================
   12. Contact, share, footer, motion
   ========================================================================== */
.contact {
  display: grid;
  gap: clamp(2.5rem, 6vw, 4.5rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 950px) { .contact { grid-template-columns: .85fr 1.15fr; } }

.contact__details {
  margin-block: 2.5rem;
  display: grid;
  gap: 1.4rem;
}
.contact__intro .share { margin-top: 2.25rem; }
.contact__k {
  display: block;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: .3rem;
}
.contact__v { color: var(--text-inv); font-size: .98rem; line-height: 1.55; }

/* form */
.form {
  background: rgba(247, 244, 236, .05);
  border: 1px solid var(--line-inv);
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  border-radius: 3px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 560px) { .form__row { grid-template-columns: 1fr 1fr; } }
.form__row + .form__row, .form__row + .field { margin-top: 1.1rem; }

.field { position: relative; }
.field input, .field textarea {
  width: 100%;
  padding: 1.35rem .95rem .55rem;
  font: inherit;
  font-size: .95rem;
  color: var(--text-inv);
  background: rgba(10, 23, 18, .28);
  border: 1px solid var(--line-inv);
  border-radius: 2px;
  transition: border-color .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
  appearance: none;
}
.field textarea { resize: vertical; min-height: 7rem; padding-top: 1.5rem; }
.field label {
  position: absolute;
  left: .95rem; top: .95rem;
  font-size: .95rem;
  color: rgba(242, 239, 230, .55);
  pointer-events: none;
  transform-origin: 0 0;
  transition: transform .28s var(--ease-out), color .28s var(--ease);
}
.field label i { color: var(--brass); font-style: normal; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brass);
  background: rgba(10, 23, 18, .45);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, .14);
}
.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label {
  transform: translateY(-.62rem) scale(.72);
  color: var(--brass);
}
/* date/time inputs never report :placeholder-shown, so pin their labels up */
.field input[type="date"] + label,
.field input[type="time"] + label { transform: translateY(-.62rem) scale(.72); }
.field input[type="date"], .field input[type="time"] { color-scheme: dark; }

.field.has-error input, .field.has-error textarea { border-color: #E0654F; }
.field__err {
  display: block;
  min-height: 0;
  font-size: .74rem;
  color: #F0917D;
  margin-top: .3rem;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .3s var(--ease), transform .3s var(--ease-out);
}
.field.has-error .field__err { opacity: 1; transform: none; }

.form__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.6rem;
}
.form__note { font-size: .76rem; color: var(--text-inv-s); }
.form__note i { color: var(--brass); font-style: normal; }

/* reCAPTCHA v3 ships a floating badge bottom-right. Google allows hiding it
   provided the notice below is shown instead — see .form__legal in index.php. */
.grecaptcha-badge { visibility: hidden; }

.form__legal {
  margin-top: 1rem;
  font-size: .72rem;
  line-height: 1.6;
  color: rgba(242, 239, 230, .48);
}
.form__legal a {
  color: rgba(242, 239, 230, .68);
  border-bottom: 1px solid rgba(242, 239, 230, .28);
  transition: color .25s ease, border-color .25s ease;
}
.form__legal a:hover,
.form__legal a:focus-visible { color: var(--brass-l); border-color: var(--brass-l); }

.form.is-sending .btn { pointer-events: none; opacity: .65; }
.form.is-sending .btn svg { animation: spin .9s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.form__status {
  margin-top: 1.1rem;
  font-size: .9rem;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease-out), padding .4s var(--ease-out);
}
.form__status.is-shown { max-height: 8rem; padding: .85rem 1rem; border-radius: 2px; }
/* The no-JS variant is printed at the top of the form instead of the bottom. */
.form > .form__status:first-child { margin-top: 0; margin-bottom: 1.4rem; }
.form__status.is-ok  { background: rgba(44, 122, 90, .25); border: 1px solid var(--pine-l); color: #C8ECD9; }
.form__status.is-bad { background: rgba(224, 101, 79, .16); border: 1px solid #E0654F; color: #F5BFB2; }

/* -- share ---------------------------------------------------------------- */
.share { display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; }
.share__label {
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.section--dark .share__label,
.section--contact .share__label,
.site-footer .share__label,
.mobile-menu .share__label { color: var(--text-inv-s); }

.share__list { display: flex; gap: .45rem; flex-wrap: wrap; }

.share__btn {
  position: relative;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--pine);
  background: rgba(20, 81, 59, .07);
  transition: transform .4s var(--ease-out), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
}
.share__btn svg { width: 18px; height: 18px; fill: currentColor; }
.share__btn:hover, .share__btn:focus-visible {
  transform: translateY(-3px);
  color: var(--cream);
  background: var(--pine);
  box-shadow: 0 10px 20px -12px rgba(10, 23, 18, .9);
}
.share__btn--whatsapp:hover { background: #25D366; color: #06301A; }
.share__btn--facebook:hover { background: #1877F2; }
.share__btn--x:hover        { background: #111; }
.share__btn--linkedin:hover { background: #0A66C2; }
.share__btn--telegram:hover { background: #229ED9; }
.share__btn--email:hover    { background: var(--brass); color: var(--ink); }
.share__btn--copy:hover,
.share__btn--native:hover   { background: var(--brass); color: var(--ink); }

.share__tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  padding: .3rem .55rem;
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--cream);
  background: var(--ink);
  border-radius: 2px;
  opacity: 0;
  transform: translate(-50%, 4px);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease-out);
}
.share__btn:hover .share__tip, .share__btn:focus-visible .share__tip {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* on dark grounds */
.section--dark .share__btn,
.section--contact .share__btn,
.site-footer .share__btn,
.mobile-menu .share__btn,
.lightbox .share__btn {
  color: var(--cream);
  background: rgba(247, 244, 236, .09);
}

/* fixed vertical rail */
.share--rail {
  position: fixed;
  left: 0; top: 50%;
  z-index: 1100;
  transform: translateY(-50%) translateX(-100%);
  flex-direction: column;
  gap: .5rem;
  padding: .6rem .45rem;
  background: rgba(247, 244, 236, .9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 18px 40px -30px rgba(10, 23, 18, .9);
  opacity: 0;
  transition: transform .6s var(--ease-out), opacity .5s var(--ease);
}
.share--rail.is-shown { transform: translateY(-50%); opacity: 1; }
.share--rail .share__label { display: none; }
.share--rail .share__list { flex-direction: column; gap: .2rem; }
.share--rail .share__btn { width: 36px; height: 36px; }
.share--rail .share__tip {
  bottom: auto; top: 50%; left: calc(100% + 8px);
  transform: translate(-4px, -50%);
}
.share--rail .share__btn:hover .share__tip,
.share--rail .share__btn:focus-visible .share__tip { transform: translate(0, -50%); }
@media (max-width: 1180px) { .share--rail { display: none; } }

.share--compact .share__btn { width: 36px; height: 36px; }

/* Keep all the icons on one row inside the overlay on a narrow phone. */
.mobile-menu .share { width: 100%; }
.mobile-menu .share__list { gap: .3rem; }
@media (max-width: 430px) {
  .mobile-menu .share__btn { width: 34px; height: 34px; }
  .mobile-menu .share__btn svg { width: 16px; height: 16px; }
}

/* -- footer --------------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--text-inv); }
.site-footer__inner {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-block: clamp(3rem, 7vw, 5rem);
  grid-template-columns: 1fr;
}
/* Three columns from the width where the share row still fits on one line:
   the label moves above the buttons, and the column is sized to them (8 slots —
   7, plus the native-share button main.js unhides where the browser has one). */
@media (min-width: 960px) {
  .site-footer__inner { grid-template-columns: 1.4fr 1.1fr auto; }
  .site-footer__share .share { flex-direction: column; align-items: flex-start; gap: .7rem; }
  .site-footer__share .share__list { flex-wrap: nowrap; gap: .35rem; }
  .site-footer__share .share__btn { width: 34px; height: 34px; }
  .site-footer__share .share__btn svg { width: 16px; height: 16px; }
}
.site-footer__brand img { height: 34px; width: auto; }
.site-footer__brand p {
  margin-top: 1rem;
  max-width: 26ch;
  font-size: .9rem;
  color: var(--text-inv-s);
}
/* Two columns, filled top-to-bottom. Six $NAV items -> 3 rows; raise the row
   count if the nav grows, or a third column appears. */
.site-footer__nav ul {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(3, auto);
  justify-content: start;
  column-gap: clamp(1.25rem, 3vw, 2.5rem);
  row-gap: .55rem;
}
.site-footer__nav a { font-size: .88rem; color: var(--text-inv-s); }
.site-footer__nav a:hover { color: var(--brass-l); }
.site-footer__share { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; }

.socials { display: flex; gap: .45rem; }
.socials__btn {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--cream);
  background: rgba(247, 244, 236, .09);
  transition: transform .4s var(--ease-out), background .35s var(--ease), color .35s var(--ease);
}
.socials__btn svg { width: 19px; height: 19px; fill: currentColor; }
.socials__btn:hover { transform: translateY(-3px); background: var(--brass); color: var(--ink); }

.site-footer__bar { border-top: 1px solid var(--line-inv); }
.site-footer__bar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 1.4rem;
}
.site-footer__bar p { font-size: .78rem; color: rgba(242, 239, 230, .5); }

.to-top {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-inv-s);
  transition: color .35s var(--ease);
}
.to-top svg { width: 16px; height: 16px; transition: transform .45s var(--ease-out); }
.to-top:hover { color: var(--brass-l); }
.to-top:hover svg { transform: translateY(-4px); }

/* -- toast ---------------------------------------------------------------- */
.toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  z-index: 1600;
  padding: .8rem 1.3rem;
  font-size: .8rem;
  letter-spacing: .06em;
  color: var(--ink);
  background: var(--brass);
  border-radius: 3px;
  box-shadow: 0 18px 40px -22px rgba(0, 0, 0, .8);
  opacity: 0;
  transform: translate(-50%, 14px);
  pointer-events: none;
  transition: opacity .35s var(--ease), transform .45s var(--ease-out);
}
.toast.is-shown { opacity: 1; transform: translate(-50%, 0); }

/* ==========================================================================
   Scroll reveal + motion preferences
   ========================================================================== */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity .85s var(--ease-out) var(--d, 0ms),
    transform .85s var(--ease-out) var(--d, 0ms);
  will-change: opacity, transform;
}
.js [data-reveal].is-in { opacity: 1; transform: none; }

[data-parallax] { will-change: transform; }

@media (prefers-reduced-motion: reduce) {
  html, html.smooth-scroll { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .js [data-reveal] { opacity: 1 !important; transform: none !important; }
  .js .hero__eyebrow, .js .hero__title .hero__line,
  .js .hero__lede, .js .hero__actions { opacity: 1 !important; transform: none !important; }
  .hero__slide img { transform: none !important; }
  .mobile-menu { clip-path: none !important; }
  [data-parallax] { transform: none !important; }
}

@media print {
  .site-header, .mobile-menu, .share, .hero__cue, .hero__dots,
  .scroll-progress, .lightbox, .toast { display: none !important; }
  .hero { min-height: auto; }
  body { color: #000; background: #fff; }
}
