:root {
  --ink: #202722;
  --muted: #687168;
  --soft: #f7f5ef;
  --paper: #ffffff;
  --line: #e3e1d8;
  --green: #0d4c32;
  --green-soft: #edf3eb;
  --kraft: #b78b5c;
  --orange: #ff7900;
  --shadow: 0 18px 50px rgba(38, 45, 39, 0.09);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand img { width: clamp(180px, 19vw, 255px); height: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: #59625b;
  font-size: 15px;
  font-weight: 650;
}

.main-nav a { padding: 8px 0; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav .active { color: var(--green); border-color: var(--kraft); }

.nav-item { position: relative; }
.nav-parent::after {
  content: "▾";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 8px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--kraft);
  color: transparent;
  font-size: 0;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 4px 12px;
  width: min(560px, 90vw);
  padding: 18px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.industry-menu { width: min(460px, 90vw); }
.dropdown-menu a {
  padding: 10px 12px;
  color: #414a44;
  border: 0;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
}
.dropdown-menu a:hover { color: var(--green); background: var(--soft); }
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.main-nav .nav-cta {
  padding: 10px 16px;
  color: var(--paper);
  background: var(--green);
  border: 0;
  border-radius: 999px;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  padding: clamp(52px, 8vw, 108px) clamp(18px, 5vw, 76px) clamp(48px, 7vw, 92px);
  background: linear-gradient(115deg, #fbfaf6, #fff 58%, #f5f1e8);
}

.banner-hero {
  position: relative;
  display: flex;
  min-height: clamp(560px, 72vh, 760px);
  overflow: hidden;
  padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 76px);
  background: #f2eee6;
}

.banner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(12, 61, 39, 0.92) 0%, rgba(23, 82, 56, 0.78) 33%, rgba(42, 83, 63, 0.42) 62%, rgba(32, 39, 34, 0.1) 100%);
}

.banner-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-hero .hero-text {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.banner-hero .eyebrow { color: #d9f3ae; }
.banner-hero h1,
.banner-hero .lead { color: var(--paper); }
.banner-hero .lead { max-width: 760px; }
.banner-hero .button.primary { background: #005b32; border-color: #005b32; }
.banner-hero .button.secondary { color: #063d26; background: var(--paper); border-color: var(--paper); }

.hero-text { max-width: 760px; }

.eyebrow {
  margin-bottom: 14px;
  color: var(--kraft);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(42px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.12;
}

h3 { margin-bottom: 10px; color: var(--ink); font-size: 21px; line-height: 1.25; }

.lead {
  max-width: 760px;
  color: #4f5a52;
  font-size: clamp(18px, 2vw, 22px);
}

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

.button, button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--green);
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary, button { color: var(--paper); background: var(--green); }
.button.secondary { color: var(--green); background: var(--paper); }
.button.light { color: var(--green); background: var(--paper); border-color: var(--paper); }

.hero-photo {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-photo img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

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

.trust-strip div { padding: 26px clamp(18px, 4vw, 56px); background: var(--paper); }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { color: var(--ink); font-size: 18px; }
.trust-strip span { margin-top: 8px; color: var(--muted); font-size: 15px; }

.section { padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 76px); }

.section-heading { max-width: 900px; margin-bottom: 34px; }
.split-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; max-width: none; }
.split-heading > p { max-width: 520px; color: var(--muted); font-size: 17px; }
.centered { margin-inline: auto; text-align: center; }
.centered p:not(.eyebrow) { margin-inline: auto; max-width: 720px; color: var(--muted); }

.pale-section { background: var(--soft); }

.photo-card-grid { display: grid; gap: 20px; }
.photo-card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.photo-card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.photo-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 240px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.photo-card img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; transition: transform 0.35s ease; }
.static-card { pointer-events: none; }
.photo-card:hover img { transform: scale(1.04); }
.photo-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  width: fit-content;
  padding: 9px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(227, 225, 216, 0.82);
  border-radius: 999px;
  font-weight: 850;
}

.photo-card.overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.24), rgba(0,0,0,0.02));
}

.photo-card.overlay span { z-index: 1; color: var(--paper); background: rgba(20, 27, 22, 0.72); border-color: transparent; }

.step-grid, .option-grid, .quote-info-grid, .customization-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step-grid article, .option-grid article, .quote-info-grid article, .customization-grid article {
  min-height: 220px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.step-grid span, .customization-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--kraft);
  font-size: 13px;
  font-weight: 900;
}

.step-grid p, .option-grid p, .quote-info-grid p, .customization-grid p { color: var(--muted); }

.detail-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.detail-image { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--soft); }
.detail-image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.detail-copy p:not(.eyebrow) { color: var(--muted); font-size: 18px; }

.clean-list { display: grid; gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; color: #465049; }
.clean-list li { padding-left: 18px; border-left: 3px solid var(--kraft); }

.text-link { color: var(--green); font-weight: 850; }

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--paper);
  background: #6f604e;
}

.cta-band h2, .cta-band .eyebrow { color: var(--paper); }

.page-hero { padding: clamp(50px, 6vw, 82px) clamp(18px, 5vw, 76px) clamp(42px, 5vw, 60px); }
.clean-page-hero { background: linear-gradient(115deg, var(--soft), var(--paper) 64%); }
.page-hero h1 { max-width: 980px; }
.page-hero h1, .about-hero h1 { font-size: clamp(42px, 4.6vw, 66px); }

.industry-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.8fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.industry-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: 46% center;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(38, 45, 39, 0.08);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 76px);
  background: linear-gradient(115deg, var(--soft), #fff 64%);
}

.about-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.about-hero-copy { max-width: 720px; }
.about-intro p { color: var(--muted); font-size: 18px; }
.about-gallery { background: #fff; }

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

.catalog-card {
  display: grid;
  grid-template-columns: minmax(160px, 0.76fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
  min-height: 290px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.catalog-card img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

.catalog-card h2 { font-size: 27px; }
.catalog-card p { color: var(--muted); }
.catalog-card ul { margin: 18px 0 0; padding-left: 18px; color: #4b554e; }
.card-kicker { margin-bottom: 8px; color: var(--kraft); font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: 0.08em; }

.industry-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.industry-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.industry-card img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; background: #fbf4e5; }
.industry-card div { padding: 24px; }
.industry-card h2 { font-size: 26px; }
.industry-card p { color: var(--muted); }
.industry-card a { color: var(--green); font-weight: 850; }
.compact-options article { min-height: 170px; }

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

.industry-icon-card {
  display: grid;
  place-items: center;
  gap: 18px;
  min-height: 210px;
  padding: 26px 16px;
  color: #173f78;
  background: #eaf2ff;
  border: 1px solid #dfebfb;
  border-radius: 14px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.industry-icon-card:hover {
  transform: translateY(-4px);
  background: #f0f6ff;
  box-shadow: 0 16px 34px rgba(35, 63, 96, 0.1);
}

.industry-icon-card svg {
  width: 70px;
  height: 70px;
  fill: none;
  stroke: #05090d;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-icon-card span {
  color: #173f78;
  font-size: 22px;
  font-weight: 850;
  line-height: 1.15;
}

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

.feature-card, .product-card, .blog-list article, .industry-list article {
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.feature-card p, .product-card p, .blog-list p, .industry-list p { color: var(--muted); }

.product-image {
  min-height: 180px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--ink);
  background: var(--soft);
  border-radius: 12px;
  font-size: 22px;
  font-weight: 850;
}

.industry-list, .blog-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.blog-list article:first-child, .industry-list article:first-child { grid-column: span 2; }
.post-meta { color: var(--kraft); font-size: 13px; font-weight: 850; text-transform: uppercase; }

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

.blog-card {
  overflow: hidden;
  display: grid;
  color: inherit;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.blog-card div { padding: 26px; }
.blog-card h2 { margin-bottom: 14px; font-size: clamp(26px, 3vw, 38px); }
.blog-card p:not(.post-meta) { color: var(--muted); }
.blog-card span { color: var(--green); font-weight: 850; }
.featured-post { grid-column: span 2; grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr); align-items: stretch; }
.featured-post img { height: 100%; min-height: 360px; aspect-ratio: auto; }
.placeholder-post { min-height: 360px; align-content: center; background: var(--soft); }

.article-page { background: var(--paper); }
.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 6vw, 82px) clamp(18px, 5vw, 76px);
  background: linear-gradient(115deg, var(--soft), var(--paper) 68%);
}

.article-hero h1 { font-size: clamp(38px, 4vw, 58px); }
.article-hero img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.article-content {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 82px) clamp(18px, 5vw, 30px);
  color: #3e4942;
  font-size: 18px;
}

.article-content h2 {
  margin-top: 36px;
  font-size: clamp(28px, 3vw, 40px);
}

.article-content ul { padding-left: 22px; }
.article-content li + li { margin-top: 8px; }

.split, .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

.check-list { display: grid; gap: 20px; }
.check-list p { padding-left: 20px; border-left: 4px solid var(--kraft); }
.muted { background: var(--soft); }

.metric-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.metric-grid div { padding: 24px; background: var(--soft); border: 1px solid var(--line); border-radius: 14px; }
.metric-grid strong, .metric-grid span { display: block; }
.metric-grid strong { color: var(--ink); font-size: 28px; }
.metric-grid span { color: var(--muted); }

.contact-info {
  padding: 34px;
  color: var(--paper);
  background: #24372d;
  border-radius: 16px;
}

.contact-info h2 { color: var(--paper); }
.contact-info p { color: rgba(255,255,255,0.84); }
.contact-info a { color: inherit; }
.contact-lines { margin-top: 28px; }

.quote-panel {
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.quote-panel > p { max-width: 680px; color: var(--muted); font-size: 18px; }
.quote-checklist { margin-top: 28px; padding: 24px; background: var(--soft); border: 1px solid var(--line); border-radius: 14px; }
.quote-checklist ul { margin: 0; padding-left: 20px; color: var(--muted); }
.quote-checklist li + li { margin-top: 10px; }

.site-footer {
  border-top: 1px solid var(--line);
  background: #f4f2eb;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(170px, 0.75fr));
  gap: clamp(26px, 4vw, 56px);
  padding: 54px clamp(18px, 5vw, 76px) 42px;
}

.site-footer img { width: 220px; margin-bottom: 18px; }
.site-footer p { max-width: 430px; color: var(--muted); }

.footer-quote {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 10px;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--green);
  border-radius: 999px;
  font-weight: 850;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-column h2 {
  margin-bottom: 12px;
  color: #2b302d;
  font-size: 18px;
}

.footer-column a {
  color: #4a544d;
  font-size: 15px;
  font-weight: 650;
}

.footer-column a:hover { color: var(--green); }
.footer-contact p { margin-bottom: 8px; color: #414a44; font-size: 15px; line-height: 1.45; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 76px);
  color: #6b756d;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer-bottom div { display: flex; flex-wrap: wrap; gap: 14px 22px; }
.footer-bottom a:hover { color: var(--green); }

@media (max-width: 1100px) {
  .photo-card-grid.four, .industry-card-grid, .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industry-icon-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .step-grid, .option-grid, .quote-info-grid, .customization-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-hero, .detail-section, .split, .contact-layout, .about-hero, .industry-hero, .article-hero, .featured-post { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .site-header { align-items: flex-start; flex-direction: column; padding: 14px 16px; }
  .brand img { width: 210px; }
  .main-nav { width: 100%; flex-wrap: wrap; gap: 14px; font-size: 14px; }
  .nav-item { position: static; }
  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 8px;
    padding: 10px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }
  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu { display: grid; transform: none; }
  h1 { font-size: 38px; }
  .home-hero { padding-top: 42px; }
  .banner-hero { min-height: 680px; align-items: flex-start; }
  .banner-hero::before { background: linear-gradient(180deg, rgba(251, 250, 246, 0.98), rgba(251, 250, 246, 0.88) 46%, rgba(251, 250, 246, 0.22) 100%); }
  .banner-hero-image { object-position: 62% center; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-strip, .photo-card-grid.four, .photo-card-grid.three, .industry-card-grid, .catalog-grid, .catalog-card,
  .industry-icon-grid, .blog-card-grid,
  .step-grid, .option-grid, .quote-info-grid, .customization-grid, .feature-grid, .product-grid,
  .industry-list, .blog-list, .metric-grid { grid-template-columns: 1fr; }
  .featured-post { grid-column: span 1; }
  .catalog-card img { min-height: 210px; }
  .split-heading, .cta-band { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .blog-list article:first-child, .industry-list article:first-child { grid-column: span 1; }
}
