@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
  --forest: #1a3a2a;
  --gold: #c8a96e;
  --cream: #f7f3ec;
  --sage: #6b8f71;
  --navy: #1a2a5e;
  --teal: #1a8ab4;
  --teal-dark: #1a5a8a;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12'%3E%3Ccircle cx='6' cy='6' r='4' fill='%231a3a2a' opacity='0.7'/%3E%3C/svg%3E") 6 6, auto;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--forest);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── PRELOADER ─── */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--forest);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
#preloader.exit { opacity: 0; transform: translateY(-100%); pointer-events: none; }

#preloader svg.plant-svg {
  width: 120px; height: 200px; margin-bottom: 2rem;
}
#preloader svg.plant-svg path {
  stroke: var(--gold);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawPlant 2s var(--ease) forwards;
}
@keyframes drawPlant {
  to { stroke-dashoffset: 0; }
}

.preloader-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--cream);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  overflow: hidden;
}
.preloader-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: letterIn 0.4s var(--ease) forwards;
}
.preloader-tagline {
  font-family: var(--font-body);
  color: var(--sage);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-top: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 1.5s forwards;
}

@keyframes letterIn { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 1.2rem 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  background: rgba(247, 243, 236, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 58, 42, 0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.navbar.hidden { transform: translateY(-100%); }
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.1em;
  text-decoration: none;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--forest);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--sage); }

.nav-dc {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.65rem; color: var(--sage);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.nav-dc svg { height: 32px; width: auto; }
.dc-logo-img { height: 40px; width: auto; object-fit: contain; }
.dc-logo-footer { height: 60px; }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--forest); transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--cream);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-family: var(--font-heading); font-size: 1.8rem;
  color: var(--forest); text-decoration: none;
  letter-spacing: 0.05em;
}

/* ─── LANGUAGE SWITCHER ─── */
.lang-switcher {
  position: relative; margin-left: auto; margin-right: 1.2rem;
}
.lang-current {
  display: flex; align-items: center; gap: 0.4rem;
  background: none; border: 1px solid rgba(26,58,42,0.12);
  padding: 0.4rem 0.7rem; cursor: pointer;
  font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 500; color: var(--forest);
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.3s ease;
}
.lang-current:hover { border-color: var(--sage); }
.lang-flag { font-size: 1rem; line-height: 1; }
.lang-dropdown {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: white; border: 1px solid rgba(26,58,42,0.1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  min-width: 150px; opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease; z-index: 200;
}
.lang-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown button {
  display: flex; align-items: center; gap: 0.6rem;
  width: 100%; padding: 0.6rem 1rem;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.8rem;
  color: var(--forest); text-align: left;
  transition: background 0.2s ease;
}
.lang-dropdown button:hover { background: var(--cream); }
.lang-dropdown button .lang-flag { font-size: 1.1rem; }

@media (max-width: 768px) {
  .lang-switcher { margin-left: auto; margin-right: 0.8rem; }
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 8rem 3rem 4rem;
  position: relative; overflow: hidden;
  background: var(--cream);
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(107,143,113,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 70%, rgba(200,169,110,0.06) 0%, transparent 50%);
}
.hero-botanical {
  position: absolute; right: -5%; top: 10%;
  width: 55%; height: 80%;
  opacity: 0.06;
}
.hero-botanical svg { width: 100%; height: 100%; }

.hero-content {
  position: relative; z-index: 2; max-width: 700px;
}
.hero-label {
  font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--sage);
  margin-bottom: 1.5rem; font-weight: 500;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700; line-height: 1.1;
  color: var(--forest); margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic; color: var(--sage);
  display: block;
}
.hero-sub {
  font-size: 1rem; color: rgba(26,58,42,0.7);
  max-width: 520px; margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  padding: 0.9rem 2.2rem;
  background: var(--forest); color: var(--cream);
  font-family: var(--font-body); font-size: 0.8rem;
  font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  border: 1px solid var(--forest);
  transition: all 0.3s ease; cursor: pointer;
}
.btn-primary:hover {
  background: transparent; color: var(--forest);
}
.btn-ghost {
  padding: 0.9rem 2.2rem;
  background: transparent; color: var(--forest);
  font-family: var(--font-body); font-size: 0.8rem;
  font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none;
  border: 1px solid rgba(26,58,42,0.25);
  transition: all 0.3s ease; cursor: pointer;
}
.btn-ghost:hover {
  border-color: var(--forest); background: rgba(26,58,42,0.04);
}

/* ─── SECTIONS COMMON ─── */
section { padding: 6rem 3rem; }

.section-label {
  font-size: 0.7rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--sage);
  margin-bottom: 0.8rem; font-weight: 500;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; color: var(--forest);
  margin-bottom: 2rem; line-height: 1.2;
}
.section-divider {
  width: 60px; height: 1px;
  background: var(--gold); margin-bottom: 2rem;
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.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; }

/* ─── ABOUT ─── */
.about { max-width: 1200px; margin: 0 auto; }
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem; align-items: start;
}
.about-text {
  font-size: 1.05rem; color: rgba(26,58,42,0.75);
  line-height: 1.9;
}
.stat-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.stat-card {
  padding: 2rem;
  border: 1px solid rgba(26,58,42,0.1);
  background: white;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-card::before {
  content: ''; position: absolute; left: 0; top: 0;
  width: 3px; height: 100%; background: var(--gold);
}
.stat-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem; font-weight: 700;
  color: var(--forest); line-height: 1;
}
.stat-suffix {
  font-family: var(--font-heading);
  font-size: 1.4rem; color: var(--gold);
  margin-left: 0.2rem;
}
.stat-label {
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--sage);
  margin-top: 0.5rem;
}

/* ─── BOTANICALS GRID ─── */
.botanicals { background: white; }
.botanicals-inner { max-width: 1200px; margin: 0 auto; }
.botanicals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}
.botanical-card {
  padding: 2rem 1.5rem;
  background: var(--cream);
  border: 1px solid rgba(26,58,42,0.08);
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}
.botanical-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border-color: var(--sage);
}
.botanical-card svg {
  width: 48px; height: 48px;
  margin-bottom: 1rem;
  stroke: var(--sage);
  fill: none;
  stroke-width: 1.2;
  transition: stroke 0.3s ease;
}
.botanical-card:hover svg { stroke: var(--gold); }
.botanical-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem; font-weight: 600;
  color: var(--forest);
  line-height: 1.3;
}

/* ─── ROADMAP ─── */
.roadmap { max-width: 900px; margin: 0 auto; }
.timeline { position: relative; padding-left: 3rem; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 0;
  width: 2px; height: 100%;
  background: rgba(26,58,42,0.1);
}
.timeline-line {
  position: absolute; left: 8px; top: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 1.5s var(--ease);
}
.timeline-item {
  position: relative; margin-bottom: 3rem;
  padding: 2rem;
  background: white;
  border: 1px solid rgba(26,58,42,0.08);
}
.timeline-item::before {
  content: ''; position: absolute;
  left: -2.65rem; top: 2rem;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(26,58,42,0.2);
  background: var(--cream);
  transition: all 0.3s ease;
  z-index: 2;
}
.timeline-item.active::before {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200,169,110,0.2);
}
.timeline-phase {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 0.5rem;
}
.timeline-item h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem; font-weight: 600;
  color: var(--forest); margin-bottom: 0.8rem;
}
.timeline-item p {
  font-size: 0.9rem; color: rgba(26,58,42,0.7);
  line-height: 1.8;
}

/* ─── VALUE CHAIN ─── */
.value-chain { background: white; }
.value-chain-inner { max-width: 1100px; margin: 0 auto; }
.chain-flow {
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
  position: relative;
}
.chain-node {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.6rem;
  flex: 1; min-width: 90px;
  position: relative;
}
.chain-node svg {
  width: 36px; height: 36px;
  stroke: var(--sage); fill: none;
  stroke-width: 1.2;
}
.chain-node span {
  font-size: 0.7rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--forest);
  text-align: center; font-weight: 400;
}
.chain-arrow {
  font-size: 1rem; color: var(--gold);
  flex-shrink: 0; margin: 0 -0.3rem;
  opacity: 0.5;
}

/* ─── SALES MODEL ─── */
.sales { max-width: 1100px; margin: 0 auto; }
.sales-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 3rem;
}
.sales-divider { background: rgba(26,58,42,0.1); }
.sales-col svg {
  width: 48px; height: 48px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.2; margin-bottom: 1.2rem;
}
.sales-col h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem; font-weight: 600;
  color: var(--forest); margin-bottom: 1rem;
}
.sales-col p {
  font-size: 0.9rem; color: rgba(26,58,42,0.7);
  line-height: 1.8;
}

/* ─── INVESTMENT ─── */
.investment {
  background: var(--forest);
  color: var(--cream);
}
.investment-inner { max-width: 1200px; margin: 0 auto; }
.investment .section-label { color: var(--gold); }
.investment .section-title { color: var(--cream); }
.invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.invest-card {
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--gold);
  transition: background 0.3s ease;
}
.invest-card:hover { background: rgba(255,255,255,0.08); }
.invest-card h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 600;
  color: var(--cream); margin-bottom: 0.6rem;
}
.invest-card p {
  font-size: 0.85rem; color: rgba(247,243,236,0.6);
  line-height: 1.7;
}

/* ─── STRUCTURE ─── */
.structure { max-width: 900px; margin: 0 auto; text-align: center; }
.structure-flags {
  display: flex; justify-content: center;
  align-items: center; gap: 3rem;
  margin-bottom: 2.5rem;
}
.flag-block { text-align: center; }
.flag-block .flag-icon {
  width: 80px; height: 52px;
  border: 1px solid rgba(26,58,42,0.1);
  margin: 0 auto 0.8rem;
  display: flex; overflow: hidden;
}
.flag-de .stripe { flex: 1; }
.flag-de .stripe:nth-child(1) { background: #000; }
.flag-de .stripe:nth-child(2) { background: #D00; }
.flag-de .stripe:nth-child(3) { background: #FFCE00; }
.flag-ua .stripe { width: 100%; height: 50%; }
.flag-ua .stripe:nth-child(1) { background: #005BBB; }
.flag-ua .stripe:nth-child(2) { background: #FFD500; }
.flag-block h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 600;
  color: var(--forest);
}
.flag-block p {
  font-size: 0.75rem; color: var(--sage);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.structure-connector {
  width: 60px; height: 2px; background: var(--gold);
}
.structure-text {
  font-size: 1rem; color: rgba(26,58,42,0.7);
  line-height: 1.8; max-width: 600px; margin: 0 auto 1.5rem;
}
.structure-partner {
  font-size: 0.8rem; color: var(--sage);
  font-style: italic;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--forest);
  color: rgba(247,243,236,0.7);
  padding: 4rem 3rem 2rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 3rem; align-items: start;
}
.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem; font-weight: 600;
  color: var(--cream); margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 600;
  color: var(--cream); margin-bottom: 1rem;
}
.footer-contact a {
  display: block; color: rgba(247,243,236,0.6);
  text-decoration: none; font-size: 0.85rem;
  margin-bottom: 0.5rem; transition: color 0.3s ease;
}
.footer-contact a:hover { color: var(--gold); }
.footer-dc {
  text-align: right;
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 0.5rem;
}
.footer-dc svg { height: 50px; width: auto; }
.footer-dc span {
  font-size: 0.65rem; color: rgba(247,243,236,0.4);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.footer-bottom {
  max-width: 1200px; margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(247,243,236,0.08);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-tagline {
  font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
}
.footer-copy {
  font-size: 0.75rem; color: rgba(247,243,236,0.35);
}
.footer-designed {
  font-size: 0.75rem;
}
.footer-designed a {
  color: rgba(247,243,236,0.35);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-designed a:hover {
  color: var(--gold);
}

/* ─── FLAGS VERTICAL ─── */
.flag-de { flex-direction: column; }
.flag-ua { flex-direction: column; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .botanicals-grid { grid-template-columns: repeat(3, 1fr); }
  .invest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  section { padding: 4rem 1.5rem; }
  .navbar { padding: 1rem 1.5rem; }
  .nav-links, .nav-dc { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 7rem 1.5rem 3rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .botanicals-grid { grid-template-columns: repeat(2, 1fr); }
  .sales-grid { grid-template-columns: 1fr; gap: 2rem; }
  .sales-divider { display: none; }
  .invest-grid { grid-template-columns: 1fr; }
  .chain-flow { flex-direction: column; gap: 1rem; }
  .chain-arrow { transform: rotate(90deg); margin: 0.2rem 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-dc { align-items: flex-start; text-align: left; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 1.5rem; }
  .structure-flags { flex-direction: column; gap: 1.5rem; }
  .structure-connector { width: 2px; height: 40px; }
  .hero-botanical { display: none; }
}
@media (max-width: 480px) {
  .botanicals-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.3rem; }
  .hero-sub { font-size: 0.95rem; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas a { width: 100%; text-align: center; }
  .stat-card { padding: 1.5rem; }
  .timeline-item { padding: 1.5rem; }
  .footer { padding: 3rem 1.5rem 2rem; }
}
