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

:root {
  --cream:        #f5f0e8;
  --warm-white:   #faf8f4;
  --bark:         #3d2b1a;
  --bark-light:   #5c4033;
  --leaf:         #4a6741;
  --leaf-light:   #6b8f5e;
  --apple:        #c0392b;
  --pear:         #8a9a3a;
  --cherry:       #7b1f3a;
  --strawberry:   #d63b4a;
  --gold:         #c8973a;
  --text:         #2a1f14;
  --text-muted:   #6b5a4a;
  --border:       rgba(61, 43, 26, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--warm-white);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── LABELS ── */
.label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 0.9rem;
}
.label.centered    { display: block; text-align: center; }
.label.label-light { color: var(--leaf-light); }

/* ── SECTION TITLES ── */
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--bark);
  text-align: center;
  margin-bottom: 3rem;
}
.section-title-light { color: var(--cream); }

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(42, 31, 20, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.site-nav.nav-visible { transform: translateY(0); }

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(74, 103, 65, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(192, 57, 43, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(200, 151, 58, 0.15) 0%, transparent 50%),
    linear-gradient(160deg, #1e1208 0%, #3d2b1a 40%, #2d1f10 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 700px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--leaf-light);
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.7);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: transparent;
  border: 1px solid rgba(245, 240, 232, 0.4);
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s;
}
.btn:hover {
  background: rgba(245, 240, 232, 0.1);
  border-color: rgba(245, 240, 232, 0.7);
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(245, 240, 232, 0.3);
  font-size: 1.2rem;
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}

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

/* ── STORY ── */
.story {
  padding: 7rem 0;
  background: var(--warm-white);
}

.story-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: start;
}

.story-portrait {
  position: sticky;
  top: 6rem;
}

.story-portrait img {
  width: 100%;
  border-radius: 3px;
  display: block;
  box-shadow: 0 12px 40px rgba(61, 43, 26, 0.18);
}

.story-text .label { margin-bottom: 0.8rem; }

.story-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--bark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.story-text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}
.story-text p:last-of-type { margin-bottom: 0; }
.story-text em { font-style: italic; color: var(--leaf); }

.book-card {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-top: 2rem;
  padding: 1.2rem;
  background: var(--cream);
  border-radius: 3px;
  border-left: 3px solid var(--gold);
}

.book-card img {
  width: 72px;
  height: 96px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}

.book-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bark);
  margin-bottom: 0.4rem;
}

.book-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--bark);
  padding: 3.5rem 0;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3.5rem;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}

.stat-unit {
  font-size: 0.85rem;
  color: var(--leaf-light);
  font-weight: 500;
  margin-top: 0.2rem;
  letter-spacing: 0.05em;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}

.stat-sep {
  width: 1px;
  height: 3rem;
  background: rgba(245, 240, 232, 0.15);
  flex-shrink: 0;
}

/* ── KULTŪRAUGI ── */
.kulturas {
  padding: 7rem 0;
  background: var(--cream);
}

.crops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.crop-card {
  background: var(--warm-white);
  border-radius: 3px;
  overflow: hidden;
  border-top: 3px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}
.crop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px rgba(61, 43, 26, 0.12);
}

.crop-apple     { border-top-color: var(--apple); }
.crop-pear      { border-top-color: var(--pear); }
.crop-cherry    { border-top-color: var(--cherry); }
.crop-strawberry{ border-top-color: var(--strawberry); }

.crop-photo {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.crop-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.crop-card:hover .crop-photo img { transform: scale(1.04); }

.crop-photo-cherry {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4a0d1f 0%, #7b1f3a 50%, #3a0a14 100%);
  font-size: 3.5rem;
}

.crop-body {
  padding: 1.5rem;
}

.crop-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--bark);
  margin-bottom: 0.65rem;
}

.crop-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0.8rem;
}

.crop-body ul {
  list-style: none;
  padding: 0;
}

.crop-body ul li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.25rem 0 0.25rem 1rem;
  position: relative;
}
.crop-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--leaf-light);
}

/* ── QUALITY ── */
.quality {
  background: var(--leaf);
  padding: 6rem 0;
}

.quality-inner {
  max-width: 700px;
  text-align: center;
}

.quality-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: 1.5rem;
}
.badge-icon { color: var(--gold); }

.quality h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.quality p {
  color: rgba(245, 240, 232, 0.8);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.quality p:last-child { margin-bottom: 0; }
.quality strong { color: var(--cream); font-weight: 500; }
.quality em     { font-style: italic; }

/* ── GALLERY ── */
.galerija {
  background: var(--bark);
  padding: 7rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 0.6rem;
}

.g-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.g-item:hover img { transform: scale(1.05); }

.g-tall { grid-row: span 2; }

figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 0.8rem;
  background: linear-gradient(transparent, rgba(30, 18, 8, 0.75));
  color: rgba(245, 240, 232, 0.85);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}
.g-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

/* ── CONTACT ── */
.contact {
  padding: 7rem 0;
  background: var(--warm-white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-block h4 {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--leaf);
  margin-bottom: 0.5rem;
}

.contact-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.contact-val {
  font-size: 1.05rem;
  color: var(--bark);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.contact-val:hover { border-bottom-color: var(--bark); }

.nav-btns {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  border-radius: 3px;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: 0.03em;
}
.nav-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.waze-btn {
  background: #09d3ac;
  color: #07313f;
}

.gmaps-btn {
  background: #4285f4;
  color: #fff;
}

.contact-map {
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(61, 43, 26, 0.1);
  min-height: 420px;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--bark);
  padding: 2rem;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.35);
  letter-spacing: 0.04em;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .crops-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-grid {
    grid-template-columns: 340px 1fr;
    gap: 3rem;
  }
}

@media (max-width: 860px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-portrait {
    position: static;
    max-width: 420px;
    margin: 0 auto;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .nav-btns { flex-direction: row; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
}

@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }

  .story, .kulturas, .galerija, .contact { padding: 5rem 0; }
  .quality { padding: 4rem 0; }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .stats-row { gap: 0; }
  .stat { padding: 1rem 1.5rem; }
  .stat-sep { height: 1px; width: 100%; display: none; }

  .nav-links { gap: 1.2rem; }
  .nav-links a { font-size: 0.75rem; }

  .nav-btns { flex-direction: column; }
}
