: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; }
}

/* Refine the existing visual language; content is visible before scripts load. */
.service-card.featured .service-number{color:#e9c687}
.factory-location{padding:58px 0;background:#e9ebdf}.location-inner{display:flex;align-items:center;justify-content:space-between;gap:40px}.location-inner>div{max-width:780px}.location-inner h2{font-size:38px;margin:18px 0}.location-inner .btn{flex-shrink:0}address{font-style:normal;line-height:1.7}.company-section{background:#eeeee5}.company-addresses{margin-top:0}.requisites{margin:35px 0;background:#fffdf7;padding:8px 28px;border:1px solid #d0d9c9}.requisites>div{display:grid;grid-template-columns:240px 1fr;gap:24px;padding:18px 0;border-bottom:1px solid #d0d9c9}.requisites>div:last-child{border:0}.requisites dt{color:#526357}.requisites dd{margin:0;font-weight:650;font-variant-numeric:tabular-nums;overflow-wrap:anywhere}.requisites-actions{display:flex;align-items:center;gap:28px;flex-wrap:wrap}.requisites-actions .text-link{margin:0}#company-copy-text{white-space:pre-wrap;overflow-wrap:anywhere;font-size:14px}.email-card{grid-column:1/-1}.email-card .person-phone{display:block;margin-top:18px;overflow-wrap:anywhere}.footer-company{display:grid;grid-template-columns:1fr auto;gap:45px;border-top:1px solid #ffffff26;padding-block:28px;color:#d4dfd5;font-size:14px}.footer-company p{max-width:650px;margin:10px 0 0}.footer-company>div:last-child{display:grid;gap:8px}.footer-company a{width:max-content}.recipient-note{font-size:12px;color:#526357;line-height:1.6}.contact-form .btn-outline{margin-top:12px;width:100%;background:transparent;border:1px solid #174b34;color:#174b34}.contact-form .form-direct{display:inline-flex;min-height:44px;align-items:center}.company-addresses .card-link{font-weight:650}.brand-copy strong{white-space:nowrap}
@media(max-width:860px){.location-inner{display:block}.location-inner .btn{margin-top:25px}.requisites>div{grid-template-columns:170px 1fr}.footer-company{grid-template-columns:1fr;gap:18px}.location-inner h2{font-size:34px}}
@media(max-width:600px){.requisites{padding:6px 20px}.requisites>div{grid-template-columns:1fr;gap:8px}.requisites-actions{gap:20px}.factory-location{padding:45px 0}.location-inner h2{font-size:31px}.footer-company{font-size:13px}.contact-form .recipient-note{font-size:12px}.company-addresses address{font-size:16px}}
:root{--container:1240px;--gold-500:#d8ae63;--gold-400:#e9c687;--gold-600:#88601f;--ink:#18382b;--muted:#526357}
html{scroll-padding-top:100px}body{background:#f8f5ed}p{line-height:1.65}h1,h2,h3{overflow-wrap:break-word}.reveal{opacity:1;transform:none}.reveal.is-visible{opacity:1;transform:none}
[hidden]{display:none!important}.menu-toggle{display:none}.js .menu-toggle{display:none}.mobile-langs{display:none}
.utility-bar{background:#03271c}.utility-status{letter-spacing:.03em}.site-header{background:#073f2d}.nav-wrap{background:transparent}.nav-inner{min-height:86px}.brand-copy small{font-size:9px;letter-spacing:.02em}.brand-copy strong{font-size:19px}
.lang-switch{display:flex;gap:2px}.lang-btn{display:inline-flex;align-items:center;justify-content:center;min-width:34px;min-height:42px;text-decoration:none;font-size:12px}.lang-btn.is-active{color:#fff;background:rgba(255,255,255,.12)}
.header-cta{background:#d8ae63;border-color:#d8ae63;color:#073f2d}.desktop-nav a[aria-current="page"]{color:#e9c687}.hero{min-height:760px}.hero-content{padding-top:195px;padding-bottom:200px;grid-template-columns:minmax(0,1fr) 230px;gap:45px}.hero-copy{max-width:880px}.hero h1{font-size:clamp(54px,6.7vw,94px);line-height:1.04;letter-spacing:-.055em;max-width:860px}.hero h1 em{display:block}.hero-copy>p{font-size:19px;max-width:610px;margin-top:28px}.hero-overlay{background:linear-gradient(90deg,rgba(3,30,21,.93),rgba(3,39,28,.48) 62%,rgba(3,39,28,.18)),linear-gradient(0deg,rgba(3,39,28,.7),transparent 65%)}
.hero-note{padding:22px;background:rgba(3,39,28,.4)}.hero-note p{color:#e0e5d9;font-size:13px}.stats-grid{grid-template-columns:repeat(3,1fr);min-height:122px}.stat{position:relative;padding:24px 34px}.stat strong{font-size:25px;letter-spacing:-.025em}.stat>span{color:#d3ddcf;font-size:12px}.stat .stat-index{position:absolute;right:25px;top:23px;color:#c9a76d;font-size:11px;margin:0}.hero-stats{background:rgba(3,39,28,.9)}
.trust-track{width:auto;animation:none;display:grid;grid-template-columns:repeat(3,1fr);gap:18px;padding:15px 5vw;min-height:68px;text-align:center}.trust-track span{font-size:10px;letter-spacing:.1em;white-space:normal}
.section{padding-block:90px}.section-heading{gap:50px;margin-bottom:42px}.section-heading>p{font-size:17px}h2{font-size:clamp(34px,4vw,54px);line-height:1.12;letter-spacing:-.04em}.service-card{min-height:365px;padding:30px 25px}.service-icon{margin:28px 0 23px;width:38px;height:38px}.service-card h3{font-size:22px}.service-card p{font-size:15px}.service-card.featured p{color:#dce6dc}.service-tag{font-size:11px;letter-spacing:.03em}.card-link{display:flex;justify-content:space-between;gap:12px;margin-top:22px;font-size:13px;font-weight:650;text-underline-offset:4px}.card-link:hover{text-decoration:underline}.service-card:hover{transform:translateY(-3px)}
.conditions-section{background:#edece2}.detail-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px;margin-top:36px}.detail-grid.three{grid-template-columns:repeat(3,minmax(0,1fr))}.detail-grid.four{grid-template-columns:repeat(4,minmax(0,1fr))}.detail-card{background:#fffdf7;border:1px solid #dce1d4;padding:30px}.detail-card h3{font-size:23px;margin:0 0 14px;letter-spacing:-.025em}.detail-card p{font-size:16px;margin:0;color:#526357}.dark-link{color:#174b34;margin-top:30px}.dark-link svg{width:20px}.production-photo{min-height:620px}.production-copy{padding:65px 5vw}.production-copy h2{font-size:clamp(36px,3.7vw,53px)}.production-copy .lead{color:#d6e0d2}.photo-caption small{color:#e1e6dc}.process-list p{color:#cbd8cd;font-size:14px}.quality-image,.quality-image img{min-height:560px;height:560px}.quality-image figcaption{flex-direction:column;align-items:flex-start;justify-content:center;gap:8px;min-height:125px}.quality-image figcaption strong{font-size:27px}.quality-image figcaption span{font-size:12px}.quality-copy>p{font-size:17px}.quality-points span{font-size:14px}.gallery-item{display:block}.gallery-grid{gap:18px}.gallery-item>span{font-size:13px}.gallery-item:hover img{transform:scale(1.025)}
.faq-section{background:#f0f0e7}.faq-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:70px}.faq-grid h2{max-width:440px}.faq-grid details{border-bottom:1px solid #c9d1c4;padding:0}.faq-grid summary{cursor:pointer;padding:23px 36px 23px 0;position:relative;list-style:none;font-size:18px;font-weight:650;line-height:1.45}.faq-grid summary::-webkit-details-marker{display:none}.faq-grid summary:after{content:'+';position:absolute;right:5px;top:22px;color:#7c612c;font-size:24px;font-weight:400}.faq-grid details[open] summary:after{content:'−'}.faq-grid details p{margin:0;padding:0 20px 24px 0;color:#526357;font-size:16px}
.contact-grid{grid-template-columns:1fr 1fr;align-items:start;gap:70px}.contact-copy{padding-top:25px}.contact-copy h2{font-size:clamp(40px,4.8vw,65px)}.contact-copy>p{font-size:17px;color:#d8e2d8}.contact-people{grid-template-columns:1fr;gap:18px}.contact-people a+a{border:0;padding-left:0}.contact-people strong{font-size:24px}.contact-people .contact-page-link{font-size:15px;color:#e9c687}.contact-form{padding:36px;border:1px solid #e1e4d5;background:#fffdf7;box-shadow:0 15px 45px #03271c14}.contact-form fieldset{padding:0;margin:0;border:0;min-width:0}.form-intro{font-size:15px;color:#526357;margin-top:-8px;margin-bottom:24px}.form-head strong{font-size:25px}.contact-form label{font-size:14px;font-weight:650;line-height:1.6}.contact-form input,.contact-form select,.contact-form textarea{font-size:16px;background:#fff;border:1px solid #bcc7b8;min-height:48px;border-radius:0;width:100%;padding:12px;margin-top:7px;color:#163c2b}.contact-form input::placeholder{color:#68766b;opacity:1}.optional{font-size:12px;color:#59695b;font-weight:400}.field-error{font-size:12px}.form-note{font-size:12px;line-height:1.6;color:#526357;margin-bottom:18px}.form-note a{text-decoration:underline;text-underline-offset:3px}.form-direct{display:block;font-size:15px;font-weight:650;color:#174b34}.request-enhanced{display:none}.js .request-enhanced{display:block}.request-status{padding:16px;background:#e3eddd;color:#18482d;font-size:14px;margin-top:25px}.contact-form textarea{font-weight:400;line-height:1.5;resize:vertical;margin-bottom:18px;min-height:160px}.copy-button{border:1px solid #79917b;background:transparent;color:#174b34;padding:13px 17px;margin-top:12px;cursor:pointer;font-size:14px;min-height:46px}.notice{padding:22px 25px;border-left:3px solid #bd9350;background:#edf0e5;font-size:16px;color:#234430;line-height:1.65}
.page-intro{background:#073f2d;padding:160px 0 62px;color:#fff;position:relative;overflow:hidden}.page-intro:after{content:'';position:absolute;width:430px;height:430px;right:-130px;top:60px;border:1px solid #d8ae6333;border-radius:50%;pointer-events:none;box-shadow:0 0 0 80px #d8ae6308,0 0 0 160px #d8ae6305}.page-intro>.container{position:relative;z-index:1}.page-intro h1{font-size:clamp(38px,5vw,68px);max-width:970px;line-height:1.08;letter-spacing:-.045em;margin:22px 0}.page-intro p{max-width:760px;color:#dbe3d6;font-size:19px;margin:0}.breadcrumbs{display:flex;gap:12px;align-items:center;flex-wrap:wrap;margin-bottom:34px;font-size:13px;color:#dbe3d6}.breadcrumbs a{text-decoration:underline;text-underline-offset:4px}.breadcrumbs span[aria-hidden]{color:#cfac6e}.service-route .service-number{display:block;margin-bottom:32px}.service-proof{display:grid;grid-template-columns:1fr 1fr;background:#073f2d;color:#fff}.proof-photo{min-height:550px}.proof-photo img{width:100%;height:100%;object-fit:cover}.proof-copy{padding:65px 5vw}.proof-copy h2{font-size:42px}.proof-copy ul{padding-left:22px;margin:28px 0;display:grid;gap:15px;color:#dce6d8;font-size:17px}.proof-copy .btn{width:auto}.terms-section .notice{margin-top:30px}.contact-page-grid{display:grid;grid-template-columns:1fr 1fr;gap:65px;align-items:start}.people-cards{display:grid;gap:18px}.person-card{padding:30px;border:1px solid #d0d9c9;background:#fffdf7}.person-card .eyebrow{font-size:10px;color:#60705e}.person-card h2{font-size:31px;margin:15px 0}.person-phone{font-size:clamp(20px,2.5vw,29px);font-weight:650}.person-card .text-link{display:flex;width:max-content;margin-top:18px}.travel-note{padding:32px 0 0}.travel-note h2{font-size:26px}.travel-note p{font-size:16px;color:#526357}.travel-note>a{text-decoration:underline;text-underline-offset:4px}.legal-copy{max-width:850px}.legal-copy section{margin:38px 0}.legal-copy h2{font-size:28px}.legal-copy p{font-size:17px}.muted{color:#526357}.error-page{max-width:800px;margin:8vh auto;padding:25px}.error-page>span{font-size:90px;color:#a77b35}.error-page h1{font-size:34px;line-height:1.3}.error-page>div{display:flex;gap:12px;flex-wrap:wrap}.error-page .btn{width:auto}.footer-bottom{color:#c7d6c9;font-size:12px;flex-wrap:wrap;gap:15px;padding-block:18px}.footer-bottom a{text-decoration:underline;text-underline-offset:4px}.footer-nav{gap:20px}.footer-main{padding-block:42px}.lightbox{max-width:calc(100vw - 32px)}.lightbox-close{right:0;top:0}.lightbox img{max-height:85vh;object-fit:contain}
@media(min-width:861px){.mobile-nav{display:none!important}}
@media(max-width:1100px){.detail-grid.four{grid-template-columns:repeat(2,minmax(0,1fr))}.contact-grid,.contact-page-grid{gap:35px}.desktop-nav{gap:16px}.hero h1{font-size:70px}.hero-content{grid-template-columns:1fr 190px}.brand-copy strong{font-size:16px}.footer-nav{gap:14px}}
@media(max-width:860px){.js .menu-toggle{display:flex}.nav-inner,.site-header.is-scrolled .nav-inner{min-height:76px}.hero{min-height:780px}.hero-content{display:block;padding:150px 0 220px}.hero h1{font-size:clamp(46px,8vw,70px);max-width:760px}.hero-copy>p{max-width:620px}.hero-note{display:none}.hero-stats .stats-grid{grid-template-columns:repeat(3,1fr);min-height:116px}.stat{padding:25px 18px}.stat strong{font-size:21px}.stat .stat-index{display:none}.stat>span{font-size:11px}.mobile-nav{z-index:110;top:76px;bottom:auto;max-height:calc(100dvh - 76px);overflow-y:auto;transform:none;padding:16px 24px 30px;opacity:1}.mobile-nav a{font-size:25px;padding:15px 0}.mobile-nav .mobile-phone{font-size:21px;margin-top:18px}.faq-grid{grid-template-columns:1fr;gap:25px}.section{padding-block:65px}.production-copy{padding:55px 30px}.production-photo{min-height:460px}.detail-grid.three{grid-template-columns:1fr}.contact-grid{grid-template-columns:1fr;gap:35px}.contact-copy{max-width:700px}.contact-copy>p{max-width:640px}.contact-form{max-width:none}.contact-people{grid-template-columns:1fr 1fr}.contact-page-link{grid-column:1/-1}.page-intro{padding-top:125px}.service-proof{grid-template-columns:1fr}.proof-photo{min-height:0;max-height:500px;overflow:hidden}.proof-copy{padding:45px 28px}.proof-photo img{height:430px}.contact-page-grid{grid-template-columns:1fr}.people-cards{grid-template-columns:1fr 1fr}.person-card{padding:24px}.person-phone{font-size:22px}.footer-main{grid-template-columns:1fr auto}}
@media(max-width:600px){.container{width:calc(100% - 36px);max-width:none}.nav-actions .lang-switch{display:flex}.nav-actions{gap:8px}.brand-mark{width:29px;height:29px}.brand-copy strong{font-size:12px}.brand-copy small{display:none}.brand{gap:7px}.lang-btn{min-width:28px;min-height:40px;font-size:11px}.menu-toggle{width:40px;height:40px}.hero{min-height:710px}.hero-content{padding-top:127px;padding-bottom:175px}.hero h1{font-size:clamp(39px,10vw,58px);line-height:1.06}.hero-copy>p{font-size:16px;margin-top:23px}.hero .eyebrow{font-size:10px;line-height:1.6;letter-spacing:.05em}.hero-actions{gap:11px;margin-top:27px}.btn{min-height:52px;font-size:13px;padding-inline:16px}.hero-stats .stats-grid{grid-template-columns:repeat(3,minmax(0,1fr));min-height:104px}.stat,.stat:first-child{padding:20px 8px}.stat:nth-child(3){grid-column:auto;border-top:0;border-left:1px solid #ffffff24}.stat strong{font-size:15px;letter-spacing:-.04em}.stat>span{font-size:10px;line-height:1.5;margin-top:9px}.trust-track{gap:12px;padding:16px 18px}.trust-track span{font-size:8px;letter-spacing:.05em}.section{padding-block:56px}.section-heading{gap:20px;margin-bottom:28px}.section-heading>p{font-size:16px}h2{font-size:36px}.service-card{min-height:0;padding:27px}.service-icon{margin:22px 0}.services-grid{gap:12px;border:none}.service-card{border:1px solid #dce1d4}.service-card p{margin-bottom:20px}.detail-card{padding:23px}.detail-card h3{font-size:23px}.detail-grid{grid-template-columns:1fr;gap:12px}.detail-grid.four{grid-template-columns:1fr}.production-copy{padding:48px 22px}.production-copy h2{font-size:36px}.production-photo{min-height:330px}.photo-caption{bottom:22px;left:22px}.quality-image,.quality-image img{height:400px;min-height:400px}.quality-image figcaption{width:210px;min-height:110px}.quality-image figcaption strong{font-size:25px}.gallery-grid{gap:13px;grid-template-rows:repeat(4,250px)}.faq-grid summary{font-size:17px;padding-block:20px}.contact-section{padding-block:55px}.contact-copy h2{font-size:40px}.contact-people{grid-template-columns:1fr;gap:6px}.contact-form{padding:25px 20px}.form-head strong{font-size:23px}.page-intro{padding:109px 0 43px}.page-intro h1{font-size:38px;line-height:1.1}.page-intro p{font-size:16px}.breadcrumbs{font-size:12px;margin-bottom:26px}.page-intro .eyebrow{font-size:10px}.people-cards{grid-template-columns:1fr}.person-card h2{font-size:30px}.person-phone{font-size:25px}.contact-page-grid{gap:35px}.proof-copy h2{font-size:35px}.proof-copy{padding:42px 22px}.proof-photo img{height:300px}.proof-copy ul{font-size:16px}.footer-main{gap:15px}.footer-brand .brand-copy strong{font-size:12px}.footer-bottom{gap:12px;font-size:11px}.legal-copy h2{font-size:26px}.legal-copy p{font-size:16px}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.gallery-item:hover img,.service-card:hover{transform:none}}
.contact-directory{padding:24px 28px;border:1px solid #d0d9c9;background:#fffdf7;font-style:normal}
.contact-directory dl,.contact-directory dd{margin:0}
.contact-directory dl{display:grid;gap:18px}
.contact-directory dt{font-size:13px;font-weight:500;color:#526357;margin-bottom:5px}
.contact-directory dd{display:grid;justify-items:start}
.contact-directory a{display:inline-flex;align-items:center;min-height:44px;font-size:clamp(20px,2vw,26px);font-weight:650;line-height:1.4;overflow-wrap:anywhere;max-width:100%;text-underline-offset:4px}
.contact-directory a:hover{text-decoration:underline}
@media(max-width:600px){.contact-directory{padding:20px}.contact-directory a{font-size:22px}}
@media(max-width:360px){.contact-directory{padding:18px}.contact-directory a{font-size:20px}}

/* Home offer: keep the buyer's next action and the factory visible together. */
body[data-page="home"] .hero {
  min-height: 760px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
body[data-page="home"] .hero-content {
  flex: 1;
  grid-template-columns: minmax(0, 1fr) 265px;
  gap: 65px;
  padding-top: 154px;
  padding-bottom: 54px;
}
body[data-page="home"] .hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 5.1vw, 74px);
  line-height: 1.07;
  letter-spacing: -.045em;
  text-wrap: balance;
}
body[data-page="home"] .hero-copy > p:not(.hero-request-hint) {
  max-width: 690px;
  font-size: 18px;
  line-height: 1.65;
  margin-top: 24px;
  color: #edf1e8;
}
body[data-page="home"] .hero-overlay {
  background: linear-gradient(90deg, rgba(2, 27, 18, .96), rgba(2, 30, 21, .8) 39%, rgba(3, 35, 25, .21) 78%),
    linear-gradient(0deg, rgba(3, 32, 23, .62), transparent 58%);
}
body[data-page="home"] .hero-bg { object-position: 58% center; }
body[data-page="home"] .hero-grid { opacity: .045; }
body[data-page="home"] .hero-actions { margin-top: 28px; flex-wrap: wrap; gap: 14px; }
body[data-page="home"] .hero-actions .btn { min-height: 56px; }
body[data-page="home"] .hero-actions .btn-gold { font-size: 14px; }
body[data-page="home"] .hero-actions .btn-ghost { border-color: #dde5d980; background: #07312460; }
body[data-page="home"] .hero-copy .hero-request-hint {
  margin: 17px 0 0;
  max-width: 560px;
  font-size: 12px;
  line-height: 1.6;
  color: #d4dfd2;
}
.hero-facility { padding: 26px; border-left: 2px solid #d8ae63; background: #03271ce8; margin-bottom: 8px; }
.facility-eyebrow { color: #e9c687; font-size: 11px; font-weight: 650; letter-spacing: .07em; text-transform: uppercase; }
.hero-facility > strong { display: block; font-size: 34px; line-height: 1.2; margin: 16px 0 12px; letter-spacing: -.035em; }
.hero-facility address { font-size: 14px; line-height: 1.65; color: #dce6d9; }
.hero-facility a { display: flex; align-items: center; justify-content: space-between; min-height: 44px; border-top: 1px solid #ffffff26; margin-top: 20px; padding-top: 12px; font-size: 13px; text-underline-offset: 4px; }
.hero-facility a:hover { text-decoration: underline; }
.hero-proofs { z-index: 3; position: relative; background: #03271cf2; border-top: 1px solid #ffffff26; }
.hero-proof-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hero-proof { display: flex; align-items: center; gap: 17px; padding: 28px 26px; border-left: 1px solid #ffffff26; min-height: 116px; }
.hero-proof:first-child { border-left: 0; padding-left: 0; }
.hero-proof:last-child { padding-right: 0; }
.proof-index { align-self: flex-start; color: #d8ae63; font-size: 10px; padding-top: 5px; }
.hero-proof strong { display: block; font-size: 18px; line-height: 1.4; color: #edf1e8; }
.hero-proof small { display: block; margin-top: 6px; font-size: 12px; color: #cbd9cb; line-height: 1.5; }
.proof-arrow { margin-left: auto; color: #e9c687; }
.hero-proof:hover strong { color: #e9c687; }
@media (max-width: 1100px) {
  body[data-page="home"] .hero-content { grid-template-columns: minmax(0, 1fr) 225px; gap: 35px; }
  body[data-page="home"] .hero h1 { font-size: 59px; }
  .hero-facility { padding: 22px; }
  .hero-proof { padding-inline: 18px; gap: 12px; }
  .hero-proof strong { font-size: 16px; }
}
@media (max-width: 860px) {
  body[data-page="home"] .hero { min-height: 0; }
  body[data-page="home"] .hero-content { display: block; padding-top: 132px; padding-bottom: 40px; }
  body[data-page="home"] .hero h1 { font-size: clamp(42px, 7.4vw, 62px); max-width: 710px; }
  .hero-facility { display: none; }
  .hero-proof { padding: 22px 15px; gap: 10px; }
  .proof-index { display: none; }
  .hero-proof strong { font-size: 15px; }
  .hero-proof small { font-size: 11px; }
}
@media (max-width: 600px) {
  body[data-page="home"] .hero-content { padding-top: 112px; padding-bottom: 30px; }
  body[data-page="home"] .hero-copy .eyebrow { font-size: 9px; line-height: 1.6; margin-bottom: 19px; gap: 10px; letter-spacing: .035em; }
  body[data-page="home"] .hero-copy .eyebrow > span { width: 24px; flex-shrink: 0; }
  body[data-page="home"] .hero h1 { font-size: clamp(32px, 8.9vw, 48px); line-height: 1.1; letter-spacing: -.035em; }
  body[data-page="home"] .hero-copy > p:not(.hero-request-hint) { font-size: 15px; line-height: 1.6; margin-top: 20px; }
  body[data-page="home"] .hero-actions { margin-top: 23px; gap: 10px; }
  body[data-page="home"] .hero-actions .btn { min-height: 52px; width: 100%; }
  body[data-page="home"] .hero-actions .btn-gold { font-size: 13px; padding-inline: 14px; gap: 12px; }
  body[data-page="home"] .hero-actions .btn-ghost { min-height: 44px; background: transparent; border-color: transparent; padding-block: 8px; text-decoration: underline; text-underline-offset: 5px; }
  body[data-page="home"] .hero-copy .hero-request-hint { margin-top: 10px; font-size: 11px; }
  body[data-page="home"] .hero-overlay { background: linear-gradient(90deg, #021b12f2, #03271cb3), linear-gradient(0deg, #03271c99, transparent); }
  .hero-proof-grid { grid-template-columns: 1fr; }
  .hero-proof,.hero-proof:first-child,.hero-proof:last-child { padding: 16px 0; min-height: 0; border-left: 0; border-bottom: 1px solid #ffffff26; }
  .hero-proof:last-child { border-bottom: 0; }
  .hero-proof strong { font-size: 14px; }
  .hero-proof small { margin-top: 3px; font-size: 12px; }
  .proof-index { display: block; width: 20px; }
}
@media (max-width: 360px) {
  body[data-page="home"] .hero-content { padding-top: 103px; }
  body[data-page="home"] .hero-copy .eyebrow { margin-bottom: 15px; }
  body[data-page="home"] .hero-copy > p:not(.hero-request-hint) { margin-top: 16px; font-size: 14px; }
  body[data-page="home"] .hero-actions { margin-top: 18px; }
}
