:root {
  --green: #0d5a3c;
  --green-dark: #073927;
  --leaf: #dce9df;
  --bronze: #8a6632;
  --bronze-light: #b79251;
  --ink: #202421;
  --muted: #66716b;
  --line: #dfe5df;
  --paper: #fbfbf8;
  --mist: #f2f5f1;
  --white: #ffffff;
  --shadow: 0 16px 38px rgba(24, 35, 29, 0.12);
  --soft-shadow: 0 10px 26px rgba(24, 35, 29, 0.08);
  --radius: 8px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: var(--header-height);
  padding: 0 max(5vw, calc((100vw - 1180px) / 2));
  background: rgba(251, 251, 248, 0.92);
  border-bottom: 1px solid rgba(223, 229, 223, 0.7);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-weight: 800;
}

.brand-wordmark {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 124px;
  height: 46px;
  object-fit: contain;
  object-position: left center;
}

.site-footer .brand-logo {
  width: 148px;
  height: 64px;
}

.brand-mark {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

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

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

.site-nav a.is-active-page,
.site-footer a.is-active-page {
  color: var(--green);
}

.site-nav .nav-cta {
  display: none;
}

.header-phone {
  color: var(--green);
  font-size: 0.94rem;
  font-weight: 800;
  white-space: nowrap;
}

.home-rail {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--soft-shadow);
  transform: translateY(-50%);
}

.home-rail-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
}

.home-rail-text {
  font-size: 0.9rem;
  font-weight: 850;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  background: #18231d;
}

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

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 26, 18, 0.74), rgba(7, 26, 18, 0.34) 52%, rgba(7, 26, 18, 0.1)),
    linear-gradient(180deg, rgba(7, 26, 18, 0.15), rgba(7, 26, 18, 0.45));
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: heroDrift 12s ease-out forwards;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(760px, 90vw);
  min-height: 72svh;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 96px max(5vw, calc((100vw - 1180px) / 2));
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--bronze-light);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-copy h2,
.manufacturing-hero h2,
.quality-copy h2,
.contact-copy h2,
.location-copy h2,
.map-modal-header h2 {
  margin: 0;
  line-height: 1.08;
}

.hero h1 {
  font-size: 4.6rem;
  font-weight: 850;
}

.hero p {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  cursor: pointer;
}

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

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

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

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

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1120px, 90vw);
  margin: -44px auto 0;
  background: var(--line);
  box-shadow: var(--soft-shadow);
  position: relative;
  z-index: 2;
}

.metric {
  padding: 26px 22px;
  background: var(--white);
}

.metric strong {
  display: block;
  color: var(--green);
  font-size: 1.8rem;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section,
.location-section {
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 112px 0;
}

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

.product-section .section-heading {
  max-width: none;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.product-section .section-head-row > div:first-child {
  max-width: 760px;
}

.section-heading h2,
.split-copy h2,
.manufacturing-hero h2,
.quality-copy h2,
.contact-copy h2,
.location-copy h2 {
  font-size: 2.6rem;
}

.section-heading p,
.split-copy p,
.manufacturing-hero p,
.quality-copy p,
.contact-copy p,
.location-copy p {
  color: var(--muted);
}

.section-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.section-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-tools {
  display: grid;
  grid-template-columns: 1fr minmax(250px, 340px);
  gap: 20px;
  align-items: end;
  margin-bottom: 30px;
}

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

.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 13px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

.search-box {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.search-box input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.search-box input {
  min-height: 46px;
  padding: 0 14px;
}

.search-box input:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(13, 90, 60, 0.12);
}

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

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

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(13, 90, 60, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-card figure {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: var(--mist);
}

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

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

.product-chip {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.88);
  border-radius: var(--radius);
  font-size: 0.74rem;
  font-weight: 850;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.product-body h3 {
  margin: 0;
  min-height: 2.56em;
  font-size: 1.02rem;
  line-height: 1.28;
}

.product-body p {
  min-height: 4.5em;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.spec-list {
  display: grid;
  gap: 5px;
  margin: 14px 0 16px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.82rem;
}

.spec-list strong {
  color: var(--ink);
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  margin-top: auto;
  color: var(--green);
  background: var(--leaf);
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.product-body .card-link {
  width: 100%;
}

.article-meta .card-link {
  width: auto;
  margin-top: 0;
}

.empty-state {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 54px;
  align-items: center;
}

.split-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.split-media::before {
  position: absolute;
  inset: 18px auto auto 18px;
  z-index: 1;
  width: 44%;
  height: 6px;
  background: var(--bronze);
  content: "";
}

.split-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.finish-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
}

.finish-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.finish-note-mark {
  display: inline-block;
  width: 30px;
  height: 8px;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(32, 36, 33, 0.14);
}

.finish-note-mark--grain {
  background: #d9b664;
}

.finish-note-mark--brush {
  background: #8d918a;
}

.finish-note-mark--matte {
  background: #765437;
}

.finish-note-mark--tone {
  background: #252523;
}

.info-section {
  width: 100%;
  max-width: none;
  background: var(--mist);
}

.info-section .section-heading {
  max-width: 820px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.72);
  border-left: 4px solid var(--bronze);
}

.info-section > * {
  width: min(1180px, 90vw);
  margin-right: auto;
  margin-left: auto;
}

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

.article-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.article-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.article-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--mist);
}

.article-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.article-card span {
  color: var(--bronze);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 18px 0 12px;
  font-size: 1.12rem;
  line-height: 1.35;
}

.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  color: var(--muted);
  font-size: 0.82rem;
}

.article-meta .card-link {
  margin-top: 0;
}

.manufacturing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.8fr);
  gap: 42px;
  align-items: center;
  margin-bottom: 38px;
}

.manufacturing-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

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

.process-card {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: #1f2b24;
}

.process-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 420ms ease, opacity 420ms ease;
}

.process-card:hover img {
  opacity: 0.9;
  transform: scale(1.06);
}

.process-card h3 {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-index {
  position: absolute;
  top: 12px;
  left: 14px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.quality-row {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
  margin-top: 52px;
  padding: 0 0 32px;
}

.quality-media {
  overflow: hidden;
  border-radius: var(--radius);
}

.quality-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.base-address {
  display: grid;
  grid-template-columns: minmax(210px, 0.55fr) minmax(0, 1.1fr) minmax(220px, 0.7fr);
  gap: 32px;
  align-items: center;
  margin-top: 54px;
  padding: 0;
}

.base-address h2,
.base-address p {
  margin: 0;
}

.base-address h2 {
  font-size: 1.8rem;
}

.base-address > p {
  color: var(--muted);
  font-size: 1.02rem;
}

.base-address-media {
  overflow: hidden;
  border-radius: var(--radius);
}

.base-address-media img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.certification-section,
.media-gallery-section,
.shipping-section {
  padding-top: 74px;
}

.manufacturing-shell {
  gap: 34px;
}

.manufacturing-summary {
  padding: 30px 34px 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.manufacturing-summary .quality-row,
.manufacturing-summary .base-address {
  margin-top: 0;
}

.manufacturing-summary .base-address {
  padding-top: 0;
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.certificate-card,
.media-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  cursor: zoom-in;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.certificate-card:hover,
.certificate-card:focus-visible,
.media-card:hover,
.media-card:focus-visible {
  border-color: rgba(13, 90, 60, 0.36);
  box-shadow: var(--shadow);
  outline: none;
  transform: translateY(-3px);
}

.certificate-card img {
  width: 100%;
  height: 210px;
  padding: 12px;
  object-fit: contain;
  background: #f6f7f4;
}

.certificate-card span,
.media-card span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 10px 12px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

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

.team-card {
  padding: 20px 16px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.team-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.team-card img {
  width: 112px;
  height: 112px;
  margin: 0 auto 14px;
  object-fit: cover;
  border: 3px solid var(--leaf);
  border-radius: 50%;
}

.team-card h3 {
  margin: 0;
  font-size: 1.06rem;
}

.team-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.team-card a {
  display: inline-block;
  margin-top: 4px;
  color: var(--green);
  font-size: 0.88rem;
  word-break: break-word;
}

.team-avatar {
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  margin: 0 auto 14px;
  color: var(--green-dark);
  font-size: 1.2rem;
  font-weight: 900;
  border: 3px solid var(--leaf);
  border-radius: 50%;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.88fr);
  gap: 54px;
  align-items: stretch;
}

.contact-copy {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.contact-copy img {
  width: 100%;
  margin-top: 26px;
  aspect-ratio: 4 / 3;
  flex: 1;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.required-mark {
  color: #c52f2f;
  font-size: 1rem;
}

.contact-form input {
  min-height: 46px;
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 136px;
  padding: 12px;
  resize: vertical;
}

.full-field,
.contact-form .button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 24px;
  margin: -4px 0 0;
  color: var(--green);
  font-size: 0.92rem;
}

.form-status.is-error {
  color: #a82424;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding-top: 24px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-weight: 850;
}

.address-stack {
  display: grid;
  gap: 4px;
}

.address-stack p {
  margin: 0;
}

.address-stack {
  line-height: 1.8;
}

.showroom-address {
  margin-top: 14px;
  line-height: 1.8;
}

.showroom-address strong {
  color: var(--ink);
}

.map-frame {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  cursor: zoom-in;
}

.map-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 520ms ease;
}

.map-canvas {
  position: relative;
  width: 100%;
  height: 100%;
  transform-origin: center;
}

.map-frame:hover img,
.map-frame:focus-visible img {
  transform: scale(1.12);
}

.map-frame:focus-visible {
  outline: 4px solid rgba(13, 90, 60, 0.18);
  outline-offset: 4px;
}

.map-pin {
  position: absolute;
  top: 55%;
  left: 54%;
  padding: 8px 10px;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 0 0 0 rgba(13, 90, 60, 0.38);
  transform: translate(-50%, -50%);
  animation: pinPulse 2.4s ease-out infinite;
}

.map-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr;
  gap: 38px;
  width: min(1180px, 90vw);
  margin: 0 auto;
  padding: 56px 0 64px;
  color: var(--muted);
  border-top: 0;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer nav,
.site-footer address {
  display: grid;
  gap: 9px;
  font-style: normal;
}

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

.footer-tagline {
  margin-top: 4px;
  color: var(--green-dark);
  font-weight: 850;
}

.brand-mark-section {
  width: min(1180px, 90vw);
  margin: 42px auto 0;
  padding: 34px 0 28px;
  border-top: 1px solid var(--line);
}

.brand-mark-inner > .eyebrow {
  margin-bottom: 20px;
}

.brand-mark-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  align-items: center;
}

.brand-mark-item {
  display: grid;
  height: 68px;
  place-items: center;
  overflow: hidden;
}

.brand-mark-item img {
  width: 100%;
  height: 68px;
  object-fit: contain;
}

.gallery-tabs {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 22px;
  padding: 5px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.gallery-tabs .filter-button {
  border: 0;
}

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

.media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-more,
.shipping-more {
  display: flex;
  margin: 26px auto 0;
}

.gallery-more[hidden],
.shipping-more[hidden] {
  display: none;
}

.media-dialog {
  width: min(1040px, 94vw);
  max-height: 92vh;
  padding: 0;
  overflow: hidden;
  background: #111713;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.media-dialog::backdrop {
  background: rgba(4, 13, 9, 0.76);
  backdrop-filter: blur(5px);
}

.media-dialog figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  max-height: 92vh;
  margin: 0;
}

.media-dialog img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.media-dialog figcaption {
  padding: 12px 56px 14px 18px;
  color: var(--white);
  background: #111713;
  font-size: 0.88rem;
  font-weight: 750;
}

.media-dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  box-shadow: var(--soft-shadow);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.product-dialog,
.article-dialog {
  width: min(940px, 92vw);
  max-height: 90vh;
  padding: 0;
  overflow: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.product-dialog::backdrop,
.article-dialog::backdrop {
  background: rgba(4, 13, 9, 0.62);
  backdrop-filter: blur(4px);
}

.dialog-close {
  position: sticky;
  top: 14px;
  z-index: 5;
  float: right;
  min-height: 40px;
  margin: 14px 14px 0 0;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
  cursor: pointer;
}

.dialog-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.92fr);
  gap: 28px;
  padding: 28px;
}

.dialog-gallery {
  min-width: 0;
}

.dialog-gallery-main {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--mist);
  border-radius: var(--radius);
}

.dialog-gallery-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 180ms ease;
}

.dialog-gallery-main img.is-active {
  opacity: 1;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(223, 229, 223, 0.9);
  border-radius: 50%;
  box-shadow: var(--soft-shadow);
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  color: var(--green);
  background: var(--white);
}

.gallery-prev {
  left: 12px;
}

.gallery-next {
  right: 12px;
}

.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.gallery-thumb {
  padding: 0;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--mist);
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-thumb.is-active,
.gallery-thumb:hover,
.gallery-thumb:focus-visible {
  border-color: var(--green);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-count {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.8rem;
}

.dialog-product h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.15;
}

.dialog-product p {
  color: var(--muted);
}

.detail-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  font-size: 0.92rem;
}

.detail-table th,
.detail-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.detail-table th {
  width: 34%;
  color: var(--muted);
  font-weight: 850;
}

.map-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4vw;
  background: rgba(4, 13, 9, 0.68);
  backdrop-filter: blur(5px);
}

.map-modal.is-open {
  display: flex;
}

.map-modal-panel {
  width: min(1120px, 96vw);
  max-height: 92vh;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.map-modal-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.map-modal-header h2 {
  font-size: 1.4rem;
}

.map-modal-address {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.map-modal-header .dialog-close {
  position: static;
  margin: 0;
  float: none;
}

.map-stage {
  height: min(62vh, 640px);
  overflow: hidden;
  background: var(--mist);
  cursor: grab;
  touch-action: none;
}

.map-stage.is-dragging {
  cursor: grabbing;
}

.map-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  pointer-events: none;
}

.map-stage .map-canvas {
  width: 100%;
  height: 100%;
}

.map-pointer {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 8px;
  transform: translate(-50%, -100%);
  pointer-events: none;
}

.map-pointer-mark {
  position: relative;
  width: 18px;
  height: 18px;
  margin: 0 auto;
  background: #d92f2f;
  border: 3px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(217, 47, 47, 0.28);
  animation: pointerPulse 2.6s ease-out infinite;
}

.map-pointer-mark::after {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 0;
  height: 0;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-top: 12px solid #d92f2f;
  content: "";
  transform: translateX(-50%);
}

.map-pointer-label {
  padding: 7px 10px;
  color: var(--white);
  background: rgba(217, 47, 47, 0.95);
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 850;
  white-space: nowrap;
}

.map-pointer--preview {
  z-index: 1;
}

.map-pointer--modal {
  z-index: 2;
}

@keyframes pointerPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(217, 47, 47, 0.4);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(217, 47, 47, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(217, 47, 47, 0);
  }
}

.map-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 22px 20px;
  border-top: 1px solid var(--line);
}

.map-controls label {
  display: flex;
  min-width: min(380px, 100%);
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 850;
}

.map-controls input {
  width: 100%;
  accent-color: var(--green);
}

.catalog-panel {
  display: grid;
  gap: 26px;
}

.section-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.info-hub {
  display: grid;
  gap: 30px;
}

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

.info-hub-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.info-hub-card:hover,
.info-hub-card:focus-visible {
  border-color: rgba(13, 90, 60, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.info-hub-card h3 {
  margin: 14px 0 10px;
  font-size: 1.42rem;
  line-height: 1.2;
}

.info-hub-card p {
  margin: 0;
  color: var(--muted);
}

.info-hub-meta {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 18px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 700;
}

.catalog-header {
  max-width: 760px;
}

.catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.catalog-copy {
  display: grid;
}

.category-copy-card {
  max-width: 760px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.category-copy-title {
  margin: 0 0 6px;
  color: var(--green-dark);
  font-weight: 900;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(260px, 340px);
  gap: 18px;
  align-items: end;
}

.catalog-toolbar--info {
  grid-template-columns: 1fr auto;
}

.catalog-filter-block {
  display: grid;
  gap: 10px;
}

.filter-title {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

.search-box.catalog-search input {
  background: var(--white);
}

.catalog-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.catalog-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.color-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.load-more {
  justify-self: start;
}

.article-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1fr);
  gap: 26px;
  padding: 28px;
}

.article-detail img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.article-detail h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.12;
}

.article-detail-meta {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.company-shell,
.manufacturing-shell {
  display: grid;
  gap: 26px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.03);
  }
}

@keyframes pinPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 90, 60, 0.4);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(13, 90, 60, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(13, 90, 60, 0);
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: inline-block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    z-index: 110;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 14px 5vw 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--soft-shadow);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav .nav-cta {
    display: inline-flex;
    width: fit-content;
    margin-top: 14px;
    padding: 10px 14px;
    color: var(--white);
    background: var(--green);
    border: 0;
    border-radius: var(--radius);
  }

  .header-phone {
    justify-self: end;
  }

  .home-rail {
    top: auto;
    bottom: 18px;
    right: 12px;
    left: auto;
    transform: none;
  }

  .product-grid,
  .article-grid,
  .process-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .brand-mark-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-tools,
  .manufacturing-hero,
  .quality-row,
  .contact-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar--info {
    grid-template-columns: 1fr;
  }

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

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

  body {
    font-size: 15px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    min-height: var(--header-height);
  }

  .nav-toggle {
    grid-column: 2;
  }

  .header-phone {
    display: none;
  }

  .header-phone {
    font-size: 0.82rem;
  }

  .home-rail {
    padding: 10px 11px;
  }

  .hero,
  .hero-content {
    min-height: 68svh;
  }

  .hero-content {
    width: min(94vw, 640px);
    padding: 54px 0 76px 5vw;
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .metrics {
    grid-template-columns: repeat(2, 1fr);
    width: 92vw;
    margin-top: -26px;
  }

  .metric {
    padding: 20px 16px;
  }

  .metric strong {
    font-size: 1.45rem;
  }

  .section,
  .location-section {
    width: 92vw;
    padding: 78px 0;
  }

  .section-head-row {
    align-items: start;
  }

  .section-heading h2,
  .split-copy h2,
  .manufacturing-hero h2,
  .quality-copy h2,
  .contact-copy h2,
  .location-copy h2 {
    font-size: 2rem;
  }

  .product-tools {
    gap: 16px;
  }

  .filter-group {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .filter-button {
    flex: 0 0 auto;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .catalog-panel {
    gap: 20px;
  }

  .info-hub-grid {
    grid-template-columns: 1fr;
  }

  .info-section .section-heading {
    padding: 22px;
  }

  .catalog-tabs,
  .catalog-toolbar,
  .catalog-toolbar--info {
    grid-template-columns: 1fr;
  }

  .quality-row,
  .contact-form {
    padding: 22px;
  }

  .quality-row {
    margin-top: 36px;
  }

  .manufacturing-summary .quality-row {
    margin-top: 0;
  }

  .base-address {
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

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

  .team-avatar,
  .team-card img {
    width: 96px;
    height: 96px;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

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

  .map-modal-header {
    align-items: stretch;
    flex-direction: column;
  }

  .map-stage {
    height: 54vh;
  }

  .map-pointer-label {
    font-size: 0.74rem;
  }
}

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

  .home-rail {
    right: 10px;
    left: auto;
    bottom: 12px;
    gap: 8px;
    padding: 9px 10px;
  }

  .hero-actions {
    display: grid;
  }

  .metrics,
  .product-grid,
  .article-grid,
  .process-grid,
  .team-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .certificate-grid,
  .brand-mark-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-mark-grid {
    gap: 12px;
  }

  .brand-mark-item,
  .brand-mark-item img {
    height: 54px;
  }

  .brand-mark-item img {
    width: 86%;
    margin: 0 auto;
  }

  .certificate-card img {
    height: 180px;
  }

  .brand-mark-section {
    margin-top: 28px;
  }

  .manufacturing-summary {
    padding: 22px 18px 24px;
  }

  .site-footer .brand-logo {
    width: 110px;
    height: 48px;
  }

  .product-card figure {
    aspect-ratio: 16 / 10;
  }

  .process-card,
  .process-card img {
    min-height: 0;
  }

  .process-card {
    aspect-ratio: 16 / 10;
  }

  .site-footer {
    gap: 24px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
