:root {
  --ink: #080606;
  --surface: #171111;
  --cream: #f2ece8;
  --muted: #ada5a1;
  --ember: #d7281d;
  --ember-bright: #ef3f2f;
  --blossom: #cb6973;
  --border: rgba(153, 72, 69, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 15% 20%, rgba(118, 18, 15, 0.06), transparent 28rem),
    var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 0.6px, transparent 0.7px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 0.45s ease, border-color 0.45s ease, backdrop-filter 0.45s ease;
}

.site-header--scrolled {
  background: rgba(8, 6, 6, 0.86);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1240px, calc(100% - 40px));
  height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand,
nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: cover;
}

.brand span,
.nav-link {
  color: var(--muted);
  font-size: 0.69rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

nav {
  gap: 24px;
}

.nav-link {
  transition: color 0.25s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--cream);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: -2.5%;
  z-index: -5;
  width: 105%;
  height: 105%;
  object-fit: cover;
  opacity: 0.55;
  animation: hero-breath 14s ease-in-out infinite alternate;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(to right, rgba(8, 6, 6, 0.72) 0%, rgba(8, 6, 6, 0.1) 66%),
    linear-gradient(to top, var(--ink) 0%, rgba(8, 6, 6, 0.72) 43%, rgba(8, 6, 6, 0.08) 100%);
}

.hero-glow {
  position: absolute;
  z-index: -3;
  left: 44%;
  top: 35%;
  width: 36rem;
  height: 36rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(173, 26, 20, 0.25);
  filter: blur(130px);
  animation: ember-pulse 6s ease-in-out infinite;
}

.hero-orbit {
  position: absolute;
  right: -5%;
  top: 12%;
  width: 36vw;
  aspect-ratio: 1;
  border: 1px solid rgba(208, 104, 88, 0.16);
  border-radius: 50%;
}

.hero-inner {
  width: min(1240px, calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 118px 0 64px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.hero-copy {
  width: min(680px, 58vw);
}

.wave {
  display: block;
  width: 170px;
  height: 18px;
  margin-bottom: 22px;
  background: repeating-linear-gradient(90deg, var(--ember) 0 4px, transparent 4px 8px);
  clip-path: polygon(0 35%, 4% 45%, 8% 18%, 12% 58%, 16% 26%, 20% 72%, 24% 33%, 28% 58%, 32% 10%, 36% 75%, 40% 38%, 44% 68%, 48% 22%, 52% 79%, 56% 42%, 60% 65%, 64% 28%, 68% 70%, 72% 20%, 76% 55%, 80% 32%, 84% 66%, 88% 22%, 92% 55%, 96% 35%, 100% 50%, 100% 100%, 0 100%);
}

.wave--compact {
  width: 128px;
  height: 14px;
  margin: 0;
}

.eyebrow {
  margin: 0;
  color: var(--blossom);
  font-size: 0.7rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Anton", system-ui, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(7.4rem, 12.9vw, 11rem);
  line-height: 0.82;
  letter-spacing: -0.02em;
}

.hero h1 span {
  display: block;
}

.hero h1 span:first-child {
  position: relative;
  width: fit-content;
  color: var(--cream);
}

.hero h1 span:first-child::after {
  position: absolute;
  right: 0.24em;
  bottom: 0.07em;
  width: 0.34em;
  height: 0.12em;
  content: "";
  background: var(--ember-bright);
  transform: rotate(-15deg);
}

.hero h1 span:last-child {
  color: var(--ember-bright);
}

.hero-description {
  max-width: 510px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-description em {
  color: var(--cream);
  font-family: "Marck Script", cursive;
  font-size: 1.6rem;
  font-style: normal;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
}

.button {
  min-height: 50px;
  padding: 15px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.23em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px) scale(1.015);
}

.button--small {
  min-height: 36px;
  padding: 10px 20px;
  font-size: 0.68rem;
}

.button--primary {
  color: #fff7f3;
  background: linear-gradient(135deg, #a61917 0%, #e73a2c 52%, #7b1716 100%);
  box-shadow: 0 12px 48px rgba(222, 45, 35, 0.22);
}

.button--outline {
  border: 1px solid rgba(190, 116, 108, 0.28);
}

.button--outline:hover,
.button--outline:focus-visible {
  color: #ed9aa0;
  border-color: var(--ember);
}

.marquee {
  position: relative;
  z-index: 3;
  overflow: hidden;
  color: #fff4ef;
  background: var(--ember-bright);
}

.marquee-track {
  width: max-content;
  padding: 12px 0;
  display: flex;
  animation: ticker 36s linear infinite;
}

.marquee span {
  padding-left: 42px;
  display: inline-flex;
  align-items: center;
  gap: 42px;
  white-space: nowrap;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.marquee b {
  font-size: 0.9rem;
}

.section-shell {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.ritual {
  padding: 96px 0;
}

.section-heading {
  padding-bottom: 38px;
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: end;
  border-bottom: 1px solid rgba(171, 98, 91, 0.16);
}

.section-heading h2,
.promo-heading h2 {
  font-size: clamp(3rem, 5.3vw, 4.5rem);
  line-height: 1;
}

.section-heading h2 span,
.promo-heading h2 span {
  color: var(--cream);
}

.section-heading h2,
.promo-heading h2 {
  color: var(--ember-bright);
}

.section-heading p,
.promo-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.ritual-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ritual-card {
  overflow: hidden;
  border: 1px solid rgba(199, 49, 43, 0.46);
  background: var(--surface);
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.ritual-card:hover {
  transform: translateY(-5px);
  border-color: var(--ember-bright);
}

.ritual-image-wrap {
  position: relative;
  height: 385px;
  overflow: hidden;
}

.ritual-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: transform 0.75s ease, opacity 0.75s ease;
}

.ritual-card:hover img {
  transform: scale(1.09);
  opacity: 1;
}

.image-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 6, 6, 0.92), transparent 58%);
}

.kanji {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  color: rgba(223, 32, 28, 0.78);
  font-size: 3.3rem;
  line-height: 1;
}

.ritual-name {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 26px;
  left: 24px;
}

.ritual-name span,
.promo-card > div > span {
  color: var(--blossom);
  font-size: 0.63rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.ritual-name h3,
.promo-card h3 {
  margin-top: 9px;
  font-size: 1.8rem;
  line-height: 1.1;
}

.ritual-card > p {
  min-height: 116px;
  margin: 0;
  padding: 24px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.72;
}

.promos {
  padding: 92px 0 98px;
  border-block: 1px solid rgba(156, 87, 81, 0.22);
  background: rgba(32, 20, 18, 0.2);
}

.promo-heading {
  max-width: 680px;
}

.promo-heading .wave {
  margin-bottom: 22px;
}

.promo-heading p {
  max-width: 590px;
  margin-top: 24px;
}

.promo-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(172, 99, 91, 0.22);
}

.promo-card {
  min-height: 245px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  background: #080606;
  transition: background 0.3s ease;
}

.promo-card + .promo-card {
  border-left: 1px solid rgba(172, 99, 91, 0.22);
}

.promo-card:hover,
.promo-card:focus-visible {
  background: #251413;
}

.promo-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

.promo-card strong {
  font-size: 0.69rem;
  letter-spacing: 0.27em;
  text-transform: uppercase;
}

.promo-card i {
  color: var(--ember-bright);
  font-style: normal;
  transition: margin 0.25s ease;
}

.promo-card:hover i {
  margin-left: 7px;
}

.final-cta {
  position: relative;
  min-height: 610px;
  padding: 105px 20px;
  display: grid;
  place-items: center;
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  width: 40rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 39, 29, 0.15), transparent 68%);
  filter: blur(25px);
}

.cta-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-content img {
  width: 190px;
  height: 158px;
  object-fit: cover;
}

.cta-content h2 {
  margin-top: 34px;
  color: #df6d78;
  font-family: "Marck Script", cursive;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  text-transform: none;
}

.cta-content p {
  max-width: 590px;
  margin: 22px auto 34px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

footer {
  min-height: 80px;
  padding: 24px max(20px, calc((100% - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(156, 87, 81, 0.22);
}

footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.61rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

:focus-visible {
  outline: 2px solid var(--ember-bright);
  outline-offset: 4px;
}

@keyframes hero-breath {
  from { transform: scale(1.02); }
  to { transform: scale(1.07); }
}

@keyframes ember-pulse {
  0%, 100% { opacity: 0.65; transform: translateX(-50%) scale(0.9); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@media (max-width: 980px) {
  .brand span { display: none; }
  .hero-copy { width: 66vw; }
  .hero h1 { font-size: clamp(7rem, 15vw, 9rem); }
  .hero-actions { flex-direction: column; }
  .ritual-image-wrap { height: 330px; }
}

@media (max-width: 760px) {
  .header-inner,
  .hero-inner,
  .section-shell {
    width: min(100% - 32px, 1240px);
  }

  .header-inner { height: 64px; }
  .brand img { width: 40px; height: 40px; }
  nav { gap: 10px; }
  .nav-link { display: none; }
  .button--small { padding-inline: 16px; }

  .hero,
  .hero-inner {
    min-height: 820px;
  }

  .hero-inner {
    padding: 130px 0 46px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
  }

  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(5.6rem, 25vw, 8.5rem); }
  .hero-description { max-width: 93%; font-size: 0.9rem; }
  .hero-actions { padding-top: 8px; flex-direction: row; flex-wrap: wrap; }
  .hero-actions .button { flex: 1 1 190px; }
  .hero-orbit { right: -34%; top: 12%; width: 92vw; }

  .section-heading { grid-template-columns: 1fr; gap: 24px; }
  .section-heading p { max-width: 540px; }
  .ritual-grid,
  .promo-grid { grid-template-columns: 1fr; }

  .ritual-card { display: grid; grid-template-columns: 46% 54%; }
  .ritual-image-wrap { height: 310px; }
  .ritual-card > p { min-height: auto; display: flex; align-items: center; }
  .promo-card + .promo-card { border-top: 1px solid rgba(172, 99, 91, 0.22); border-left: 0; }
  .promo-card { min-height: 220px; }
}

@media (max-width: 520px) {
  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .wave { width: 132px; }
  .eyebrow { letter-spacing: 0.35em; }
  .hero h1 { font-size: clamp(4.7rem, 25vw, 7rem); }
  .hero-description { font-size: 0.84rem; line-height: 1.65; }
  .button { padding-inline: 22px; font-size: 0.67rem; }
  .hero-actions .button { flex-basis: 100%; }
  .ritual,
  .promos { padding-block: 72px; }
  .section-heading h2,
  .promo-heading h2 { font-size: 3.15rem; }
  .ritual-card { display: block; }
  .ritual-image-wrap { height: 360px; }
  .ritual-card > p { min-height: 0; }
  .promo-card { padding: 28px 24px; }
  .final-cta { min-height: 560px; padding-block: 80px; }
  .cta-actions { width: 100%; flex-direction: column; }
  .cta-actions .button { width: 100%; }
  footer { gap: 24px; }
  footer .wave { display: none; }
}

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