@import url("https://fonts.googleapis.com/css2?family=Charis+SIL:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Lora:ital,wght@0,400..700;1,400..700&display=swap");

:root {
  --primary-red: #8f1f2e;
  --dark-red: #7a0000;
  --black: #0d0d0d;
  --soft-black: #111;
  --gold: #d8b55a;
  --bg-cream: #faf6f2;
  --white: #fff;
  --hero-red: rgb(241, 40, 40);
  --hero-white: rgba(255, 255, 255, 0.92);
  --hero-muted: rgba(231, 214, 189, 0.78);
}

* {
  box-sizing: border-box;
}

@keyframes imageZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg-cream);
  color: var(--soft-black);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .brand-logo {
    width: 40px;
  }

  .brand-text {
    font-size: 1rem;
  }

  .top-header {
    padding: 10px 16px;
  }
}

/* SMOOTH SCROLL ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 20px;
  background-image: url("/images/background.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Dark overlay + subtle vignette */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      1100px 650px at 22% 28%,
      rgba(18, 11, 12, 0.35),
      rgba(18, 11, 12, 0.88)
    ),
    linear-gradient(110deg, rgba(42, 17, 21, 0.55), rgba(18, 11, 12, 0.78));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT: cover becomes a "product" */
.hero-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-left img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
  transform: translateY(2px);
}

/* RIGHT: typography */
.hero-right {
  max-width: 560px;
}

.hero-eyebrow {
  font-family: "Lora", serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(231, 214, 189, 0.62);
  margin-bottom: 14px;
}

.hero-right h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.2rem;
  line-height: 0.9;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.hero-right h1 span {
  display: block;
  margin-top: 10px;
  font-family: "Lora", serif;
  font-size: 2.1rem;
  font-style: italic;
  color: #8f1f2e;
  text-shadow: 0 10px 26px rgba(143, 31, 46, 0.28);
}

.hero-subhead {
  font-family: "Lora", serif;
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--hero-muted);
  margin: 0 0 22px;
}

.highlight {
  color: #8f1f2e;
  font-weight: 900;
  text-shadow: 0 0 16px rgba(178, 77, 77, 0.22);
  position: relative;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 12px;
  font-family: "Lora", serif;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-points .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #c7a36a;
  margin-top: 9px;
  box-shadow: 0 0 0 6px rgba(199, 163, 106, 0.16);
}

/* CTA row */
.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

/* Trust pills */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  font-family: "Lora", serif;
  font-size: 0.95rem;
  color: var(--hero-muted);
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(199, 163, 106, 0.22);
  box-shadow: inset 0 1px 0 rgba(231, 214, 189, 0.06);
  background: rgba(18, 11, 12, 0.45);
  backdrop-filter: blur(7px);
}

/* Responsive */
@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-right {
    max-width: 680px;
    margin: 0 auto;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-left img {
    max-width: 360px;
  }

  .hero-right h1 {
    font-size: 3.1rem;
    line-height: 0.95;
  }

  .hero-right h1 span {
    font-size: 1.7rem;
  }

  .hero-cta-row {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-points {
    text-align: left;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 70px 16px;
  }

  .hero-left img {
    max-width: 310px;
    border-radius: 16px;
  }

  .hero-right h1 {
    font-size: 2.6rem;
  }

  .hero-subhead {
    font-size: 1.15rem;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
    display: inline-flex;
  }

  .hero-trust {
    justify-content: center;
  }
}

/* CTA */
.cta-primary {
  background: #ba8f4b;
  color: #fff;
  padding: 16px 38px;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
}

.cta-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(190, 160, 26, 0.6);
}

/* Shine Effect */
.cta-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-30deg);
  transition: all 0.6s ease-in-out;
  opacity: 0;
}

/* Shine Effect on Hover */
.cta-primary:hover::after {
  left: 100%;
  opacity: 1;
}

.cta-primary:focus {
  outline: 2px solid rgba(199, 163, 106, 0.35);
  outline-offset: 3px;
}

/* SPONSORS */
.sponsors {
  margin: 60px auto;
  text-align: center;
}

.sponsors-label {
  display: block;
  font-family: "Montserrat", serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 12px;
}

.sponsors-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.sponsors-logos img {
  max-height: 60px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.sponsors-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 600px) {
  .sponsors-logos {
    gap: 26px;
  }

  .sponsors-logos img {
    max-height: 48px;
  }
}

/* COPY SECTION BEFORE FEATURES */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px;
}

.copy-section {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 4px solid var(--primary-red);
  width: min(80rem, calc(100% - 48px)); /* 24px gutter on each side */
  margin: 8rem auto 2rem;
}

.copy-section h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
  color: var(--dark-red);
}

.copy-section p {
  font-size: 1.15rem;
  margin-bottom: 15px;
  line-height: 1.7;
}

.copy-badge {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.55);
  background: rgba(143, 31, 46, 0.08);
  border: 1px solid rgba(143, 31, 46, 0.18);
  padding: 10px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.copy-lead {
  font-size: 1.18rem;
  line-height: 1.75;
}

.copy-divider {
  width: 100%;
  height: 2px;
  background: rgba(143, 31, 46, 0.18);
  border-radius: 999px;
  margin: 22px 0;
}

.copy-subtitle {
  margin: 0 0 14px;
  font-size: 1.25rem;
  color: var(--black);
}

.copy-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.copy-list li {
  gap: 12px;
  line-height: 1.65;
  font-size: 1.08rem;
}

.copy-list li::before {
  content: "✓";
  font-weight: 900;
  color: var(--primary-red);
  margin-top: 2px;
}

.copy-muted {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

.copy-cta-line {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(143, 31, 46, 0.06);
  border: 1px solid rgba(143, 31, 46, 0.14);
  font-size: 1.08rem;
  line-height: 1.7;
}

/* RESPONSIVENESS */
@media (max-width: 600px) {
  .container {
    padding: 28px 30px;
  }

  .copy-section {
    width: calc(100% - 32px); /* 16px gutter on each side */
    margin: 36px auto 70px;
    padding: 22px 16px;
    border-width: 3px; /* slightly less chunky on small screens */
    border-radius: 12px;
  }

  .copy-section h2 {
    font-size: 1.75rem;
  }

  .copy-section p,
  .copy-list li,
  .copy-cta-line {
    font-size: 1rem;
  }

  .copy-list li {
    display: block; /* kill the flex layout */
    position: relative;
    padding-left: 1.6rem; /* space for the checkmark */
    line-height: 1.65;
  }

  .copy-list li::before {
    position: absolute;
    left: 0;
    top: 0.15em; /* aligns with first line */
    margin: 0; /* stop flex-era leftovers */
  }

  .copy-muted {
    display: block; /* force it to drop under the main text */
    max-width: none; /* remove the 400px cap */
    margin-top: 0.35rem;
    text-align: center;
  }
}

/* FEATURES */
.section h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--dark-red);
  text-align: center;
  font-weight: 700;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(22rem, 1fr));
  gap: 25px;
  margin-top: 20px;
  justify-content: center;
}

.feature-box {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 2px solid #f2e8e8;
  transition: 0.25s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-red);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: #fceaea;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.icon-box img {
  width: 36px;
  height: 36px;
  filter: brightness(0) saturate(100%) invert(23%) sepia(90%) saturate(2300%)
    hue-rotate(-4deg) brightness(85%) contrast(92%);
}

.feature-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.feature-box p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .features {
    grid-template-columns: 1fr;
  }
}

/* FAQ SECTION */
.faq-section {
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 0 20px;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.6rem;
  color: var(--dark-red);
  margin-bottom: 35px;
  font-family: "Segoe UI", serif;
}

.faq {
  max-width: 820px;
  margin: auto;
}

/* FAQ ITEM */
.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(179, 0, 0, 0.2); /* soft red line */
  transition: 0.25s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

/* QUESTION BUTTON */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.35rem;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 0;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Montserrat", sans-serif;
}

.faq-question:hover {
  color: var(--primary-red);
}

/* ARROW */
.faq-question .arrow {
  font-size: 1.6rem;
  transition: 0.3s ease;
  color: var(--primary-red);
  font-weight: bold;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.35s ease;
  padding-right: 20px;
}

.faq-answer p {
  font-size: 1.1rem;
  line-height: 1.65;
  margin: 0;
  padding-top: 10px;
  color: #333;
  font-family: "Inter", sans-serif;
}

/* OPEN STATE */
.faq-item.open {
  padding-bottom: 22px;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-item.open .arrow {
  transform: rotate(45deg);
}

/* CTA SECTION */
.cta-section {
  text-align: center;
  margin-top: 70px;
  background: linear-gradient(
    90deg,
    rgba(179, 0, 0, 1) 0%,
    rgb(157, 9, 9) 100%
  );
  padding: 50px 30px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.cta-section h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
  color: white;
}

.cta-section p {
  color: white;
}

.cta-section .cta-primary {
  color: var(--primary-red);
  background-color: white;
  margin-top: 1rem;
}

/* FOOTER */
footer {
  margin-top: 80px;
  text-align: center;
  padding: 30px;
  font-size: 0.9rem;
  color: #555;
}

/* MOBILE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1.05rem;
  }
}

/* Social Icons */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 18px 0 10px;
}

.footer-socials a {
  text-decoration: none;
}

.footer-socials .icon {
  width: 34px;
  height: 34px;
  display: inline-block;
  background-color: #b30000;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.footer-socials .icon:hover {
  transform: translateY(-3px) scale(1.08);
  background-color: #7a0000;
}

/* ICON MASKS */
.icon.instagram {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2C4.2 2 2 4.2 2 7v10c0 2.8 2.2 5 5 5h10c2.8 0 5-2.2 5-5V7c0-2.8-2.2-5-5-5H7zm10 2c1.7 0 3 1.3 3 3v10c0 1.7-1.3 3-3 3H7c-1.7 0-3-1.3-3-3V7c0-1.7 1.3-3 3-3h10zm-5 3a5 5 0 100 10 5 5 0 000-10zm0 2a3 3 0 110 6 3 3 0 010-6zm4.8-.9a1.1 1.1 0 100 2.2 1.1 1.1 0 000-2.2z'/%3E%3C/svg%3E");
}

.icon.facebook {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 12a10 10 0 10-11.5 9.9v-7H8v-3h2.5V9.5c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.4H15c-1.2 0-1.6.8-1.6 1.5V12h2.7l-.4 3h-2.3v7A10 10 0 0022 12z'/%3E%3C/svg%3E");
}

.icon.tiktok {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16 2h-2v14.3a3.3 3.3 0 11-3-3.3v-2a5.3 5.3 0 105 5.3V8.7c1.1.8 2.5 1.3 4 1.3V8a6 6 0 01-4-6z'/%3E%3C/svg%3E");
}

.icon.youtube {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M23.5 6.2a3 3 0 00-2.1-2.1C19.6 3.5 12 3.5 12 3.5s-7.6 0-9.4.6A3 3 0 00.5 6.2 31 31 0 000 12a31 31 0 00.5 5.8 3 3 0 002.1 2.1c1.8.6 9.4.6 9.4.6s7.6 0 9.4-.6a3 3 0 002.1-2.1A31 31 0 0024 12a31 31 0 00-.5-5.8zM9.6 15.5v-7l6 3.5-6 3.5z'/%3E%3C/svg%3E");
}
