:root {
  color: #1e252b;
  background: #fffaf2;
  font-family: Arial, Helvetica, sans-serif;
  --ink: #1e252b;
  --muted: #65717c;
  --line: #e2d5c2;
  --cream: #fffaf2;
  --paper: #ffffff;
  --green: #3f6f52;
  --red: #b64232;
  --gold: #c78a34;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 250, 242, 0.92);
  border-bottom: 1px solid rgba(226, 213, 194, 0.8);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 238px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--red);
  font-weight: 800;
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  margin-top: 2px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
  color: #33404a;
  font-size: 15px;
}

nav a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  min-height: calc(100vh - 72px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  align-self: center;
  padding: 72px clamp(22px, 5vw, 72px);
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6.2vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-text {
  max-width: 660px;
  color: #44505b;
  font-size: 20px;
  line-height: 1.6;
}

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

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 750;
  text-decoration: none;
}

.primary-action {
  gap: 8px;
  color: #fff;
  background: var(--green);
}

.secondary-action {
  color: var(--green);
  border: 1px solid var(--green);
}

.hero-visual {
  position: relative;
  overflow: hidden;
  background: #f4eadc;
}

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

.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.fact-strip div {
  min-height: 112px;
  padding: 22px clamp(18px, 3vw, 34px);
  border-right: 1px solid var(--line);
}

.fact-strip div:last-child {
  border-right: 0;
}

.fact-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.fact-strip strong {
  display: block;
  font-size: 18px;
  line-height: 1.35;
}

.section {
  padding: 74px clamp(22px, 5vw, 72px);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 80px);
  background: #fff;
}

h2 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.copy-block p {
  color: #44505b;
  font-size: 19px;
  line-height: 1.75;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.product-grid,
.service-grid {
  display: grid;
  gap: 14px;
}

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

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

.product-card,
.service-card,
.faq-list article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.showcase-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.12;
}

.showcase-copy p {
  color: #44505b;
  font-size: 17px;
  line-height: 1.65;
}

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

.showcase-grid figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.showcase-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-bottom: 1px solid var(--line);
}

.showcase-grid figcaption {
  padding: 12px 14px;
  color: #2f3b44;
  font-size: 14px;
  font-weight: 800;
}

.icon,
.trust-symbol {
  color: var(--green);
  font-size: 24px;
  font-weight: 800;
}

h3 {
  margin: 16px 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.product-card p,
.service-card p,
.faq-list p {
  color: var(--muted);
  line-height: 1.65;
}

.service-band {
  background: #f6efe4;
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px 58px;
  align-items: start;
  color: #fff;
  background: #26362c;
}

.trust-symbol {
  color: #e4b46a;
}

.trust-panel p {
  color: #d7e0d9;
  font-size: 19px;
  line-height: 1.7;
}

.trust-list {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
}

.faq {
  background: #fff;
}

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

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(22px, 5vw, 72px);
  color: #596570;
  background: #fff;
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding-top: 54px;
    padding-bottom: 36px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .fact-strip,
  .product-grid,
  .service-grid,
  .showcase,
  .faq-list,
  .two-column,
  .trust-panel {
    grid-template-columns: 1fr 1fr;
  }

  .showcase {
    grid-template-columns: 1fr;
  }

  .trust-list {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .brand {
    min-width: 0;
  }

  nav {
    gap: 10px 16px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-text,
  .copy-block p,
  .trust-panel p {
    font-size: 17px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .fact-strip,
  .product-grid,
  .service-grid,
  .showcase,
  .showcase-grid,
  .faq-list,
  .two-column,
  .trust-panel {
    grid-template-columns: 1fr;
  }
}
