/* ============================================
   FHRESH PRESSED LLC
   Cold-Pressed Juice Bar Website

   Color Palette:
   - Primary Green:   #2E7D32 (deep green, nature/health)
   - Bright Green:    #4CAF50 (vibrant, fresh)
   - Light Green:     #E8F5E9 (soft background)
   - Citrus Orange:   #FF9800 (energy, citrus)
   - Deep Orange:     #E65100 (warmth, appetite)
   - Lemon Yellow:    #FDD835 (brightness, optimism)
   - Berry Purple:    #7B1FA2 (acai, berry)
   - White:           #FFFFFF
   - Off-White:       #FAFDF7 (warm white with green tint)
   - Charcoal:        #1A2E1A (dark green-tinted black)
   - Gray:            #6B7B6B

   Typography:
   - Headings: Outfit (800/700) or Playfair Display (italic accents)
   - Body: Outfit (300/400)

   ============================================ */

/* ============================================
   RESET & BASE STYLES
   ============================================ */

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

:root {
  /* Primary Colors */
  --green-900: #1B5E20;
  --green-800: #2E7D32;
  --green-700: #388E3C;
  --green-600: #43A047;
  --green-500: #4CAF50;
  --green-400: #66BB6A;
  --green-300: #81C784;
  --green-200: #A5D6A7;
  --green-100: #C8E6C9;
  --green-50:  #E8F5E9;

  /* Accent Colors */
  --orange-600: #E65100;
  --orange-500: #FF9800;
  --orange-400: #FFA726;
  --orange-300: #FFB74D;
  --orange-100: #FFE0B2;
  --yellow-500: #FDD835;
  --yellow-400: #FFEE58;
  --purple-700: #7B1FA2;
  --purple-500: #AB47BC;
  --red-500:    #EF5350;

  /* Neutrals */
  --white:      #FFFFFF;
  --off-white:  #FAFDF7;
  --cream:      #F5F9F0;
  --gray-100:   #F0F4EC;
  --gray-200:   #E0E6DA;
  --gray-300:   #C5CFC0;
  --gray-400:   #9BA898;
  --gray-500:   #6B7B6B;
  --gray-600:   #4A5A4A;
  --gray-700:   #354035;
  --charcoal:   #1A2E1A;

  /* Semantic */
  --text-primary:    var(--charcoal);
  --text-secondary:  var(--gray-500);
  --text-muted:      var(--gray-400);
  --bg-primary:      var(--off-white);
  --bg-section:      var(--white);
  --bg-card:         var(--white);
  --border-light:    var(--gray-200);
  --border-medium:   var(--gray-300);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--green-500), var(--green-800));
  --gradient-accent:  linear-gradient(135deg, var(--orange-500), var(--orange-600));
  --gradient-hero:    linear-gradient(135deg, var(--green-500), #26A69A);
  --gradient-text:    linear-gradient(135deg, var(--green-600), var(--orange-500));

  /* Spacing */
  --section-padding: 100px;
  --container-max: 1200px;
  --container-padding: 24px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26, 46, 26, 0.06);
  --shadow-md: 0 4px 16px rgba(26, 46, 26, 0.08);
  --shadow-lg: 0 8px 32px rgba(26, 46, 26, 0.1);
  --shadow-xl: 0 16px 48px rgba(26, 46, 26, 0.12);
  --shadow-glow: 0 0 40px rgba(76, 175, 80, 0.15);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 200ms var(--ease-out);
  --transition-base: 300ms var(--ease-out);
  --transition-slow: 500ms var(--ease-out);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--green-700);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--green-500);
}

ul {
  list-style: none;
}

::selection {
  background-color: var(--green-200);
  color: var(--green-900);
}


/* ============================================
   UTILITY CLASSES
   ============================================ */

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

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green-600);
  background: var(--green-50);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.text-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(76, 175, 80, 0.4);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-300);
}

.btn--outline:hover {
  background: var(--green-50);
  border-color: var(--green-500);
  transform: translateY(-2px);
  color: var(--green-700);
}

.btn--sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}


/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }


/* ============================================
   HEADER / NAVIGATION
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-base);
  background: transparent;
}

.header--scrolled {
  background: rgba(250, 253, 247, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal);
}

.logo__icon {
  color: var(--green-600);
  display: flex;
  transition: transform var(--transition-base);
}

.logo:hover .logo__icon {
  transform: rotate(-10deg) scale(1.05);
}

.logo__name {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}

.logo__name--accent {
  color: var(--green-600);
}

/* Navigation */
.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.nav__link:hover {
  color: var(--green-700);
  background: var(--green-50);
}

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

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.mobile-toggle__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all var(--transition-fast);
  transform-origin: center;
}

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

.mobile-toggle--active .mobile-toggle__bar:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 24px;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: all var(--transition-base);
}

.mobile-menu--open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu__link {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-menu__link:hover {
  color: var(--green-700);
  background: var(--green-50);
}

.mobile-menu__cta {
  margin-top: 12px;
  text-align: center;
}


/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--off-white);
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__circle {
  position: absolute;
  border-radius: 50%;
}

.hero__circle--1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.06) 0%, transparent 70%);
}

.hero__circle--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(255, 152, 0, 0.05) 0%, transparent 70%);
}

.hero__circle--3 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(76, 175, 80, 0.04) 0%, transparent 70%);
}

.hero__leaf {
  position: absolute;
  color: var(--green-500);
  animation: float 6s ease-in-out infinite;
}

.hero__leaf--1 {
  top: 15%;
  right: 5%;
  animation-delay: 0s;
}

.hero__leaf--2 {
  bottom: 20%;
  left: 5%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-200);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero__title--accent {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Hero Stats */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero__stat {
  text-align: center;
}

.hero__stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1;
}

.hero__stat-suffix {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-700);
}

.hero__stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

/* Hero Visual */
.hero__visual {
  display: flex;
  justify-content: center;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero__image-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--green-50), var(--cream));
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--green-100);
}

.hero__bottles {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  padding: 20px;
}

.hero__bottle {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bottle-bob 3s ease-in-out infinite;
}

.hero__bottle:nth-child(2) { animation-delay: 0.3s; }
.hero__bottle:nth-child(3) { animation-delay: 0.6s; }
.hero__bottle:nth-child(4) { animation-delay: 0.9s; }

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

.hero__bottle-cap {
  width: 24px;
  height: 12px;
  border-radius: 4px 4px 0 0;
  background: rgba(0,0,0,0.15);
}

.hero__bottle-body {
  width: 56px;
  height: 120px;
  border-radius: 8px 8px 12px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  position: relative;
  overflow: hidden;
}

.hero__bottle--green .hero__bottle-body {
  background: linear-gradient(180deg, #66BB6A, #2E7D32);
}

.hero__bottle--orange .hero__bottle-body {
  background: linear-gradient(180deg, #FFA726, #E65100);
}

.hero__bottle--red .hero__bottle-body {
  background: linear-gradient(180deg, #EF5350, #B71C1C);
}

.hero__bottle--yellow .hero__bottle-body {
  background: linear-gradient(180deg, #FFEE58, #F9A825);
}

.hero__bottle--yellow .hero__bottle-body span {
  color: rgba(0,0,0,0.5);
}

.hero__fruit-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__fruit {
  position: absolute;
  font-size: 2rem;
  animation: fruit-float 4s ease-in-out infinite;
  animation-delay: var(--delay);
  top: calc(50% + var(--y));
  left: calc(50% + var(--x));
  opacity: 0.6;
}

@keyframes fruit-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.6; }
  25% { transform: translate(10px, -15px) rotate(10deg); opacity: 0.8; }
  50% { transform: translate(-5px, -25px) rotate(-5deg); opacity: 0.6; }
  75% { transform: translate(15px, -10px) rotate(15deg); opacity: 0.8; }
}

/* Hero Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--green-300);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--green-600);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { top: -100%; }
  100% { top: 100%; }
}


/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about__visual {
  position: relative;
}

.about__image-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.about__image-placeholder {
  aspect-ratio: 5/6;
  background: linear-gradient(145deg, var(--green-50), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green-100);
  border-radius: var(--radius-xl);
}

.about__illustration svg {
  width: 60%;
  height: auto;
  opacity: 0.8;
}

.about__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gradient-accent);
  border-radius: var(--radius-xl);
  opacity: 0.1;
  z-index: -1;
}

.about__experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
}

.about__experience-text {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.about__experience-year {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--green-700);
  line-height: 1.1;
  margin: 4px 0;
}

.about__text {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.about__value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about__value-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  color: var(--green-600);
  border-radius: var(--radius-md);
}

.about__value strong {
  display: block;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.about__value p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ============================================
   MENU SECTION
   ============================================ */

.menu {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

/* Tabs */
.menu__tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.menu__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: var(--white);
  color: var(--gray-500);
  cursor: pointer;
  transition: all var(--transition-base);
}

.menu__tab:hover {
  border-color: var(--green-300);
  color: var(--green-700);
}

.menu__tab--active {
  background: var(--gradient-primary);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.25);
}

.menu__tab--active svg {
  stroke: var(--white);
}

/* Panels */
.menu__panel {
  display: none;
}

.menu__panel--active {
  display: block;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* Menu Card */
.menu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.menu-card__color {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.menu-card__emoji {
  font-size: 2.5rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.15));
}

.menu-card__content {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.menu-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
}

.menu-card__price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--green-700);
  white-space: nowrap;
}

.menu-card__desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.menu-card__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.menu-card__tag {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--green-50);
  color: var(--green-700);
}


/* ============================================
   PROCESS SECTION
   ============================================ */

.process {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.process__timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.process__line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--green-100);
}

.process__step {
  position: relative;
  display: flex;
  gap: 32px;
  padding-bottom: 48px;
}

.process__step:last-child {
  padding-bottom: 0;
}

.process__step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
  position: relative;
  z-index: 1;
}

.process__step-content {
  flex: 1;
  padding-top: 4px;
}

.process__step-icon {
  color: var(--green-600);
  margin-bottom: 12px;
}

.process__step-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.process__step-content p {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ============================================
   FEATURES / WHY CHOOSE US
   ============================================ */

.features {
  padding: var(--section-padding) 0;
  background: var(--green-50);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.features__card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--green-100);
  transition: all var(--transition-base);
}

.features__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.features__icon-wrap {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  color: var(--accent, var(--green-600));
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.features__card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.features__card p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}


/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--off-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  color: var(--yellow-500);
  margin-bottom: 16px;
}

.testimonial-card__quote {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-weight: 700;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}


/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
  padding: 80px 0;
  background: var(--off-white);
}

.cta-banner__inner {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-banner__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-banner__inner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
}

.cta-banner__content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-banner__content h2 .text-gradient {
  background: linear-gradient(135deg, var(--yellow-400), var(--orange-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-banner__content p {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.cta-banner__actions .btn--primary {
  background: var(--white);
  color: var(--green-800);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cta-banner__actions .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
  color: var(--green-800);
}

.cta-banner__actions .btn--outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.cta-banner__actions .btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}


/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.contact__info-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact__info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  color: var(--green-600);
  border-radius: var(--radius-md);
}

.contact__info-item strong {
  display: block;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.contact__info-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact__info-item a {
  color: var(--green-700);
  font-weight: 500;
}

.contact__socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.contact__social {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.contact__social:hover {
  background: var(--green-600);
  color: var(--white);
  transform: translateY(-2px);
}

/* Contact Form */
.contact__form-wrapper {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border-light);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-600);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--charcoal);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-400);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-300);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%236B7B6B' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* Map */
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.contact__map-placeholder {
  height: 240px;
  background: linear-gradient(145deg, var(--green-50), var(--cream));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--green-600);
}

.contact__map-placeholder p {
  font-size: 0.95rem;
  color: var(--gray-600);
}


/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo--footer {
  margin-bottom: 16px;
}

.logo--footer .logo__icon {
  color: var(--green-400);
}

.logo--footer .logo__name {
  color: var(--white);
}

.logo--footer .logo__name--accent {
  color: var(--green-400);
}

.footer__tagline {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}

.footer__links-group h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__links-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links-group li,
.footer__links-group a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer__links-group a:hover {
  color: var(--green-400);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__bottom-links a:hover {
  color: var(--green-400);
}


/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(76, 175, 80, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  z-index: 999;
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(76, 175, 80, 0.4);
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px;
  }

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

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .hero__image-wrapper {
    max-width: 360px;
  }

  .hero__scroll {
    display: none;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__visual {
    max-width: 400px;
    margin: 0 auto;
  }

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

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

  .testimonials__grid .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
  }

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
    padding: 48px 32px;
  }

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

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer__top .footer__brand {
    grid-column: span 2;
  }
}

/* Mobile: < 768px */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px;
    --container-padding: 20px;
  }

  /* Header */
  .nav {
    display: none;
  }

  .header__cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  /* Hero */
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero__badge {
    font-size: 0.78rem;
  }

  .hero__subtitle {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero__stats {
    gap: 16px;
  }

  .hero__stat-number {
    font-size: 1.6rem;
  }

  .hero__image-wrapper {
    max-width: 280px;
  }

  .hero__bottle-body {
    width: 44px;
    height: 90px;
  }

  /* Menu */
  .menu__tabs {
    gap: 6px;
  }

  .menu__tab {
    font-size: 0.8rem;
    padding: 10px 16px;
  }

  .menu__tab svg {
    display: none;
  }

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

  /* Process */
  .process__step {
    gap: 20px;
  }

  .process__step-number {
    width: 48px;
    height: 48px;
    font-size: 0.85rem;
  }

  .process__line {
    left: 23px;
  }

  /* Features */
  .features__grid {
    grid-template-columns: 1fr;
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid .testimonial-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  /* CTA */
  .cta-banner__inner {
    padding: 36px 24px;
  }

  .cta-banner__actions {
    flex-direction: column;
    width: 100%;
  }

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

  /* Contact */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact__form-wrapper {
    padding: 24px;
  }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__top .footer__brand {
    grid-column: span 1;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Small phones: < 480px */
@media (max-width: 480px) {
  .hero__title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .about__experience-badge {
    right: 10px;
    bottom: 20px;
    padding: 12px 18px;
  }

  .about__experience-year {
    font-size: 1.4rem;
  }

  .menu-card__color {
    height: 80px;
  }

  .cta-banner__content h2 {
    font-size: 1.5rem;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}


/* ============================================
   FORM SUCCESS STATE
   ============================================ */

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-50);
  color: var(--green-600);
  border-radius: 50%;
}

.form-success h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}


/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  .header,
  .hero__bg,
  .hero__scroll,
  .back-to-top,
  .mobile-toggle,
  .mobile-menu {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }
}
