/* =========================================================
   Dalvu.online — Crimson Noir
   Premium cinematic landing page · Pure CSS3
   ========================================================= */

/* ---------- Custom Properties ---------- */
:root {
  --bg: #090708;
  --bg-secondary: #140A0D;
  --burgundy-deep: #4A0D1A;
  --burgundy: #6E1427;
  --ruby: #9F2945;
  --copper: #C58B68;
  --rose: #E3B8A5;
  --text: #FFF7F5;
  --text-muted: #B9A7A7;
  --border: rgba(197, 139, 104, 0.18);

  --font-display: "Bodoni Moda", "DM Serif Display", Georgia, serif;
  --font-serif: "DM Serif Display", "Bodoni Moda", Georgia, serif;
  --font-body: "Manrope", "Inter", system-ui, sans-serif;
  --font-ui: "Inter", "Manrope", system-ui, sans-serif;

  --nav-h: 4rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --space: clamp(1.25rem, 4vw, 3rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

ul {
  list-style: none;
}

button,
input {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

.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;
}

/* ---------- Grain Texture ---------- */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: 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)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
  animation: grain-shift 8s steps(8) infinite;
}

@keyframes grain-shift {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(-2%, 1%); }
  50% { transform: translate(1%, -1%); }
  75% { transform: translate(-1%, 2%); }
}

/* ---------- Shared Labels & Titles ---------- */
.label {
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
}

.section-intro {
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
  max-width: 40rem;
}

.section-intro--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-top: 0.75rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  border: 1px solid transparent;
  transition: background 0.45s var(--ease), color 0.45s var(--ease),
    border-color 0.45s var(--ease), transform 0.45s var(--ease);
}

.btn--primary {
  background: var(--burgundy);
  color: var(--text);
  border-color: rgba(197, 139, 104, 0.28);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--ruby);
  border-color: var(--copper);
  transform: translateY(-1px);
}

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

.btn--ghost:hover,
.btn--ghost:focus-visible {
  border-color: var(--copper);
  color: var(--rose);
}

.btn--sm {
  padding: 0.75rem 1.25rem;
  font-size: 0.6875rem;
}

.btn--lg {
  padding: 1.25rem 2.5rem;
  font-size: 0.8125rem;
}

.btn--block {
  width: 100%;
}

.btn:focus-visible {
  outline: 1px solid var(--copper);
  outline-offset: 3px;
}

/* =========================================================
   NAVIGATION
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(9, 7, 8, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  height: var(--nav-h);
  gap: 1.5rem;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text);
}

.nav__logo-line {
  display: block;
  width: 1px;
  height: 1.1rem;
  background: var(--copper);
  opacity: 0.7;
}

.nav__links {
  display: none;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.25rem);
}

.nav__links a {
  position: relative;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.35rem 0;
  transition: color 0.3s var(--ease);
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--ruby);
  transition: width 0.35s var(--ease);
}

.nav__links a:hover,
.nav__links a:focus-visible {
  color: var(--text);
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  width: 100%;
}

.nav__cta {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  padding: 0.55rem 1rem;
  border: 1px solid var(--border);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease),
    color 0.3s var(--ease);
}

.nav__cta:hover,
.nav__cta:focus-visible {
  border-color: var(--copper);
  background: var(--burgundy-deep);
  color: var(--text);
}

@media (min-width: 900px) {
  .nav__links {
    display: flex;
  }
}

/* =========================================================
   1. MIDNIGHT ENTRANCE — HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 2rem) var(--space) 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 75% 40%, rgba(74, 13, 26, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(20, 10, 13, 0.9) 0%, transparent 50%),
    linear-gradient(165deg, var(--bg) 0%, var(--bg-secondary) 45%, var(--bg) 100%);
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__circle {
  position: absolute;
  width: min(70vw, 720px);
  height: min(70vw, 720px);
  right: -8%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(110, 20, 39, 0.35) 0%,
    rgba(74, 13, 26, 0.18) 40%,
    transparent 70%
  );
  animation: circle-drift 18s ease-in-out infinite alternate;
}

.hero__light {
  position: absolute;
  width: 40vw;
  height: 40vw;
  left: 5%;
  bottom: 5%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(197, 139, 104, 0.12) 0%,
    transparent 65%
  );
  animation: light-breathe 12s ease-in-out infinite alternate;
}

.hero__curve {
  position: absolute;
  border: 1px solid rgba(197, 139, 104, 0.12);
  border-radius: 50%;
}

.hero__curve--1 {
  width: 55vw;
  height: 55vw;
  right: 5%;
  top: 20%;
  animation: float-line 20s ease-in-out infinite alternate;
}

.hero__curve--2 {
  width: 30vw;
  height: 30vw;
  left: 10%;
  top: 15%;
  border-color: rgba(159, 41, 69, 0.15);
  animation: float-line 16s ease-in-out infinite alternate-reverse;
}

.hero__line {
  position: absolute;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(197, 139, 104, 0.22),
    transparent
  );
}

.hero__line--h {
  width: 40%;
  height: 1px;
  top: 28%;
  left: 5%;
}

.hero__line--v {
  width: 1px;
  height: 35%;
  top: 35%;
  right: 18%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(197, 139, 104, 0.2),
    transparent
  );
}

.hero__line--diag {
  width: 25%;
  height: 1px;
  bottom: 22%;
  left: 30%;
  transform: rotate(-18deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(110, 20, 39, 0.4),
    transparent
  );
}

.hero__geo {
  position: absolute;
  width: 8px;
  height: 8px;
  top: 42%;
  left: 48%;
  border: 1px solid rgba(197, 139, 104, 0.35);
  transform: rotate(45deg);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 52rem;
  margin-left: clamp(0rem, 4vw, 4rem);
  animation: reveal-up 1.1s var(--ease) both;
}

.hero__label {
  margin-bottom: 1.5rem;
  animation: reveal-up 1s var(--ease) 0.15s both;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.75rem, 7.5vw, 5.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 1.75rem;
  animation: reveal-up 1.1s var(--ease) 0.25s both;
}

.hero__lead {
  max-width: 28rem;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: reveal-up 1.1s var(--ease) 0.4s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: reveal-up 1.1s var(--ease) 0.55s both;
}

.hero__scroll {
  position: absolute;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  z-index: 2;
}

.hero__scroll-text {
  writing-mode: vertical-rl;
  font-family: var(--font-ui);
  font-size: 0.625rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll-line {
  display: block;
  width: 1px;
  height: 3.5rem;
  background: linear-gradient(180deg, var(--copper), transparent);
  transform-origin: top;
  animation: scroll-pulse 2.2s ease-in-out infinite;
}

@keyframes circle-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-4%, 3%) scale(1.05); }
}

@keyframes light-breathe {
  from { opacity: 0.6; transform: scale(1); }
  to { opacity: 1; transform: scale(1.15); }
}

@keyframes float-line {
  from { transform: translate(0, 0); }
  to { transform: translate(2%, -3%); }
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.55); opacity: 1; }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   2. BRAND MANIFESTO
   ========================================================= */
.manifesto {
  position: relative;
  padding: clamp(5rem, 14vw, 10rem) var(--space);
  background: var(--bg);
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.manifesto__numeral {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-55%);
  font-family: var(--font-display);
  font-size: clamp(18rem, 40vw, 32rem);
  font-weight: 400;
  line-height: 0.8;
  color: rgba(74, 13, 26, 0.35);
  pointer-events: none;
  user-select: none;
}

.manifesto__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.5rem, 6vw, 6rem);
  max-width: 1200px;
  margin: 0 auto;
  align-items: end;
}

@media (min-width: 800px) {
  .manifesto__grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.manifesto__statement {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
}

.manifesto__label {
  margin-bottom: 1.5rem;
  display: block;
}

.manifesto__body {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--text-muted);
  font-weight: 300;
  max-width: 28rem;
}

.manifesto__body--secondary {
  margin-top: 1.5rem;
  color: var(--rose);
  opacity: 0.85;
}

/* =========================================================
   3. SIGNATURE EXPERIENCES
   ========================================================= */
.experiences {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background:
    linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}

.experiences .section-intro {
  padding: 0 var(--space);
}

.exp-panels {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.exp-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: clamp(1.75rem, 4vw, 3rem) var(--space);
  position: relative;
  border-bottom: 1px solid var(--border);
  background: transparent;
  transition: background 0.55s var(--ease);
  overflow: hidden;
}

.exp-panel__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--burgundy);
  transform: scaleY(0.35);
  transform-origin: center;
  transition: transform 0.5s var(--ease), background 0.5s var(--ease);
}

.exp-panel__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  color: var(--text-muted);
  opacity: 0.45;
  min-width: 3.5rem;
  transition: color 0.45s var(--ease), opacity 0.45s var(--ease);
}

.exp-panel__cat {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 500;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.exp-panel__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 36rem;
}

.exp-panel__arrow {
  font-size: 1.5rem;
  color: var(--copper);
  opacity: 0.5;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.exp-panel:hover,
.exp-panel:focus-visible {
  background: linear-gradient(
    90deg,
    var(--burgundy-deep) 0%,
    rgba(20, 10, 13, 0.95) 100%
  );
  outline: none;
}

.exp-panel:hover .exp-panel__accent,
.exp-panel:focus-visible .exp-panel__accent {
  transform: scaleY(1);
  background: var(--ruby);
}

.exp-panel:hover .exp-panel__num,
.exp-panel:focus-visible .exp-panel__num {
  color: var(--copper);
  opacity: 1;
}

.exp-panel:hover .exp-panel__arrow,
.exp-panel:focus-visible .exp-panel__arrow {
  transform: translateX(6px);
  opacity: 1;
}

@media (max-width: 640px) {
  .exp-panel {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .exp-panel__arrow {
    grid-column: 2;
    justify-self: end;
  }
}

/* =========================================================
   4. VERTICAL PRODUCT SHOWCASE
   ========================================================= */
.showcase {
  padding: clamp(4rem, 10vw, 8rem) var(--space);
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.show-panel {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto clamp(4rem, 10vw, 8rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--border);
}

.show-panel:last-of-type {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

@media (min-width: 860px) {
  .show-panel {
    grid-template-columns: 1fr 1fr;
  }
}

.show-panel__media {
  position: relative;
}

.show-panel__mask {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  transition: transform 0.7s var(--ease);
}

.show-panel__mask--curve-a {
  border-radius: 48% 52% 42% 58% / 55% 40% 60% 45%;
}

.show-panel__mask--curve-b {
  border-radius: 42% 58% 55% 45% / 48% 52% 48% 52%;
}

.show-panel__mask--curve-c {
  border-radius: 55% 45% 48% 52% / 40% 60% 40% 60%;
}

.show-panel:hover .show-panel__mask {
  transform: scale(1.015);
}

.show-panel__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(159, 41, 69, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(74, 13, 26, 0.6) 0%, transparent 45%),
    linear-gradient(160deg, #1a0c10 0%, #0c0708 50%, #2a1018 100%);
  transition: transform 0.9s var(--ease);
}

.show-panel:hover .show-panel__placeholder {
  transform: scale(1.06);
}

.show-panel__placeholder--alt {
  background:
    radial-gradient(ellipse at 60% 30%, rgba(110, 20, 39, 0.5) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 70%, rgba(197, 139, 104, 0.15) 0%, transparent 40%),
    linear-gradient(200deg, #12080b 0%, #090708 60%, #3a1220 100%);
}

.show-panel__placeholder--deep {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(74, 13, 26, 0.55) 0%, transparent 60%),
    linear-gradient(180deg, #0e0809 0%, #1c0a12 100%);
}

.show-panel__placeholder-label {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  color: rgba(255, 247, 245, 0.35);
  letter-spacing: 0.02em;
}

.show-panel__content {
  max-width: 28rem;
}

.show-panel--rtl .show-panel__content {
  margin-left: auto;
}

@media (min-width: 860px) {
  .show-panel--rtl .show-panel__content {
    order: -1;
  }
}

.show-panel__name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  margin: 0.75rem 0 1.25rem;
  letter-spacing: -0.02em;
}

.show-panel__story {
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.show-panel__features {
  margin-bottom: 2rem;
}

.show-panel__features li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--rose);
  opacity: 0.9;
}

.show-panel__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 0.5rem;
  height: 1px;
  background: var(--copper);
}

.show-panel__meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.show-panel__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--copper);
}

/* =========================================================
   5. CRIMSON FEATURE WALL
   ========================================================= */
.feature-wall {
  padding: clamp(4rem, 10vw, 8rem) var(--space);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(74, 13, 26, 0.35) 0%, transparent 55%),
    var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.masonry {
  display: grid;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .masonry {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(140px, auto);
  }

  .fcard--tall {
    grid-column: span 2;
    grid-row: span 2;
  }

  .fcard--wide {
    grid-column: span 4;
  }

  .fcard--offset {
    grid-column: span 3;
  }

  .fcard--compact {
    grid-column: span 3;
  }

  .fcard--span {
    grid-column: span 4;
  }

  .fcard--accent {
    grid-column: span 2;
  }
}

.fcard {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background:
    linear-gradient(145deg, rgba(74, 13, 26, 0.4) 0%, rgba(9, 7, 8, 0.95) 55%),
    var(--bg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 180px;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.fcard:hover {
  border-color: rgba(197, 139, 104, 0.4);
  transform: translateY(-2px);
}

.fcard--tall {
  background:
    linear-gradient(180deg, rgba(110, 20, 39, 0.45) 0%, rgba(9, 7, 8, 0.98) 70%),
    var(--bg);
  min-height: 280px;
}

.fcard--wide {
  background:
    linear-gradient(90deg, rgba(20, 10, 13, 1) 0%, rgba(74, 13, 26, 0.35) 100%),
    var(--bg);
}

.fcard--accent {
  background:
    linear-gradient(200deg, var(--burgundy-deep) 0%, var(--bg) 80%);
}

.fcard--compact {
  min-height: 160px;
}

.fcard__num {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: rgba(197, 139, 104, 0.18);
  pointer-events: none;
}

.fcard__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.fcard__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 22rem;
}

.fcard__corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  height: 2rem;
  border-top: 1px solid var(--copper);
  border-left: 1px solid var(--copper);
  opacity: 0.45;
}

.fcard__detail {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 2.5rem;
  height: 1px;
  background: var(--copper);
  opacity: 0.4;
}

.fcard__glow {
  position: absolute;
  width: 120px;
  height: 120px;
  right: -20px;
  top: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(159, 41, 69, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.fcard__line {
  position: absolute;
  left: 1.5rem;
  top: 1.5rem;
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(180deg, var(--copper), transparent);
  opacity: 0.5;
}

/* =========================================================
   6. NUMBERS & IMPACT
   ========================================================= */
.impact {
  padding: clamp(5rem, 12vw, 9rem) var(--space);
  background: var(--bg);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.impact__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: clamp(1.5rem, 4vw, 2rem);
  max-width: 1200px;
  margin: 0 auto;
}

.impact__stat {
  flex: 1 1 140px;
  text-align: center;
  padding: 1rem;
  animation: impact-glow 4s ease-in-out infinite alternate;
}

.impact__stat:nth-child(1) { animation-delay: 0s; }
.impact__stat:nth-child(3) { animation-delay: 0.6s; }
.impact__stat:nth-child(5) { animation-delay: 1.2s; }
.impact__stat:nth-child(7) { animation-delay: 1.8s; }

.impact__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
  background: linear-gradient(180deg, var(--text) 30%, var(--rose) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.impact__label {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.impact__sep {
  display: none;
  width: 1px;
  align-self: stretch;
  min-height: 4rem;
  background: linear-gradient(
    180deg,
    transparent,
    var(--copper),
    transparent
  );
  opacity: 0.35;
}

@media (min-width: 768px) {
  .impact__sep {
    display: block;
  }

  .impact__row {
    flex-wrap: nowrap;
    gap: 0;
  }

  .impact__stat {
    flex: 1;
  }
}

@keyframes impact-glow {
  from {
    filter: brightness(0.95);
    transform: translateY(0);
  }
  to {
    filter: brightness(1.08);
    transform: translateY(-3px);
  }
}

/* =========================================================
   7. COMMUNITY STORIES
   ========================================================= */
.stories {
  padding: clamp(4rem, 10vw, 8rem) var(--space);
  background:
    linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}

.stories__flow {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
  min-height: auto;
}

.story {
  position: relative;
  max-width: 28rem;
  padding: 0 0 0 1.5rem;
}

.story__accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--ruby), var(--burgundy-deep));
}

.story--a {
  align-self: flex-start;
}

.story--b {
  align-self: flex-end;
  margin-top: clamp(0rem, 4vw, 3rem);
}

.story--c {
  align-self: center;
  margin-left: clamp(0rem, 8vw, 6rem);
}

.story__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.story__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 35% 30%, rgba(227, 184, 165, 0.35), transparent 50%),
    linear-gradient(145deg, var(--burgundy), var(--bg));
  flex-shrink: 0;
}

.story__avatar--2 {
  background:
    radial-gradient(circle at 60% 40%, rgba(197, 139, 104, 0.3), transparent 50%),
    linear-gradient(200deg, #2a1018, var(--bg));
}

.story__avatar--3 {
  background:
    radial-gradient(circle at 40% 50%, rgba(159, 41, 69, 0.45), transparent 55%),
    linear-gradient(160deg, var(--burgundy-deep), #0c0708);
}

.story__name {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.05rem;
  color: var(--text);
}

.story__role {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 0.15rem;
}

.story__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.45;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 1rem;
}

.story__stars {
  color: var(--copper);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  opacity: 0.85;
}

/* =========================================================
   8. EXCLUSIVE ACCESS
   ========================================================= */
.access {
  padding: clamp(4rem, 10vw, 8rem) var(--space);
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.tiers {
  display: grid;
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 800px) {
  .tiers {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.tier {
  position: relative;
  padding: clamp(2rem, 4vw, 2.75rem);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color 0.4s var(--ease);
}

.tier:hover {
  border-color: rgba(197, 139, 104, 0.35);
}

.tier--featured {
  background:
    linear-gradient(165deg, var(--burgundy-deep) 0%, #1a0a10 55%, var(--bg-secondary) 100%);
  border-color: rgba(197, 139, 104, 0.45);
  box-shadow: inset 0 0 60px rgba(74, 13, 26, 0.35);
}

@media (min-width: 800px) {
  .tier--featured {
    transform: scale(1.04);
    z-index: 1;
  }
}

.tier__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  border: 1px solid rgba(197, 139, 104, 0.4);
  padding: 0.35rem 0.65rem;
}

.tier__name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.tier__tag {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 300;
}

.tier__list {
  flex: 1;
  margin-bottom: 2rem;
}

.tier__list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.15rem;
  font-size: 0.9rem;
  color: var(--rose);
  border-bottom: 1px solid rgba(197, 139, 104, 0.08);
}

.tier__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ruby);
  transform: translateY(-50%);
  opacity: 0.7;
}

/* =========================================================
   9. FINAL MIDNIGHT CTA
   ========================================================= */
.finale {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(5rem, 12vw, 9rem) var(--space);
  overflow: hidden;
  background: #050405;
  border-top: 1px solid var(--border);
}

.finale__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.finale__radial {
  position: absolute;
  width: 80vw;
  height: 80vw;
  max-width: 900px;
  max-height: 900px;
  left: 50%;
  top: 45%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(110, 20, 39, 0.45) 0%,
    rgba(74, 13, 26, 0.2) 35%,
    transparent 65%
  );
  animation: finale-pulse 14s ease-in-out infinite alternate;
}

.finale__streak {
  position: absolute;
  width: 120%;
  height: 1px;
  left: -10%;
  top: 42%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(197, 139, 104, 0.05) 20%,
    rgba(197, 139, 104, 0.35) 50%,
    rgba(197, 139, 104, 0.05) 80%,
    transparent 100%
  );
  transform: rotate(-8deg);
  animation: streak-sweep 10s ease-in-out infinite;
}

.finale__arc {
  position: absolute;
  border: 1px solid rgba(197, 139, 104, 0.1);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.finale__arc--1 {
  width: min(70vw, 640px);
  height: min(70vw, 640px);
}

.finale__arc--2 {
  width: min(90vw, 860px);
  height: min(90vw, 860px);
  border-color: rgba(110, 20, 39, 0.15);
}

.finale__wordmark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 22vw, 18rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 247, 245, 0.025);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
}

.finale__content {
  position: relative;
  z-index: 2;
  max-width: 48rem;
  animation: reveal-up 1s var(--ease) both;
}

.finale__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 6.5vw, 4.75rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.finale__lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}

@keyframes finale-pulse {
  from { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes streak-sweep {
  0%, 100% { opacity: 0.4; transform: rotate(-8deg) translateX(-2%); }
  50% { opacity: 0.9; transform: rotate(-8deg) translateX(2%); }
}

/* =========================================================
   10. CINEMATIC FOOTER
   ========================================================= */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: clamp(3.5rem, 8vw, 6rem) var(--space) 2rem;
}

.footer__top {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  max-width: 1200px;
  margin: 0 auto 3.5rem;
}

@media (min-width: 900px) {
  .footer__top {
    grid-template-columns: 1.2fr 1.4fr 1fr;
    align-items: start;
  }
}

.footer__logo {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.footer__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.footer__copper {
  display: block;
  width: 4rem;
  height: 1px;
  background: var(--copper);
  opacity: 0.55;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.footer__heading {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.25rem;
}

.footer__col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.3rem 0;
  transition: color 0.3s var(--ease);
}

.footer__col a:hover,
.footer__col a:focus-visible {
  color: var(--text);
}

.footer__news-copy {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 300;
}

.footer__form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.25rem;
}

.footer__form input {
  flex: 1;
  padding: 0.65rem 0;
  font-size: 0.9rem;
  color: var(--text);
  min-width: 0;
}

.footer__form input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.footer__form input:focus {
  outline: none;
}

.footer__form input:focus-visible {
  box-shadow: 0 1px 0 0 var(--copper);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.footer__social-link:hover,
.footer__social-link:focus-visible {
  border-color: var(--copper);
  color: var(--text);
  background: var(--burgundy-deep);
}

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* =========================================================
   RESPONSIVE REFINEMENTS
   ========================================================= */
@media (max-width: 640px) {
  .hero__scroll {
    display: none;
  }

  .hero__content {
    margin-left: 0;
  }

  .manifesto__numeral {
    opacity: 0.5;
    right: -15%;
  }

  .story--c {
    margin-left: 0;
    align-self: flex-start;
  }

  .footer__cols {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .footer__cols .footer__col:last-child {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .grain {
    animation: none;
  }
}

/* Focus fallback for keyboard users */
:focus-visible {
  outline: 1px solid var(--copper);
  outline-offset: 3px;
}
