:root {
  --ink: #111111;
  --ink-soft: #262626;
  --muted: #66706b;
  --paper: #f7f9f7;
  --surface: #ffffff;
  --line: #dfe6e2;
  --accent: #1f8a70;
  --accent-dark: #12624e;
  --accent-soft: #e4f5ef;
  --cool: #eef5f4;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(17, 17, 17, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding-top: 75px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  transition: background 0.18s ease, border-color 0.18s ease, backdrop-filter 0.18s ease;
}

.site-header.nav-glass,
.site-header.nav-scrolled,
.site-header:has(.nav-dropdown:hover),
.site-header:has(.nav-dropdown:focus-within) {
  background: rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(18px) saturate(1.18);
}

.site-header.nav-glass .nav-links a,
.site-header.nav-glass .nav-parent,
.site-header.nav-scrolled .nav-links a,
.site-header.nav-scrolled .nav-parent {
  color: var(--ink-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
}

.nav-links a,
.nav-parent {
  color: var(--muted);
}

.nav-links a[aria-current="page"],
.nav-links a:hover,
.nav-parent:hover {
  color: var(--ink);
}

.nav-dropdown {
  position: relative;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  min-width: 180px;
  display: grid;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(1.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu a {
  border-radius: 6px;
  padding: 9px 10px;
  color: var(--ink-soft);
  white-space: nowrap;
}

.nav-menu a:hover {
  background: var(--cool);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 8px;
  padding: 9px 11px;
  color: var(--ink);
  font: inherit;
}

.section {
  padding: 88px 24px;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  font-size: 4.8rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.lead {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.16rem;
}

.small-lead {
  font-size: 0.98rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head .lead {
  max-width: 440px;
  margin-bottom: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 750;
}

.button.primary {
  color: #ffffff;
  background: var(--ink);
}

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

.button.accent {
  color: #ffffff;
  background: var(--accent);
  border-color: var(--accent);
}

.button:hover {
  transform: translateY(-1px);
}

.hero {
  min-height: 78vh;
  display: grid;
  align-items: center;
  padding: 72px 24px;
}

.home-hero {
  position: relative;
  min-height: 695px;
  display: grid;
  align-items: center;
  overflow: hidden;
  margin-top: -75px;
  padding: 170px 24px 86px;
  background: var(--ink);
}

.home-hero::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.62) 0%, rgba(17, 17, 17, 0.28) 45%, rgba(17, 17, 17, 0.08) 100%);
  content: "";
  pointer-events: none;
}

.home-hero-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  background-image: url("images/home-showroom.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.04) contrast(1.02);
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.88fr);
  gap: 56px;
  align-items: center;
}

.home-copy {
  color: #ffffff;
}

.home-copy .eyebrow {
  color: #9be0c8;
}

.home-copy h1 {
  max-width: 760px;
}

.home-copy .lead {
  color: rgba(255, 255, 255, 0.76);
}

.home-split-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.home-split-line span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.84rem;
  font-weight: 800;
}

.home-showcase {
  justify-self: center;
  width: min(100%, 520px);
}

.home-hero-content {
  position: relative;
  z-index: 1;
  width: min(620px, calc(100% - 48px));
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
  color: #ffffff;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  transform: translate(clamp(-150px, -10vw, -72px), 18px);
}

.home-hero-content h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: 3.55rem;
  line-height: 1.03;
}

.home-hero-content .lead {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
}

.elevated-carousel {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}

.elevated-carousel .media-caption {
  border-top-color: rgba(255, 255, 255, 0.13);
  background: #ffffff;
}

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

.hero-media,
.media-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

.product-carousel {
  position: relative;
}

.carousel-frame {
  position: relative;
  background: var(--cool);
}

.carousel-slide {
  display: none;
}

.carousel-slide.active {
  display: block;
}

.carousel-button {
  position: absolute;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 0 13px;
  color: #ffffff;
  background: rgba(17, 17, 17, 0.52);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.carousel-button:hover {
  background: rgba(17, 17, 17, 0.72);
}

.carousel-button.previous {
  left: 14px;
}

.carousel-button.next {
  right: 14px;
}

.carousel-dots {
  display: flex;
  gap: 7px;
  grid-column: 1 / -1;
}

.carousel-dots button {
  width: 28px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: #cfd8d4;
  cursor: pointer;
}

.carousel-dots button[aria-current="true"] {
  background: var(--accent);
}

.media-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.media-caption {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-top: 1px solid var(--line);
}

.media-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 800;
}

.grid-2,
.grid-3,
.grid-4,
.image-grid {
  display: grid;
  gap: 20px;
}

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

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px;
}

.card.feature {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.category-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--surface);
  overflow: hidden;
}

.category-card img {
  width: calc(100% + 36px);
  max-width: none;
  height: 210px;
  margin: -18px -18px 18px;
  object-fit: cover;
  background: var(--cool);
}

.category-card.active {
  border-color: rgba(31, 138, 112, 0.45);
  box-shadow: var(--shadow);
}

.category-card h3 {
  margin-bottom: 10px;
}

.category-card p {
  margin-bottom: 0;
}

.product-title-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 40px;
  align-items: end;
}

.product-hero-clean {
  padding-bottom: 36px;
}

.product-index-section {
  padding: 18px 24px 36px;
}

.product-index-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.product-index-panel a {
  display: grid;
  gap: 6px;
  min-height: 132px;
  border-right: 1px solid var(--line);
  padding: 22px;
}

.product-index-panel a:last-child {
  border-right: 0;
}

.product-index-panel a:hover {
  background: var(--cool);
}

.product-index-panel span {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.product-index-panel strong {
  font-size: 1.35rem;
}

.product-index-panel em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.92rem;
}

.product-lines-section {
  padding-top: 36px;
}

.product-line-stack {
  display: grid;
  gap: 18px;
}

.product-line {
  display: grid;
  grid-template-columns: 54px minmax(0, 0.9fr) minmax(260px, 0.72fr);
  gap: 26px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 32px 0;
}

.product-line.featured {
  min-height: 520px;
}

.product-line:last-child {
  border-bottom: 1px solid var(--line);
}

.product-line.minimal {
  grid-template-columns: 54px 1fr;
}

.product-line-index {
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 900;
}

.product-line-copy h2 {
  max-width: 680px;
  margin-bottom: 18px;
  font-size: 2.55rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.product-spec-list {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.product-spec-list li {
  position: relative;
  padding-left: 16px;
}

.product-spec-list li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.product-spec-list.compact {
  max-width: 760px;
}

.product-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--muted);
  background: var(--surface);
  font-size: 0.82rem;
  font-weight: 750;
}

.product-line-media {
  display: grid;
  gap: 12px;
}

.product-auto-carousel {
  align-self: stretch;
}

.product-auto-carousel .carousel-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.product-auto-carousel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.product-auto-carousel .carousel-dots {
  justify-content: center;
  margin-top: 4px;
}

.product-auto-carousel .carousel-dots button {
  width: 22px;
  height: 5px;
}

.product-line-media.single img,
.product-line-media.pair img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  object-fit: cover;
}

.product-line-media.single img {
  aspect-ratio: 4 / 5;
  object-position: center;
}

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

.product-line-media.pair img {
  aspect-ratio: 4 / 5;
}

.contact-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.contact-choice {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  background: var(--surface);
}

.contact-choice:hover {
  border-color: rgba(31, 138, 112, 0.5);
  box-shadow: var(--shadow);
}

.contact-choice p {
  margin-bottom: 0;
  color: var(--muted);
}

.about-hero-simple {
  padding-bottom: 40px;
}

.about-title-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.52fr);
  gap: 46px;
  align-items: end;
}

.about-capabilities {
  padding-top: 40px;
}

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

.capability-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 0.85fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.capability-row span {
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 900;
}

.capability-row h2 {
  margin-bottom: 0;
  font-size: 2.35rem;
}

.capability-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.about-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.about-service-grid article {
  display: grid;
  gap: 12px;
  min-height: 190px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px;
}

.about-service-grid article:nth-child(3n) {
  border-right: 0;
}

.about-service-grid article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.about-service-grid strong {
  font-size: 1.2rem;
}

.about-service-grid span {
  color: var(--muted);
}

.slim-card {
  min-height: 190px;
}

.card p,
.list p,
.footer p,
.muted {
  color: var(--muted);
}

.band {
  background: var(--ink);
  color: #ffffff;
}

.band .lead,
.band p,
.band .muted {
  color: rgba(255, 255, 255, 0.72);
}

.band .card {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.list-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}

.number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
}

.page-hero {
  padding: 86px 24px 56px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
}

.hero-split {
  align-items: center;
}

.logistics-hero {
  padding-bottom: 42px;
}

.hero-panel {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--ink);
}

.hero-panel img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.hero-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.02), rgba(17, 17, 17, 0.48));
}

.hero-panel-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-panel-caption span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 0 12px;
  color: #ffffff;
  background: rgba(17, 17, 17, 0.34);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.metric-strip div {
  display: grid;
  gap: 4px;
  padding: 22px;
  background: var(--surface);
}

.metric-strip strong {
  font-size: 2rem;
  line-height: 1;
}

.metric-strip span {
  color: var(--muted);
  font-size: 0.9rem;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 48px;
}

.story-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.story-copy p {
  margin: 0;
}

.service-card {
  min-height: 280px;
}

.service-card .pill {
  margin-bottom: 24px;
}

.workflow-split {
  align-items: start;
}

.timeline-list {
  margin-top: 0;
}

.timeline-list .list-item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.timeline-list .list-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.platform-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.platform-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--accent-dark);
  background: var(--surface);
  font-size: 0.86rem;
  font-weight: 800;
}

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

.proof-card {
  min-height: 230px;
}

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

.mini-gallery .feature-image img {
  aspect-ratio: 5 / 4;
}

.cta-band {
  padding-top: 42px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 42px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin-bottom: 0;
}

.feature-image {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}

.feature-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.feature-image.landscape img {
  aspect-ratio: 16 / 10;
}

.form {
  display: grid;
  gap: 16px;
}

.hidden-field {
  display: none;
}

.form label {
  display: grid;
  gap: 7px;
  font-weight: 700;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  display: none;
  border: 1px solid #b9ddcd;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--accent-dark);
  background: var(--accent-soft);
}

.form-note.visible {
  display: block;
}

.form-note.error {
  border-color: #e0b4b4;
  color: #8a1f1f;
  background: #fff1f1;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 42px 24px;
  background: #ffffff;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(160px, 0.4fr) minmax(160px, 0.4fr);
  gap: 28px;
  align-items: start;
}

.footer-grid h3 {
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.footer-grid a {
  display: block;
  color: var(--muted);
  margin-top: 8px;
}

.footer-grid a:hover {
  color: var(--ink);
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    inset: 75px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
    padding: 12px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px) saturate(1.18);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-dropdown {
    display: grid;
  }

  .nav-parent {
    padding: 12px;
  }

  .nav-menu {
    position: static;
    min-width: 0;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    margin-left: 12px;
    padding: 0 0 6px 10px;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu a {
    padding: 8px 10px;
    color: var(--muted);
  }

  .hero-grid,
  .home-hero-grid,
  .product-title-grid,
  .about-title-grid,
  .product-index-panel,
  .about-service-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .image-grid,
  .category-grid,
  .contact-choice-grid,
  .footer-grid,
  .metric-strip,
  .story-grid,
  .mini-gallery,
  .cta-panel,
  .split,
  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
    align-items: start;
  }

  .product-line,
  .product-line.minimal {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  .product-line-copy h2 {
    font-size: 2.1rem;
  }

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

  .product-index-panel a {
    min-height: 110px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-index-panel a:last-child {
    border-bottom: 0;
  }

  .about-service-grid article,
  .about-service-grid article:nth-child(3n),
  .about-service-grid article:nth-last-child(-n + 3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-service-grid article:last-child {
    border-bottom: 0;
  }

  .capability-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .capability-row h2 {
    font-size: 2rem;
  }

  .section {
    padding: 62px 20px;
  }

  .hero {
    min-height: auto;
    padding: 54px 20px;
  }

  .home-hero {
    min-height: auto;
    margin-top: -75px;
    padding: 130px 20px 58px;
  }

  .home-hero-content h1 {
    font-size: 2.7rem;
  }

  .home-hero-content {
    width: min(620px, 100%);
    transform: translateY(12px);
  }

  .home-showcase {
    justify-self: stretch;
    width: 100%;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-media img {
    height: 430px;
  }

  .hero-panel,
  .hero-panel img {
    min-height: 430px;
  }

  .story-grid,
  .cta-panel {
    gap: 28px;
  }

  .metric-strip {
    margin-top: 28px;
  }

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

  .cta-panel {
    padding: 30px;
  }

  .button {
    min-height: 42px;
    padding: 0 15px;
    font-size: 0.94rem;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-copy {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .nav {
    padding: 14px 18px;
  }

  .hero-media img {
    height: 360px;
  }

  .home-hero {
    min-height: 505px;
    margin-top: -75px;
    padding: 118px 20px 48px;
    background: var(--ink);
  }

  .home-hero::after {
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.58), rgba(17, 17, 17, 0.26));
  }

  .home-hero-backdrop {
    opacity: 0.88;
    background-position: center;
  }

  .home-hero-content h1 {
    font-size: 2.1rem;
  }

  .home-hero-content {
    transform: translateY(8px);
  }

  .home-hero-content .lead {
    font-size: 0.96rem;
  }

  .home-split-line {
    gap: 7px;
  }

  .home-split-line span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.76rem;
  }

  .category-card {
    min-height: auto;
  }

  .product-line-copy h2 {
    font-size: 1.85rem;
  }

  .product-tags {
    margin-bottom: 18px;
  }

  .hero-panel,
  .hero-panel img {
    min-height: 340px;
  }

  .metric-strip div {
    padding: 18px;
  }

  .metric-strip strong {
    font-size: 1.65rem;
  }

  .mini-gallery {
    gap: 10px;
  }

  .cta-panel {
    padding: 24px;
  }

  .button-row {
    gap: 9px;
    margin-top: 22px;
  }

  .button {
    width: fit-content;
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.88rem;
  }

  .page-hero .button-row {
    display: grid;
    justify-items: start;
  }

  .nav-toggle {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 0.9rem;
  }

  .carousel-button {
    min-height: 34px;
    padding: 0 10px;
    font-size: 0.75rem;
  }

  .media-caption {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
    font-size: 2.34rem;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 2rem;
  }
}

/* 2026 visual refresh */
:root {
  --ink: #11110f;
  --ink-soft: #24231f;
  --muted: #6f6a60;
  --paper: #f4f1ea;
  --surface: #fffdf8;
  --line: #ddd6c8;
  --accent: #276451;
  --accent-dark: #173f34;
  --accent-soft: #e6f1ea;
  --cool: #ebe6dc;
  --radius: 7px;
  --shadow: 0 26px 70px rgba(43, 38, 31, 0.1);
}

body {
  background:
    radial-gradient(circle at top left, rgba(39, 100, 81, 0.08), transparent 34rem),
    linear-gradient(180deg, #f8f5ee 0%, var(--paper) 56%, #f7f4ed 100%);
}

.site-header,
.site-header.nav-glass,
.site-header.nav-scrolled,
.site-header:has(.nav-dropdown:hover),
.site-header:has(.nav-dropdown:focus-within) {
  background: rgba(248, 245, 238, 0.72);
  border-bottom: 1px solid rgba(221, 214, 200, 0.58);
  backdrop-filter: blur(20px) saturate(1.15);
}

.nav {
  max-width: 1240px;
  padding: 14px 24px;
}

.brand-logo {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 12px 30px rgba(17, 17, 15, 0.16);
}

.nav-links {
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(221, 214, 200, 0.62);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.5);
}

.nav-links a,
.nav-parent {
  border-radius: 999px;
  padding: 8px 12px;
  color: rgba(36, 35, 31, 0.66);
  font-size: 0.88rem;
  font-weight: 720;
}

.nav-links a[aria-current="page"],
.nav-links a:hover,
.nav-parent:hover {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.92);
}

.nav-menu {
  top: calc(100% + 14px);
  border-color: rgba(221, 214, 200, 0.7);
  background: rgba(255, 253, 248, 0.84);
}

.section {
  padding-top: 96px;
  padding-bottom: 96px;
}

.container,
.footer-inner,
.nav {
  max-width: 1240px;
}

.eyebrow {
  color: var(--accent-dark);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 4rem);
  letter-spacing: -0.035em;
}

h3 {
  letter-spacing: -0.015em;
}

.lead {
  color: rgba(36, 35, 31, 0.68);
}

.button {
  min-height: 44px;
  border-color: rgba(17, 17, 15, 0.22);
  box-shadow: none;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.button.primary,
.button.accent {
  border-color: var(--ink);
  background: var(--ink);
}

.button.secondary {
  background: rgba(255, 253, 248, 0.42);
}

.button.secondary:hover {
  border-color: rgba(17, 17, 15, 0.45);
  background: rgba(255, 253, 248, 0.9);
}

.home-hero {
  min-height: 760px;
  padding-top: 190px;
  background: #15120f;
}

.home-hero::after {
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.72) 0%, rgba(17, 17, 15, 0.42) 45%, rgba(17, 17, 15, 0.08) 100%),
    linear-gradient(180deg, rgba(17, 17, 15, 0.22), rgba(17, 17, 15, 0.18));
}

.home-hero-backdrop {
  opacity: 1;
  filter: saturate(0.94) contrast(1.02);
  transform: scale(1.01);
}

.home-hero-content {
  width: min(680px, calc(100% - 48px));
  max-width: 680px;
  margin-left: max(24px, 7vw);
  transform: translateY(28px);
  text-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.home-hero-content h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 6vw, 6.1rem);
  line-height: 0.94;
}

.home-hero-content .lead {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.home-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.home-signals span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0 11px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 760;
  backdrop-filter: blur(12px);
}

.card,
.media-card,
.hero-media,
.feature-image,
.product-auto-carousel .carousel-frame,
.product-line-media.single img,
.product-line-media.pair img,
.product-index-panel,
.about-service-grid,
.metric-strip,
.contact-choice,
.cta-panel {
  border-color: rgba(221, 214, 200, 0.84);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: none;
}

.card,
.contact-choice,
.cta-panel {
  backdrop-filter: blur(6px);
}

.card.feature,
.service-card,
.proof-card,
.slim-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
}

.card.feature::before,
.service-card::before,
.proof-card::before,
.slim-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(39, 100, 81, 0));
  content: "";
}

.pill,
.number {
  border-color: rgba(39, 100, 81, 0.16);
  background: rgba(230, 241, 234, 0.72);
}

.band {
  background:
    radial-gradient(circle at top right, rgba(151, 190, 168, 0.16), transparent 34rem),
    #11110f;
}

.band .card {
  background: rgba(255, 255, 255, 0.055);
}

.product-hero-clean,
.about-hero-simple,
.contact-hero,
.page-hero {
  padding-top: 112px;
  padding-bottom: 42px;
}

.page-hero h1 {
  max-width: 780px;
  font-size: clamp(2.75rem, 5vw, 4.9rem);
  line-height: 0.98;
}

.product-title-grid,
.about-title-grid {
  align-items: center;
  border-bottom: 1px solid rgba(221, 214, 200, 0.86);
  padding-bottom: 36px;
}

.product-index-panel {
  border-radius: 0;
}

.product-index-panel a {
  min-height: 150px;
  transition: background 0.16s ease;
}

.product-index-panel strong {
  font-size: 1.55rem;
  letter-spacing: -0.025em;
}

.product-line {
  grid-template-columns: 64px minmax(0, 0.88fr) minmax(300px, 0.78fr);
  padding: 48px 0;
}

.product-line.featured {
  min-height: 610px;
}

.product-line-copy h2 {
  font-size: clamp(2.3rem, 3.6vw, 3.65rem);
}

.product-auto-carousel .carousel-frame {
  box-shadow: 0 26px 70px rgba(43, 38, 31, 0.1);
}

.product-auto-carousel img {
  aspect-ratio: 4 / 4.8;
}

.logistics-hero {
  padding-top: 116px;
}

.logistics-hero h1 {
  max-width: 620px;
}

.hero-panel {
  min-height: 560px;
  border-radius: 0;
}

.hero-panel img {
  min-height: 560px;
  filter: saturate(0.9) contrast(1.02);
}

.metric-strip {
  border-radius: 0;
}

.procurement-bridge {
  padding-top: 32px;
}

.procurement-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.1fr);
  gap: 44px;
  border-top: 1px solid rgba(221, 214, 200, 0.9);
  border-bottom: 1px solid rgba(221, 214, 200, 0.9);
  padding: 48px 0;
}

.procurement-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(221, 214, 200, 0.86);
}

.procurement-list article {
  display: grid;
  gap: 10px;
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 253, 248, 0.86);
}

.procurement-list span {
  color: var(--accent-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.procurement-list h3,
.procurement-list p {
  margin-bottom: 0;
}

.procurement-list p {
  color: var(--muted);
}

.about-service-grid,
.metric-strip,
.product-index-panel {
  background: rgba(221, 214, 200, 0.86);
}

.about-service-grid article,
.metric-strip div,
.product-index-panel a {
  background: rgba(255, 253, 248, 0.82);
}

.form input,
.form select,
.form textarea {
  border-color: rgba(221, 214, 200, 0.94);
  background: rgba(255, 253, 248, 0.9);
}

.footer {
  background: #11110f;
  border-top: 0;
}

.footer,
.footer p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.66);
}

.footer-grid h3,
.footer-grid a:hover {
  color: #ffffff;
}

@media (max-width: 900px) {
  .nav-links {
    border-radius: 12px;
    background: rgba(248, 245, 238, 0.92);
  }

  .nav-links a,
  .nav-parent {
    border-radius: 8px;
  }

  .home-hero-content {
    margin-left: 0;
    transform: translateY(12px);
  }

  .procurement-panel,
  .procurement-list {
    grid-template-columns: 1fr;
  }

  .product-line,
  .product-line.minimal {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .home-hero {
    min-height: 560px;
  }

  .home-hero-content h1 {
    font-size: 2.6rem;
  }

  .home-signals span {
    min-height: 29px;
    font-size: 0.74rem;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .product-index-section {
    padding-top: 20px;
  }

  .product-title-grid,
  .about-title-grid {
    padding-bottom: 22px;
  }

  .product-index-panel a,
  .procurement-list article {
    min-height: auto;
  }
}
