:root {
  --ink: #1d3028;
  --leaf: #49623a;
  --moss: #72804b;
  --river: #1f718c;
  --sky: #b8d9df;
  --sand: #e8dcc4;
  --clay: #a9783d;
  --paper: #fbfaf5;
  --white: #ffffff;
  --line: rgba(29, 48, 40, 0.16);
  --shadow: 0 22px 60px rgba(29, 48, 40, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 190px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 18px;
  padding: 20px clamp(18px, 4vw, 56px) 18px;
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand img {
  width: min(560px, 76vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: 100%;
}

.site-nav a {
  text-decoration: none;
}

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

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

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

.top-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 5vw, 70px);
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: #1f713b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  text-align: center;
}

.hero {
  position: relative;
  display: block;
  min-height: 58vh;
  padding: clamp(54px, 7vw, 100px) clamp(20px, 5vw, 72px);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(251, 250, 245, 0.94), rgba(251, 250, 245, 0.72)),
    url("assets/wa-native-hero.png") center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  right: -4vw;
  bottom: -18vw;
  width: 58vw;
  max-width: 720px;
  aspect-ratio: 1;
  border: 1px solid rgba(73, 98, 58, 0.2);
  border-radius: 50%;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--river);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  margin-left: auto;
  margin-right: auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5.3vw, 5.3rem);
  font-weight: 500;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
}

.hero-actions,
.stock-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button.primary:hover {
  background: var(--river);
  border-color: var(--river);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.68);
}

.button.secondary:hover {
  color: var(--river);
  border-color: var(--river);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

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

.services-section {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.services-section > * {
  position: relative;
  z-index: 1;
}

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

.service-grid article {
  overflow: hidden;
  padding: 0 24px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-grid img {
  display: block;
  width: calc(100% + 48px);
  max-width: none;
  height: 160px;
  margin: 0 -24px 22px;
  object-fit: cover;
}

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

.stock-section {
  background: #eef3e7;
}

.stock-tools {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(170px, 230px) minmax(190px, 250px);
  gap: 14px;
  margin-bottom: 16px;
}

label span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

textarea {
  resize: vertical;
}

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  color: var(--leaf);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

tbody tr:last-child td {
  border-bottom: 0;
}

.fine-print {
  margin: 14px 0 0;
  color: rgba(29, 48, 40, 0.72);
  font-size: 0.92rem;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 18px;
}

.pagination button {
  min-width: 40px;
  min-height: 40px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.pagination button:hover,
.pagination button[aria-current="page"] {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.about-section {
  background:
    linear-gradient(rgba(29, 48, 40, 0.84), rgba(29, 48, 40, 0.84)),
    linear-gradient(135deg, var(--leaf), var(--river));
  color: var(--white);
}

.about-section .eyebrow {
  color: var(--sky);
}

.about-copy {
  max-width: 760px;
  font-size: 1.08rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 72px);
  background: var(--sand);
}

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

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.contact-details p {
  margin: 0;
}

.contact-details strong {
  display: inline-block;
  min-width: 82px;
}

.form-note {
  margin: -2px 0 2px;
  color: rgba(29, 48, 40, 0.72);
  font-size: 0.92rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-status {
  min-height: 1.45em;
  margin: 0;
  color: rgba(29, 48, 40, 0.72);
  font-size: 0.92rem;
}

.privacy-note {
  text-transform: none;
  letter-spacing: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--ink);
}

.site-footer a {
  color: var(--sky);
}

@media (max-width: 900px) {
  .site-header {
    gap: 12px;
    padding-top: 16px;
  }

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

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
    text-align: center;
  }

  .top-info {
    gap: 8px;
    flex-direction: column;
    padding-top: 14px;
    padding-bottom: 14px;
  }

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

  .hero {
    min-height: auto;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: min(360px, 88vw);
  }

  h1 {
    font-size: 2.45rem;
  }

  .service-grid,
  .stock-tools {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .stock-actions,
  .button {
    width: 100%;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
  }
}
