:root {
  --color-purple: #51355a;
  --color-purple-dark: #291b2d;
  --color-red: #9e2b25;
  --color-red-bright: #cf2020;
  --color-red-dark: #4f1613;
  --color-brown-dark: #280b09;
  --color-brown: #390e0a;
  --color-cream: #fff6ed;
  --color-text: rgba(255, 255, 255, 0.88);
  --font-title: "Roboto Condensed", Arial, sans-serif;
  --font-body: "Raleway", Arial, sans-serif;
  --container: min(1120px, calc(100vw - 36px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-brown-dark);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 30px 58px;
  background: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.74) 28%, rgba(0, 0, 0, 0.28) 62%, transparent 100%);
}

.site-logo img {
  width: 118px;
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav a {
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: currentColor;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 130px 0 100px;
  background:
    linear-gradient(90deg, rgba(40, 11, 9, 0.62), rgba(40, 11, 9, 0.12) 62%),
    url("../images/ban-big2v2-1.jpg") center / cover no-repeat,
    var(--color-brown-dark);
  text-align: center;
}

.hero-content {
  width: min(760px, calc(100vw - 36px));
  margin-left: max(18px, 8vw);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.02;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(4.1rem, 10vw, 9rem);
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.52);
}

.hero h1 span {
  display: block;
  font-size: 0.58em;
  text-transform: none;
}

.hero-poem {
  margin: 24px 0 10px;
  font-family: "Abel", var(--font-title);
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.35;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.award {
  display: inline-block;
  margin: 10px 0 0;
  padding: 4px 10px;
  background: rgba(40, 11, 9, 0.88);
  font-style: italic;
}

.hero-meta {
  margin: 18px auto 0;
  max-width: 700px;
  font-size: 1.08rem;
  font-style: italic;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 13px 28px;
  color: #fff;
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  margin-top: 32px;
  background: var(--color-red-bright);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ba1d1d;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.video-section {
  padding: 80px 0;
  background: #280b02;
}

.video-frame {
  width: min(900px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.features {
  padding: 56px 0;
  background: var(--color-brown);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}

.feature-grid h2 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.feature-grid p {
  margin: 0;
}

.testimonials {
  background: linear-gradient(to bottom, var(--color-red-dark), var(--color-brown-dark));
  padding: 72px 0;
}

.carousel {
  position: relative;
  min-height: 450px;
  display: grid;
  align-items: center;
}

.testimonial-track {
  display: grid;
}

.testimonial {
  grid-area: 1 / 1;
  width: min(760px, 100%);
  margin: 0 auto;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.testimonial.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.testimonial h2 {
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.testimonial p {
  margin: 0 auto 14px;
  max-width: 760px;
  font-size: 1.2rem;
}

.testimonial footer {
  margin-top: 22px;
  font-weight: 700;
}

.testimonial footer span {
  font-weight: 400;
  opacity: 0.82;
}

.carousel-button {
  position: absolute;
  top: 45%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.carousel-button.prev {
  left: 0;
}

.carousel-button.next {
  right: 0;
}

.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.36);
  cursor: pointer;
}

.carousel-dots button[aria-current="true"] {
  background: #fff;
}

.shop-section,
.contact-section {
  padding: 74px 0;
  background: #3d1205;
}

.shop-section h2,
.contact-panel h2,
.about-section h2,
.social-section h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.25rem);
  text-align: center;
}

.section-intro {
  margin: 0 auto 34px;
  max-width: 620px;
  text-align: center;
}

.shopify-product {
  min-height: 280px;
}

.contact-section {
  background: var(--color-brown-dark);
}

.contact-panel {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact-panel p {
  margin: 0 auto 16px;
  max-width: 620px;
  font-size: 1.1rem;
}

.protected-email {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 5px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
}

.about-section,
.social-section {
  padding: 72px 0;
  background: var(--color-red-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 38px;
  align-items: start;
}

.about-grid img {
  width: 197px;
  border-radius: 3px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32);
}

.about-section h2 {
  text-align: left;
}

.about-section p {
  margin: 0 0 16px;
  font-size: 1.07rem;
}

.social-section {
  padding-top: 0;
  text-align: center;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.site-footer {
  padding: 36px 18px 44px;
  background: var(--color-brown-dark);
  text-align: center;
}

.site-footer img {
  width: 136px;
  margin: 0 auto 22px;
}

.site-footer p {
  margin: 8px 0;
  font-size: 0.95rem;
}

.site-footer a {
  font-weight: 700;
  text-decoration: none;
}

.legal-page {
  min-height: 100vh;
  background: var(--color-brown-dark);
}

.legal-hero {
  padding: 150px 0 42px;
  background: var(--color-brown-dark);
}

.legal-hero h1 {
  max-width: 900px;
  margin-top: 18px;
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.breadcrumb-link {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-title);
  text-decoration: none;
  text-transform: uppercase;
}

.breadcrumb-link:hover,
.breadcrumb-link:focus-visible {
  color: #fff;
}

.legal-section {
  padding: 0 0 82px;
  background: var(--color-brown-dark);
}

.legal-content {
  max-width: 960px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.8;
}

.legal-content strong {
  color: #fff;
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content li {
  margin-bottom: 8px;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--color-red-bright);
  color: #fff;
  font-size: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
  cursor: pointer;
}

.scroll-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    padding: 18px 18px 50px;
  }

  .site-nav {
    gap: 10px 14px;
    font-size: 0.9rem;
  }

  .hero {
    align-items: end;
    min-height: 880px;
    padding-bottom: 70px;
    background-position: 58% center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .feature-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-grid img {
    margin: 0 auto;
  }

  .about-section h2 {
    text-align: center;
  }

  .carousel {
    min-height: 560px;
    padding-inline: 42px;
  }

  .carousel-button {
    width: 38px;
    height: 38px;
    font-size: 2rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    display: block;
    padding-bottom: 42px;
  }

  .site-logo img {
    width: 94px;
  }

  .site-nav {
    margin-top: 14px;
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 17vw, 4.8rem);
  }

  .hero-poem {
    font-size: 1.18rem;
  }

  .button {
    width: 100%;
    max-width: 340px;
  }

  .video-section,
  .features,
  .testimonials,
  .shop-section,
  .contact-section,
  .about-section {
    padding: 52px 0;
  }

  .carousel {
    min-height: 650px;
    padding-inline: 0;
  }

  .carousel-button {
    top: auto;
    bottom: 32px;
  }
}
