/* ============================================================
   Zollwood – styles
   Design language: light natural background, deep forest green,
   wood-gold accent, Clash Grotesk display + Inter Tight body.
   ============================================================ */

:root {
  --bg: #f5faf6;
  --ink: #0e120e;
  --ink-soft: #47554a;
  --green: #384b38;
  --green-deep: #24331f;
  --green-ink: #1c2718;
  --gold: #be842d;
  --mint: #afdfaa;
  --mint-soft: #e3f2e0;
  --card: #ffffff;
  --line: rgba(20, 35, 20, .12);
  --radius: 22px;
  --radius-lg: 30px;
  --font-display: "Clash Grotesk", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter Tight", "Segoe UI", Arial, sans-serif;
  --shadow-soft: 0 10px 40px rgba(24, 44, 24, .08);
  --shadow-lift: 0 18px 50px rgba(24, 44, 24, .14);
  --header-h: 84px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -.01em;
}

h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h3 { font-size: 1.22rem; font-weight: 600; }

p { color: var(--ink-soft); }

a { color: var(--green); text-decoration: none; }

.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: .95rem 2.1rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

.btn-primary {
  background: var(--green);
  color: #fff;
}
.btn-primary:hover {
  background: var(--green-deep);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .65);
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, .14);
  border-color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-ghost:hover { background: var(--mint-soft); }

.btn-sm { padding: .55rem 1.4rem; font-size: .92rem; }
.btn-full { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(245, 250, 246, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(24, 44, 24, .06);
}

.header-inner {
  width: min(1280px, 100% - 48px);
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo { height: 46px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}
.main-nav a {
  font-weight: 500;
  font-size: .99rem;
  color: var(--ink);
  position: relative;
  padding: .3rem 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.main-nav a.nav-cta {
  background: var(--green);
  color: #fff;
  padding: .62rem 1.6rem;
  border-radius: 999px;
  transition: background .25s ease;
}
.main-nav a.nav-cta::after { display: none; }
.main-nav a.nav-cta:hover { background: var(--green-deep); }

.header-tools { display: flex; align-items: center; gap: 1.1rem; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-size: .9rem;
}
.lang-sep { color: var(--line); }
.lang-btn {
  background: none;
  border: none;
  font: inherit;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  padding: .2rem .1rem;
}
.lang-btn.active { color: var(--gold); }
.lang-btn:hover { color: var(--green); }

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px; height: 42px;
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}
.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-media img { object-fit: cover; object-position: center; }

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(14, 22, 12, .95) 0%, rgba(14, 22, 12, .62) 45%, rgba(14, 22, 12, .38) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-h) + 3rem) 0 5.5rem;
  max-width: 840px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 1.6rem;
}
.pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.4rem;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: rgba(255, 255, 255, .85);
  max-width: 620px;
  margin-bottom: 2.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.hero-kicker {
  font-size: .95rem;
  color: rgba(255, 255, 255, .65);
}

/* ---------- Stats strip ---------- */
.stats-strip {
  background: var(--green-deep);
  padding: 3.2rem 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 600;
  color: var(--mint);
  line-height: 1.1;
  margin-bottom: .35rem;
}
.stat-label {
  font-size: .95rem;
  color: rgba(255, 255, 255, .75);
}

/* ---------- Sections ---------- */
.section { padding: 6.5rem 0; }

.section-head {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-head.left {
  margin: 0 0 2.4rem;
  text-align: left;
}
.section-head .lead { margin-top: 1.2rem; }

.eyebrow {
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}

.lead { font-size: 1.13rem; }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  gap: 1.6rem;
}
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.card h3 { margin-bottom: .6rem; }
.card p { font-size: .98rem; }

.card-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--mint-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.card-icon svg { width: 30px; height: 30px; }

.substance-note {
  margin-top: 3rem;
  padding: 1.6rem 2.2rem;
  background: var(--mint-soft);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.05rem;
  color: var(--green-ink);
  max-width: 900px;
  margin-inline: auto;
}

/* ---------- About ---------- */
.about { background: #fff; }

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 4.5rem;
  align-items: start;
}

.about-text h2 { margin-bottom: 1.3rem; }
.about-text .lead { margin-bottom: 1.1rem; }
.about-text > p { margin-bottom: 1rem; }

.about-values {
  margin-top: 2.4rem;
  display: grid;
  gap: 1.7rem;
}
.value-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.value-icon {
  flex: 0 0 52px;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--mint-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon svg { width: 26px; height: 26px; }
.value-item h3 { margin-bottom: .35rem; font-size: 1.1rem; }
.value-item p { font-size: .96rem; }

.about-media {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}
.about-photo-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
}
.about-photo-main img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}
.about-photo-small {
  position: absolute;
  bottom: -2.2rem;
  left: -2.6rem;
  width: 46%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow-lift);
}
.about-photo-small img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.photo-gallery {
  margin-top: 5.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item figcaption {
  padding: 1.05rem 1.3rem;
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink);
}

/* ---------- Advantages (dark) ---------- */
.advantages {
  background: var(--green-deep);
}
.advantages .eyebrow { color: var(--mint); }
.advantages h2 { color: #fff; }

.card-dark {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  transition: background .3s ease, transform .3s ease;
}
.card-dark:hover {
  background: rgba(255, 255, 255, .09);
  transform: translateY(-6px);
  box-shadow: none;
}
.card-dark h3 { color: #fff; margin-bottom: .7rem; }
.card-dark p { color: rgba(255, 255, 255, .75); font-size: .98rem; }

.card-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.1rem;
  line-height: 1;
}

/* ---------- Logistics ---------- */
.logistics-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  margin-bottom: 3.5rem;
}
.logistics-banner img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.timeline {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.timeline-step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.timeline-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.step-num {
  position: absolute;
  top: 1.5rem;
  right: 1.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--gold);
}
.step-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--mint-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}
.step-icon svg { width: 28px; height: 28px; }
.timeline-step h3 { font-size: 1.08rem; margin-bottom: .55rem; }
.timeline-step p { font-size: .95rem; }

/* ---------- Future ---------- */
.future { background: #fff; }

.future-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.future-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  height: 100%;
}
.future-media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.future-cards { display: grid; gap: 1.2rem; }
.future-card {
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.7rem;
  transition: transform .3s ease, box-shadow .3s ease;
}
.future-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}
.future-card .card-icon {
  flex: 0 0 52px;
  width: 52px; height: 52px;
  margin-bottom: 0;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--gold);
}
.future-card h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.future-card p { font-size: .95rem; }

/* ---------- Contact ---------- */
.contact { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1.3rem; }
.contact-info > p { margin-bottom: 1rem; }

.contact-details {
  font-style: normal;
  margin-top: 2rem;
  padding: 1.8rem 2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 1rem;
}
.contact-details a { font-weight: 600; }
.contact-details a:hover { color: var(--gold); }
.contact-details small { color: var(--ink-soft); }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.6rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1.3rem;
}

.form-field { display: grid; gap: .45rem; }
.form-field label,
.form-field legend {
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
}
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
  font: inherit;
  padding: .85rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--ink);
  transition: border-color .25s ease, background .25s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}

.form-langs {
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.form-langs legend { margin-bottom: .55rem; }
.form-langs label {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink-soft);
  cursor: pointer;
}

.form-consent {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .85rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.form-consent input { margin-top: .28rem; }

input[type="checkbox"] { accent-color: var(--green); }

.form-status { font-size: .92rem; font-weight: 600; min-height: 1.3em; }
.form-status.ok { color: var(--green); }
.form-status.err { color: #b23a2f; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-ink);
  color: rgba(255, 255, 255, .8);
  padding: 4.5rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo { height: 52px; width: auto; margin-bottom: 1.2rem; }
.footer-brand p { color: rgba(255, 255, 255, .65); font-size: .98rem; max-width: 320px; }

.footer-nav { display: grid; gap: .7rem; align-content: start; }
.footer-nav a {
  color: rgba(255, 255, 255, .8);
  font-size: .98rem;
}
.footer-nav a:hover { color: var(--mint); }

.footer-contact { display: grid; gap: .9rem; align-content: start; }
.footer-contact p { color: rgba(255, 255, 255, .65); font-size: .95rem; }
.footer-contact strong { color: #fff; }
.footer-contact a { color: rgba(255, 255, 255, .8); }
.footer-contact a:hover { color: var(--mint); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 1.4rem 0;
}
.footer-copy { font-size: .88rem; color: rgba(255, 255, 255, .5); }

/* ---------- Modals ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(14, 22, 12, .6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal[hidden] { display: none; }

.modal-box {
  background: #fff;
  border-radius: var(--radius);
  max-width: 640px;
  width: 100%;
  max-height: 84vh;
  overflow-y: auto;
  padding: 2.6rem;
  position: relative;
  box-shadow: var(--shadow-lift);
}
.modal-box h2 { font-size: 1.7rem; margin-bottom: 1.1rem; }
.modal-box h3 { font-size: 1.1rem; margin-bottom: .8rem; color: var(--green); }
.modal-box p, .modal-box li { font-size: .96rem; margin-bottom: .8rem; }
.modal-box ul { padding-left: 1.2rem; }

.modal-close {
  position: absolute;
  top: 1.1rem; right: 1.2rem;
  background: var(--mint-soft);
  border: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 1.3rem;
  color: var(--green);
  cursor: pointer;
  transition: background .25s ease;
}
.modal-close:hover { background: var(--mint); }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 150;
  width: min(680px, calc(100% - 32px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  padding: 1.3rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: .88rem; flex: 1; }
.cookie-actions { display: flex; gap: .6rem; flex-shrink: 0; }

/* ---------- WhatsApp ---------- */
.whatsapp-btn {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 140;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .4);
  transition: transform .25s ease;
}
.whatsapp-btn:hover { transform: scale(1.08); }
.whatsapp-btn svg { width: 32px; height: 32px; }

/* ---------- Reveal animations ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.js .reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .card-grid.four { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-media { position: relative; top: 0; }
  .about-photo-small { left: auto; right: -0.5rem; bottom: -1.6rem; }
  .future-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .future-media img { min-height: 320px; max-height: 420px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .8rem 1.6rem 1.6rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(24, 44, 24, .12);
    transform: translateY(-130%);
    transition: transform .35s ease;
  }
  .nav-open .main-nav { transform: translateY(0); }
  .main-nav a { padding: .85rem 0; font-size: 1.05rem; }
  .main-nav a.nav-cta {
    margin-top: .7rem;
    text-align: center;
  }
  .burger { display: flex; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 4.5rem 0; }
  .photo-gallery { grid-template-columns: 1fr; }
  .gallery-item img { height: 230px; }
  .logistics-banner img { height: 260px; }
  .about-photo-main img { height: 400px; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }
  .container { width: min(1200px, 100% - 36px); }
  .card-grid.four,
  .card-grid.three,
  .timeline { grid-template-columns: 1fr; }
  .stats-inner { gap: 1.6rem; }
  .hero-content { padding-bottom: 4rem; }
  .hero-actions .btn { width: 100%; }
  .contact-form { padding: 1.8rem 1.4rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: left; }
  .about-photo-small { display: none; }
  .brand-logo { height: 38px; }
}
