/* ============================================
   SHIRAZVINO.RU — Стили лендинга о вине Шираз
   ============================================ */

/* --- Reset & Variables --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --clr-wine: #4a0e2e;
  --clr-wine-deep: #2d0a1b;
  --clr-purple: #3a1055;
  --clr-purple-light: #6b3fa0;
  --clr-black: #0d0d0d;
  --clr-graphite: #1a1a2e;
  --clr-graphite-light: #2a2a3e;
  --clr-terracotta: #c4956a;
  --clr-gold: #d4a84b;
  --clr-gold-light: #f0d48a;
  --clr-cream: #f5f0e8;
  --clr-white: #fafafa;
  --clr-text: #e8e0d4;
  --clr-text-muted: #9a8f82;

  --ff-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fs-hero: clamp(2.5rem, 6vw, 5rem);
  --fs-h2: clamp(1.8rem, 4vw, 3rem);
  --fs-h3: clamp(1.2rem, 2.5vw, 1.6rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.1rem);
  --fs-small: 0.875rem;

  --container-width: 1350px;
  --section-padding: clamp(60px, 10vw, 30px);
  --border-radius: 12px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--clr-text);
  background: var(--clr-black);
  overflow-x: hidden;
}

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

a {
  color: var(--clr-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--clr-gold-light);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Canvas (particles) --- */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* --- Reveal animation --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

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

/* =====================
   HEADER
   ===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--clr-white);
  text-decoration: none;
}

.logo-icon {
  font-size: 1.6rem;
  max-height: 70px;      /* желаемая высота логотипа */
  width: auto;           /* ширина подстроится пропорционально */
  object-fit: contain;   /* сохраняем пропорции, не обрезая изображение */
}

.logo-text {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-accent {
  color: var(--clr-gold);
}

.header__nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-link {
  color: var(--clr-text-muted);
  font-size: var(--fs-small);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-gold);
  transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Burger */
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.header__burger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--clr-white);
  transition: var(--transition);
  border-radius: 2px;
}

.header__burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__burger.active span:nth-child(2) {
  opacity: 0;
}

.header__burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* =====================
   HERO SLIDER
   ===================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slider__slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 10, 27, 0.85) 0%,
    rgba(58, 16, 85, 0.7) 50%,
    rgba(13, 13, 13, 0.8) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.slide-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-hero);
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.slide-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--clr-cream);
  font-weight: 300;
  line-height: 1.6;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
}

.slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.3);
  color: var(--clr-white);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.slider__btn:hover {
  background: rgba(196, 149, 106, 0.4);
  border-color: var(--clr-gold);
}

.slider__btn--prev {
  left: 24px;
}

.slider__btn--next {
  right: 24px;
}

.slider__dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.slider__dot.active {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  transform: scale(1.2);
}

/* =====================
   SECTIONS (common)
   ===================== */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section--about {
  background: linear-gradient(180deg, var(--clr-black) 0%, var(--clr-graphite) 100%);
}

.section--vs {
  background: var(--clr-graphite);
}

.section--aromas {
  background: linear-gradient(180deg, var(--clr-graphite) 0%, var(--clr-wine-deep) 100%);
}

.section--history {
  background: var(--clr-wine-deep);
}

.section--geography {
  background: linear-gradient(180deg, var(--clr-wine-deep) 0%, var(--clr-graphite) 100%);
}

.section--gastronomy {
  background: var(--clr-graphite);
}

.section--producers {
  background: linear-gradient(180deg, var(--clr-graphite) 0%, var(--clr-black) 100%);
}

.section--tasting {
  background: var(--clr-black);
}

.section--reviews {
  background: linear-gradient(180deg, var(--clr-black) 0%, var(--clr-wine-deep) 100%);
}

.section--faq {
  background: var(--clr-wine-deep);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--clr-gold);
  margin-bottom: 12px;
  padding: 6px 16px;
  border: 1px solid rgba(212, 168, 75, 0.3);
  border-radius: 20px;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 16px;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-terracotta));
  margin: 0 auto;
  border-radius: 2px;
}

/* =====================
   ABOUT SECTION
   ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--clr-text);
}

.about-text strong {
  color: var(--clr-gold);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  background: rgba(212, 168, 75, 0.08);
  border-color: rgba(212, 168, 75, 0.2);
  transform: translateY(-4px);
}

.stat-number {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =====================
   VS SECTION
   ===================== */
.vs-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--clr-text-muted);
}

.vs-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}

.vs-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.vs-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.vs-card--syrah:hover {
  border-color: rgba(107, 63, 160, 0.4);
  background: rgba(107, 63, 160, 0.08);
}

.vs-card--shiraz:hover {
  border-color: rgba(196, 149, 106, 0.4);
  background: rgba(196, 149, 106, 0.08);
}

.vs-card__icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.bottle-svg {
  width: 60px;
  height: 150px;
  transition: transform var(--transition);
}

.vs-card:hover .bottle-svg {
  transform: scale(1.2) rotate(-2deg);
}

.vs-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  color: var(--clr-white);
  margin-bottom: 4px;
}

.vs-flag {
  font-size: 1.2rem;
}

.vs-card__origin {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  margin-bottom: 20px;
}

.vs-card__features {
  text-align: left;
}

.vs-card__features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: var(--fs-small);
  color: var(--clr-text);
  padding-left: 20px;
  position: relative;
}

.vs-card--syrah .vs-card__features li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--clr-purple-light);
  font-size: 0.6rem;
  top: 10px;
}

.vs-card--shiraz .vs-card__features li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--clr-terracotta);
  font-size: 0.6rem;
  top: 10px;
}

.vs-divider-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-purple), var(--clr-wine));
  border: 2px solid var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--clr-gold);
  box-shadow: 0 0 30px rgba(212, 168, 75, 0.3);
}

/* =====================
   AROMAS SECTION
   ===================== */
.aroma-wheel-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.aroma-wheel {
  position: relative;
  width: 280px;
  height: 280px;
}

.aroma-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-wine), var(--clr-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-gold);
  z-index: 2;
  box-shadow: 0 0 40px rgba(74, 14, 46, 0.6);
}

.aroma-ring--inner {
  position: absolute;
  inset: 0;
}

.aroma-segment {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  transform: rotate(var(--angle)) translateY(-100px) rotate(calc(-1 * var(--angle)));
  background: var(--color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.aroma-segment:hover {
  transform: rotate(var(--angle)) translateY(-100px) rotate(calc(-1 * var(--angle))) scale(1.15);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

.aroma-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.aroma-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.aroma-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 168, 75, 0.3);
  transform: translateY(-4px);
}

.aroma-card__icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.aroma-card h4 {
  font-family: var(--ff-heading);
  font-size: 1rem;
  color: var(--clr-white);
  margin-bottom: 4px;
}

.aroma-card p {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
}

/* =====================
   HISTORY / TIMELINE
   ===================== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--clr-gold), var(--clr-terracotta), var(--clr-purple));
}

.timeline__item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--clr-gold);
  border: 3px solid var(--clr-wine-deep);
  box-shadow: 0 0 15px rgba(212, 168, 75, 0.4);
}

.timeline__date {
  font-family: var(--ff-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-gold);
  margin-bottom: 6px;
}

.timeline__content h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  color: var(--clr-white);
  margin-bottom: 8px;
}

.timeline__content p {
  color: var(--clr-text);
  font-size: var(--fs-body);
}

/* =====================
   GEOGRAPHY
   ===================== */
.geo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.geo-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 30px;
  transition: var(--transition);
}

.geo-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 168, 75, 0.3);
  transform: translateY(-4px);
}

.geo-card__flag {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.geo-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  color: var(--clr-white);
  margin-bottom: 4px;
}

.geo-card__region {
  font-size: var(--fs-small);
  color: var(--clr-gold);
  margin-bottom: 12px;
}

.geo-card__desc {
  color: var(--clr-text-muted);
  font-size: var(--fs-small);
  line-height: 1.7;
}

/* =====================
   GASTRONOMY
   ===================== */
.gastro-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
}

.gastro-hero__image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.gastro-hero__image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gastro-hero__image:hover img {
  transform: scale(1.05);
}

.gastro-hero__content h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  color: var(--clr-white);
  margin-bottom: 16px;
}

.gastro-hero__content p {
  color: var(--clr-text);
  margin-bottom: 12px;
}

.gastro-pairs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

.gastro-pair {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--border-radius);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}

.gastro-pair:hover {
  background: rgba(196, 149, 106, 0.08);
  border-color: rgba(196, 149, 106, 0.3);
  transform: translateY(-4px);
}

.gastro-pair__icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.gastro-pair h4 {
  font-family: var(--ff-heading);
  font-size: 1rem;
  color: var(--clr-white);
  margin-bottom: 6px;
}

.gastro-pair p {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
}

/* =====================
   PRODUCERS
   ===================== */
.producers-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.producer-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 28px 32px;
  transition: var(--transition);
}

.producer-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 168, 75, 0.3);
  transform: translateX(8px);
}

.producer-card__rank {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-gold);
  opacity: 0.5;
  min-width: 50px;
  text-align: center;
}

.producer-card__info h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  color: var(--clr-white);
  margin-bottom: 4px;
}

.producer-card__region {
  font-size: var(--fs-small);
  color: var(--clr-terracotta);
  margin-bottom: 8px;
}

.producer-card__desc {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
  margin-bottom: 8px;
}

.producer-card__rating {
  color: var(--clr-gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.producer-card__price {
  text-align: center;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.price-value {
  display: block;
  font-family: var(--ff-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-gold);
}

.price-label {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =====================
   TASTING
   ===================== */
.tasting-steps {
  max-width: 800px;
  margin: 0 auto;
}

.tasting-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  margin-bottom: 36px;
  align-items: start;
}

.tasting-step__number {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--clr-gold);
  opacity: 0.3;
  line-height: 1;
}

.tasting-step__content h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  color: var(--clr-white);
  margin-bottom: 8px;
}

.tasting-step__content p {
  color: var(--clr-text);
  font-size: var(--fs-body);
}

/* =====================
   REVIEWS CAROUSEL
   ===================== */
.reviews-carousel {
  position: relative;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card {
  min-width: 100%;
  padding: 50px 60px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
}

.review-card__quote {
  font-family: var(--ff-heading);
  font-size: 4rem;
  color: var(--clr-gold);
  opacity: 0.4;
  line-height: 0.5;
  margin-bottom: 20px;
}

.review-card__text {
  font-family: var(--ff-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--clr-cream);
  line-height: 1.8;
  margin-bottom: 30px;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-card__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-purple), var(--clr-wine));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--clr-gold);
}

.review-card__name {
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 2px;
}

.review-card__role {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
}

.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.reviews-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--clr-white);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-btn:hover {
  background: rgba(212, 168, 75, 0.2);
  border-color: var(--clr-gold);
}

/* =====================
   FAQ
   ===================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-size: 1.1rem;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--clr-gold);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--clr-gold);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: var(--clr-text-muted);
  line-height: 1.8;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--clr-black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 30px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand .logo-text {
  font-size: 1.2rem;
}

.footer__tagline {
  color: var(--clr-text-muted);
  font-size: var(--fs-small);
  margin-top: 10px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  color: var(--clr-text-muted);
  font-size: var(--fs-small);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--clr-gold);
}

.footer__disclaimer p {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  opacity: 0.6;
  line-height: 1.8;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: var(--clr-text-muted);
  opacity: 0.5;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .header__nav {
    gap: 16px;
  }

  .nav-link {
    font-size: 0.75rem;
  }

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

  .vs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .vs-divider-center {
    order: -1;
  }

  .gastro-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer__links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transition: right var(--transition);
    z-index: 1000;
  }

  .header__nav.open {
    right: 0;
  }

  .header__burger {
    display: flex;
  }

  .nav-link {
    font-size: 1rem;
  }

  .slider__btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .slider__btn--prev {
    left: 12px;
  }

  .slider__btn--next {
    right: 12px;
  }

  .producer-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .producer-card__rank {
    min-width: unset;
  }

  .producer-card__price {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
  }

  .review-card {
    padding: 30px 24px;
  }

  .review-card__text {
    font-size: 1rem;
  }

  .tasting-step {
    grid-template-columns: 60px 1fr;
    gap: 16px;
  }

  .tasting-step__number {
    font-size: 2rem;
  }

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

  .aroma-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}

@media (max-width: 480px) {
  .slide-title {
    font-size: 2.2rem;
  }

  .slide-subtitle {
    font-size: 0.95rem;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .gastro-pairs {
    grid-template-columns: 1fr 1fr;
  }

  .aroma-wheel {
    width: 220px;
    height: 220px;
  }

  .aroma-segment {
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    transform: rotate(var(--angle)) translateY(-80px) rotate(calc(-1 * var(--angle)));
    font-size: 0.6rem;
  }

  .aroma-segment:hover {
    transform: rotate(var(--angle)) translateY(-80px) rotate(calc(-1 * var(--angle))) scale(1.15);
  }

  .aroma-center {
    width: 70px;
    height: 70px;
    font-size: 0.85rem;
  }
}
