:root {
  --black: #111111;
  --soft-black: #1d1717;
  --white: #ffffff;
  --cream: #f7f1e8;
  --beige: #e8dac7;
  --gold: #c9a15d;
  --red: #d71920;
  --deep-red: #741515;
  --wine: #4a0d0f;
  --text: #2b2826;
  --muted: #706a64;
  --radius: 30px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

body::before {
  content: "";
  display: block;
  height: 8px;
  background: linear-gradient(90deg, var(--black), var(--wine), var(--red));
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 241, 232, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.nav {
  max-width: 1200px;
  margin: auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--black);
}

.logo span {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 30px;
  font-weight: 800;
  font-size: 0.95rem;
}

.nav-links a {
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: var(--red);
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

.hero {
  max-width: 1200px;
  margin: auto;
  padding: 90px 24px 80px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 58px;
  align-items: center;
}

.eyebrow {
  color: var(--deep-red);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.white-text {
  color: #ffd8d8;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  color: var(--black);
  line-height: 1.04;
}

h1 {
  font-size: clamp(3.2rem, 7.3vw, 6.6rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 12px;
}

.hero-text {
  max-width: 640px;
  font-size: 1.12rem;
  color: var(--muted);
  margin: 28px 0 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.3s ease;
}

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

.btn.primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(215, 25, 32, 0.25);
}

.btn.secondary {
  border: 1.5px solid var(--black);
  color: var(--black);
}

.btn.white {
  background: var(--white);
  color: var(--red);
}

.social-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-mini span {
  background: rgba(255, 255, 255, 0.78);
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--soft-black);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-image {
  position: relative;
  min-height: 620px;
  border-radius: 42px;
  overflow: hidden;
  background: var(--soft-black);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.18);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.35)),
    linear-gradient(120deg, rgba(215,25,32,0.12), transparent 50%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.floating-card {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  color: var(--black);
}

.floating-card strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.floating-card span {
  color: var(--muted);
  font-weight: 700;
}

.section {
  max-width: 1200px;
  margin: auto;
  padding: 90px 24px;
}

.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.about-text p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.section-title {
  max-width: 760px;
  margin-bottom: 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 32px;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.08);
}

.card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  background: rgba(215, 25, 32, 0.09);
  color: var(--red);
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 20px;
}

.card p {
  color: var(--muted);
}

.youtube-banner {
  max-width: 1200px;
  margin: 40px auto;
  padding: 70px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 15% 20%, rgba(215,25,32,0.42), transparent 28%),
    linear-gradient(135deg, #120707, #3b0507, #111111);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 34px;
  box-shadow: 0 34px 80px rgba(74, 13, 15, 0.22);
}

.youtube-banner h2 {
  color: var(--white);
  margin-bottom: 18px;
}

.youtube-banner p {
  color: #f1dede;
  max-width: 680px;
}

.collab {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.collab-list,
.quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px;
}

.collab-list ul {
  padding-left: 20px;
}

.collab-list li {
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 600;
}

.quote {
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.08), rgba(255,255,255,0.92)),
    var(--white);
  display: flex;
  align-items: center;
}

.quote p {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  color: var(--black);
}

.community {
  max-width: 960px;
  margin: 50px auto;
  padding: 80px 24px;
  text-align: center;
}

.community p {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.contact p {
  color: var(--muted);
  margin-top: 18px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  display: grid;
  gap: 14px;
}

.contact-card a {
  background: var(--cream);
  padding: 16px 18px;
  border-radius: 18px;
  font-weight: 900;
  transition: 0.3s ease;
}

.contact-card a:hover {
  background: var(--red);
  color: var(--white);
}

.footer {
  max-width: 1200px;
  margin: auto;
  padding: 36px 24px;
  border-top: 1px solid rgba(0,0,0,0.08);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-weight: 600;
}

.footer a {
  color: var(--red);
  font-weight: 900;
}

@media (max-width: 920px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 24px;
    width: min(300px, calc(100% - 48px));
    padding: 24px;
    background: var(--white);
    border-radius: 24px;
    display: none;
    flex-direction: column;
    box-shadow: 0 24px 60px rgba(0,0,0,0.14);
  }

  .nav-links.active {
    display: flex;
  }

  .hero,
  .about,
  .contact,
  .collab {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-image {
    min-height: 520px;
  }

  .hero-image img {
    min-height: 520px;
  }

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

  .youtube-banner {
    margin: 24px;
    padding: 40px 28px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    flex-direction: column;
  }
}