/* See docs/DESIGN-NOTES.md for the why behind these rules. */

/* --- Self-hosted fonts (latin subset) --- */

@font-face {
  font-family: 'Newsreader';
  font-style: normal;
  font-weight: 200 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('../assets/fonts/newsreader-variable.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Newsreader';
  font-style: italic;
  font-weight: 200 800;
  font-stretch: 100%;
  font-display: swap;
  src: url('../assets/fonts/newsreader-italic-variable.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/jetbrains-mono-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../assets/fonts/outfit-300.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../assets/fonts/outfit-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../assets/fonts/outfit-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../assets/fonts/outfit-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Custom Properties --- */
:root {
  --font-display: 'Newsreader', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  --gold: #d4a04a;
  --gold-light: #e8c47a;
  --gold-dark: #b8862e;
  --coral: #e07856;
  --cream: #faf6f0;
  --cream-dark: #f0e8da;
  --charcoal: #1e1e1e;
  --charcoal-mid: #2c2c2c;
  --warm-gray: #8a7e72;
  --warm-gray-light: #b5a99a;
  --white: #ffffff;
  --black: #0a0a0a;

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  font-optical-sizing: auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* iOS surfaces the long-press save sheet from the touched ancestor, not just
   the img — suppress on image containers too so the copyright toast is the
   only long-press response on mobile. */
picture,
.gallery-item {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

picture {
  display: contents;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- Preloader --- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.preloader-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  color: var(--white);
  letter-spacing: 0.12em;
  animation: pulse 1.2s ease-in-out infinite;
}

.preloader-last {
  color: var(--gold);
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* --- Navigation --- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition);
}

.site-nav.scrolled {
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Stories parent dropdown */
.nav-group {
  position: relative;
}

.nav-group-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}

.nav-group-toggle::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-group:hover .nav-group-toggle,
.nav-group:focus-within .nav-group-toggle,
.nav-group-toggle[aria-expanded="true"] {
  color: var(--white);
}

.nav-group:hover .nav-group-toggle::after,
.nav-group:focus-within .nav-group-toggle::after,
.nav-group-toggle[aria-expanded="true"]::after {
  width: 100%;
}

.nav-chevron {
  width: 9px;
  height: auto;
  margin-top: 2px;
  transition: transform var(--transition);
  opacity: 0.85;
}

.nav-group:hover .nav-chevron,
.nav-group:focus-within .nav-chevron,
.nav-group-toggle[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

.nav-sublinks {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  min-width: 240px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: rgba(20, 20, 20, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 160, 74, 0.18);
  border-radius: 4px;
  box-shadow: 0 24px 60px -16px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 110;
}

.nav-sublinks::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.nav-group:hover .nav-sublinks,
.nav-group:focus-within .nav-sublinks,
.nav-group-toggle[aria-expanded="true"] + .nav-sublinks {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-sublinks a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 12px 22px;
  text-transform: none;
  letter-spacing: normal;
  white-space: nowrap;
}

.nav-sublinks a::after {
  display: none;
}

.nav-sublinks a:hover {
  background: rgba(212, 160, 74, 0.08);
}

.nav-sub-num {
  font-family: var(--font-mono, var(--font-body));
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  flex-shrink: 0;
  min-width: 48px;
}

.nav-sub-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.005em;
}

.nav-sub-name em {
  font-style: italic;
  color: var(--gold-light);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background: var(--charcoal);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg picture {
  display: contents;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  animation:
    heroFadeIn 1.2s ease-out 0.3s forwards,
    heroKenBurns 32s ease-in-out 1.5s infinite alternate;
}

@keyframes heroFadeIn {
  to { opacity: 0.75; }
}

@keyframes heroKenBurns {
  from { transform: scale(1) translateY(0); }
  to   { transform: scale(1.06) translateY(-1.5%); }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.5) 35%,
    rgba(10, 10, 10, 0.1) 65%,
    rgba(10, 10, 10, 0.3) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding-bottom: 80px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out 0.8s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease-out 1s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease-out 1.2s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s ease-out 1.6s forwards;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 40px; }
  50% { opacity: 1; height: 55px; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* --- About Section --- */
.about {
  padding: 120px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--gold-light);
  border-radius: 12px;
  z-index: 0;
}

.about-image-wrap img {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
}

.about-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.about-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.about-heading em {
  font-style: italic;
  color: var(--gold-dark);
}

.about-text {
  font-size: 1rem;
  color: var(--warm-gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-title {
  text-align: center;
  margin-bottom: clamp(60px, 9vh, 120px);
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 28px;
}

.about-eyebrow-rule {
  display: inline-block;
  width: 44px;
  height: 1px;
  background: var(--gold);
}

.about-headline {
  margin: 0 auto;
  max-width: 920px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--charcoal);
  font-variation-settings: 'opsz' 72;
}

.about-headline em {
  font-style: italic;
  color: var(--gold-dark);
}

.about-pull {
  margin: clamp(48px, 7vh, 88px) auto;
  max-width: 720px;
  padding: 0 5%;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.5;
  color: var(--gold-dark);
  font-variation-settings: 'opsz' 36;
}

.about-pull em {
  font-style: italic;
  color: var(--gold-dark);
}

.about-grid .about-copy > .about-text:first-of-type::first-letter {
  float: left;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 4.4em;
  line-height: 0.86;
  margin: 0.06em 0.1em 0.04em 0;
  color: var(--gold-dark);
  font-variation-settings: 'opsz' 72;
}

.about-subheading {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  font-variation-settings: 'opsz' 60;
}

.about-subheading em {
  font-style: italic;
  color: var(--gold-dark);
}

.about-closer {
  position: relative;
  margin: 28px 0 0;
  padding-top: 22px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.45rem, 2.9vw, 2.1rem);
  line-height: 1.18;
  letter-spacing: -0.008em;
  color: var(--gold-dark);
  font-variation-settings: 'opsz' 60;
}

.about-closer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 1px;
  background: var(--gold);
}

.about-bridge {
  margin: clamp(80px, 12vh, 140px) auto 0;
  max-width: 760px;
  padding: 0 5%;
  text-align: center;
}

.about-bridge-text {
  margin: 0 0 36px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.65;
  color: var(--charcoal);
  font-variation-settings: 'opsz' 36;
}

.about-bridge-text em {
  font-style: italic;
  color: var(--gold-dark);
}

.about-bridge-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0;
}

.about-bridge-marker-rule {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--gold);
}

.about-bridge-marker-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

@media (max-width: 768px) {
  .about-grid--reverse .about-image-wrap {
    order: -1;
  }
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--cream-dark);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700;
  color: var(--gold-dark);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--warm-gray-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--warm-gray-light);
  margin-top: 12px;
}

/* --- Off Duty Section --- */
.offduty {
  padding: 120px 0;
  background: var(--cream);
}

.offduty-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.offduty-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.offduty-heading em {
  font-style: italic;
  color: var(--gold-dark);
}

.offduty-image-wrap {
  position: relative;
}

.offduty-image-wrap::before {
  content: '';
  position: absolute;
  top: 16px;
  right: -16px;
  left: 16px;
  bottom: -16px;
  border: 2px solid var(--gold-light);
  border-radius: 12px;
  z-index: 0;
}

.offduty-image-wrap img {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* --- Copyright notice --- */
.copyright-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: calc(100vw - 32px);
  padding: 14px 22px 14px 16px;
  background: rgba(14, 14, 14, 0.92);
  border: 1px solid rgba(212, 160, 74, 0.45);
  border-radius: 4px;
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(140%);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.copyright-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.copyright-toast-mark {
  flex: none;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--gold-light);
}

.copyright-toast-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  line-height: 1.45;
  color: var(--cream);
  max-width: 42ch;
}

.copyright-toast-quip {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.4;
  text-wrap: pretty;
}

.copyright-toast-legal {
  display: block;
  margin-top: 6px;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
}

.copyright-toast-text strong {
  font-weight: 600;
  color: var(--gold-light);
}

@media (max-width: 600px) {
  .copyright-toast {
    bottom: 16px;
    gap: 12px;
    padding: 12px 16px 12px 14px;
    width: calc(100vw - 32px);
  }

  .copyright-toast-text {
    font-size: 0.76rem;
    max-width: none;
  }

  .copyright-toast-quip {
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .copyright-toast {
    transform: translateX(-50%);
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .copyright-toast.show {
    transform: translateX(-50%);
  }
}

/* --- Sign-Off --- */
.signoff {
  background: var(--black);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 110px 24px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 56px;
}

.signoff-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.85  0 0 0 0 0.7  0 0 0 0.10 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

.signoff-stage {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  margin: 0;
}

.signoff-image {
  display: block;
  position: relative;
  width: clamp(280px, 50vw, 520px);
  aspect-ratio: 888 / 1176;
  overflow: hidden;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    0 12px 30px rgba(0, 0, 0, 0.45);
}

.signoff-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.04);
  transform: scale(1.02);
  transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.signoff-stage.visible .signoff-image img {
  transform: scale(1);
}

.signoff-image::before,
.signoff-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.signoff-image::after {
  z-index: 2;
  background:
    radial-gradient(125% 92% at 50% 40%, transparent 38%, rgba(8, 8, 8, 0.58) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.30) 0%, transparent 20%, transparent 66%, rgba(8, 8, 8, 0.64) 100%),
    radial-gradient(ellipse at 50% 46%, rgba(212, 160, 74, 0.22) 0%, transparent 58%);
}

.signoff-image::before {
  z-index: 3;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.85  0 0 0 0 0.7  0 0 0 0.2 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
  mix-blend-mode: overlay;
  opacity: 0.4;
}

/* --- Signoff: pull-quote --- */
.signoff-quote {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 640px;
  text-align: center;
  padding: 0 8px;
}

.signoff-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.45;
  color: rgba(250, 246, 240, 0.92);
  margin: 0 0 18px;
  letter-spacing: -0.005em;
}

.signoff-quote p em {
  color: var(--gold-light);
  font-style: italic;
}

.signoff-quote-rule {
  display: block;
  width: 56px;
  height: 1px;
  margin: 22px auto 0;
  background: var(--gold);
  opacity: 0.55;
}

/* --- Signoff: closing "fin." --- */
.signoff-fin {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  color: var(--gold-light);
  text-align: center;
  line-height: 1;
  letter-spacing: 0.01em;
  opacity: 0.78;
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
}

.signoff-fin em {
  font-style: italic;
  font-weight: 300;
}

.signoff-fin-flourish {
  display: inline-block;
  width: 0.7em;
  height: 0.5em;
  color: var(--gold-light);
  flex: 0 0 auto;
  transform: translateY(-0.04em);
}

/* --- Footer --- */
.site-footer {
  background: var(--black);
  padding: 48px 0;
  text-align: center;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.footer-logo-text span {
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--warm-gray);
  margin-bottom: 24px;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
  opacity: 0.4;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

/* --- Focus & Accessibility --- */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.gallery-item:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
  border-radius: 10px;
}

.gallery-item:focus-visible img {
  transform: scale(1.06);
}

.lightbox-close:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.nav-links a:focus-visible {
  color: var(--white);
}

.nav-links a:focus-visible::after {
  width: 100%;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(6px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .about-grid,
  .offduty-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-wrap,
  .offduty-image-wrap {
    max-width: 420px;
    margin: 0 auto;
  }

  .about-image-wrap::before,
  .offduty-image-wrap::before {
    display: none;
  }

  .offduty-grid {
    direction: ltr;
  }

  
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(30, 30, 30, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 5%;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li a {
    display: block;
    padding: 12px 0;
  }

  .nav-group-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
  }

  .nav-group-toggle::after { display: none; }

  .nav-sublinks {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 0;
    box-shadow: none;
    padding: 0;
    border-left: 1px solid rgba(212, 160, 74, 0.25);
    margin-left: 4px;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease, padding 0.28s ease;
  }

  .nav-group-toggle[aria-expanded="true"] + .nav-sublinks {
    max-height: 240px;
    padding: 4px 0 8px 14px;
  }

  .nav-sublinks::before { display: none; }

  .nav-sublinks a {
    padding: 10px 0 10px 12px;
    gap: 12px;
  }

  .nav-sublinks a:hover {
    background: transparent;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding-bottom: 130px;
  }

  .about {
    padding: 80px 0;
  }

  
  .offduty {
    padding: 80px 0;
  }

  .section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
  }
}

@media (max-width: 600px) {
  .container {
    width: 92%;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-content {
    padding-bottom: 110px;
  }

  .hero-scroll {
    display: none;
  }

  .about {
    padding: 60px 0;
  }

  .about-heading,
  .offduty-heading {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .about-text {
    font-size: 0.92rem;
  }

  .about-image-wrap,
  .offduty-image-wrap {
    max-width: 100%;
  }

  
  
  
  
  
  .offduty {
    padding: 60px 0;
  }

  .signoff {
    padding: 84px 20px 80px;
    min-height: auto;
    gap: 40px;
  }

  .signoff-image {
    width: min(78vw, 400px);
  }

  .signoff-quote {
    padding: 0;
  }

  .signoff-quote cite {
    font-size: 0.66rem;
    letter-spacing: 0.28em;
  }

  .signoff-quote cite::before {
    width: 24px;
  }

  .footer-logo-text {
    font-size: 1rem;
  }

  .nav-logo {
    font-size: 1.1rem;
  }

  .section-subtitle {
    font-size: 0.85rem;
  }
}

/* === Meet Stella === */
.stella {
  position: relative;
  background: var(--black);
  color: var(--white);
  padding: 0;
}

/* === SCENE 1: TITLE CARD === */
.stella-titlecard {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  padding: 140px 0 90px;
}

.stella-titlecard-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.stella-titlecard-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(1.05) brightness(0.78);
  animation: stellaKenBurns 22s ease-in-out infinite alternate;
  transform-origin: 65% 55%;
}

@keyframes stellaKenBurns {
  0%   { transform: scale(1.04); }
  100% { transform: scale(1.12); }
}

.stella-titlecard-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(10, 10, 10, 0.55) 0%,
      rgba(10, 10, 10, 0.20) 28%,
      rgba(10, 10, 10, 0.55) 70%,
      rgba(10, 10, 10, 0.96) 100%),
    radial-gradient(ellipse at 80% 25%,
      rgba(212, 160, 74, 0.22) 0%,
      transparent 55%);
}

.stella-titlecard-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.85  0 0 0 0 0.7  0 0 0 0.18 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  mix-blend-mode: overlay;
  opacity: 0.4;
  pointer-events: none;
}

.stella-titlecard-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* — Eyebrow — */
.stella-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 36px;
}

.stella-eyebrow-rule {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.stella-eyebrow-num {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

/* — Mega title (the "Meet Stella" wordmark) — */
.stella-megatitle {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.86;
  margin: 0 0 32px;
  color: var(--white);
}

.stella-megatitle-pre {
  display: block;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: -0.06em;
  margin-left: 0.35em;
}

.stella-megatitle-name {
  display: block;
  font-size: clamp(5.5rem, 17vw, 15rem);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: -0.025em;
  text-shadow: 0 4px 90px rgba(212, 160, 74, 0.18);
  font-variation-settings: 'opsz' 72;
  font-weight: 500;
}

.stella-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.74);
  margin: 0 0 64px;
  letter-spacing: 0.01em;
}

/* — Instrument cluster (stat strip styled like a chronograph) — */
.stella-instruments {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(212, 160, 74, 0.32);
  border-bottom: 1px solid rgba(212, 160, 74, 0.32);
  margin: 0;
}

.stella-instrument {
  position: relative;
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stella-instrument:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 28%;
  bottom: 28%;
  width: 1px;
  background: rgba(212, 160, 74, 0.22);
}

.stella-instrument dt {
  order: 1;
  font-family: var(--font-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.stella-instrument dd {
  order: 2;
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 1.9vw, 1.65rem);
  line-height: 1;
  color: var(--gold-light);
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.stella-instr-num {
  white-space: nowrap;
  font-family: var(--font-mono);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.stella-instr-unit {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.5em;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  top: -0.18em;
}

/* === SCENE 2: PHOTO STORY (TRIPTYCH) === */
.stella-story {
  position: relative;
  background: linear-gradient(180deg,
    var(--black) 0%,
    #15110b 50%,
    var(--black) 100%);
  padding: 140px 0;
  overflow: hidden;
}

.stella-story::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 50%,
    rgba(212, 160, 74, 0.07) 0%,
    transparent 50%);
  pointer-events: none;
}

.stella-story .container {
  position: relative;
}

.stella-frame {
  display: grid;
  position: relative;
  margin-bottom: 140px;
}

.stella-frame:last-child {
  margin-bottom: 0;
}

.stella-frame--01 {
  grid-template-columns: 60% 1fr;
  gap: 60px;
  align-items: center;
}

.stella-frame--02 {
  grid-template-columns: 1fr 60%;
  gap: 60px;
  align-items: center;
}

.stella-frame--02 .stella-frame-figure { order: 2; }
.stella-frame--02 .stella-pull         { order: 1; text-align: right; padding: 0 28px 0 0; border-left: 0; border-right: 1px solid var(--gold); }

.stella-frame--03 {
  grid-template-columns: 65% 1fr;
  grid-template-areas:
    "photo  quote"
    "credit quote";
  grid-template-rows: auto auto;
  gap: 24px 60px;
  align-items: center;
}

.stella-frame--03 .stella-frame-figure { grid-area: photo; }
.stella-frame--03 .stella-credit--frame { grid-area: credit; }
.stella-frame--03 .stella-pull { grid-area: quote; }

.stella-frame-marker {
  position: absolute;
  top: -40px;
  left: -8px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 400;
  line-height: 1;
  color: rgba(212, 160, 74, 0.13);
  letter-spacing: -0.04em;
  pointer-events: none;
  z-index: 0;
}

.stella-frame--02 .stella-frame-marker {
  left: auto;
  right: -8px;
}

.stella-frame-figure {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(212, 160, 74, 0.12) inset;
  position: relative;
  z-index: 1;
}

.stella-frame-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stella-frame:hover .stella-frame-figure img {
  transform: scale(1.04);
}

.stella-pull {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
  padding: 0 0 0 28px;
  border-left: 1px solid var(--gold);
}

.stella-pull em {
  color: var(--gold-light);
  font-style: italic;
}

/* === SCENE 3: FINALE (cinematic POV) === */
.stella-finale {
  position: relative;
  text-align: center;
  padding: 180px 0 120px;
  background: var(--black);
  overflow: hidden;
  isolation: isolate;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.stella-finale-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.stella-finale-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(1.05) brightness(0.7);
  animation: stellaKenBurnsFinale 26s ease-in-out infinite alternate;
  transform-origin: 50% 60%;
}

@keyframes stellaKenBurnsFinale {
  0%   { transform: scale(1.05); }
  100% { transform: scale(1.13); }
}

.stella-finale-vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(10, 10, 10, 0.92) 0%,
      rgba(10, 10, 10, 0.45) 25%,
      rgba(10, 10, 10, 0.45) 65%,
      rgba(10, 10, 10, 0.96) 100%),
    radial-gradient(ellipse at 50% 50%,
      rgba(212, 160, 74, 0.18) 0%,
      transparent 60%);
}

.stella-finale-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.85  0 0 0 0 0.7  0 0 0 0.18 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  mix-blend-mode: overlay;
  opacity: 0.35;
  pointer-events: none;
}

.stella-finale-content {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.stella-finale::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, transparent, var(--gold) 50%, transparent);
  z-index: 1;
}

.stella-finale-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.8rem);
  line-height: 1.2;
  color: var(--white);
  letter-spacing: -0.005em;
  margin: 0 0 28px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.6);
}

.stella-finale-quote em {
  color: var(--gold-light);
  font-style: italic;
  white-space: nowrap;
}

.stella-finale-attribution {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.stella-credit--frame {
  margin: 0;
  padding-top: 4px;
  font-size: 0.84rem;
}

.stella-credit {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.stella-credit-dot {
  color: var(--gold);
  font-style: normal;
  font-size: 1em;
  line-height: 1;
  margin: 0 2px;
}

.stella-credit a {
  color: var(--gold-light);
  font-style: italic;
  text-decoration: none;
  padding-bottom: 1px;
  border-bottom: 1px solid rgba(212, 160, 74, 0.35);
  transition: color var(--transition), border-color var(--transition);
}

.stella-credit a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .stella-titlecard {
    min-height: 92vh;
    padding: 110px 0 60px;
  }

  .stella-eyebrow {
    flex-wrap: wrap;
    gap: 12px;
  }

  .stella-eyebrow-num {
    display: none;
  }

  .stella-titlecard::after {
    content: 'No. 01';
    position: absolute;
    top: 96px;
    right: 5%;
    z-index: 2;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
    pointer-events: none;
  }

  .stella-megatitle-pre {
    font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  }

  .stella-instruments {
    grid-template-columns: repeat(2, 1fr);
  }

  .stella-instrument:nth-child(2)::after {
    display: none;
  }

  .stella-instrument:nth-child(1),
  .stella-instrument:nth-child(2) {
    border-bottom: 1px solid rgba(212, 160, 74, 0.18);
  }

  .stella-story {
    padding: 90px 0;
  }

  .stella-frame,
  .stella-frame--01,
  .stella-frame--02,
  .stella-frame--03 {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    grid-template-rows: auto;
    align-items: stretch;
    gap: 28px;
    margin-bottom: 90px;
  }

  .stella-frame--03 {
    gap: 0;
  }
  .stella-frame--03 .stella-frame-figure {
    grid-area: auto;
    order: 1;
    margin-bottom: 6px;
  }
  .stella-frame--03 .stella-credit--frame {
    grid-area: auto;
    order: 2;
    display: block;
    text-align: right;
    font-size: 0.7rem;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.5);
    padding-top: 0;
    margin-bottom: 32px;
  }
  .stella-frame--03 .stella-pull {
    grid-area: auto;
    order: 3;
  }

  .stella-frame--02 .stella-frame-figure { order: 0; }
  .stella-frame--02 .stella-pull         { order: 1; text-align: left; padding: 0 0 0 24px; border-right: 0; border-left: 1px solid var(--gold); }

  .stella-frame-marker {
    top: -28px;
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .stella-finale {
    padding: 100px 0 80px;
  }
}

@media (max-width: 600px) {
  .stella-titlecard {
    min-height: 86vh;
    padding: 90px 0 44px;
  }

  .stella-megatitle-pre {
    font-size: 1.4rem;
  }

  .stella-megatitle-name {
    font-size: clamp(4.5rem, 22vw, 7.5rem);
  }

  .stella-tagline {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .stella-instrument {
    padding: 16px 0;
    gap: 6px;
  }

  .stella-instrument dd {
    font-size: 1.15rem;
  }

  .stella-pull {
    font-size: 1.1rem;
    padding-left: 20px;
  }

  .stella-credit {
    font-size: 0.82rem;
    gap: 6px;
  }

  }

@media (prefers-reduced-motion: reduce) {
  .hero-bg img,
  .stella-titlecard-bg img,
  .stella-finale-bg img {
    animation: none;
  }

  .hero-bg img {
    opacity: 0.75;
  }

  .stella-frame:hover .stella-frame-figure img,
  .washday-figure-photo:hover img {
    transform: none;
  }

  .reveal,
  .reveal.visible {
    transform: none;
    filter: none;
  }
  .reveal {
    transition: opacity 0.3s ease;
  }

  .signoff-image img,
  .signoff-stage.visible .signoff-image img {
    transform: none;
    transition: none;
  }
}

/* === Wash Day === */
.washday {
  position: relative;
  background: var(--cream);
  color: var(--charcoal);
  padding: clamp(110px, 14vh, 200px) 0 clamp(80px, 12vh, 160px);
  overflow: hidden;
}

.washday-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.07 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  mix-blend-mode: multiply;
  z-index: 0;
}

.washday-title {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto clamp(60px, 8vh, 110px);
  text-align: center;
}

.washday-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 28px;
}

.washday-eyebrow-rule {
  display: inline-block;
  width: 44px;
  height: 1px;
  background: var(--gold);
}

.washday-eyebrow-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--gold-dark);
  margin-left: 4px;
}

.washday-headline {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 0.98;
  letter-spacing: -0.012em;
  color: var(--charcoal);
  font-variation-settings: 'opsz' 72;
}

.washday-headline em {
  font-style: italic;
  color: var(--gold-dark);
}

.washday-essay {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.washday-essay > .washday-prose,
.washday-essay > .washday-stand-first {
  max-width: 660px;
  margin: 0 auto clamp(28px, 4vh, 44px);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.35vw, 1.22rem);
  line-height: 1.78;
  color: var(--charcoal);
  text-align: left;
}

.washday-stand-first {
  font-style: italic;
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  margin-top: 0;
  font-variation-settings: 'opsz' 16;
}

.washday-stand-first::first-letter {
  float: left;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 5em;
  line-height: 0.85;
  margin: 0.06em 0.1em 0.02em 0;
  color: var(--gold-dark);
  font-variation-settings: 'opsz' 72;
}

.washday-prose em,
.washday-stand-first em {
  font-style: italic;
  color: var(--gold-dark);
}

.washday-pull {
  position: relative;
  margin: clamp(70px, 10vh, 130px) auto;
  max-width: 900px;
  padding: 0 5%;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.4rem, 6.5vw, 5.4rem);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--gold-dark);
  text-align: center;
  font-variation-settings: 'opsz' 72;
}

.washday-pull em {
  font-style: italic;
  color: var(--gold-light);
}

.washday-pull::before,
.washday-pull::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 32px auto;
  opacity: 0.6;
}

.washday-figure {
  margin: clamp(50px, 7vh, 100px) 0;
  position: relative;
}

.washday-figure-photo {
  display: block;
  cursor: zoom-in;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 70px -32px rgba(30, 30, 30, 0.45);
}

.washday-figure-photo picture { display: contents; }

.washday-figure-photo img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

.washday-figure-photo:hover img,
.washday-figure-photo:focus-visible img {
  transform: scale(1.03);
}

.washday-figure-caption {
  margin-top: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--charcoal);
}

.washday-figure--right {
  width: min(72%, 760px);
  margin-left: auto;
  margin-right: 0;
}

.washday-figure--left {
  width: min(72%, 760px);
  margin-left: 0;
  margin-right: auto;
}

.washday-figure--center {
  width: min(60%, 620px);
  margin-left: auto;
  margin-right: auto;
}

.washday-figure--small {
  width: min(46%, 480px);
  margin-left: auto;
  margin-right: auto;
}

.washday-figure--hero {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.washday-figure--hero .washday-figure-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: 0 36px 80px -32px rgba(30, 30, 30, 0.5);
}

.washday-figure--hero .washday-figure-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 62%,
    rgba(20, 20, 20, 0.34) 100%
  );
}

.washday-figure--hero .washday-figure-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.washday-colophon {
  margin: clamp(60px, 8vh, 100px) auto 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  letter-spacing: 0.04em;
  color: var(--gold-dark);
  text-align: center;
}

.washday-coda {
  position: relative;
  margin: clamp(56px, 9vh, 110px) auto 0;
  padding-top: 38px;
  max-width: 640px;
  text-align: center;
}

.washday-coda::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 1px;
  background: var(--gold);
}

.washday-coda em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  line-height: 1.3;
  color: var(--gold-dark);
  font-variation-settings: 'opsz' 60;
}

@media (max-width: 768px) {
  .washday {
    padding: 80px 0 70px;
  }

  .washday-title {
    margin-bottom: 50px;
  }

  .washday-eyebrow {
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    margin-bottom: 20px;
  }

  .washday-eyebrow-rule { width: 32px; }

  .washday-headline {
    font-size: clamp(2.6rem, 11vw, 4.4rem);
  }

  .washday-essay > .washday-prose,
  .washday-essay > .washday-stand-first {
    font-size: 1.05rem;
    line-height: 1.72;
    margin-bottom: 28px;
  }

  .washday-stand-first {
    font-size: 1.18rem;
  }

  .washday-stand-first::first-letter {
    font-size: 4.2em;
  }

  .washday-pull {
    margin: 60px auto;
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.05;
  }

  .washday-pull::before,
  .washday-pull::after {
    margin: 22px auto;
  }

  .washday-figure {
    margin: 40px 0;
  }

  .washday-figure--right,
  .washday-figure--left,
  .washday-figure--center {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    transform: none;
  }

  .washday-figure--small {
    width: 78%;
    margin-left: auto;
    margin-right: auto;
  }

}

@media (prefers-reduced-motion: reduce) {
  .washday-figure-photo:hover img,
  .washday-figure-photo:focus-visible img {
    transform: none;
  }
}
