:root {
  --charcoal: #17201d;
  --charcoal-soft: #24312d;
  --sand: #f4efe5;
  --sand-deep: #e4d4bd;
  --copper: #b86f2d;
  --copper-dark: #8f4e1d;
  --green: #4c6a55;
  --mist: #f8f6f0;
  --white: #ffffff;
  --muted: #64716b;
  --border: rgba(23, 32, 29, 0.12);
  --shadow: 0 22px 55px rgba(23, 32, 29, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--mist);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 246, 240, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand img {
  width: 228px;
  height: auto;
}

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

.site-nav a {
  text-decoration: none;
  color: var(--charcoal-soft);
}

.site-nav a:hover {
  color: var(--copper-dark);
}

.hero {
  padding: 92px 0 80px;
  background:
    radial-gradient(circle at 82% 18%, rgba(184, 111, 45, 0.18), transparent 34%),
    linear-gradient(135deg, #fbf8ef 0%, #efe1cd 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--copper-dark);
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

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

h1 {
  font-size: clamp(2.55rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin-bottom: 24px;
  max-width: 860px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-lead {
  font-size: 1.2rem;
  color: var(--charcoal-soft);
  max-width: 700px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

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

.button.secondary {
  border-color: rgba(23, 32, 29, 0.25);
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.35);
}

.button.light {
  background: var(--white);
  color: var(--charcoal);
}

.hero-card {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 20px;
  transform: rotate(1.2deg);
}

.placeholder-image {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px dashed rgba(23, 32, 29, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(76, 106, 85, 0.1), rgba(184, 111, 45, 0.12)),
    repeating-linear-gradient(45deg, rgba(23, 32, 29, 0.04) 0 10px, transparent 10px 20px);
  color: var(--charcoal);
  text-align: center;
  padding: 26px;
}

.large-placeholder {
  min-height: 430px;
}

.placeholder-image span {
  font-size: 1.45rem;
  font-weight: 900;
}

.placeholder-image small {
  color: var(--muted);
  max-width: 360px;
}

.intro-panel {
  background: var(--charcoal);
  color: var(--white);
  padding: 64px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
}

.intro-grid p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.highlights {
  padding: 26px 0 0;
  margin-top: -1px;
  background: var(--charcoal);
}

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

.highlight-grid article {
  background: var(--white);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 24px;
  box-shadow: 0 -10px 35px rgba(0, 0, 0, 0.08);
}

.highlight-grid strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.highlight-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.section {
  padding: 92px 0;
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

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

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

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(23, 32, 29, 0.07);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  background: var(--sand);
}

.product-card-body {
  padding: 24px;
}

.product-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.local-section {
  background: var(--sand);
}

.local-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.local-copy p:not(.eyebrow) {
  color: var(--charcoal-soft);
  font-size: 1.05rem;
}

.local-card {
  background: var(--charcoal);
  color: var(--white);
  padding: 34px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.82);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--copper);
  box-shadow: inset 0 0 0 4px var(--charcoal);
  border: 1px solid var(--copper);
}

.applications-section {
  background: var(--white);
}

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

.application-grid div {
  min-height: 92px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: var(--mist);
  border: 1px solid var(--border);
  font-weight: 800;
}

.cta-section {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--green), var(--charcoal));
  color: var(--white);
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-card > div {
  max-width: 760px;
}

.cta-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.cta-card .eyebrow {
  color: var(--sand-deep);
}

.contact-section {
  background: var(--mist);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}

.contact-grid p {
  color: var(--muted);
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 14px 38px rgba(23, 32, 29, 0.07);
}

.contact-card p {
  margin-bottom: 12px;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card a {
  color: var(--copper-dark);
  font-weight: 800;
}

.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.72);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 920px) {
  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .hero-grid,
  .intro-grid,
  .local-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    position: static;
  }

  .brand img {
    width: 196px;
  }

  .hero {
    padding: 60px 0;
  }

  .section {
    padding: 64px 0;
  }

  .highlight-grid,
  .product-grid,
  .application-grid {
    grid-template-columns: 1fr;
  }

  .highlight-grid article {
    border-radius: var(--radius-md);
  }

  .large-placeholder {
    min-height: 300px;
  }
}
