/* ==========================================================================
   BAGATOMEDU UNIFIED DESIGN SYSTEM (Багато меду — Сімейна пасіка)
   Master Stylesheet for All Pages (index.html, index2.html, articles.html)
   Author: Alex | Apogentis Performance Marketing & Web Architecture
   ========================================================================== */

/* 1. TYPOGRAPHY & GOOGLE FONTS (SINGLE CANONICAL IMPORT) */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,600;1,700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* 2. DESIGN TOKENS & COLOR SYSTEM */
:root {
  /* Fonts */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Honey & Amber Gold Palette */
  --gold-50: #FFFBEB;
  --gold-100: #FEF3C7;
  --gold-200: #FDE68A;
  --gold-300: #FCD34D;
  --gold-400: #FBBF24;
  --gold-500: #F59E0B;
  --gold-600: #D97706;
  --gold-700: #B45309;
  --gold-800: #92400E;
  --gold-900: #78350F;
  --gold-foil: linear-gradient(135deg, #FDE68A 0%, #F59E0B 50%, #B45309 100%);
  --gold-gradient: linear-gradient(135deg, #E5A93C 0%, #C98A2C 50%, #9B631B 100%);
  --gold-glow: rgba(245, 158, 11, 0.35);

  /* Deep Forest & Dark Emerald Palette */
  --forest-950: #07160F;
  --forest-900: #0A2318;
  --forest-850: #122F22;
  --forest-800: #183D2D;
  --forest-card: #15221B;
  --forest-input: rgba(6, 23, 15, 0.85);

  /* Aliases for cross-page compatibility */
  --dark-emerald-950: var(--forest-950);
  --dark-emerald-900: var(--forest-900);
  --dark-emerald-850: var(--forest-850);
  --dark-emerald-800: var(--forest-800);
  --dark-emerald-700: #1E4D38;
  --dark-forest-950: var(--forest-950);
  --dark-forest-900: var(--forest-900);
  --dark-forest-850: var(--forest-850);

  /* Warm Honey Hero Palette */
  --amber-hero-top: #271406;
  --amber-hero-bot: #170C04;
  --amber-hero: #271406;
  --amber-sub: rgba(254, 243, 199, 0.92);

  /* Light Linen & Warm Wax Canvas */
  --linen-50: #FDFBF7;
  --linen-100: #F6F1E8;
  --linen-200: #EADFCF;

  /* Ink & High-Contrast Text */
  --ink-900: #121815;
  --ink-700: #3F4943;
  --ink-500: #6B7770;
  --white: #FFFFFF;

  /* Borders */
  --border-light: rgba(17, 27, 21, 0.09);
  --border-emerald: rgba(217, 119, 6, 0.22);
  --border-gold: rgba(245, 158, 11, 0.3);
  --border-gold-strong: rgba(245, 158, 11, 0.55);

  /* Border Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-card: 0 12px 32px rgba(17, 27, 21, 0.08);
  --shadow-dark: 0 20px 48px rgba(0, 0, 0, 0.45);
  --shadow-glow: 0 8px 24px rgba(217, 119, 6, 0.35);

  /* Section Spacing (Halved per user instruction) */
  --section-padding-y: 40px;
  --section-margin-gap: 28px;
}

/* 3. BASE RESET & GLOBAL DEFAULTS */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ui);
  background-color: var(--linen-50);
  color: var(--ink-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

a {
  color: inherit;
}

/* Headings Typography Enforcements */
h1, h2, h3, h4,
.font-display,
.section-title-serif,
.hero-title,
.hero-headline,
.brand-name,
.article-title-link,
.article-modal-card h2,
.product-title,
.cta-catalog-banner h3 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

/* UI Typography Enforcements */
p, span, a, button, input, label, select, textarea,
.font-ui,
.section-subtitle-text,
.article-excerpt-text,
.article-modal-body,
.geo-spec-item,
.trust-text-block p {
  font-family: var(--font-ui);
}

/* 4. TOP ANNOUNCEMENT & LOCATION BAR */
.top-notice-bar,
.top-control-bar {
  background: #1C0F06;
  color: var(--gold-200);
  padding: 8px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(245, 158, 11, 0.22);
}

.top-notice-inner,
.top-control-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-location-text,
.top-info-notice {
  font-size: 0.82rem;
  color: var(--gold-200);
}

.top-location-text strong,
.top-info-notice strong {
  color: var(--gold-400);
  font-weight: 700;
}

.version-switch-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
}

.version-switch-tag a {
  color: var(--gold-300);
  text-decoration: underline;
  transition: color 0.2s;
}

.version-switch-tag a:hover {
  color: var(--white);
}

/* Theme selector pills on index2 */
.theme-selector-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.theme-label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 4px;
}

.btn-theme-pill {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-theme-pill:hover,
.btn-theme-pill.active {
  background: var(--gold-500);
  color: #1C0F06;
  border-color: var(--gold-400);
  font-weight: 700;
}

/* 5. SLIM STICKY NAVBAR (STANDARDIZED ACROSS ALL PAGES) */
header.site-navbar {
  background: rgba(10, 35, 24, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.28);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 10px 0;
  transition: all 0.25s ease;
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.brand-cluster {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

/* Slim logo in navbar: height 36px-40px */
.brand-logo-img,
.brand-nav-logo-icon {
  height: 38px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.85));
  transition: transform 0.2s ease;
}

.brand-logo-img:hover,
.brand-nav-logo-icon:hover {
  transform: scale(1.03);
}

.brand-nav-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFBEB;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-badge {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--gold-300);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-left: 1px solid rgba(245, 158, 11, 0.35);
  padding-left: 12px;
  margin-left: 4px;
  display: block;
  line-height: 1.2;
}

.nav-links-menu,
.site-nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link,
.site-nav-menu a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-link:hover,
.site-nav-menu a:hover,
.nav-link.active {
  color: var(--gold-400);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-200);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  border: 1px solid rgba(245, 158, 11, 0.3);
  transition: all 0.2s ease;
}

.nav-phone-chip:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--gold-400);
  color: var(--white);
}

.btn-nav-order,
.btn-nav-action {
  background: var(--gold-foil);
  color: #1C0F06;
  font-family: var(--font-ui);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 8px 20px;
  border: none;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.3);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-nav-order:hover,
.btn-nav-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.45);
}

/* 6. HERO SECTION & PROMINENT BRAND LOGO CARD */
.hero-section {
  background: linear-gradient(180deg, var(--amber-hero-top) 0%, var(--amber-hero-bot) 100%);
  color: var(--white);
  padding: 40px 0 48px;
  position: relative;
}

.hero-grid,
.hero-layout-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 40px;
  align-items: center;
}

/* HERO HEADER ROW & LOGO ON CONTRASTING PLATE */
.hero-header-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 18px;
}

.hero-logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hero-logo-plate {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFFFFF 0%, #FEF8E7 100%);
  border: 2.5px solid var(--gold-400);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  flex-shrink: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-logo-plate:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5), 0 0 18px rgba(245, 158, 11, 0.45);
}

.hero-logo-plate .hero-brand-logo-img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  filter: none;
  display: block;
}

.hero-brand-logo-card {
  margin-bottom: 0;
  display: inline-flex;
}

.hero-brand-logo-img {
  height: 98px;
  width: auto;
  max-width: 340px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.65)) drop-shadow(0 0 4px rgba(245, 158, 11, 0.3));
  transition: transform 0.25s ease;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-400);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0;
  text-align: center;
  white-space: nowrap;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 2px;
  background: var(--gold-400);
  opacity: 0.7;
  border-radius: 1px;
}

.hero-cta-action-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-500);
  color: #1C0F06;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.btn-hero-cta:hover {
  background: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.55);
}

.hero-cta-hint {
  font-size: 0.88rem;
  color: var(--amber-sub);
  font-weight: 500;
}

.hero-title,
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  font-weight: 700;
  color: #FFFBEB;
  margin-bottom: 0;
}

.hero-subtitle,
.hero-narrative {
  font-size: 1.04rem;
  line-height: 1.62;
  color: var(--amber-sub);
  margin-bottom: 20px;
  max-width: 620px;
}

/* GEO & AI ANSWER-FIRST QUICK SUMMARY BOX */
.geo-answer-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.28);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 22px;
}

.geo-answer-box-title {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-400);
  margin-bottom: 8px;
  display: block;
}

.geo-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  font-size: 0.88rem;
}

.geo-spec-item {
  color: rgba(255, 255, 255, 0.9);
}

.geo-spec-item strong {
  color: var(--gold-200);
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.hero-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}

.trust-indicator {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--gold-400);
  line-height: 1;
  padding-top: 2px;
}

.trust-text-block h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.trust-text-block p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.hero-img-card,
.hero-showcase-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  box-shadow: var(--shadow-dark);
}

.hero-img-card img,
.hero-showcase-frame img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.hero-img-badge,
.floating-glass-plate {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(28, 15, 6, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.badge-loc-title,
.plate-heading {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-100);
}

.badge-loc-sub,
.plate-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
}

.badge-harvest-tag,
.plate-tag {
  background: var(--gold-500);
  color: #1C0F06;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* 7. GENERAL BUTTONS */
.btn-submit-order,
.btn-hero-primary {
  width: 100%;
  background: var(--gold-foil);
  color: #1C0F06;
  border: none;
  border-radius: var(--radius-full);
  padding: 14px 26px;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: all 0.25s ease;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-submit-order:hover,
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.5);
}

/* 8. SECTION HEADINGS (STANDARDIZED) */
.section-header-centered {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--section-margin-gap);
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-500);
  margin-bottom: 6px;
}

.section-title,
.section-title-serif {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 10px;
}

.section-subtitle,
.section-subtitle-text {
  font-size: 1rem;
  color: var(--ink-700);
  line-height: 1.6;
}

/* 9. ORDER & PRODUCT SHOWCASE (DARK FOREST CANVAS) */
.order-section {
  background: var(--forest-950);
  color: var(--white);
  padding: var(--section-padding-y) 0;
}

.order-section .section-title {
  color: var(--white);
}

.order-section .section-subtitle {
  color: rgba(255, 255, 255, 0.78);
}

.order-grid-2col {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: stretch;
}

.product-details-card {
  background: var(--forest-900);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 26px;
  box-shadow: var(--shadow-card);
}

.product-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 18px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  background: #000;
}

.product-img-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--gold-100);
  margin-bottom: 4px;
}

.product-location-pill {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--gold-400);
  background: rgba(245, 158, 11, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.product-desc {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 18px;
}

.product-specs-list {
  list-style: none;
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.product-specs-list li {
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
}

.spec-bullet {
  width: 6px;
  height: 6px;
  background: var(--gold-400);
  border-radius: 50%;
  flex-shrink: 0;
}

.order-cta-showcase-card {
  background: #192720;
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.showcase-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.showcase-harvest-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  font-size: 0.82rem;
  line-height: 1;
  color: var(--gold-300);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 0 14px;
  border-radius: var(--radius-full);
  font-weight: 600;
  box-sizing: border-box;
}

.stock-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  gap: 7px;
  font-size: 0.82rem;
  line-height: 1;
  color: #4ADE80;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  padding: 0 14px;
  border-radius: var(--radius-full);
  font-weight: 600;
  box-sizing: border-box;
}

.stock-status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 6px #22C55E;
}

.showcase-card-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-100);
  margin-bottom: 10px;
  line-height: 1.25;
}

.showcase-card-lead {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.58;
  margin-bottom: 20px;
}

.showcase-features-list {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.showcase-feature-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 10px 14px;
}

.showcase-feature-num {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-400);
  background: rgba(245, 158, 11, 0.15);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.showcase-feature-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--white);
  margin-bottom: 2px;
}

.showcase-feature-item span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
}

.showcase-cta-box {
  margin-top: 6px;
}

.showcase-subtext {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 10px;
}

/* 10. HONEST PRINCIPLES & VALUES (LIGHT WAX / LINEN CANVAS) */
.trust-section,
.values-section {
  background: var(--linen-50);
  padding: var(--section-padding-y) 0;
  border-top: 1px solid var(--border-light);
}

.trust-grid-3col,
.principles-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.trust-principle-card,
.principle-box-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-principle-card:hover,
.principle-box-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.principle-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.trust-principle-card h3,
.principle-box-card h3 {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.trust-principle-card p,
.principle-box-card p {
  font-size: 0.9rem;
  color: var(--ink-700);
  line-height: 1.55;
}

/* 11. KNOWLEDGE BASE & ARTICLES (PREVIEW ON LANDING + FULL HUB) */
.articles-section {
  background: var(--white);
  padding: var(--section-padding-y) 0;
  border-top: 1px solid var(--border-light);
}

.page-hero-header {
  background: #271406;
  color: #FFFBEB;
  padding: 38px 0 32px;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  position: relative;
}

.breadcrumb-nav {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 12px;
}

.breadcrumb-nav a {
  color: var(--gold-400);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb-nav a:hover {
  text-decoration: underline;
}

.articles-body-section {
  padding: 36px 0 48px;
}

.articles-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.article-filter-btn {
  background: #FFFFFF;
  border: 1px solid rgba(18, 24, 21, 0.12);
  color: var(--ink-700);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.article-filter-btn:hover {
  border-color: var(--gold-500);
  color: var(--ink-900);
}

.article-filter-btn.active {
  background: var(--forest-950);
  color: var(--white);
  border-color: var(--forest-950);
}

.articles-grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.article-story-card {
  background: #FFFFFF;
  border: 1px solid rgba(17, 27, 21, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
  transition: all 0.25s ease;
  position: relative;
  cursor: pointer;
}

.article-story-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(17, 27, 21, 0.09);
  border-color: rgba(245, 158, 11, 0.45);
}

.article-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.article-num-tag {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-600);
}

.article-cat-pill {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(17, 27, 21, 0.05);
  color: var(--ink-700);
}

.article-read-time {
  font-size: 0.76rem;
  color: var(--ink-500);
  font-weight: 500;
}

.article-title-link {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink-900);
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.2s;
}

.article-title-link:hover {
  color: var(--gold-700);
}

.article-excerpt-text {
  font-size: 0.92rem;
  color: var(--ink-700);
  line-height: 1.58;
  margin-bottom: 14px;
}

.article-takeaway-box {
  background: rgba(245, 158, 11, 0.08);
  border-left: 3px solid var(--gold-500);
  padding: 10px 14px;
  border-radius: 4px 8px 8px 4px;
  font-size: 0.86rem;
  color: var(--ink-900);
  line-height: 1.5;
  margin-bottom: 16px;
}

.article-takeaway-box strong {
  color: var(--gold-800);
}

.btn-read-article {
  background: none;
  border: none;
  color: var(--gold-700);
  font-weight: 700;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 0;
  transition: gap 0.2s ease, color 0.2s ease;
}

.btn-read-article:hover {
  color: var(--gold-900);
  gap: 9px;
}

.btn-view-all-articles {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-900);
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  padding: 10px 24px;
  background: #FFFFFF;
  border: 1.5px solid var(--gold-500);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.btn-view-all-articles:hover {
  background: var(--gold-500);
  color: #1C0F06;
  transform: translateY(-1px);
}

/* Modal Article Reader */
.article-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 16, 12, 0.8);
  backdrop-filter: blur(12px);
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.article-modal-backdrop.active {
  display: flex;
}

.article-modal-card {
  background: #FFFFFF;
  color: var(--ink-900);
  border-radius: var(--radius-xl);
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 34px 30px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  border: 1px solid var(--border-light);
  animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
  scrollbar-color: rgba(18, 24, 21, 0.3) transparent;
}

.article-modal-card::-webkit-scrollbar {
  width: 7px;
}

.article-modal-card::-webkit-scrollbar-track {
  background: transparent;
  margin: 16px 4px 16px 0;
}

.article-modal-card::-webkit-scrollbar-thumb {
  background: rgba(18, 24, 21, 0.25);
  border-radius: 9999px;
}

.article-modal-card::-webkit-scrollbar-thumb:hover {
  background: var(--gold-600);
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.article-modal-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding-right: 56px;
  flex-wrap: wrap;
}

.article-modal-card h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.25;
  margin-bottom: 14px;
  color: #111B15;
}

.article-modal-body h3 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.35;
  margin: 22px 0 10px;
  color: #111B15;
  font-weight: 700;
}

.article-modal-body h4 {
  font-size: 1.02rem;
  line-height: 1.4;
  margin: 16px 0 8px;
  color: var(--gold-800);
  font-weight: 700;
}

.article-modal-body p {
  font-size: 0.96rem;
  line-height: 1.68;
  color: var(--ink-700);
  margin-bottom: 14px;
}

.article-modal-body ul,
.article-modal-body ol {
  margin: 10px 0 14px 22px;
  color: var(--ink-700);
  line-height: 1.65;
}

.article-modal-body li {
  margin-bottom: 6px;
}

.article-modal-body blockquote {
  border-left: 3px solid var(--gold-500);
  padding: 10px 16px;
  margin: 16px 0;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--ink-800);
}

.article-modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(0, 0, 0, 0.06);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--ink-700);
  transition: background 0.2s;
}

.article-modal-close-btn:hover {
  background: rgba(0, 0, 0, 0.12);
  color: var(--ink-900);
}

/* Call to Action Banner on Articles Hub */
.cta-catalog-banner {
  background: #111B15;
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 34px 32px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: var(--shadow-card);
}

.cta-catalog-banner h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 6px;
}

.cta-catalog-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.96rem;
  max-width: 580px;
}

/* 12. FAQ SECTION */
.faq-section {
  background: var(--linen-50);
  padding: var(--section-padding-y) 0;
  border-top: 1px solid var(--border-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-item-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}

.faq-item-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 8px;
  line-height: 1.4;
}

.faq-item-card p {
  font-size: 0.88rem;
  color: var(--ink-700);
  line-height: 1.55;
}

/* 13. SITE FOOTER */
footer.site-footer {
  background: #0B130E;
  color: rgba(255, 255, 255, 0.7);
  padding: 38px 0 24px;
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  font-size: 0.88rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 20px;
}

.footer-contacts-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-200);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-contact-link:hover {
  color: var(--white);
}

.footer-bottom-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-version-links a {
  color: var(--gold-400);
  text-decoration: none;
  margin-left: 14px;
}

.footer-version-links a:hover {
  text-decoration: underline;
}

/* 14. ORDER CHECKOUT MODAL WINDOW */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 23, 15, 0.88);
  backdrop-filter: blur(8px);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
  z-index: 1000;
}

.modal-backdrop.active {
  display: flex;
}

.modal-card {
  background: #18241E;
  border: 1.5px solid var(--gold-400);
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  padding: 32px 26px;
  color: var(--white);
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  position: relative;
}

.modal-card h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--gold-200);
  margin-bottom: 10px;
}

.modal-card p {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.58;
  margin-bottom: 22px;
}

.modal-summary-box {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 20px;
  text-align: left;
  font-size: 0.88rem;
}

.modal-card-order {
  background: #15221B;
  border: 1.5px solid var(--gold-400);
  border-radius: var(--radius-xl);
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 26px 22px;
  color: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75);
  position: relative;
  text-align: left;
  color-scheme: dark;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 158, 11, 0.5) transparent;
}

.modal-card-order::-webkit-scrollbar {
  width: 7px;
}

.modal-card-order::-webkit-scrollbar-track {
  background: transparent;
  margin: 16px 4px 16px 0;
}

.modal-card-order::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.45);
  border-radius: 9999px;
  border: 1px solid rgba(21, 34, 27, 0.8);
}

.modal-card-order::-webkit-scrollbar-thumb:hover {
  background: var(--gold-400);
}

.modal-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.modal-header-row h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-200);
  margin-bottom: 3px;
  line-height: 1.25;
}

.modal-header-row p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.modal-close-icon {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.modal-close-icon:hover {
  background: rgba(245, 158, 11, 0.2);
  border-color: var(--gold-400);
  color: var(--gold-300);
}

/* REAL PACKAGING TRUTH NOTICE IN MODAL */
.modal-packaging-notice {
  background: rgba(6, 23, 15, 0.9);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.modal-packaging-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245, 158, 11, 0.4);
  background: #000;
  flex-shrink: 0;
}

.modal-packaging-text {
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

.modal-packaging-text strong {
  color: var(--gold-300);
  display: block;
  margin-bottom: 2px;
  font-size: 0.86rem;
}

.form-group-block {
  margin-bottom: 16px;
}

.form-group-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.qty-header-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.qty-price-hint {
  font-size: 0.82rem;
  color: var(--gold-400);
  font-weight: 600;
}

.qty-options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 10px;
}

.qty-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  padding: 10px 8px;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  border-color: var(--gold-400);
  background: rgba(245, 158, 11, 0.1);
}

.qty-btn.active {
  background: var(--gold-foil);
  color: #1C0F06;
  border-color: var(--gold-400);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.35);
}

.qty-sub {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  margin-top: 3px;
  opacity: 0.85;
}

/* CUSTOM STEPPER */
.custom-qty-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.custom-qty-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}

.qty-stepper-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stepper-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.stepper-btn:hover {
  background: var(--gold-500);
  color: #1C0F06;
  border-color: var(--gold-400);
}

.stepper-input {
  width: 54px;
  height: 32px;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-sm);
  color: var(--gold-200);
  font-weight: 800;
  font-size: 1rem;
}

.stepper-input::-webkit-inner-spin-button,
.stepper-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.stepper-unit {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

/* FORM FIELDS */
.form-field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.form-field-row {
  display: flex;
  flex-direction: column;
}

.form-input-control {
  width: 100%;
  background: var(--forest-input);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  outline: none;
  transition: all 0.2s ease;
}

.form-input-control:focus {
  border-color: var(--gold-400);
  background: rgba(6, 23, 15, 0.95);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2);
}

.phone-validation-hint {
  font-size: 0.74rem;
  color: var(--gold-300);
  margin-top: 4px;
  line-height: 1.3;
}

.phone-validation-hint.valid {
  color: #4ADE80;
}

.phone-validation-hint.invalid {
  color: #F87171;
}

/* Phone Input Wrapper & Instant Clear Button */
.phone-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.phone-input-wrap .form-input-control {
  padding-right: 36px;
}

.btn-clear-phone {
  position: absolute;
  right: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: rgba(255, 255, 255, 0.65);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}

.btn-clear-phone.visible {
  opacity: 1;
  pointer-events: auto;
}

.btn-clear-phone:hover {
  background: rgba(245, 158, 11, 0.35);
  color: var(--white);
}

/* Email Field in Order Form */
.email-field-row {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.field-label-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.field-sub-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.req-star {
  color: var(--gold-400);
  font-weight: 700;
}

.optional-pill {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.field-explain-note {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
  margin-bottom: 0;
}

.payment-radio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.payment-radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  cursor: pointer;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.2s ease;
}

.payment-radio-label input {
  accent-color: var(--gold-500);
  width: 16px;
  height: 16px;
}

.payment-radio-label:has(input:checked) {
  border-color: var(--gold-400);
  background: rgba(245, 158, 11, 0.1);
  color: var(--white);
}

/* ORDER SUMMARY & CALCULATION STRIP */
.order-summary-strip {
  background: rgba(6, 23, 15, 0.85);
  border: 1px dashed rgba(245, 158, 11, 0.35);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-summary-details {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.75);
}

.order-summary-details strong {
  color: var(--white);
  display: block;
  font-size: 0.94rem;
  margin-top: 2px;
}

.summary-calc-row {
  display: block;
  font-size: 0.82rem;
  color: var(--gold-400);
  margin: 2px 0;
  font-family: var(--font-mono);
}

.order-total-price {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 700;
  color: var(--gold-300);
  line-height: 1;
}

.form-guarantee-note {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: 12px;
  line-height: 1.45;
}

/* 15. RESPONSIVE BREAKPOINTS */
@media (max-width: 900px) {
  .hero-grid,
  .hero-layout-grid,
  .order-grid-2col,
  .articles-grid-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-title,
  .hero-headline {
    font-size: 2.25rem;
  }

  .hero-brand-logo-img {
    height: 78px;
    max-width: 270px;
  }

  .trust-grid-3col,
  .principles-grid-3col,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .nav-links-menu,
  .site-nav-menu {
    display: none;
  }

  .qty-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-field-grid,
  .payment-radio-grid {
    grid-template-columns: 1fr;
  }

  .cta-catalog-banner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .hero-section {
    padding: 32px 0 38px;
  }

  .hero-title,
  .hero-headline {
    font-size: 1.95rem;
  }

  .hero-logo-plate {
    width: 105px;
    height: 105px;
    padding: 8px;
  }

  .hero-brand-logo-img {
    height: 68px;
    max-width: 230px;
  }

  .hero-trust-row,
  .geo-specs-grid {
    grid-template-columns: 1fr;
  }

  .nav-phone-chip span {
    display: none;
  }

  .nav-phone-chip {
    padding: 8px;
  }

  .order-summary-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .modal-card-order {
    padding: 20px 16px;
  }
}

/* ==========================================================================
   15. EXPANDED V2 CATALOG, SCIENCE & FUNNEL DIALOG (FOR INDEX2.HTML)
   ========================================================================== */
section.catalog-section {
  background: var(--bg-dark-sec, var(--forest-900));
  color: var(--text-dark-sec, var(--white));
  padding: 48px 0;
  position: relative;
}

.catalog-cards-triad {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.catalog-cards-triad .product-luxury-card {
  width: 100%;
  max-width: 420px;
}

.product-luxury-card {
  background: var(--card-dark, #15221B);
  border: 1.5px solid var(--card-border-dark, rgba(245, 158, 11, 0.25));
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.product-luxury-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-400);
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 158, 11, 0.2);
}

.product-luxury-card.flagship {
  border: 2px solid var(--gold-500);
}

.ribbon-popular-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: var(--gold-foil);
  color: var(--dark-emerald-950, #06170F);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.product-photo-box {
  width: 100%;
  height: 290px;
  overflow: hidden;
  background: #06170F;
  position: relative;
}

.product-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-luxury-card:hover .product-photo-box img {
  transform: scale(1.06);
}

.product-card-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.product-name-serif {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.product-aroma-note {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold-400);
  margin-bottom: 14px;
}

.product-story-desc {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 24px;
}

.spec-badges-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.spec-pill-item {
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-sm);
  color: var(--gold-100);
}

.product-pricing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-display-block {
  display: flex;
  flex-direction: column;
}

.cost-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-200);
}

.cost-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

.btn-select-product {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1.5px solid var(--gold-400);
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-select-product:hover {
  background: var(--gold-foil);
  color: var(--dark-emerald-950, #06170F);
  border-color: var(--gold-400);
}

/* SECTION 4: PURITY & HONEY SCIENCE (LIGHT CANVAS) */
section.science-section {
  background: var(--bg-light-sec, #FAF8F4);
  color: var(--text-light-sec, #121815);
  padding: 46px 0;
  border-top: 1px solid var(--border-light);
}

.science-triad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.science-card {
  background: var(--card-light, #FFFFFF);
  border: 1px solid var(--card-border-light, rgba(17, 27, 21, 0.08));
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
}

.science-tag {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold-800);
  background: var(--gold-100);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  display: inline-block;
  margin-bottom: 20px;
}

.science-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-emerald-950, #06170F);
  margin-bottom: 12px;
}

.science-card p {
  font-size: 0.94rem;
  color: var(--ink-700);
  line-height: 1.65;
}

/* Editorial Action Block */
.editorial-action-banner {
  background: var(--bg-dark-sec, var(--forest-900));
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: center;
  border: 1px solid rgba(245, 158, 11, 0.25);
  box-shadow: var(--shadow-card);
}

.editorial-action-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 14px;
}

.editorial-action-banner p {
  font-size: 1.05rem;
  opacity: 0.88;
  line-height: 1.7;
}

.btn-editorial-banner {
  background: var(--gold-foil);
  color: var(--dark-emerald-950, #06170F);
  border: none;
  padding: 18px 36px;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: all 0.2s ease;
}

.btn-editorial-banner:hover {
  transform: translateY(-2px);
}

/* SECTION 6: FAQ & CONCIERGE CONTACTS */
section.faq-contacts-section {
  background: var(--bg-faq-sec, var(--bg-hero));
  color: var(--text-faq-sec, var(--text-hero));
  padding: 48px 0;
  border-top: 1px solid rgba(245, 158, 11, 0.15);
}

.faq-layout-2col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
}

.faq-luxury-item {
  background: var(--card-dark, #15221B);
  border: 1px solid var(--card-border-dark, rgba(245, 158, 11, 0.2));
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 18px;
}

.faq-luxury-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.faq-luxury-item p {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.concierge-luxury-box {
  background: var(--card-dark, #15221B);
  border: 1.5px solid var(--card-border-dark, rgba(245, 158, 11, 0.2));
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--shadow-card);
}

.concierge-luxury-box h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.contact-channels-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}

.contact-row-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.contact-row-pill:hover {
  border-color: var(--gold-400);
  background: rgba(245, 158, 11, 0.1);
  color: var(--gold-200);
}

/* BESPOKE 3-STEP MODAL FUNNEL FOR INDEX2 */
.funnel-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(4, 14, 10, 0.85);
  backdrop-filter: blur(16px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.funnel-backdrop.active {
  display: flex;
}

.funnel-dialog {
  background: var(--bg-dark-sec, #0A2218);
  color: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 600px;
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6);
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color-scheme: dark;
}

.dialog-header {
  background: var(--dark-emerald-950, #06170F);
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.step-tracker {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tracker-pill {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.tracker-pill.active {
  background: var(--gold-foil);
  color: var(--dark-emerald-950, #06170F);
  font-weight: 800;
}

.btn-dialog-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.15s ease;
}

.btn-dialog-close:hover {
  color: var(--white);
}

.dialog-body {
  padding: 32px 28px;
  max-height: 82vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(245, 158, 11, 0.45) transparent;
  color-scheme: dark;
}

.dialog-body::-webkit-scrollbar {
  width: 7px;
}

.dialog-body::-webkit-scrollbar-track {
  background: transparent;
  margin: 12px 4px;
}

.dialog-body::-webkit-scrollbar-thumb {
  background: rgba(245, 158, 11, 0.45);
  border-radius: 9999px;
  border: 1px solid rgba(21, 34, 27, 0.8);
}

.dialog-body::-webkit-scrollbar-thumb:hover {
  background: var(--gold-400);
}

.funnel-step-pane {
  display: none;
}

.funnel-step-pane.active {
  display: block;
}

.dialog-step-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.dialog-step-desc {
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.calc-variety-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.calc-variety-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: #0E2B1F;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-md);
  transition: border-color 0.2s ease;
}

.calc-variety-row.selected {
  border-color: var(--gold-400);
  background: #133829;
}

.calc-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.calc-info span {
  font-size: 0.82rem;
  color: var(--gold-400);
  font-weight: 600;
}

.stepper-ui {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-step-counter {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: 1.5px solid rgba(245, 158, 11, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.btn-step-counter:hover:not(:disabled) {
  background: var(--gold-foil);
  color: var(--dark-emerald-950, #06170F);
  border-color: var(--gold-400);
}

.btn-step-counter:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.step-counter-val {
  font-size: 1.15rem;
  font-weight: 800;
  min-width: 28px;
  text-align: center;
  color: var(--white);
}

.order-totals-card {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.totals-meta {
  display: flex;
  flex-direction: column;
}

.totals-meta .label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
}

.totals-meta .val {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--gold-200);
}

.field-group {
  margin-bottom: 18px;
}

.field-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

.field-label span.req {
  color: #F87171;
}

.field-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-sm);
  font-family: var(--font-ui);
  font-size: 0.98rem;
  color: var(--white);
  background: #0E2B1F;
  outline: none;
  transition: all 0.2s ease;
}

.field-control:focus {
  border-color: var(--gold-400);
  background: #143828;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.2);
}

.field-control.error {
  border-color: #EF4444;
  background: rgba(239, 68, 68, 0.1);
}

.field-error-msg {
  color: #F87171;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 4px;
  display: none;
}

.field-error-msg.visible {
  display: block;
}

.terms-clarity-callout {
  background: rgba(245, 158, 11, 0.1);
  border-left: 3px solid var(--gold-500);
  padding: 12px 16px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--gold-100);
  margin-bottom: 24px;
}

.check-hero-icon {
  width: 64px;
  height: 64px;
  background: #10B981;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.confirmation-summary-sheet {
  background: #0E2B1F;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 24px;
  font-size: 0.94rem;
  line-height: 1.6;
}

.telegram-invite-box {
  background: linear-gradient(135deg, #0284C7, #0369A1);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  text-align: center;
  box-shadow: 0 12px 28px -4px rgba(2, 132, 199, 0.35);
}

.telegram-invite-box h4 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.telegram-invite-box p {
  font-size: 0.92rem;
  opacity: 0.95;
  margin-bottom: 18px;
  line-height: 1.5;
}

.btn-tg-join {
  background: var(--white);
  color: #0369A1;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.94rem;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

.btn-tg-join:hover {
  transform: translateY(-2px);
}

.mobile-order-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 34, 24, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(245, 158, 11, 0.25);
  padding: 12px 20px;
  z-index: 45;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
  .catalog-cards-triad,
  .science-triad-grid,
  .faq-layout-2col {
    grid-template-columns: 1fr;
  }
  .editorial-action-banner {
    grid-template-columns: 1fr;
    padding: 40px 24px;
    text-align: center;
  }
  .mobile-order-sticky-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
