:root {
  --ink: #17211e;
  --ink-soft: #3f4c47;
  --muted: #6b7772;
  --forest: #123a32;
  --forest-deep: #0a2a25;
  --green: #2f6d59;
  --green-soft: #dce8e2;
  --red: #c82b32;
  --red-dark: #a91f27;
  --gold: #b8883f;
  --paper: #f5f7f4;
  --paper-strong: #eef2ee;
  --warm: #f4f1eb;
  --white: #ffffff;
  --line: #d9dfdb;
  --line-dark: rgba(255, 255, 255, 0.22);
  --shadow: 0 24px 60px rgba(20, 42, 35, 0.12);
  --shadow-soft: 0 14px 34px rgba(20, 42, 35, 0.08);
  --max: 1240px;
  --header-height: 80px;
  --radius: 6px;
  --ease: cubic-bezier(.2, .72, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body,
  main {
    overflow-x: clip;
  }
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

figure,
h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
}

::selection {
  color: var(--white);
  background: var(--red);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 200;
  padding: 8px 14px;
  color: var(--white);
  background: var(--forest-deep);
  border-radius: 3px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.scroll-line {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 160;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: var(--red);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  width: 100%;
  height: var(--header-height);
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(18, 58, 50, 0.09);
  transition: height 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 10px 26px rgba(12, 42, 36, 0.08);
}

@supports (backdrop-filter: blur(12px)) {
  .site-header {
    backdrop-filter: blur(16px);
  }
}

.header-inner {
  width: min(var(--max), calc(100% - 56px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 260px;
  gap: 13px;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 58px;
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 17px;
  font-weight: 760;
  white-space: nowrap;
}

.brand-text small {
  margin-top: 5px;
  color: var(--green);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 9px 0;
  color: #31413c;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav .mobile-phone {
  display: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 260ms var(--ease);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-phone {
  min-width: 144px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17px;
  color: var(--white);
  background: var(--forest);
  border: 1px solid var(--forest);
  border-radius: 3px;
  font-size: 14px;
  font-weight: 760;
  white-space: nowrap;
  transition: background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.header-phone:hover,
.header-phone:focus-visible {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(18, 58, 50, 0.2);
  border-radius: 3px;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  width: 19px;
  height: 2px;
  background: var(--forest);
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle::before {
  transform: translateY(-6px);
}

.menu-toggle::after {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: rotate(-45deg);
}

.shell {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-compact {
  padding: 82px 0;
}

.section-paper {
  background: var(--paper);
}

.section-warm {
  background: var(--warm);
}

.section-dark {
  color: var(--white);
  background: var(--forest-deep);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 54px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.compact {
  max-width: 630px;
  margin-bottom: 36px;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  flex: 0 0 28px;
  background: currentColor;
}

.centered .kicker {
  justify-content: center;
}

.kicker.kicker-gold {
  color: #efbc6d;
}

.section-heading h2,
.split-copy h2,
.contact-panel h2,
.quality-copy h2,
.profile-copy h2 {
  color: var(--forest-deep);
  font-size: 42px;
  line-height: 1.24;
  font-weight: 760;
  letter-spacing: 0;
}

.section-heading > p:last-child,
.split-copy > p,
.quality-copy > p,
.profile-copy > p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.section-dark .section-heading h2,
.section-dark .split-copy h2,
.section-dark .quality-copy h2,
.section-dark .section-heading > p:last-child,
.section-dark .quality-copy > p {
  color: var(--white);
}

.section-dark .section-heading > p:last-child,
.section-dark .quality-copy > p {
  color: rgba(255, 255, 255, 0.66);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 15px;
  font-weight: 760;
  line-height: 1;
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.button span {
  font-size: 19px;
  line-height: 1;
  transition: transform 200ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover span,
.button:focus-visible span {
  transform: translateX(3px);
}

.button-primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button-secondary {
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(18, 58, 50, 0.34);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--white);
  background: var(--forest);
  border-color: var(--forest);
}

.button-light {
  color: var(--forest-deep);
  background: var(--white);
  border-color: var(--white);
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.46);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--red);
  font-weight: 760;
}

.text-link::after {
  content: "→";
  font-size: 19px;
  transition: transform 200ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.text-link.text-link-gold {
  color: #f1bf72;
}

.button.button-spaced {
  margin-top: 30px;
}

.reveal-delay-1 {
  --reveal-delay: 100ms;
}

.reveal-delay-2 {
  --reveal-delay: 200ms;
}

.home-hero {
  position: relative;
  min-height: calc(100svh - 26px);
  overflow: hidden;
  background: var(--paper-strong);
}

.home-hero-media,
.home-hero-shade {
  position: absolute;
  inset: 0;
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% center;
  transform: scale(1.035) translate3d(0, var(--hero-shift, 0), 0);
  will-change: transform;
}

.home-hero-shade {
  width: 100%;
  background:
    linear-gradient(90deg, rgba(6, 28, 24, 0) 0%, rgba(6, 28, 24, 0.03) 32%, rgba(6, 28, 24, 0.2) 42%, rgba(6, 28, 24, 0.76) 58%, rgba(6, 28, 24, 0.92) 100%),
    linear-gradient(0deg, rgba(6, 28, 24, 0.36) 0%, rgba(6, 28, 24, 0.08) 40%, rgba(6, 28, 24, 0) 72%);
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 26px);
  padding-top: calc(var(--header-height) + 66px);
  padding-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-copy {
  width: min(650px, 50%);
  margin-left: auto;
  align-self: center;
}

.hero-copy .eyebrow {
  color: #efbc6d;
}

.hero-copy h1 {
  color: var(--white);
  font-size: 64px;
  line-height: 1.13;
  font-weight: 780;
  letter-spacing: 0;
  text-shadow: 0 4px 26px rgba(0, 0, 0, 0.2);
}

.hero-copy h1 span {
  display: block;
  margin-top: 9px;
  color: #f0c77f;
  font-size: 36px;
  font-weight: 720;
}

.hero-lead {
  max-width: 570px;
  margin-top: 27px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-profile {
  width: 100%;
  margin-top: 26px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 7px 0 7px 18px;
  border-left: 2px solid #efbc6d;
}

.hero-profile-label {
  padding-top: 3px;
  color: #efbc6d;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 780;
}

.hero-profile p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.7;
}

.home-hero .button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.48);
}

.home-hero .button-secondary:hover,
.home-hero .button-secondary:focus-visible {
  color: var(--forest-deep);
  background: var(--white);
  border-color: var(--white);
}

.intro-statement {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.intro-statement h2 {
  color: var(--forest-deep);
  font-size: 40px;
  line-height: 1.3;
  font-weight: 760;
}

.intro-statement-copy {
  columns: 2;
  column-gap: 48px;
  color: var(--ink-soft);
  font-size: 17px;
}

.intro-statement-copy p {
  break-inside: avoid;
}

.intro-statement-copy p + p {
  margin-top: 20px;
}

.product-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 74px;
  align-items: center;
}

.product-photo-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 1fr 0.82fr;
  gap: 14px;
}

.product-photo-grid figure {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--paper-strong);
}

.product-photo-grid figure:first-child {
  grid-row: 1 / span 2;
}

.product-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 850ms var(--ease);
}

.product-photo-grid figure:hover img {
  transform: scale(1.035);
}

.photo-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 13px 16px;
  color: var(--white);
  background: rgba(10, 42, 37, 0.82);
  font-size: 12px;
}

.product-list {
  border-top: 1px solid var(--line);
}

.product-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
  transition: transform 220ms ease, border-color 220ms ease;
}

.product-row:hover {
  transform: translateX(5px);
  border-color: var(--green);
}

.product-row > span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 780;
}

.product-row h3 {
  color: var(--forest-deep);
  font-size: 21px;
  line-height: 1.35;
}

.product-row p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.quality-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
  min-height: 680px;
}

.quality-media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
}

.quality-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 900ms var(--ease);
}

.quality-showcase:hover .quality-media img {
  transform: scale(1.025);
}

.quality-media-note {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 360px;
  padding: 23px 28px;
  color: var(--white);
  background: var(--red);
}

.quality-media-note strong {
  display: block;
  font-size: 18px;
}

.quality-media-note span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  opacity: 0.82;
}

.quality-copy {
  padding: 74px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quality-copy .kicker {
  color: #e3ad59;
}

.quality-points {
  margin-top: 36px;
  border-top: 1px solid var(--line-dark);
}

.quality-point {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.quality-point span {
  color: #e3ad59;
  font-size: 12px;
  font-weight: 760;
}

.quality-point strong {
  font-size: 16px;
  font-weight: 680;
}

.coverage-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  gap: 64px;
  align-items: stretch;
}

.map-frame {
  min-height: 560px;
  display: grid;
  place-items: center;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.map-frame svg {
  width: 100%;
  height: auto;
  max-height: 500px;
}

.province-shape {
  fill: #edf4ef;
  stroke: #7fa99c;
  stroke-width: 3;
  stroke-linejoin: round;
}

.map-route {
  fill: none;
  stroke: rgba(200, 43, 50, 0.32);
  stroke-width: 1.8;
  stroke-dasharray: 5 7;
}

.map-point circle {
  fill: var(--white);
  stroke: var(--green);
  stroke-width: 4;
}

.map-point text {
  fill: var(--forest-deep);
  stroke: var(--white);
  stroke-width: 3px;
  paint-order: stroke;
  font-size: 13px;
  font-weight: 760;
}

.map-point-hq circle {
  fill: var(--red);
  stroke: var(--white);
  stroke-width: 4;
}

.map-point-secondary circle {
  fill: var(--gold);
  stroke: var(--white);
  stroke-width: 2.5;
}

.coverage-copy {
  padding: 18px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coverage-copy h2 {
  color: var(--forest-deep);
  font-size: 40px;
  line-height: 1.3;
}

.coverage-copy > p {
  margin-top: 20px;
  color: var(--muted);
}

.region-groups {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.region-group {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.region-group strong {
  color: var(--forest);
  font-size: 14px;
}

.region-group span {
  color: var(--ink-soft);
  font-size: 14px;
}

.company-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  min-height: 620px;
}

.company-preview-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.company-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-preview-copy {
  padding: 74px 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--warm);
}

.company-preview-copy h2 {
  color: var(--forest-deep);
  font-size: 42px;
  line-height: 1.28;
}

.company-preview-copy > p {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 16px;
}

.philosophy-line {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(18, 58, 50, 0.18);
}

.philosophy-line small {
  display: block;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.philosophy-line strong {
  display: block;
  margin-top: 8px;
  color: var(--forest);
  font-size: 18px;
  line-height: 1.55;
}

.contact-cta {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.contact-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.26;
}

.contact-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 42, 37, 0.64);
}

.contact-cta-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: end;
}

.contact-cta h2 {
  max-width: 720px;
  font-size: 43px;
  line-height: 1.25;
  font-weight: 740;
}

.contact-cta p {
  max-width: 680px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
}

.contact-cta-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.site-footer {
  color: rgba(255, 255, 255, 0.7);
  background: #071e1a;
}

.footer-main {
  padding: 58px 0 48px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 70px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  background: var(--white);
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 18px;
}

.footer-brand span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
}

.footer-column h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 13px;
}

.footer-column a,
.footer-column span {
  display: block;
  font-size: 13px;
  line-height: 2;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
}

.footer-bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.page-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 35, 30, 0.7);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: calc(var(--header-height) + 42px);
  padding-bottom: 64px;
}

.page-hero .eyebrow {
  color: #f0c077;
}

.page-hero h1 {
  font-size: 54px;
  line-height: 1.2;
  font-weight: 760;
  letter-spacing: 0;
}

.page-hero p:last-child {
  max-width: 690px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.85;
}

.page-hero-product > img {
  object-position: center 48%;
}

.page-hero-quality > img {
  object-position: center 55%;
}

.page-hero-about > img {
  object-position: center 34%;
}

.page-hero-contact > img {
  object-position: center 58%;
}

.anchor-nav {
  position: sticky;
  top: 70px;
  z-index: 40;
  min-height: 62px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}

.anchor-nav .shell {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 36px;
  overflow-x: auto;
  scrollbar-width: none;
}

.anchor-nav .shell::-webkit-scrollbar {
  display: none;
}

.anchor-nav a {
  position: relative;
  flex: 0 0 auto;
  padding: 19px 0 17px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.anchor-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 220ms ease;
}

.anchor-nav a:hover,
.anchor-nav a:focus-visible,
.anchor-nav a.is-active {
  color: var(--forest-deep);
}

.anchor-nav a:hover::after,
.anchor-nav a:focus-visible::after,
.anchor-nav a.is-active::after {
  transform: scaleX(1);
}

.product-intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 84px;
  align-items: start;
}

.product-intro-grid h2 {
  color: var(--forest-deep);
  font-size: 42px;
  line-height: 1.25;
}

.product-intro-copy {
  color: var(--ink-soft);
  font-size: 17px;
}

.product-intro-copy p + p {
  margin-top: 18px;
}

.family-list {
  border-top: 1px solid var(--line);
}

.family-block {
  display: grid;
  grid-template-columns: 90px minmax(250px, 0.75fr) minmax(400px, 1.25fr);
  gap: 34px;
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 160px;
}

.family-number {
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
}

.family-copy h2 {
  color: var(--forest-deep);
  font-size: 30px;
  line-height: 1.3;
}

.family-copy p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 15px;
}

.code-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.code-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.code-row:last-child {
  border-bottom: 0;
}

.code-row strong {
  color: var(--forest);
  font-size: 16px;
}

.code-row span {
  color: var(--ink-soft);
  font-size: 14px;
}

.product-scene {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 500px;
}

.product-scene figure {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--forest-deep);
}

.product-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: opacity 320ms ease, transform 800ms var(--ease);
}

.product-scene figure:hover img {
  opacity: 0.95;
  transform: scale(1.035);
}

.product-scene figcaption {
  position: absolute;
  right: 28px;
  bottom: 30px;
  left: 28px;
  padding-top: 18px;
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.46);
}

.product-scene figcaption strong {
  display: block;
  font-size: 20px;
}

.product-scene figcaption span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.service-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-principle {
  padding: 36px 34px;
  border-right: 1px solid var(--line);
}

.service-principle:last-child {
  border-right: 0;
}

.service-principle span {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.service-principle h3 {
  margin-top: 12px;
  color: var(--forest-deep);
  font-size: 21px;
}

.service-principle p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.quote-band {
  padding: 78px 0;
  color: var(--white);
  background: var(--forest);
}

.quote-band blockquote {
  max-width: 980px;
  margin: 0;
  font-size: 38px;
  line-height: 1.45;
  font-weight: 680;
}

.quote-band p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  min-height: 250px;
  padding: 32px 27px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.process-step h3 {
  margin-top: 44px;
  color: var(--forest-deep);
  font-size: 21px;
}

.process-step p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.quality-layout {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 80px;
  align-items: start;
}

.quality-list {
  border-top: 1px solid var(--line);
}

.quality-list li {
  position: relative;
  list-style: none;
  padding: 20px 0 20px 25px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

.quality-list li::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--red);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gallery-item {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  background: var(--paper-strong);
  border: 0;
  border-radius: 0;
  cursor: zoom-in;
}

.gallery-item.wide {
  grid-column: 1 / -1;
  aspect-ratio: 2 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 720ms var(--ease), opacity 260ms ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.035);
  opacity: 0.88;
}

.gallery-item span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(10, 42, 37, 0.82);
  font-size: 13px;
  text-align: left;
}

.split-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 590px;
}

.split-feature.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split-media {
  min-height: 590px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  padding: 70px 66px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
}

.profile-copy p + p {
  margin-top: 16px;
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.profile-fact {
  min-height: 110px;
  padding: 22px;
  display: grid;
  align-content: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.profile-fact strong {
  color: var(--forest);
  font-size: 27px;
}

.profile-fact span {
  color: var(--muted);
  font-size: 12px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
}

.timeline-item {
  position: relative;
  padding: 36px 32px 0 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background: var(--white);
  border: 4px solid var(--red);
  border-radius: 50%;
}

.timeline-item time {
  display: block;
  color: var(--forest);
  font-size: 25px;
  font-weight: 780;
}

.timeline-item h3 {
  margin-top: 10px;
  color: var(--forest-deep);
  font-size: 17px;
}

.timeline-item p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.leadership {
  border-top: 1px solid var(--line);
}

.leader-profile {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 66px;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}

.leader-profile:nth-child(even) {
  grid-template-columns: 1fr 310px;
}

.leader-profile:nth-child(even) .leader-photo {
  order: 2;
}

.leader-photo {
  height: 380px;
  overflow: hidden;
  background: var(--paper-strong);
}

.leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.leader-content {
  align-self: center;
}

.leader-role {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.leader-content h3 {
  margin-top: 8px;
  color: var(--forest-deep);
  font-size: 36px;
}

.leader-content > p:not(.leader-role) {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16px;
}

.leader-detail {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
}

.leader-detail li {
  position: relative;
  list-style: none;
  padding-left: 16px;
  color: var(--muted);
  font-size: 13px;
}

.leader-detail li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--gold);
}

.activity-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, 260px);
  gap: 14px;
}

.activity-grid .gallery-item {
  aspect-ratio: auto;
}

.activity-grid .gallery-item:first-child {
  grid-row: 1 / span 2;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.philosophy-item {
  min-height: 250px;
  padding: 36px;
  border-right: 1px solid var(--line-dark);
}

.philosophy-item:last-child {
  border-right: 0;
}

.philosophy-item span {
  color: #e9b564;
  font-size: 12px;
  font-weight: 800;
}

.philosophy-item h3 {
  margin-top: 34px;
  color: var(--white);
  font-size: 23px;
}

.philosophy-item p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: start;
}

.contact-panel h2 {
  font-size: 38px;
}

.contact-phone {
  display: inline-block;
  margin-top: 28px;
  color: var(--red);
  font-size: 35px;
  line-height: 1.2;
  font-weight: 780;
}

.contact-details {
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.contact-detail {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-detail strong {
  color: var(--forest);
  font-size: 14px;
}

.contact-detail span,
.contact-detail a {
  color: var(--ink-soft);
  font-size: 15px;
}

.location-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.location-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-note {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 26px 30px;
  color: var(--white);
  background: rgba(10, 42, 37, 0.86);
}

.location-note strong {
  display: block;
  font-size: 18px;
}

.location-note span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.cooperation-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cooperation-item {
  min-height: 230px;
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

.cooperation-item:last-child {
  border-right: 0;
}

.cooperation-item span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.cooperation-item h3 {
  margin-top: 30px;
  color: var(--forest-deep);
  font-size: 20px;
}

.cooperation-item p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 38px;
  color: var(--white);
  background: rgba(4, 18, 15, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-figure {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  display: grid;
  gap: 12px;
}

.lightbox img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
}

.lightbox figcaption {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 3px;
  cursor: pointer;
}

.lightbox-close::before,
.lightbox-close::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 12px;
  width: 20px;
  height: 2px;
  background: currentColor;
}

.lightbox-close::before {
  transform: rotate(45deg);
}

.lightbox-close::after {
  transform: rotate(-45deg);
}

.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition: opacity 560ms ease, transform 720ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal="left"] {
  transform: translate3d(-28px, 0, 0);
}

.js [data-reveal="right"] {
  transform: translate3d(28px, 0, 0);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1180px) {
  .header-inner,
  .shell {
    width: min(var(--max), calc(100% - 40px));
  }

  .main-nav {
    gap: 20px;
  }

  .header-phone {
    display: none;
  }

  .hero-copy h1 {
    font-size: 54px;
  }

  .hero-copy h1 span {
    font-size: 32px;
  }

  .product-editorial,
  .quality-showcase,
  .company-preview {
    gap: 0;
  }

  .quality-copy,
  .company-preview-copy,
  .split-copy {
    padding: 56px 46px;
  }

  .family-block {
    grid-template-columns: 60px minmax(220px, 0.7fr) minmax(360px, 1.3fr);
    gap: 26px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .site-header.is-scrolled {
    height: 66px;
  }

  .header-inner {
    width: calc(100% - 32px);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    z-index: 140;
    height: calc(100svh - var(--header-height));
    padding: 42px 24px 32px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    color: var(--white);
    background: var(--forest-deep);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 320ms var(--ease), visibility 320ms ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .main-nav a {
    padding: 17px 0;
    color: var(--white);
    font-size: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav .mobile-phone {
    display: block;
    margin-top: 28px;
    color: #efbc6d;
    border-bottom: 0;
    font-size: 17px;
  }

  .section {
    padding: 92px 0;
  }

  .home-hero-shade {
    width: 100%;
    clip-path: none;
  }

  .hero-copy {
    width: min(620px, 64%);
  }

  .hero-profile {
    width: 100%;
  }

  .intro-statement,
  .product-editorial,
  .coverage-layout,
  .product-intro-grid,
  .quality-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .intro-statement-copy {
    columns: 1;
  }

  .product-photo-grid {
    min-height: 560px;
  }

  .quality-showcase,
  .company-preview,
  .split-feature,
  .split-feature.reverse {
    grid-template-columns: 1fr;
  }

  .quality-media,
  .company-preview-media,
  .split-media {
    min-height: 520px;
  }

  .map-frame {
    min-height: 500px;
  }

  .coverage-copy {
    padding: 0;
  }

  .contact-cta-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }

  .footer-main {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 42px;
  }

  .family-block {
    grid-template-columns: 60px 1fr;
  }

  .code-list {
    grid-column: 2;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-step:nth-child(3) {
    border-right: 0;
  }

  .process-step:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }

  .cooperation-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .cooperation-item:nth-child(2) {
    border-right: 0;
  }

  .cooperation-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 66px;
  }

  html {
    scroll-padding-top: 92px;
  }

  body {
    font-size: 15px;
  }

  .shell {
    width: calc(100% - 36px);
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand-text strong {
    max-width: 218px;
    overflow: hidden;
    font-size: 15px;
    text-overflow: ellipsis;
  }

  .brand-text small {
    margin-top: 3px;
    font-size: 8px;
    letter-spacing: 1px;
  }

  .section {
    padding: 74px 0;
  }

  .section-compact {
    padding: 62px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .split-copy h2,
  .contact-panel h2,
  .quality-copy h2,
  .profile-copy h2,
  .product-intro-grid h2,
  .coverage-copy h2,
  .company-preview-copy h2,
  .intro-statement h2 {
    font-size: 30px;
    line-height: 1.35;
  }

  .section-heading > p:last-child,
  .split-copy > p,
  .quality-copy > p,
  .profile-copy > p,
  .product-intro-copy {
    font-size: 15px;
    line-height: 1.8;
  }

  .eyebrow,
  .kicker {
    margin-bottom: 13px;
    font-size: 11px;
  }

  .home-hero {
    min-height: calc(100svh - 16px);
    color: var(--white);
    background: var(--forest-deep);
  }

  .home-hero-media img {
    object-position: 38% center;
  }

  .home-hero-shade {
    width: 100%;
    background:
      linear-gradient(180deg, rgba(6, 28, 24, 0.24) 0%, rgba(6, 28, 24, 0.4) 42%, rgba(6, 28, 24, 0.88) 100%),
      linear-gradient(90deg, rgba(6, 28, 24, 0.28) 0%, rgba(6, 28, 24, 0.08) 100%);
    clip-path: none;
  }

  .home-hero-inner {
    min-height: calc(100svh - 16px);
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 18px;
    align-items: flex-end;
  }

  .hero-copy {
    width: 100%;
    align-self: end;
  }

  .hero-copy .eyebrow {
    color: #efbc6d;
  }

  .hero-copy h1 {
    color: var(--white);
    font-size: 38px;
    line-height: 1.18;
  }

  .hero-copy h1 span {
    margin-top: 7px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 25px;
  }

  .hero-lead {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.75;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-actions .button {
    flex: 1 1 150px;
  }

  .button-secondary {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.48);
  }

  .hero-profile {
    width: 100%;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    margin-top: 20px;
    padding: 7px 0 7px 16px;
    color: var(--white);
    border-left-color: #efbc6d;
  }

  .hero-profile-label {
    color: #efbc6d;
    font-size: 11px;
  }

  .hero-profile p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.65;
  }

  .intro-statement,
  .product-editorial,
  .coverage-layout,
  .product-intro-grid,
  .quality-layout,
  .contact-layout {
    gap: 34px;
  }

  .intro-statement-copy {
    font-size: 15px;
  }

  .product-photo-grid {
    min-height: 480px;
    grid-template-columns: 1fr 0.74fr;
  }

  .product-list {
    margin-top: 4px;
  }

  .product-row {
    grid-template-columns: 38px 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .product-row h3 {
    font-size: 19px;
  }

  .quality-media,
  .company-preview-media,
  .split-media {
    min-height: 390px;
  }

  .quality-copy,
  .company-preview-copy,
  .split-copy {
    padding: 42px 24px;
  }

  .quality-media-note {
    max-width: 270px;
    padding: 17px 20px;
  }

  .cooperation-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .cooperation-item {
    min-height: 130px;
    padding: 22px 18px;
  }

  .map-frame {
    min-height: 0;
    padding: 10px;
  }

  .map-point text {
    font-size: 14px;
  }

  .map-point-secondary circle {
    r: 3.5;
  }

  .region-group {
    grid-template-columns: 74px 1fr;
  }

  .contact-cta {
    min-height: 450px;
  }

  .contact-cta h2 {
    font-size: 30px;
  }

  .contact-cta-actions {
    flex-wrap: wrap;
  }

  .contact-cta-actions .button {
    flex: 1 1 145px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 46px 0 36px;
  }

  .footer-bottom {
    min-height: 76px;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
  }

  .page-hero {
    min-height: 520px;
  }

  .page-hero-inner {
    padding-top: calc(var(--header-height) + 32px);
    padding-bottom: 46px;
  }

  .page-hero h1 {
    font-size: 37px;
    line-height: 1.28;
  }

  .page-hero p:last-child {
    font-size: 15px;
    line-height: 1.8;
  }

  .anchor-nav {
    top: 66px;
  }

  .anchor-nav .shell {
    width: calc(100% - 24px);
    gap: 26px;
  }

  .family-block {
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 42px 0;
  }

  .family-copy h2 {
    font-size: 24px;
  }

  .code-list {
    grid-column: 1 / -1;
  }

  .code-row {
    min-height: 68px;
    grid-template-columns: 112px 1fr;
    gap: 16px;
  }

  .code-row strong,
  .code-row span {
    font-size: 13px;
  }

  .product-scene {
    grid-template-columns: 1fr;
  }

  .product-scene figure {
    min-height: 390px;
  }

  .service-principles {
    grid-template-columns: 1fr;
  }

  .service-principle {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-principle:last-child {
    border-bottom: 0;
  }

  .quote-band {
    padding: 60px 0;
  }

  .quote-band blockquote {
    font-size: 28px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:nth-child(3) {
    min-height: 0;
    padding: 26px 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step h3 {
    margin-top: 16px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .timeline {
    grid-template-columns: 1fr;
    padding-top: 0;
    padding-left: 28px;
  }

  .timeline::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 7px;
    width: 1px;
    height: auto;
  }

  .timeline-item {
    padding: 0 0 34px 18px;
  }

  .timeline-item::before {
    top: 6px;
    left: -28px;
  }

  .leader-profile,
  .leader-profile:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px 0;
  }

  .leader-profile:nth-child(even) .leader-photo {
    order: initial;
  }

  .leader-photo {
    height: 430px;
  }

  .leader-content h3 {
    font-size: 30px;
  }

  .leader-detail {
    grid-template-columns: 1fr;
  }

  .activity-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 250px);
  }

  .activity-grid .gallery-item:first-child {
    grid-row: auto;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .philosophy-item:last-child {
    border-bottom: 0;
  }

  .location-visual {
    min-height: 440px;
  }

  .contact-phone {
    font-size: 30px;
  }

  .contact-detail {
    grid-template-columns: 68px 1fr;
    gap: 14px;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox-close {
    top: 12px;
    right: 12px;
  }
}

@media (max-width: 420px) {
  .brand-text strong {
    max-width: 196px;
    font-size: 14px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-copy h1 span {
    font-size: 23px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions .button {
    min-height: 44px;
    padding: 0 15px;
    font-size: 13px;
  }

  .hero-profile {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 12px;
    padding-left: 13px;
  }

  .hero-profile p {
    font-size: 11px;
  }

  .product-photo-grid {
    min-height: 430px;
  }

  .cooperation-item {
    padding: 18px 14px;
  }

  .page-hero h1 {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
