:root {
  --ink: #0d3724;
  --ink-strong: #092817;
  --green: #174c32;
  --green-soft: #e6ecdf;
  --sage: #f0f3e9;
  --line: #ced7c9;
  --paper: #ffffff;
  --muted: #58705f;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1220px;
  --shadow: 0 22px 50px rgba(11, 45, 27, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
.content-width { width: min(calc(100% - 80px), var(--max-width)); margin-inline: auto; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; clip-path: inset(50%); }
.skip-link { position: fixed; left: 14px; top: -70px; z-index: 20; padding: 10px 14px; color: #fff; background: var(--ink); transition: top .2s; }
.skip-link:focus { top: 14px; }

.site-header { position: sticky; top: 0; z-index: 10; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 92px; padding: 17px max(40px, calc((100vw - var(--max-width)) / 2)); background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(13,55,36,.08); backdrop-filter: blur(12px); }
.brand { display: inline-flex; align-items: center; width: max-content; gap: 8px; font-weight: 800; font-size: 13px; line-height: 1.02; letter-spacing: .055em; color: var(--ink); }
.brand svg { width: 38px; height: 38px; flex: none; }
.site-nav { display: flex; justify-content: center; align-items: center; gap: clamp(22px, 3vw, 44px); font-size: 14px; font-weight: 620; white-space: nowrap; }
.site-nav a, .language-button { transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible, .language-button:hover, .language-button:focus-visible { color: #6d8a53; }
.language-switch { display: flex; justify-content: flex-end; align-items: center; gap: 5px; color: #a7b3a8; font-size: 13px; }
.language-button { border: 0; padding: 5px; background: none; color: inherit; cursor: pointer; font-weight: 700; }
.language-button.active { color: var(--ink); }
.menu-button { display: none; }

.hero { position: relative; isolation: isolate; min-height: min(720px, calc(100svh - 92px)); overflow: hidden; background: #dfe6df; }
.hero-image { position: absolute; z-index: -1; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-content { display: flex; min-height: inherit; padding-top: clamp(92px, 12vh, 130px); padding-bottom: 110px; flex-direction: column; align-items: flex-start; }
.section-kicker { margin: 0 0 22px; color: #527052; font-size: 11px; font-weight: 800; letter-spacing: .17em; line-height: 1.2; text-transform: uppercase; }
.hero h1, h2 { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.055em; }
.hero h1 { max-width: 760px; color: var(--ink); font-size: clamp(52px, 6.1vw, 89px); line-height: .98; }
.hero-copy { max-width: 405px; margin: 32px 0 30px; color: #183d29; font-size: 17px; line-height: 1.65; }
.button { display: inline-flex; justify-content: center; align-items: center; gap: 20px; min-height: 51px; padding: 0 22px; border: 1px solid transparent; cursor: pointer; font-size: 14px; font-weight: 750; transition: transform .2s, background .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--green); }
.button-primary:hover { background: var(--ink); }
.hero-scroll { position: absolute; right: max(40px, calc((100vw - var(--max-width)) / 2)); bottom: 30px; width: 38px; height: 58px; border: 1px solid rgba(13,55,36,.48); border-radius: 22px; }
.hero-scroll span { position: absolute; left: 50%; top: 12px; width: 2px; height: 12px; background: var(--ink); transform: translateX(-50%); animation: scrollCue 1.8s infinite; }
@keyframes scrollCue { 0%, 100% { transform: translate(-50%,0); opacity: 1; } 60% { transform: translate(-50%,16px); opacity: .2; } }

.section { padding-block: clamp(84px, 11vw, 155px); }
.our-way { display: grid; grid-template-columns: minmax(300px, .84fr) minmax(380px, 1fr); align-items: center; gap: clamp(66px, 10vw, 150px); }
.photo-frame { overflow: hidden; box-shadow: var(--shadow); }
.photo-frame--tall { aspect-ratio: .78; border-radius: 1px 1px 42% 1px; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.our-way-content h2, .quality h2, .products h2, .contact h2 { font-size: clamp(42px, 4.5vw, 68px); line-height: 1.04; }
.body-copy { max-width: 500px; margin: 28px 0 48px; color: #46604e; font-size: 17px; line-height: 1.7; }
.commitments { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; border-top: 1px solid var(--line); padding-top: 27px; }
.commitment { min-width: 0; }
.commitment svg { width: 30px; height: 30px; margin-bottom: 14px; }
.commitment h3 { margin: 0 0 8px; font-size: 14px; font-weight: 750; line-height: 1.4; }
.commitment p { margin: 0; color: #647569; font-size: 12px; line-height: 1.55; }

.quality { color: #fff; background: var(--ink); }
.quality-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: stretch; min-height: 710px; }
.quality-copy { align-self: center; padding-block: 82px; }
.section-kicker--light { color: #adc59f; }
.quality h2 { max-width: 540px; }
.trace-list { position: relative; display: grid; gap: 22px; max-width: 400px; margin: 41px 0 0; padding: 0; list-style: none; }
.trace-list::before { position: absolute; left: 11px; top: 14px; bottom: 14px; width: 1px; content: ''; background: rgba(255,255,255,.45); }
.trace-list li { position: relative; display: grid; grid-template-columns: 58px 1fr; align-items: start; }
.trace-list span { position: relative; z-index: 1; display: grid; place-items: center; width: 23px; height: 23px; border: 1px solid #c4d5ae; border-radius: 50%; color: transparent; background: var(--ink); font-size: 0; }
.trace-list li span::after { position: absolute; left: 34px; width: 27px; color: #c4d5ae; content: counter(list-item, decimal-leading-zero); font-family: var(--serif); font-size: 24px; }
.trace-list h3 { margin: 0 0 5px; font-size: 15px; }
.trace-list p { max-width: 250px; margin: 0; color: #d0dbcf; font-size: 13px; line-height: 1.55; }
.quality-image-wrap { position: relative; min-height: 500px; overflow: hidden; }
.quality-image-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; mix-blend-mode: screen; }

.products { padding-bottom: clamp(84px, 11vw, 138px); }
.products-intro { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; padding-bottom: 58px; border-bottom: 1px solid var(--line); }
.products-intro .section-kicker { flex: none; margin-bottom: 13px; }
.products h2 { max-width: 710px; }
.product-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.product-list article { padding: 35px 34px 18px 0; border-right: 1px solid var(--line); }
.product-list article + article { padding-left: 34px; }
.product-list article:last-child { border: 0; }
.product-list span { color: #758c69; font-family: var(--serif); font-size: 20px; }
.product-list h3 { margin: 42px 0 12px; font-size: 20px; font-weight: 720; }
.product-list p { max-width: 290px; margin: 0; color: #5f7063; font-size: 14px; line-height: 1.65; }

.contact { padding-block: clamp(80px, 10vw, 132px); background: var(--sage); }
.contact-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(65px, 11vw, 150px); }
.contact-copy p:last-child { max-width: 405px; margin: 28px 0 0; color: #506853; font-size: 16px; line-height: 1.7; }
.inquiry-form { display: grid; gap: 18px; align-content: start; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inquiry-form label { display: grid; gap: 8px; color: #425f4d; font-size: 12px; font-weight: 700; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; border: 1px solid #aebcae; border-radius: 0; padding: 12px 13px; color: var(--ink); background: rgba(255,255,255,.4); outline-color: var(--green); }
.inquiry-form textarea { resize: vertical; min-height: 88px; }
.button-submit { width: 100%; margin-top: 4px; }
.form-message { min-height: 22px; margin: 0; color: var(--green); font-weight: 700; font-size: 13px; }

.site-footer { display: grid; grid-template-columns: 1fr 1.3fr 1fr; align-items: center; gap: 40px; min-height: 150px; }
.brand--footer { font-size: 11px; }
.brand--footer svg { width: 33px; height: 33px; }
.site-footer p { margin: 0; color: #758378; font-size: 13px; line-height: 1.5; text-align: center; }
.footer-email { justify-self: end; color: var(--ink); font-size: 13px; font-weight: 700; }
.footer-email:hover { text-decoration: underline; }

@media (max-width: 920px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 75px; padding-inline: 24px; }
  .site-header .language-switch { margin-right: 52px; }
  .menu-button { position: absolute; right: 22px; display: grid; width: 35px; height: 35px; padding: 8px 4px; border: 0; background: none; cursor: pointer; gap: 5px; }
  .menu-button span:not(.visually-hidden) { display: block; height: 1.5px; background: var(--ink); transition: transform .2s, opacity .2s; }
  .menu-button[aria-expanded='true'] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-button[aria-expanded='true'] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded='true'] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .site-nav { position: absolute; top: 74px; right: 0; left: 0; display: grid; gap: 0; max-height: 0; overflow: hidden; background: #fff; border-bottom: 1px solid transparent; transition: max-height .3s, border-color .3s; }
  .site-nav.open { max-height: 280px; border-color: var(--line); }
  .site-nav a { display: block; padding: 17px 25px; border-top: 1px solid #eef1eb; }
  .hero { min-height: 660px; }
  .hero-content { padding-top: 90px; }
  .our-way, .contact-grid { grid-template-columns: 1fr; gap: 62px; }
  .our-way .photo-frame { width: min(520px, 100%); }
  .quality-grid { grid-template-columns: 1fr; }
  .quality-copy { padding-block: 82px 25px; }
  .quality-image-wrap { min-height: 430px; }
  .site-footer { grid-template-columns: 1fr 1fr; padding-block: 40px; }
  .site-footer p { display: none; }
}

@media (max-width: 600px) {
  .content-width { width: min(calc(100% - 40px), var(--max-width)); }
  .site-header { padding-inline: 20px; }
  .brand { font-size: 11px; }
  .brand svg { width: 34px; height: 34px; }
  .site-header .language-switch { margin-right: 42px; }
  .hero { min-height: 620px; }
  .hero-image { object-position: 22% center; }
  .hero-content { padding-top: 76px; padding-bottom: 90px; }
  .hero h1 { max-width: 375px; font-size: clamp(42px, 12vw, 58px); }
  .hero-copy { max-width: 315px; margin: 23px 0 25px; font-size: 15px; }
  .hero-scroll { right: 20px; bottom: 22px; }
  .section { padding-block: 77px; }
  .our-way { gap: 45px; }
  .our-way-content h2, .quality h2, .products h2, .contact h2 { font-size: 43px; }
  .commitments { grid-template-columns: 1fr; gap: 24px; }
  .commitment { display: grid; grid-template-columns: 42px 1fr; column-gap: 12px; }
  .commitment svg { grid-row: span 2; margin: 0; }
  .commitment h3 { margin: 0; }
  .commitment p { margin-top: -5px; }
  .quality-copy { padding-block: 72px 26px; }
  .quality-image-wrap { min-height: 350px; }
  .products-intro { display: block; padding-bottom: 33px; }
  .products-intro .section-kicker { margin-bottom: 20px; }
  .product-list { grid-template-columns: 1fr; }
  .product-list article, .product-list article + article { display: grid; grid-template-columns: 42px 1fr; gap: 0 12px; padding: 25px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .product-list article:last-child { border-bottom: 0; }
  .product-list h3 { margin: 0 0 7px; }
  .product-list p { grid-column: 2; }
  .contact-grid { gap: 50px; }
  .form-row { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; gap: 24px; }
  .footer-email { justify-self: start; }
}

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