:root {
  --ink: #1f261e;
  --muted: #646b5f;
  --paper: #fbfaf5;
  --panel: #ffffff;
  --gold: #d6b66b;
  --green: #446a46;
  --green-dark: #273f2d;
  --line: #e7e0d0;
  --rust: #a95b32;
  --shadow: 0 20px 60px rgba(31, 38, 30, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(214, 182, 107, 0.2), rgba(68, 106, 70, 0.08)),
    var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(251, 250, 245, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 0.96rem;
}

nav a {
  text-decoration: none;
}

main {
  min-height: 80vh;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 88px) 0 clamp(34px, 6vw, 72px);
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 6.4vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.14rem;
  letter-spacing: 0;
}

.intro {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.13rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.primary {
  background: var(--green-dark);
  color: #fff;
}

.secondary {
  background: var(--gold);
  color: #241e10;
}

.tertiary {
  background: transparent;
  border-color: var(--line);
  color: var(--green-dark);
}

.hero-panel {
  display: grid;
  justify-items: center;
  gap: 20px;
  padding: clamp(28px, 5vw, 48px);
  background: var(--green-dark);
  color: #fff7df;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: min(230px, 76%);
  height: auto;
  object-fit: contain;
}

.hero-panel p {
  margin: 0;
  color: #eadcb6;
  font-weight: 800;
  text-align: center;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 80px) 0;
}

.section-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 24px;
}

.product-grid,
.location-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-grid article,
.location-list address {
  min-height: 180px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(31, 38, 30, 0.05);
}

.product-grid p,
.location-list address {
  color: var(--muted);
}

.location-list address {
  font-style: normal;
}

.location-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #e9e2ce;
  background: var(--green-dark);
}

footer p {
  margin: 0;
}

footer a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 900px) {
  .hero,
  .product-grid,
  .location-list {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy {
    grid-column: 1 / -1;
  }

  .hero-panel {
    grid-column: 1 / -1;
  }
}

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

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

  .hero,
  .product-grid,
  .location-list {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}
