/* ═══════════════════════════════════════════════
   GingerMax — style.css
   ═══════════════════════════════════════════════ */

:root {
  --green-dark: #4a6741;
  --green-mid: #8bab6e;
  --green-light: #c5d9a4;
  --green-pale: #dce8c8;
  --green-sage: #c4d1ac;
  --beige: #f2ece0;
  --beige-dark: #e8dfd0;
  --yellow: #f2d422;
  --white: #fff;
  --black: #1a1a1a;
  --gray: #666;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--black);
  background: var(--beige);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ═══════════════ NAV — always green ═══════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(74, 103, 65, .95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
}
.nav-logo img { height: 50px; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--white); font-weight: 500; font-size: .95rem;
  letter-spacing: .03em; position: relative; transition: opacity .3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--yellow); transition: width .3s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--yellow); }
.nav-links a.active::after { width: 100%; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; z-index: 101;
}
.nav-toggle span { width: 28px; height: 2px; background: var(--white); transition: all .3s; }

/* ═══════════════ LANGUAGE SWITCHER ═══════════════ */
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-langs {
  display: flex; align-items: center; gap: .55rem;
  list-style: none;
}
.nav-langs a {
  color: var(--white); font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  opacity: .55; transition: opacity .3s;
  padding: .2rem .1rem;
}
.nav-langs a:hover { opacity: .9; }
.nav-langs a.active { opacity: 1; color: var(--yellow); }
.nav-langs .sep { color: var(--white); opacity: .3; font-size: .7rem; user-select: none; }

/* ═══════════════ HERO HOMEPAGE ═══════════════ */
.hero {
  min-height: 85vh; position: relative;
  display: flex; align-items: center; overflow: hidden;
  background: url('../img/BGsite.png') center top / cover no-repeat,
              url('../img/hero-bg.jpg') center / cover no-repeat,
              var(--green-dark);
}
.hero-content {
  max-width: 1400px; margin: 0 auto;
  padding: 8rem 3rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; align-items: center;
  position: relative; z-index: 2;
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: 900; line-height: 1.08;
  color: #536f2f; margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .08);
}
.hero-text h1 span { display: block; }
.hero-text p {
  font-size: 1.15rem; line-height: 1.7;
  color: #7a7a7a;
  max-width: 480px; margin-bottom: 2rem;
}
.btn-primary {
  display: inline-block; padding: 1rem 2.5rem;
  background: var(--white); color: var(--green-dark);
  font-family: 'DM Sans', sans-serif;
  font-weight: 700; font-size: 1rem;
  border: none; border-radius: 50px;
  cursor: pointer; transition: all .3s; letter-spacing: .02em;
}
.btn-primary:hover {
  background: var(--yellow); color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}
.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-product {
  width: 100%; max-width: 450px; margin: 0 auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, .3));
}

.section-label {
  font-weight: 600; font-size: .85rem;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--green-dark); margin-bottom: 1rem; display: block;
}

/* ═══════════════ VIDEO 1 — white bg ═══════════════ */
.video-section { padding: 4rem 3rem; background: var(--white); text-align: center; }
.video-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; margin-bottom: 0;
}
.video-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: var(--gray);
  text-align: center;
  max-width: 600px;
  margin: .8rem auto 2.5rem;
  line-height: 1.6;
}
.video-section .video-subtitle[hidden] { display: none; }
.video-section .video-subtitle[hidden] ~ .video-wrapper { margin-top: 3rem; }

.video-wrapper {
  max-width: 800px; margin: 0 auto;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}
.video-wrapper video { width: 100%; display: block; }

/* ═══════════════ INGREDIENTS ═══════════════ */
.ingredients {
  padding: 4rem 3rem 2rem;
  background: linear-gradient(180deg, var(--beige) 0%, var(--beige-dark) 100%);
  text-align: center;
}
.ingredients h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; margin-bottom: 1rem;
}
.ingredients > p:not(.ingredients-disclaimer) {
  font-size: 1.05rem; color: var(--gray);
  max-width: 650px; margin: 0 auto 4rem; line-height: 1.7;
}
.ingredients-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem;
}
.ingredient-card {
  background: var(--white); border-radius: 20px;
  padding: 1.8rem 1rem 1.5rem; text-align: center;
  transition: all .4s; border: 1px solid rgba(0, 0, 0, .04);
  cursor: pointer; box-shadow: 0 4px 15px rgba(0, 0, 0, .04);
}
.ingredient-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(74, 103, 65, .15);
}
.ingredient-card .icon {
  width: 120px; height: 120px; margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--beige);
  overflow: hidden; border: 3px solid var(--green-light);
}
.ingredient-card .icon img {
  width: 100px; height: 100px;
  object-fit: cover; border-radius: 50%;
}
.ingredient-card h3 { font-weight: 700; font-size: 1rem; margin-bottom: .3rem; }
.ingredient-card .tap-hint { font-size: .75rem; color: var(--green-mid); opacity: .7; }
.ingredients .ingredients-disclaimer {
  max-width: 700px;
  font-size: .75rem;
  color: var(--gray);
  line-height: 1.6;
  opacity: .6;
  margin: 3rem auto 0;
}

/* ═══════════════ MODAL ═══════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, .5); z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 2rem;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white); border-radius: 20px;
  padding: 2.5rem; max-width: 500px; width: 100%;
  position: relative; max-height: 80vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 1rem; right: 1.5rem;
  font-size: 1.5rem; cursor: pointer; color: var(--gray);
  background: none; border: none;
}
.modal-close:hover { color: var(--black); }
.modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 800;
  margin-bottom: .5rem; color: var(--green-dark);
}
.modal .modal-subtitle { font-size: .9rem; color: var(--green-mid); font-weight: 600; margin-bottom: 1rem; }
.modal .virtue-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.modal .virtue-list li {
  padding: .6rem 0; border-bottom: 1px solid var(--beige);
  font-size: .9rem; display: flex; align-items: flex-start; gap: .7rem;
}
.modal .virtue-list li::before { content: '🌿'; font-size: .8rem; flex-shrink: 0; margin-top: 2px; }
.modal .modal-disclaimer {
  font-size: .75rem; color: var(--gray);
  line-height: 1.5; padding-top: 1rem; border-top: 1px solid var(--beige);
}

/* ═══════════════ WHY ═══════════════ */
.why-section { padding: 4rem 3rem; background: var(--green-pale); overflow: hidden; }
.why-content {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 3rem; align-items: stretch;
}
.why-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; margin-bottom: 1rem; color: var(--green-dark);
  white-space: nowrap;
}
.why-text > p {
  font-size: 1.05rem; color: var(--gray);
  line-height: 1.7; margin-bottom: 2rem;
  max-width: 70ch;
}
.benefits-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
}
.benefit-item {
  flex: 0 0 200px;
  display: flex; align-items: center; gap: .8rem;
  padding: .9rem 1.2rem; background: var(--white);
  border-radius: 12px; transition: all .3s;
  min-height: 4.75rem; /* uniform card height across languages */
}
.benefit-item:hover { background: var(--beige); transform: translateX(4px); }
.benefit-icon {
  width: 36px; height: 36px; background: var(--green-dark);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.benefit-icon svg { width: 18px; height: 18px; fill: var(--white); }
.benefit-item span { font-weight: 600; font-size: .9rem; line-height: 1.3; }
.why-image { display: flex; justify-content: center; align-items: stretch; }
.why-image img {
  height: 100%; width: auto; max-width: 500px;
  max-height: 500px; object-fit: contain;
  filter: drop-shadow(0 25px 60px rgba(0, 0, 0, .2));
}

/* ═══════════════ VIDEO 2 ═══════════════ */
.video-section-2 {
  padding: 4rem 3rem; text-align: center;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
}
.video-section-2 .section-label {
  color: rgba(255, 255, 255, .9);
}
.video-section-2 h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--white); margin-bottom: 0;
}
.video-section-2 .video-subtitle {
  color: rgba(255, 255, 255, .85);
  margin: .8rem auto 2.5rem;
}
.video-section-2 .video-subtitle[hidden] { display: none; }
.video-section-2 .video-subtitle[hidden] ~ .video-wrapper { margin-top: 3rem; }
.video-section-2 .video-wrapper { box-shadow: 0 20px 60px rgba(0, 0, 0, .3); }

/* ═══════════════ CLIENTS ═══════════════ */
.clients { padding: 4rem 3rem; background: var(--white); text-align: center; }
.clients h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800; margin-bottom: 3rem;
}
.clients-grid {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 1.5rem 2rem;
}

/* Each client = clickable card with UNIFORM box size. */
.client-item {
  width: 200px;
  height: 100px;
  padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  opacity: 1;
  transition: transform .35s cubic-bezier(.16, 1, .3, 1),
              box-shadow .35s cubic-bezier(.16, 1, .3, 1),
              background .35s cubic-bezier(.16, 1, .3, 1);
  cursor: pointer;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}
.client-item img {
  max-width: 100%;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

/* Boost modifier for logos that appear too small */
.client-item--boost {
  padding: .4rem .8rem;
}
.client-item--boost img {
  max-height: 92px;
  max-width: 100%;
}

@media (hover: hover) {
  .client-item:hover {
    transform: translateY(-4px) scale(1.06);
    background: var(--white);
    box-shadow: 0 18px 40px rgba(74, 103, 65, .18);
  }
}

.client-item:focus-visible {
  outline: none;
  transform: scale(1.03);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--green-light),
              0 14px 36px rgba(74, 103, 65, .15);
}

@media (hover: none) {
  .client-item {
    background: var(--white);
    border: 1px solid rgba(74, 103, 65, .1);
    box-shadow: 0 2px 10px rgba(74, 103, 65, .06);
  }
  .client-item:active {
    transform: scale(.96);
    box-shadow: 0 4px 14px rgba(74, 103, 65, .12);
  }
}

/* ═══════════════ CONTACT ═══════════════ */
.contact { padding: 4rem 3rem; background: var(--beige); }
.contact-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.contact h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; margin-bottom: 1rem;
}
.contact-inner > p { font-size: 1.05rem; color: var(--gray); margin-bottom: 3rem; line-height: 1.7; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; text-align: left; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .5rem; }
.form-group input,
.form-group textarea {
  width: 100%; padding: 1rem 1.2rem;
  border: 2px solid var(--beige-dark); border-radius: 12px;
  font-family: 'DM Sans', sans-serif; font-size: 1rem;
  background: var(--white); color: var(--black);
  transition: border-color .3s; outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--green-mid); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-submit { margin-top: .5rem; }
.form-submit .btn-primary { width: 100%; padding: 1.1rem; font-size: 1.05rem; }
.form-status { text-align: center; padding: 1rem; border-radius: 12px; font-weight: 500; display: none; }
.form-status.success { display: block; background: var(--green-pale); color: var(--green-dark); }

/* ═══════════════ FOOTER ═══════════════ */
.footer { background: var(--green-dark); color: var(--white); padding: 4rem 3rem 2rem; }
.footer-content {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: flex-start; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255, 255, 255, .15);
}
.footer-logo img { height: 45px; margin-bottom: 1rem; }
.footer-logo p { font-size: .9rem; opacity: .7; line-height: 1.6; max-width: 280px; }
.footer-social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.footer-social a:hover { background: var(--yellow); transform: translateY(-3px); }
.footer-social a svg { width: 18px; height: 18px; fill: var(--white); }
.footer-social a:hover svg { fill: var(--black); }
.footer-links h4 { font-size: .85rem; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 1.2rem; opacity: .5; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.footer-links a { font-size: .95rem; opacity: .8; transition: opacity .3s; }
.footer-links a:hover { opacity: 1; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 2rem; text-align: center; font-size: .85rem; opacity: .5; }

/* ═══════════════ SUCCESS POPUP ═══════════════ */
.success-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  animation: fadeIn .3s ease;
}
.success-popup {
  background: var(--white); border-radius: 20px;
  padding: 3rem 2.5rem; max-width: 420px; width: 100%;
  text-align: center;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .2);
  animation: popIn .4s ease;
}
.success-popup .checkmark {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--green-dark); margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
}
.success-popup .checkmark svg { width: 35px; height: 35px; fill: var(--white); }
.success-popup h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--green-dark); margin-bottom: .5rem;
}
.success-popup p {
  font-size: .95rem; color: var(--gray);
  line-height: 1.6; margin-bottom: 1.5rem;
}
.success-popup button {
  padding: .8rem 2rem; background: var(--green-dark);
  color: var(--white); border: none; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: .95rem; cursor: pointer; transition: all .3s;
}
.success-popup button:hover {
  background: var(--yellow); color: var(--black);
  transform: translateY(-2px);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes popIn { from { opacity: 0; transform: scale(.8); } to { opacity: 1; transform: scale(1); } }

/* ═══════════════ REVEAL ANIMATION ═══════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   COCKTAILS PAGE
   ═══════════════════════════════════════════════ */

.page-cocktails { background: var(--beige); }

.ck-hero {
  position: relative;
  padding: 9rem 3rem 6rem;
  text-align: center;
  background: radial-gradient(ellipse at top, var(--green-pale) 0%, var(--beige) 60%);
  overflow: hidden;
}
.ck-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}
.ck-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--green-mid);
}
.ck-eyebrow-light { color: var(--green-light); opacity: .9; }
.ck-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--green-dark);
  margin: 1.2rem 0 1.2rem;
}
.ck-h1-line { display: block; }
.ck-divider {
  display: flex;
  justify-content: center;
  margin: 1.5rem auto 2rem;
  color: var(--green-dark);
}
.ck-divider svg { width: 80px; height: 16px; }
.ck-hero-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
}

.ck-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: var(--green-dark);
  opacity: .5;
  animation: ck-bounce-y 2.5s ease-in-out infinite;
}
.ck-scroll-hint span {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
}
.ck-scroll-hint svg { width: 18px; height: 18px; }
@keyframes ck-bounce-y {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

.ck-feature {
  padding: 6rem 3rem;
  background: var(--beige);
}
.ck-feature-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ck-photo {
  position: relative;
  width: 100%;
}
.ck-photo-frame {
  aspect-ratio: 4 / 5;
  border-radius: 6px;
  background:
    radial-gradient(ellipse at top right, rgba(255, 255, 255, .35) 0%, transparent 50%),
    linear-gradient(135deg, var(--green-sage) 0%, var(--green-pale) 50%, var(--beige-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 30px 80px rgba(74, 103, 65, .18),
    inset 0 0 80px rgba(74, 103, 65, .06);
}
.ck-photo-frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(74, 103, 65, .18);
  border-radius: 2px;
  pointer-events: none;
  z-index: 2;
}
.ck-photo-frame:has(img.ck-photo-img) {
  background: var(--beige-dark);
}
.ck-photo-frame:has(img.ck-photo-img)::before {
  display: none;
}

.ck-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}

.ck-photo-leaf {
  position: absolute;
  width: 60px;
  height: auto;
  color: var(--green-mid);
  z-index: 3;
  top: -22px;
  right: -28px;
  transform: rotate(15deg);
  filter: drop-shadow(0 4px 8px rgba(74, 103, 65, .15));
}
.ck-photo-leaf-alt {
  top: auto;
  right: auto;
  bottom: -22px;
  left: -28px;
  transform: rotate(195deg);
}

.ck-feature-content { position: relative; }
.ck-attributes {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green-mid);
  display: block;
  margin-bottom: .8rem;
}
.ck-feature h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--green-dark);
  margin-bottom: .6rem;
}
.ck-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1.5rem;
  opacity: .85;
}
.ck-description {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--gray);
  margin-bottom: 2.8rem;
  max-width: 480px;
}

.ck-recipe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.ck-section-head {
  display: flex;
  align-items: baseline;
  gap: .7rem;
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 1px solid rgba(74, 103, 65, .15);
}
.ck-section-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green-mid);
  opacity: .75;
  line-height: 1;
}
.ck-recipe-block h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.ck-recipe-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.ck-recipe-block li {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--black);
  line-height: 1.4;
  padding-left: 1rem;
  position: relative;
}
.ck-recipe-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 5px;
  height: 5px;
  background: var(--green-mid);
  border-radius: 50%;
  opacity: .8;
}

.ck-section-divider {
  padding: 0;
  background: var(--beige);
  display: flex;
  justify-content: center;
  color: var(--green-dark);
}
.ck-section-divider svg {
  width: 200px;
  height: 30px;
}

.ck-coming {
  background: linear-gradient(135deg, var(--green-dark) 0%, #3d5736 100%);
  color: var(--white);
  padding: 5rem 3rem;
  text-align: center;
}
.ck-coming-inner { max-width: 720px; margin: 0 auto; }
.ck-coming h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin: .8rem 0 1rem;
}
.ck-coming p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  opacity: .8;
  margin-bottom: 3rem;
}
.ck-coming-list {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.ck-coming-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  min-width: 130px;
}
.ck-coming-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--yellow);
  opacity: .9;
  line-height: 1;
}
.ck-coming-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  opacity: .92;
}

.ck-responsibility {
  background: var(--beige);
  padding: 2rem 3rem;
  text-align: center;
}
.ck-responsibility p {
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  color: var(--gray);
  opacity: .7;
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════ RESPONSIVE 968px ═══════════════ */
@media (max-width: 968px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; padding-top: 7rem; }
  .hero-text p { margin: 0 auto 2rem; }
  .hero-product { width: 60%; }
  .ingredients-grid { grid-template-columns: repeat(3, 1fr); }
  .ingredient-card .icon { width: 100px; height: 100px; }
  .ingredient-card .icon img { width: 80px; height: 80px; }
  .why-content { grid-template-columns: 1fr; text-align: center; }
  .why-image { display: none; }
  .benefits-list { justify-content: center; }
  .benefit-item { flex: 0 0 100%; max-width: 320px; }
  .benefit-item:hover { transform: none; }
  .clients-grid { gap: 1.2rem 1.5rem; }
  .footer-content { flex-direction: column; align-items: center; text-align: center; }
  .footer-logo p { max-width: 100%; }
  .footer-logo img { margin-bottom: 1.5rem; }
  .footer-social { justify-content: center; }

  .ck-feature-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ck-feature-content { text-align: center; }
  .ck-description { margin-left: auto; margin-right: auto; }
  .ck-photo { max-width: 480px; margin: 0 auto; }
  .ck-feature-right .ck-photo { order: -1; }
}

/* ═══════════════ RESPONSIVE 600px ═══════════════ */
@media (max-width: 600px) {
  .nav { padding: 1rem 1.5rem; }
  .nav-right { gap: 1rem; }
  .nav-langs a { font-size: .72rem; letter-spacing: .1em; }

  .nav-links {
    display: none; position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--green-dark);
    flex-direction: column; align-items: center;
    justify-content: center; gap: 2.5rem;
    z-index: 100;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.5rem; font-weight: 600; }
  .nav-toggle { display: flex; z-index: 101; }

  .hero-content { padding: 6rem 1.5rem 2rem; }
  .hero-product { width: 70%; }
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .ingredient-card .icon { width: 90px; height: 90px; }
  .ingredient-card .icon img { width: 70px; height: 70px; }
  .why-image { display: none; }
  .benefit-item { flex: 0 0 100%; }
  .why-text h2 { white-space: normal; }
  .ingredients, .why-section, .contact,
  .video-section, .video-section-2, .clients { padding: 4rem 1.5rem; }
  .clients-grid { gap: 1rem; }
  .client-item {
    width: 160px;
    height: 85px;
    padding: .8rem 1.2rem;
  }
  .client-item img { max-height: 60px; }
  .client-item--boost { padding: .3rem .6rem; }
  .client-item--boost img { max-height: 78px; }
  .footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-content { gap: 2.5rem; }
  .footer-logo img { margin-bottom: 1.5rem; }
  .modal { margin: 1rem; padding: 1.5rem; }

  .ck-hero { padding: 7rem 1.5rem 4rem; }
  .ck-feature { padding: 4rem 1.5rem; }
  .ck-recipe-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ck-coming { padding: 3.5rem 1.5rem; }
  .ck-coming-list { gap: 1.8rem; }
  .ck-responsibility { padding: 1.5rem; }
  .ck-photo-leaf { width: 45px; }
}
