/* ==========================================================================
   Duoccolato — Static Landing Page Stylesheet
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,100..900&family=Source+Serif+4:opsz,wght@8..60,200..900&display=swap');

/* --- Local Fonts --- */
@font-face {
  font-family: 'Nevan RUS';
  src: url('../assets/fonts/Nevan RUS.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   1. CSS Reset (minimal)
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

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

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

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

/* ==========================================================================
   2. CSS Variables
   ========================================================================== */
:root {
  --duo-chocolate: #6d3c2d;
  --duo-cream: #f6d993;
  --duo-terracotta: #c95b39;
  --duo-white: #ffffff;
  --duo-chocolate-soft: rgba(109, 60, 45, 0.12);
  --duo-terracotta-soft: rgba(201, 91, 57, 0.15);
  --duo-text: #3d2319;
  --duo-muted: #6d4a3e;
}

/* ==========================================================================
   3. Base Styles
   ========================================================================== */
body {
  font-family: 'Source Serif 4', Georgia, serif;
  color: var(--duo-text);
  background: var(--duo-white);
  line-height: 1.6;
}

.font-display {
  font-family: 'Fraunces', serif;
}

.font-nevan {
  font-family: 'Nevan RUS', sans-serif;
}

/* ==========================================================================
   4. Grain Overlay
   ========================================================================== */
.duo-grain::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   5. Navbar
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar__inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
}

@media (min-width: 1024px) {
  .navbar__inner {
    padding: 1.25rem 3rem;
  }
}

/* --- Logo --- */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.navbar__logo-text {
  font-family: 'Nevan RUS', sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.025em;
  font-size: 1.125rem;
  color: var(--duo-white);
  transition: color 0.3s ease;
}

.navbar--scrolled .navbar__logo-text {
  color: #000;
}

/* --- Nav Links --- */
.navbar__links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

@media (min-width: 1024px) {
  .navbar__links {
    display: flex;
  }
}

.navbar__link {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

.navbar__link:hover {
  color: #fff;
}

@media (min-width: 1280px) {
  .navbar__link {
    font-size: 12px;
  }
}

.navbar--scrolled .navbar__link {
  color: rgba(0, 0, 0, 0.7);
}

.navbar--scrolled .navbar__link:hover {
  color: #000;
}

/* --- CTA Button --- */
.navbar__cta {
  display: none;
  border-radius: 9999px;
  padding: 0.625rem 1.5rem;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

@media (min-width: 1024px) {
  .navbar__cta {
    display: inline-block;
  }
}

@media (min-width: 1280px) {
  .navbar__cta {
    font-size: 12px;
  }
}

.navbar__cta:hover {
  background: rgba(255, 255, 255, 0.12);
}

.navbar--scrolled .navbar__cta {
  background: #000;
  color: #fff;
  border-color: #000;
}

.navbar--scrolled .navbar__cta:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* --- Scrolled State --- */
.navbar--scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* --- Hamburger --- */
.navbar__hamburger {
  display: block;
  padding: 0.5rem;
  color: #fff;
  transition: color 0.3s ease;
}

@media (min-width: 1024px) {
  .navbar__hamburger {
    display: none;
  }
}

.navbar--scrolled .navbar__hamburger {
  color: #000;
}

/* --- Mobile Drawer --- */
.navbar__drawer {
  display: none;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.navbar__drawer--open {
  display: block;
}

.navbar__drawer ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.navbar__drawer-link {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.7);
  transition: color 0.2s ease;
}

.navbar__drawer-link:hover {
  color: #000;
}

.navbar__drawer-cta {
  display: inline-block;
  border-radius: 9999px;
  background: #000;
  color: #fff;
  padding: 0.75rem 1.75rem;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s ease;
}

.navbar__drawer-cta:hover {
  background: rgba(0, 0, 0, 0.8);
}

/* ==========================================================================
   6. Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 1.75rem 3.5rem;
  background: var(--duo-cream);
}

@media (min-width: 640px) {
  .hero {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media (min-width: 1280px) {
  .hero {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

/* Decorative warm gradient */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 70% 40%, rgba(201, 91, 57, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Subtle grid lines */
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(109, 60, 45, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 60, 45, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* Large faded circle */
.hero__circle {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(109, 60, 45, 0.06);
  top: 50%;
  right: -5%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

/* Grid layout */
.hero__grid {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero__grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 3rem;
    align-items: center;
  }
}

@media (min-width: 1280px) {
  .hero__grid {
    gap: 4rem;
  }
}

/* Order: on mobile image first (order 1), text second (order 2).
   On desktop, text left (order 1), image right (order 2). */
@media (min-width: 1024px) {
  .hero__text { order: 1 !important; }
  .hero__visual { order: 2 !important; }
}

/* --- Left Column --- */
.hero__overline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__overline-dash {
  width: 2rem;
  height: 2px;
  background: var(--duo-terracotta);
}

.hero__overline-text {
  font-family: 'Fraunces', serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--duo-chocolate);
}

.hero__title {
  margin-bottom: 1.5rem;
  line-height: 0.9;
}

.hero__title-solid {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  color: var(--duo-chocolate);
  font-size: clamp(4.2rem, 10vw, 10.5rem);
}

.hero__title-outline {
  display: block;
  font-family: 'Fraunces', serif;
  font-weight: 900;
  -webkit-text-stroke: 2px var(--duo-terracotta);
  color: transparent;
  font-size: clamp(4.2rem, 10vw, 10.5rem);
}

.hero__divider {
  width: 4rem;
  height: 3px;
  background: var(--duo-terracotta);
  margin-bottom: 1.5rem;
}

.hero__description {
  font-size: 1.125rem;
  color: var(--duo-muted);
  line-height: 1.7;
  max-width: 32rem;
  margin-bottom: 2rem;
}

/* CTA Buttons */
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: var(--duo-chocolate);
  color: var(--duo-cream);
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: background 0.2s ease;
}

.hero__cta-primary:hover {
  background: var(--duo-text);
}

.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1.5px solid var(--duo-chocolate);
  color: var(--duo-chocolate);
  padding: 0.875rem 2rem;
  font-weight: 600;
  font-size: 0.9375rem;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.hero__cta-secondary:hover {
  background: var(--duo-chocolate);
  color: var(--duo-cream);
}

/* Stats Row */
.hero__stats {
  display: flex;
  gap: 2rem;
}

.hero__stat-number {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 1.75rem;
  color: var(--duo-chocolate);
}

.hero__stat-label {
  font-size: 0.75rem;
  color: var(--duo-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Right Column --- */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 3rem;
}

@media (min-width: 1024px) {
  .hero__visual {
    margin-top: 0;
  }
}

/* Rotating rings */
.hero__ring-outer {
  position: absolute;
  width: 110%;
  height: 110%;
  border: 1px dashed rgba(109, 60, 45, 0.15);
  border-radius: 50%;
  animation: ring-rotate 32s linear infinite;
}

.hero__ring-inner {
  position: absolute;
  width: 90%;
  height: 90%;
  border: 1px dashed rgba(201, 91, 57, 0.12);
  border-radius: 50%;
  animation: ring-counter 22s linear infinite;
}

/* Organic blob image */
.hero__image {
  width: 18rem;
  height: 18rem;
  border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%;
  overflow: hidden;
  background: var(--duo-chocolate-soft);
  position: relative;
  z-index: 1;
}

@media (min-width: 640px) {
  .hero__image {
    width: 22rem;
    height: 22rem;
  }
}

@media (min-width: 1024px) {
  .hero__image {
    width: 26rem;
    height: 26rem;
  }
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating badges */
.hero__badge {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--duo-chocolate);
}

.hero__badge--top {
  top: 5%;
  right: 0;
}

.hero__badge--bottom {
  bottom: 10%;
  left: -5%;
  background: var(--duo-chocolate);
  color: var(--duo-cream);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--duo-muted);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero__scroll-line {
  width: 1px;
  height: 2rem;
  background: var(--duo-chocolate);
  opacity: 0.3;
}

/* ==========================================================================
   7. Loading Screen
   ========================================================================== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
  transition: opacity 0.9s ease-in-out;
}

.loader--done {
  opacity: 0;
  pointer-events: none;
}

.loader__title {
  font-family: 'Nevan RUS', sans-serif;
  font-size: 2rem;
  color: var(--duo-cream);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  animation: loader-text-in 0.6s ease 0.2s both;
}

.loader__progress {
  width: 8rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1px;
  margin: 1.5rem 0;
  overflow: hidden;
}

.loader__bar {
  height: 100%;
  width: 0%;
  background: var(--duo-cream);
  border-radius: 1px;
  animation: loader-progress 1.4s ease-out 0.1s forwards;
}

.loader__subtitle {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  animation: loader-text-in 0.5s ease 0.5s both;
}

@keyframes loader-progress {
  from { width: 0%; }
  to { width: 100%; }
}

@keyframes loader-text-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   8. Social Proof
   ========================================================================== */
.social-proof {
  background-color: rgba(246, 217, 147, 0.6);
  padding: 4rem 1.5rem;
}

@media (min-width: 1024px) {
  .social-proof {
    padding: 5rem 1.5rem;
  }
}

.social-proof__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .social-proof__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.social-proof__stat {
  text-align: center;
}

.social-proof__number {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 2.25rem;
  color: var(--duo-chocolate);
}

@media (min-width: 640px) {
  .social-proof__number {
    font-size: 3rem;
  }
}

.social-proof__label {
  font-family: 'Fraunces', serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--duo-muted);
  margin-top: 0.5rem;
}

/* ==========================================================================
   9. What Is Duoccolato
   ========================================================================== */
.what-is {
  background: var(--duo-white);
  padding: 5rem 1.5rem;
}

@media (min-width: 1024px) {
  .what-is {
    padding: 7rem 3rem;
  }
}

.what-is__grid {
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .what-is__grid {
    display: grid;
    grid-template-columns: 58% 42%;
    gap: 4rem;
    align-items: center;
  }
}

.what-is__image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%;
  background: var(--duo-chocolate-soft);
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .what-is__image-wrap {
    margin-bottom: 0;
  }
}

.what-is__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.what-is__overline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--duo-terracotta);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.what-is__title {
  font-family: 'Fraunces', serif;
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--duo-chocolate);
  margin-bottom: 1.25rem;
}

@media (min-width: 1024px) {
  .what-is__title {
    font-size: 2.25rem;
  }
}

.what-is__text {
  color: var(--duo-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ==========================================================================
   10. Why Soy
   ========================================================================== */
.why-soy {
  background: var(--duo-chocolate);
  color: var(--duo-cream);
  overflow: hidden;
  position: relative;
  padding: 5rem 1.5rem;
}

@media (min-width: 1024px) {
  .why-soy {
    padding: 7rem 3rem;
  }
}

/* Dot texture */
.why-soy::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(246,217,147,0.05)'/%3E%3C/svg%3E");
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}

/* Large decorative "4" */
.why-soy__big-number {
  display: none;
  position: absolute;
  top: 50%;
  right: -2%;
  transform: translateY(-50%);
  font-family: 'Fraunces', serif;
  font-size: 28rem;
  font-weight: 900;
  -webkit-text-stroke: 1px rgba(246, 217, 147, 0.04);
  color: transparent;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

@media (min-width: 1024px) {
  .why-soy__big-number {
    display: block;
  }
}

.why-soy__inner {
  position: relative;
  z-index: 1;
  max-width: 64rem;
  margin: 0 auto;
}

/* Header */
.why-soy__overline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--duo-terracotta);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.why-soy__title {
  font-family: 'Fraunces', serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .why-soy__title {
    font-size: 2.25rem;
  }
}

.why-soy__callout {
  font-size: 1.0625rem;
  color: rgba(246, 217, 147, 0.7);
  line-height: 1.7;
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

/* Cards Grid */
.why-soy__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .why-soy__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-soy__card {
  border-radius: 1rem;
  padding: 1.5rem;
  background: rgba(246, 217, 147, 0.05);
  border: 1px solid rgba(246, 217, 147, 0.08);
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.why-soy__card:hover {
  background: rgba(246, 217, 147, 0.09);
  border-color: rgba(201, 91, 57, 0.35);
  transform: translateY(-3px);
}

/* Left accent bar on hover */
.why-soy__card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--duo-terracotta);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  transform-origin: bottom;
}

.why-soy__card:hover::before {
  transform: scaleY(1);
}

/* Card icon */
.why-soy__card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: rgba(201, 91, 57, 0.15);
  color: var(--duo-terracotta);
  margin-bottom: 0.75rem;
}

/* Card number badge */
.why-soy__card-number {
  font-family: 'Fraunces', serif;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--duo-terracotta);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.why-soy__card-title {
  font-family: 'Fraunces', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--duo-cream);
  margin-bottom: 0.5rem;
}

.why-soy__card-desc {
  font-size: 0.875rem;
  color: rgba(246, 217, 147, 0.55);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* Stat chip */
.why-soy__card-chip {
  display: inline-block;
  font-size: 0.6875rem;
  border: 1px solid rgba(201, 91, 57, 0.4);
  color: var(--duo-terracotta);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Bottom fact strip */
.why-soy__facts {
  border-top: 1px solid rgba(246, 217, 147, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.why-soy__fact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(246, 217, 147, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.why-soy__fact-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--duo-terracotta);
  opacity: 0.6;
}

/* ==========================================================================
   11. Products
   ========================================================================== */
.products {
  background: var(--duo-white);
  padding: 5rem 1.5rem;
}

@media (min-width: 1024px) {
  .products {
    padding: 7rem 3rem;
  }
}

.products__inner {
  max-width: 64rem;
  margin: 0 auto;
}

.products__overline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--duo-terracotta);
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-align: center;
}

.products__title {
  font-family: 'Fraunces', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--duo-chocolate);
  margin-bottom: 2.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .products__title {
    font-size: 2.25rem;
  }
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Product Card */
.products__card {
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.products__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* Hover ring */
.products__card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.5rem;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  pointer-events: none;
}

.products__card:hover::after {
  border-color: var(--duo-terracotta);
}

/* Badge */
.products__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border-radius: 9999px;
  background: var(--duo-chocolate);
  color: var(--duo-cream);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Product Image */
.products__image {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products__card:hover .products__image {
  transform: scale(1.05);
}

.products__image img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.products__name {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--duo-chocolate);
  margin-bottom: 0.5rem;
}

.products__desc {
  font-size: 0.875rem;
  color: var(--duo-muted);
  line-height: 1.5;
}

/* ==========================================================================
   12. How To Prepare
   ========================================================================== */
.how-to {
  background: #1a0c07;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .how-to {
    padding: 7rem 3rem;
  }
}

/* Dot grid background */
.how-to::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='0.5' fill='rgba(255,255,255,0.06)'/%3E%3C/svg%3E");
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* Subtle radial glow */
.how-to::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(201, 91, 57, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.how-to__inner {
  position: relative;
  z-index: 1;
  max-width: 64rem;
  margin: 0 auto;
}

/* Header */
.how-to__overline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--duo-terracotta);
  margin-bottom: 0.75rem;
  font-weight: 600;
  text-align: center;
}

.how-to__title {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  color: #fff;
  margin-bottom: 3rem;
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
}

/* Progress line (desktop) */
.how-to__progress {
  display: none;
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 3rem;
  border-radius: 1px;
}

@media (min-width: 640px) {
  .how-to__progress {
    display: block;
  }
}

.how-to__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--duo-terracotta);
  border-radius: 1px;
}

.how-to__progress-fill--visible {
  animation: progress-fill 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

@keyframes progress-fill {
  from { width: 0%; }
  to { width: 100%; }
}

/* Steps Grid */
.how-to__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
}

@media (min-width: 640px) {
  .how-to__steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* Mobile vertical line */
.how-to__steps::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

@media (min-width: 640px) {
  .how-to__steps::before {
    display: none;
  }
}

/* Step */
.how-to__step {
  position: relative;
  padding-left: 3rem;
}

@media (min-width: 640px) {
  .how-to__step {
    padding-left: 0;
    text-align: center;
  }
}

/* Step dot (desktop) */
.how-to__step-dot {
  display: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  margin: 0 auto 1.5rem;
  position: relative;
}

@media (min-width: 640px) {
  .how-to__step-dot {
    display: block;
  }
}

.how-to__step-dot::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--duo-terracotta);
}

.how-to__step-number {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 900;
  -webkit-text-stroke: 1px var(--duo-terracotta);
  color: transparent;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.how-to__step-title {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.how-to__step:hover .how-to__step-title {
  color: var(--duo-terracotta);
}

.how-to__step-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

/* Detail chip */
.how-to__step-chip {
  display: inline-block;
  font-size: 0.6875rem;
  border: 1px solid rgba(201, 91, 57, 0.4);
  color: var(--duo-terracotta);
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Bottom note */
.how-to__note {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

/* ==========================================================================
   13. Testimonials
   ========================================================================== */
.testimonials {
  background: var(--duo-white);
  padding: 5rem 0;
  overflow: hidden;
}

.testimonials__header {
  text-align: center;
  padding: 0 1.5rem;
  margin-bottom: 3rem;
}

.testimonials__overline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--duo-terracotta);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.testimonials__title {
  font-family: 'Fraunces', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--duo-chocolate);
  margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
  .testimonials__title {
    font-size: 2.25rem;
  }
}

.testimonials__desc {
  font-size: 0.9375rem;
  color: var(--duo-muted);
  max-width: 28rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* Scroll container */
.testimonials__row {
  position: relative;
  margin-bottom: 1.5rem;
}

/* Edge fades */
.testimonials__row::before,
.testimonials__row::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  z-index: 2;
  pointer-events: none;
}

.testimonials__row::before {
  left: 0;
  background: linear-gradient(to right, var(--duo-white), transparent);
}

.testimonials__row::after {
  right: 0;
  background: linear-gradient(to left, var(--duo-white), transparent);
}

/* Track */
.testimonials__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: duo-testimonials-scroll 40s linear infinite;
}

.testimonials__track:hover {
  animation-play-state: paused;
}

.testimonials__track--reverse {
  animation-direction: reverse;
}

@keyframes duo-testimonials-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Card */
.testimonials__card {
  width: 300px;
  flex-shrink: 0;
  border-radius: 1.5rem;
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

@media (min-width: 640px) {
  .testimonials__card {
    width: 340px;
  }
}

/* Stars */
.testimonials__stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 0.75rem;
}

.testimonials__star {
  width: 16px;
  height: 16px;
  color: var(--duo-terracotta);
}

/* Quote mark */
.testimonials__quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--duo-terracotta);
  opacity: 0.3;
  margin-bottom: 0.25rem;
}

.testimonials__quote {
  font-size: 0.875rem;
  color: var(--duo-text);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Author */
.testimonials__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonials__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--duo-cream), var(--duo-terracotta));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
}

.testimonials__name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--duo-text);
}

.testimonials__city {
  font-size: 0.75rem;
  color: var(--duo-muted);
}

/* ==========================================================================
   14. Where To Buy
   ========================================================================== */
.where-to-buy {
  background: var(--duo-chocolate);
  color: var(--duo-cream);
  padding: 5rem 1.5rem;
}

@media (min-width: 1024px) {
  .where-to-buy {
    padding: 7rem 3rem;
  }
}

.where-to-buy__inner {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.where-to-buy__title {
  font-family: 'Fraunces', serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

@media (min-width: 1024px) {
  .where-to-buy__title {
    font-size: 2.25rem;
  }
}

.where-to-buy__desc {
  font-size: 0.9375rem;
  color: rgba(246, 217, 147, 0.7);
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Form */
.where-to-buy__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .where-to-buy__form {
    flex-direction: row;
  }
}

.where-to-buy__input {
  flex: 1;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--duo-cream);
  padding: 1rem 1.5rem;
  font-size: 0.9375rem;
  font-family: 'Source Serif 4', Georgia, serif;
  outline: none;
  transition: border-color 0.2s ease;
}

.where-to-buy__input::placeholder {
  color: rgba(246, 217, 147, 0.6);
}

.where-to-buy__input:focus {
  border-color: var(--duo-terracotta);
}

.where-to-buy__input--error {
  border-color: #f87171;
}

.where-to-buy__btn {
  border-radius: 9999px;
  background: var(--duo-terracotta);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

.where-to-buy__btn:hover {
  opacity: 0.85;
}

/* Error message */
.where-to-buy__error {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #fca5a5;
  font-size: 0.8125rem;
  margin-top: 0.5rem;
}

.where-to-buy__error-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Success state */
.where-to-buy__success {
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  text-align: center;
}

.where-to-buy__success-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  color: var(--duo-cream);
}

.where-to-buy__success-title {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.where-to-buy__success-text {
  font-size: 0.875rem;
  color: rgba(246, 217, 147, 0.7);
}

/* ==========================================================================
   15. Footer
   ========================================================================== */
.footer {
  border-top: 1px solid rgba(109, 60, 45, 0.15);
  background: var(--duo-white);
  padding: 2.5rem 1.5rem;
}

.footer__inner {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Left */
.footer__left {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.footer__logo {
  font-family: 'Nevan RUS', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--duo-chocolate);
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--duo-muted);
}

/* Right */
.footer__right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 0.8125rem;
  color: var(--duo-muted);
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--duo-terracotta);
}

.footer__socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__social {
  width: 20px;
  height: 20px;
  color: var(--duo-muted);
  transition: color 0.2s ease;
}

.footer__social:hover {
  color: var(--duo-terracotta);
}

/* ==========================================================================
   16. Animations — Scroll Reveal
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ==========================================================================
   17. Animations — Rotating Rings
   ========================================================================== */
@keyframes ring-rotate {
  to { transform: rotate(360deg); }
}

@keyframes ring-counter {
  to { transform: rotate(-360deg); }
}

/* ==========================================================================
   18. Utility Classes
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
