:root {
  --ink: #1c2323;
  --muted: #66706c;
  --line: #d9d3c8;
  --paper: #fbfaf6;
  --ivory: #f0ebe1;
  --clay: #a45d43;
  --forest: #24433d;
  --blue: #1f5d78;
  --gold: #c59a55;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(28, 35, 35, 0.12);
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Regular.ttf") format("truetype"), local("Poppins Regular"), local("Poppins");
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Bold.ttf") format("truetype"), local("Poppins Bold"), local("Poppins");
  font-weight: 700;
  font-style: normal;
  font-display: optional;
}

* {
  box-sizing: border-box;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(217, 211, 200, 0.75);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--forest);
  border-radius: 50%;
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  font-weight: 700;
}

.brand strong,
.footer-brand {
  display: block;
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.1;
  white-space: nowrap;
}

.brand > span:last-child {
  min-width: 0;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: #394340;
  font-size: 14px;
  font-weight: 600;
}

.nav-item {
  position: relative;
  padding: 26px 0;
}

.main-nav a,
.text-link {
  position: relative;
}

.main-nav a::after,
.text-link::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 2px;
  content: "";
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
}

.mega-menu {
  position: absolute;
  top: calc(100% - 4px);
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 24px;
  min-width: 420px;
  max-width: min(900px, calc(100vw - 36px));
  padding: 22px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mega-products {
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  min-width: min(920px, calc(100vw - 36px));
}

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

.mega-column {
  display: grid;
  align-content: start;
  gap: 8px;
}

.mega-column strong {
  margin-bottom: 4px;
  color: var(--clay);
  font-size: 12px;
  text-transform: uppercase;
}

.mega-column a {
  color: #33413d;
  font-size: 13px;
  font-weight: 600;
}

.mega-column a::after {
  display: none;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border: 1px solid var(--forest);
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary {
  color: var(--white);
  background: var(--forest);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.62);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(36, 67, 61, 0.18);
}

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

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 76px));
  display: grid;
  align-items: end;
  padding: clamp(46px, 8vw, 104px) clamp(18px, 5vw, 74px);
  overflow: hidden;
}

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

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

.hero::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(10, 17, 16, 0.76), rgba(10, 17, 16, 0.34) 48%, rgba(10, 17, 16, 0.06));
}

.hero-copy {
  max-width: 760px;
  color: var(--white);
}

.line-icon {
  display: inline-grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  color: var(--forest);
  background: #f6f2ea;
  border: 1px solid #e3d9c8;
  border-radius: 8px;
}

.line-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(34px, 4.8vw, 58px);
}

h2 {
  font-size: clamp(24px, 3vw, 36px);
}

h3 {
  font-size: 20px;
}

h4 {
  margin: 0;
  color: inherit;
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
}

h5 {
  margin: 0;
  color: inherit;
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

h6 {
  margin: 0;
  color: inherit;
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  margin: 0 0 20px;
}

.lead {
  max-width: 720px;
  margin-top: 20px;
  color: inherit;
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  gap: 10px;
  margin-top: 32px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  font-size: 13px;
}

.section,
.split-section,
.cta-section,
.detail-hero,
.article-detail,
.breadcrumbs {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section {
  padding: clamp(64px, 8vw, 108px) 0;
}

.section.compact-section {
  padding: clamp(42px, 6vw, 72px) 0;
}

.blog-feature {
  position: relative;
  width: 100%;
  padding: clamp(70px, 8vw, 112px) clamp(18px, 5vw, 74px);
  background: #efe8dc;
  margin-bottom: clamp(76px, 8vw, 124px);
}

.blog-feature .section-heading,
.blog-feature .card-grid {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.intro-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
  align-items: end;
  border-bottom: 1px solid var(--line);
}

.intro-band p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-heading.stacked,
.section-heading.compact {
  display: block;
}

.section-heading.compact {
  margin-bottom: 16px;
}

.section-heading h2 {
  max-width: 760px;
}

.card-grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(217, 211, 200, 0.78);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(28, 35, 35, 0.07);
}

.card-image {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--ivory);
}

.project-card .card-image {
  aspect-ratio: 4 / 3;
}

.article-card .card-image {
  aspect-ratio: 5 / 4;
}

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

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

.card-body {
  padding: 22px;
}

.card-body h2 {
  margin-bottom: 12px;
  font-size: 20px;
}

.card-body p:not(.tag) {
  color: var(--muted);
}

.category-card .card-image {
  aspect-ratio: 4 / 3;
}

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

.trust-metrics div {
  min-height: 132px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-metrics .line-icon,
.why-grid .line-icon,
.process-grid .line-icon {
  width: 60px;
  height: 60px;
}

.trust-metrics strong {
  display: block;
  margin-bottom: 8px;
  color: var(--forest);
  font-size: 19px;
  line-height: 1.15;
}

.trust-metrics span {
  color: var(--muted);
  font-size: 13px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -2px 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.article-meta a {
  color: var(--forest);
  font-weight: 700;
}

.tag {
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  color: var(--forest);
  font-weight: 700;
}

.capability-grid,
.facility-tags,
.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.capability-grid {
  margin: 24px 0;
}

.capability-grid a,
.facility-tags a,
.link-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
}

.facility-tags {
  margin-top: 24px;
}

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

.solution-grid a {
  position: relative;
  min-height: 0;
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.solution-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 260ms ease, opacity 260ms ease;
}

.solution-grid a:hover img {
  opacity: 0.92;
  transform: scale(1.04);
}

.solution-grid span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}

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

.why-grid .section-heading {
  grid-column: 1 / -1;
}

.why-grid article {
  min-height: 220px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.why-grid .line-icon {
  color: var(--clay);
}

.why-grid h3 {
  margin-bottom: 12px;
}

.why-grid p {
  color: var(--muted);
  font-size: 15px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(62px, 8vw, 110px) 0;
}

.split-section.reverse {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.split-section img {
  width: 100%;
  height: min(620px, 70vh);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-section p,
.detail-grid p {
  color: var(--muted);
  font-size: 17px;
}

.metric-grid,
.value-grid,
.process-grid {
  display: grid;
  gap: 16px;
}

.metric-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.metric-grid div,
.value-grid div,
.process-grid div,
.contact-info {
  min-width: 0;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric-grid strong {
  display: block;
  color: var(--clay);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.metric-grid span {
  color: var(--muted);
  font-size: 13px;
}

.process-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

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

.process-grid h3 {
  font-size: 17px;
  line-height: 1.2;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(64px, 8vw, 110px);
  padding: clamp(34px, 5vw, 56px);
  color: var(--white);
  background: var(--forest);
  border-radius: 8px;
}

.cta-section p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.cta-section .button.primary {
  color: var(--forest);
  background: var(--white);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.button.ghost.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.page-hero {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
  padding: clamp(52px, 8vw, 92px) clamp(18px, 5vw, 74px);
  color: var(--white);
  overflow: hidden;
}

.page-hero.compact {
  min-height: 55vh;
}

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

.page-hero > div {
  width: min(860px, 100%);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-row button {
  min-height: 38px;
  padding: 8px 14px;
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-weight: 700;
  cursor: pointer;
}

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

.taxonomy-section {
  display: grid;
  gap: 34px;
}

.taxonomy-group {
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.compact-cloud a {
  border-radius: 6px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding: 22px 0;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumbs a {
  color: var(--forest);
  font-weight: 700;
}

.breadcrumbs + .page-hero {
  margin-top: 0;
}

.breadcrumbs + .detail-hero,
.breadcrumbs + .article-detail,
.breadcrumbs + .author-hero {
  padding-top: clamp(24px, 4vw, 54px);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: clamp(42px, 7vw, 88px) 0;
}

.detail-hero img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.detail-hero .lead {
  color: var(--muted);
}

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

.hero-bullets li::before {
  content: "";
  color: var(--clay);
  font-weight: 700;
}

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

.product-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.spec-section,
.project-format,
.custom-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.spec-section > div,
.project-format > div,
.custom-service-grid > div,
.related-section {
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.spec-table {
  width: 100%;
  margin-top: 18px;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.spec-table th,
.spec-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #eee6da;
  text-align: left;
  vertical-align: top;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.spec-table th {
  width: 34%;
  color: var(--forest);
  background: #f6f2ea;
}

.number-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.detail-grid,
.contact-grid,
.contact-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  padding-top: 24px;
}

.detail-grid > div,
.inquiry-panel {
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--forest);
  border-radius: 50%;
}

.check-list li::after {
  position: absolute;
  left: 6px;
  top: 7px;
  width: 6px;
  height: 3px;
  content: "";
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}

.inquiry-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
  margin-bottom: clamp(72px, 8vw, 120px);
}

.inquiry-form,
.form-grid {
  display: grid;
  gap: 14px;
}

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

label {
  display: grid;
  gap: 7px;
  color: #34413e;
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(31, 93, 120, 0.22);
  border-color: var(--blue);
}

input[type="file"] {
  padding: 9px 12px;
}

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

.contact-grid {
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info a {
  color: var(--forest);
  font-weight: 700;
}

.contact-section {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(26px, 4vw, 46px);
  align-items: stretch;
  margin-bottom: clamp(72px, 8vw, 120px);
  padding-bottom: clamp(40px, 5vw, 72px);
}

.contact-copy,
.contact-form-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(28, 35, 35, 0.08);
}

.contact-copy {
  display: grid;
  grid-template-rows: 320px 1fr;
}

.contact-copy > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-copy-body,
.contact-form-card {
  padding: clamp(26px, 4vw, 42px);
}

.contact-copy-body h2,
.contact-form-card h2 {
  margin-bottom: 16px;
  font-size: clamp(22px, 2.5vw, 30px);
}

.contact-copy-body p:not(.eyebrow),
.contact-form-card > p {
  color: var(--muted);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-method {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: #f8f5ee;
  border: 1px solid #e8dfd1;
  border-radius: 6px;
}

.contact-method span {
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-method strong {
  color: var(--forest);
  font-size: 17px;
  overflow-wrap: anywhere;
}

.contact-method small {
  color: var(--muted);
  font-size: 13px;
}

.map-box {
  display: grid;
  place-items: center;
  min-height: 120px;
  color: var(--muted);
  background: #ece6da;
  border: 1px dashed #cdbfaa;
  border-radius: 6px;
  font-weight: 700;
}

.contact-form-card .inquiry-form {
  margin-top: 24px;
}

.oem-inquiry {
  margin-bottom: clamp(78px, 8vw, 124px);
}

.faq-section {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list summary {
  color: var(--forest);
  font-weight: 700;
  cursor: pointer;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

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

.value-grid h2,
.process-grid h2 {
  margin-bottom: 10px;
  font-size: 18px;
}

.value-grid p,
.process-grid p {
  color: var(--muted);
}

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

.process-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--clay);
  border-radius: 50%;
  font-weight: 700;
}

.process-grid .line-icon + span {
  margin-top: 2px;
}

.article-detail {
  max-width: 860px;
  padding: clamp(42px, 7vw, 88px) 0;
}

.blog-detail-page .site-footer {
  margin-top: clamp(72px, 8vw, 120px);
}

.article-inquiry {
  margin-bottom: clamp(72px, 8vw, 120px);
}

.article-seo {
  max-width: 1180px;
  width: min(1180px, calc(100% - 36px));
}

.article-header {
  display: grid;
  gap: 18px;
}

.article-header > img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-header h1 {
  font-size: clamp(30px, 3.8vw, 48px);
  max-width: 860px;
}

.article-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.article-kicker span,
.article-kicker time {
  padding: 6px 10px;
  background: #f4efe5;
  border-radius: 99px;
}

.author-mini {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.author-mini img,
.author-card img {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
}

.author-mini strong,
.author-card h2 {
  display: block;
  margin: 0;
  font-size: 22px;
}

.author-mini small {
  color: var(--muted);
}

.article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 30px;
  margin-top: 32px;
}

.article-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

.toc {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.toc a {
  color: var(--forest);
  font-size: 14px;
}

.toc-level-3 {
  padding-left: 14px;
  color: var(--muted);
}

.article-footer {
  display: grid;
  gap: 24px;
  margin-top: 36px;
}

.author-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.author-card h2 a {
  color: var(--forest);
}

.expertise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.expertise-list span {
  padding: 6px 10px;
  color: var(--forest);
  background: #edf2ed;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
}

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

.post-nav a,
.post-nav > span {
  display: grid;
  gap: 6px;
  min-height: 110px;
  padding: 16px;
  color: var(--forest);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.post-nav span {
  color: var(--muted);
}

.author-hero {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(46px, 7vw, 80px) 0;
}

.author-hero > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.author-hero h1 {
  font-size: clamp(28px, 3.4vw, 42px);
}

.author-hero p:not(.eyebrow) {
  color: var(--muted);
}

.article-date {
  color: var(--muted);
  font-size: 13px;
}

.article-detail > img {
  width: 100%;
  max-height: 520px;
  margin-bottom: 34px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.rich-text {
  color: #38423f;
  font-size: 18px;
  line-height: 1.82;
}

.rich-text p {
  margin-bottom: 20px;
}

.rich-text h2,
.rich-text h3 {
  margin: 34px 0 14px;
}

.rich-text ul,
.rich-text ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.rich-text li + li {
  margin-top: 8px;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: grid;
  gap: 8px;
}

.floating-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  color: var(--white);
  background: var(--clay);
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(28, 35, 35, 0.18);
  font-size: 13px;
  font-weight: 700;
}

.floating-cta .line-icon {
  width: 52px;
  height: 52px;
  margin: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

.floating-cta .line-icon svg {
  width: 29px;
  height: 29px;
  stroke-width: 2.6;
}

.floating-cta a:last-child {
  background: var(--forest);
}

.site-footer {
  padding: clamp(48px, 7vw, 76px) clamp(18px, 5vw, 74px) 24px;
  color: rgba(255, 255, 255, 0.76);
  background: #172321;
  line-height: 1.72;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: 34px;
}

.footer-brand,
.site-footer h2 {
  margin-bottom: 14px;
  color: var(--white);
}

.site-footer h2 {
  font-size: 18px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-button {
  display: inline-flex !important;
  width: fit-content;
  margin-top: 8px;
  padding: 10px 14px;
  color: var(--forest) !important;
  background: var(--white);
  border-radius: 4px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.open {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    display: grid;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .main-nav.open .nav-item {
    padding: 0;
  }

  .main-nav.open .nav-item > a {
    display: block;
  }

  .main-nav.open .mega-menu {
    position: static;
    display: none;
    min-width: 0;
    max-width: none;
    padding: 6px 10px 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav.open .nav-item:hover .mega-menu,
  .main-nav.open .nav-item:focus-within .mega-menu {
    display: grid;
    grid-template-columns: 1fr;
  }

  .main-nav.open a {
    padding: 13px 10px;
    border-bottom: 1px solid #eee8dc;
  }

  .main-nav.open a:last-child {
    border-bottom: 0;
  }

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

  .intro-band,
  .split-section,
  .split-section.reverse,
  .detail-hero,
  .inquiry-panel,
  .contact-grid,
  .contact-section,
  .article-layout,
  .author-hero,
  .detail-grid,
  .spec-section,
  .project-format,
  .custom-service-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.three,
  .card-grid.four,
  .value-grid,
  .process-grid,
  .process-grid.seven,
  .process-grid.five,
  .trust-metrics,
  .solution-grid,
  .why-grid,
  .product-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 21px;
  }

  .brand strong {
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand small {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero {
    min-height: 760px;
    padding: 48px 18px;
  }

  .hero::after,
  .page-hero::after {
    background: linear-gradient(180deg, rgba(10, 17, 16, 0.28), rgba(10, 17, 16, 0.78));
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

  .section-heading,
  .cta-section,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .card-grid.two,
  .card-grid.three,
  .card-grid.four,
    .metric-grid,
    .value-grid,
    .process-grid,
    .process-grid.seven,
    .process-grid.five,
    .trust-metrics,
    .solution-grid,
    .why-grid,
    .product-gallery,
    .form-grid,
    .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .article-sidebar {
    position: static;
  }

  .post-nav {
    grid-template-columns: 1fr;
  }

  .author-card {
    grid-template-columns: 1fr;
  }

  .floating-cta {
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: flex-end;
  }
}
