/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --venom: #B13D4C;
  --venom-dark: #8a2d3a;
  --charcoal: #1a1a1a;
  --charcoal-light: #2a2a2a;
  --blush: #F5E6E0;
  --blush-dark: #e8d4d0;
  --cream: #faf6f4;
}

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--charcoal);
  color: var(--blush);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4rem 2rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(177, 61, 76, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(177, 61, 76, 0.08) 0%, transparent 50%),
    var(--charcoal);
}

.hero__bg-texture {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 80px,
      rgba(245, 230, 224, 0.03) 80px,
      rgba(245, 230, 224, 0.03) 81px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(245, 230, 224, 0.03) 80px,
      rgba(245, 230, 224, 0.03) 81px
    );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
}

.hero__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--venom);
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 1.0;
  color: var(--blush);
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.1em;
}

.hero__line { display: block; }
.hero__line--2 { color: var(--venom); font-style: italic; }

.hero__sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(245, 230, 224, 0.7);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero__tags {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 230, 224, 0.25);
  padding: 0.4em 1em;
  color: rgba(245, 230, 224, 0.6);
  border-radius: 2px;
}

/* Stamps */
.hero__stamp { position: absolute; z-index: 1; opacity: 0.07; pointer-events: none; }

.hero__stamp--broken {
  top: 8%;
  right: 6%;
  transform: rotate(12deg);
}

.stamp-text {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--venom);
  border: 4px solid var(--venom);
  padding: 0.3em 0.6em;
  display: inline-block;
  line-height: 1;
}

.stamp-text--ghost {
  position: absolute;
  top: 0; left: 0;
  color: var(--blush);
  border-color: var(--blush);
  transform: translate(4px, 4px);
  opacity: 0.5;
}

.hero__stamp--heart {
  bottom: 10%;
  left: 5%;
  transform: rotate(-8deg);
}

.heart-frame {
  width: 100px;
  height: 90px;
  position: relative;
}

.heart-crack {
  width: 80px;
  height: 80px;
  border: 4px solid var(--venom);
  position: relative;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.heart-crack::after {
  content: '';
  position: absolute;
  top: 45%;
  left: 10%;
  right: 10%;
  height: 3px;
  background: var(--venom);
  transform: rotate(-15deg);
}

/* === MANIFESTO === */
.manifesto {
  background: var(--charcoal-light);
  padding: 6rem 2rem;
}

.manifesto__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.manifesto__rule {
  width: 60px;
  height: 2px;
  background: var(--venom);
  margin: 2.5rem auto;
}

.manifesto__text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--blush);
  font-style: italic;
}

.manifesto__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.stat { text-align: center; }

.stat__number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--venom);
  line-height: 1;
}

.stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 230, 224, 0.5);
  margin-top: 0.5rem;
}

/* === PRODUCTS === */
.products {
  padding: 8rem 2rem;
  background: var(--charcoal);
}

.products__header {
  text-align: center;
  margin-bottom: 4rem;
}

.products__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--blush);
  margin-bottom: 0.75rem;
}

.products__sub {
  font-size: 1rem;
  color: rgba(245, 230, 224, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.products__grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.product-card {
  padding: 3rem 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.product-card--merch { background: rgba(177, 61, 76, 0.12); }
.product-card--digital { background: rgba(42, 42, 42, 0.8); }

.product-card__visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-card__graphic {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Merch graphic - tshirt concept */
.graphic-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1em;
  border: 2px solid rgba(245, 230, 224, 0.15);
  padding: 1.5rem 2.5rem;
  position: relative;
}

.g-text {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  line-height: 1;
  letter-spacing: 0.05em;
}
.g-text--1 { color: var(--blush); }
.g-text--2 { color: var(--venom); font-size: clamp(1.5rem, 3vw, 2.4rem); }
.g-text--3 { color: var(--blush); font-size: 0.9rem; opacity: 0.6; letter-spacing: 0.2em; font-family: 'DM Sans', sans-serif; font-weight: 500; }

.stamp-mark {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  border: 2px solid;
  padding: 0.3em 0.8em;
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  transform: rotate(-5deg);
}
.stamp-mark--venom { color: var(--venom); border-color: var(--venom); }
.stamp-mark--rose { color: var(--blush); border-color: var(--blush); opacity: 0.5; }

/* Digital graphic - book concept */
.graphic-book {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  border-left: 3px solid rgba(245, 230, 224, 0.2);
  padding-left: 1.5rem;
}

.book-pages {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-line {
  height: 2px;
  background: rgba(245, 230, 224, 0.15);
  width: 60px;
}
.page-line--short { width: 40px; }

.book-cover {
  background: var(--venom);
  padding: 0.8rem 1.2rem;
  text-align: center;
  min-width: 100px;
}

.book-title {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.1;
  color: var(--blush);
}

.book-sub {
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  color: rgba(245, 230, 224, 0.7);
  margin-top: 4px;
  font-family: 'DM Sans', sans-serif;
}

.product-card__body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blush);
  margin-bottom: 0.75rem;
}

.product-card__body p {
  font-size: 0.9rem;
  color: rgba(245, 230, 224, 0.6);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.product-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.product-card__list li {
  font-size: 0.8rem;
  color: rgba(245, 230, 224, 0.5);
  letter-spacing: 0.05em;
  padding-left: 1em;
  position: relative;
}
.product-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--venom);
  opacity: 0.7;
}

.product-card__cta {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--venom);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.product-card__cta:hover {
  border-bottom-color: var(--venom);
}

/* === VOICE === */
.voice {
  padding: 8rem 2rem;
  background: var(--charcoal-light);
}

.voice__inner { max-width: 900px; margin: 0 auto; }

.voice__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--blush);
}

.voice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245, 230, 224, 0.1);
}

.voice-card {
  background: var(--charcoal-light);
  padding: 2.5rem 2rem;
}

.voice-card__icon {
  font-size: 1.5rem;
  color: var(--venom);
  margin-bottom: 1.5rem;
}

.voice-card__quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--blush);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.voice-card__desc {
  font-size: 0.8rem;
  color: rgba(245, 230, 224, 0.5);
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  padding: 10rem 2rem;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(177, 61, 76, 0.2) 0%, transparent 60%),
    var(--charcoal);
  text-align: center;
}

.closing__inner { max-width: 600px; margin: 0 auto; }

.closing__stamp {
  width: 50px;
  height: 50px;
  border: 3px solid var(--venom);
  border-radius: 50%;
  margin: 0 auto 2.5rem;
  opacity: 0.4;
}

.closing__headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--blush);
  margin-bottom: 2rem;
}

.closing__headline em { color: var(--venom); font-style: italic; }

.closing__sub {
  font-size: 1rem;
  color: rgba(245, 230, 224, 0.6);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.closing__sub em { color: var(--blush); font-style: italic; }

/* === FOOTER === */
.footer {
  background: var(--charcoal-light);
  border-top: 1px solid rgba(245, 230, 224, 0.08);
  padding: 3rem 2rem;
}

.footer__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--venom);
  letter-spacing: 0.05em;
}

.footer__tagline {
  font-size: 0.75rem;
  color: rgba(245, 230, 224, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.footer__meta {
  font-size: 0.75rem;
  color: rgba(245, 230, 224, 0.3);
  letter-spacing: 0.05em;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .products__grid { grid-template-columns: 1fr; }
  .manifesto__stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .voice__grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
  .hero__stamp { display: none; }
  .closing { padding: 6rem 2rem; }
}