:root {
  --ink: #1d2421;
  --muted: #5f6964;
  --green: #285c4d;
  --green-dark: #173f35;
  --ochre: #b9813b;
  --steel: #415a63;
  --line: #dbe1dd;
  --mist: #f1f3f0;
  --white: #ffffff;
  --danger: #a13e35;
  --shadow: 0 16px 38px rgba(29, 36, 33, 0.12);
  --radius: 6px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body,
button,
input,
select,
textarea {
  font-family: Arial, Helvetica, sans-serif;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 74px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

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

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

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

.eyebrow {
  margin-bottom: 12px;
  color: var(--ochre);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.section-dark .lead,
.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

.section-head h2,
.section-head p {
  margin-bottom: 0;
}

.section-head p {
  color: var(--muted);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid var(--green);
  border-radius: 4px;
  color: var(--white);
  background: var(--green);
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--white);
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

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

.button-outline {
  color: var(--green);
  background: transparent;
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--white);
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 14px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-140%);
}

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

.sr-only {
  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: 50;
  height: var(--header-height);
  border-bottom: 1px solid rgba(219, 225, 221, 0.9);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(1240px, calc(100% - 40px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-symbol {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ochre);
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 900;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 17px;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.primary-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  color: #46514c;
  font-size: 14px;
  font-weight: 700;
}

.primary-nav a {
  height: var(--header-height);
  display: inline-flex;
  align-items: center;
  border-bottom: 3px solid transparent;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  color: var(--green);
  border-bottom-color: var(--ochre);
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle {
  display: none;
  margin-left: auto;
}

.hero {
  position: relative;
  min-height: min(660px, calc(100svh - var(--header-height) - 110px));
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(17, 30, 26, 0.94) 0%, rgba(17, 30, 26, 0.78) 43%, rgba(17, 30, 26, 0.25) 77%, rgba(17, 30, 26, 0.12) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 44px 0;
}

.hero h1 {
  font-size: clamp(40px, 5.2vw, 64px);
}

.hero-brand {
  margin-bottom: 16px;
  color: #d5ad75;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
}

.hero .lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
}

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

.hero-proof {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-proof i {
  color: #d5ad75;
}

.stats-strip {
  color: var(--white);
  background: var(--green-dark);
}

.stats-grid {
  min-height: 116px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  min-width: 0;
  display: grid;
  align-content: center;
  padding: 24px 28px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.stat:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stat strong {
  font-size: 30px;
  line-height: 1;
}

.stat span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

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

.category-item {
  min-height: 210px;
  position: relative;
  display: grid;
  align-content: end;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--white);
}

.category-item::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 28px;
  width: 58px;
  height: 3px;
  background: var(--ochre);
}

.category-item i {
  margin-bottom: 32px;
  color: var(--green);
  font-size: 31px;
}

.category-item h3 {
  max-width: 220px;
  margin-bottom: 4px;
  font-size: 23px;
}

.category-item span {
  color: var(--muted);
  font-size: 14px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: #b9c4bd;
  box-shadow: var(--shadow);
}

.product-card[hidden] {
  display: none;
}

.product-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #eef0ed;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-content {
  min-height: 274px;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-category {
  margin-bottom: 9px;
  color: var(--ochre);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-content h3 {
  min-height: 46px;
  font-size: 19px;
}

.product-content h3 a:hover {
  color: var(--green);
}

.product-content p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.product-meta {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.product-meta span {
  color: var(--muted);
}

.product-meta a {
  color: var(--green);
}

.product-meta i {
  margin-left: 4px;
}

.section-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
}

.split-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
}

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

.split-copy .lead {
  margin-bottom: 28px;
}

.check-list {
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.check-list i {
  margin-top: 5px;
  color: var(--ochre);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.capability-item {
  min-height: 260px;
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.capability-item i {
  margin-bottom: 54px;
  color: #d5ad75;
  font-size: 28px;
}

.capability-item h3 {
  font-size: 21px;
}

.capability-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

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

.process-step {
  min-width: 0;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.process-step:first-child {
  border-left: 1px solid var(--line);
}

.process-step strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 38px;
  color: var(--white);
  background: var(--green);
  font-size: 13px;
}

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

.market-band {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: center;
}

.market-bars {
  display: grid;
  gap: 15px;
}

.market-row {
  display: grid;
  grid-template-columns: 120px 1fr 48px;
  gap: 14px;
  align-items: center;
  font-size: 14px;
}

.market-track {
  height: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.market-track span {
  height: 100%;
  display: block;
  background: #d5ad75;
}

.faq-list {
  max-width: 900px;
  margin-inline: auto;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr 24px;
  gap: 20px;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  color: var(--green);
}

.faq-item p {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--muted);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 48px 52px;
  color: var(--white);
  background: var(--steel);
}

.cta-band h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 4vw, 42px);
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.page-hero {
  padding: 84px 0 72px;
  color: var(--white);
  background: var(--ink);
}

.page-hero .shell {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 1fr);
  gap: 72px;
  align-items: end;
}

.page-hero h1 {
  margin-bottom: 0;
  font-size: clamp(40px, 6vw, 68px);
}

.page-hero p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.catalog-tools {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 34px;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.catalog-search {
  min-width: 260px;
  position: relative;
}

.catalog-search i {
  position: absolute;
  top: 50%;
  left: 14px;
  color: var(--muted);
  transform: translateY(-50%);
}

.catalog-search input {
  width: 100%;
  min-height: 42px;
  padding: 8px 14px 8px 40px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.catalog-status {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.product-detail-media {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
}

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

.product-detail-copy h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.spec-list {
  margin: 30px 0;
  border-top: 1px solid var(--line);
}

.spec-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--muted);
}

.spec-list dd {
  margin: 0;
  font-weight: 700;
}

.product-detail-features {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 22px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}

.product-detail-features h2 {
  font-size: 34px;
}

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

.feature-block,
.service-block {
  min-height: 230px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-block i,
.service-block i {
  margin-bottom: 42px;
  color: var(--green);
  font-size: 28px;
}

.feature-block p,
.service-block p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.image-row figure {
  margin: 0;
}

.image-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.image-row figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

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

.data-item {
  min-height: 170px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.data-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 29px;
}

.data-item span {
  color: var(--muted);
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: 64px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-detail {
  min-height: 112px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  align-content: center;
  padding: 24px;
  background: var(--white);
}

.contact-detail i {
  margin-top: 4px;
  color: var(--ochre);
  font-size: 20px;
}

.contact-detail strong,
.contact-detail span {
  display: block;
}

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

.inquiry-form {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  font-size: 13px;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #bfc8c2;
  border-radius: 4px;
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(40, 92, 77, 0.2);
  border-color: var(--green);
}

.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
}

.consent input {
  width: 16px;
  height: 16px;
  margin-top: 4px;
}

.form-footer {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.legal {
  max-width: 820px;
}

.legal h2 {
  margin-top: 48px;
  font-size: 27px;
}

.legal h3 {
  margin-top: 28px;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal ul {
  padding-left: 20px;
}

.success-panel {
  max-width: 720px;
  margin-inline: auto;
  padding: 56px;
  text-align: center;
  border: 1px solid var(--line);
  background: var(--white);
}

.success-panel i {
  margin-bottom: 28px;
  color: var(--green);
  font-size: 50px;
}

.success-panel p {
  color: var(--muted);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #151b18;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 54px;
}

.brand-light .brand-symbol,
.brand-light .brand-copy strong {
  color: var(--white);
}

.brand-light .brand-copy small {
  color: rgba(255, 255, 255, 0.55);
}

.footer-brand p {
  max-width: 340px;
  margin: 22px 0 0;
}

.footer-main h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 15px;
}

.footer-main > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13px;
}

.footer-main a:hover {
  color: #d5ad75;
}

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

.footer-bottom span:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 1080px) {
  .header-quote {
    display: none;
  }

  .primary-nav {
    gap: 18px;
  }

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

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

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

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  .shell,
  .header-inner {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 68px 0;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .primary-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: none;
    padding: 12px 14px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 18px 30px rgba(29, 36, 33, 0.12);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav a {
    height: 44px;
    padding-inline: 10px;
    border-bottom: 0;
    border-left: 3px solid transparent;
  }

  .primary-nav a[aria-current="page"] {
    border-left-color: var(--ochre);
  }

  .hero {
    min-height: 650px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(17, 30, 26, 0.92), rgba(17, 30, 26, 0.58));
  }

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

  .stat:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .category-grid,
  .feature-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head,
  .split,
  .market-band,
  .page-hero .shell,
  .product-detail,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .section-head,
  .split,
  .market-band,
  .page-hero .shell,
  .contact-layout {
    gap: 32px;
  }

  .split-media {
    min-height: 440px;
  }

  .product-detail-features {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .catalog-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-search {
    min-width: 0;
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .brand-copy strong {
    font-size: 15px;
  }

  .hero {
    min-height: min(650px, calc(100svh - var(--header-height) - 72px));
  }

  .hero-content {
    padding: 60px 0;
  }

  .hero-proof {
    display: none;
  }

  .stats-grid,
  .category-grid,
  .product-grid,
  .capability-grid,
  .process-grid,
  .feature-grid,
  .service-grid,
  .data-grid,
  .image-row,
  .footer-main,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.14);
  }

  .category-item {
    min-height: 180px;
  }

  .product-content {
    min-height: 0;
  }

  .product-content h3 {
    min-height: 0;
  }

  .capability-item,
  .feature-block,
  .service-block {
    min-height: 0;
  }

  .capability-item i,
  .feature-block i,
  .service-block i {
    margin-bottom: 26px;
  }

  .process-step {
    border-left: 1px solid var(--line);
  }

  .market-row {
    grid-template-columns: 90px 1fr 40px;
  }

  .cta-band,
  .inquiry-form,
  .success-panel {
    padding: 30px 24px;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-brand,
  .field-full {
    grid-column: auto;
  }

  .footer-bottom {
    padding: 22px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

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

/* WordPress integration */
.primary-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}

.primary-nav li {
  margin: 0;
}

.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a,
.primary-nav .current-menu-parent > a {
  color: var(--green);
  border-bottom-color: var(--ochre);
}

.custom-logo-link img,
.site-header .custom-logo,
.site-footer .custom-logo {
  width: auto;
  max-width: 210px;
  height: 48px;
  object-fit: contain;
}

.admin-bar .site-header {
  top: 32px;
}

.editor-content > *:last-child,
.page-content > *:last-child {
  margin-bottom: 0;
}

.editor-content a,
.legal a {
  color: var(--green);
  text-decoration: underline;
}

.notice-panel {
  margin-bottom: 24px;
  padding: 14px 16px;
  border-left: 4px solid var(--ochre);
  background: #fff8ec;
}

.notice-panel.is-error {
  border-left-color: var(--danger);
  background: #fff0ee;
}

.inquiry-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 3px;
  color: var(--green-dark);
  background: #e3eee9;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 820px) {
  .primary-nav ul {
    display: grid;
    gap: 0;
  }

  .admin-bar .site-header {
    top: 46px;
  }
}

@media screen and (max-width: 782px) {
  html #wpadminbar {
    position: fixed;
  }
}
