:root {
  --black: #070707;
  --black-soft: #0b0b0b;
  --ink: #111111;
  --paper: #f4f1eb;
  --muted: #aaa29a;
  --red: #b70512;
  --red-deep: #74020b;
  --red-soft: rgba(183, 5, 18, 0.28);
  --line: rgba(255, 255, 255, 0.1);
  --header-h: 96px;
  --max: 1440px;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color: var(--paper);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(183, 5, 18, 0.16), transparent 30rem),
    linear-gradient(135deg, #050505 0%, var(--black-soft) 48%, #030303 100%);
}

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

.site-shell {
  isolation: isolate;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 0 clamp(18px, 4vw, 72px);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.88) 43%, rgba(7, 7, 7, 0.54) 100%),
    radial-gradient(circle at 62% 58%, rgba(183, 5, 18, 0.16), transparent 24rem),
    #070707;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::before {
  inset: 110px auto 80px 48%;
  width: min(48vw, 680px);
  border: 1px solid rgba(183, 5, 18, 0.24);
  border-left: 0;
  transform: skewX(-12deg);
  opacity: 0.74;
}

.hero::after {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 78%, transparent);
  opacity: 0.24;
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px);
  background-size: 4px 4px, 6px 6px;
  mix-blend-mode: soft-light;
}

.ambient {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(183, 5, 18, 0.26);
  filter: drop-shadow(0 0 32px rgba(183, 5, 18, 0.24));
}

.ambient-one {
  width: 36vw;
  height: 36vw;
  min-width: 320px;
  min-height: 320px;
  top: 10vh;
  right: 10vw;
  border-radius: 50%;
  animation: slowRotate 28s linear infinite;
}

.ambient-two {
  width: 18vw;
  height: 44vh;
  right: 2vw;
  bottom: 6vh;
  transform: rotate(28deg);
  animation: breathe 6s ease-in-out infinite;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100%, var(--max));
  height: calc(var(--header-h) + 8px);
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.5), rgba(7, 7, 7, 0.06));
  backdrop-filter: blur(14px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 5, 18, 0.58), rgba(255, 255, 255, 0.16), transparent);
  opacity: 0.7;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  min-width: 250px;
  height: 84px;
}

.brand img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(183, 5, 18, 0.28));
}

.brand-wordmark {
  display: inline-grid;
  max-width: 118px;
  color: rgba(244, 241, 235, 0.92);
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.14;
  text-transform: uppercase;
}

.main-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 38px);
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 999px;
  color: rgba(244, 241, 235, 0.68);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.028), transparent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.main-nav a {
  position: relative;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.main-nav a:hover {
  color: var(--paper);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.header-cta {
  position: relative;
  z-index: 2;
  min-width: 148px;
  padding: 0 24px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 35%),
    linear-gradient(135deg, var(--red), #5e0309 78%);
  box-shadow:
    0 0 28px rgba(183, 5, 18, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: clamp(24px, 5vw, 88px);
  width: min(100%, var(--max));
  min-height: 560px;
  height: calc(100svh - var(--header-h) - 52px);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 58px) 0 72px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 820px;
}

.hero-copy::before {
  content: "";
  position: absolute;
  top: -44px;
  left: -32px;
  width: 108px;
  height: 1px;
  background: var(--red);
  box-shadow: 0 0 20px rgba(183, 5, 18, 0.8);
}

.eyebrow,
.lead,
.hero-actions,
.facts,
h1 span {
  opacity: 0;
  animation: riseIn 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: rgba(244, 241, 235, 0.66);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow span {
  width: 42px;
  height: 1px;
  background: var(--red);
  box-shadow: 0 0 18px rgba(183, 5, 18, 0.8);
}

h1 {
  display: grid;
  gap: 0.04em;
  margin: 0;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(48px, 6.15vw, 108px);
  font-weight: 800;
  line-height: 0.91;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span:nth-child(1) {
  animation-delay: 80ms;
}

h1 span:nth-child(2) {
  animation-delay: 190ms;
}

h1 span:nth-child(3) {
  animation-delay: 300ms;
}

.accent {
  color: var(--red);
  text-shadow:
    0 0 20px rgba(183, 5, 18, 0.42),
    0 0 48px rgba(183, 5, 18, 0.18);
}

.lead {
  width: min(640px, 100%);
  margin: 30px 0 0;
  color: rgba(244, 241, 235, 0.76);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
  animation-delay: 420ms;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
  animation-delay: 540ms;
}

.btn {
  min-width: 190px;
  position: relative;
  overflow: hidden;
  min-height: 52px;
  padding: 0 22px 0 26px;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.16) 48%, transparent 62%),
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.16), transparent 18rem);
  opacity: 0;
  transform: translateX(-28%);
  transition:
    opacity 260ms ease,
    transform 420ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::before {
  opacity: 1;
  transform: translateX(26%);
}

.btn-mark {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  line-height: 1;
  transition: transform 220ms ease;
}

.btn:hover .btn-mark {
  transform: translate(3px, -2px);
}

.btn-primary {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 42%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 5px),
    linear-gradient(135deg, #c20715 0%, #8d030e 44%, #2a0205 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 18px 46px rgba(183, 5, 18, 0.3);
}

.btn-primary:hover {
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.14) inset,
    0 0 34px rgba(183, 5, 18, 0.44),
    0 20px 50px rgba(183, 5, 18, 0.24);
}

.btn-ghost {
  color: rgba(244, 241, 235, 0.88);
  border-color: rgba(183, 5, 18, 0.58);
  background:
    linear-gradient(135deg, rgba(183, 5, 18, 0.12), transparent 44%),
    rgba(255, 255, 255, 0.018);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(183, 5, 18, 0.2), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.028);
  box-shadow:
    0 0 26px rgba(183, 5, 18, 0.18),
    inset 0 0 0 1px rgba(183, 5, 18, 0.44);
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  animation-delay: 640ms;
}

.facts span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  color: rgba(244, 241, 235, 0.72);
  background: rgba(255, 255, 255, 0.028);
  font-size: 11px;
  font-weight: 800;
}

.facts span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 14px rgba(183, 5, 18, 0.95);
}

.visual-stage {
  position: relative;
  z-index: 2;
  min-height: min(72svh, 760px);
  transform: translateX(2vw);
}

.visual-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 7% -3% 5% 15%;
  background: radial-gradient(circle at 72% 34%, rgba(183, 5, 18, 0.32), transparent 20rem);
  filter: blur(18px);
  opacity: 0.88;
}

.red-thread {
  position: absolute;
  z-index: 3;
  inset: 9% 9% auto auto;
  width: 68%;
  height: 36%;
  border-top: 1px solid rgba(183, 5, 18, 0.7);
  border-right: 1px solid rgba(183, 5, 18, 0.36);
  transform: skew(-16deg) rotate(-7deg);
  filter: drop-shadow(0 0 18px rgba(183, 5, 18, 0.46));
}

.red-thread::before,
.red-thread::after {
  content: "";
  position: absolute;
  height: 1px;
  background: rgba(183, 5, 18, 0.7);
  box-shadow: 0 0 18px rgba(183, 5, 18, 0.44);
}

.red-thread::before {
  width: 76%;
  top: 54%;
  right: 4%;
  transform: rotate(14deg);
}

.red-thread::after {
  width: 44%;
  top: 86%;
  right: 25%;
  transform: rotate(-22deg);
}

.photo-frame {
  position: absolute;
  z-index: 1;
  inset: -1% -1% 0 6%;
  overflow: hidden;
  clip-path: polygon(18% 0, 100% 5%, 94% 71%, 82% 100%, 5% 92%, 0 21%);
  background: #111;
  box-shadow:
    -32px 42px 90px rgba(0, 0, 0, 0.66),
    0 0 0 1px rgba(183, 5, 18, 0.22),
    0 0 90px rgba(183, 5, 18, 0.2);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px),
    radial-gradient(circle at 72% 62%, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px);
  background-size: 5px 5px, 7px 7px;
  opacity: 0.18;
  mix-blend-mode: screen;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  filter: grayscale(0.26) contrast(1.18) brightness(0.58) saturate(0.72);
  animation: photoDrift 14s ease-in-out infinite alternate;
}

.photo-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 86% 20%, rgba(183, 5, 18, 0.34), transparent 18rem),
    linear-gradient(110deg, rgba(7, 7, 7, 0.82) 0%, rgba(7, 7, 7, 0.18) 46%, rgba(7, 7, 7, 0.78) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.96), transparent 54%);
  mix-blend-mode: multiply;
}

.sakura-lines {
  position: absolute;
  inset: 4% -2% 0 auto;
  width: min(72%, 460px);
  opacity: 0.36;
  transform: rotate(6deg);
  filter: drop-shadow(0 0 14px rgba(183, 5, 18, 0.6));
}

.sakura-lines svg {
  width: 100%;
  height: auto;
}

.sakura-lines path {
  stroke: rgba(211, 9, 24, 0.78);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vertical-caption {
  position: absolute;
  right: -34px;
  bottom: 84px;
  color: rgba(244, 241, 235, 0.36);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-marquee {
  position: absolute;
  z-index: 12;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-top: 1px solid rgba(183, 5, 18, 0.34);
  border-bottom: 1px solid rgba(183, 5, 18, 0.28);
  background: rgba(7, 7, 7, 0.82);
  box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.34);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  padding: 18px 18px 17px;
  color: rgba(244, 241, 235, 0.9);
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 700;
  white-space: nowrap;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes photoDrift {
  from {
    transform: scale(1.06) translate3d(-1.2%, -0.8%, 0);
  }
  to {
    transform: scale(1.11) translate3d(1.3%, 1.1%, 0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes slowRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes breathe {
  0%,
  100% {
    opacity: 0.44;
    transform: rotate(28deg) scale(1);
  }
  50% {
    opacity: 0.78;
    transform: rotate(32deg) scale(1.04);
  }
}

@media (max-width: 1120px) {
  :root {
    --header-h: 84px;
  }

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

  .main-nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    height: auto;
    min-height: auto;
    padding-bottom: 126px;
  }

  .visual-stage {
    min-height: 520px;
    transform: none;
  }

  .photo-frame {
    inset: 0 0 0 0;
    clip-path: polygon(10% 0, 100% 8%, 91% 100%, 0 92%, 0 16%);
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 74px;
  }

  .hero {
    padding: 0 18px;
  }

  .hero::before {
    inset: 178px -40px auto auto;
    width: 72vw;
    height: 54vh;
  }

  .site-header {
    gap: 14px;
  }

  .brand {
    min-width: 0;
    height: 62px;
    gap: 10px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand-wordmark {
    max-width: 82px;
    font-size: 9px;
    line-height: 1.12;
  }

  .header-cta {
    min-height: 42px;
    min-width: 118px;
    padding: 0 15px;
    font-size: 12px;
  }

  .hero-grid {
    gap: 34px;
    padding: 34px 0 104px;
  }

  .hero-copy::before {
    left: 0;
    top: -22px;
    width: 74px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
  }

  h1 {
    font-size: clamp(38px, 11.4vw, 62px);
  }

  h1 .accent {
    font-size: 0.72em;
  }

  .lead {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .btn {
    min-width: 0;
    width: 100%;
    min-height: 54px;
  }

  .facts {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .facts span {
    width: 100%;
  }

  .visual-stage {
    min-height: 390px;
  }

  .photo-frame {
    inset: 4px 0 0 0;
    clip-path: polygon(12% 0, 100% 8%, 90% 100%, 0 92%, 0 19%);
  }

  .sakura-lines {
    width: 78%;
    opacity: 0.3;
  }

  .vertical-caption {
    display: none;
  }

  .marquee-track span {
    padding-top: 15px;
    padding-bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
