/* ==========================================================================
   TimberCity — Componentes e Portas Lacadas
   ========================================================================== */

@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-latin-wght-normal.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-latin-wght-italic.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/manrope-latin-wght-normal.woff2') format('woff2-variations');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #F7F4ED;
  --bg-alt: #EFEAE0;
  --surface: #FFFFFF;
  --ink: #22271F;
  --ink-soft: #5A6053;
  --ink-faint: #8B9083;
  --green-950: #16240F;
  --green-900: #1D3517;
  --green-800: #24501F;
  --green-700: #2C6427;
  --green-600: #337530;
  --brand: #006B00;
  --oak: #8A5A2B;
  --oak-light: #C89B62;
  --cream: #EDE6D6;
  --cream-soft: #E5DCC8;
  --line: #DFD8C9;
  --shadow-sm: 0 1px 2px rgba(34, 39, 31, .06), 0 2px 8px rgba(34, 39, 31, .05);
  --shadow-md: 0 2px 6px rgba(34, 39, 31, .07), 0 12px 32px rgba(34, 39, 31, .10);
  --shadow-lg: 0 4px 12px rgba(34, 39, 31, .10), 0 24px 64px rgba(34, 39, 31, .16);
  --radius: 14px;
  --radius-lg: 22px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --wrap: 1200px;
  --header-h: 78px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font-body);
  font-weight: 440;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

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

::selection { background: var(--green-700); color: #fff; }

/* --- Typography ------------------------------------------------------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-variation-settings: 'SOFT' 40, 'WONK' 0;
  font-weight: 540;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 5.4vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: 1.32rem; font-weight: 560; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .78rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--oak);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ''; width: 34px; height: 2px; background: var(--oak-light);
  border-radius: 2px;
}
.lead { font-size: 1.16rem; color: var(--ink-soft); max-width: 62ch; }

.section { padding: 104px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head p { margin-top: 16px; }
.section-alt { background: var(--bg-alt); }

/* --- Buttons ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 100px;
  font-weight: 700; font-size: .96rem; letter-spacing: .01em;
  transition: transform .22s cubic-bezier(.2,.7,.3,1), box-shadow .22s, background .22s, color .22s;
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; transition: transform .22s; }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--green-800); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--oak-light); transform: translateY(-2px); }
.btn-light { background: var(--cream); color: var(--green-900); }
.btn-light:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost-light { background: transparent; color: var(--cream); box-shadow: inset 0 0 0 1.5px rgba(237,230,214,.4); }
.btn-ghost-light:hover { box-shadow: inset 0 0 0 1.5px rgba(237,230,214,.9); transform: translateY(-2px); }

/* --- Header ----------------------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s, box-shadow .3s, height .3s;
}
.site-header.scrolled {
  background: rgba(247, 244, 237, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  height: 66px;
}
.site-header .wrap {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo img { height: 52px; width: auto; transition: height .3s; }
.site-header.scrolled .logo img { height: 44px; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 10px 15px; border-radius: 100px;
  font-weight: 600; font-size: .95rem; color: var(--ink);
  transition: background .2s, color .2s;
}
.nav a:hover { background: rgba(138, 90, 43, .1); }
.nav a.active { color: var(--green-800); background: rgba(0, 107, 0, .08); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch {
  display: flex; align-items: center; gap: 2px;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em;
  background: rgba(34,39,31,.06); border-radius: 100px; padding: 4px;
}
.lang-switch a, .lang-switch span {
  padding: 5px 11px; border-radius: 100px; color: var(--ink-faint);
}
.lang-switch .current { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.lang-switch a:hover { color: var(--ink); }
.btn-header { padding: 12px 24px; font-size: .9rem; }

/* hero variant: header transparent over video */
body.has-hero .site-header:not(.scrolled):not(.nav-open) { background: transparent; }
body.has-hero .site-header:not(.scrolled):not(.nav-open) .nav a,
body.has-hero .site-header:not(.scrolled):not(.nav-open) .logo,
body.has-hero .site-header:not(.scrolled):not(.nav-open) .burger { color: #fff; }
body.has-hero .site-header:not(.scrolled):not(.nav-open) .nav a:hover { background: rgba(255,255,255,.12); }
body.has-hero .site-header:not(.scrolled):not(.nav-open) .nav a.active { background: rgba(255,255,255,.16); color: #fff; }
body.has-hero .site-header:not(.scrolled):not(.nav-open) .lang-switch { background: rgba(255,255,255,.14); }
body.has-hero .site-header:not(.scrolled):not(.nav-open) .lang-switch a { color: rgba(255,255,255,.75); }
body.has-hero .site-header:not(.scrolled):not(.nav-open) .lang-switch .current { background: rgba(255,255,255,.92); color: var(--ink); }
body.has-hero .site-header:not(.scrolled):not(.nav-open) .logo .logo-dark { display: none; }
body.has-hero .site-header:not(.scrolled):not(.nav-open) .logo .logo-light { display: block; }
.logo .logo-light { display: none; }
body:not(.has-hero) .logo .logo-light { display: none !important; }

.burger {
  display: none; flex-direction: column; gap: 5px; padding: 10px;
  color: var(--ink);
}
.burger span { width: 24px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s, opacity .3s; }
.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: 92vh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
  background: var(--green-950);
}
.hero-media { position: absolute; inset: 0; }
.hero-media video, .hero-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(75deg, rgba(13, 22, 10, .88) 0%, rgba(13, 22, 10, .55) 45%, rgba(13, 22, 10, .18) 75%),
    linear-gradient(to top, rgba(13, 22, 10, .65), transparent 38%);
}
.hero .wrap { position: relative; z-index: 2; padding-top: 120px; padding-bottom: 80px; }
.hero .eyebrow { color: var(--oak-light); }
.hero .eyebrow::before { background: var(--oak-light); }
.hero h1 { color: #fff; max-width: 15ch; text-wrap: balance; }
.hero h1 em { font-style: italic; font-variation-settings: 'SOFT' 80, 'WONK' 1; color: var(--cream-soft); }
.hero p { margin: 26px 0 38px; font-size: 1.18rem; color: rgba(247, 244, 237, .85); max-width: 52ch; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-strip {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  border-top: 1px solid rgba(237, 230, 214, .16);
  background: rgba(13, 22, 10, .35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-strip .wrap {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-top: 0; padding-bottom: 0;
}
.hero-strip .stat {
  padding: 20px 18px;
  display: flex; flex-direction: column; gap: 2px;
  border-left: 1px solid rgba(237, 230, 214, .14);
}
.hero-strip .stat:first-child { border-left: none; padding-left: 0; }
.hero-strip b {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 560;
  color: var(--cream);
}
.hero-strip span { font-size: .82rem; color: rgba(237, 230, 214, .72); letter-spacing: .02em; }

/* --- Audience cards --------------------------------------------------- */
.audience-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.aud-card {
  background: var(--surface); border-radius: var(--radius-lg);
  padding: 34px 28px; border: 1px solid var(--line);
  transition: transform .28s cubic-bezier(.2,.7,.3,1), box-shadow .28s, border-color .28s;
}
.aud-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.aud-card .icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(0,107,0,.1), rgba(138,90,43,.12));
  color: var(--green-800); margin-bottom: 22px;
}
.aud-card .icon svg { width: 26px; height: 26px; }
.aud-card h3 { margin-bottom: 10px; }
.aud-card p { font-size: .95rem; color: var(--ink-soft); }

/* --- Product cards ---------------------------------------------------- */
.prod-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.prod-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--green-950); aspect-ratio: 4 / 4.6;
  display: flex; align-items: flex-end;
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s;
}
.prod-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.prod-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.3,1), opacity .4s;
  opacity: .92;
}
.prod-card:hover img { transform: scale(1.05); }
.prod-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13, 22, 10, .88) 0%, rgba(13, 22, 10, .25) 45%, rgba(13, 22, 10, .05) 70%);
}
.prod-card .prod-body {
  position: relative; z-index: 2; padding: 26px; color: #fff; width: 100%;
}
.prod-card h3 { color: #fff; margin-bottom: 6px; }
.prod-card p { font-size: .9rem; color: rgba(247, 244, 237, .78); }
.prod-card .go {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(247, 244, 237, .16); color: #fff;
  backdrop-filter: blur(6px);
  transition: background .25s, transform .25s;
}
.prod-card .go svg { width: 18px; height: 18px; }
.prod-card:hover .go { background: var(--oak); transform: rotate(45deg); }

/* --- Finishes / split section ----------------------------------------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.split-media {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  position: relative;
}
.split-media video, .split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.chip {
  padding: 9px 18px; border-radius: 100px; font-size: .88rem; font-weight: 700;
  background: var(--surface); border: 1px solid var(--line); color: var(--ink-soft);
}
.chip b { color: var(--green-800); }
.check-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 10px 0; font-size: 1rem; color: var(--ink-soft);
}
.check-list li::before {
  content: ''; flex: 0 0 22px; height: 22px; margin-top: 2px;
  background: var(--green-800);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.check-list li b { color: var(--ink); font-weight: 700; }

/* --- Process ---------------------------------------------------------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  position: relative; padding: 32px 26px 28px;
  background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--line);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 500;
  color: var(--oak-light); display: block; margin-bottom: 14px; line-height: 1;
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: .92rem; color: var(--ink-soft); }

/* --- Dark band (why us) ----------------------------------------------- */
.band {
  background: var(--green-950); color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 72px 64px;
  position: relative; overflow: hidden;
}
.band::before {
  content: ''; position: absolute; right: -140px; top: -140px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 155, 98, .16), transparent 65%);
}
.band h2 { color: var(--cream); }
.band .lead { color: rgba(237, 230, 214, .72); }
.band-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; }
.band-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.band-stat {
  background: rgba(237, 230, 214, .07); border: 1px solid rgba(237, 230, 214, .12);
  border-radius: var(--radius); padding: 26px 24px;
}
.band-stat b {
  display: block; font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 540; color: var(--oak-light); line-height: 1.1;
  margin-bottom: 6px;
}
.band-stat span { font-size: .9rem; color: rgba(237, 230, 214, .75); }

/* --- Gallery ---------------------------------------------------------- */
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-btn {
  padding: 10px 20px; border-radius: 100px; font-weight: 700; font-size: .88rem;
  color: var(--ink-soft); background: var(--surface); border: 1px solid var(--line);
  transition: all .22s;
}
.filter-btn:hover { border-color: var(--oak-light); color: var(--ink); }
.filter-btn.active { background: var(--green-900); color: var(--cream); border-color: var(--green-900); }

.gallery { columns: 3; column-gap: 20px; }
.g-item {
  break-inside: avoid; margin-bottom: 20px; border-radius: var(--radius);
  overflow: hidden; cursor: zoom-in; position: relative; display: block;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, opacity .3s;
}
.g-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.g-item img { width: 100%; transition: transform .5s; }
.g-item:hover img { transform: scale(1.04); }
.g-item.hidden { display: none; }
.g-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 16px 12px; font-size: .82rem; font-weight: 600; color: #fff;
  background: linear-gradient(to top, rgba(13,22,10,.72), transparent);
  opacity: 0; transition: opacity .3s;
}
.g-item:hover figcaption { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center;
  background: rgba(13, 18, 10, .94); padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 100%; max-height: 88vh; border-radius: 10px;
  box-shadow: var(--shadow-lg);
}
.lb-close, .lb-prev, .lb-next {
  position: absolute; color: rgba(247,244,237,.8);
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(247,244,237,.08);
  transition: background .2s, color .2s;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(247,244,237,.18); color: #fff; }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-close svg, .lb-prev svg, .lb-next svg { width: 24px; height: 24px; }
.lb-caption {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: rgba(247,244,237,.75); font-size: .9rem;
}

/* --- CTA banner -------------------------------------------------------- */
.cta-banner {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  padding: 88px 64px; text-align: center; color: #fff;
  background: var(--green-950);
}
.cta-banner img.bgi { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.cta-banner::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(13,22,10,.25), rgba(13,22,10,.78));
}
.cta-banner > div { position: relative; z-index: 2; }
.cta-banner h2 { color: #fff; max-width: 22ch; margin: 0 auto 18px; text-wrap: balance; }
.cta-banner p { color: rgba(247,244,237,.82); max-width: 54ch; margin: 0 auto 36px; }
.cta-banner .hero-ctas { justify-content: center; }

/* --- Page hero (interior pages) --------------------------------------- */
.page-hero {
  padding: calc(var(--header-h) + 72px) 0 64px;
  background:
    radial-gradient(1200px 420px at 85% -10%, rgba(200,155,98,.14), transparent 60%),
    radial-gradient(900px 380px at -5% 0%, rgba(0,107,0,.07), transparent 55%),
    var(--bg-alt);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); max-width: 20ch; }
.page-hero .lead { margin-top: 18px; }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: .84rem; color: var(--ink-faint); margin-bottom: 26px; font-weight: 600; }
.crumbs a:hover { color: var(--ink); }
.crumbs span { opacity: .5; }

/* --- Product detail sections ------------------------------------------ */
.prod-section { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 72px 0; border-bottom: 1px solid var(--line); }
.prod-section:last-of-type { border-bottom: none; }
.prod-section:nth-child(even) .ps-media { order: 2; }
.ps-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.ps-media img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.ps-media .ps-thumbs { position: absolute; bottom: 14px; left: 14px; display: flex; gap: 8px; }
.ps-media .ps-thumbs img {
  width: 74px; height: 58px; border-radius: 8px; object-fit: cover;
  border: 2px solid rgba(255,255,255,.85); box-shadow: var(--shadow-sm);
  cursor: pointer; aspect-ratio: auto; transition: transform .2s;
}
.ps-media .ps-thumbs img:hover { transform: translateY(-3px); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tag {
  font-size: .8rem; font-weight: 700; letter-spacing: .02em;
  padding: 7px 14px; border-radius: 100px;
  background: rgba(0,107,0,.08); color: var(--green-800);
}
.tag.oak { background: rgba(138,90,43,.1); color: var(--oak); }

/* --- Contact ----------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start; }
.contact-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 38px;
}
.c-row { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--bg-alt); }
.c-row:last-child { border-bottom: none; }
.c-row .icon {
  flex: 0 0 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(0,107,0,.09), rgba(138,90,43,.1));
  color: var(--green-800);
}
.c-row .icon svg { width: 21px; height: 21px; }
.c-row b { display: block; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 2px; }
.c-row a, .c-row p { font-weight: 600; color: var(--ink); }
.c-row a:hover { color: var(--green-700); }
.c-row small { display: block; color: var(--ink-soft); font-weight: 500; }

form .field { margin-bottom: 18px; }
form label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 7px; }
form input, form select, form textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  border: 1.5px solid var(--line); background: var(--surface);
  font: inherit; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
form input:focus, form select:focus, form textarea:focus {
  outline: none; border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(0,107,0,.08);
}
form textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .82rem; color: var(--ink-faint); margin-top: 14px; }

.map-embed {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid var(--line); margin-top: 64px;
}
.map-embed iframe { width: 100%; height: 440px; border: 0; display: block; }

/* --- Footer ------------------------------------------------------------ */
.site-footer {
  background: var(--green-950); color: rgba(237,230,214,.75);
  padding: 80px 0 36px; margin-top: 104px;
  font-size: .93rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 52px; border-bottom: 1px solid rgba(237,230,214,.14);
}
.site-footer .flogo img { height: 54px; margin-bottom: 20px; }
.site-footer h4 {
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--oak-light); margin-bottom: 18px; font-weight: 700;
}
.site-footer li { margin-bottom: 10px; }
.site-footer a { transition: color .2s; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding-top: 30px; font-size: .82rem; color: rgba(237,230,214,.45);
  flex-wrap: wrap;
}
.footer-bottom a:hover { color: #fff; }

/* --- Reveal animations ------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition-duration: .01s !important; }
}

/* --- Responsive -------------------------------------------------------- */
@media (max-width: 1080px) {
  .audience-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .prod-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 2; }
  .band { padding: 56px 40px; }
  .band-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  :root { --header-h: 68px; }
  .section { padding: 72px 0; }
  .nav {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(78vw, 360px);
    background: var(--bg); flex-direction: column; align-items: flex-start;
    padding: 110px 36px 36px; gap: 6px;
    box-shadow: var(--shadow-lg);
    transform: translateX(105%); transition: transform .35s cubic-bezier(.2,.7,.3,1);
    z-index: -1;
  }
  .nav a { font-size: 1.15rem; width: 100%; }
  .nav-open .nav { transform: none; }
  .burger { display: flex; }
  .btn-header { display: none; }
  .split, .contact-grid, .prod-section { grid-template-columns: 1fr; gap: 36px; }
  .prod-section:nth-child(even) .ps-media { order: 0; }
  .hero { min-height: 86vh; flex-direction: column; justify-content: center; }
  .hero .wrap { padding-bottom: 40px; }
  .hero-strip { position: static; margin-top: auto; width: 100%; background: rgba(13, 22, 10, .55); }
  .hero-strip .wrap { grid-template-columns: repeat(2, 1fr); padding-top: 6px; padding-bottom: 10px; }
  .hero-strip .stat { border-left: none; padding: 8px; }
  .hero-strip b { font-size: 1.15rem; }
  .cta-banner { padding: 64px 28px; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .audience-grid, .process-grid, .prod-grid { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .wrap { padding: 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .lang-switch { font-size: .78rem; }
}
