/* Diana Sosa · dianasosa.com
   Art direction: Miami golden hour editorial. Warm sand paper, grapefruit
   terracotta, blush, ink espresso. Magazine grid with grid-breaking type. */

:root {
  --sand: #f2ece2;
  --paper: #fbf8f3;
  --ink: #1f1c19;
  --espresso: #33261f;
  --soft: #6d655c;
  --clay: #c4674a;
  --clay-deep: #a8543a;
  --blush: #efd2ca;
  --blush-soft: #f7e6e1;
  --line: #ddd2c4;
  --line-soft: #e7ded2;

  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", "Helvetica Neue", sans-serif;
  --script: "Ms Madi", "Snell Roundhand", cursive;

  --pad: clamp(20px, 5vw, 80px);
  --maxw: 1240px;
  --ease: cubic-bezier(.2, .7, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

/* clip, not hidden: it stops the decorative glow from widening the page
   without turning html/body into a scroll container, which would break the
   sticky masthead. */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  font-optical-sizing: auto;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: -999px; top: 8px; z-index: 100;
  background: var(--ink); color: var(--paper);
  padding: 10px 18px; border-radius: 99px; font-size: 14px;
  text-decoration: none;
}
.skip:focus { left: 12px; }

/* ── Atmosphere ────────────────────────────────────────── */

.grain {
  position: fixed; inset: 0; z-index: 60; pointer-events: none;
  opacity: .34; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
}

/* ── Masthead ──────────────────────────────────────────── */

.masthead {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s var(--ease);
}
.masthead.is-stuck {
  background: rgba(242, 236, 226, .88);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line);
}
.masthead-in {
  max-width: var(--maxw); margin: 0 auto;
  padding: 14px var(--pad);
  display: flex; align-items: center; gap: 24px;
}

.wordmark {
  font-family: var(--display);
  font-size: 21px; font-weight: 600; letter-spacing: -.02em;
  text-decoration: none; line-height: 1; white-space: nowrap;
  /* padded to a comfortable thumb target, not just the height of the glyphs */
  display: inline-flex; align-items: center; min-height: 44px;
}
.wordmark em { font-style: italic; color: var(--clay); margin-left: .28em; }
.wordmark.static { margin: 0; font-size: 30px; }

.mast-nav {
  margin-left: auto; display: flex; gap: clamp(14px, 2.4vw, 30px);
  font-size: 14px; letter-spacing: .08em; text-transform: uppercase;
}
.mast-nav a {
  text-decoration: none; color: var(--soft); padding: 6px 0;
  position: relative; transition: color .3s var(--ease);
}
.mast-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 2px;
  height: 1px; background: var(--clay); transition: right .35s var(--ease);
}
.mast-nav a:hover { color: var(--ink); }
.mast-nav a:hover::after { right: 0; }

.lang { display: flex; border: 1px solid var(--line); border-radius: 99px; overflow: hidden; }
.lang button {
  appearance: none; border: 0; background: transparent; cursor: pointer;
  font: inherit; font-size: 12px; letter-spacing: .12em;
  padding: 12px 16px; color: var(--soft);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.lang button[aria-pressed="true"] { background: var(--ink); color: var(--paper); }

/* ── Buttons ───────────────────────────────────────────── */

.btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  font: inherit; font-size: 15px; letter-spacing: .01em;
  padding: 14px 28px; border-radius: 99px; border: 1px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
}
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: var(--clay); transform: translateY(-2px); box-shadow: 0 14px 30px -14px rgba(164, 84, 58, .8); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); transform: translateY(-2px); }
.btn-blush { background: var(--blush); color: var(--espresso); }
.btn-blush:hover { background: var(--paper); transform: translateY(-2px); }

.tinylink {
  font-size: 14px; color: var(--soft); text-decoration: none;
  border-bottom: 1px solid var(--line); padding-bottom: 2px;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.tinylink:hover { color: var(--clay); border-color: var(--clay); }

/* ── Section furniture ─────────────────────────────────── */

.sec { padding: clamp(64px, 9vw, 130px) var(--pad); max-width: var(--maxw); margin: 0 auto; }

.sec-head {
  display: flex; gap: clamp(18px, 4vw, 48px); align-items: flex-start;
  margin-bottom: clamp(34px, 5vw, 60px);
}
.num {
  font-family: var(--display); font-size: 15px; font-weight: 500;
  color: var(--clay); letter-spacing: .1em; margin: 10px 0 0;
  flex: 0 0 auto;
}
.kicker {
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--soft); margin: 0 0 12px;
}
h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(34px, 5.4vw, 62px); line-height: 1.02;
  letter-spacing: -.03em; margin: 0; max-width: 15ch;
}
h3 { font-family: var(--display); font-weight: 500; font-size: 23px; letter-spacing: -.02em; margin: 0 0 10px; }

.fineprint { font-size: 13px; color: var(--soft); line-height: 1.55; }
.script { font-family: var(--script); color: var(--clay); font-size: clamp(30px, 4vw, 46px); line-height: 1; margin: 0; }

/* ── Hero ──────────────────────────────────────────────── */

.hero { position: relative; padding: clamp(30px, 5vw, 60px) var(--pad) clamp(40px, 6vw, 72px); max-width: var(--maxw); margin: 0 auto; }

.hero-glow {
  position: absolute; z-index: -1; inset: -18% -22% auto auto;
  width: min(880px, 92vw); aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(239, 200, 178, .95), rgba(242, 236, 226, 0) 66%);
  filter: blur(14px);
}

.rail {
  position: absolute; left: calc(var(--pad) - 34px); top: 46%;
  transform: rotate(-90deg); transform-origin: left center;
  font-size: 11px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--soft); margin: 0; white-space: nowrap;
}

.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(0, .94fr);
  gap: clamp(20px, 3vw, 44px); align-items: end;
}

.bigname {
  font-family: var(--display); font-weight: 300;
  font-size: clamp(76px, 15.5vw, 210px); line-height: .82;
  letter-spacing: -.055em; margin: 6px 0 0;
  font-variation-settings: "SOFT" 20, "WONK" 1;
}
.bigname .ln { display: block; }
.bigname .ln-2 {
  font-style: italic; color: var(--clay);
  padding-left: .12em;
  font-variation-settings: "SOFT" 40, "WONK" 1;
}

.hero-type .script { margin: 14px 0 0; transform: rotate(-3deg); transform-origin: left center; }

.hero-lede { max-width: 44ch; color: var(--soft); margin: 22px 0 0; font-size: 17px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-photo { margin: 0; position: relative; }
.hero-photo picture { display: block; }
.hero-photo img {
  width: 100%; border-radius: 260px 260px 14px 14px;
  filter: saturate(1.03) contrast(1.02);
  box-shadow: 0 40px 80px -50px rgba(51, 38, 31, .6);
}
.photo-tag {
  position: absolute; left: -14px; bottom: 24px;
  background: var(--paper); border: 1px solid var(--line);
  padding: 7px 15px; border-radius: 99px;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--soft);
}

.scroll-cue {
  display: inline-flex; align-items: center; gap: 10px; min-height: 44px;
  margin-top: clamp(18px, 3.4vw, 36px);
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--soft); text-decoration: none;
}
.scroll-cue::after {
  content: ""; width: 44px; height: 1px; background: var(--clay);
  transform-origin: left; animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue { 0%, 100% { transform: scaleX(.4); } 50% { transform: scaleX(1); } }

/* ── Marquee ───────────────────────────────────────────── */

.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--paper); overflow: hidden; padding: 15px 0;
}
.marquee-track {
  display: flex; gap: 30px; align-items: center; width: max-content;
  animation: slide 34s linear infinite;
  font-family: var(--display); font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 300; letter-spacing: -.02em; white-space: nowrap;
}
.marquee-track i { color: var(--clay); font-style: normal; font-size: .5em; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ── Link hub ──────────────────────────────────────────── */

.link-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }

.link-row {
  position: relative; border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.link-row a {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center; gap: clamp(12px, 3vw, 34px);
  padding: clamp(20px, 3vw, 30px) clamp(10px, 2vw, 22px);
  text-decoration: none; min-height: 76px;
  transition: color .4s var(--ease), padding-left .4s var(--ease);
}
.link-row::before {
  content: ""; position: absolute; inset: 0; background: var(--ink);
  transform: translateY(101%); transition: transform .5s var(--ease);
}
.link-row:hover::before, .link-row:focus-within::before { transform: translateY(0); }
.link-row:hover a, .link-row:focus-within a { color: var(--paper); padding-left: clamp(18px, 3vw, 34px); }
.link-row:hover .link-note, .link-row:focus-within .link-note,
.link-row:hover .link-stat-label, .link-row:focus-within .link-stat-label { color: var(--blush); }
.link-row:hover .link-handle, .link-row:focus-within .link-handle { color: var(--blush); }
.link-row:hover .link-arrow, .link-row:focus-within .link-arrow { transform: translate(6px, -6px); color: var(--blush); }
/* The star sits after the handle, which is inline, so it never breaks onto
   a line of its own the way a marker after the block name would. */
.link-row.is-featured .link-handle::after {
  content: "✦"; color: var(--clay); margin-left: .5em; font-size: .9em;
}
.link-row:hover.is-featured .link-handle::after,
.link-row:focus-within.is-featured .link-handle::after { color: var(--blush); }

.link-name {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(26px, 3.8vw, 44px); letter-spacing: -.03em; line-height: 1.05;
  margin: 0;
}
.link-handle { display: block; font-family: var(--sans); font-size: 13px; letter-spacing: .04em; color: var(--soft); margin-top: 4px; }
.link-note { font-size: 14px; color: var(--soft); margin: 0; max-width: 30ch; transition: color .4s var(--ease); }
.link-stat { text-align: right; }
.link-stat b { font-family: var(--display); font-weight: 500; font-size: clamp(19px, 2.4vw, 28px); letter-spacing: -.02em; display: block; }
.link-stat-label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--soft); transition: color .4s var(--ease); }
.link-arrow { font-size: 22px; transition: transform .4s var(--ease), color .4s var(--ease); }

.sec-links .fineprint { margin-top: 20px; }

/* ── About ─────────────────────────────────────────────── */

.sec-about { padding-top: clamp(48px, 7vw, 100px); }
.about-grid {
  display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 74px); align-items: center;
}
.about-photo { margin: 0; }
.about-photo img {
  width: 100%; border-radius: 14px 14px 200px 200px;
  box-shadow: 0 40px 70px -50px rgba(51, 38, 31, .55);
}
.about-copy .num { margin: 0 0 14px; }
.about-copy p { color: var(--soft); max-width: 52ch; }
.about-copy h2 { margin-bottom: 18px; }
.about-copy .sign { margin-top: 22px; transform: rotate(-2.5deg); transform-origin: left center; }

.pillars {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  margin-top: clamp(44px, 6vw, 78px);
}
.pillar {
  background: var(--sand); padding: 26px 24px 30px;
  transition: background .4s var(--ease);
}
.pillar:hover { background: var(--paper); }
.pillar .pi { font-family: var(--display); color: var(--clay); font-size: 13px; letter-spacing: .1em; }
.pillar h3 { margin: 12px 0 8px; font-size: 21px; }
.pillar p { margin: 0; font-size: 14.5px; color: var(--soft); }

/* ── Watch ─────────────────────────────────────────────── */

.watch-grid {
  display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: clamp(20px, 3.4vw, 44px); align-items: start;
}
.video-card { position: relative; }
.video-facade {
  position: relative; display: block; width: 100%; padding: 0;
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
  background: var(--paper); cursor: pointer; aspect-ratio: 16 / 9;
}
.video-facade img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease), filter .5s var(--ease); }
.video-facade:hover img { transform: scale(1.035); filter: saturate(1.08); }
.video-facade .play {
  position: absolute; inset: 50% auto auto 50%; transform: translate(-50%, -50%);
  width: 78px; height: 78px; border-radius: 50%;
  background: rgba(251, 248, 243, .93);
  box-shadow: 0 18px 40px -18px rgba(31, 28, 25, .7);
  transition: transform .45s var(--ease), background .35s var(--ease);
}
.video-facade .play::after {
  content: ""; position: absolute; inset: 50% auto auto 54%; transform: translate(-50%, -50%);
  border-left: 20px solid var(--clay); border-top: 12px solid transparent; border-bottom: 12px solid transparent;
}
.video-facade:hover .play { transform: translate(-50%, -50%) scale(1.08); background: var(--paper); }
.video-card iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 14px; display: block; }
.video-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; align-items: baseline; margin-top: 16px; }
.video-title { font-family: var(--display); font-size: 20px; letter-spacing: -.02em; margin: 0; }

.shop-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  padding: clamp(24px, 3vw, 34px);
}
.shop-card h3 { font-size: 27px; }
.shop-card p { color: var(--soft); font-size: 15px; }
.shop-card .btn { margin: 8px 0 14px; }

/* ── Brands (dark beat) ────────────────────────────────── */

.sec-brands {
  max-width: none; background: var(--espresso); color: var(--blush-soft);
  padding-left: 0; padding-right: 0;
  position: relative; overflow: hidden;
}
.sec-brands::before {
  content: ""; position: absolute; inset: -30% -10% auto auto; width: 700px; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(196, 103, 74, .5), rgba(51, 38, 31, 0) 68%);
  pointer-events: none;
}
.brands-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); position: relative; }
.sec-brands h2, .sec-brands h3 { color: var(--paper); }
.sec-brands .kicker { color: var(--blush); }
.sec-brands .num { color: var(--blush); }
.sec-brands .lead { font-size: 18px; color: var(--blush-soft); max-width: 46ch; margin: 0 0 34px; }

.brands-grid {
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: clamp(30px, 5vw, 70px); align-items: start;
}

.stats {
  list-style: none; margin: 0 0 38px; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1px; background: rgba(239, 210, 202, .22);
  border: 1px solid rgba(239, 210, 202, .22);
}
.stats li { background: var(--espresso); padding: 20px 18px; }
.stats b {
  display: block; font-family: var(--display); font-weight: 400;
  font-size: clamp(30px, 4vw, 44px); letter-spacing: -.03em; color: var(--paper); line-height: 1;
}
.stats span { display: block; margin-top: 8px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--blush); }

.caps { list-style: none; margin: 14px 0 32px; padding: 0; }
.caps li {
  display: flex; gap: 14px; align-items: baseline;
  padding: 11px 0; border-bottom: 1px solid rgba(239, 210, 202, .18);
  font-size: 15.5px;
}
.caps li span { font-family: var(--display); font-size: 12px; color: var(--blush); letter-spacing: .1em; }
.brands-cta { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.sec-brands .tinylink { color: var(--blush); border-color: rgba(239, 210, 202, .4); }
.sec-brands .tinylink:hover { color: var(--paper); border-color: var(--paper); }

/* ── Forms ─────────────────────────────────────────────── */

.form { margin: 0; }
.form-inquiry {
  background: rgba(251, 248, 243, .06); border: 1px solid rgba(239, 210, 202, .24);
  border-radius: 16px; padding: clamp(22px, 3vw, 34px);
  backdrop-filter: blur(6px);
}
.form label { display: block; margin-bottom: 16px; }
.form label > span { display: block; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--blush); margin-bottom: 7px; }
.form input, .form textarea {
  width: 100%; font: inherit; font-size: 15.5px; color: var(--paper);
  background: rgba(31, 28, 25, .32); border: 1px solid rgba(239, 210, 202, .3);
  border-radius: 10px; padding: 12px 14px; resize: vertical;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.form input::placeholder, .form textarea::placeholder { color: rgba(239, 210, 202, .5); }
.form input:focus, .form textarea:focus { border-color: var(--blush); background: rgba(31, 28, 25, .5); outline: none; }
.form-inquiry .btn { width: 100%; margin-top: 4px; background: var(--blush); color: var(--espresso); }
.form-inquiry .btn:hover { background: var(--paper); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-msg { font-size: 14px; margin: 14px 0 0; min-height: 20px; }
.form-msg.ok { color: var(--blush); }
.form-msg.err { color: #ffb4a2; }
.form.is-busy { opacity: .72; pointer-events: none; }

/* ── Girlies Club ──────────────────────────────────────── */

.sec-club {
  max-width: none; padding-left: 0; padding-right: 0;
  background: linear-gradient(168deg, var(--blush-soft), var(--blush) 78%);
  text-align: center; position: relative; overflow: hidden;
}
.club-inner { max-width: 720px; margin: 0 auto; padding: 0 var(--pad); position: relative; }
.club-inner .num { margin: 0 0 10px; }
.club-inner h2 { max-width: none; margin: 0 auto; }
.club-lede { color: var(--espresso); opacity: .82; max-width: 46ch; margin: 18px auto 30px; }
.form-club { max-width: 620px; margin: 0 auto; }
.club-row { display: flex; flex-wrap: wrap; gap: 10px; }
.sr-field { flex: 1 1 190px; margin: 0; }
.form-club input {
  background: rgba(251, 248, 243, .8); border: 1px solid rgba(51, 38, 31, .16);
  color: var(--espresso); border-radius: 99px; padding: 14px 20px;
}
.form-club input::placeholder { color: rgba(51, 38, 31, .45); }
.form-club input:focus { background: var(--paper); border-color: var(--espresso); }
.form-club .btn { flex: 0 0 auto; }
.form-club .form-msg.ok { color: var(--espresso); font-weight: 500; }
.form-club .form-msg.err { color: #8c2f16; }

/* ── Footer ────────────────────────────────────────────── */

.foot { background: var(--ink); color: var(--sand); padding: clamp(44px, 6vw, 72px) var(--pad); }
.foot-in {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 30px; align-items: start;
}
.foot .wordmark em { color: var(--blush); }
.foot .fineprint { color: rgba(242, 236, 226, .6); margin: 8px 0 0; }
.foot-social { display: flex; flex-direction: column; gap: 10px; }
.foot-social a {
  text-decoration: none; font-size: 15px; width: fit-content;
  border-bottom: 1px solid transparent; transition: border-color .3s var(--ease), color .3s var(--ease);
}
.foot-social a:hover { color: var(--blush); border-bottom-color: var(--blush); }
.foot-alt { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.foot .tinylink { color: var(--blush); border-color: rgba(239, 210, 202, .35); }
.foot .tinylink:hover { color: var(--paper); border-color: var(--paper); }

/* ── Motion ────────────────────────────────────────────────
   Every animated element's resting state is the VISIBLE one. The hero
   entrance is a CSS keyframe with fill backwards, and scroll reveals are
   opt-in through .reveal-on, added by JS only once the observer is armed.
   If a script fails, a frame never paints, or the tab opens in the
   background, the page still reads as a finished page. */

.hero-type .kicker,
.hero-lede,
.hero-cta .btn,
.hero-photo,
.photo-tag,
.scroll-cue,
.rail,
.masthead-in > * { animation: rise .9s var(--ease) backwards; }

.hero-type .kicker { animation-delay: .05s; }
.bigname .ln { display: block; animation: lift 1.1s var(--ease) backwards; }
.bigname .ln-1 { animation-delay: .12s; }
.bigname .ln-2 { animation-delay: .24s; }
.hero-type .script { animation: tilt 1s var(--ease) .5s backwards; }
.hero-lede { animation-delay: .5s; }
.hero-cta .btn:nth-child(1) { animation-delay: .6s; }
.hero-cta .btn:nth-child(2) { animation-delay: .68s; }
.hero-photo { animation: bloom 1.3s var(--ease) .2s backwards; }
.photo-tag { animation-delay: .95s; }
.scroll-cue { animation-delay: 1.05s; }
.rail { animation-delay: 1.15s; }
.masthead-in > *:nth-child(1) { animation-delay: .02s; }
.masthead-in > *:nth-child(2) { animation-delay: .09s; }
.masthead-in > *:nth-child(3) { animation-delay: .16s; }

@keyframes rise { from { opacity: 0; transform: translateY(18px); } }
@keyframes lift { from { opacity: 0; transform: translateY(44%); } }
@keyframes tilt { from { opacity: 0; transform: rotate(-14deg) translateY(10px); } }
@keyframes bloom { from { opacity: 0; transform: scale(1.05); } }

.reveal-on .rv { opacity: 0; transform: translateY(24px); }
.reveal-on .rv.in {
  opacity: 1; transform: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

/* ── Responsive ────────────────────────────────────────── */

@media (max-width: 1000px) {
  .brands-grid, .watch-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 420px; }
}

@media (max-width: 860px) {
  .rail { display: none; }
  .mast-nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; align-items: start; }
  .hero-photo { max-width: 78%; margin: 30px auto 0; }
  .bigname { font-size: clamp(72px, 21vw, 150px); }
  .photo-tag { left: auto; right: -8px; }
  /* Two columns on a phone: everything readable on the left, the number on
     the right. The arrow goes away because the whole row is the tap target. */
  .link-row a { grid-template-columns: minmax(0, 1fr) auto; align-items: center; padding: 18px 6px; }
  .link-stat { text-align: right; }
  .link-arrow { display: none; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .masthead-in { padding: 12px var(--pad); gap: 12px; }
  .wordmark { font-size: 19px; }
  .hero-photo { max-width: 92%; }
  .hero-cta .btn { flex: 1 1 100%; text-align: center; }
  .club-row { flex-direction: column; }
  .form-club .btn { width: 100%; }
  .pillars { grid-template-columns: 1fr; }
}

/* ── Reduced motion ────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .rv, .reveal-on .rv { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
  .hero-type .kicker, .hero-lede, .hero-cta .btn, .hero-photo, .photo-tag,
  .scroll-cue, .rail, .masthead-in > *, .bigname .ln, .hero-type .script {
    animation: none !important; opacity: 1 !important; transform: none !important;
  }
}
