/* Custom font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@700&display=swap');

@font-face {
  font-family: 'RUSJellyka';
  src: url('fonts/RUSJellyka-Love-and-Passion.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Variables and Design Tokens */
:root {
  --font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Green & Warm Cream Theme Palette */
  --bg-color-start: #6cbf3f;            /* Bright Grass Green (center) */
  --bg-color-mid: #4ea22a;              /* Saturated Green */
  --bg-color-end: #1f4d12;              /* Deep Forest Green (edges) */

  --milk-primary: #ffffff;              /* White */
  --milk-cream: #fff8e7;                /* Warm cream */
  --milk-trans-90: rgba(255, 255, 255, 0.9);
  --milk-trans-75: rgba(255, 255, 255, 0.75);
  --milk-trans-50: rgba(255, 255, 255, 0.5);
  --milk-trans-25: rgba(255, 255, 255, 0.25);
  --milk-trans-10: rgba(255, 255, 255, 0.1);

  --text-primary: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.75);
  --text-accent: #ffd95a;               /* Warm Yellow/Gold — complements green */
  --accent-color: #f0a830;              /* Deep Amber */

  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.14);
  --glass-shadow: rgba(0, 0, 0, 0.3);
}

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

html {
  font-family: var(--font-family);
  font-size: 16px;
  color: var(--text-primary);
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-color-end);
  background-image: radial-gradient(circle at center, var(--bg-color-mid) 0%, var(--bg-color-start) 60%, var(--bg-color-end) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

section {
  height: 100vh;
  width: 100vw;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Base Utility for Flex Centering */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------------------------------------------------- */
/* HEADER & MINIBAR STYLES                             */
/* ---------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: center;
}

.minibar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.5rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.6rem 2rem;
  border-radius: 50px;
  box-shadow: 0 8px 32px var(--glass-shadow);
  max-width: 95%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.minibar:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 217, 90, 0.1);
}

/* Brand/Logo on bar */
.minibar-brand {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #ffffff 0%, var(--text-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.minibar-logo-placeholder {
  width: 120px;
  height: 56px;
  flex-shrink: 0;
  background: transparent;
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

.nav-item::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 20px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  transition: color 0.25s ease;
}

.nav-item:hover .nav-link {
  color: var(--text-primary);
}

/* Nav underlines */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--text-accent), var(--milk-primary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Dropdown Menu styling */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(20, 50, 15, 0.9);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 0.75rem;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s;
}

/* Show Dropdown on hover */
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(5px);
}

/* Modern Starting Style for Dropdowns (Chrome/Edge/Safari support) */
@starting-style {
  .nav-item:hover .dropdown-menu {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
}

.dropdown-item {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  transform: translateX(3px);
}

/* Chevron arrow on Dropdowns */
.chevron {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
}

/* ---------------------------------------------------- */
/* LANGUAGE SWITCHER STYLES                            */
/* ---------------------------------------------------- */
.lang-switcher {
  display: flex;
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2px;
  border-radius: 30px;
  cursor: pointer;
  user-select: none;
  width: 80px;
  height: 32px;
  align-items: center;
}

.lang-btn {
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  z-index: 2;
  transition: color 0.3s ease;
  line-height: 28px;
}

.lang-btn.active {
  color: #1f4d12; /* Dark green text on white slider */
}

.lang-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(50% - 2px);
  height: calc(100% - 4px);
  background: var(--milk-primary);
  border-radius: 20px;
  z-index: 1;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Slide position depending on language */
.lang-switcher[data-lang="ru"] .lang-slider {
  transform: translateX(100%);
}

/* Hamburger mobile button (hidden on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------------------------------------------------- */
/* HERO SECTION — PRODUCT SHOWCASE (green background)   */
/* ---------------------------------------------------- */
.hero {
  justify-content: center;
  align-items: center;
  background: transparent;
}

.product-hero {
  background: radial-gradient(circle at center, #6cbf3f 0%, #4ea22a 60%, #2f7a18 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative scattered images */
.deco {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.3));
  animation: deco-float 7s ease-in-out infinite;
}

.deco-glass-left {
  top: 32%;
  left: 8%;
  width: clamp(180px, 18vw, 320px);
  animation-delay: 0s;
}

.deco-straws-tr {
  top: 28%;
  right: 12%;
  width: clamp(80px, 8vw, 140px);
  animation-delay: 1.5s;
}

.deco-straws-bl {
  bottom: 18%;
  left: 32%;
  width: clamp(80px, 8vw, 140px);
  animation-delay: 3s;
}

.deco-glass-right {
  bottom: 10%;
  right: 8%;
  width: clamp(180px, 18vw, 320px);
  animation-delay: 2s;
}

@keyframes deco-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.product-hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
}

.product-image-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
}

.product-image {
  max-width: 100%;
  max-height: 75vh;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 60px rgba(0, 0, 0, 0.4));
  animation: product-float 6s ease-in-out infinite;
}

@keyframes product-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.product-info {
  position: absolute;
  right: 18%;
  top: 28%;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 340px;
  z-index: 7;
  text-align: left;
}

.product-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.product-desc {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 992px) {
  .product-info {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 0 auto;
    text-align: center;
    align-items: center;
    max-width: 90%;
    padding-top: 60vh;
  }
  .product-image-wrap {
    top: 42%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    justify-content: center;
  }
  .product-image {
    max-height: 55vh;
    max-width: 85%;
  }
  .deco-glass-left { top: 14%; left: 2%; width: 110px; }
  .deco-glass-right { bottom: 28%; right: 2%; width: 110px; }
  .deco-straws-tr { top: 10%; right: 6%; width: 60px; }
  .deco-straws-bl { bottom: 38%; left: 8%; width: 60px; }
  
  .scroll-indicator {
    bottom: 1.5rem;
  }
}

/* Swirling Milk Vortex Container (Fills the entire viewport dynamically) */
.vortex-container {
  position: absolute;
  width: 115vmax;
  height: 115vmax;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.vortex-waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.vortex-wave-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  mix-blend-mode: screen;
}

/* Layer 1 (Outer rotating splash) */
.wave-1 {
  animation: rotate-clockwise 45s infinite linear;
  opacity: 0.95;
}

/* Layer 2 (Inner rotating splash in reverse) */
.wave-2 {
  animation: rotate-counter-clockwise-scaled 30s infinite linear;
  opacity: 0.45;
}

@keyframes rotate-counter-clockwise-scaled {
  0% { transform: scale(1.06) rotate(360deg); }
  100% { transform: scale(1.06) rotate(0deg); }
}

/* Logo wrapper centered in the vortex */
.vortex-logo-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(80vw, 550px);
  aspect-ratio: 2.18;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: logo-float 6s ease-in-out infinite;
}

.vortex-logo-placeholder {
  width: 100%;
  height: 100%;
  background: transparent;
}

/* Floating Milk Droplets/Particles around the vortex */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 6;
}

.droplet {
  position: absolute;
  background: var(--milk-trans-90);
  border-radius: 50%;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  animation: float-droplet 8s infinite ease-in-out;
}

.droplet-1 { width: 14px; height: 14px; top: 15%; left: 20%; animation-delay: 0s; }
.droplet-2 { width: 10px; height: 10px; top: 75%; left: 15%; animation-delay: 2s; }
.droplet-3 { width: 18px; height: 18px; top: 25%; right: 15%; animation-delay: 1.5s; }
.droplet-4 { width: 12px; height: 12px; top: 80%; right: 25%; animation-delay: 3.5s; }
.droplet-5 { width: 8px; height: 8px; top: 50%; left: 85%; animation-delay: 4.5s; }

/* Text Content overlay on the Hero Section */
.hero-content {
  position: absolute;
  bottom: 8%;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 10;
  pointer-events: none;
  padding: 0 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  background: linear-gradient(to bottom, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Hero Quote - Elegant Typography */
.hero-quote {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 15;
  pointer-events: none;
  animation: hero-quote-fade 1.2s 0.8s ease both;
}

.hero-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 500;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-quote-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

@keyframes hero-quote-fade {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 15;
  animation: scroll-indicator-fade 1s 1.5s ease both;
  cursor: pointer;
}

.scroll-indicator-text {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-indicator-arrow {
  color: rgba(255, 255, 255, 0.6);
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-indicator-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}



/* ---------------------------------------------------- */
/* ANIMATION KEYFRAMES                                 */
/* ---------------------------------------------------- */
@keyframes rotate-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes rotate-counter-clockwise {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

/* Organic morphing shapes for fluid vortex effect */
@keyframes morph-shape-1 {
  0%, 100% { border-radius: 43% 57% 51% 49% / 47% 43% 57% 53%; }
  50% { border-radius: 52% 48% 46% 54% / 51% 54% 46% 49%; }
}

@keyframes morph-shape-2 {
  0%, 100% { border-radius: 50% 50% 38% 62% / 40% 45% 55% 60%; }
  50% { border-radius: 42% 58% 50% 50% / 55% 40% 60% 45%; }
}

@keyframes morph-shape-3 {
  0%, 100% { border-radius: 45% 55% 58% 42% / 58% 47% 53% 42%; }
  50% { border-radius: 55% 45% 42% 58% / 42% 58% 42% 58%; }
}

@keyframes morph-shape-4 {
  0%, 100% { border-radius: 43% 57% 51% 49% / 47% 43% 57% 53%; }
  50% { border-radius: 48% 52% 43% 57% / 54% 48% 52% 46%; }
}

@keyframes logo-float {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 8px)); }
}

@keyframes float-droplet {
  0%, 100% { transform: translateY(0) scale(1) rotate(0deg); opacity: 0.7; }
  50% { transform: translateY(-20px) scale(1.08) rotate(180deg); opacity: 0.95; }
}

@keyframes scroll-line {
  0% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0.3); transform-origin: bottom; }
}

/* ---------------------------------------------------- */
/* FOOTER & CONTACTS SECTION STYLES                    */
/* ---------------------------------------------------- */
.footer-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 10;
  overflow: hidden;
  height: auto;
  min-height: auto;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(2, 26, 92, 0.8) 0%,
    rgba(7, 62, 180, 0.65) 50%,
    rgba(2, 26, 92, 0.85) 100%);
}

.footer-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 2rem;
  align-items: center;
  padding-top: 2rem;
}

/* Left side of footer: Brand & Mission */
.footer-brand-column {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
}

.footer-desc {
  font-size: 1.1rem;
  color: var(--milk-trans-75);
  line-height: 1.7;
}

.footer-meta {
  font-size: 0.85rem;
  color: var(--text-primary);
  font-weight: 500;
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Right side of footer: Contact Info Grid */
.footer-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Glassmorphic Contact Card */
.contact-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.5rem;
  border-radius: 24px;
  box-shadow: 0 10px 30px var(--glass-shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 217, 90, 0.05);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 1.4rem;
}

.contact-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
}

.contact-card p, .contact-card a {
  font-size: 1.05rem;
  color: var(--text-primary);
  line-height: 1.6;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

/* Bottom copyright bar */
.copyright-bar {
  grid-column: span 2;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-primary);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  margin-top: 1rem;
}

/* ---------------------------------------------------- */
/* RESPONSIVE MEDIA QUERIES                            */
/* ---------------------------------------------------- */

/* Table viewports */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    overflow-y: auto;
    padding-bottom: 2rem;
    padding-top: 6rem;
    align-items: flex-start;
  }
  
  .footer-brand-column {
    text-align: center;
    align-items: center;
  }
  
  .footer-info-grid {
    width: 100%;
  }
}

/* Mobile viewports */
@media (max-width: 768px) {
  header {
    padding: 1rem;
  }
  
  .minibar {
    width: 100%;
    border-radius: 24px;
    padding: 0.6rem 1.2rem;
    gap: 1rem;
  }
  
  .hamburger {
    display: flex;
  }
  
  /* Make Nav Menu a overlay panel on mobile */
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(20, 50, 15, 0.96);
    border-left: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6rem 2.5rem 2rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 100;
    visibility: hidden;
  }
  
  .nav-menu.open {
    transform: translateX(0);
    visibility: visible;
  }
  
  .nav-link {
    font-size: 1.15rem;
    padding: 0.8rem 0;
  }
  
  /* Mobile Dropdown */
  .dropdown-menu {
    position: relative;
    top: 0;
    left: 0;
    transform: none !important;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
    width: 100%;
    margin-top: 0.5rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none; /* Controlled via JS for mobile tap */
    border-radius: 12px;
  }
  
  .nav-item.open .dropdown-menu {
    display: block;
  }
  
  /* Hamburger trigger transform on active */
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  /* Adjust Vortex for Mobile */
  .vortex-container {
    width: min(88vw, 360px);
    height: min(88vw, 360px);
  }
  
  .wave-layer-1 { top: 2%; left: 2%; width: 96%; height: 96%; }
  .wave-layer-2 { top: 6%; left: 6%; width: 88%; height: 88%; }
  .wave-layer-3 { top: 11%; left: 11%; width: 78%; height: 78%; }
  .wave-layer-4 { top: 16%; left: 16%; width: 68%; height: 68%; }
  
  /* Footer responsive grid */
  .footer-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .copyright-bar {
    grid-column: 1;
  }
  
  .footer-section {
    padding-top: 6rem;
    height: auto;
    min-height: auto;
  }
  
  .scroll-indicator {
    bottom: 1rem;
  }
  
  .scroll-indicator-text {
    font-size: 0.7rem;
  }
}

/* ---------------------------------------------------- */
/* FLYING LOGO SCROLL ANIMATION                         */
/* ---------------------------------------------------- */
.flying-logo {
  position: fixed;
  z-index: 150;
  pointer-events: auto;
  cursor: pointer;
  object-fit: contain;
  width: min(80vw, 550px);
  aspect-ratio: 2.18;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0; /* Hidden until JS computes precise layout coords */
  transition: opacity 0.4s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  will-change: left, top, width, height, filter;
}

.flying-logo.positioned {
  transform: none;
}

.flying-logo.positioned:hover {
  transform: scale(1.08) rotate(5deg);
}

.flying-logo.positioned.in-minibar:hover {
  transform: scale(1.1);
}

/* ---------------------------------------------------- */
/* HERO CARD — white panel sticking out from bottom-left */
/* ---------------------------------------------------- */
.hero-card {
  position: absolute;
  top: 0;
  left: 15%;
  z-index: 20;
  width: clamp(360px, 36vw, 560px);
  padding: 2.5rem 2.8rem 2.8rem;
  background: #ffffff;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

/* Outward-bulging top corners — white "skirt" extending sideways from the card */
.hero-card::before,
.hero-card::after {
  content: '';
  position: absolute;
  top: 0;
  width: 28px;
  height: 28px;
  pointer-events: none;
}

.hero-card::before {
  left: -28px;
  background: radial-gradient(circle at bottom left, transparent 27.5px, #ffffff 28.5px);
}

.hero-card::after {
  right: -28px;
  background: radial-gradient(circle at bottom right, transparent 27.5px, #ffffff 28.5px);
}

.hero-card-title {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  font-weight: 800;
  color: #1e2a78;
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.hero-card-desc {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  color: #1e2a78;
  line-height: 1.55;
  font-weight: 500;
}

.hero-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  background: #4ea22a;
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.3px;
  width: fit-content;
  margin-top: 0.4rem;
  border: 2px solid #4ea22a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 18px rgba(78, 162, 42, 0.3);
}

.hero-card-btn i {
  transition: transform 0.3s ease;
}

.hero-card-btn:hover {
  background: #3d8a1f;
  border-color: #3d8a1f;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(78, 162, 42, 0.4);
}

.hero-card-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .hero-card {
    left: 5%;
    width: 90%;
    padding: 2rem 1.8rem;
  }
}

/* ---------------------------------------------------- */
/* HISTORY BLOCK — light background with centered text  */
/* ---------------------------------------------------- */
.history-block {
  height: 100vh;
  width: 100vw;
  position: relative;
  background-image: url('background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  padding: 6rem 2rem;
}

.history-block-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.history-block-title {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: #1e2a78;
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.4);
}

.history-block-desc {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: #1e2a78;
  line-height: 1.7;
  max-width: 560px;
  font-weight: 500;
}

.history-block-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: #1e2a78;
  color: #ffffff;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0.8rem;
  border: 2px solid #1e2a78;
  box-shadow: 0 8px 24px rgba(30, 42, 120, 0.25);
}

.history-block-btn i {
  transition: transform 0.3s ease;
}

.history-block-btn:hover {
  background: transparent;
  color: #1e2a78;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(30, 42, 120, 0.3);
}

.history-block-btn:hover i {
  transform: translateX(4px);
}

@media (orientation: portrait) {
  .history-block {
    background-image: url('background-phones.png');
  }
}

@media (max-width: 768px) {
  .history-block {
    padding: 4rem 1.5rem;
  }
  .history-block-inner {
    gap: 1.4rem;
  }
}

/* ---------------------------------------------------- */
/* FULLSCREEN PROMO SECTIONS                            */
/* ---------------------------------------------------- */
.promo-fullscreen {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 10;
}

.promo-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.promo-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.promo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.promo-fullscreen:hover .promo-bg img {
  transform: scale(1.12);
}

.promo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg,
    rgba(20, 50, 15, 0.85) 0%,
    rgba(78, 162, 42, 0.65) 40%,
    rgba(108, 191, 63, 0.45) 100%);
}

.promo-overlay-dark {
  background: linear-gradient(135deg,
    rgba(10, 15, 10, 0.80) 0%,
    rgba(20, 30, 20, 0.65) 40%,
    rgba(30, 40, 30, 0.55) 100%);
}

.promo-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 3rem;
  padding-top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.promo-content-left {
  margin-left: 8%;
}

.promo-content-right {
  margin-left: auto;
  margin-right: 8%;
  text-align: right;
  align-items: flex-end;
}

.promo-content-top {
  justify-content: flex-start;
  padding-top: 8rem;
  text-align: left;
  align-items: flex-start;
}

.promo-divider {
  display: block;
  width: 90px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--milk-primary), rgba(255, 255, 255, 0));
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-accent);
  letter-spacing: 0.5px;
  width: fit-content;
}

.promo-badge i {
  font-size: 1rem;
}

.promo-heading {
  font-size: clamp(3.2rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text-primary);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.promo-text {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  color: var(--milk-trans-75);
  line-height: 1.7;
  max-width: 600px;
}

.promo-content-right .promo-text {
  margin-left: auto;
}

.promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 60px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
}

.promo-cta i {
  transition: transform 0.3s ease;
}

.promo-cta:hover {
  background: var(--milk-primary);
  color: var(--bg-color-end);
  border-color: var(--milk-primary);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.promo-cta:hover i {
  transform: translateX(4px);
}

/* Responsive adjustment for Promo fullscreen */
@media (max-width: 992px) {
  .promo-content {
    max-width: 100%;
    padding: 2rem;
  }
  
  .promo-content-left {
    margin-left: 5%;
  }
  
  .promo-content-right {
    margin-right: 5%;
  }
}

@media (max-width: 768px) {
  .promo-content-left,
  .promo-content-right {
    margin: 0;
    padding: 2rem 1.5rem;
    text-align: left;
    align-items: flex-start;
  }

  .promo-content-right .promo-text {
    margin-left: 0;
  }

  .promo-overlay:not(.promo-overlay-dark) {
    background: linear-gradient(180deg,
      rgba(20, 50, 15, 0.9) 0%,
      rgba(78, 162, 42, 0.75) 50%,
      rgba(108, 191, 63, 0.6) 100%);
  }
  
  .promo-heading {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .hero-quote {
    bottom: 8%;
    width: 90%;
  }
  
  .hero-quote-text {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }
  
  .hero-quote-subtitle {
    font-size: clamp(0.75rem, 2.5vw, 0.95rem);
    letter-spacing: 0.1em;
  }
}

/* ---------------------------------------------------- */
/* GOAL PROMO — clean white band: a line on top + the visual */
/* RU shows the hand-drawn collage image; KZ (no image)      */
/* shows the goal phrase in a handwritten display face.      */
/* Deliberately short — narrow on the vertical axis.         */
/* ---------------------------------------------------- */
.goal-promo {
  position: relative;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: #ffffff;
  padding: 6rem 1rem;
}

/* Soft brand-tinted glow so the white doesn't feel flat */
.goal-promo::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(108, 191, 63, 0.10), transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(255, 217, 90, 0.10), transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.goal-promo-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
}

/* The line on top */
.goal-divider {
  display: block;
  width: 120px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #4ea22a, #ffd95a);
}

.goal-image-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
}

.goal-image {
  width: 100%;
  max-width: 1400px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 40px rgba(30, 42, 120, 0.12));
}

/* KZ: goal phrase in a handwritten display face */
.goal-text-kz {
  font-family: 'Marck Script', cursive;
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 400;
  line-height: 1.1;
  color: #2f7a18;
  margin: 0;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .goal-promo {
    padding: 5rem 0.75rem;
  }

  .goal-promo-inner {
    gap: 2rem;
  }
}

/* ---------------------------------------------------- */
/* GOAL SECTION — compact bg-image block + card w/ image */
/* (styled like history-block but shorter)              */
/* ---------------------------------------------------- */
.goal-section {
  height: 70vh;
  width: 100vw;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  overflow: hidden;
}

.goal-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.goal-section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.goal-section-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.45);
}

.goal-section-card {
  position: absolute;
  top: 0;
  left: 15%;
  z-index: 20;
  width: clamp(320px, 34vw, 500px);
  padding: 2rem 2.4rem 2.4rem;
  background: #ffffff;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.goal-section-card::before,
.goal-section-card::after {
  content: '';
  position: absolute;
  top: 0;
  width: 24px;
  height: 24px;
  pointer-events: none;
}

.goal-section-card::before {
  left: -24px;
  background: radial-gradient(circle at bottom left, transparent 23.5px, #ffffff 24.5px);
}

.goal-section-card::after {
  right: -24px;
  background: radial-gradient(circle at bottom right, transparent 23.5px, #ffffff 24.5px);
}

.goal-section-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.goal-section-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

.goal-section-text {
  font-size: clamp(0.92rem, 1.1vw, 1.05rem);
  color: #1e2a78;
  line-height: 1.55;
  font-weight: 500;
  text-align: center;
  margin: 0;
}

.goal-section-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  background: #4ea22a;
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.3px;
  width: fit-content;
  border: 2px solid #4ea22a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 18px rgba(78, 162, 42, 0.3);
}

.goal-section-btn i {
  transition: transform 0.3s ease;
}

.goal-section-btn:hover {
  background: #3d8a1f;
  border-color: #3d8a1f;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(78, 162, 42, 0.4);
}

.goal-section-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .goal-section-card {
    left: 5%;
    width: 80%;
    padding: 1.8rem 1.6rem;
  }
}

@media (max-width: 768px) {
  .goal-section {
    height: 60vh;
  }

  .goal-section-bg img {
    content: url('background-three-mobile.png');
  }

  .goal-section-card {
    width: 90%;
    left: 5%;
    padding: 1.5rem 1.4rem;
    border-radius: 0 0 20px 20px;
  }
}

/* ---------------------------------------------------- */
/* SPLIT PROMO SECTIONS — white card + floating product */
/* (Goals & Production, on-brand green gradient)        */
/* ---------------------------------------------------- */
.split-promo {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: radial-gradient(circle at center, #6cbf3f 0%, #4ea22a 60%, #2f7a18 100%);
  padding: 6rem 2rem 3rem;
}

.split-promo-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2rem;
}

/* Mirrored variant (Production): card on the right, product on the left */
.split-promo-reverse .split-card {
  grid-column: 2;
  grid-row: 1;
}

.split-promo-reverse .split-product-wrap {
  grid-column: 1;
  grid-row: 1;
}

/* ---- White glass card ---- */
.split-card {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  padding: 3rem 3.2rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
  text-align: left;
  z-index: 6;
}

.split-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #4ea22a;
}

.split-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: #4ea22a;
}

.split-card-title {
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  font-weight: 800;
  color: #1e2a78;
  letter-spacing: -1px;
  line-height: 1.1;
}

.split-divider {
  display: block;
  width: 80px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, #4ea22a, #ffd95a);
}

.split-card-desc {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  color: #41506b;
  line-height: 1.65;
  font-weight: 500;
  max-width: 460px;
}

.split-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.6rem;
  padding: 0.9rem 2rem;
  background: #4ea22a;
  color: #ffffff;
  border: 2px solid #4ea22a;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 22px rgba(78, 162, 42, 0.32);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.split-card-btn i {
  transition: transform 0.3s ease;
}

.split-card-btn:hover {
  background: #3d8a1f;
  border-color: #3d8a1f;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(78, 162, 42, 0.42);
}

.split-card-btn:hover i {
  transform: translateX(4px);
}

/* ---- Floating product ---- */
.split-product-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
}

.split-product {
  max-width: 100%;
  max-height: 72vh;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 55px rgba(0, 0, 0, 0.35));
  animation: product-float 6s ease-in-out infinite;
}

/* ---- Decorative scattered elements ---- */
.split-deco {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.25));
  animation: deco-float 7s ease-in-out infinite;
}

.split-deco-glass {
  bottom: 9%;
  right: 6%;
  width: clamp(120px, 13vw, 220px);
  animation-delay: 1s;
}

.split-deco-straws {
  top: 16%;
  right: 10%;
  width: clamp(70px, 7vw, 120px);
  animation-delay: 2.5s;
}

.split-promo-reverse .split-deco-glass {
  right: auto;
  left: 6%;
}

.split-promo-reverse .split-deco-straws {
  right: auto;
  left: 10%;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .split-promo-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.5rem;
    max-width: 560px;
  }

  /* Stack: product on top, card below — in both variants */
  .split-card,
  .split-promo-reverse .split-card {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
  }

  .split-product-wrap,
  .split-promo-reverse .split-product-wrap {
    grid-column: 1;
    grid-row: 1;
  }

  .split-product {
    max-height: 38vh;
  }

  .split-deco {
    display: none;
  }
}

@media (max-width: 768px) {
  .split-promo {
    padding: 7rem 1.25rem 2.5rem;
    align-items: flex-start;
    overflow-y: auto;
  }

  .split-card {
    padding: 2rem 1.6rem;
    border-radius: 22px;
  }

  .split-product {
    max-height: 34vh;
  }
}

/* ---------------------------------------------------- */
/* SUBPAGES COMMON STYLES (goal.html, history.html)     */
/* ---------------------------------------------------- */
html.subpage {
  scroll-snap-type: none;
  height: auto;
  overflow-y: auto;
}

html.subpage body {
  background-attachment: scroll;
  min-height: 100vh;
  overflow-y: visible;
  padding-bottom: 0;
}

html.subpage section {
  height: auto;
  width: 100%;
  scroll-snap-align: unset;
  scroll-snap-stop: unset;
}

/* ---- Scroll Reveal Animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Stagger delays */
.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; }

/* ---- Page Hero Banner ---- */
.subpage-hero {
  position: relative;
  min-height: 420px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: left;
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
}

.subpage-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.subpage-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.subpage-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(15, 35, 10, 0.3) 0%,
      rgba(15, 35, 10, 0.15) 30%,
      rgba(15, 35, 10, 0.6) 65%,
      rgba(20, 50, 15, 1) 100%);
}

.subpage-hero-content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 0 2rem 3.5rem;
  max-width: 960px;
  width: 100%;
}

.subpage-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-accent);
  margin-bottom: 1rem;
  opacity: 0;
  animation: hero-fade-up 0.8s 0.3s ease forwards;
}

.subpage-hero-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--text-accent);
}

.subpage-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--text-primary);
  line-height: 1.05;
  margin-bottom: 1rem;
  opacity: 0;
  animation: hero-fade-up 0.8s 0.5s ease forwards;
}

.subpage-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  max-width: 560px;
  line-height: 1.6;
  opacity: 0;
  animation: hero-fade-up 0.8s 0.7s ease forwards;
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- Content Container ---- */
.subpage-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 1.5rem 6rem;
  position: relative;
  z-index: 10;
}

.subpage-card {
  background: rgba(15, 35, 10, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 28px;
  padding: 3.5rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* ---- Section Blocks ---- */
.subpage-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.subpage-section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  position: relative;
  padding-left: 1.5rem;
}

.subpage-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--text-accent), rgba(255, 217, 90, 0.2));
}

.subpage-para {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  text-align: justify;
}

/* ---- Section Divider ---- */
.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--text-accent), transparent);
  margin: 0 auto;
  opacity: 0.4;
}

/* ---- Alternating Row Layout ---- */
.alternating-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3.5rem;
}

.alternating-row.row-reverse {
  flex-direction: row-reverse;
}

.subpage-text-col {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.subpage-image-col {
  flex: 0.8;
  display: flex;
  justify-content: center;
}

.subpage-image-wrap {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.subpage-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.subpage-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.subpage-image-wrap:hover img {
  transform: scale(1.05);
}

/* ---- Philosophy Highlight ---- */
.philosophy-highlight {
  position: relative;
  background: rgba(232, 213, 183, 0.04);
  border-radius: 22px;
  padding: 2.8rem;
  border: 1px solid rgba(232, 213, 183, 0.12);
}

.philosophy-highlight .subpage-section-title::before {
  background: linear-gradient(180deg, var(--text-accent), rgba(232, 213, 183, 0.2));
}

/* ---- Back Button ---- */
.back-btn-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.back-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 2rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.35s ease;
}

.back-home-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(-4px);
}

.back-home-btn i {
  transition: transform 0.3s ease;
}

.back-home-btn:hover i {
  transform: translateX(-4px);
}

/* ---- Timeline (history.html) ---- */
.timeline-container {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 3.5rem;
  gap: 0;
  margin-top: 1.5rem;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg,
    var(--text-accent) 0%,
    rgba(232, 213, 183, 0.3) 50%,
    rgba(232, 213, 183, 0.08) 100%);
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-bottom: 3.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-marker {
  position: absolute;
  left: calc(-3.5rem);
  top: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-color-end);
  border: 3px solid var(--text-accent);
  z-index: 2;
  transition: all 0.35s ease;
}

.timeline-item:hover .timeline-marker {
  background: var(--text-accent);
  transform: scale(1.15);
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-accent);
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  line-height: 1.25;
}

.timeline-desc {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* Timeline Grid (with images) */
.timeline-item.timeline-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2.5rem;
}

.timeline-text {
  flex: 1.2;
  display: flex;
  flex-direction: column;
}

.timeline-image {
  flex: 0.8;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.timeline-image-wrap {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.timeline-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.timeline-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-image-wrap:hover img {
  transform: scale(1.05);
}

/* ---- Subpage Footer Adjustments ---- */
.subpage html, .subpage body {
  overflow-x: hidden;
}

/* ---- Made in Turkistan Badge ---- */
.made-in-container {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.made-in-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.made-in-logo {
  height: 26px;
  width: auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  vertical-align: middle;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.made-in-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 8px rgba(255, 255, 255, 0.2);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .subpage-hero {
    min-height: 320px;
    justify-content: flex-end;
  }

  .subpage-hero-content {
    padding: 0 1.5rem 2.5rem;
  }

  .subpage-title {
    letter-spacing: -1px;
  }

  .subpage-container {
    padding: 2rem 1rem 4rem;
  }

  .subpage-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    gap: 2.5rem;
  }

  .subpage-para {
    text-align: left;
  }

  .timeline-container {
    padding-left: 2rem;
  }

  .timeline-container::before {
    left: 5px;
  }

  .timeline-marker {
    left: calc(-2rem);
    width: 12px;
    height: 12px;
  }

  .timeline-item {
    padding-bottom: 2.5rem;
  }

  .alternating-row,
  .alternating-row.row-reverse {
    flex-direction: column !important;
    gap: 1.5rem;
  }

  .subpage-image-col {
    width: 100%;
  }

  .timeline-item.timeline-grid {
    flex-direction: column !important;
    gap: 1.5rem;
  }

  .timeline-image {
    width: 100%;
  }

  .philosophy-highlight {
    padding: 1.8rem;
  }
}

/* ---------------------------------------------------- */
/* CATALOG PAGE STYLES                                  */
/* ---------------------------------------------------- */

.catalog-hero {
  background: url('catalog-background.png') center center / cover no-repeat;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 3rem;
  position: relative;
}

.catalog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.125);
}

.catalog-hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: #1f4d12;
  letter-spacing: -2px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.catalog-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.catalog-category {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.catalog-category-title {
  font-family: 'RUSJellyka', var(--font-family);
  font-size: clamp(2.5rem, 5.8vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1.7px;
  position: relative;
  padding-left: 1.5rem;
}

.catalog-category-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--text-accent), rgba(255, 217, 90, 0.3));
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .catalog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .catalog-container {
    padding: 2.5rem 1.5rem 5rem;
    gap: 3.5rem;
  }
  
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
  
  .catalog-card {
    padding: 1.2rem;
  }
  
  .catalog-card-image {
    height: 220px;
    border-radius: 10px;
  }
  
  .catalog-card-title {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .catalog-hero {
    min-height: 240px;
    padding: 5rem 1.5rem 2.5rem;
  }
  
  .catalog-hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    letter-spacing: -1.5px;
  }
  
  .catalog-container {
    padding: 2rem 1rem 4rem;
    gap: 3rem;
  }
  
  .catalog-category {
    gap: 1.5rem;
  }
  
  .catalog-category-title {
    font-size: clamp(3.6rem, 12vw, 5rem);
    padding-left: 1.2rem;
  }
  
  .catalog-category-title::before {
    width: 3px;
  }
  
  .catalog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .catalog-card {
    padding: 1rem;
    border-radius: 16px;
  }
  
  .catalog-card::before {
    border-radius: 18px;
  }
  
  .catalog-card::after {
    border-radius: 16px;
  }
  
  .catalog-card-image {
    height: 180px;
    border-radius: 10px;
  }
  
  .catalog-card-ingredients {
    border-radius: 0 0 10px 10px;
    padding: 0.8rem;
  }
  
  .catalog-card-ingredients p {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  .catalog-card-title {
    font-size: 0.95rem;
  }
  
  .catalog-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.7rem;
    top: 0.8rem;
    right: 0.8rem;
  }
}

@media (max-width: 576px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
  }
  
  .catalog-card {
    padding: 0.9rem;
    gap: 0.8rem;
  }
  
  .catalog-card-image {
    height: 160px;
  }
  
  .catalog-card-title {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .catalog-hero {
    min-height: 200px;
    padding: 4.5rem 1rem 2rem;
  }
  
  .catalog-hero-title {
    font-size: clamp(2rem, 12vw, 3rem);
  }
  
  .catalog-container {
    padding: 1.5rem 0.8rem 3rem;
    gap: 2.5rem;
  }
  
  .catalog-category {
    gap: 1.2rem;
  }
  
  .catalog-category-title {
    font-size: clamp(3.2rem, 14vw, 4.4rem);
    padding-left: 1rem;
  }
  
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  
  .catalog-card {
    padding: 0.8rem;
    border-radius: 14px;
  }
  
  .catalog-card::before {
    border-radius: 16px;
  }
  
  .catalog-card::after {
    border-radius: 14px;
  }
  
  .catalog-card-image {
    height: 150px;
    border-radius: 8px;
  }
  
  .catalog-card-ingredients {
    border-radius: 0 0 8px 8px;
    padding: 0.7rem;
  }
  
  .catalog-card-ingredients p {
    font-size: 0.8rem;
  }
  
  .catalog-card-title {
    font-size: 0.85rem;
  }
  
  .catalog-badge {
    font-size: 0.6rem;
    padding: 0.3rem 0.6rem;
    top: 0.6rem;
    right: 0.6rem;
  }
}

.catalog-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

.catalog-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: conic-gradient(from 0deg, #a8d88f, #4ea22a, #1f4d12, #4ea22a, #a8d88f);
  z-index: -1;
  transition: opacity 0.3s ease;
}

.catalog-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: #ffffff;
  z-index: -1;
}

.catalog-card:hover::before {
  animation: rotate-border 3s linear infinite;
}

@keyframes rotate-border {
  0% {
    background: conic-gradient(from 0deg, #a8d88f, #4ea22a, #1f4d12, #4ea22a, #a8d88f);
  }
  100% {
    background: conic-gradient(from 360deg, #a8d88f, #4ea22a, #1f4d12, #4ea22a, #a8d88f);
  }
}

.catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(78, 162, 42, 0.25);
}

.catalog-card-image {
  position: relative;
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 12px;
}

.catalog-card-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.catalog-card:hover .catalog-card-image img {
  transform: scale(1.08);
}

.catalog-card-ingredients {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(31, 77, 18, 0.95);
  backdrop-filter: blur(8px);
  padding: 1rem;
  border-radius: 0 0 12px 12px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 100%;
  overflow-y: auto;
}

.catalog-card:hover .catalog-card-ingredients,
.catalog-card.active .catalog-card-ingredients {
  transform: translateY(0);
}

.catalog-card-ingredients p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

.catalog-card-volume {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-accent);
  margin-bottom: 0.8rem;
  letter-spacing: 0.5px;
}

.catalog-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f4d12;
  text-align: center;
  line-height: 1.3;
}

.catalog-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #e63946;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.4rem 0.8rem;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 90% 85%, 80% 100%, 70% 85%, 60% 100%, 50% 85%, 40% 100%, 30% 85%, 20% 100%, 10% 85%, 0 100%);
  z-index: 10;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.4);
  text-transform: uppercase;
}

.catalog-footer-gradient {
  height: 120px;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(2, 26, 92, 0.4) 50%,
    rgba(2, 26, 92, 0.8) 100%);
  margin-top: -2rem;
}

/* ---------------------------------------------------- */
/* GOALS PROMO (text-only, white background)            */
/* ---------------------------------------------------- */

/* ---------------------------------------------------- */
/* GOALS BLOCK — full-width dotted background            */
/* ---------------------------------------------------- */

.goals-section {
  position: relative;
  background: #ffffff;
  color: #1a2b6d;
  padding: 5rem 1.5rem;
  text-align: center;
}

.goals-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, #c4e0f3 3.5px, transparent 4px);
  background-size: 18px 18px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
}

.goals-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 1;
}

.goals-title {
  font-family: var(--font-family);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #1a2b6d;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.goals-subtitle {
  font-family: var(--font-family);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #1a2b6d;
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}

.goals-brand {
  display: table;
  margin: 0 auto 2.5rem;
  padding: 1rem 0;
}

.goals-brand-text {
  font-family: 'Roboto Slab', Georgia, 'Times New Roman', serif;
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  font-weight: 700;
  color: #1a2b6d;
  letter-spacing: -0.02em;
  line-height: 1;
}

.goals-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #9bc53d;
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 1.6rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.goals-btn:hover,
.goals-btn:focus {
  background: #86ab2e;
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .goals-section {
    padding: 3.5rem 1rem;
  }

  .goals-brand {
    padding: 0.5rem 0;
  }

  .goals-brand-text {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
}

