:root {
  --ink: #2c2c2c;
  --ink-soft: #56615b;
  --green: #214d3b;
  --green-dark: #183b2e;
  --sage: #a5b39a;
  --mint: #eef1ea;
  --cream: #f8f6f2;
  --sand: #eee6da;
  --gold: #c8a66a;
  --white: #ffffff;
  --line: rgba(33, 77, 59, .14);
  --shadow: 0 24px 80px rgba(33, 77, 59, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251,247,239,.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(23,58,49,.06);
}
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  border-radius: 50% 50% 50% 18%;
  background: var(--green);
  color: white;
  font-family: "Poppins", sans-serif;
  font-size: 21px;
  transform: rotate(-4deg);
}
.brand-name { font-size: 24px; font-weight: 700; letter-spacing: -.5px; }
.nav { display: flex; gap: 32px; align-items: center; font-weight: 600; font-size: 14px; }
.nav a:hover { color: var(--green); }
.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
}
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px; }

.hero { position: relative; overflow: hidden; padding: 88px 0 92px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  font-size: 12px;
  color: var(--green);
  margin: 0 0 17px;
}
h1, h2, h3 { margin-top: 0; }
h1, h2 { font-family: "Poppins", sans-serif; line-height: 1.06; }
h1 { font-size: clamp(52px, 6vw, 86px); letter-spacing: -3.8px; max-width: 760px; margin-bottom: 25px; }
h2 { font-size: clamp(38px, 4vw, 58px); letter-spacing: -2px; margin-bottom: 20px; }
h3 { font-size: 22px; line-height: 1.25; }
.hero-text { font-size: 19px; max-width: 650px; color: var(--ink-soft); margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  min-height: 52px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; font-weight: 700; transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: white; box-shadow: 0 14px 35px rgba(31,90,73,.2); }
.btn-secondary { border: 1px solid var(--ink); }
.hero-proof { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 50px; padding-top: 26px; border-top: 1px solid var(--line); max-width: 580px; }
.hero-proof div { display: grid; gap: 4px; }
.hero-proof strong { font-size: 15px; }
.hero-proof span { font-size: 13px; color: var(--ink-soft); }

.hero-visual { min-height: 560px; position: relative; display: grid; place-items: center; }
.visual-card {
  position: relative; width: min(100%, 500px); aspect-ratio: .88;
  border-radius: 46% 46% 28% 28% / 34% 34% 25% 25%;
  background: linear-gradient(150deg, var(--sage), #c9d8bf);
  box-shadow: var(--shadow); overflow: hidden;
}
.visual-card:after {
  content: ""; position: absolute; inset: auto -10% -14% -10%; height: 42%;
  background: rgba(255,255,255,.35); border-radius: 50% 50% 0 0;
}
.bottle {
  position: absolute; left: 21%; bottom: 13%; width: 37%; height: 65%;
  background: #f8f5e9; border-radius: 32px 32px 48px 48px; z-index: 3;
  box-shadow: 0 18px 30px rgba(44,75,62,.18);
}
.bottle-cap { width: 44%; height: 9%; background: var(--green-dark); border-radius: 9px 9px 4px 4px; margin: -6% auto 0; }
.bottle-label {
  position: absolute; left: 9%; right: 9%; top: 35%; padding: 18px 10px;
  background: var(--green); color: white; text-align: center; border-radius: 14px;
}
.bottle-label span { display: block; font-size: 8px; letter-spacing: .2em; margin-bottom: 8px; }
.bottle-label strong { font-size: 12px; line-height: 1.35; }
.cup {
  position: absolute; right: 13%; bottom: 11%; z-index: 4; width: 34%; height: 33%;
  background: #fffdfa; border-radius: 15px 15px 45px 45px; box-shadow: 0 18px 30px rgba(44,75,62,.16);
  padding: 24px 16px; text-align: center;
}
.cup:before { content: ""; position: absolute; left: -3%; right: -3%; top: -8%; height: 15%; background: #d8cbb9; border-radius: 999px; }
.cup-brand { display: block; margin: 10px auto 15px; width: 48px; height: 48px; border-radius: 50%; background: var(--green); color: white; font: 600 28px/48px "Poppins", sans-serif; }
.cup-copy { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.leaf { position: absolute; background: var(--green); border-radius: 100% 0 100% 0; z-index: 2; }
.leaf-a { width: 130px; height: 240px; top: 3%; right: 1%; transform: rotate(22deg); }
.leaf-b { width: 90px; height: 165px; top: 6%; left: 4%; transform: rotate(-37deg); opacity: .82; }
.fruit { position: absolute; border-radius: 50%; z-index: 5; background: #d59469; box-shadow: inset -8px -8px 0 rgba(0,0,0,.06); }
.fruit-one { width: 58px; height: 58px; right: 5%; bottom: 6%; }
.fruit-two { width: 42px; height: 42px; right: 23%; bottom: 2%; background: #e5b07d; }
.floating-note {
  position: absolute; z-index: 8; background: white; border-radius: 999px; padding: 11px 17px;
  font-size: 12px; font-weight: 700; box-shadow: 0 13px 30px rgba(22,66,53,.12);
}
.note-one { top: 14%; left: -3%; }
.note-two { right: -4%; bottom: 18%; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.orb-one { width: 280px; height: 280px; background: rgba(220,232,217,.7); left: -120px; top: 120px; }
.orb-two { width: 180px; height: 180px; background: rgba(238,227,209,.9); right: -50px; top: 40px; }

.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip-grid { min-height: 88px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; text-align: center; gap: 20px; font-weight: 700; font-size: 14px; }
.strip-grid span:not(:last-child) { border-right: 1px solid var(--line); }

.section { padding: 110px 0; }
.two-col { display: grid; grid-template-columns: .9fr 1.1fr; gap: 100px; }
.body-copy { font-size: 19px; color: var(--ink-soft); }
.body-copy p:first-child { margin-top: 0; }
.vision { background: var(--mint); }
.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading p:last-child { font-size: 18px; color: var(--ink-soft); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.info-card {
  min-height: 310px; padding: 34px; background: rgba(255,255,255,.65); border: 1px solid rgba(23,58,49,.09);
  border-radius: 26px; display: flex; flex-direction: column; justify-content: flex-end;
}
.info-card.featured { background: var(--green); color: white; transform: translateY(-14px); }
.card-number { margin-bottom: auto; font-size: 12px; font-weight: 700; letter-spacing: .14em; opacity: .65; }
.info-card p { margin-bottom: 0; color: inherit; opacity: .78; }

.brands-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }
.brand-showcase {
  min-height: 470px; border-radius: 34px; padding: 45px; background: var(--sand);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start; position: relative; overflow: hidden;
}
.brand-showcase:after { content:""; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.38); position: absolute; right:-70px; bottom:-70px; }
.coming-badge { position: absolute; top: 32px; left: 32px; padding: 8px 13px; background: rgba(255,255,255,.7); border-radius: 999px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.greekit-logo { font-size: 72px; font-weight: 700; letter-spacing: -5px; line-height: 1; }
.greekit-logo span { color: #7fa56f; }
.brand-showcase p { max-width: 390px; font-size: 18px; color: var(--ink-soft); }
.coming-soon { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; border-bottom: 1px solid; }
.brands-copy > p:not(.eyebrow) { font-size: 18px; color: var(--ink-soft); }
.check-list { padding: 0; margin: 28px 0 0; list-style: none; }
.check-list li { margin: 13px 0; padding-left: 28px; position: relative; }
.check-list li:before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 800; }

.values { padding-top: 30px; }
.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 60px; }
.value-item { display: grid; grid-template-columns: 46px 1fr; gap: 20px; padding: 30px 0; border-top: 1px solid var(--line); }
.value-item > span { font-size: 12px; font-weight: 700; opacity: .55; padding-top: 5px; }
.value-item h3 { margin-bottom: 8px; }
.value-item p { margin: 0; color: var(--ink-soft); }

.contact { padding: 70px 0 110px; }
.contact-card {
  background: var(--green-dark); color: white; padding: 60px; border-radius: 32px;
  display: flex; justify-content: space-between; align-items: center; gap: 40px;
}
.contact-card > div { max-width: 720px; }
.contact-card h2 { margin-bottom: 15px; }
.contact-card p:not(.eyebrow) { margin-bottom: 0; opacity: .74; font-size: 17px; }
.eyebrow.light { color: #bdd4c6; }
.btn-light { background: white; color: var(--green-dark); white-space: nowrap; }

footer { padding: 34px 0; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 28px; font-size: 13px; color: var(--ink-soft); }
.footer-brand .brand-name { color: var(--ink); }

@media (max-width: 900px) {
  .nav { position: absolute; top: 78px; left: 20px; right: 20px; background: var(--cream); border: 1px solid var(--line); border-radius: 18px; padding: 18px; box-shadow: var(--shadow); display: none; flex-direction: column; align-items: stretch; gap: 12px; }
  .nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero-grid, .two-col, .brands-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero { padding-top: 60px; }
  .hero-visual { min-height: 500px; }
  .cards { grid-template-columns: 1fr; }
  .info-card.featured { transform: none; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); padding: 20px 0; }
  .strip-grid span { padding: 8px; border-right: 0 !important; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1160px); }
  h1 { letter-spacing: -2.6px; }
  .hero-proof, .value-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 420px; }
  .visual-card { width: 100%; }
  .floating-note { display: none; }
  .section { padding: 80px 0; }
  .brand-showcase { padding: 32px; min-height: 400px; }
  .greekit-logo { font-size: 56px; }
  .contact-card { padding: 38px 28px; align-items: flex-start; flex-direction: column; }
  .contact-card .btn { width: 100%; }
  .strip-grid { grid-template-columns: 1fr 1fr; font-size: 12px; }
}


/* Anovele brand-kit integration */
.brand-logo {
  display: block;
  width: 176px;
  height: auto;
  object-fit: contain;
}
.footer-logo { width: 158px; }

h1, h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
h1 {
  letter-spacing: -3.2px;
}
h2 {
  letter-spacing: -2.2px;
}
.eyebrow {
  letter-spacing: .24em;
}

.bottle-label {
  background: rgba(248, 246, 242, .94);
  color: var(--green);
  border: 1px solid rgba(33, 77, 59, .12);
}
.bottle-label img {
  display: block;
  width: 82%;
  max-height: 72px;
  object-fit: contain;
  margin: 0 auto 10px;
}
.bottle-label strong {
  color: var(--green);
  letter-spacing: .12em;
  font-size: 9px;
}
.cup-brand-image {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin: 4px auto 12px;
}
.info-card.featured {
  box-shadow: inset 0 0 0 1px rgba(200,166,106,.28);
}
.btn-primary {
  box-shadow: 0 14px 35px rgba(33,77,59,.22);
}
.coming-soon {
  color: var(--green);
}
@media (max-width: 620px) {
  .brand-logo { width: 150px; }
  .footer-logo { width: 145px; }
}
