@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;1,9..144,300;1,9..144,400&family=Jost:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

:root {
  --bg: #0e100f;
  --bg-lift: #121512;
  --surface: #161916;
  --surface-2: #1e221e;
  --text: #eceae4;
  --text-muted: #8a9188;
  --accent: #a67c52; /* wood — use sparingly: focus, thin rules, hover marks */
  --accent-dim: #7a5c3d;
  --border: rgba(140, 150, 138, 0.16);
  --radius: 0px;
  --radius-soft: 6px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-sans: 'Jost', system-ui, sans-serif;
  --header-h: 72px;
  --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 90% 55% at 18% 8%, rgba(180, 190, 170, 0.045) 0%, transparent 55%),
    radial-gradient(ellipse 70% 45% at 88% 72%, rgba(90, 100, 85, 0.06) 0%, transparent 50%),
    linear-gradient(165deg, var(--bg-lift) 0%, var(--bg) 42%, #0c0e0c 100%);
  background-attachment: fixed;
}

/* Mineral grain — texture over flat fill */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.035;
  background-image: var(--grain);
  background-repeat: repeat;
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

/* Diffuse daylight / soft leaf shadow — not SaaS blobs */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 35% at 72% 18%, rgba(200, 205, 190, 0.03) 0%, transparent 70%),
    radial-gradient(ellipse 28% 22% at 30% 55%, rgba(0, 0, 0, 0.12) 0%, transparent 75%),
    radial-gradient(ellipse 18% 14% at 58% 40%, rgba(0, 0, 0, 0.08) 0%, transparent 70%);
  animation: light-breathe 22s ease-in-out infinite;
}

@keyframes light-breathe {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

main, .site-header, .site-footer {
  position: relative;
  z-index: 1;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.15;
  font-variation-settings: 'SOFT' 60, 'WONK' 0.5;
}

/* Links: text first; wood only as a quiet hover cue */
a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}
a:hover { color: var(--accent); }

img, video { max-width: 100%; display: block; }

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(14, 16, 15, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Startsida: transparent editorial header med mjuk fade */
body.page-home .site-header {
  height: auto;
  min-height: var(--header-h);
  padding: 1.85rem 0 3rem;
  background: linear-gradient(180deg, rgba(8, 10, 9, 0.78) 0%, rgba(8, 10, 9, 0.28) 65%, rgba(8, 10, 9, 0) 100%);
  border: none;
  backdrop-filter: none;
  box-shadow: none;
}

body.page-home .site-header .container {
  width: min(1400px, 94vw);
  align-items: flex-end;
}

body.page-home .site-header .logo {
  font-size: 1.55rem;
}

body.page-home .site-header .nav-main {
  gap: 2.1rem;
}

body.page-home .site-header .nav-main a {
  position: relative;
  color: rgba(236, 234, 228, 0.82);
  font-size: 0.88rem;
  padding: 0.15rem 0 0.35rem;
  background: none;
  border-radius: 0;
}

body.page-home .site-header .nav-main a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

body.page-home .site-header .nav-main a:hover,
body.page-home .site-header .nav-main a.active {
  color: var(--text);
  background: none;
}

body.page-home .site-header .nav-main a:hover::after,
body.page-home .site-header .nav-main a.active::after {
  transform: scaleX(1);
}

body.page-home .site-header .nav-cta {
  margin-left: 0.5rem;
  padding: 0.15rem 0 0.35rem !important;
  border: none;
  background: none;
  color: rgba(236, 234, 228, 0.9) !important;
}

body.page-home .site-header .nav-cta:hover {
  background: none !important;
  color: #eceae4 !important;
}

body.page-home main {
  padding-top: 0;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1400px, 94vw);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--text);
}

.logo span {
  color: rgba(166, 124, 82, 0.85);
  font-style: italic;
  font-weight: 300;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 120;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--border);
  background: rgba(14, 16, 15, 0.55);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 1.15rem;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

body.nav-open .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.site-nav {
  display: block;
}

.nav-main {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-main a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.nav-main a:hover,
.nav-main a.active { color: var(--text); }

.nav-cta {
  border: none;
  border-bottom: 1px solid transparent;
  padding: 0.45rem 0 !important;
  border-radius: 0;
  color: var(--text) !important;
  margin-left: 0.5rem;
}

.nav-cta:hover {
  border-bottom-color: rgba(166, 124, 82, 0.45);
  background: none;
}

main { padding-top: var(--header-h); min-height: calc(100vh - var(--header-h)); }

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1rem;
  background: radial-gradient(ellipse at 50% 80%, rgba(140, 150, 138, 0.05) 0%, transparent 60%);
}

.hero-home {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100vh;
  justify-content: flex-start;
  align-items: flex-end;
  text-align: left;
  padding: 7.75rem 0 12vh;
  background-color: #0a0c0b;
  background-image:
    radial-gradient(ellipse 70% 55% at 78% 22%, rgba(200, 205, 190, 0.07) 0%, transparent 58%),
    radial-gradient(ellipse 45% 40% at 18% 78%, rgba(0, 0, 0, 0.35) 0%, transparent 70%),
    linear-gradient(165deg, #121512 0%, #0e100f 45%, #0a0c0b 100%);
}

/* Mineral grain in the hero plane */
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: var(--grain);
  background-repeat: repeat;
  background-size: 160px 160px;
  mix-blend-mode: overlay;
}

/* Soft daylight / leaf shadow */
.hero-home::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 40% 30% at 62% 28%, rgba(210, 215, 200, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 22% 18% at 35% 48%, rgba(0, 0, 0, 0.14) 0%, transparent 72%),
    radial-gradient(ellipse 15% 12% at 70% 55%, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
  animation: light-breathe 26s ease-in-out infinite;
}

/* Soft light-window — short band, not full hero height */
.hero-home-visual {
  position: absolute;
  top: auto;
  right: 0;
  bottom: 16%;
  width: min(58vw, 800px);
  height: min(46vh, 440px);
  z-index: 0;
  pointer-events: none;
  background-color: transparent;
  background-image: url('../img/AirBrush_20260120221434-cropped.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.58;
  filter: brightness(0.72) saturate(0.78) contrast(0.95);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.3) 26%, #000 48%),
    linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.3) 26%, #000 48%),
    linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.hero-home .container {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-left: max(4vw, calc((100vw - min(1200px, 92vw)) / 2));
  margin-right: auto;
  width: min(640px, 88vw);
  padding-top: 1.25rem;
  animation: hero-awaken 1.35s ease-out both;
}

@keyframes hero-awaken {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-home h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text);
  text-shadow: none;
}

.hero-home p {
  color: rgba(236, 234, 228, 0.72);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 0 2.25rem;
  text-shadow: none;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

/* Home Explore — ceremonial invitation, not a button block */
.hero-explore {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0 0.85rem;
  color: #eceae4;
  text-decoration: none;
  animation: hero-explore-awaken 1.1s ease-out 0.45s both;
}

.hero-explore-label {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.14em;
  line-height: 1.2;
  transition: color 0.4s ease;
}

.hero-explore::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(166, 124, 82, 0.4);
  transform: scaleX(0.45);
  transform-origin: left center;
  transition: transform 0.4s ease, background-color 0.4s ease;
}

.hero-explore::after {
  content: '→';
  font-family: var(--font-sans);
  font-size: 1.05rem;
  letter-spacing: 0;
  opacity: 0.45;
  transform: translateX(0);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.hero-explore:hover {
  color: var(--text);
}

.hero-explore:hover .hero-explore-label {
  color: var(--text);
}

.hero-explore:hover::before {
  transform: scaleX(1);
  background: rgba(166, 124, 82, 0.7);
}

.hero-explore:hover::after {
  opacity: 1;
  transform: translateX(6px);
}

@keyframes hero-explore-awaken {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Editorial luxe — understated text-länkar, inte knapp-block */
.btn-luxe {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 0;
  background: none;
  cursor: pointer;
  transition: color 0.35s ease, opacity 0.35s ease;
}

.btn-luxe:hover {
  transform: none;
  box-shadow: none;
}

.btn-luxe-primary {
  color: #eceae4;
  border-bottom: 1px solid rgba(236, 234, 228, 0.35);
  padding-bottom: 0.55rem;
}

.btn-luxe-primary::after {
  content: '→';
  font-family: var(--font-sans);
  font-size: 0.95rem;
  opacity: 0.55;
  transform: translateX(0);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.btn-luxe-primary:hover {
  color: var(--text);
  border-bottom-color: rgba(166, 124, 82, 0.55);
  background: none;
}

.btn-luxe-primary:hover::after {
  opacity: 1;
  transform: translateX(4px);
}

.btn-luxe-ghost {
  color: rgba(236, 234, 228, 0.52);
  font-style: italic;
  letter-spacing: 0.02em;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid transparent;
}

.btn-luxe-ghost:hover {
  color: rgba(236, 234, 228, 0.88);
  border-bottom-color: rgba(166, 124, 82, 0.3);
  background: none;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin: 0 0 1rem;
}

.hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  border: 1px solid rgba(140, 150, 138, 0.35);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
  border-radius: 0;
}

.btn:hover {
  background: rgba(236, 234, 228, 0.06);
  border-color: rgba(166, 124, 82, 0.4);
  color: var(--text);
}

.btn-primary {
  background: transparent;
  color: var(--text);
  border-color: rgba(236, 234, 228, 0.4);
}

.btn-primary:hover {
  background: rgba(236, 234, 228, 0.06);
  border-color: rgba(166, 124, 82, 0.5);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text-muted);
}

.btn-ghost:hover {
  border-color: rgba(166, 124, 82, 0.35);
  color: var(--text);
  background: transparent;
}

.btn-sm { padding: 0.45rem 1rem; font-size: 0.72rem; }

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: -0.015em;
  margin-bottom: 2.5rem;
  text-align: left;
}

.grid-films,
.grid-gallery,
.grid-packages {
  display: grid;
  gap: 1.5rem;
}

.grid-films { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid-gallery { grid-template-columns: repeat(auto-fill, minmax(240px, 360px)); }

.gallery-court {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem 1.35rem;
  align-items: start;
}

.gallery-court.is-masonry {
  display: block;
}

.gallery-court-cols {
  display: flex;
  align-items: flex-start;
  gap: 1.35rem;
}

.gallery-court-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.gallery-court.is-masonry .gallery-court-cols[data-cols="3"] .gallery-court-col:nth-child(2) {
  margin-top: 1.1rem;
}

.gallery-court.is-masonry .gallery-court-cols[data-cols="3"] .gallery-court-col:nth-child(3) {
  margin-top: 0.45rem;
}

.gallery-court.is-masonry .gallery-court-cols[data-cols="2"] .gallery-court-col:nth-child(2) {
  margin-top: 0.85rem;
}

.gallery-slab {
  margin: 0;
}

.gallery-slab-link {
  display: block;
  overflow: hidden;
  line-height: 0;
  border: 1px solid rgba(140, 150, 138, 0.22);
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.gallery-slab-link img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 0.55s ease, filter 0.45s ease;
}

.gallery-slab-link:hover {
  border-color: rgba(166, 124, 82, 0.45);
}

.gallery-slab-link:hover img {
  transform: translateY(-2px);
  filter: saturate(0.98) contrast(1.04) brightness(1.02);
}

.gallery-slab-caption {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 300;
  margin: 0.55rem 0 0;
  line-height: 1.25;
  color: rgba(236, 234, 228, 0.88);
  transition: color 0.3s ease;
}

.gallery-slab:hover .gallery-slab-caption {
  color: var(--accent);
  background-image: linear-gradient(rgba(166, 124, 82, 0.75), rgba(166, 124, 82, 0.75));
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
}

@media (max-width: 900px) {
  .gallery-court {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .gallery-court {
    grid-template-columns: 1fr;
  }
}

.grid-packages { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 0;
  transition: border-color 0.35s ease;
}

.card:hover {
  border-color: rgba(140, 150, 138, 0.28);
  transform: none;
}

.card-media {
  display: block;
  aspect-ratio: 16/9;
  background: var(--surface-2);
  overflow: hidden;
}

.card-media img { width: 100%; height: 100%; object-fit: cover; }

.card-body { padding: 1.35rem 1.25rem 1.5rem; }

.card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
  display: inline;
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 0.4s ease, color 0.3s ease;
}

.card-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.teaser-full-film-link {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
}

.teaser-full-film-link .btn {
  margin-top: 0.15rem;
}

.film-search {
  margin-bottom: 1.5rem;
}

.film-search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.film-search-row input[type="search"] {
  flex: 1 1 220px;
  min-width: 0;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.tag-list-inline {
  margin-top: 0;
  margin-bottom: 0.65rem;
}

.tag-pill {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}

.tag-pill:hover,
.tag-pill.is-active {
  border-color: rgba(166, 124, 82, 0.45);
  color: var(--text);
}

.tag-pill-sm {
  padding: 0.2rem 0.55rem;
  font-size: 0.68rem;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text-muted);
}

.badge-locked { color: var(--text-muted); border-color: rgba(255,255,255,0.1); }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

input[type=text], input[type=email], input[type=password], input[type=number], input[type=file], textarea, select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: rgba(166, 124, 82, 0.55);
  border-radius: var(--radius-soft);
  background: rgba(22, 25, 22, 0.95);
  box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.12);
}

textarea { min-height: 120px; resize: vertical; }

.alert {
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
}

.alert-error { border-color: rgba(200,80,80,0.4); color: #e8a0a0; }
.alert-success { border-color: rgba(100,180,100,0.4); color: #a0d8a0; }

.auth-page {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-box {
  width: min(420px, 100%);
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
}

.auth-box h1 { text-align: center; margin-top: 0; }

/* Auth threshold — quiet door (login / register) */
body.page-login {
  background-image:
    radial-gradient(ellipse 55% 45% at 50% 20%, rgba(166, 124, 82, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 15% 90%, rgba(0, 0, 0, 0.25) 0%, transparent 55%),
    linear-gradient(180deg, #0e100f 0%, #0c0e0c 55%, #0a0c0b 100%);
}

body.page-login::after {
  background:
    radial-gradient(ellipse 45% 30% at 70% 0%, rgba(200, 205, 190, 0.03) 0%, transparent 70%);
  animation: none;
}

.section-auth {
  min-height: calc(100vh - var(--header-h) - 4rem);
  display: flex;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 4rem;
}

.auth-shell {
  width: min(420px, 92vw);
  margin: 0 auto;
}

.auth-entrance {
  margin-bottom: 2rem;
}

.auth-entrance-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 6.5vw, 3.6rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.auth-entrance-soft {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.auth-threshold {
  position: relative;
  padding: 1.75rem 0 0;
  border-top: 1px solid rgba(140, 150, 138, 0.22);
}

.auth-threshold::before {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 3.5rem;
  height: 2px;
  background: rgba(166, 124, 82, 0.55);
}

.auth-form .form-group label {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.auth-form input[type=text],
.auth-form input[type=email],
.auth-form input[type=password] {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(140, 150, 138, 0.28);
  border-radius: 0;
  padding: 0.65rem 0;
}

.auth-form input:focus {
  border-radius: 0;
  background: transparent;
  border-bottom-color: rgba(166, 124, 82, 0.65);
  box-shadow: none;
}

.auth-submit {
  appearance: none;
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.35rem 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(166, 124, 82, 0.45);
  border-radius: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.15rem;
  color: var(--text);
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.auth-submit:hover {
  color: var(--accent);
  border-bottom-color: rgba(166, 124, 82, 0.85);
}

.auth-whisper {
  margin: 2rem 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.98rem;
  color: var(--text-muted);
}

.auth-whisper-link {
  color: var(--text);
  border-bottom: 1px solid rgba(166, 124, 82, 0.35);
  text-decoration: none;
  font-style: normal;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.auth-whisper-link:hover {
  color: var(--accent);
  border-bottom-color: rgba(166, 124, 82, 0.75);
}

@media (max-width: 768px) {
  .section-auth {
    align-items: flex-start;
    min-height: auto;
    padding-top: 2rem;
  }
}

.video-wrap {
  aspect-ratio: 16/9;
  background: #000;
  margin-bottom: 1.5rem;
}

.video-wrap video { width: 100%; height: 100%; }

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feed-empty {
  text-align: center;
  color: var(--text-muted);
  margin: 2rem 0;
}

.feed-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.35rem 1.35rem 1.15rem;
}

.feed-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.feed-avatar {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.feed-avatar--sm {
  width: 1.85rem;
  height: 1.85rem;
  font-size: 0.7rem;
}

.feed-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.feed-author {
  font-weight: 400;
  color: var(--text);
}

.feed-card-meta time,
.feed-comment-top time {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.feed-card-body p {
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
  white-space: pre-wrap;
}

.feed-media {
  margin: 0.85rem -1.35rem 0;
  background: #0a0908;
}

.feed-media img,
.feed-media video {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  margin: 0 auto;
}

.feed-reactions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.feed-reaction-form {
  margin: 0;
}

.feed-reaction-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.55rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.feed-reaction-btn:hover {
  border-color: var(--accent-dim);
  background: rgba(166, 124, 82, 0.06);
}

.feed-reaction-btn.is-active {
  border-color: var(--accent);
  background: rgba(140, 150, 138, 0.12);
}

.feed-reaction-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.feed-comments {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.feed-comments-heading {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.feed-comment {
  margin-bottom: 0.85rem;
}

.feed-comment-main {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.feed-comment-content {
  flex: 1;
  min-width: 0;
}

.feed-comment-top {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem;
  position: relative;
}

.feed-comment-author {
  font-size: 0.9rem;
  font-weight: 400;
}

.feed-comment-body {
  margin: 0.2rem 0 0.35rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.feed-comment-reply-link {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.feed-comment-reply-link:hover {
  color: var(--accent);
}

.feed-comment.is-reply {
  margin: 0.65rem 0 0.65rem 2.5rem;
}

.feed-comment-menu {
  margin-left: auto;
  position: relative;
}

.feed-comment-menu summary {
  list-style: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.15rem 0.35rem;
  user-select: none;
}

.feed-comment-menu summary::-webkit-details-marker {
  display: none;
}

.feed-comment-menu summary:hover {
  color: var(--text);
}

.feed-comment-menu-panel {
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 5;
  min-width: 8rem;
  padding: 0.35rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
}

.feed-comment-menu-danger {
  display: block;
  width: 100%;
  padding: 0.45rem 0.65rem;
  background: transparent;
  border: none;
  color: #e8a0a0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-align: left;
  cursor: pointer;
}

.feed-comment-menu-danger:hover {
  background: rgba(200, 80, 80, 0.12);
}

.feed-reply-form-wrap {
  display: none;
  margin: 0.65rem 0 0.65rem 2.5rem;
}

.feed-reply-form-wrap:target {
  display: block;
}

.feed-composer {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.feed-composer textarea {
  width: 100%;
  min-height: 72px;
  resize: vertical;
  padding: 0.75rem 0.85rem;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 300;
}

.feed-composer textarea:focus {
  outline: none;
  border-color: var(--accent-dim);
}

.feed-composer .btn {
  align-self: flex-end;
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

.feed-composer--reply {
  margin-top: 0;
}

.feed-composer--reply textarea {
  min-height: 56px;
}

.chat-box {
  display: flex;
  flex-direction: column;
  height: calc(100vh - var(--header-h) - 4rem);
  max-width: 800px;
  margin: 2rem auto;
  border: 1px solid var(--border);
  background: var(--surface);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.chat-msg {
  margin-bottom: 1rem;
  max-width: 85%;
}

.chat-msg.mine { margin-left: auto; text-align: right; }

.chat-msg .bubble {
  display: inline-block;
  padding: 0.75rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  text-align: left;
}

.chat-msg.mine .bubble {
  background: rgba(140, 150, 138, 0.1);
  border-color: rgba(140, 150, 138, 0.22);
}

.chat-msg .meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.chat-form {
  display: flex;
  gap: 0.5rem;
  padding: 1rem;
  border-top: 1px solid var(--border);
}

.chat-form textarea {
  flex: 1;
  min-height: 48px;
  max-height: 120px;
}

/* Private Room — quiet chamber (unique vs salon feed / screening shelves) */
body.page-private {
  background-image:
    radial-gradient(ellipse 55% 45% at 50% 15%, rgba(166, 124, 82, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 85% 85%, rgba(0, 0, 0, 0.22) 0%, transparent 55%),
    linear-gradient(180deg, #100e0c 0%, #0e100f 50%, #0b0c0a 100%);
}

body.page-private::after {
  background:
    radial-gradient(ellipse 45% 30% at 20% 0%, rgba(200, 205, 190, 0.03) 0%, transparent 70%);
  animation: none;
}

.section-private {
  padding-top: 1.25rem;
  padding-bottom: 2.5rem;
}

.private-shell {
  width: min(640px, 92vw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - var(--header-h) - 3.5rem);
}

.private-entrance {
  margin-bottom: 1.5rem;
  max-width: 26rem;
  flex-shrink: 0;
}

.private-entrance-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 0.55rem;
  color: var(--text);
}

.private-entrance-soft {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.08rem;
  color: var(--text-muted);
}

.private-chamber {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  border-top: 1px solid rgba(140, 150, 138, 0.2);
}

.private-chamber::before {
  content: '';
  display: block;
  width: 3.5rem;
  height: 2px;
  margin-top: -1px;
  background: rgba(166, 124, 82, 0.55);
}

.private-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.35rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  min-height: 12rem;
  max-height: calc(100vh - var(--header-h) - 16rem);
}

.private-empty {
  margin: auto 0;
  text-align: left;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.02rem;
}

.private-note {
  max-width: 92%;
  align-self: flex-start;
}

.private-note.is-mine {
  align-self: flex-end;
  text-align: right;
}

.private-note-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.3rem;
}

.private-note.is-mine .private-note-meta {
  justify-content: flex-end;
}

.private-note-from {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--text);
}

.private-note.is-sessa .private-note-from {
  color: var(--accent);
}

.private-note-meta time {
  font-size: 0.68rem;
  color: rgba(140, 150, 138, 0.72);
  letter-spacing: 0.02em;
}

.private-note-body {
  margin: 0;
  padding: 0.7rem 0 0.15rem;
  border-top: 1px solid rgba(140, 150, 138, 0.16);
  font-size: 1.02rem;
  line-height: 1.5;
  font-weight: 300;
  text-align: left;
  white-space: pre-wrap;
}

.private-note.is-mine .private-note-body {
  border-top-color: rgba(166, 124, 82, 0.28);
}

.private-compose {
  flex-shrink: 0;
  padding: 1rem 0 0.25rem;
  border-top: 1px solid rgba(140, 150, 138, 0.16);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.private-compose textarea {
  width: 100%;
  min-height: 56px;
  max-height: 140px;
  resize: vertical;
  padding: 0.5rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(140, 150, 138, 0.28);
  border-radius: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
}

.private-compose textarea:focus {
  outline: none;
  border-bottom-color: rgba(166, 124, 82, 0.65);
  box-shadow: none;
  background: transparent;
  border-radius: 0;
}

.private-send {
  appearance: none;
  align-self: flex-start;
  padding: 0.25rem 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(166, 124, 82, 0.45);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--text);
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.private-send:hover {
  color: var(--accent);
  border-bottom-color: rgba(166, 124, 82, 0.85);
}

@media (max-width: 768px) {
  .private-entrance {
    margin-bottom: 1.15rem;
  }

  .private-messages {
    max-height: calc(100vh - var(--header-h) - 14rem);
  }
}

.admin-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: calc(100vh - var(--header-h));
}

.admin-nav {
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 1.5rem 0;
}

.admin-nav a {
  display: block;
  padding: 0.6rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.admin-nav a:hover, .admin-nav a.active {
  color: var(--accent);
  background: rgba(196,165,116,0.06);
}

.nav-badge {
  display: inline-block;
  min-width: 1.25rem;
  padding: 0.1rem 0.4rem;
  margin-left: 0.25rem;
  font-size: 0.7rem;
  line-height: 1.2;
  text-align: center;
  border-radius: 999px;
  background: rgba(200, 80, 80, 0.25);
  color: #e8a0a0;
  vertical-align: middle;
}

.admin-errors-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.25rem 0 1.5rem;
}

.admin-errors-filters {
  display: flex;
  gap: 0.75rem;
}

.admin-errors-filters a {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.admin-errors-filters a.active,
.admin-errors-filters a:hover {
  color: var(--accent);
}

.admin-errors-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.table tr.is-unread td {
  color: var(--text);
}

.table tr.is-unread td:first-child {
  box-shadow: inset 3px 0 0 var(--accent);
}

.error-detail {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1rem;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--text-muted);
  max-height: 320px;
}

.admin-content { padding: 2rem; }

/* Admin feed composer */
.admin-feed-head {
  margin-bottom: 1.75rem;
}

.admin-feed-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.admin-feed-soft {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--text-muted);
}

.admin-feed-composer {
  max-width: 36rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(140, 150, 138, 0.2);
}

.admin-feed-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 0.85rem;
}

.admin-feed-tool {
  appearance: none;
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  padding: 0.3rem 0.45rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.admin-feed-tool:hover,
.admin-feed-tool.is-active {
  color: var(--accent);
  border-bottom-color: rgba(166, 124, 82, 0.55);
}

.admin-feed-tool em {
  font-style: italic;
  font-weight: 300;
}

.admin-feed-toolbar-rule {
  width: 1px;
  height: 1rem;
  background: rgba(140, 150, 138, 0.3);
  margin: 0 0.25rem;
}

.admin-feed-body {
  width: 100%;
  min-height: 8rem;
  resize: vertical;
  padding: 0.65rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(140, 150, 138, 0.28);
  border-radius: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.5;
}

.admin-feed-editor {
  resize: none;
  white-space: pre-wrap;
  word-break: break-word;
  outline: none;
  cursor: text;
}

.admin-feed-editor.is-empty:before {
  content: attr(data-placeholder);
  color: var(--text-muted);
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 300;
  pointer-events: none;
}

.admin-feed-editor.is-focused,
.admin-feed-body:focus {
  outline: none;
  border-bottom-color: rgba(166, 124, 82, 0.65);
  box-shadow: none;
  background: transparent;
  border-radius: 0;
}

.admin-feed-editor strong,
.admin-feed-editor b {
  font-weight: 600;
}

.admin-feed-editor em,
.admin-feed-editor i {
  font-style: italic;
}

.admin-feed-body:focus {
  outline: none;
  border-bottom-color: rgba(166, 124, 82, 0.65);
  box-shadow: none;
  background: transparent;
  border-radius: 0;
}

.admin-feed-panel {
  margin-top: 1.25rem;
  padding: 1.15rem 0 0.25rem;
  border-top: 1px solid rgba(140, 150, 138, 0.16);
}

.admin-feed-panel-label {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: rgba(236, 234, 228, 0.88);
}

.admin-feed-panel .form-group {
  margin-bottom: 0.85rem;
}

.admin-feed-panel input[type=text] {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(140, 150, 138, 0.28);
  border-radius: 0;
  padding: 0.55rem 0;
}

.admin-feed-panel input[type=text]:focus {
  border-radius: 0;
  background: transparent;
  border-bottom-color: rgba(166, 124, 82, 0.65);
  box-shadow: none;
}

.admin-feed-panel-action {
  appearance: none;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(166, 124, 82, 0.35);
  padding: 0.2rem 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
}

.admin-feed-panel-action:hover {
  color: var(--accent);
}

.admin-feed-file-label {
  display: inline-block;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--text);
  border-bottom: 1px solid rgba(166, 124, 82, 0.4);
  padding-bottom: 0.2rem;
}

.admin-feed-file-label input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.admin-feed-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.admin-feed-publish {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
}

.admin-feed-submit {
  appearance: none;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(166, 124, 82, 0.5);
  padding: 0.3rem 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.1rem;
  color: var(--text);
  cursor: pointer;
}

.admin-feed-submit:hover {
  color: var(--accent);
  border-bottom-color: rgba(166, 124, 82, 0.85);
}

.admin-feed-list-label {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 1.15rem;
  margin: 0 0 1.25rem;
  color: rgba(236, 234, 228, 0.88);
}

.admin-feed-empty {
  color: var(--text-muted);
  font-family: var(--font-display);
  font-style: italic;
}

.admin-feed-item {
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(140, 150, 138, 0.14);
  max-width: 36rem;
}

.admin-feed-item-body {
  font-weight: 300;
  line-height: 1.5;
}

.admin-feed-item-body strong {
  font-weight: 500;
}

.admin-feed-item-poll,
.admin-feed-item-media {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

.admin-feed-item-meta {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.admin-feed-item-remove {
  appearance: none;
  margin-top: 0.65rem;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(200, 80, 80, 0.35);
  padding: 0.15rem 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.85rem;
  color: #e8a0a0;
  cursor: pointer;
}

.admin-feed-item-remove:hover {
  border-bottom-color: rgba(200, 80, 80, 0.7);
}

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

/* Latest poll */
.latest-poll {
  margin: 0.75rem 0 0;
  padding: 0.75rem 0 0;
  border-top: none;
}

.latest-poll-question {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.98rem;
}

.latest-poll-options {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.latest-poll-option-form {
  margin: 0;
}

.latest-poll-option {
  appearance: none;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.35rem 0.65rem;
  width: 100%;
  padding: 0.45rem 0.1rem;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(140, 150, 138, 0.18);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  font: inherit;
  overflow: hidden;
}

.latest-poll-option:hover {
  border-bottom-color: rgba(166, 124, 82, 0.45);
}

.latest-poll-option.is-chosen {
  border-bottom-color: rgba(166, 124, 82, 0.7);
}

.latest-poll-option-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 300;
}

.latest-poll-option-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--poll-pct, 0%);
  background: rgba(166, 124, 82, 0.12);
  pointer-events: none;
  transition: width 0.35s ease;
}

.latest-poll-option-pct {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 300;
}

.latest-poll-meta {
  margin: 0.65rem 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

.latest-dispatch-body strong {
  font-weight: 500;
}

.latest-dispatch-body em {
  font-style: italic;
}

/* Film edit — compact access + dropzones */
.film-edit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.85fr);
  gap: 1.5rem 2rem;
  max-width: 960px;
  margin-bottom: 1.25rem;
}

.film-edit-side {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.film-edit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  max-width: 960px;
}

.film-access {
  margin: 0 0 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  background: var(--surface);
}

.film-access legend {
  padding: 0 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.film-access-option {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
  cursor: pointer;
}

.film-access-option input {
  margin-top: 0.35rem;
  width: auto;
}

.film-access-option strong {
  display: block;
  color: var(--text);
  font-weight: 500;
}

.film-access-option small {
  display: block;
  margin-top: 0.15rem;
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.film-access-controlled {
  margin-top: 0.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.film-access-check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
  color: var(--text);
  cursor: pointer;
}

.film-access-check input {
  width: auto;
  margin: 0;
}

.film-access-price {
  margin-top: 0.5rem;
}

.film-media {
  max-width: 960px;
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.film-media-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
}

.film-media-head h2 {
  margin: 0;
  font-size: 1.15rem;
  font-family: var(--font-display);
  font-weight: 400;
}

.film-dropzones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.film-dropzone {
  margin: 0;
  padding: 0.75rem;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.film-dropzone.is-ready {
  border-color: rgba(100, 180, 100, 0.35);
}

.film-dropzone.is-dragover {
  border-color: rgba(166, 124, 82, 0.65);
  background: rgba(166, 124, 82, 0.06);
}

.film-dropzone.is-uploading {
  opacity: 0.72;
  pointer-events: none;
}

.film-dropzone-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
  font-size: 0.85rem;
  color: var(--text);
}

.film-dropzone-label em {
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.film-dropzone.is-required .film-dropzone-label em {
  color: var(--accent);
}

.film-dropzone-surface {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  min-height: 5.5rem;
  padding: 0.85rem 0.75rem;
  border: 1px dashed rgba(140, 150, 138, 0.35);
  background: rgba(22, 25, 22, 0.45);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.film-dropzone-surface:hover,
.film-dropzone.is-dragover .film-dropzone-surface {
  border-color: rgba(166, 124, 82, 0.55);
  background: rgba(166, 124, 82, 0.05);
}

.film-dropzone-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  padding: 0;
  border: 0;
  background: transparent;
}

.film-dropzone-copy {
  font-size: 0.85rem;
  color: var(--text);
}

.film-dropzone-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.film-dropzone-status {
  margin: 0.55rem 0 0;
  font-size: 0.75rem;
  line-height: 1.35;
  color: var(--text-muted);
}

.film-dropzone-status .is-ok { color: #a0d8a0; }
.film-dropzone-status .is-miss { color: var(--text-muted); }
.film-dropzone-status .is-busy { color: var(--accent); }

.film-dropzone-path {
  display: block;
  margin-top: 0.15rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.film-media-note {
  margin-top: 1rem;
  max-width: 560px;
}

@media (max-width: 860px) {
  .film-edit-grid {
    grid-template-columns: 1fr;
  }

  .film-dropzones {
    grid-template-columns: 1fr;
  }
}

/* Gallery desk — editorial upload workspace */
.gallery-desk-head {
  max-width: 1100px;
  margin-bottom: 1.25rem;
}

.gallery-desk-head h1 {
  margin-bottom: 0.35rem;
}

.gallery-desk-alert {
  max-width: 1100px;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  font-size: 0.9rem;
}

.gallery-desk-alert.is-error {
  border-color: rgba(200, 80, 80, 0.4);
  color: #e8a0a0;
}

.gallery-desk-alert.is-success {
  border-color: rgba(100, 180, 100, 0.35);
  color: #a0d8a0;
}

.gallery-desk-alert.is-busy {
  color: var(--accent);
}

.gallery-desk {
  max-width: 1100px;
}

.gallery-desk-stage {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.25fr);
  gap: 1.25rem 1.5rem;
  align-items: stretch;
  min-height: 22rem;
  margin-bottom: 1.75rem;
}

.gallery-desk-empty,
.gallery-desk-editor {
  grid-column: 2;
  grid-row: 1;
}

.gallery-desk-empty[hidden],
.gallery-desk-editor[hidden],
.gallery-desk-alert[hidden],
.gallery-strip-block[hidden],
.film-access-controlled[hidden] {
  display: none !important;
}

.gallery-drop {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.45rem;
  min-height: 22rem;
  padding: 1.5rem;
  border: 1px dashed rgba(140, 150, 138, 0.35);
  background:
    linear-gradient(160deg, rgba(30, 34, 30, 0.9), rgba(18, 20, 18, 0.96));
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.gallery-drop:hover,
.gallery-drop.is-dragover {
  border-color: rgba(166, 124, 82, 0.55);
  background: rgba(166, 124, 82, 0.06);
}

.gallery-drop-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  padding: 0;
  border: 0;
  background: transparent;
}

.gallery-drop-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.gallery-drop-copy {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}

.gallery-drop-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.gallery-desk-editor {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.95fr);
  gap: 1rem 1.25rem;
  padding: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
}

.gallery-editor-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 16rem;
  background: rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.gallery-editor-preview img {
  display: block;
  max-width: 100%;
  max-height: 22rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.gallery-editor-form .form-group {
  margin-bottom: 0.85rem;
}

.gallery-editor-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 0.85rem 1.25rem;
  margin-bottom: 0.85rem;
}

.gallery-editor-row .form-group {
  margin-bottom: 0;
  min-width: 5.5rem;
  flex: 0 0 auto;
}

.gallery-editor-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
  color: var(--text);
  cursor: pointer;
}

.gallery-editor-check input {
  width: auto;
  margin: 0;
}

.gallery-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.65rem;
}

.gallery-desk-empty {
  display: flex;
  align-items: center;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--border);
  background: rgba(22, 25, 22, 0.55);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.45;
}

.gallery-desk-empty p {
  margin: 0;
  max-width: 22rem;
}

.gallery-strip-block {
  margin-bottom: 1.5rem;
}

.gallery-strip-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.gallery-strip-label h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.gallery-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.gallery-strip-item {
  position: relative;
  width: 4.75rem;
  height: 4.75rem;
  padding: 0;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.gallery-strip-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-strip-item:hover {
  border-color: rgba(166, 124, 82, 0.45);
}

.gallery-strip-item.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(166, 124, 82, 0.35);
  transform: translateY(-1px);
}

.gallery-strip-badge {
  position: absolute;
  left: 0.25rem;
  bottom: 0.25rem;
  padding: 0.1rem 0.3rem;
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(0, 0, 0, 0.72);
}

@media (max-width: 980px) {
  .gallery-desk-stage {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .gallery-desk-empty,
  .gallery-desk-editor {
    grid-column: 1;
    grid-row: auto;
  }

  .gallery-drop {
    min-height: 10rem;
  }

  .gallery-desk-editor {
    grid-template-columns: 1fr;
  }

  .gallery-editor-preview {
    min-height: 12rem;
  }

  .gallery-editor-preview img {
    max-height: 16rem;
  }
}

/* Package desk — gallery-like media + film-like access */
.package-desk {
  max-width: 1100px;
}

.package-desk-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.85fr);
  gap: 1.5rem 2rem;
  margin-bottom: 1.25rem;
}

.package-desk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.package-media-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.85fr);
  gap: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  align-items: stretch;
}

.package-media-intake {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.package-images-drop {
  min-height: 12rem;
}

.package-reorder-hint {
  margin: -0.25rem 0 0.75rem;
}

.gallery-strip-item.is-dragging {
  opacity: 0.45;
}

.gallery-strip-item.is-drag-over {
  border-color: rgba(166, 124, 82, 0.7);
}

.gallery-strip-item.is-cover {
  border-color: rgba(166, 124, 82, 0.55);
}

.package-media-preview {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
}

.package-preview-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 14rem;
  background: rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.package-preview-frame img {
  display: block;
  max-width: 100%;
  max-height: 18rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.package-preview-frame img[hidden],
.package-preview-actions[hidden],
.package-preview-frame .card-meta[hidden] {
  display: none !important;
}

.package-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

@media (max-width: 900px) {
  .package-desk-grid,
  .package-media-stage {
    grid-template-columns: 1fr;
  }

  .package-images-drop {
    min-height: 9rem;
  }
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.table th, .table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.table th {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.site-footer {
  padding: 3rem 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  border-top: 1px solid var(--border);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 0.85rem;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--text);
  text-decoration: underline;
}

.legal-doc {
  text-align: left;
}

.legal-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0 1.75rem;
  font-size: 0.9rem;
}

.legal-table th,
.legal-table td {
  border: 1px solid var(--border);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  font-weight: 500;
  color: var(--text-muted);
}

.form-privacy-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 1.25rem;
  max-width: 36rem;
}

.form-privacy-note a {
  color: inherit;
  text-decoration: underline;
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lightbox-target {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 45%, rgba(30, 34, 30, 0.5) 0%, transparent 70%),
    rgba(8, 10, 9, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 2rem;
}

.lightbox-target:target { display: flex; }

.lightbox-target img {
  max-height: 90vh;
  max-width: 90vw;
  object-fit: contain;
  border: 1px solid rgba(140, 150, 138, 0.28);
  box-shadow:
    0 0 0 8px rgba(14, 16, 15, 0.65),
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(200, 205, 190, 0.04);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: var(--text);
  font-size: 2rem;
}

.tier-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.tier-card {
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  text-align: center;
}

.tier-card h3 { font-size: 1.75rem; margin: 0 0 0.5rem; }

.tier-price {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--text);
  margin: 1rem 0;
}

.prose { max-width: 680px; margin: 0 auto; }
.prose p { margin-bottom: 1.25rem; }

.page-shell,
.about-page {
  max-width: 980px;
}

.contact-body {
  max-width: 640px;
  margin: 0 auto;
}

.page-narrow {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.about-intro-block {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 2rem 3rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.about-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(140, 150, 138, 0.12);
}

/* Asymmetric soft light fall — about discovery */
.about-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg, rgba(10, 12, 11, 0.18) 0%, transparent 38%),
    radial-gradient(ellipse 55% 45% at 92% 12%, rgba(210, 215, 200, 0.12) 0%, transparent 60%);
}

.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  border: none;
  filter: saturate(0.92) contrast(1.02);
}

.about-intro.prose,
.about-more.prose {
  margin: 0;
  max-width: none;
}

.about-intro.prose p,
.about-more.prose p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-lead {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  font-weight: 300;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 1.35rem !important;
}

.about-signature {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-muted);
  margin-top: 2rem !important;
  margin-bottom: 0 !important;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(166, 124, 82, 0.35);
  display: inline-block;
  min-width: 8rem;
}

.about-more {
  padding-top: 2.25rem;
  border-top: 1px solid var(--border);
  max-width: 640px;
}

.about-more h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.75rem;
  margin: 0 0 1rem;
}

.about-more h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.2rem;
  margin: 1.75rem 0 0.85rem;
  color: var(--text-muted);
}

.about-loves {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Contact: correspondence desk — unique vs home hero & her-world pages */
body.page-contact {
  background-image:
    radial-gradient(ellipse 55% 40% at 85% 8%, rgba(170, 175, 160, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 10% 75%, rgba(60, 70, 55, 0.06) 0%, transparent 60%),
    linear-gradient(185deg, #101311 0%, var(--bg) 48%, #0b0d0b 100%);
}

body.page-contact::after {
  background:
    linear-gradient(90deg, transparent 0%, rgba(140, 150, 138, 0.02) 50%, transparent 100%);
  animation: none;
}

.section-contact {
  padding-top: 1.75rem;
  padding-bottom: 5.5rem;
}

.contact-shell {
  width: min(980px, 92vw);
  margin: 0 auto;
}

.contact-entrance {
  margin-bottom: 2.75rem;
  max-width: 28rem;
}

.contact-entrance-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.75rem, 8vw, 4.25rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 1.15rem;
  color: var(--text);
}

.contact-entrance-rule {
  display: block;
  width: 3.25rem;
  height: 1px;
  background: rgba(166, 124, 82, 0.55);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.75rem;
  align-items: start;
}

.contact-intro {
  margin-bottom: 2.25rem;
  text-align: left;
}

.contact-intro.prose {
  margin: 0 0 1.75rem;
  max-width: 32rem;
}

.contact-intro p {
  margin: 0 0 1.05rem;
  line-height: 1.8;
  color: rgba(236, 234, 228, 0.86);
  font-size: 1.05rem;
}

.contact-intro p:first-child {
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 2vw, 1.28rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--text);
}

.contact-intro p:last-child {
  margin-bottom: 0;
  font-style: italic;
  color: var(--text-muted);
  font-family: var(--font-display);
}

.contact-note {
  margin-top: 0;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(140, 150, 138, 0.18);
  max-width: 32rem;
}

.contact-note-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 1.35rem;
  margin: 0 0 1.15rem;
  color: rgba(236, 234, 228, 0.9);
}

.contact-note .prose {
  margin: 0;
  max-width: none;
}

.contact-note .prose p {
  margin: 0 0 1rem;
  line-height: 1.75;
  color: rgba(236, 234, 228, 0.78);
  font-size: 0.98rem;
}

.contact-note .prose p:last-child {
  margin-bottom: 0;
}

.contact-desk {
  position: relative;
  padding: 1.75rem 1.5rem 1.5rem;
  border-left: 2px solid rgba(166, 124, 82, 0.4);
  background:
    linear-gradient(165deg, rgba(22, 26, 22, 0.55) 0%, rgba(16, 19, 16, 0.35) 100%);
}

.contact-form {
  margin-bottom: 0;
  padding: 0;
}

body.page-contact .contact-form input,
body.page-contact .contact-form textarea {
  background: rgba(12, 14, 12, 0.55);
  border-color: rgba(140, 150, 138, 0.2);
}

body.page-contact .contact-form input:focus,
body.page-contact .contact-form textarea:focus {
  border-color: rgba(166, 124, 82, 0.55);
  border-radius: 0;
  box-shadow: inset 0 0 0 1px rgba(166, 124, 82, 0.15);
}

.contact-send {
  appearance: none;
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.55rem 0 0.65rem;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(166, 124, 82, 0.45);
  border-radius: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  color: var(--text);
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.contact-send:hover {
  color: var(--accent);
  border-bottom-color: rgba(166, 124, 82, 0.85);
}

.contact-whisper {
  margin-top: 3.5rem;
  text-align: left;
  max-width: none;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 2.5rem 4rem;
    align-items: start;
  }

  .contact-copy {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
    padding-top: 0.35rem;
  }

  .contact-desk {
    padding: 2rem 2rem 1.75rem 2.15rem;
  }
}

@media (max-width: 899px) {
  .contact-desk {
    padding: 1.5rem 1.15rem 1.25rem;
  }

  .contact-entrance {
    margin-bottom: 2.15rem;
  }
}

.about-loves li {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(140, 150, 138, 0.12);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

@media (max-width: 640px) {
  .about-intro-block {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-photo {
    width: min(300px, 78vw);
  }

  .about-lead {
    font-size: 1.15rem;
  }

  .about-loves {
    grid-template-columns: 1fr;
  }

  .about-more {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-header {
    height: auto;
    min-height: var(--header-h);
  }

  .site-header .container {
    position: relative;
    flex-wrap: nowrap;
    gap: 0.75rem;
    align-items: center;
  }

  body.page-home .site-header .container {
    align-items: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% - 0.15rem);
    left: 0;
    right: 0;
    z-index: 110;
    padding: 0.5rem 0 1rem;
    background: rgba(14, 16, 15, 0.97);
    border-bottom: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-0.35rem);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }

  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.page-home .site-header {
    padding: 1.25rem 0 1.5rem;
  }

  body.page-home .site-nav {
    background: rgba(10, 12, 11, 0.96);
    border-bottom-color: rgba(140, 150, 138, 0.16);
  }

  .nav-main {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(1400px, 94vw);
    margin: 0 auto;
  }

  .nav-main li {
    border-top: 1px solid rgba(140, 150, 138, 0.1);
  }

  .nav-main a {
    display: block;
    padding: 0.95rem 0.15rem;
    font-size: 1rem;
  }

  body.page-home .site-header .nav-main {
    gap: 0;
  }

  body.page-home .site-header .nav-main a {
    font-size: 1rem;
    padding: 0.95rem 0.15rem 0.85rem;
  }

  body.page-home .site-header .nav-main a::after {
    display: none;
  }

  .nav-cta {
    border: none !important;
    border-radius: 0 !important;
    padding: 0.95rem 0.15rem !important;
    margin-left: 0 !important;
  }

  .hero-home {
    padding: 6.5rem 0 10vh;
    justify-content: flex-end;
    align-items: center;
    background-image:
      radial-gradient(ellipse 80% 50% at 50% 18%, rgba(200, 205, 190, 0.06) 0%, transparent 55%),
      radial-gradient(ellipse 50% 40% at 50% 85%, rgba(0, 0, 0, 0.28) 0%, transparent 65%),
      linear-gradient(180deg, #121512 0%, #0e100f 50%, #0a0c0b 100%);
  }

  .hero-home::before {
    transform: none;
  }

  /* Soft light-window — nudged down just under the copy */
  .hero-home-visual {
    top: auto;
    right: -4%;
    bottom: 30%;
    left: auto;
    width: min(72vw, 380px);
    height: min(20vh, 170px);
    transform: none;
    opacity: 0.58;
    filter: brightness(0.72) saturate(0.78) contrast(0.95);
    background-image: url('../img/AirBrush_20260120221434-cropped.jpg');
    background-position: 82% 40%;
    background-size: 135% auto;
    -webkit-mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.3) 26%, #000 48%),
      linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
    mask-image:
      linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.3) 26%, #000 48%),
      linear-gradient(180deg, transparent 0%, #000 14%, #000 86%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
  }

  .hero-home .container {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 6vh;
    text-align: center;
    padding-top: 0.75rem;
  }

  .hero-home h1 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .hero-home p {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
  }

  .hero-actions {
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .hero-explore-label {
    font-size: 1.2rem;
    letter-spacing: 0.12em;
  }

  .btn-luxe { font-size: 1rem; }

  .grid-films {
    grid-template-columns: 1fr;
  }

  .film-search-row {
    flex-direction: column;
    align-items: stretch;
  }

  .film-search-row input[type="search"] {
    flex: 1 1 auto;
    width: 100%;
  }

  .film-search-row .btn,
  .film-search-row .btn-ghost {
    width: 100%;
    text-align: center;
  }

  .lightbox-target {
    padding: 1rem;
    align-items: center;
  }

  .lightbox-target img {
    max-height: 85vh;
    max-width: 100%;
  }

  .admin-layout { grid-template-columns: 1fr; }
  .admin-nav { display: flex; flex-wrap: wrap; padding: 0.5rem; }
  .admin-nav a { padding: 0.5rem 1rem; }

  .age-gate-panel {
    padding: 2.25rem 1.5rem 2rem;
  }

  .age-gate-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .age-gate-actions .btn-luxe {
    justify-content: center;
    min-height: 2.75rem;
  }
}

/* —— Age gate —— */
html[data-age-gate="pending"] .site-header,
html[data-age-gate="pending"] main,
html[data-age-gate="pending"] .site-footer {
  filter: blur(18px);
  pointer-events: none;
  user-select: none;
}

html[data-age-gate="pending"] body {
  overflow: hidden;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(140, 150, 138, 0.1) 0%, transparent 55%),
    linear-gradient(180deg, rgba(8, 10, 9, 0.94) 0%, rgba(14, 16, 15, 0.98) 100%);
}

html[data-age-gate="pending"] .age-gate {
  display: flex;
}

.age-gate[hidden] {
  display: none !important;
}

.age-gate-panel {
  width: min(420px, 100%);
  text-align: center;
  padding: 2.75rem 2.25rem 2.5rem;
  background: linear-gradient(165deg, rgba(22, 25, 22, 0.92) 0%, rgba(14, 16, 15, 0.88) 100%);
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.age-gate-brand {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 5vw, 2.35rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
}

.age-gate-brand span {
  color: rgba(166, 124, 82, 0.85);
}

.age-gate-title {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.age-gate-copy {
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.age-gate-copy a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.age-gate-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
}

.age-gate-actions .btn-luxe {
  font-size: 1.05rem;
}

/* —— Page discoveries: same house, different corners —— */

/* Screening Room — dim archive shelves (unique vs home/her-world/contact) */
body.page-teasers {
  background-image:
    radial-gradient(ellipse 70% 55% at 50% -5%, rgba(200, 205, 190, 0.035) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(0, 0, 0, 0.22) 0%, transparent 60%),
    radial-gradient(ellipse 45% 35% at 90% 40%, rgba(0, 0, 0, 0.18) 0%, transparent 55%),
    linear-gradient(180deg, #0c0e0c 0%, #0e100f 40%, #0a0c0b 100%);
}

body.page-teasers::after {
  background:
    radial-gradient(ellipse 60% 30% at 50% 0%, rgba(180, 185, 170, 0.03) 0%, transparent 70%);
  animation: none;
}

.section-screening {
  padding-top: 1.5rem;
  padding-bottom: 5.5rem;
}

.screening-shell {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.screening-entrance {
  margin-bottom: 2.25rem;
  max-width: 28rem;
}

.screening-entrance-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 4.1rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.screening-entrance-soft {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.12rem;
  color: var(--text-muted);
}

.screening-index {
  margin-bottom: 2.75rem;
  max-width: 40rem;
}

.screening-index .film-search-row .btn,
.screening-index .film-search-row .btn-sm {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(166, 124, 82, 0.4);
  border-radius: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 300;
  padding: 0.4rem 0;
}

.screening-index .film-search-row .btn:hover {
  color: var(--accent);
  background: none;
}

.screening-shelf {
  margin-bottom: 3.25rem;
}

.screening-shelf-label {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 1.2rem;
  margin: 0 0 1.25rem;
  color: rgba(236, 234, 228, 0.88);
  letter-spacing: 0.02em;
}

.screening-empty {
  color: var(--text-muted);
  font-family: var(--font-display);
  font-style: italic;
  margin: 0.5rem 0 0;
}

.screening-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem 1.15rem;
  align-items: flex-start;
}

.screening-title {
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 7.5rem;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  color: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  transition: opacity 0.3s ease, transform 0.35s ease;
}

a.screening-title {
  cursor: pointer;
}

.screening-title:hover {
  transform: translateY(-3px);
}

.screening-title.is-locked {
  cursor: default;
  opacity: 0.55;
}

.screening-title.is-locked:hover {
  transform: none;
}

.screening-title-poster {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: rgba(18, 22, 18, 0.9);
  border: 1px solid rgba(140, 150, 138, 0.2);
}

.screening-title-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.92);
  transition: filter 0.35s ease;
}

.screening-title:hover .screening-title-poster img {
  filter: saturate(0.95) brightness(1);
}

.screening-title-poster.is-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(160deg, rgba(28, 32, 28, 0.95) 0%, rgba(14, 16, 15, 0.98) 100%);
}

.screening-title-initials {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  color: rgba(140, 150, 138, 0.55);
}

.screening-locked-mark {
  position: absolute;
  left: 0.4rem;
  bottom: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(236, 234, 228, 0.75);
  background: rgba(8, 10, 9, 0.72);
  padding: 0.2rem 0.35rem;
}

.screening-title-name {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.35;
  color: rgba(236, 234, 228, 0.88);
  transition: color 0.3s ease;
}

.screening-title:hover .screening-title-name {
  color: var(--accent);
}

.screening-title-meta {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.3;
}

.screening-bay {
  margin: 0 0 3.5rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(140, 150, 138, 0.18);
}

.screening-bay-inner {
  max-width: 44rem;
  margin: 0 auto;
  position: relative;
}

.screening-bay-close {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
}

.screening-bay-close:hover {
  color: var(--accent);
}

.screening-bay-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  margin: 0 0 1rem;
  color: var(--text);
}

.screening-bay-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid rgba(140, 150, 138, 0.22);
  overflow: hidden;
}

.screening-bay-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.screening-bay-link {
  margin: 1.15rem 0 0;
}

.screening-bay-full {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(166, 124, 82, 0.4);
  padding-bottom: 0.25rem;
}

.screening-bay-full:hover {
  color: var(--accent);
  border-bottom-color: rgba(166, 124, 82, 0.75);
}

.screening-whisper {
  text-align: left;
  max-width: none;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .screening-title {
    width: calc(33.333% - 0.8rem);
    min-width: 5.5rem;
  }

  .screening-rail {
    gap: 1.1rem 0.85rem;
  }

  .screening-entrance {
    margin-bottom: 1.75rem;
  }
}

/* Gallery: stone court — cooler air, hard slabs (unique vs screening/contact) */
body.page-gallery {
  background-image:
    radial-gradient(ellipse 55% 40% at 80% 10%, rgba(150, 160, 155, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 45% 50% at 10% 70%, rgba(0, 0, 0, 0.28) 0%, transparent 60%),
    linear-gradient(185deg, #0d100f 0%, #0e1210 45%, #0b0d0c 100%);
}

body.page-gallery::after {
  background:
    radial-gradient(ellipse 50% 35% at 30% 100%, rgba(140, 150, 138, 0.04) 0%, transparent 65%);
  animation: none;
}

.section-gallery {
  padding-top: 1.5rem;
  padding-bottom: 5.5rem;
}

.gallery-shell {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.gallery-entrance {
  margin-bottom: 2.5rem;
  max-width: 28rem;
}

.gallery-entrance-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 7vw, 4.1rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.gallery-entrance-soft {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.12rem;
  color: var(--text-muted);
}

.gallery-empty {
  color: var(--text-muted);
  font-family: var(--font-display);
  font-style: italic;
  margin: 0.5rem 0 0;
}

.gallery-court {
  margin-bottom: 1rem;
}

body.page-gallery .lightbox-target {
  background:
    radial-gradient(ellipse 50% 40% at 50% 48%, rgba(22, 26, 24, 0.55) 0%, transparent 70%),
    rgba(6, 8, 7, 0.96);
  animation: galleryLightboxIn 0.35s ease;
}

@keyframes galleryLightboxIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

body.page-gallery .lightbox-target img {
  border: 1px solid rgba(140, 150, 138, 0.32);
  box-shadow:
    0 0 0 10px rgba(10, 12, 11, 0.7),
    0 28px 70px rgba(0, 0, 0, 0.6);
}

body.page-gallery .lightbox-close {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.75rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

body.page-gallery .lightbox-close:hover {
  color: var(--accent);
}

.gallery-folios {
  margin: 0 0 3rem;
  padding: 0 0 2.25rem;
  border-bottom: 1px solid rgba(140, 150, 138, 0.2);
}

.gallery-folios--page {
  margin: 0;
  padding: 0;
  border-bottom: none;
}

.gallery-folios-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
}

.gallery-folios-label {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 1.2rem;
  margin: 0;
  color: rgba(236, 234, 228, 0.88);
  letter-spacing: 0.02em;
}

.gallery-folios-more {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(166, 124, 82, 0.35);
}

.gallery-folios-more:hover {
  color: var(--accent);
  border-bottom-color: rgba(166, 124, 82, 0.7);
}

.gallery-folios-foot {
  margin: 1.5rem 0 0;
  text-align: center;
}

.gallery-folios-nav {
  margin: 0 0 2rem;
  text-align: center;
}

.gallery-folios-nav .btn {
  margin: 0 0.35rem;
}

.gallery-whisper--top {
  margin: 0 0 2.5rem;
}

.gallery-court--after-folios {
  margin-top: 0.5rem;
}

.package-lightbox-download {
  position: absolute;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  margin: 0;
  text-align: center;
}

.package-lightbox-download a {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(166, 124, 82, 0.4);
}

.package-lightbox-download a:hover {
  color: var(--accent);
}

.gallery-slab-caption a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(166, 124, 82, 0.35);
}

.gallery-slab-caption a:hover {
  color: var(--accent);
}

.gallery-folios-index {
  margin-bottom: 1.75rem;
  max-width: 40rem;
}

.gallery-folios-index .film-search-row .btn,
.gallery-folios-index .film-search-row .btn-sm {
  background: none;
  border: none;
  border-bottom: 1px solid rgba(166, 124, 82, 0.4);
  border-radius: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 300;
  padding: 0.4rem 0;
}

.gallery-folios-index .film-search-row .btn:hover {
  color: var(--accent);
  background: none;
}

.gallery-folio-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Bound sets as a row/grid of covers (gallery preview + all packages) */
.gallery-folios--preview .gallery-folio-list,
.gallery-folios--page .gallery-folio-list {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.25rem 1rem;
}

.gallery-folios--preview .gallery-folio-list {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.gallery-folios--preview .gallery-folio,
.gallery-folios--page .gallery-folio {
  flex: 1 1 0;
  min-width: 7.5rem;
  max-width: 11rem;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  padding: 0;
  border-bottom: none;
}

.gallery-folios--page .gallery-folio {
  flex: 0 1 10rem;
}

.gallery-folios--preview .gallery-folio-cover,
.gallery-folios--page .gallery-folio-cover {
  flex: none;
  width: 100%;
  aspect-ratio: 3 / 4;
}

.gallery-folios--preview .gallery-folio-body,
.gallery-folios--page .gallery-folio-body {
  gap: 0.15rem;
  padding: 0 0.1rem 0.25rem;
}

.gallery-folios--preview .gallery-folio-title,
.gallery-folios--page .gallery-folio-title {
  font-size: 1rem;
  line-height: 1.25;
}

.gallery-folios--preview .gallery-folio-tags,
.gallery-folios--page .gallery-folio-tags {
  font-size: 0.7rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gallery-folios--preview .gallery-folio-meta,
.gallery-folios--page .gallery-folio-meta {
  font-size: 0.72rem;
}

.gallery-folio {
  display: flex;
  align-items: stretch;
  gap: 1.15rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(140, 150, 138, 0.14);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}

a.gallery-folio:hover .gallery-folio-title {
  color: var(--accent);
}

.gallery-folio.is-locked {
  opacity: 0.72;
  cursor: pointer;
}

.gallery-folio.is-locked:hover .gallery-folio-title {
  color: var(--accent);
}

.gallery-folio-cover.is-blurred img {
  filter: blur(10px) saturate(0.7);
  transform: scale(1.08);
}

.gallery-locked-note {
  margin: 0 0 1.75rem;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.gallery-locked-note span {
  display: inline-block;
  margin-left: 0.35rem;
}

.gallery-court.is-locked-preview .gallery-slab-link {
  cursor: zoom-in;
}

.gallery-folio-cover {
  position: relative;
  flex: 0 0 4.5rem;
  width: 4.5rem;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: rgba(18, 22, 18, 0.9);
  border: 1px solid rgba(140, 150, 138, 0.22);
}

.gallery-folio-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.85);
}

.gallery-folio-cover.is-empty {
  background:
    linear-gradient(160deg, rgba(28, 32, 28, 0.95) 0%, rgba(14, 16, 15, 0.98) 100%);
}

.gallery-folio-locked-mark {
  position: absolute;
  left: 0.3rem;
  bottom: 0.3rem;
  font-family: var(--font-sans);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(236, 234, 228, 0.75);
  background: rgba(8, 10, 9, 0.72);
  padding: 0.15rem 0.3rem;
}

.gallery-folio-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  min-width: 0;
}

.gallery-folio-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.3;
  color: rgba(236, 234, 228, 0.92);
  transition: color 0.3s ease;
}

.gallery-folio-tags {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.gallery-folio-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.gallery-whisper {
  text-align: left;
  max-width: none;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .gallery-entrance {
    margin-bottom: 1.75rem;
  }

  .gallery-folio-cover {
    flex-basis: 3.75rem;
    width: 3.75rem;
  }

  .gallery-folios--preview .gallery-folio,
  .gallery-folios--page .gallery-folio {
    flex: 0 0 7rem;
    max-width: none;
  }

  .gallery-folios--preview .gallery-folio-cover,
  .gallery-folios--page .gallery-folio-cover {
    width: 100%;
  }
}

/* Latest — salon stream (unique vs gallery court / screening shelves) */
body.page-latest {
  background-image:
    radial-gradient(ellipse 60% 45% at 50% 0%, rgba(166, 124, 82, 0.055) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 70%, rgba(0, 0, 0, 0.2) 0%, transparent 55%),
    linear-gradient(180deg, #100f0d 0%, #0e100f 50%, #0c0d0b 100%);
}

body.page-latest::after {
  background:
    radial-gradient(ellipse 50% 28% at 20% 100%, rgba(166, 124, 82, 0.03) 0%, transparent 65%);
  animation: none;
}

.section-latest {
  padding-top: 1.5rem;
  padding-bottom: 5.5rem;
}

.latest-shell {
  width: min(680px, 92vw);
  margin: 0 auto;
}

.latest-entrance {
  margin-bottom: 1.75rem;
  max-width: 26rem;
}

.latest-entrance-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 5.5vw, 3.4rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.latest-entrance-soft {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.02rem;
  color: var(--text-muted);
}

.latest-empty {
  color: var(--text-muted);
  font-family: var(--font-display);
  font-style: italic;
  margin: 0.5rem 0 0;
}

.latest-stream {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.latest-dispatch {
  padding: 1.85rem 0 1.75rem;
  border-bottom: 1px solid rgba(140, 150, 138, 0.16);
}

.latest-dispatch:first-child {
  border-top: 1px solid rgba(140, 150, 138, 0.16);
}

.latest-dispatch-header {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  margin-bottom: 0.65rem;
}

.latest-dispatch-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2rem 0.85rem;
  min-width: 0;
}

.latest-avatar {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: rgba(18, 22, 18, 0.9);
  border: 1px solid rgba(140, 150, 138, 0.28);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.latest-avatar--sm {
  width: 1.45rem;
  height: 1.45rem;
  font-size: 0.58rem;
}

.latest-author {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--text);
}

.latest-dispatch-meta time {
  font-size: 0.68rem;
  color: rgba(140, 150, 138, 0.72);
  letter-spacing: 0.02em;
  opacity: 0.85;
}

.latest-comment-top time {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

.latest-dispatch-body p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  white-space: normal;
  font-weight: 300;
}

.latest-media {
  margin: 0.75rem 0 0;
  background: #0a0908;
  border: 1px solid rgba(140, 150, 138, 0.28);
  box-shadow:
    0 0 0 1px rgba(8, 10, 9, 0.5),
    0 12px 28px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.latest-media img,
.latest-media video {
  width: 100%;
  max-height: min(42vh, 420px);
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.latest-engage {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  margin-top: 0.95rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(140, 150, 138, 0.12);
}

.latest-engage-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 1.35rem;
}

.latest-reactions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.1rem 0.45rem;
  margin: 0;
  padding: 0;
  border: none;
}

.latest-reaction-form {
  margin: 0;
}

.latest-reaction {
  appearance: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.05rem;
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.latest-reaction:hover {
  opacity: 1;
}

.latest-reaction.is-active {
  opacity: 1;
  border-bottom-color: rgba(166, 124, 82, 0.65);
}

.latest-reaction-count {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 300;
}

.latest-react-picker {
  position: relative;
}

.latest-engage-mark {
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  margin-right: 0.4rem;
  vertical-align: 0.1em;
  background: rgba(166, 124, 82, 0.55);
  transform: rotate(45deg);
}

.latest-react-summary,
.latest-comment-summary {
  appearance: none;
  list-style: none;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(166, 124, 82, 0.22);
  padding: 0.2rem 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.92rem;
  color: rgba(236, 234, 228, 0.78);
  transition: color 0.25s ease, border-color 0.25s ease;
  user-select: none;
}

.latest-react-summary::-webkit-details-marker,
.latest-comment-summary::-webkit-details-marker {
  display: none;
}

.latest-react-summary:hover,
.latest-comment-summary:hover,
.latest-react-picker:hover > .latest-react-summary,
.latest-react-picker:focus-within > .latest-react-summary,
.latest-react-picker.is-open > .latest-react-summary,
.latest-comment-summary.is-active,
.latest-comment-summary[aria-expanded="true"] {
  color: var(--accent);
  border-bottom-color: rgba(166, 124, 82, 0.65);
}

.latest-react-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 0.4rem);
  z-index: 6;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  min-width: 10.5rem;
  padding: 0.6rem 0.7rem;
  background: rgba(14, 16, 15, 0.98);
  border: 1px solid rgba(140, 150, 138, 0.28);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.latest-react-picker:hover .latest-react-menu,
.latest-react-picker:focus-within .latest-react-menu,
.latest-react-picker.is-open .latest-react-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.latest-comments {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(140, 150, 138, 0.12);
  width: 100%;
}

.latest-comments[hidden] {
  display: none;
}

.latest-comments-heading {
  display: none;
}

.latest-comment {
  margin-bottom: 0.75rem;
}

.latest-comment-main {
  display: block;
}

.latest-comment-content {
  min-width: 0;
}

.latest-comment-reply-link {
  appearance: none;
  display: inline;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-muted);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.latest-comment-reply-link:hover {
  color: var(--accent);
  border-bottom-color: rgba(166, 124, 82, 0.5);
}

.latest-comment.is-reply {
  margin: 0.55rem 0 0.55rem 0.85rem;
  padding-left: 0.7rem;
  border-left: 1px solid rgba(140, 150, 138, 0.22);
}

.latest-composer-context {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.85rem;
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.latest-composer-context[hidden] {
  display: none;
}

.latest-composer-context .latest-composer-cancel {
  font-style: normal;
}

.latest-reply-wrap {
  display: none;
}

.latest-comment-top {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem;
  position: relative;
}

.latest-comment-author {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 300;
}

.latest-comment-body {
  margin: 0.15rem 0 0.3rem;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 300;
}

.latest-comment-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.65rem;
  margin-top: 0.2rem;
}

.latest-reaction--sm {
  font-size: 0.85rem;
}

.latest-react-picker--sm .latest-react-summary {
  font-size: 0.78rem;
  border-bottom-color: transparent;
}

.latest-react-picker--sm .latest-react-summary:hover,
.latest-react-picker--sm:hover > .latest-react-summary,
.latest-react-picker--sm.is-open > .latest-react-summary {
  border-bottom-color: rgba(166, 124, 82, 0.5);
}

.latest-comment-menu {
  margin-left: auto;
  position: relative;
}

.latest-comment-menu summary {
  list-style: none;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.15rem 0.35rem;
  user-select: none;
}

.latest-comment-menu summary::-webkit-details-marker {
  display: none;
}

.latest-comment-menu summary:hover {
  color: var(--text);
}

.latest-comment-menu-panel {
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 5;
  min-width: 7.5rem;
  padding: 0.35rem;
  background: rgba(14, 16, 15, 0.98);
  border: 1px solid rgba(140, 150, 138, 0.28);
}

.latest-comment-menu-danger {
  display: block;
  width: 100%;
  padding: 0.45rem 0.65rem;
  background: transparent;
  border: none;
  color: #e8a0a0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.85rem;
  text-align: left;
  cursor: pointer;
}

.latest-comment-menu-danger:hover {
  background: rgba(200, 80, 80, 0.1);
}

.latest-composer {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.latest-composer textarea {
  width: 100%;
  min-height: 48px;
  resize: vertical;
  padding: 0.4rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(140, 150, 138, 0.28);
  border-radius: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 300;
  transition: border-color 0.3s ease;
}

.latest-composer textarea:focus {
  outline: none;
  border-bottom-color: rgba(166, 124, 82, 0.65);
  box-shadow: none;
  background: transparent;
  border-radius: 0;
}

.latest-composer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.15rem;
}

.latest-composer-cancel {
  appearance: none;
  padding: 0.15rem 0;
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.latest-composer-cancel:hover {
  color: var(--text);
  border-bottom-color: rgba(140, 150, 138, 0.4);
}

.latest-composer-submit {
  appearance: none;
  padding: 0.2rem 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(166, 124, 82, 0.45);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.92rem;
  color: var(--text);
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.latest-composer-submit:hover {
  color: var(--accent);
  border-bottom-color: rgba(166, 124, 82, 0.85);
}

.latest-composer--reply {
  margin-top: 0;
}

.latest-composer--reply textarea {
  min-height: 40px;
}

@media (max-width: 768px) {
  .latest-entrance {
    margin-bottom: 1.35rem;
  }
}

/* Legal: quieter column + stone rule under title */
body.page-legal .legal-doc,
body.page-legal .page-shell {
  max-width: 620px;
}

body.page-legal .section-title {
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(140, 150, 138, 0.22);
}

/* Her World — page-turning acquaintance (book feeling, not a literal book) */
body.page-about {
  background-image:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(180, 188, 170, 0.05) 0%, transparent 58%),
    radial-gradient(ellipse 50% 40% at 88% 60%, rgba(90, 100, 80, 0.05) 0%, transparent 55%),
    linear-gradient(175deg, #111412 0%, var(--bg) 45%, #0c0e0c 100%);
}

body.page-about::after {
  background:
    radial-gradient(ellipse 45% 35% at 60% 25%, rgba(200, 205, 190, 0.028) 0%, transparent 70%);
  animation: light-breathe 28s ease-in-out infinite;
}

.section-her-world {
  padding-top: 1.5rem;
  padding-bottom: 5rem;
  min-height: calc(100vh - var(--header-h) - 4rem);
  display: flex;
  flex-direction: column;
}

.world-shell {
  width: min(36rem, 90vw);
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.world-entrance {
  margin-bottom: 1.75rem;
  padding-top: 0.75rem;
}

.world-entrance-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.75rem, 8vw, 4.25rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 0.85rem;
  color: var(--text);
}

.world-entrance-soft {
  margin: 0;
  max-width: 18rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.world-book {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.world-pages {
  position: relative;
  flex: 1;
  min-height: 22rem;
}

.world-book:not(.is-ready) [data-world-page]:not(:first-child) {
  display: none;
}

.world-page {
  animation: none;
}

.world-page.is-entering {
  animation: world-page-in 0.55s ease both;
}

@keyframes world-page-in {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.world-chapter-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.45rem, 2.6vw, 1.75rem);
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin: 0 0 1.5rem;
  color: rgba(236, 234, 228, 0.92);
}

.world-page .prose {
  margin: 0;
  max-width: none;
}

.world-page .prose p {
  margin: 0 0 1.1rem;
  line-height: 1.85;
  color: rgba(236, 234, 228, 0.84);
  font-size: 1.05rem;
}

.world-page .prose p:first-of-type {
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 2vw, 1.28rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.35rem;
}

.world-page .prose p:last-child {
  margin-bottom: 0;
}

.world-chapter-close {
  color: var(--text-muted) !important;
  font-family: var(--font-display) !important;
  font-size: 1.08rem !important;
  font-style: italic;
  line-height: 1.55 !important;
  margin-bottom: 0.35rem !important;
}

.world-chapter-quote {
  font-family: var(--font-display) !important;
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.55rem) !important;
  color: var(--text) !important;
  margin-top: 0.85rem !important;
}

.world-passage {
  margin-top: 2.5rem;
  padding-top: 0.15rem;
}

.world-passage-line {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.world-passage-link {
  position: relative;
  display: inline-block;
  margin-top: 0.7rem;
  padding-bottom: 0.4rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.18rem;
  line-height: 1.4;
  color: var(--text);
  text-decoration: none;
  transition: color 0.35s ease;
}

.world-passage-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(166, 124, 82, 0.4);
  transform: scaleX(0.3);
  transform-origin: left center;
  transition: transform 0.45s ease, background-color 0.35s ease;
}

.world-passage-link:hover {
  color: var(--accent);
}

.world-passage-link:hover::after {
  transform: scaleX(1);
  background: rgba(166, 124, 82, 0.75);
}

.world-signature {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--text-muted);
  margin: 2.5rem 0 0;
  font-size: 1.08rem;
}

.world-turn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: var(--header-h);
  z-index: 6;
  margin: 0 0 2.25rem;
  padding: 0.85rem 0 1rem;
  border-bottom: 1px solid rgba(140, 150, 138, 0.2);
  background:
    linear-gradient(180deg, rgba(17, 20, 18, 0.97) 0%, rgba(14, 16, 15, 0.92) 100%);
  backdrop-filter: blur(10px);
}

.world-turn-btn {
  appearance: none;
  background: none;
  border: none;
  padding: 0.35rem 0;
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s ease;
  min-width: 6.5rem;
  text-align: left;
}

.world-turn-btn--next {
  text-align: right;
}

.world-turn-btn:hover {
  color: var(--accent);
}

.world-leaves {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  flex: 1;
}

.world-leaf {
  appearance: none;
  background: none;
  border: none;
  padding: 0.35rem 0.15rem;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.02rem;
  font-style: italic;
  color: rgba(138, 145, 136, 0.65);
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
}

.world-leaf:hover {
  color: var(--text-muted);
}

.world-leaf.is-active {
  color: var(--text);
}

.world-leaf.is-active::after {
  content: '';
  position: absolute;
  left: 15%;
  right: 15%;
  bottom: 0;
  height: 1px;
  background: rgba(166, 124, 82, 0.55);
}

@media (max-width: 768px) {
  .world-entrance {
    margin-bottom: 1.35rem;
  }

  .world-turn {
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
    padding: 0.65rem 0 0.85rem;
  }

  .world-leaves {
    order: -1;
    flex: 1 1 100%;
    margin-bottom: 0.15rem;
  }

  .world-turn-btn {
    min-width: 0;
    flex: 1;
  }

  .world-pages {
    min-height: 18rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .world-page.is-entering {
    animation: none;
  }
}

/* Storytelling trails — foyer openings & visitor whispers */
.story-openings {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  max-width: 28rem;
}

.story-openings-lead {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--text-muted);
  margin: 0 0 2rem;
  font-size: 1.05rem;
}

.story-opening {
  margin: 0 0 2.25rem;
}

.story-opening:last-child {
  margin-bottom: 0;
}

.story-opening-line {
  margin: 0 0 0.35rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.story-opening-link {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.story-opening-link:hover {
  color: var(--accent);
  border-bottom-color: rgba(166, 124, 82, 0.55);
}

.story-whisper {
  margin: 3rem auto 0;
  max-width: 28rem;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.story-whisper-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(166, 124, 82, 0.35);
  transition: color 0.25s ease, border-color 0.25s ease;
}

.story-whisper-link:hover {
  color: var(--accent);
  border-bottom-color: rgba(166, 124, 82, 0.7);
}

.teaser-full-film-link .story-whisper-link {
  font-style: italic;
  font-size: 0.95rem;
}

@media (prefers-reduced-motion: reduce) {
  body::after,
  .hero-home::after {
    animation: none;
  }

  .hero-home .container,
  .hero-explore {
    animation: none;
  }

  .hero-explore::before,
  .hero-explore::after,
  .hero-explore-label {
    transition: none;
  }
}

