:root {
  color-scheme: light;
  --ink: #1d2220;
  --muted: #5d6660;
  --line: #d9ded8;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --sage: #6f8b73;
  --clay: #b76048;
  --teal: #176b73;
  --gold: #c4944a;
  --shadow: 0 22px 80px rgba(29, 34, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 246, 0.92);
  border-bottom: 1px solid rgba(217, 222, 216, 0.78);
  backdrop-filter: blur(14px);
}

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

.brand-logo {
  display: block;
  object-fit: contain;
}

.brand-logo--square {
  display: none;
  width: 42px;
  height: 42px;
}

.brand-logo--wide {
  width: 150px;
  height: 42px;
}

@media (max-width: 720px) {
  .brand-logo--square {
    display: block;
  }

  .brand-logo--wide {
    display: none;
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.6vw, 34px);
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
}

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

.toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

select,
.icon-button,
.button {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
}

select {
  height: 40px;
  max-width: 142px;
  padding: 0 32px 0 12px;
  font: inherit;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: calc(100vh - 72px);
  padding: clamp(24px, 4vw, 56px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  overflow: hidden;
}

.hero-media {
  min-height: 560px;
  border-radius: 8px;
  background: #ece8dd;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

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

.hero-copy {
  max-width: 650px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-weight: 750;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow),
.split-section p,
.contact-section p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  text-decoration: none;
  font-weight: 760;
}

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

.button.secondary {
  background: transparent;
}

.stats,
.split-section,
.service-band,
.products,
.contact-section {
  padding: clamp(54px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
}

.stats div {
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 26px;
}

.stats strong,
.stats span {
  display: block;
}

.stats strong {
  font-size: 18px;
}

.stats span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(24px, 6vw, 86px);
  align-items: start;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

.service-band {
  background: #eef2ed;
}

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

.section-head h2 {
  max-width: 780px;
}

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

.service-grid article,
.product-grid article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

.service-grid svg {
  color: var(--clay);
  width: 32px;
  height: 32px;
}

h3 {
  margin: 22px 0 10px;
  font-size: 21px;
}

.service-grid p,
.product-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  background: #edf0eb;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--ink);
  color: white;
}

.contact-section .section-kicker,
.contact-section p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-panel {
  display: grid;
  gap: 12px;
}

.contact-panel a,
.contact-panel span {
  display: block;
  min-height: 58px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #f4f1e9;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  text-decoration: none;
}

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

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .toolbar {
    min-width: auto;
  }

  .hero,
  .split-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 420px;
    order: 2;
  }

  .stats,
  .service-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    max-width: 170px;
  }

  .toolbar {
    width: 100%;
    justify-content: space-between;
  }

  select {
    max-width: none;
    flex: 1;
  }

  h1 {
    font-size: 40px;
  }

  .hero {
    padding-inline: 18px;
  }

  .hero-media {
    min-height: 330px;
  }
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  min-height: calc(100vh - 72px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(54px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.contact-hero-copy {
  max-width: 760px;
}

.contact-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.whatsapp-card {
  display: grid;
  gap: 22px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.whatsapp-qr-link {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  background: #edf0eb;
}

.whatsapp-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.whatsapp-card h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.whatsapp-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-details {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 18px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(54px, 8vw, 112px);
}

.contact-details article {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.contact-details h2 {
  font-size: 24px;
}

.contact-details p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-details a {
  overflow-wrap: anywhere;
}

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(54px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.legal-page h1 {
  max-width: 760px;
}

.legal-updated {
  margin: 18px 0 34px;
  color: var(--muted);
}

.legal-page article {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.legal-page article:first-of-type {
  border-top: 0;
}

.legal-page h2 {
  font-size: clamp(24px, 3vw, 32px);
}

.legal-page p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 940px) {
  .contact-hero,
  .contact-details {
    grid-template-columns: 1fr;
  }
}
