:root {
  --green-950: #03271c;
  --green-900: #073f2d;
  --green-800: #0a513a;
  --green-700: #14654b;
  --green-100: #dce9e2;
  --gold-600: #b77f24;
  --gold-500: #c99435;
  --gold-400: #d9ae5b;
  --cotton: #f8f5ed;
  --white: #ffffff;
  --ink: #101812;
  --muted: #5e6962;
  --line: rgba(7, 63, 45, .17);
  --surface: #efede6;
  --error: #b42318;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-1: 0 18px 60px rgba(3, 39, 28, .12);
  --container: 1240px;
  --header-height: 112px;
  --transition: 250ms cubic-bezier(.2, .75, .25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--cotton);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }

::selection { background: var(--gold-500); color: var(--green-950); }

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  background: var(--white);
  color: var(--green-900);
  transform: translateY(-160%);
  transition: transform var(--transition);
}

.skip-link:focus { transform: translateY(0); }

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.container {
  width: min(var(--container), calc(100% - 64px));
  margin-inline: auto;
}

.section { padding-block: 120px; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--green-800);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span:first-child {
  width: 36px;
  height: 2px;
  background: var(--gold-500);
}

.eyebrow.light { color: rgba(255,255,255,.78); }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }

h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 750;
  letter-spacing: -.055em;
  line-height: .98;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  transition: transform var(--transition), background var(--transition);
}

.utility-bar {
  height: 36px;
  border-bottom: 1px solid rgba(255,255,255,.13);
  background: rgba(3,39,28,.72);
  transition: height var(--transition), opacity var(--transition);
  backdrop-filter: blur(12px);
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.utility-inner a { display: flex; align-items: center; gap: 8px; }
.utility-inner a svg { width: 14px; height: 14px; }
.utility-status { display: flex; align-items: center; gap: 10px; }
.utility-status i { width: 7px; height: 7px; border-radius: 50%; background: #75d3a7; box-shadow: 0 0 0 5px rgba(117,211,167,.12); }

.nav-wrap {
  border-bottom: 1px solid rgba(255,255,255,.14);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 28px;
}

.site-header.is-scrolled .utility-bar { height: 0; opacity: 0; overflow: hidden; }
.site-header.is-scrolled .nav-wrap { background: rgba(3,39,28,.96); border-color: transparent; box-shadow: 0 10px 35px rgba(3,39,28,.18); backdrop-filter: blur(18px); }
.site-header.is-scrolled .nav-inner { min-height: 74px; }

.brand { display: flex; align-items: center; gap: 13px; flex-shrink: 0; }
.brand-mark { width: 47px; height: 47px; color: var(--gold-400); stroke-width: 2.2; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 19px; font-weight: 850; letter-spacing: .045em; }
.brand-copy small { margin-top: 7px; color: rgba(255,255,255,.68); font-size: 8px; font-weight: 600; letter-spacing: .06em; }

.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 40px); margin-left: auto; }
.desktop-nav a { position: relative; padding-block: 16px; font-size: 13px; font-weight: 650; }
.desktop-nav a::after { position: absolute; right: 0; bottom: 10px; left: 0; height: 2px; background: var(--gold-500); content: ""; transform: scaleX(0); transform-origin: right; transition: transform var(--transition); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.lang-switch { display: flex; align-items: center; padding: 3px; border: 1px solid rgba(255,255,255,.23); border-radius: 4px; }
.lang-btn { min-width: 34px; min-height: 34px; padding: 0; border: 0; background: transparent; color: rgba(255,255,255,.55); cursor: pointer; font-size: 10px; font-weight: 800; }
.lang-btn.is-active { background: rgba(255,255,255,.16); color: var(--white); }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding-inline: 18px;
  background: var(--gold-500);
  color: var(--green-950);
  font-size: 12px;
  font-weight: 800;
  transition: background var(--transition), transform var(--transition);
}

.header-cta svg { width: 18px; height: 18px; }
.header-cta:hover { background: var(--gold-400); transform: translateY(-2px); }
.menu-toggle { display: none; align-items: center; justify-content: center; width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.24); background: transparent; cursor: pointer; }
.menu-toggle svg { width: 24px; height: 24px; }
.menu-close { display: none; }
.mobile-nav { display: none; }
.mobile-langs { display: none; }

.hero {
  position: relative;
  display: flex;
  min-height: 900px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.hero-bg, .hero-overlay, .hero-grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg { object-fit: cover; object-position: center; opacity: .88; }
.hero-overlay { background: linear-gradient(90deg, rgba(3,30,21,.94) 0%, rgba(3,39,28,.78) 42%, rgba(3,39,28,.2) 75%, rgba(3,39,28,.36) 100%), linear-gradient(0deg, rgba(3,39,28,.74) 0%, transparent 40%); }
.hero-grid { opacity: .09; background-image: linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px); background-size: 72px 72px; mask-image: linear-gradient(90deg, #000, transparent 72%); }

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  align-items: end;
  gap: 60px;
  padding-top: 84px;
  padding-bottom: 170px;
}

.hero-copy { max-width: 920px; }
.hero h1 { margin: 0; max-width: 950px; font-size: clamp(52px, 6.2vw, 96px); font-weight: 780; letter-spacing: -.065em; line-height: .91; }
.hero h1 em { color: var(--gold-400); font-style: normal; }
.hero-copy > p { max-width: 670px; margin: 34px 0 0; color: rgba(255,255,255,.76); font-size: clamp(17px, 1.5vw, 20px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 14px; margin-top: 38px; }

.btn {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 14px 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .015em;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn svg { width: 21px; height: 21px; transition: transform var(--transition); }
.btn:hover { transform: translateY(-3px); }
.btn:hover svg { transform: translateX(4px); }
.btn-gold { background: var(--gold-500); color: var(--green-950); }
.btn-gold:hover { background: var(--gold-400); }
.btn-ghost { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.03); color: var(--white); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.11); }

.hero-note { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; margin-bottom: 12px; padding: 22px 0 22px 22px; border-left: 2px solid var(--gold-500); background: linear-gradient(90deg, rgba(3,39,28,.38), transparent); }
.note-index { color: var(--gold-400); font-size: 12px; font-weight: 800; }
.hero-note strong { display: block; margin-bottom: 7px; font-size: 14px; }
.hero-note p { margin: 0; color: rgba(255,255,255,.67); font-size: 12px; line-height: 1.5; }

.hero-stats { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; border-top: 1px solid rgba(255,255,255,.18); background: rgba(3,39,28,.86); backdrop-filter: blur(16px); }
.hero .reveal { opacity: 1; transform: none; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr .9fr .85fr; min-height: 128px; }
.stat { display: flex; flex-direction: column; justify-content: center; padding: 24px 34px; border-left: 1px solid rgba(255,255,255,.14); }
.stat:first-child { border-left: 0; padding-left: 0; }
.stat strong { color: var(--gold-400); font-size: clamp(28px, 3vw, 44px); font-weight: 760; letter-spacing: -.04em; line-height: 1; }
.stat strong small { font-size: 14px; font-weight: 750; letter-spacing: 0; }
.stat > span { margin-top: 10px; color: rgba(255,255,255,.62); font-size: 11px; letter-spacing: .04em; }
.stat-action { padding-right: 0; }
.stat-action a { display: flex; height: 100%; align-items: center; justify-content: space-between; gap: 18px; color: var(--white); font-size: 13px; font-weight: 750; }
.stat-action svg { width: 25px; height: 25px; color: var(--gold-400); transition: transform var(--transition); }
.stat-action a:hover svg { transform: translateX(5px); }

.trust-line { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--white); }
.trust-track { display: flex; width: max-content; align-items: center; gap: 32px; min-height: 66px; animation: ticker 28s linear infinite; }
.trust-track span { color: var(--green-900); font-size: 11px; font-weight: 850; letter-spacing: .12em; white-space: nowrap; }
.trust-track i { width: 8px; height: 8px; transform: rotate(45deg); background: var(--gold-500); }
@keyframes ticker { to { transform: translateX(-50%); } }

.services { background: var(--cotton); }
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 80px; margin-bottom: 62px; }
.section-heading > p { max-width: 530px; margin: 0 0 4px; color: var(--muted); font-size: 18px; line-height: 1.65; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; display: flex; min-height: 420px; flex-direction: column; padding: 34px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.36); transition: transform var(--transition), background var(--transition), box-shadow var(--transition); }
.service-card:hover { z-index: 2; transform: translateY(-8px); background: var(--white); box-shadow: var(--shadow-1); }
.service-card.featured { background: var(--green-900); color: var(--white); }
.service-card.featured:hover { background: var(--green-800); }
.service-number { color: var(--gold-600); font-size: 11px; font-weight: 850; letter-spacing: .1em; }
.service-icon { width: 48px; height: 48px; margin: 44px 0 30px; color: var(--gold-500); stroke-width: 1.55; }
.service-card h3 { margin-bottom: 16px; font-size: 23px; font-weight: 740; letter-spacing: -.035em; line-height: 1.15; }
.service-card p { margin-bottom: 30px; color: var(--muted); font-size: 14px; }
.service-card.featured p { color: rgba(255,255,255,.66); }
.service-tag { display: inline-block; align-self: flex-start; margin-top: auto; padding-top: 15px; border-top: 1px solid currentColor; color: var(--green-700); font-size: 10px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.service-card.featured .service-tag { color: var(--gold-400); }

.production { display: grid; grid-template-columns: 1.08fr .92fr; padding: 0; background: var(--green-900); color: var(--white); }
.production-photo { position: relative; min-height: 720px; overflow: hidden; }
.production-photo::after { position: absolute; inset: 0; background: linear-gradient(90deg, transparent 65%, rgba(7,63,45,.38)), linear-gradient(0deg, rgba(3,39,28,.3), transparent 45%); content: ""; }
.production-photo img { width: 100%; height: 100%; object-fit: cover; }
.photo-caption { position: absolute; z-index: 2; bottom: 38px; left: 38px; display: flex; flex-direction: column; padding: 17px 22px; border-left: 3px solid var(--gold-500); background: rgba(3,39,28,.8); backdrop-filter: blur(10px); }
.photo-caption span { font-size: 13px; font-weight: 850; letter-spacing: .12em; }
.photo-caption small { margin-top: 4px; color: rgba(255,255,255,.6); font-size: 10px; }
.production-copy { display: flex; flex-direction: column; justify-content: center; max-width: 650px; padding: 90px 7vw; }
.production-copy h2 { max-width: 620px; font-size: clamp(42px, 4.8vw, 70px); }
.production-copy .lead { max-width: 570px; margin: 34px 0 30px; color: rgba(255,255,255,.68); font-size: 17px; line-height: 1.65; }
.check-list { display: grid; gap: 16px; margin: 0 0 36px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.87); font-size: 14px; }
.check-list svg { width: 22px; height: 22px; flex: 0 0 22px; padding: 4px; border-radius: 50%; background: var(--gold-500); color: var(--green-950); stroke-width: 2.5; }
.text-link { display: inline-flex; align-items: center; gap: 16px; align-self: flex-start; padding-bottom: 8px; border-bottom: 1px solid var(--gold-500); color: var(--gold-400); font-size: 12px; font-weight: 800; letter-spacing: .04em; }
.text-link svg { width: 20px; height: 20px; transition: transform var(--transition); }
.text-link:hover svg { transform: translateX(5px); }

.process { position: relative; overflow: hidden; background: var(--green-950); color: var(--white); }
.process::before { position: absolute; top: -230px; right: -100px; width: 620px; height: 620px; border: 1px solid rgba(201,148,53,.15); border-radius: 50%; content: ""; box-shadow: inset 0 0 0 90px rgba(201,148,53,.025), inset 0 0 0 180px rgba(201,148,53,.025); }
.process-top { max-width: 850px; margin-bottom: 72px; }
.process-top h2 { max-width: 900px; }
.process-list { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.process-list::before { position: absolute; top: 25px; right: 12.5%; left: 12.5%; height: 1px; background: rgba(255,255,255,.2); content: ""; }
.process-list li { position: relative; display: flex; flex-direction: column; padding-right: 30px; }
.process-number { position: relative; z-index: 2; display: grid; width: 52px; height: 52px; place-items: center; margin-bottom: 30px; border: 1px solid var(--gold-500); background: var(--green-950); color: var(--gold-400); font-size: 11px; font-weight: 850; }
.process-list h3 { margin-bottom: 12px; font-size: 21px; font-weight: 730; letter-spacing: -.02em; }
.process-list p { max-width: 235px; margin: 0; color: rgba(255,255,255,.56); font-size: 13px; line-height: 1.6; }

.quality { background: var(--white); }
.quality-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 90px; }
.quality-copy > p { max-width: 560px; margin: 34px 0 40px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.quality-points { display: grid; gap: 0; }
.quality-points > div { display: grid; grid-template-columns: 42px 1fr; column-gap: 15px; padding: 18px 0; border-top: 1px solid var(--line); }
.quality-points svg { grid-row: 1 / 3; width: 34px; height: 34px; color: var(--gold-600); stroke-width: 1.6; }
.quality-points strong { font-size: 15px; }
.quality-points span { margin-top: 3px; color: var(--muted); font-size: 12px; }
.quality-image { position: relative; min-height: 660px; margin: 0; overflow: hidden; }
.quality-image::before { position: absolute; z-index: 2; top: 0; left: 0; width: 70px; height: 70px; border-top: 2px solid var(--gold-500); border-left: 2px solid var(--gold-500); content: ""; }
.quality-image img { width: 100%; height: 660px; object-fit: cover; }
.quality-image figcaption { position: absolute; z-index: 2; right: 0; bottom: 0; display: flex; width: 245px; min-height: 150px; align-items: center; gap: 16px; padding: 24px; background: var(--gold-500); color: var(--green-950); }
.quality-image figcaption strong { font-size: 55px; font-weight: 780; letter-spacing: -.05em; line-height: 1; }
.quality-image figcaption span { font-size: 11px; font-weight: 800; line-height: 1.45; text-transform: uppercase; }

.gallery { background: var(--cotton); }
.gallery-heading { margin-bottom: 50px; }
.gallery-grid { display: grid; grid-template-columns: 1.25fr .75fr 1fr; grid-template-rows: 300px 300px; gap: 14px; }
.gallery-item { position: relative; min-width: 0; padding: 0; overflow: hidden; border: 0; background: var(--green-950); cursor: zoom-in; }
.gallery-item::after { position: absolute; inset: 0; border: 0 solid var(--gold-500); background: linear-gradient(0deg, rgba(3,39,28,.46), transparent 55%); content: ""; transition: border-width var(--transition), background var(--transition); }
.gallery-item:hover::after { border-width: 4px; background: rgba(3,39,28,.08); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.75,.25,1); }
.gallery-item:hover img { transform: scale(1.045); }
.gallery-item > span { position: absolute; z-index: 3; bottom: 18px; left: 20px; color: var(--white); font-size: 11px; font-weight: 850; }
.gallery-wide { grid-row: 1 / 3; }
.gallery-tall { grid-column: 2; grid-row: 1 / 3; }
.gallery-tall img { object-position: center; }

.contact-section { position: relative; overflow: hidden; padding-block: 120px; background: var(--green-900); color: var(--white); }
.contact-bg { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.25) 50%, transparent 50.2%), linear-gradient(transparent 49.8%, rgba(255,255,255,.22) 50%, transparent 50.2%); background-size: 90px 90px; mask-image: linear-gradient(90deg, transparent, #000); }
.contact-grid { position: relative; display: grid; grid-template-columns: 1fr .85fr; align-items: center; gap: 100px; }
.contact-copy h2 { max-width: 690px; font-size: clamp(48px, 6vw, 84px); }
.contact-copy > p { max-width: 580px; margin: 32px 0 42px; color: rgba(255,255,255,.68); font-size: 18px; }
.contact-people { display: grid; grid-template-columns: 1fr 1fr; max-width: 620px; border-top: 1px solid rgba(255,255,255,.18); }
.contact-people a { display: flex; flex-direction: column; padding: 20px 20px 0 0; }
.contact-people a + a { padding-left: 26px; border-left: 1px solid rgba(255,255,255,.18); }
.contact-people span { margin-bottom: 6px; color: var(--gold-400); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.contact-people strong { font-size: clamp(16px, 1.8vw, 22px); }

.contact-form { padding: 38px; background: var(--white); color: var(--ink); box-shadow: 0 32px 90px rgba(0,0,0,.22); }
.form-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.form-head strong { color: var(--green-900); font-size: 22px; letter-spacing: -.02em; }
.form-head span { color: var(--gold-600); font-size: 10px; font-weight: 850; }
.contact-form label { display: block; margin-bottom: 20px; }
.contact-form label > span { display: block; margin-bottom: 9px; color: var(--green-900); font-size: 11px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.contact-form input, .contact-form select { width: 100%; min-height: 54px; padding: 0 15px; border: 1px solid rgba(7,63,45,.2); border-radius: 0; outline: none; background: #faf9f5; color: var(--ink); transition: border-color var(--transition), box-shadow var(--transition); }
.contact-form input:focus, .contact-form select:focus { border-color: var(--green-700); box-shadow: 0 0 0 3px rgba(20,101,75,.1); }
.contact-form input::placeholder { color: #879087; }
.field-error { display: none; margin-top: 6px; color: var(--error); font-size: 11px; }
.contact-form label.has-error input { border-color: var(--error); }
.contact-form label.has-error .field-error { display: block; }
.form-submit { width: 100%; margin-top: 4px; border: 0; }
.form-note { margin: 13px 0 0; color: #7b837d; font-size: 10px; line-height: 1.5; text-align: center; }

.site-footer { padding-top: 62px; background: var(--green-950); color: var(--white); }
.footer-main { display: grid; grid-template-columns: 1fr auto 52px; align-items: center; gap: 50px; padding-bottom: 50px; }
.footer-nav { display: flex; align-items: center; gap: 34px; }
.footer-nav a { color: rgba(255,255,255,.66); font-size: 12px; font-weight: 650; }
.footer-nav a:hover { color: var(--gold-400); }
.footer-up { display: grid; width: 52px; height: 52px; place-items: center; border: 1px solid rgba(255,255,255,.22); }
.footer-up svg { width: 22px; height: 22px; transform: rotate(-90deg); }
.footer-up:hover { border-color: var(--gold-500); color: var(--gold-400); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; min-height: 64px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.4); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }

.lightbox { width: min(1100px, calc(100% - 32px)); max-height: calc(100vh - 32px); padding: 0; overflow: visible; border: 0; background: transparent; }
.lightbox::backdrop { background: rgba(3,20,15,.92); backdrop-filter: blur(8px); }
.lightbox img { width: 100%; max-height: calc(100vh - 60px); object-fit: contain; }
.lightbox-close { position: absolute; z-index: 2; top: -20px; right: -14px; display: grid; width: 48px; height: 48px; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: var(--green-950); color: var(--white); cursor: pointer; }
.lightbox-close svg { width: 22px; height: 22px; }

.toast { position: fixed; z-index: 500; right: 24px; bottom: 24px; display: flex; max-width: 390px; align-items: center; gap: 12px; padding: 17px 20px; background: var(--white); color: var(--green-900); box-shadow: 0 20px 55px rgba(3,39,28,.3); font-size: 13px; font-weight: 700; opacity: 0; pointer-events: none; transform: translateY(20px); transition: opacity var(--transition), transform var(--transition); }
.toast.is-visible { opacity: 1; transform: translateY(0); }
.toast svg { width: 22px; height: 22px; padding: 4px; border-radius: 50%; background: var(--green-900); color: var(--white); }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity 800ms ease, transform 800ms cubic-bezier(.2,.75,.25,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }

@media (max-width: 1120px) {
  .container { width: min(var(--container), calc(100% - 44px)); }
  .desktop-nav { gap: 19px; }
  .header-cta span { display: none; }
  .header-cta { width: 46px; padding: 0; }
  .hero-content { grid-template-columns: 1fr 210px; gap: 35px; }
  .hero h1 { font-size: clamp(58px, 7vw, 86px); }
  .stats-grid { grid-template-columns: 1fr 1fr 1fr; }
  .stat-action { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 380px; }
  .production { grid-template-columns: 1fr 1fr; }
  .production-copy { padding-inline: 50px; }
  .quality-grid { gap: 55px; }
  .contact-grid { gap: 55px; }
}

@media (max-width: 860px) {
  :root { --header-height: 78px; }
  .section { padding-block: 88px; }
  .container { width: min(var(--container), calc(100% - 36px)); }
  .utility-bar, .site-header.is-scrolled .utility-bar { display: none; }
  .nav-inner, .site-header.is-scrolled .nav-inner { min-height: 74px; }
  .nav-wrap { background: rgba(3,39,28,.9); backdrop-filter: blur(16px); }
  .brand-copy strong { font-size: 16px; }
  .brand-copy small { font-size: 7px; }
  .brand-mark { width: 41px; height: 41px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: flex; }
  .menu-toggle[aria-expanded="true"] .menu-open { display: none; }
  .menu-toggle[aria-expanded="true"] .menu-close { display: block; }
  .mobile-nav { position: fixed; z-index: -1; top: 74px; right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; padding: 44px 24px; background: var(--green-950); opacity: 0; pointer-events: none; transform: translateY(-15px); transition: opacity var(--transition), transform var(--transition); }
  .mobile-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-nav a { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.13); font-size: clamp(28px, 8vw, 42px); font-weight: 700; letter-spacing: -.04em; }
  .mobile-nav .mobile-phone { margin-top: auto; border: 0; color: var(--gold-400); font-size: 21px; }
  .hero { min-height: 920px; align-items: flex-start; }
  .hero-content { display: block; padding-top: 160px; padding-bottom: 260px; }
  .hero-copy { max-width: 730px; }
  .hero h1 { font-size: clamp(54px, 9vw, 76px); }
  .hero-note { display: none; }
  .hero-stats { bottom: 0; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); min-height: 145px; }
  .stat { padding: 22px 16px; }
  .stat:first-child { padding-left: 0; }
  .stat strong { font-size: 34px; }
  .stat > span { font-size: 10px; }
  .section-heading { grid-template-columns: 1fr; gap: 30px; }
  .section-heading > p { font-size: 16px; }
  .production { grid-template-columns: 1fr; }
  .production-photo { min-height: 560px; }
  .production-copy { max-width: none; padding: 80px 36px; }
  .process-list { grid-template-columns: 1fr 1fr; gap: 44px 20px; }
  .process-list::before { display: none; }
  .quality-grid { grid-template-columns: 1fr; }
  .quality-copy { max-width: 650px; }
  .quality-image { min-height: 560px; }
  .quality-image img { height: 560px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 300px 300px; }
  .gallery-wide { grid-row: 1 / 3; }
  .gallery-tall { grid-column: 2; grid-row: 1 / 2; }
  .gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
  .gallery-item:nth-child(4) { grid-column: 1 / 3; grid-row: 3; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { max-width: 700px; }
  .contact-form { max-width: 650px; }
  .footer-main { grid-template-columns: 1fr auto; }
  .footer-nav { display: none; }
}

@media (max-width: 600px) {
  .section { padding-block: 72px; }
  .container { width: calc(100% - 28px); max-width: calc(100vw - 28px); }
  h2 { font-size: clamp(38px, 12vw, 53px); }
  .nav-inner { gap: 8px; }
  .nav-actions { gap: 7px; }
  .brand { gap: 7px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-copy strong { font-size: 13px; letter-spacing: .015em; }
  .nav-actions .lang-switch { display: none; }
  .mobile-langs { display: flex; gap: 8px; margin-bottom: 18px; }
  .mobile-langs .lang-btn { min-width: auto; min-height: 44px; padding: 0 15px; border: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.68); }
  .mobile-langs .lang-btn.is-active { border-color: var(--gold-500); background: var(--gold-500); color: var(--green-950); }
  .lang-btn { min-width: 29px; min-height: 36px; }
  .menu-toggle { width: 44px; height: 44px; }
  .brand-copy small { display: none; }
  .hero { min-height: 930px; }
  .hero-bg { object-position: 59% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(3,30,21,.95), rgba(3,39,28,.7)), linear-gradient(0deg, rgba(3,39,28,.82), transparent); }
  .hero-content { padding-top: 132px; padding-bottom: 280px; }
  .hero-copy, .hero-copy > p, .hero-actions { width: 100%; max-width: 100%; }
  .hero h1 { width: 100%; max-width: 100%; font-size: 40px; line-height: .98; text-wrap: wrap; }
  .hero-copy > p { margin-top: 25px; font-size: 16px; }
  .hero-actions { align-items: stretch; flex-direction: column; margin-top: 28px; }
  .btn { width: 100%; }
  .hero-stats { background: rgba(3,39,28,.94); }
  .stats-grid { grid-template-columns: 1fr 1fr; min-height: 200px; }
  .stat:nth-child(3) { grid-column: 1 / 3; border-top: 1px solid rgba(255,255,255,.14); border-left: 0; }
  .stat { padding: 20px 14px; }
  .stat:first-child { padding-left: 14px; }
  .stat strong { font-size: 30px; }
  .trust-track { min-height: 58px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 350px; }
  .section-heading { margin-bottom: 44px; }
  .production-photo { min-height: 430px; }
  .production-copy { padding: 68px 20px; }
  .production-copy .lead { font-size: 16px; }
  .process-top { margin-bottom: 50px; }
  .process-list { grid-template-columns: 1fr; gap: 36px; }
  .process-list li { display: grid; grid-template-columns: 52px 1fr; gap: 18px; padding: 0; }
  .process-number { grid-row: 1; margin: 0; }
  .quality-grid { gap: 48px; }
  .quality-image, .quality-image img { min-height: 440px; height: 440px; }
  .quality-image figcaption { width: 210px; min-height: 125px; }
  .quality-image figcaption strong { font-size: 45px; }
  .gallery-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(4, 270px); }
  .gallery-wide, .gallery-tall, .gallery-item:nth-child(3), .gallery-item:nth-child(4) { grid-column: 1; grid-row: auto; }
  .contact-section { padding-block: 76px; }
  .contact-copy h2 { font-size: clamp(44px, 14vw, 61px); }
  .contact-copy > p { font-size: 16px; }
  .contact-people { grid-template-columns: 1fr; }
  .contact-people a + a { padding-left: 0; border-left: 0; }
  .contact-form { padding: 25px 20px; }
  .footer-main { gap: 20px; }
  .footer-brand .brand-copy strong { font-size: 14px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 5px; }
  .toast { right: 14px; bottom: 14px; left: 14px; }
}

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