/* ==========================================================================
   DIVINE OUTDOORS CO. — STYLESHEET
   Design system: dark, cinematic, premium outdoor brand.
   Palette: near-black, charcoal, off-white, muted earth tones.
   ========================================================================== */

:root {
  /* --- Color: base --- */
  --black: #0a0a09;
  --charcoal-900: #121210;
  --charcoal-800: #181815;
  --charcoal-700: #221f1c;
  --charcoal-600: #2c2823;
  --line: rgba(242, 237, 228, 0.12);
  --line-strong: rgba(242, 237, 228, 0.22);

  --off-white: #f2ede4;
  --off-white-dim: #d9d2c3;
  --stone: #a89e8d;
  --stone-dim: #7c7364;

  /* --- Color: earth accent (used sparingly) --- */
  --brass: #b08d57;
  --brass-dim: #8a6f45;
  --rust: #8a5a3c;

  /* --- Type --- */
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* --- Spacing / layout --- */
  --container-w: 1360px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-pad: clamp(4.5rem, 10vw, 8rem);

  /* --- Motion --- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 220ms;
  --dur-med: 480ms;
  --dur-slow: 900ms;

  color-scheme: dark;
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}
ul, ol { list-style: none; margin: 0; padding: 0; }
img, picture, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }
svg { display: block; }

html, body {
  height: 100%;
}
body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.92;
  font-weight: 400;
}
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--stone);
}
.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  line-height: 0.95;
  color: var(--off-white);
}
.section-lede {
  max-width: 46ch;
  color: var(--off-white-dim);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
}
h1, h2, h3 { font-family: var(--font-display); text-transform: uppercase; }

.container {
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--off-white);
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn:hover { border-color: var(--off-white); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-solid {
  background: var(--off-white);
  color: var(--black);
  border-color: var(--off-white);
}
.btn-solid:hover { background: var(--brass); border-color: var(--brass); color: var(--black); }
.btn-ghost { color: var(--off-white-dim); }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }

/* ==========================================================================
   NAV
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.1rem 0;
  transition: background var(--dur-med) var(--ease), padding var(--dur-med) var(--ease), border-color var(--dur-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(10, 10, 9, 0.86);
  backdrop-filter: blur(10px) saturate(1.1);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  border-bottom-color: var(--line);
  padding: 0.7rem 0;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.brand img {
  height: 34px;
  width: auto;
  transition: height var(--dur-med) var(--ease);
}
.site-header.is-scrolled .brand img { height: 28px; }
.brand-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.nav-links {
  display: none;
}
@media (min-width: 900px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: clamp(1.4rem, 2vw, 2.4rem);
  }
  .nav-links a {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--off-white-dim);
    position: relative;
    padding-block: 0.3rem;
    transition: color var(--dur-fast) var(--ease);
  }
  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 1px;
    background: var(--off-white);
    transition: right var(--dur-med) var(--ease);
  }
  .nav-links a:hover { color: var(--off-white); }
  .nav-links a:hover::after { right: 0; }
  .nav-links a.is-active { color: var(--off-white); }
}

.nav-cta { display: none; }
@media (min-width: 900px) {
  .nav-cta { display: inline-flex; padding: 0.65rem 1.3rem; font-size: 0.72rem; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
}
@media (min-width: 900px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--off-white);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--gutter) 3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease), visibility 0s linear var(--dur-med);
}
.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease), visibility 0s;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 11vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--off-white);
  padding: 0.25rem 0;
  display: inline-block;
  border-bottom: 1px solid var(--line);
  width: 100%;
}
.mobile-menu-foot {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.5rem;
}
.mobile-menu-foot a {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}
body.menu-open { overflow: hidden; }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transform: scale(1.06);
  will-change: transform;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8,8,7,0.55) 0%, rgba(8,8,7,0.15) 30%, rgba(8,8,7,0.35) 62%, rgba(6,6,5,0.92) 100%),
    linear-gradient(90deg, rgba(6,6,5,0.35) 0%, transparent 30%, transparent 70%, rgba(6,6,5,0.35) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  /* extra room so the scroll indicator never collides with the tagline */
  padding-bottom: clamp(6rem, 13vw, 9.5rem);
  text-align: center;
}
.hero-eyebrow {
  color: var(--off-white-dim);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--line-strong);
}
.hero-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.9rem, 11vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0.005em;
  color: var(--off-white);
  text-wrap: balance;
}
.hero-sub {
  margin: 1.3rem auto 0;
  max-width: 34ch;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 400;
  color: var(--off-white-dim);
  letter-spacing: 0.01em;
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: clamp(1.2rem, 3vw, 2rem);
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--off-white-dim);
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--off-white) 0%, transparent 100%);
  overflow: hidden;
  position: relative;
}
.hero-scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0; right: 0;
  height: 100%;
  background: var(--off-white);
  animation: scrollDrip 2.2s var(--ease) infinite;
}
@keyframes scrollDrip {
  0% { top: -100%; }
  60% { top: 100%; }
  100% { top: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line::after { animation: none; display: none; }
}
/* Short viewports (small laptop windows, landscape phones, browser
   chrome eating into vh): tighten the hero so nothing collides. */
@media (max-height: 720px) {
  .hero-title { font-size: clamp(2.4rem, 9vw, 5rem); }
  .hero-eyebrow { margin-bottom: 0.7rem; }
  .hero-sub { margin-top: 0.8rem; }
  .hero-content { padding-bottom: clamp(5rem, 13vw, 7rem); }
  .hero-scroll-line { height: 22px; }
}
@media (max-height: 560px) {
  .hero-scroll { display: none; }
}

/* ==========================================================================
   TEASER — click-to-play video, sits right below the hero
   ========================================================================== */
.teaser-section {
  background: var(--black);
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
}
.teaser-frame {
  position: relative;
  max-width: 920px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--charcoal-900);
}
.teaser-play {
  position: relative;
  display: block;
  width: 100%; height: 100%;
}
.teaser-play img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease), filter var(--dur-slow) var(--ease);
}
.teaser-play::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,5,0.15), rgba(6,6,5,0.55));
  transition: background var(--dur-med) var(--ease);
}
.teaser-play:hover img { transform: scale(1.03); filter: brightness(0.8); }
.teaser-play-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 76px; height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(242,237,228,0.55);
  background: rgba(10,10,9,0.35);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease);
}
.teaser-play-icon svg { width: 24px; height: 24px; margin-left: 3px; }
.teaser-play:hover .teaser-play-icon {
  background: var(--off-white);
  border-color: var(--off-white);
  transform: translate(-50%, -50%) scale(1.06);
  color: var(--black);
}
.teaser-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.teaser-caption {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  color: var(--off-white-dim);
}

/* ==========================================================================
   SLOGAN BAND — "Born Divine. Built Outdoors."
   The brand's core slogan lockup. Reused (in spirit) across About and the
   footer — keep the treatment consistent if you carry it to merch/social.
   ========================================================================== */
.slogan-band {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.slogan-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.slogan-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.42) saturate(0.9);
}
.slogan-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,5,0.55), rgba(6,6,5,0.72));
}
.slogan-body {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: 3.5rem;
}
.slogan-mark {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.1rem;
}
.slogan-text {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0.005em;
  color: var(--off-white);
}

/* Compact inline variant — used in About / Footer */
.slogan-lockup {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--off-white);
  line-height: 1.15;
}

/* Scripture — deliberately a different register from the slogan: a quiet
   serif quote rather than shouting condensed caps. Used sparingly. */
.scripture-divider {
  width: 34px;
  height: 1px;
  background: var(--brass-dim);
  margin: 1.75rem auto;
}
.scripture-quote {
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 2.6vw, 1.65rem);
  line-height: 1.5;
  color: var(--off-white-dim);
  max-width: 30ch;
  margin-inline: auto;
}
.scripture-ref {
  margin-top: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
}
/* Secondary (quieter) appearance — footer, etc. */
.scripture-ref.is-quiet { color: var(--stone-dim); margin-top: 0.35rem; }
.scripture-quote.is-quiet {
  font-size: 0.82rem;
  color: var(--stone);
  max-width: 34ch;
  margin-inline: 0;
  margin-top: 0.75rem;
}

/* ==========================================================================
   SECTION SCAFFOLDING
   ========================================================================== */
section { position: relative; }
.section-pad { padding-block: var(--section-pad); }
.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: clamp(2.25rem, 5vw, 3.75rem);
}
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.on-charcoal { background: var(--charcoal-900); }

/* ==========================================================================
   FEATURED FILMS — editorial rail
   ========================================================================== */
.film-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(76vw, 340px);
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 1rem;
  margin: 0 calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scrollbar-width: none;
}
.film-rail::-webkit-scrollbar { display: none; }
@media (min-width: 1000px) {
  .film-rail {
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: row;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
    margin: 0;
    padding-inline: 0;
  }
}

.film-card {
  scroll-snap-align: start;
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  overflow: hidden;
  background: var(--charcoal-800);
  display: block;
  isolation: isolate;
}
.film-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease), filter var(--dur-slow) var(--ease);
}
.film-card:hover img { transform: scale(1.06); filter: brightness(0.75); }
.film-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,7,0) 40%, rgba(6,6,5,0.92) 100%);
  z-index: 1;
}
.film-card-meta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 1.2rem;
}
.film-card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.5rem;
  display: block;
}
.film-card-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  text-transform: uppercase;
  color: var(--off-white);
  line-height: 1.02;
}
.film-card-play {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 2;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(242,237,228,0.5);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  background: rgba(10,10,9,0.25);
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.film-card:hover .film-card-play { background: var(--off-white); transform: scale(1.06); }
.film-card:hover .film-card-play svg { stroke: var(--black); }
.film-card-play svg { width: 13px; height: 13px; transition: stroke var(--dur-fast) var(--ease); }
.film-card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  background: rgba(10,10,9,0.55);
  border: 1px solid var(--line);
  color: var(--off-white-dim);
  backdrop-filter: blur(4px);
}

/* ==========================================================================
   THE OUTDOORS — category grid
   ========================================================================== */
.category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.25rem);
}
@media (min-width: 720px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1200px) {
  .category-grid { grid-template-columns: repeat(4, 1fr); }
}
.category-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 3px;
  display: flex;
  align-items: flex-end;
  background: var(--charcoal-800);
}
.category-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease), filter var(--dur-slow) var(--ease);
}
.category-card:hover img { transform: scale(1.07); filter: brightness(0.7) saturate(1.05); }
.category-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,7,0.05) 30%, rgba(6,6,5,0.9) 100%);
}
.category-card-body {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  width: 100%;
}
.category-card-num {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--stone);
  display: block;
  margin-bottom: 0.6rem;
}
.category-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  text-transform: uppercase;
  color: var(--off-white);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.category-card-blurb {
  font-size: 0.85rem;
  color: var(--off-white-dim);
  max-width: 28ch;
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  transform: translateY(6px);
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease), max-height var(--dur-med) var(--ease);
}
@media (min-width: 720px) {
  .category-card:hover .category-card-blurb,
  .category-card:focus-within .category-card-blurb {
    opacity: 1; max-height: 6rem; transform: translateY(0);
  }
}
@media (max-width: 719px) {
  .category-card-blurb { opacity: 1; max-height: none; transform: none; }
}
.category-card-arrow {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  z-index: 2;
  width: 30px; height: 30px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.category-card:hover .category-card-arrow { background: var(--off-white); transform: rotate(45deg); }
.category-card:hover .category-card-arrow svg { stroke: var(--black); }
.category-card-arrow svg { width: 12px; height: 12px; transition: stroke var(--dur-fast) var(--ease); }

/* placeholder treatment for categories without photography yet */
.category-card.is-placeholder {
  background:
    radial-gradient(120% 90% at 50% 120%, rgba(176,141,87,0.10), transparent 60%),
    repeating-linear-gradient(135deg, rgba(242,237,228,0.035) 0 1px, transparent 1px 26px),
    linear-gradient(165deg, var(--charcoal-700), var(--charcoal-900) 70%);
}
.category-card.is-placeholder::after { display: none; }
.category-card.is-placeholder .category-card-title,
.category-card.is-placeholder .category-card-blurb { opacity: 1; max-height: none; transform: none; }
.category-card.is-placeholder .category-card-blurb { color: var(--stone); }
.category-card-soon {
  position: absolute;
  top: 1.4rem; left: 1.4rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid var(--line);
  padding: 0.3rem 0.55rem;
}

/* ==========================================================================
   BRAND STATEMENT
   ========================================================================== */
.statement {
  min-height: 72vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.statement-media {
  position: absolute; inset: 0;
  z-index: 0;
}
.statement-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) brightness(0.5);
  transform: scale(1.05);
}
.statement-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,7,0.75), rgba(8,8,7,0.55) 40%, rgba(8,8,7,0.85));
}
.statement-body {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
  padding-block: 5rem;
}
.statement-text {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.6vw, 3.1rem);
  line-height: 1.18;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--off-white);
}
.statement-sign {
  margin-top: 2rem;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ==========================================================================
   LATEST CONTENT
   ========================================================================== */
.latest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) { .latest-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .latest-grid { grid-template-columns: repeat(6, 1fr); } }
.latest-item {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 2px;
  background: var(--charcoal-800);
  display: block;
}
.latest-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease), filter var(--dur-slow) var(--ease);
}
.latest-item:hover img { transform: scale(1.08); filter: brightness(0.72); }
.latest-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,7,0) 55%, rgba(6,6,5,0.88) 100%);
}
.latest-item-plat {
  position: absolute;
  top: 0.6rem; left: 0.6rem;
  z-index: 2;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(10,10,9,0.55);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.latest-item-plat svg { width: 11px; height: 11px; fill: var(--off-white); }
.latest-item-title {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 0.7rem 0.75rem;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--off-white-dim);
}
.latest-item-play {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
}
.latest-item:hover .latest-item-play { opacity: 1; }
.latest-item-play svg { width: 30px; height: 30px; }
.latest-foot {
  margin-top: 2.25rem;
  display: flex;
  justify-content: center;
}

/* ==========================================================================
   PARTNERSHIPS
   ========================================================================== */
.partners {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.partners-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .partners-inner { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; }
}
.partners-copy p {
  color: var(--off-white-dim);
  max-width: 52ch;
  margin-top: 1.1rem;
}
.partners-copy p + p { margin-top: 0.9rem; }
.partners-cta {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}
@media (min-width: 900px) { .partners-cta { align-items: flex-end; } }
.partners-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
}
.partners-list span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-dim);
  border: 1px solid var(--line);
  padding: 0.4rem 0.7rem;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-inner {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .about-inner { grid-template-columns: 0.85fr 1.15fr; gap: 5rem; align-items: center; }
}
.about-media {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 3px;
  position: relative;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-copy p {
  color: var(--off-white-dim);
  font-size: 1.02rem;
  line-height: 1.75;
}
.about-copy p + p { margin-top: 1.1rem; }
.about-copy .slogan-lockup { margin-top: 1.4rem; padding-left: 0.9rem; border-left: 2px solid var(--brass); }
.verse-block {
  margin: 1.4rem 0 0;
  padding: 0.2rem 0 0.2rem 1.1rem;
  border-left: 2px solid var(--line-strong);
}
.verse-text {
  font-family: Georgia, "Iowan Old Style", "Times New Roman", serif;
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--off-white-dim);
}
.verse-ref {
  display: block;
  margin-top: 0.6rem;
  font-style: normal;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}
.verse-block + p { margin-top: 1.4rem; }
.about-stats {
  display: flex;
  gap: clamp(1.75rem, 4vw, 3rem);
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--off-white);
  line-height: 1;
}
.about-stat-label {
  margin-top: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-inner {
  display: grid;
  gap: 3rem;
}
@media (min-width: 900px) {
  .contact-inner { grid-template-columns: 0.85fr 1.15fr; gap: 5rem; }
}
.contact-info p { color: var(--off-white-dim); max-width: 40ch; }
.contact-social {
  display: flex;
  gap: 1.25rem;
  margin-top: 2rem;
}
.social-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}
.social-btn svg { width: 17px; height: 17px; fill: var(--off-white); }
.social-btn:hover { background: var(--off-white); border-color: var(--off-white); transform: translateY(-2px); }
.social-btn:hover svg { fill: var(--black); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media (min-width: 620px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-field.full { grid-column: 1 / -1; }
}
.form-field { display: flex; flex-direction: column; gap: 0.55rem; }
.form-field label {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}
.form-field input,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 0.6rem 0.1rem;
  color: var(--off-white);
  font-size: 1rem;
  transition: border-color var(--dur-fast) var(--ease);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--stone-dim); }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--off-white);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-submit {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.form-note {
  font-size: 0.8rem;
  color: var(--stone);
}
.form-status {
  font-size: 0.8rem;
  color: var(--brass);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 3.5rem 2rem;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand img { height: 30px; width: auto; margin-bottom: 0.9rem; }
.footer-brand-est {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}
.footer-slogan {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 1.05rem;
  color: var(--off-white-dim);
}
.footer-cols {
  display: flex;
  gap: clamp(2.5rem, 6vw, 5rem);
  flex-wrap: wrap;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a {
  font-size: 0.88rem;
  color: var(--off-white-dim);
  transition: color var(--dur-fast) var(--ease);
}
.footer-col a:hover { color: var(--off-white); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.75rem;
}
.footer-bottom small {
  font-size: 0.76rem;
  color: var(--stone-dim);
}
.footer-social { display: flex; gap: 0.9rem; }
.footer-social .social-btn { width: 36px; height: 36px; }
.footer-social .social-btn svg { width: 14px; height: 14px; }

/* ==========================================================================
   FILMS PAGE
   ========================================================================== */
.films-hero {
  padding-top: clamp(7rem, 14vw, 9.5rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.films-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}
.filter-pill {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.55rem 1.05rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--off-white-dim);
  transition: all var(--dur-fast) var(--ease);
}
.filter-pill:hover { border-color: var(--off-white); color: var(--off-white); }
.filter-pill.is-active { background: var(--off-white); color: var(--black); border-color: var(--off-white); }

.films-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.75rem, 1.6vw, 1.25rem);
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
@media (min-width: 640px) { .films-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 980px) { .films-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1280px) { .films-grid { grid-template-columns: repeat(5, 1fr); } }

.vid-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 3px;
  overflow: hidden;
  background: var(--charcoal-800);
  display: block;
  transition: transform var(--dur-med) var(--ease);
}
.vid-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease), filter var(--dur-slow) var(--ease);
}
.vid-card:not(.is-soon):hover { transform: translateY(-3px); }
.vid-card:not(.is-soon):hover img { transform: scale(1.06); filter: brightness(0.7); }
.vid-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,7,0.05) 45%, rgba(6,6,5,0.9) 100%);
}
.vid-card-meta {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 0.9rem;
}
.vid-card-cat {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  display: block;
  margin-bottom: 0.3rem;
}
.vid-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--off-white);
  line-height: 1.05;
}
.vid-card-play {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
}
.vid-card:not(.is-soon):hover .vid-card-play { opacity: 1; }
.vid-card-play-circle {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(242,237,228,0.6);
  background: rgba(10,10,9,0.35);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
}
.vid-card-play-circle svg { width: 15px; height: 15px; }
.vid-card.is-soon { cursor: default; }
.vid-card.is-soon .vid-card-badge {
  position: absolute; top: 0.75rem; right: 0.75rem; z-index: 2;
  font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--stone); border: 1px solid var(--line); padding: 0.3rem 0.5rem;
  background: rgba(10,10,9,0.5); backdrop-filter: blur(4px);
}
.vid-card.is-soon.no-thumb {
  display: flex; align-items: center; justify-content: center; text-align: center;
  background:
    radial-gradient(120% 90% at 50% 120%, rgba(176,141,87,0.10), transparent 60%),
    repeating-linear-gradient(135deg, rgba(242,237,228,0.035) 0 1px, transparent 1px 26px),
    linear-gradient(165deg, var(--charcoal-700), var(--charcoal-900) 70%);
}
.vid-card.is-soon.no-thumb .vid-card-meta { position: static; padding: 1.5rem; }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(6,6,5,0.94);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-med) var(--ease), visibility 0s linear var(--dur-med);
}
.lightbox.is-open {
  opacity: 1; visibility: visible;
  transition: opacity var(--dur-med) var(--ease), visibility 0s;
}
.lightbox-inner {
  position: relative;
  /* Width driven by whichever is smaller: the usual cap, or what fits the
     viewport height at this aspect ratio — keeps the modal from ever
     overflowing top/bottom on short viewports (small windows, landscape
     phones, browser chrome eating into vh). */
  width: min(420px, 92vw, calc(88vh * 9 / 16));
  aspect-ratio: 9 / 16;
  background: var(--charcoal-900);
  border-radius: 4px;
  overflow: hidden;
  transform: scale(0.96);
  transition: transform var(--dur-med) var(--ease);
}
.lightbox.is-open .lightbox-inner { transform: scale(1); }
.lightbox-inner.is-landscape { width: min(900px, 92vw, calc(88vh * 16 / 9)); aspect-ratio: 16/9; }
.lightbox-media { position: absolute; inset: 0; }
.lightbox-media iframe,
.lightbox-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
/* Close button lives outside .lightbox-inner (which gets its content wiped
   on open/close) and is fixed to the viewport corner — always reachable
   regardless of how tall/short the video card is. */
.lightbox-close {
  position: fixed;
  top: clamp(0.75rem, 3vw, 1.5rem);
  right: clamp(0.75rem, 3vw, 1.5rem);
  z-index: 201;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--off-white);
  background: rgba(10,10,9,0.4);
  border-radius: 50%;
  backdrop-filter: blur(6px);
}
.lightbox-close svg { width: 20px; height: 20px; }

/* ==========================================================================
   SHOP
   ========================================================================== */
.shop-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: clamp(6rem, 14vw, 9rem);
}
.shop-hero-media { position: absolute; inset: 0; z-index: 0; }
.shop-hero-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}
.shop-hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,6,5,0.55) 0%, rgba(6,6,5,0.35) 40%, rgba(6,6,5,0.95) 100%);
}
.shop-hero-body {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: clamp(3rem, 7vw, 5rem);
}
.shop-hero-mark {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1rem;
}
.shop-hero-slogan {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--off-white-dim);
  margin-bottom: 1.5rem;
}
.shop-hero-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: 0.95;
  color: var(--off-white);
}
.shop-hero-title span {
  color: var(--stone);
  font-size: 0.42em;
  letter-spacing: 0.08em;
  vertical-align: middle;
}
.shop-hero-sub {
  margin: 1.25rem auto 0;
  max-width: 40ch;
  color: var(--off-white-dim);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

/* Product grid — same responsive trick as the featured-films rail:
   horizontal scroll-snap on mobile, a real grid from tablet up. */
.product-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(78vw, 340px);
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding-bottom: 1rem;
  margin: 0 calc(var(--gutter) * -1);
  padding-inline: var(--gutter);
  scrollbar-width: none;
}
.product-grid::-webkit-scrollbar { display: none; }
@media (min-width: 720px) {
  .product-grid {
    grid-auto-columns: minmax(0, 1fr);
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr);
    overflow: visible;
    margin: 0;
    padding-inline: 0;
  }
}
@media (min-width: 1100px) {
  .product-grid { grid-template-columns: repeat(4, 1fr); }
}

.product-card {
  scroll-snap-align: start;
  position: relative;
  display: flex;
  flex-direction: column;
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 50% 120%, rgba(176,141,87,0.08), transparent 60%),
    repeating-linear-gradient(135deg, rgba(242,237,228,0.03) 0 1px, transparent 1px 26px),
    linear-gradient(165deg, var(--charcoal-700), var(--charcoal-900) 75%);
  border: 1px solid var(--line);
  transition: border-color var(--dur-fast) var(--ease);
}
.product-card:hover { border-color: var(--line-strong); }
.product-card-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  border: 1px solid var(--line-strong);
  padding: 0.32rem 0.6rem;
  background: rgba(10,10,9,0.4);
  backdrop-filter: blur(4px);
}
.product-card-media {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card.has-icon .product-card-media::before {
  content: "";
  position: absolute;
  width: 60%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,141,87,0.16), transparent 70%);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease);
}
.product-card:hover.has-icon .product-card-media::before { opacity: 1; }
.product-card-icon {
  position: relative;
  z-index: 1;
  width: 42%;
  color: var(--stone);
  transition: transform var(--dur-med) var(--ease), color var(--dur-med) var(--ease);
}
.product-card:hover .product-card-icon { transform: scale(1.08) translateY(-3px); color: var(--off-white); }
.product-card-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-slow) var(--ease);
}
.product-card-media img:first-child { transition: opacity var(--dur-med) var(--ease), transform var(--dur-slow) var(--ease); }
.product-card:hover .product-card-media img:first-child { transform: scale(1.05); }
.product-card-hover { opacity: 0; }
.product-card:hover .product-card-hover { opacity: 1; }
.product-card-body {
  padding: 1.1rem 1.25rem 1.3rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.product-card-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: var(--off-white);
}
.product-card-desc {
  font-size: 0.82rem;
  color: var(--stone);
  line-height: 1.5;
}

/* Launch / notify section */
.shop-launch-line {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2rem, 6vw, 3.75rem);
  line-height: 1;
  color: var(--off-white);
  margin-bottom: 1.25rem;
}
.notify-form { max-width: 420px; margin: 2.25rem auto 0; }
.notify-form label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.9rem;
}
.notify-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.notify-row input {
  flex: 1 1 200px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 0.7rem 0.1rem;
  color: var(--off-white);
  font-size: 1rem;
  text-align: center;
  transition: border-color var(--dur-fast) var(--ease);
}
.notify-row input::placeholder { color: var(--stone-dim); }
.notify-row input:focus { outline: none; border-color: var(--off-white); }
.notify-row .btn { flex: 0 0 auto; }
#notify-status {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--brass);
}

/* ==========================================================================
   MISC
   ========================================================================== */
.skip-link {
  position: absolute;
  left: 1rem; top: -60px;
  background: var(--off-white);
  color: var(--black);
  padding: 0.7rem 1.1rem;
  z-index: 300;
  font-size: 0.8rem;
  font-weight: 600;
  transition: top var(--dur-fast) var(--ease);
}
.skip-link:focus { top: 1rem; }

.divider-line {
  height: 1px;
  background: var(--line);
  border: 0;
}

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

/* focus visibility for keyboard users */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 1px solid var(--brass);
  outline-offset: 3px;
}
