:root {
  --green: #59c70c;
  --green-dark: #2f7500;
  --green-soft: #eaf8df;
  --ink: #111b24;
  --navy: #14232e;
  --navy-deep: #0c171e;
  --slate: #52606a;
  --line: #dce2e5;
  --paper: #ffffff;
  --mist: #f3f6f4;
  --shell: 1180px;
  --radius: 18px;
  --shadow: 0 20px 55px rgba(17, 27, 36, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "DM Sans", Arial, sans-serif; line-height: 1.6; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
h1, h2, h3 { margin: 0; font-family: "Manrope", Arial, sans-serif; line-height: 1.12; letter-spacing: -0.035em; }
p { margin: 0; }
.shell { width: min(var(--shell), calc(100% - 48px)); margin-inline: auto; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid #dce2e5; box-shadow: 0 4px 18px rgba(17,27,36,0.05); }
.home-page .site-header { position: fixed; right: 0; left: 0; background: transparent; border-bottom-color: transparent; box-shadow: none; backdrop-filter: none; transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease; }
.home-page .site-header.is-scrolled, .home-page.menu-open .site-header { background: rgba(8,21,29,0.96); border-bottom-color: rgba(255,255,255,0.1); box-shadow: 0 12px 32px rgba(0,0,0,0.22); backdrop-filter: blur(14px); }
.home-page .site-header.is-scrolled { animation: header-settle 260ms ease both; }
@keyframes header-settle { from { transform: translateY(-10px); } to { transform: translateY(0); } }
.site-header__inner { min-height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { display: flex; }
.brand-logo { display: inline-block; width: 174px; line-height: 0; }
.brand img, .brand-logo img { width: 174px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a { position: relative; padding: 11px 13px; color: #4c5961; font-size: 0.94rem; font-weight: 600; text-decoration: none; border-radius: 9px; }
.site-nav a:not(.nav-cta)::after { position: absolute; right: 13px; bottom: 5px; left: 13px; height: 2px; background: var(--green); content: ""; transform: scaleX(0); transition: transform 180ms ease; transform-origin: right; }
.site-nav a:not(.nav-cta):hover::after, .site-nav a.is-current:not(.nav-cta)::after { transform: scaleX(1); transform-origin: left; }
.site-nav a.is-current, .site-nav a:hover { color: var(--ink); }
.site-nav .nav-cta { margin-left: 6px; padding: 11px 20px; background: var(--green); color: var(--ink); border-radius: 15px; }
.site-nav .nav-cta:hover { background: #69d51a; }
.menu-button { display: none; width: 46px; height: 46px; padding: 12px; background: transparent; border: 1px solid #b8c2c7; border-radius: 10px; cursor: pointer; }
.menu-button span { display: block; height: 2px; margin: 5px 0; background: var(--ink); transition: 180ms ease; }
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; color: #a8ee70; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.eyebrow::before { width: 26px; height: 2px; background: currentColor; content: ""; }
.eyebrow--dark { color: var(--green-dark); }
.hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.hero::before { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 50px 50px; content: ""; mask-image: linear-gradient(to right, #000, transparent 72%); }
.hero__grid { position: relative; min-height: 640px; display: grid; grid-template-columns: 1.07fr 0.93fr; align-items: center; gap: 40px; }
.hero__content { position: relative; z-index: 2; max-width: 670px; padding: 92px 0 98px; }
.hero h1 { font-size: clamp(3.25rem, 5.3vw, 5.4rem); font-weight: 700; letter-spacing: -0.06em; }
.hero h1 span { color: #fff; }
.hero h1 .hero__til { display: inline-block; color: inherit; font-size: 0.94em; letter-spacing: -0.035em; }
.hero__lead { max-width: 650px; margin-top: 28px; color: #c6d0d5; font-size: 1.16rem; line-height: 1.75; }
.desktop-break { display: block; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; padding: 13px 22px; border: 1px solid transparent; border-radius: 9px; font-weight: 700; text-decoration: none; cursor: pointer; transition: transform 170ms ease, background 170ms ease, border-color 170ms ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--green); color: var(--ink); }
.button--primary:hover { background: #6bda1c; }
.button--ghost { border-color: rgba(255,255,255,0.25); color: #fff; }
.button--ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.06); }
.button--dark { background: var(--ink); color: #fff; }
.button--dark:hover { background: #26333c; }
.button--white { background: #fff; color: var(--ink); }
.button--outline { background: #fff; border-color: var(--line); color: var(--ink); }
.hero__visual { position: relative; align-self: stretch; display: flex; align-items: center; justify-content: center; }
.hero__visual img { position: relative; z-index: 2; width: 112%; max-width: none; filter: drop-shadow(0 30px 35px rgba(0,0,0,0.35)); }
.hero__halo { position: absolute; width: 480px; height: 480px; border: 1px solid rgba(89,199,12,0.28); border-radius: 50%; }
.hero__halo::before, .hero__halo::after { position: absolute; border: 1px solid rgba(255,255,255,0.08); border-radius: inherit; content: ""; }
.hero__halo::before { inset: 48px; }
.hero__halo::after { inset: 102px; }
.hero__label { position: absolute; right: 0; bottom: 68px; z-index: 3; min-width: 220px; padding: 16px 20px; background: rgba(10,21,27,0.88); border-left: 3px solid var(--green); backdrop-filter: blur(8px); }
.hero__label strong, .hero__label span { display: block; }
.hero__label strong { font-family: "Manrope", sans-serif; font-size: 0.9rem; }
.hero__label span { margin-top: 2px; color: #9eadb5; font-size: 0.78rem; }

.proof-strip { background: #fff; border-bottom: 1px solid var(--line); }
.proof-strip__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-strip__grid > div { min-height: 116px; display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; align-content: center; column-gap: 14px; padding: 20px 32px; border-right: 1px solid var(--line); }
.proof-strip__grid > div:first-child { padding-left: 0; }
.proof-strip__grid > div:last-child { border-right: 0; }
.proof-dot { grid-row: 1 / 3; align-self: center; width: 34px; height: 34px; display: grid; place-items: center; background: var(--green-soft); border-radius: 50%; }
.proof-dot::after { width: 8px; height: 8px; background: var(--green); border-radius: 50%; content: ""; }
.proof-strip strong { font-family: "Manrope", sans-serif; font-size: 0.92rem; }
.proof-strip small { color: var(--slate); font-size: 0.78rem; }

.section { padding: 110px 0; }
.section--light, .values-section { background: var(--mist); }
.section-heading { margin-bottom: 46px; }
.section-heading h2, .expertise h2, .story-section h2, .primary-contact h2 { font-size: clamp(2.15rem, 3.6vw, 3.65rem); }
.section-heading--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 48px; }
.section-heading--split > p { max-width: 480px; padding-bottom: 6px; color: var(--slate); font-size: 1.04rem; }
.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; align-items: stretch; }
.catalog-card { min-width: 0; display: flex; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid #c7d0cb; border-radius: var(--radius); box-shadow: 0 14px 34px rgba(17,27,36,0.1); }
.catalog-card__image { position: relative; height: 278px; display: grid; place-items: center; overflow: hidden; background: #dfe5e1; border-bottom: 1px solid #c7d0cb; }
.catalog-card__image::after { position: absolute; inset: 0; background: linear-gradient(135deg, transparent, rgba(89,199,12,0.09)); content: ""; }
.catalog-card__image img { width: 68%; height: 88%; object-fit: contain; transition: transform 250ms ease; filter: drop-shadow(0 15px 18px rgba(17,27,36,0.18)); }
.catalog-card__image--dark { background: var(--navy); }
.catalog-card__image--dark img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; filter: none; }
.catalog-card__image--teal { background: linear-gradient(145deg, #17313b, #27505a); }
.catalog-card__image--forest { background: linear-gradient(145deg, #1b3028, #3b5848); }
.catalog-card__image--teal::after, .catalog-card__image--forest::after { background: radial-gradient(circle at 50% 45%, rgba(255,255,255,0.13), transparent 58%); }
.catalog-card__image--teal img, .catalog-card__image--forest img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; filter: none; }
.catalog-card__image--teal img { object-position: center top; }
.catalog-card__image--forest img { object-position: center bottom; }
.catalog-card__body { flex: 1; display: grid; grid-template-rows: auto 1fr auto; align-items: start; padding: 28px; }
.catalog-card h3 { font-size: 1.55rem; }
.catalog-card p { margin: 11px 0 22px; color: var(--slate); font-size: 0.94rem; }
.catalog-action { min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 2px; padding: 8px 9px 8px 18px; overflow: hidden; background: #f5f8f3; color: var(--ink); border: 1px solid #cbd7c6; border-radius: 13px; font-weight: 700; text-decoration: none; transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.catalog-action:hover { background: #edf5e8; border-color: #9fc98a; box-shadow: 0 7px 18px rgba(17,27,36,0.08); }
.catalog-action > span:last-child { width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center; background: #def2d2; color: var(--green-dark); border-radius: 10px; font-size: 1.05rem; transition: transform 180ms ease, background 180ms ease; }
.catalog-action:hover > span:last-child { transform: translateX(2px); background: #ccebb9; }
.catalog-action:focus-visible { outline: 3px solid rgba(89,199,12,0.42); outline-offset: 3px; }
.catalog-action:hover > span:last-child { color: var(--ink); }
.range-note { display: grid; grid-template-columns: 1.1fr 1fr auto; align-items: center; gap: 36px; margin-top: 24px; padding: 22px 26px; background: var(--navy); color: #fff; border-radius: 12px; }
.range-note div > span, .range-note div > strong { display: block; }
.range-note div > span { color: var(--green); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.range-note div > strong { margin-top: 4px; font: 700 1rem "Manrope", sans-serif; }
.range-note p { color: #afbbc1; font-size: 0.84rem; }
.range-note > a { color: #fff; font-size: 0.85rem; font-weight: 700; text-decoration: none; white-space: nowrap; }
.range-note > a span { margin-left: 7px; color: var(--green); }
.text-link { margin-top: auto; color: var(--ink); font-weight: 700; text-decoration: none; }
.text-link span { margin-left: 7px; color: var(--green-dark); }
.text-link:hover { color: var(--green-dark); }

.expertise { overflow: hidden; background: #fff; border-top: 1px solid #bfc9c4; }
.expertise__grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr); align-items: stretch; gap: clamp(52px, 7vw, 104px); }
.expertise__content { display: flex; flex-direction: column; align-items: flex-start; padding-right: clamp(0px, 2vw, 28px); }
.expertise__image { position: relative; min-height: 520px; overflow: hidden; background: #fff; border-radius: 26px; box-shadow: 0 24px 60px rgba(17,27,36,0.13); }
.expertise__image::after { position: absolute; inset: 0; border: 1px solid rgba(17,27,36,0.12); border-radius: inherit; content: ""; pointer-events: none; }
.expertise__image img { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 520px; object-fit: contain; object-position: center; }
.expertise__content h2 { max-width: 620px; margin-top: 12px; }
.expertise__content > p:not(.eyebrow) { max-width: 540px; margin-top: 24px; color: var(--slate); font-size: 1.08rem; }
.check-list { width: 100%; display: grid; margin: 30px 0 36px; padding: 0; list-style: none; border-top: 1px solid #cbd4cf; }
.check-list li { display: flex; align-items: center; gap: 13px; padding: 14px 0; border-bottom: 1px solid #cbd4cf; font-weight: 600; }
.check-list span { width: 24px; height: 24px; flex: 0 0 24px; display: grid; place-items: center; background: var(--green); color: var(--ink); border-radius: 50%; font-size: 0.76rem; font-weight: 800; }

.contact-cta { background: #fff; border-top: 1px solid var(--line); }
.contact-cta__inner { min-height: 280px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr); align-items: center; gap: clamp(50px, 8vw, 120px); }
.contact-cta__intro h2 { margin-top: 10px; font-size: clamp(2.15rem, 2.7vw, 3rem); white-space: nowrap; }
.contact-cta__mail { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 4px 24px; padding: 27px 30px; overflow: hidden; background: var(--green-soft); color: var(--ink); border: 1px solid #b9d9a8; border-radius: 16px; text-decoration: none; transition: background 180ms ease, border-color 180ms ease; }
.contact-cta__mail::before { position: absolute; inset: 0 auto 0 0; width: 5px; background: var(--green); content: ""; }
.contact-cta__label { color: var(--green-dark); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.contact-cta__mail strong { font: 800 clamp(1.15rem, 2vw, 1.45rem) "Manrope", sans-serif; }
.contact-cta__mail small { color: var(--slate); font-size: 0.82rem; }
.contact-cta__arrow { grid-column: 2; grid-row: 1 / 4; align-self: center; font-size: 1.4rem; transition: transform 180ms ease; }
.contact-cta__mail:hover { background: #e2f6d7; border-color: var(--green); }
.contact-cta__mail:hover .contact-cta__arrow { transform: translateX(5px); }

.site-footer { padding: 74px 0 24px; background: var(--navy-deep); color: #fff; }
.site-footer__grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 54px; padding-bottom: 54px; }
.site-footer__grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.site-footer h2 { margin-bottom: 10px; color: #8d9ba3; font: 700 0.72rem "DM Sans", sans-serif; letter-spacing: 0.12em; text-transform: uppercase; }
.site-footer a, .site-footer span, .site-footer p { color: #c4cdd1; font-size: 0.88rem; line-height: 1.65; text-decoration: none; }
.site-footer a:hover { color: var(--green); }
.footer-brand img, .footer-brand .brand-logo { width: 170px; }
.footer-brand p { max-width: 260px; margin-top: 12px; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.09); }
.site-footer__bottom span { color: #71818a; font-size: 0.76rem; }

.page-hero { background: var(--navy); color: #fff; }
.page-hero__content { min-height: 400px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.page-hero h1 { font-size: clamp(3rem, 5vw, 5rem); }
.page-hero__content > p:last-child { max-width: none; margin-top: 24px; color: #c6d0d5; font-size: 1.1rem; white-space: nowrap; }
.page-hero--contact { position: relative; overflow: hidden; }
.page-hero--contact::after { position: absolute; top: -190px; right: 4vw; width: 520px; height: 520px; border: 1px solid rgba(89,199,12,0.24); border-radius: 50%; box-shadow: inset 0 0 0 80px rgba(89,199,12,0.02), inset 0 0 0 160px rgba(89,199,12,0.025); content: ""; }
.contact-page__grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 90px; }
.primary-contact h2 { font-size: clamp(2.1rem, 3vw, 3.15rem); white-space: nowrap; }
.primary-contact > p:not(.eyebrow) { max-width: 610px; margin-top: 24px; color: var(--slate); font-size: 1.04rem; }
.email-card { margin-top: 34px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 22px; background: var(--green); color: var(--ink); border-radius: 14px; text-decoration: none; box-shadow: 0 15px 34px rgba(69,155,4,0.18); transition: transform 170ms ease; }
.email-card:hover { transform: translateY(-3px); }
.email-card__icon { width: 54px; height: 54px; display: grid; place-items: center; background: rgba(255,255,255,0.65); border-radius: 50%; font: 800 1.3rem "Manrope", sans-serif; }
.email-card small, .email-card strong { display: block; }
.email-card small { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.07em; }
.email-card strong { font: 800 clamp(1.15rem, 2.5vw, 1.6rem) "Manrope", sans-serif; }
.email-card__arrow { font-size: 1.8rem; }
.response-note { display: flex; align-items: center; gap: 9px; font-size: 0.84rem !important; }
.response-note span { width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px var(--green-soft); }
.contact-details { display: grid; gap: 0; border-top: 1px solid var(--line); }
.detail-card { display: grid; grid-template-columns: 58px 1fr; gap: 18px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.detail-card__number { color: var(--green-dark); font: 700 0.76rem "Manrope", sans-serif; }
.detail-card h2 { margin-bottom: 8px; font-size: 1.15rem; letter-spacing: -0.02em; }
.detail-card a, .detail-card address, .detail-card p { color: var(--slate); font-size: 0.96rem; font-style: normal; text-decoration: none; }
.detail-card a:not(.small-link) { color: var(--ink); font-weight: 700; }
.detail-card .opening-hours { margin-bottom: 3px; color: var(--green-dark); font-weight: 700; }
.detail-card .small-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 9px; color: var(--green-dark); font-size: 0.82rem; font-weight: 700; }

.about-hero { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.about-hero__grid { min-height: 570px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: 68px; }
.about-hero__content { position: relative; z-index: 2; padding: 70px 0; }
.about-hero h1 { font-size: clamp(3rem, 4vw, 4rem); white-space: nowrap; }
.about-hero__content > p:last-child { max-width: 560px; margin-top: 28px; color: #c6d0d5; font-size: 1.08rem; }
.about-hero__image { position: relative; align-self: stretch; min-width: 0; margin-right: -24px; }
.about-hero__image::after { position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy) 0, rgba(20,35,46,0.32) 28%, transparent 55%); content: ""; }
.about-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.about-hero__image span { position: absolute; right: 30px; bottom: 24px; z-index: 2; color: #fff; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; }
.story-section__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 90px; }
.story-section h2 { font-size: clamp(2.1rem, 2.8vw, 2.9rem); white-space: nowrap; }
.story-copy { display: grid; gap: 20px; color: var(--slate); font-size: 1.05rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: values; }
.values-grid article { min-height: 280px; padding: 32px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.values-grid article > span { color: var(--green-dark); font: 700 0.76rem "Manrope", sans-serif; }
.values-grid h3 { margin-top: 54px; font-size: 1.42rem; }
.values-grid p { margin-top: 13px; color: var(--slate); font-size: 0.93rem; }

.selector-intro { background: var(--navy); color: #fff; }
.selector-intro .shell { min-height: 350px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.selector-intro h1 { font-size: clamp(2.8rem, 5vw, 4.9rem); }
.selector-intro .shell > p:last-child { max-width: none; margin-top: 20px; color: #d2dade; font-size: clamp(0.88rem, 1.4vw, 1.02rem); letter-spacing: -0.01em; white-space: nowrap; }
.selector-workspace { padding: 64px 0 100px; background: var(--mist); }
.search-panel, .results-panel { padding: 34px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 35px rgba(17,27,36,0.045); }
.search-panel__heading, .results-panel__header { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; margin-bottom: 28px; }
.search-panel__heading > div, .results-panel__header > div { display: grid; grid-template-columns: 42px 1fr; align-items: center; }
.step-label { width: 30px; height: 30px; display: grid; place-items: center; background: var(--green-soft); color: var(--green-dark); border-radius: 50%; font: 700 0.65rem "Manrope", sans-serif; }
.search-panel h2, .results-panel h2 { font-size: 1.45rem; }
.reset-link { padding: 5px 0; background: transparent; color: var(--slate); border: 0; border-bottom: 1px solid var(--line); cursor: pointer; }
.reset-link:hover { color: var(--green-dark); }
.primary-search label, .dimension-fields legend { display: block; margin-bottom: 8px; color: #2f3b43; font-size: 0.82rem; font-weight: 700; }
.primary-search__control { position: relative; }
.primary-search__control > span { position: absolute; top: 50%; left: 16px; color: var(--slate); font-size: 1.4rem; transform: translateY(-54%); }
input { width: 100%; min-height: 52px; padding: 12px 15px; background: #fff; border: 1px solid #cfd7db; border-radius: 9px; color: var(--ink); outline: none; }
.primary-search input { padding-left: 48px; font-size: 1rem; }
input:focus { border-color: var(--green-dark); box-shadow: 0 0 0 4px rgba(89,199,12,0.14); }
.dimension-fields { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; padding: 0; border: 0; }
.dimension-fields legend { grid-column: 1 / -1; margin-bottom: -2px; }
.dimension-fields legend span { margin-left: 5px; color: #89969d; font-weight: 400; }
.dimension-fields label { color: var(--slate); font-size: 0.78rem; font-weight: 600; }
.dimension-fields input { display: block; margin-top: 6px; }
.search-submit { min-width: 180px; }
.results-panel { margin-top: 22px; }
.results-panel__header { align-items: center; margin-bottom: 18px; }
.results-panel__header > div { grid-template-rows: auto auto; }
.results-panel__header .step-label { grid-row: 1 / 3; }
.results-panel__header p { color: var(--slate); font-size: 0.8rem; }
.empty-state { padding: 64px 24px; background: var(--mist); border: 1px dashed #c9d2d6; border-radius: 12px; text-align: center; }
.empty-state[hidden] { display: none; }
.empty-state__icon { width: 48px; height: 48px; display: grid; place-items: center; margin: 0 auto 14px; background: #fff; color: var(--green-dark); border-radius: 50%; font-size: 1.6rem; }
.empty-state strong { display: block; font: 700 1rem "Manrope", sans-serif; }
.empty-state p { margin-top: 6px; color: var(--slate); font-size: 0.9rem; }
.table-wrap { overflow-x: auto; }
.table-wrap[hidden] { display: none; }
.product-table { width: 100%; border-collapse: collapse; }
.product-table th { padding: 13px 15px; background: var(--navy); color: #fff; font-size: 0.72rem; letter-spacing: 0.04em; text-align: left; text-transform: uppercase; }
.product-table th:first-child { border-radius: 8px 0 0 0; }
.product-table th:last-child { border-radius: 0 8px 0 0; }
.product-table td { padding: 16px 15px; border-bottom: 1px solid var(--line); color: #3d4a52; font-size: 0.86rem; }
.product-table td:nth-child(1) { color: var(--ink); font-weight: 700; white-space: nowrap; }
.product-table td:nth-child(n+3):nth-child(-n+5) { text-align: right; white-space: nowrap; }
.product-table th:nth-child(n+3):nth-child(-n+5) { text-align: right; }
.product-table tbody tr:hover { background: #f8faf8; }
.product-link { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; background: var(--green-soft); color: var(--green-dark); border-radius: 6px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.selector-help { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-top: 22px; padding: 24px 28px; background: #fff; color: var(--ink); border: 1px solid var(--line); border-radius: 12px; }
.selector-help strong, .selector-help span { display: block; }
.selector-help div > span { margin-top: 4px; color: var(--slate); font-size: 0.84rem; }
.selector-help .button { flex: 0 0 auto; white-space: nowrap; }

@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr 0.8fr; }
  .hero__visual img { width: 130%; }
  .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .expertise__grid { gap: 52px; }
  .site-footer__grid { grid-template-columns: 1.2fr repeat(3, 1fr); gap: 30px; }
}

@media (min-width: 1229px) {
  .about-hero__image { margin-right: calc((100vw - 1180px) / -2); }
}

@media (max-width: 860px) {
  .about-hero h1, .story-section h2 { white-space: normal; }
  .desktop-break { display: none; }
  .shell { width: min(100% - 34px, var(--shell)); }
  .site-header { background: #fff; }
  .home-page.menu-open .site-header { background: #0c171e; backdrop-filter: none; }
  .site-header__inner { min-height: 74px; }
  .brand img, .brand-logo, .brand-logo img { width: 150px; }
  .menu-button { display: block; }
  .site-nav { position: fixed; z-index: 200; top: 74px; right: 0; bottom: 0; left: 0; height: calc(100dvh - 74px); display: flex; flex-direction: column; align-items: stretch; gap: 5px; padding: 22px 20px 36px; overflow-y: auto; background: #08151d; box-shadow: 0 18px 40px rgba(0,0,0,0.35); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: 180ms ease; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { padding: 16px 12px; color: #fff; font-size: 1.08rem; border-bottom: 1px solid rgba(255,255,255,0.14); border-radius: 0; }
  .site-nav a.is-current:not(.nav-cta), .site-nav a:hover:not(.nav-cta) { color: #a8ee70; }
  .site-nav .nav-cta { margin: 14px 0 0; border: 0; border-radius: 15px; text-align: center; }
  .hero__grid { min-height: auto; grid-template-columns: 1fr; }
  .hero__content { max-width: 680px; padding: 74px 0 30px; }
  .hero__visual { min-height: 410px; }
  .hero__visual img { width: min(720px, 100%); }
  .hero__label { right: 20px; bottom: 35px; }
  .proof-strip__grid > div { padding: 20px 18px; }
  .expertise__grid, .contact-page__grid, .story-section__grid { grid-template-columns: 1fr; gap: 46px; }
  .primary-contact h2 { white-space: normal; }
  .page-hero__content > p:last-child { white-space: normal; }
  .expertise__content { padding: 0 8px; }
  .expertise__image { min-height: 420px; }
  .expertise__image img { min-height: 420px; }
  .contact-cta__inner { min-height: 0; grid-template-columns: 1fr; gap: 30px; padding-top: 70px; padding-bottom: 70px; }
  .contact-cta__intro h2 { white-space: normal; }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); row-gap: 42px; }
  .about-hero__grid { min-height: auto; grid-template-columns: 1fr; gap: 0; }
  .about-hero__content { padding: 72px 0 46px; }
  .about-hero__image { min-width: 0; height: 380px; margin-right: -17px; }
  .about-hero__image::after { background: linear-gradient(180deg, var(--navy), transparent 35%); }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid article { min-height: auto; }
  .values-grid h3 { margin-top: 32px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .range-note { grid-template-columns: 1fr; gap: 14px; }
  .selector-intro .shell > p:last-child { white-space: normal; }
}

@media (max-width: 650px) {
  .hero h1 { font-size: 3rem; }
  .hero__lead { font-size: 1rem; }
  .hero__visual { min-height: 320px; }
  .hero__halo { width: 330px; height: 330px; }
  .hero__label { min-width: 195px; bottom: 20px; }
  .proof-strip__grid { grid-template-columns: 1fr; padding: 12px 0; }
  .proof-strip__grid > div, .proof-strip__grid > div:first-child { min-height: 82px; padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip__grid > div:last-child { border-bottom: 0; }
  .section { padding: 76px 0; }
  .section-heading--split { display: block; }
  .section-heading--split > p { margin-top: 20px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-card__image { height: 280px; }
  .expertise__image, .expertise__image img { min-height: 330px; }
  .expertise__content { padding: 0; }
  .contact-cta__mail { width: 100%; padding: 24px; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; }
  .page-hero__content { min-height: 350px; }
  .page-hero h1, .about-hero h1 { font-size: 2.85rem; }
  .email-card { grid-template-columns: auto 1fr; }
  .email-card__arrow { display: none; }
  .about-hero__image { height: 300px; }
  .selector-intro .shell { min-height: 320px; }
  .selector-intro h1 { font-size: 2.75rem; }
  .selector-workspace { padding: 28px 0 70px; }
  .search-panel, .results-panel { padding: 22px 17px; }
  .search-panel__heading, .results-panel__header { gap: 16px; }
  .dimension-fields { grid-template-columns: 1fr; }
  .search-submit { width: 100%; }
  .results-panel__header { align-items: flex-start; flex-direction: column; }
  .product-table thead { display: none; }
  .product-table, .product-table tbody, .product-table tr, .product-table td { display: block; width: 100%; }
  .product-table tr { margin-bottom: 14px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 10px; }
  .product-table td { display: grid; grid-template-columns: 92px 1fr; gap: 10px; padding: 8px 0; border-bottom: 1px solid #edf0f1; text-align: left !important; white-space: normal !important; }
  .product-table td::before { color: #839097; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; content: attr(data-label); }
  .product-table td:last-child { border-bottom: 0; }
  .selector-help { flex-direction: column; align-items: flex-start; }
  .selector-help .button { width: 100%; }
}

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

@media print {
  .site-header, .selector-intro, .search-panel, .selector-help, .site-footer, #printButton { display: none !important; }
  .selector-workspace { padding: 0; background: #fff; }
  .results-panel { padding: 0; border: 0; box-shadow: none; }
  .product-table th, .product-table td { font-size: 9pt; }
}

:root {
  --green: #4da813;
  --green-dark: #2e6f0d;
  --green-soft: #eef5e9;
  --ink: #17232c;
  --navy: #172731;
  --navy-deep: #0e1a21;
  --slate: #52616b;
  --line: #cbd3d7;
  --mist: #f4f6f5;
  --radius: 5px;
  --shadow: 0 10px 28px rgba(15, 29, 38, 0.06);
}

body { font-size: 16px; }
h1, h2, h3 { letter-spacing: -0.028em; }
.shell { width: min(1220px, calc(100% - 56px)); }
.hero__line, .about-hero h1 > span, .hero__eyebrow > span { display: block; }

.site-header { border-bottom-color: #c8d0d4; box-shadow: none; }
.site-header__inner { min-height: 86px; }
.brand-logo, .brand img, .brand-logo img { width: 184px; }
.site-nav { gap: 24px; }
.site-nav a { padding: 31px 0 27px; color: #47555e; font-size: 0.9rem; font-weight: 700; border-radius: 0; }
.site-nav a:not(.nav-cta)::after { right: 0; bottom: 20px; left: 0; height: 3px; }
.site-nav .nav-cta { margin-left: 4px; padding: 12px 20px; border: 1px solid var(--green); border-radius: 4px; }
.site-nav .nav-cta:hover { background: #438f13; border-color: #438f13; }
.site-nav a.is-current:not(.nav-cta)::after, .site-nav a.is-current:not(.nav-cta):hover::after { transform: scaleX(0); }
.menu-button { border-radius: 4px; }

.eyebrow { gap: 12px; margin-bottom: 20px; font-size: 0.72rem; letter-spacing: 0.16em; }
.eyebrow::before { width: 32px; height: 1px; }
.hero::before { opacity: 0.55; background-size: 64px 64px; }
.hero__grid { min-height: 650px; grid-template-columns: 1fr 0.9fr; gap: 64px; }
.hero__content { padding: 106px 0; }
.hero h1 { font-size: clamp(3.2rem, 5vw, 5.1rem); letter-spacing: -0.048em; }
.hero__lead { margin-top: 30px; color: #d0d7da; font-size: 1.08rem; line-height: 1.72; }
.hero__halo { opacity: 0.42; }
.hero__visual img { width: 105%; filter: drop-shadow(0 24px 28px rgba(0,0,0,0.28)); }
.hero__label { right: 18px; bottom: 54px; border-left-width: 4px; backdrop-filter: none; }

.button { min-height: 52px; padding: 13px 22px; border-radius: 4px; transition: background 170ms ease, border-color 170ms ease, color 170ms ease; }
.button:hover { transform: none; }
.button--primary:hover { background: #438f13; color: #fff; }
.button--dark:hover { background: #25343d; }

.icon-arrow { width: 18px; height: 18px; display: inline-grid; place-items: center; flex: 0 0 18px; color: currentColor; vertical-align: middle; }
.icon-arrow::before { width: 18px; height: 18px; background: currentColor; content: ""; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14M13 6l6 6l-6 6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 12h14M13 6l6 6l-6 6' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat; }
.icon-arrow::after { content: none; }

.proof-strip__grid > div { min-height: 108px; padding: 20px 36px; }
.proof-dot { width: 28px; height: 28px; background: transparent; border: 1px solid #a7b3b8; border-radius: 3px; }
.proof-dot::after { width: 7px; height: 7px; border-radius: 1px; }
.proof-strip strong { font-size: 0.9rem; }

.section { padding: 104px 0; }
.section-heading { margin-bottom: 42px; }
.section-heading h2, .expertise h2, .story-section h2, .primary-contact h2 { font-size: clamp(2.1rem, 3.3vw, 3.45rem); }
.section-heading--split > p { border-left: 1px solid var(--line); padding: 4px 0 4px 28px; }

.catalog-grid { gap: 20px; }
.catalog-card { border-color: #bcc6ca; border-radius: 4px; box-shadow: none; }
.catalog-card__image { height: 290px; background: #eef1ef; border-bottom-color: #bcc6ca; }
.catalog-card__image::after { display: none; }
.catalog-card__image img { filter: none; }
.catalog-card__body { padding: 30px; }
.catalog-card h3 { font-size: 1.42rem; }
.catalog-card p { margin: 12px 0 26px; line-height: 1.65; }
.catalog-action { min-height: 54px; padding: 7px 8px 7px 17px; background: #fff; border-color: #bdc8cc; border-radius: 3px; box-shadow: none; }
.catalog-action:hover { background: #f5f7f6; border-color: #829198; box-shadow: none; }
.catalog-action > span:last-child { width: 36px; height: 36px; flex-basis: 36px; background: var(--green); color: #fff; border-radius: 2px; }
.catalog-action:hover > span:last-child { background: #438f13; color: #fff; }
.range-note { margin-top: 20px; padding: 24px 28px; border-radius: 3px; }

.expertise { border-top-color: #aeb9be; }
.expertise__grid { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr); gap: clamp(56px, 7vw, 94px); }
.expertise__image { min-height: 500px; border: 1px solid #c1cace; border-radius: 4px; box-shadow: none; }
.expertise__image::after { display: none; }
.expertise__image img { min-height: 500px; }
.expertise__content h2 { font-size: clamp(2.1rem, 3vw, 3.25rem); }
.expertise__content h2 > span { display: block; white-space: nowrap; }
.expertise__content > p:not(.eyebrow) { margin-top: 22px; font-size: 1.03rem; }
.check-list { margin: 28px 0 34px; }
.check-list li { padding: 15px 0; }
.check-list span { width: 22px; height: 22px; flex-basis: 22px; background: var(--green-soft); color: var(--green-dark); border: 1px solid #bdd7ae; border-radius: 3px; }

.contact-cta { background: #eef1f1; border-top-color: #bfc8cc; }
.contact-cta__inner { min-height: 266px; }
.contact-cta__mail { padding: 25px 28px; background: #fff; border-color: #b9c4c8; border-radius: 4px; }
.contact-cta__mail:hover { background: #f8faf8; border-color: var(--green-dark); }
.contact-cta__mail::before { width: 4px; }

.site-footer { padding-top: 68px; }
.site-footer__grid { padding-bottom: 48px; }
.site-footer h2 { color: #91a0a8; letter-spacing: 0.15em; }
.site-footer__bottom { border-top-color: rgba(255,255,255,0.14); }

.page-hero__content { min-height: 380px; }
.page-hero h1 { font-size: clamp(3rem, 4.6vw, 4.7rem); }
.page-hero--contact::after { right: 6vw; border-radius: 0; transform: rotate(45deg); opacity: 0.45; }
.contact-page__grid { grid-template-columns: 1fr 0.9fr; gap: 100px; }
.email-card { margin-top: 32px; padding: 20px; background: var(--green); border: 1px solid #418f10; border-radius: 4px; box-shadow: none; transition: background 170ms ease; }
.email-card:hover { background: #438f13; color: #fff; transform: none; }
.email-card__icon { width: 48px; height: 48px; background: rgba(255,255,255,0.82); border-radius: 3px; }
.detail-card { grid-template-columns: 48px 1fr; padding: 30px 0; }

.about-hero__grid { min-height: 560px; gap: 72px; }
.about-hero h1 { font-size: clamp(3rem, 4vw, 4.2rem); }
.about-hero__image::after { background: linear-gradient(90deg, var(--navy) 0, rgba(23,39,49,0.2) 22%, transparent 42%); }
.story-section__grid { grid-template-columns: 0.92fr 1.08fr; gap: 100px; }
.story-copy { padding-left: 32px; border-left: 1px solid var(--line); }
.values-grid { gap: 16px; }
.values-grid article { min-height: 270px; padding: 30px; border-color: #c1cace; border-radius: 4px; }
.values-grid article > span { display: inline-block; padding-bottom: 8px; border-bottom: 2px solid var(--green); }

.selector-intro .shell { min-height: 330px; }
.selector-intro h1 { font-size: clamp(2.8rem, 4.5vw, 4.5rem); }
.selector-workspace { padding-top: 56px; }
.search-panel, .results-panel { padding: 32px; border-color: #c2cbcf; border-radius: 4px; box-shadow: none; }
.step-label { border: 1px solid #bdd7ae; border-radius: 3px; }
input { border-color: #bac5ca; border-radius: 3px; }
.empty-state { border-radius: 3px; }
.empty-state__icon { border: 1px solid var(--line); border-radius: 3px; }
.product-table th:first-child, .product-table th:last-child { border-radius: 0; }
.product-link { border: 1px solid #bdd7ae; border-radius: 3px; }
.selector-help { padding: 24px 26px; border-color: #c2cbcf; border-radius: 4px; }
.dimension-filter > summary { display: none; }
[hidden] { display: none !important; }

@media (min-width: 1229px) {
  .about-hero__image { margin-right: calc((100vw - 1220px) / -2); }
}

@media (max-width: 1100px) {
  .desktop-break { display: none; }
}

@media (max-width: 1000px) {
  .contact-page__grid { grid-template-columns: 1fr; gap: 48px; }
  .primary-contact h2 { white-space: normal; }
}

@media (max-width: 860px) {
  .shell { width: min(100% - 36px, 1220px); }
  .site-header__inner { min-height: 74px; }
  .site-nav { gap: 0; }
  .site-nav a { padding: 17px 12px; color: #fff; }
  .site-nav a.is-current:not(.nav-cta), .site-nav a:hover:not(.nav-cta) { color: #a8ee70; }
  .site-nav a:not(.nav-cta)::after { display: none; }
  .site-nav .nav-cta { border-radius: 4px; }
  .brand img, .brand-logo, .brand-logo img { width: 150px; }
  .hero__grid { gap: 18px; }
  .hero__content { padding-top: 84px; }
  .expertise__grid, .story-section__grid { grid-template-columns: 1fr; gap: 46px; }
  .about-hero__grid { min-height: auto; grid-template-columns: 1fr; gap: 0; }
  .about-hero__image { margin-right: -18px; }
  .story-copy { padding-left: 0; border-left: 0; }
  .expertise__content h2 { font-size: clamp(2rem, 6.2vw, 3.25rem); }
  .expertise__image, .expertise__image img { min-height: 420px; }
}

@media (max-width: 650px) {
  .hero::before { mask-image: linear-gradient(to bottom, #000, transparent 86%); }
  .hero__grid { display: block; }
  .hero__content { max-width: none; padding: 70px 0 66px; text-align: center; }
  .hero h1 { font-size: clamp(2.35rem, 11vw, 2.7rem); }
  .hero__line { white-space: nowrap; }
  .hero__eyebrow { width: min(100%, 280px); display: flex; flex-direction: column; align-items: center; gap: 5px; margin: 0 auto 22px; font-size: 0.64rem; line-height: 1.55; text-align: center; }
  .hero__eyebrow::before { align-self: center; }
  .hero__lead { margin-inline: auto; }
  .hero__visual { display: none; }
  .button-row { justify-content: center; }
  .section { padding: 72px 0; }
  .proof-strip__grid > div, .proof-strip__grid > div:first-child { min-height: 88px; padding: 14px 0; }
  .catalog-card__image { height: 270px; }
  .catalog-card__body { padding: 24px; }
  .expertise__image, .expertise__image img { min-height: 330px; }
  .product-table tr { border-radius: 3px; }
  .expertise__content h2 { font-size: clamp(1.85rem, 8.2vw, 2.65rem); }
  .about-hero h1 { font-size: clamp(1.85rem, 8vw, 2.05rem); }
  .about-hero h1 > span { white-space: nowrap; }
  .about-hero__image::after { display: none; }
  .about-hero__image { width: calc(100% + 36px); margin-right: -18px; margin-left: -18px; }
  .about-hero__image span { display: none; }
  .email-card { grid-template-columns: auto minmax(0, 1fr) auto; gap: 14px; padding: 18px; }
  .email-card__arrow { grid-column: 3; grid-row: 1; display: inline-grid; align-self: center; justify-self: end; }
  .selector-intro .shell { min-height: 220px; }
  .selector-intro h1 { font-size: 2.15rem; }
  .selector-intro .shell > p:last-child { margin-top: 14px; font-size: 0.84rem; line-height: 1.55; }
  .selector-workspace { padding: 14px 0 56px; }
  .search-panel, .results-panel { padding: 22px 17px; }
  .search-panel { position: sticky; top: 74px; z-index: 20; padding: 14px; box-shadow: 0 8px 24px rgba(15,29,38,0.12); }
  .search-panel__heading { margin-bottom: 12px; }
  .search-panel__heading .step-label { display: none; }
  .search-panel__heading > div { display: block; }
  .search-panel h2 { font-size: 1rem; }
  .search-panel__heading { gap: 12px; }
  .reset-link { white-space: nowrap; }
  .primary-search label { margin-bottom: 5px; font-size: 0.72rem; }
  .primary-search input { min-height: 46px; }
  .dimension-filter { margin-top: 10px; }
  .dimension-filter > summary { display: flex; align-items: center; justify-content: space-between; padding: 9px 0 2px; color: var(--ink); font-size: 0.76rem; font-weight: 700; cursor: pointer; }
  .dimension-filter > summary span { color: #7e8a91; font-weight: 400; }
  .dimension-fields { gap: 10px; margin: 12px 0 2px; }
  .dimension-fields legend { display: none; }
  .dimension-fields input { min-height: 44px; }
  .search-submit { width: 100%; margin-top: 12px; }
  .results-panel { margin-top: 12px; padding: 16px 14px; }
  .results-panel__header { margin-bottom: 12px; }
  #printButton { display: none !important; }
  .empty-state { padding: 38px 18px; }
  .product-table tr { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) 40px; gap: 10px 12px; margin: 0; padding: 15px 0; border: 0; border-top: 1px solid var(--line); border-radius: 0; }
  .product-table tr:first-child { border-top: 0; }
  .product-table td { min-width: 0; display: block; padding: 0; border: 0; text-align: left !important; white-space: normal !important; }
  .product-table td::before { display: block; margin-bottom: 2px; font-size: 0.62rem; }
  .product-table td:nth-child(1) { grid-column: 1 / -1; font-size: 0.92rem; }
  .product-table td:nth-child(2) { grid-column: 1 / -1; color: var(--slate); line-height: 1.45; }
  .product-table td:nth-child(3) { grid-column: 1; }
  .product-table td:nth-child(4) { grid-column: 2; }
  .product-table td:nth-child(5) { grid-column: 3; }
  .product-table td:nth-child(6) { grid-column: 1 / -1; grid-row: 4; justify-self: start; margin-top: 3px; }
  .product-table td:nth-child(6)::before { display: none; }
  .product-link { width: auto; min-height: 38px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 7px 11px; overflow: hidden; background: #f5f9f2; color: var(--green-dark); border-color: #b9cdb0; font-size: 0.82rem; }
  .product-link::after { content: none; }
  .selector-help { margin-top: 12px; }
}
