:root {
  --accent: #f0523d;
  --accent-dark: #d4402a;
  --accent-soft: rgba(240, 82, 61, 0.1);
  --dark: #241812;
  --dark-soft: #36241c;
  --dark-text: #f5ebe3;
  --light: #faf5f0;
  --tint: #f3ebe3;
  --tint-deep: #ede2d6;
  --white: #ffffff;
  --text: #2a1a12;
  --text-muted: #7a6b60;
  --border: #e0d4c8;
  --radius: 8px;
  --radius-lg: 12px;
  --nav-height: 68px;
  --banner-height: 42px;
  --max-width: 1140px;
  --font: 'Arvo', Georgia, 'Times New Roman', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: var(--dark);
  border-bottom: 1px solid var(--dark-soft);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
  flex-shrink: 0;
}

.brand-text {
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-text);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 200ms ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-links a:not(.btn):hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark-text);
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle.open .icon-open {
  display: none;
}

.nav-toggle.open .icon-close {
  display: block;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, transform 200ms ease;
  min-height: 44px;
  border-radius: var(--radius);
  white-space: nowrap;
}

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

.btn-filled:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--dark-text);
  border: 1.5px solid rgba(245, 235, 227, 0.35);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== Hero ===== */
.hero {
  background-color: var(--dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cellipse cx='60' cy='60' rx='11' ry='17' transform='rotate(30 60 60)' fill='none' stroke='%23f0523d' stroke-width='1' opacity='0.07'/%3E%3Cpath d='M53 49 Q60 60 67 71' stroke='%23f0523d' stroke-width='1' opacity='0.07' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  color: var(--dark-text);
  padding: 90px 24px 110px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  background: radial-gradient(ellipse at 70% 50%, rgba(240, 82, 61, 0.1), transparent 65%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 22px;
}

.hero-headline {
  font-size: clamp(2.4rem, 7.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 36px;
  max-width: 880px;
}

.hero-support {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-support p {
  font-size: 1.05rem;
  max-width: 360px;
  color: rgba(245, 235, 227, 0.78);
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== Trust (oversized proof sentence) ===== */
.trust {
  background: var(--light);
  padding: 100px 24px;
}

.trust-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.proof-sentence {
  font-size: clamp(1.5rem, 4.2vw, 2.8rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
}

.proof-sentence .highlight {
  color: var(--accent);
}

/* ===== Products (bands) ===== */
.products {
  background: var(--white);
  padding: 100px 24px;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-head h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--text);
  margin-top: 10px;
}

.bands {
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.band {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  padding: 32px 36px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.band:last-child {
  border-bottom: none;
}

.band-alt {
  background: var(--tint);
}

.band-name {
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--text);
}

.band-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.band-desc .price {
  display: inline-block;
  margin-left: 8px;
  font-weight: 700;
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* ===== Stats ===== */
.stats {
  background: var(--tint);
  padding: 80px 24px;
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-num {
  display: block;
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  margin-top: 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 400;
}

/* ===== About ===== */
.about {
  background: var(--white);
  padding: 100px 24px;
}

.about-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin: 10px 0 22px;
  color: var(--text);
}

.about-text p {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.about-image img {
  width: 100%;
  max-width: 640px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(36, 24, 18, 0.12);
}

/* ===== CTA band ===== */
.cta-band {
  background-color: var(--dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cellipse cx='60' cy='60' rx='11' ry='17' transform='rotate(30 60 60)' fill='none' stroke='%23f0523d' stroke-width='1' opacity='0.06'/%3E%3Cpath d='M53 49 Q60 60 67 71' stroke='%23f0523d' stroke-width='1' opacity='0.06' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  color: var(--dark-text);
  padding: 100px 24px;
  text-align: center;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
}

.cta-band h2 {
  font-size: clamp(1.7rem, 4.2vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 14px;
}

.cta-band p {
  font-size: 1.02rem;
  color: rgba(245, 235, 227, 0.7);
  margin-bottom: 34px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: var(--dark-text);
  padding: 72px 24px 0;
  border-top: 1px solid var(--dark-soft);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1fr;
  gap: 40px;
  padding-bottom: 52px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
  color: var(--dark-text);
}

.footer-bean {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
}

.footer-col p {
  color: rgba(245, 235, 227, 0.65);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 10px;
}

.footer-col h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(245, 235, 227, 0.65);
  text-decoration: none;
  font-size: 0.88rem;
  margin-bottom: 9px;
  transition: color 200ms ease;
}

.footer-col a:hover {
  color: var(--accent);
}

.facebook-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.facebook-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--dark-soft);
  padding: 22px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(245, 235, 227, 0.45);
}

/* ===== Scroll reveal (JS-applied) ===== */
.reveal-hidden {
  opacity: 0;
  transform: translateY(22px);
}

.reveal-shown {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms ease;
}

/* ===== Anchor offset ===== */
section[id] {
  scroll-margin-top: calc(var(--nav-height) + var(--banner-height) + 16px);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 700px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--dark-soft);
    display: none;
  }

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

  .nav-links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--dark-soft);
    font-size: 0.88rem;
  }

  .nav-links a:last-child {
    border-bottom: none;
    margin-top: 10px;
  }

  .nav-links .btn {
    width: 100%;
  }

  .hero {
    padding: 56px 20px 72px;
  }

  .hero-support {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .hero-support p {
    max-width: none;
  }

  .hero-ctas {
    width: 100%;
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .trust {
    padding: 72px 20px;
  }

  .products {
    padding: 72px 20px;
  }

  .bands {
    border-radius: var(--radius);
  }

  .band {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 26px 22px;
  }

  .band-name {
    font-size: 1.15rem;
  }

  .band-desc .price {
    display: block;
    margin-left: 0;
    margin-top: 8px;
  }

  .stats {
    padding: 64px 20px;
  }

  .stats-inner {
    gap: 44px;
  }

  .about {
    padding: 72px 20px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-image {
    order: -1;
  }

  .cta-band {
    padding: 72px 20px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .footer {
    padding: 56px 20px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
  }
}

@media (max-width: 380px) {
  .hero-headline {
    font-size: 2rem;
  }

  .proof-sentence {
    font-size: 1.35rem;
  }

  .stat-num {
    font-size: 2.6rem;
  }
}