:root {
  --teal: #0fa89c;
  --teal-dark: #0c8a80;
  --green: #2f8f22;
  --ink: #0b2320;
  --bg: #f4f7f5;
  --muted: #54706a;
  --muted-2: #6a8781;
  --muted-3: #3f5f59;
  --muted-4: #7d9892;
  --line: rgba(11, 35, 32, 0.11);
  --line-soft: rgba(11, 35, 32, 0.10);
  --card-bg: #e8efec;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  overflow-x: hidden;
}
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }
::selection { background: var(--teal); color: #ffffff; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin: 0;
}
.kicker {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.kicker--green { color: var(--green); }
.accent { color: var(--teal); }
.hint {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-2);
}

@keyframes floatUp {
  0% { transform: translateY(20vh) scale(0.6); opacity: 0; }
  12% { opacity: 0.5; }
  100% { transform: translateY(-110vh) scale(1.15); opacity: 0; }
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(110%) rotate(6deg); }
  to { opacity: 1; transform: translateY(0) rotate(0deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50% { transform: translate3d(0, -18px, 0) rotate(1.5deg); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* ---------- background blobs + progress bar ---------- */
.blobs { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.blob {
  position: absolute;
  bottom: -10vh;
  border-radius: 50%;
  border: 1px solid rgba(15, 168, 156, 0.25);
  background: radial-gradient(circle at 32% 30%, rgba(15, 168, 156, 0.30), rgba(15, 168, 156, 0.16) 45%, rgba(15, 168, 156, 0.04) 70%);
}
.blob--1 { left: 8%; width: 90px; height: 90px; animation: floatUp 19s linear infinite; }
.blob--2 { left: 22%; width: 38px; height: 38px; border-color: rgba(47, 143, 34, 0.22); background: radial-gradient(circle at 32% 30%, rgba(15, 168, 156, 0.26), rgba(47, 143, 34, 0.14) 50%, transparent 72%); animation: floatUp 13s linear infinite 2s; }
.blob--3 { left: 41%; width: 130px; height: 130px; border-color: rgba(15, 168, 156, 0.16); background: radial-gradient(circle at 32% 30%, rgba(15, 168, 156, 0.22), rgba(15, 168, 156, 0.10) 48%, transparent 72%); animation: floatUp 26s linear infinite 5s; }
.blob--4 { left: 62%; width: 56px; height: 56px; border-color: rgba(15, 168, 156, 0.2); background: radial-gradient(circle at 32% 30%, rgba(15, 168, 156, 0.26), rgba(15, 168, 156, 0.14) 50%, transparent 72%); animation: floatUp 16s linear infinite 1s; }
.blob--5 { left: 78%; width: 100px; height: 100px; border-color: rgba(47, 143, 34, 0.18); background: radial-gradient(circle at 32% 30%, rgba(15, 168, 156, 0.24), rgba(47, 143, 34, 0.12) 48%, transparent 72%); animation: floatUp 22s linear infinite 8s; }
.blob--6 { left: 91%; width: 30px; height: 30px; animation: floatUp 11s linear infinite 4s; }

.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--green));
  z-index: 90; box-shadow: 0 0 18px rgba(15, 168, 156, 0.7);
  transition: width 0.1s linear;
}

/* ---------- header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 80;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 14px clamp(16px, 4vw, 56px);
  backdrop-filter: blur(18px);
  background: rgba(244, 247, 245, 0.74);
  border-bottom: 1px solid rgba(15, 168, 156, 0.14);
}
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand span { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: 19px; letter-spacing: -0.02em; }

.nav { display: flex; align-items: center; gap: 4px; font-size: 13.5px; letter-spacing: 0.02em; }
.nav a { padding: 9px 14px; border-radius: 999px; color: #31534d; transition: background 0.25s, color 0.25s; }
.nav a:hover { background: rgba(15, 168, 156, 0.12); color: var(--teal); }

.lang-switch { display: flex; align-items: center; gap: 8px; }
.lang-btn {
  all: unset; cursor: pointer; display: flex; align-items: center; gap: 6px;
  padding: 7px 12px; border-radius: 999px; font-size: 12px; font-family: 'DM Mono', monospace;
  border: 1px solid rgba(11, 35, 32, 0.14); color: var(--muted-2);
  transition: border-color 0.3s, color 0.3s;
}
.lang-btn img { width: 16px; height: 12px; object-fit: cover; border-radius: 2px; }
.lang-btn:hover { color: var(--teal-dark); }
.lang-btn.is-active { border-color: rgba(15, 168, 156, 0.3); color: var(--teal-dark); }

.nav-toggle {
  display: none; all: unset; cursor: pointer; width: 40px; height: 40px;
  border-radius: 12px; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative; z-index: 1; min-height: 100vh;
  display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 40px;
  padding: 150px clamp(16px, 4vw, 56px) 90px;
}
.hero__glow {
  position: absolute; top: -20%; left: -10%; width: 60vw; height: 60vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(15, 168, 156, 0.16), transparent 62%);
  filter: blur(20px); pointer-events: none;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(47, 143, 34, 0.35); background: rgba(47, 143, 34, 0.07);
  font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 28px;
}
.hero__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); }
.hero__title {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800;
  font-size: clamp(52px, 8.6vw, 138px); line-height: 0.86; letter-spacing: -0.045em;
  margin: 0 0 26px; text-wrap: balance;
}
.hero__title-line { display: block; overflow: hidden; }
/* Hero intro is held at its pre-animation state (not just paused) until the
   webfonts finish loading — see initFontGate() in main.js, which adds
   .fonts-ready to <html>. Bricolage Grotesque has noticeably different
   letter metrics than the sans-serif fallback; starting the slide-up
   animation before it's loaded made the text visibly reflow/shrink
   mid-animation the moment the real font swapped in. */
.hero__reveal { display: inline-block; opacity: 0; transform: translateY(110%) rotate(6deg); }
html.fonts-ready .hero__reveal { animation: riseIn 1s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero__reveal--accent {
  background: linear-gradient(100deg, var(--teal), var(--green) 55%, var(--teal));
  background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent;
}
html.fonts-ready .hero__reveal--accent {
  animation-delay: 0.12s;
  animation-name: riseIn, shimmer; animation-duration: 1s, 7s;
  animation-iteration-count: 1, infinite; animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1), linear;
}
.hero__subtitle {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600;
  font-size: clamp(20px, 2.2vw, 30px); line-height: 1.2; letter-spacing: -0.02em;
  margin: 0 0 18px; color: var(--ink);
  opacity: 0; transform: translateY(110%) rotate(6deg);
}
html.fonts-ready .hero__subtitle { animation: riseIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.26s both; }
.hero__lead {
  max-width: 560px; font-size: 17.5px; line-height: 1.65; color: var(--muted);
  margin: 0 0 38px; text-wrap: pretty;
  opacity: 0; transform: translateY(110%) rotate(6deg);
}
html.fonts-ready .hero__lead { animation: riseIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.36s both; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; opacity: 0; transform: translateY(110%) rotate(6deg); }
html.fonts-ready .hero__ctas { animation: riseIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.46s both; }

.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 16px 30px; border-radius: 999px;
  font-weight: 700; font-size: 15px; transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s, border-color 0.3s;
}
.btn--primary { background: var(--teal); color: #fff; font-weight: 700; }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(15, 168, 156, 0.32); color: var(--bg); }
.btn--outline { border: 1px solid rgba(11, 35, 32, 0.18); color: var(--ink); font-weight: 500; }
.btn--outline:hover { border-color: var(--green); transform: translateY(-3px); color: var(--ink); }
.btn--whatsapp {
  background: var(--green); color: #fff; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 17px 32px;
}
.btn--whatsapp:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(47, 143, 34, 0.3); color: var(--bg); }
.btn__arrow { font-family: 'DM Mono', monospace; }

.hero__visual { position: relative; height: min(70vh, 620px); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.hero__img { position: absolute; border-radius: 28px; overflow: hidden; animation: drift 9s ease-in-out infinite; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; }
.hero__img--a {
  top: 4%; right: 4%; width: 66%; aspect-ratio: 1;
  border: 1px solid rgba(15, 168, 156, 0.28); box-shadow: 0 40px 90px rgba(11, 35, 32, 0.14);
}
.hero__img--b {
  bottom: 4%; left: 0; width: 54%; aspect-ratio: 1; border-radius: 24px;
  border: 1px solid rgba(47, 143, 34, 0.3); box-shadow: 0 30px 70px rgba(11, 35, 32, 0.12);
  animation-duration: 11s; animation-delay: 1.5s;
}
.hero__ring {
  position: absolute; top: 46%; left: 46%; width: 118px; height: 118px; border-radius: 50%;
  border: 1px dashed rgba(15, 168, 156, 0.45); animation: spinSlow 26s linear infinite;
  display: grid; place-items: center;
}
.hero__ring span { font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: 0.2em; color: var(--teal); }

/* ---------- marquee ---------- */
.marquee {
  position: relative; z-index: 1; overflow: hidden; padding: 16px 0;
  border-top: 1px solid rgba(15, 168, 156, 0.14); border-bottom: 1px solid rgba(15, 168, 156, 0.14);
  background: rgba(15, 168, 156, 0.04);
}
.marquee__track {
  display: flex; width: max-content; animation: marquee 26s linear infinite;
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 15px;
  letter-spacing: 0.14em; text-transform: uppercase; color: #2f8f87;
}
.marquee__group { display: flex; gap: 44px; padding-right: 44px; }
.marquee__dot { color: var(--green); margin-right: 44px; }
.marquee__group span:not(.marquee__dot) + .marquee__dot { margin-left: -44px; }

/* ---------- sections shared ---------- */
.section-inner { max-width: 1360px; margin: 0 auto; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; flex-wrap: wrap; margin-bottom: 48px; }
.section-head--tight { margin-bottom: 18px; align-items: center; }
.section-head--spaced { margin-top: 34px; }
.section-head__controls { display: flex; align-items: center; gap: 18px; }
.slider-controls { display: flex; gap: 8px; }
.slider-btn {
  all: unset; cursor: pointer; width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(15, 168, 156, 0.4); color: var(--teal);
  display: grid; place-items: center; font-family: 'DM Mono', monospace; font-size: 17px;
  transition: background 0.3s, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.slider-btn:hover { background: rgba(15, 168, 156, 0.12); }
.slider-btn:first-child:hover { transform: translateX(-3px); }
.slider-btn:last-child:hover { transform: translateX(3px); }
.slider-btn--sm { width: 40px; height: 40px; font-size: 15px; }
.slider-btn--green { border-color: rgba(47, 143, 34, 0.4); color: var(--green); }
.slider-btn--green:hover { background: rgba(47, 143, 34, 0.12); }

.slider { position: relative; }
.slider__track {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding: 6px 2px 26px; scroll-behavior: smooth; cursor: grab;
}
.slider__track::-webkit-scrollbar { display: none; }
.slider__track:active { cursor: grabbing; }
.slider__track--md { gap: 14px; padding: 4px 2px 22px; }
.slider__item {
  all: unset; cursor: pointer; position: relative; flex: 0 0 clamp(190px, 22vw, 260px);
  aspect-ratio: 1; scroll-snap-align: start; border-radius: 22px; overflow: hidden;
  border: 1px solid var(--line); background: var(--card-bg);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s, box-shadow 0.4s;
}
.slider__item:hover { transform: translateY(-8px); border-color: rgba(15, 168, 156, 0.55); }
.slider__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.slider__item:hover img { transform: scale(1.1); }
.slider__track--lg .slider__item { flex-basis: clamp(200px, 24vw, 300px); }
.slider__track--md .slider__item { flex-basis: clamp(200px, 24vw, 260px); aspect-ratio: 4/3; border-radius: 16px; }
.slider__track--md .slider__item img { filter: saturate(0.85); }
.slider__track--md .slider__item:hover img { filter: saturate(1.1); transform: scale(1.07); }
#brandTrack .slider__item { aspect-ratio: 1; }

.slider__progress { position: absolute; left: 0; right: 0; bottom: 0; height: 3px; border-radius: 999px; background: var(--line-soft); overflow: hidden; }
.slider__progress-fill { height: 100%; width: 25%; border-radius: 999px; background: linear-gradient(90deg, var(--teal), var(--green)); transition: width 0.2s, transform 0.1s; }
.slider__progress-fill--green { background: linear-gradient(90deg, var(--green), var(--teal)); }

[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- about ---------- */
.about { position: relative; z-index: 1; padding: clamp(80px, 11vw, 150px) clamp(16px, 4vw, 56px); }
.about__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(32px, 5vw, 84px); align-items: center; max-width: 1360px; margin: 0 auto; }
.about__media { position: relative; }
.about__media-main { width: 78%; aspect-ratio: 4/5; border-radius: 26px; overflow: hidden; border: 1px solid var(--line-soft); }
.about__media-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
.about__media-main:hover img { transform: scale(1.06); }
.about__media-float { position: absolute; right: 0; bottom: -8%; width: 52%; aspect-ratio: 1; border-radius: 22px; overflow: hidden; border: 4px solid var(--bg); box-shadow: 0 26px 60px rgba(11, 35, 32, 0.14); }
.about__media-float img { width: 100%; height: 100%; object-fit: cover; }
.about__p { font-size: 17.5px; line-height: 1.7; color: var(--muted); margin: 0 0 20px; max-width: 620px; text-wrap: pretty; }
.about__badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 38px; }
.badge { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: 14px; background: rgba(15, 168, 156, 0.08); border: 1px solid rgba(15, 168, 156, 0.2); font-size: 14.5px; font-weight: 500; }
.badge__check { color: var(--green); }
.about__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 36px; }
.about__card { padding: 24px; border-radius: 20px; border: 1px solid var(--line); }
.about__card--teal { background: linear-gradient(160deg, rgba(15, 168, 156, 0.09), transparent); }
.about__card--green { background: linear-gradient(160deg, rgba(47, 143, 34, 0.09), transparent); }
.about__card-label { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 12px; }
.about__card--teal .about__card-label { color: var(--teal); }
.about__card--green .about__card-label { color: var(--green); }
.about__card p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--muted-3); }
.link-cta { display: inline-flex; align-items: center; gap: 10px; padding: 15px 28px; border-radius: 999px; border: 1px solid rgba(15, 168, 156, 0.45); color: var(--teal); font-weight: 600; font-size: 15px; transition: background 0.3s, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
.link-cta:hover { background: rgba(15, 168, 156, 0.12); transform: translateY(-3px); color: var(--teal); }

/* ---------- featured / products ---------- */
.featured { position: relative; z-index: 1; padding: clamp(70px, 9vw, 120px) clamp(16px, 4vw, 56px); background: linear-gradient(180deg, transparent, rgba(15, 168, 156, 0.05), transparent); }
.products { position: relative; z-index: 1; padding: clamp(70px, 9vw, 120px) clamp(16px, 4vw, 56px); }
.featured .h2, .products .h2 { font-size: clamp(32px, 4.4vw, 62px); line-height: 1; }

/* ---------- why ---------- */
.why { position: relative; z-index: 1; padding: clamp(70px, 9vw, 120px) clamp(16px, 4vw, 56px); }
.why__grid { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.why .h2 { font-size: clamp(32px, 4.2vw, 58px); line-height: 1.02; margin-bottom: 22px; }
.why__lead { font-size: 17.5px; line-height: 1.7; color: var(--muted); margin: 0 0 30px; max-width: 540px; text-wrap: pretty; }
.why__logo { width: 190px; height: auto; opacity: 0.9; }
.why__video { position: relative; border-radius: 26px; overflow: hidden; border: 1px solid rgba(15, 168, 156, 0.22); box-shadow: 0 40px 90px rgba(11, 35, 32, 0.12); }
.why__video video { width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover; background: var(--card-bg); }

/* ---------- categories ---------- */
.categories { position: relative; z-index: 1; padding: clamp(70px, 9vw, 120px) clamp(16px, 4vw, 56px); }
.categories__intro { margin-bottom: 46px; }
.categories .h2 { font-size: clamp(32px, 4.4vw, 62px); line-height: 1; margin-bottom: 18px; }
.categories__lead { font-size: 17.5px; line-height: 1.7; color: var(--muted); margin: 0 0 22px; max-width: 620px; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag { padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(47, 143, 34, 0.35); color: var(--green); font-family: 'DM Mono', monospace; font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.cat-card { border-radius: 26px; overflow: hidden; border: 1px solid var(--line); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s; }
.cat-card--teal { background: linear-gradient(170deg, rgba(15, 168, 156, 0.08), rgba(2, 16, 15, 0)); }
.cat-card--green { background: linear-gradient(170deg, rgba(47, 143, 34, 0.08), rgba(2, 16, 15, 0)); }
.cat-card:hover { transform: translateY(-10px); }
.cat-card--teal:hover { border-color: rgba(15, 168, 156, 0.5); }
.cat-card--green:hover { border-color: rgba(47, 143, 34, 0.5); }
.cat-card__img { aspect-ratio: 16/11; overflow: hidden; background: var(--card-bg); }
.cat-card__img img { width: 100%; height: 100%; object-fit: contain; padding: 18px; transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.cat-card:hover .cat-card__img img { transform: scale(1.08); }
.cat-card__body { padding: 26px 26px 30px; }
.cat-card__body h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: -0.02em; margin: 0 0 10px; }
.cat-card__body p { margin: 0; font-size: 15.5px; line-height: 1.6; color: var(--muted); }

/* ---------- factory ---------- */
.factory { position: relative; z-index: 1; padding: clamp(70px, 9vw, 120px) clamp(16px, 4vw, 56px); background: linear-gradient(180deg, transparent, rgba(47, 143, 34, 0.05), transparent); }
.factory__intro { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 60px); align-items: center; margin-bottom: clamp(40px, 6vw, 80px); }
.factory .h2 { font-size: clamp(32px, 4.2vw, 58px); line-height: 1.02; margin-bottom: 30px; }
.factory__video { border-radius: 26px; overflow: hidden; border: 1px solid rgba(47, 143, 34, 0.22); box-shadow: 0 40px 90px rgba(11, 35, 32, 0.12); }
.factory__video video { width: 100%; display: block; aspect-ratio: 16/10; object-fit: cover; background: var(--card-bg); }
.factory__features { display: grid; gap: 14px; }
.factory__feature { display: flex; align-items: center; gap: 16px; padding: 12px; border-radius: 18px; border: 1px solid var(--line-soft); transition: border-color 0.35s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.factory__feature:hover { border-color: rgba(47, 143, 34, 0.45); transform: translateX(6px); }
.factory__feature img { width: 96px; height: 72px; object-fit: cover; border-radius: 12px; flex-shrink: 0; }
.factory__feature h4 { margin: 0; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 19px; letter-spacing: -0.015em; }

/* ---------- contact ---------- */
.contact { position: relative; z-index: 1; padding: clamp(70px, 9vw, 120px) clamp(16px, 4vw, 56px); }
.contact__grid { max-width: 1360px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 60px); align-items: stretch; }
.contact .h2 { font-size: clamp(32px, 4.2vw, 58px); line-height: 1.02; margin-bottom: 30px; }
.contact__links { display: grid; gap: 12px; margin-bottom: 28px; }
.contact__link { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 18px 22px; border-radius: 18px; border: 1px solid var(--line); color: var(--ink); transition: border-color 0.35s, background 0.35s; }
.contact__link:hover { border-color: rgba(15, 168, 156, 0.5); background: rgba(15, 168, 156, 0.06); color: var(--ink); }
.contact__link--static:hover { background: none; border-color: var(--line); }
.contact__link-label { font-family: 'DM Mono', monospace; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }
.contact__link-value { font-size: 18px; font-weight: 500; }
.contact__link-value--right { font-size: 16px; font-weight: 400; text-align: right; color: var(--muted-3); }
.contact__rows { display: grid; gap: 10px; margin-bottom: 28px; }
.contact__row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 14px 20px; border-radius: 16px; background: rgba(15, 168, 156, 0.05); font-size: 14.5px; }
.contact__row span:first-child { color: var(--muted); }
.contact__row span:last-child { text-align: right; }
.contact__map { border-radius: 26px; overflow: hidden; border: 1px solid var(--line); min-height: 280px; }
.contact__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.12); min-height: 280px; }

/* ---------- footer ---------- */
.site-footer { position: relative; z-index: 1; padding: clamp(70px, 9vw, 120px) clamp(16px, 4vw, 56px) 40px; border-top: 1px solid rgba(15, 168, 156, 0.14); text-align: center; }
.site-footer__logo { width: 74px; height: 74px; object-fit: contain; margin: 0 auto 26px; }
.site-footer__title {
  font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(34px, 6vw, 88px);
  line-height: 1; letter-spacing: -0.04em; margin: 0 0 20px;
  background: linear-gradient(100deg, var(--ink), var(--teal) 50%, var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.site-footer__lead { font-size: 18px; color: var(--muted); margin: 0 0 44px; }
.site-footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 44px; }
.site-footer__nav a { padding: 10px 18px; border-radius: 999px; border: 1px solid rgba(11, 35, 32, 0.12); color: #31534d; font-size: 14px; transition: border-color 0.25s, color 0.25s; }
.site-footer__nav a:hover { border-color: var(--teal); color: var(--teal); }
.site-footer__copy { font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 0.1em; color: var(--muted-4); }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 5vh 5vw;
  background: rgba(244, 247, 245, 0.92); backdrop-filter: blur(14px); cursor: zoom-out;
}
.lightbox.is-open { display: grid; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 20px; border: 1px solid rgba(15, 168, 156, 0.3); box-shadow: 0 40px 120px rgba(11, 35, 32, 0.22); }

/* =========================================================
   RESPONSIVE — tablets and phones.
   Everything above this line is the unchanged laptop/desktop layout.
   ========================================================= */
@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .site-header { flex-wrap: wrap; row-gap: 0; }
  .brand { order: 1; }
  .nav-toggle { order: 2; }
  .nav, .lang-switch {
    order: 4; flex-basis: 100%; max-height: 0; opacity: 0; overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
  }
  .lang-switch { order: 5; justify-content: center; padding-bottom: 0; }
  .nav { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav a { padding: 12px 14px; }
  .site-header.menu-open .nav { max-height: 320px; opacity: 1; margin-top: 12px; }
  .site-header.menu-open .lang-switch { max-height: 80px; opacity: 1; margin-top: 10px; padding-bottom: 14px; }

  .hero { grid-template-columns: 1fr; padding: 128px clamp(16px, 5vw, 40px) 60px; gap: 52px; min-height: auto; }
  .hero__visual { height: min(66vw, 480px); order: -1; }
  .hero__ctas { gap: 12px; }

  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 420px; margin: 0 auto 56px; }

  .why__grid { grid-template-columns: 1fr; }
  .why__video { order: -1; }

  .factory__intro { grid-template-columns: 1fr; }
  .factory__video { order: -1; }

  .contact__grid { grid-template-columns: 1fr; }
  .contact__map { min-height: 260px; order: 2; }
}

@media (max-width: 640px) {
  .section-head { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
  .section-head__controls { width: 100%; justify-content: space-between; }
  .about__cards { grid-template-columns: 1fr; }
  .about__media-main { width: 92%; }
  .about__media-float { width: 58%; }
  .hero__badge { font-size: 11px; padding: 7px 13px; }
  .cat-grid { grid-template-columns: 1fr; }
  .contact__link { flex-direction: column; align-items: flex-start; gap: 6px; }
  .contact__link-value--right { text-align: left; }
  .contact__row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .contact__row span:last-child { text-align: left; }
  .site-footer__nav { gap: 6px; }
  .slider__item, .slider__track--lg .slider__item { flex-basis: 66vw; }
  .slider__track--md .slider__item { flex-basis: 62vw; }
}
