/* ============================================================
   ZELENI KORAK — trajnostni izdelki
   Modern eco brand · clean & green

   Palette (4 + neutrals):
   - Forest  #1E4D3B  (primary)
   - Leaf    #4E9D6B  (accent)
   - Mint    #E4F0E8  (soft tint)
   - Cream   #F7F5EF  (page bg)
   - Ink     #16201B  (text)

   Fonts: Sora (headings) / Inter (body)
============================================================ */

:root {
  --forest: #1E4D3B;
  --leaf: #4E9D6B;
  --leaf-dark: #3C7E55;
  --mint: #E4F0E8;
  --cream: #F7F5EF;
  --ink: #16201B;
  --muted: #5E6B62;
  --line: #E5E2D8;
  --white: #FFFFFF;
  --max: 1180px;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 22px 50px rgba(22, 32, 27, 0.10);
  --shadow-sm: 0 10px 26px rgba(22, 32, 27, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

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

/* pill badge / section label */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--mint);
  color: var(--forest);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
}

.badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--leaf);
}

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 245, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--forest);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo .leaf-mark {
  width: 34px; height: 34px;
  background: var(--forest);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo .leaf-mark svg { width: 19px; height: 19px; fill: var(--mint); }

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover { background: var(--mint); color: var(--forest); }
.main-nav a.active { background: var(--forest); color: var(--white); }

.header-cta { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn-primary { background: var(--forest); color: var(--white); }
.btn-primary:hover { background: var(--leaf-dark); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn-leaf { background: var(--leaf); color: var(--white); }
.btn-leaf:hover { background: var(--leaf-dark); transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--white); }

.btn-ghost { background: var(--white); color: var(--forest); box-shadow: var(--shadow-sm); }
.btn-ghost:hover { background: var(--mint); }

.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ============================================================
   SECTIONS
============================================================ */
section { padding: 92px 0; }

.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-mint { background: var(--mint); }
.bg-forest { background: var(--forest); color: var(--cream); }
.bg-forest h1, .bg-forest h2, .bg-forest h3 { color: var(--white); }

.section-head { max-width: 660px; margin: 0 auto 58px; text-align: center; }
.section-head .badge { margin-bottom: 18px; }
.section-head h2 { font-size: clamp(2rem, 4.2vw, 2.9rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.06rem; }
.bg-forest .section-head p { color: #c6d6cc; }

.section-head.left { text-align: left; margin-left: 0; }

/* ============================================================
   HERO
============================================================ */
.hero { padding: 70px 0 90px; overflow: hidden; }

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.1rem);
  margin: 20px 0 18px;
}
.hero-text h1 .hl { color: var(--leaf); }

.hero-text p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }

.hero-stats { display: flex; gap: 34px; }
.hero-stats .stat strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.8rem;
  color: var(--forest);
  line-height: 1;
}
.hero-stats .stat span { font-size: 0.88rem; color: var(--muted); }

.hero-media { position: relative; }

.hero-media .blob {
  position: absolute;
  inset: -8% -6% -6% 6%;
  background: var(--mint);
  border-radius: 46% 54% 58% 42% / 48% 44% 56% 52%;
  z-index: 0;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.hero-media .float-card {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 230px;
}
.hero-media .float-card .ic {
  width: 40px; height: 40px; border-radius: 11px;
  background: var(--mint); color: var(--forest);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-media .float-card .ic svg { width: 22px; height: 22px; fill: var(--forest); }
.hero-media .float-card b { font-family: 'Sora', sans-serif; font-size: 0.92rem; display: block; }
.hero-media .float-card small { color: var(--muted); font-size: 0.78rem; }

/* ============================================================
   FEATURES (icon row)
============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }

.feature .ic {
  width: 54px; height: 54px; border-radius: 16px;
  background: var(--mint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature .ic svg { width: 28px; height: 28px; fill: var(--forest); }
.feature h3 { font-size: 1.15rem; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.95rem; }

/* ============================================================
   PRODUCT CARDS
============================================================ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.product .pic { height: 240px; overflow: hidden; }
.product .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product:hover .pic img { transform: scale(1.06); }

.product .info { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.product .ptag {
  font-family: 'Sora', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--leaf); margin-bottom: 9px;
}
.product h3 { font-size: 1.22rem; margin-bottom: 9px; }
.product p { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; }
.product .price-row {
  margin-top: auto; display: flex; align-items: center; justify-content: space-between;
}
.product .price { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--forest); }

/* ============================================================
   ABOUT / SPLIT
============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }

.split-media img {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow);
}

.split-text h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 18px; }
.split-text p { color: var(--muted); margin-bottom: 16px; }

.value-list { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.value-list li { display: flex; gap: 14px; align-items: flex-start; }
.value-list .tick {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--mint); color: var(--forest);
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem; margin-top: 3px;
}
.value-list b { font-family: 'Sora', sans-serif; }

.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.info-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
}
.info-card .badge { margin-bottom: 14px; }
.info-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.info-card p { color: var(--muted); font-size: 0.96rem; }

/* ============================================================
   TEAM
============================================================ */
.team-wrap { max-width: 760px; margin: 0 auto; }
.team-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 44px; display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center;
}
.avatar {
  width: 150px; height: 150px; border-radius: 50%;
  background: linear-gradient(135deg, var(--forest), var(--leaf));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 3rem; color: var(--white);
  flex-shrink: 0; box-shadow: var(--shadow-sm);
}
.team-card .role {
  font-family: 'Sora', sans-serif; font-weight: 600; color: var(--leaf);
  letter-spacing: 0.5px; margin: 4px 0 14px;
}
.team-card h3 { font-size: 1.7rem; }
.team-card p { color: var(--muted); margin-bottom: 14px; }
.team-card .contrib { background: var(--mint); border-radius: var(--radius-sm); padding: 16px 18px; }
.team-card .contrib strong { font-family: 'Sora', sans-serif; color: var(--forest); display: block; margin-bottom: 4px; font-size: 0.9rem; }
.team-card .contrib span { color: var(--ink); font-size: 0.93rem; }

/* founder note (human touch) */
.founder { max-width: 760px; margin: 0 auto; text-align: center; }
.founder .avatar { width: 96px; height: 96px; font-size: 2rem; margin: 0 auto 24px; }
.founder blockquote {
  font-family: 'Sora', sans-serif; font-weight: 600;
  font-size: clamp(1.35rem, 2.8vw, 1.95rem); line-height: 1.45;
  color: var(--ink); margin-bottom: 20px; letter-spacing: -0.01em;
}
.founder blockquote .q { color: var(--leaf); }
.founder cite {
  font-style: normal; font-family: 'Sora', sans-serif; font-weight: 600;
  color: var(--forest); font-size: 1.02rem;
}
.founder cite span {
  display: block; font-family: 'Inter', sans-serif; font-weight: 400;
  color: var(--muted); font-size: 0.9rem; margin-top: 2px;
}

/* ============================================================
   GALLERY
============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.gallery-grid figure {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); aspect-ratio: 1 / 1; position: relative;
}
.gallery-grid figure.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-grid figure:hover img { transform: scale(1.07); }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(22,32,27,0.78));
  color: var(--white); padding: 32px 18px 16px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.95rem;
}

/* ============================================================
   PRICING
============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.price-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 36px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured { background: var(--forest); color: var(--cream); border-color: var(--forest); transform: scale(1.03); }
.price-card.featured h3, .price-card.featured .amount { color: var(--white); }
.price-card .plan-badge {
  display: inline-block; font-family: 'Sora', sans-serif; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--leaf); margin-bottom: 10px;
}
.price-card.featured .plan-badge { color: #9fe0b8; }
.price-card h3 { font-size: 1.4rem; margin-bottom: 14px; }
.price-card .amount { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 2.6rem; color: var(--forest); line-height: 1; }
.price-card .amount span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-card.featured .amount span { color: #b9cdc1; }
.price-card ul { list-style: none; margin: 24px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.96rem; }
.price-card li::before { content: "✓"; color: var(--leaf); font-weight: 700; }
.price-card.featured li::before { color: #9fe0b8; }
.price-card .btn { width: 100%; justify-content: center; }

/* ============================================================
   FAQ
============================================================ */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden;
}
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 24px; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.05rem;
  color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .pm { font-size: 1.4rem; color: var(--leaf); transition: transform 0.25s ease; line-height: 1; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { padding: 0 24px 22px; color: var(--muted); }

/* ============================================================
   CONTACT
============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 50px; align-items: start; }
.contact-info .badge { margin-bottom: 18px; }
.contact-info h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 16px; }
.contact-info p { color: var(--muted); margin-bottom: 26px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ic {
  width: 44px; height: 44px; border-radius: 13px; background: var(--mint);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-list .ic svg { width: 21px; height: 21px; fill: var(--forest); }
.contact-list strong { font-family: 'Sora', sans-serif; display: block; font-size: 0.96rem; }
.contact-list span { color: var(--muted); font-size: 0.95rem; }

.contact-form {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-family: 'Sora', sans-serif; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; }
.field input, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 15px; font-family: 'Inter', sans-serif; font-size: 0.96rem; background: var(--cream);
  transition: border-color 0.2s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--leaf); }
.field textarea { resize: vertical; min-height: 120px; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 40px; border: 6px solid var(--white); }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ============================================================
   CTA BAND
============================================================ */
.cta-band { background: var(--forest); color: var(--cream); text-align: center; border-radius: 0; }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 14px; }
.cta-band p { max-width: 540px; margin: 0 auto 28px; color: #c6d6cc; }

/* ============================================================
   PAGE HEAD (inner pages)
============================================================ */
.page-head { background: var(--mint); padding: 64px 0; text-align: center; }
.page-head .badge { background: var(--white); margin-bottom: 16px; }
.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 12px; }
.page-head p { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: 1.06rem; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer { background: var(--forest); color: #cdddd3; padding: 70px 0 28px; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 46px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.12); margin-bottom: 26px;
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand .logo .leaf-mark { background: var(--leaf); }
.footer-brand .logo .leaf-mark svg { fill: var(--white); }
.footer-brand p { max-width: 320px; font-size: 0.95rem; color: #b9cdc1; }
.footer-col h4 { font-family: 'Sora', sans-serif; color: var(--white); font-size: 0.95rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { color: #b9cdc1; font-size: 0.94rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { text-align: center; font-size: 0.86rem; color: #9fb4a8; }
.footer-bottom strong { color: var(--white); }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 940px) {
  .hero .container { grid-template-columns: 1fr; gap: 44px; }
  .hero-media img { height: 420px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .product-grid, .price-grid, .gallery-grid, .info-cards { grid-template-columns: 1fr 1fr; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .split-media img { height: 360px; }
  .price-card.featured { transform: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .header-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line); display: none;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: stretch; padding: 14px 26px 22px; gap: 4px; }
  .main-nav a { padding: 12px 14px; }

  .feature-grid, .product-grid, .price-grid, .gallery-grid, .info-cards { grid-template-columns: 1fr; }
  .gallery-grid figure.wide { grid-column: span 1; aspect-ratio: 1 / 1; }
  .team-card { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .avatar { margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .hero-media .float-card { left: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
}
