:root {
  color-scheme: light;
  --ink: #1e2523;
  --muted: #65716d;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: #ddd8cd;
  --green: #315b49;
  --green-dark: #1f3e33;
  --clay: #a65335;
  --gold: #d7aa52;
  --shadow: 0 20px 60px rgba(24, 31, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

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

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

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

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

.hero {
  position: relative;
  min-height: clamp(590px, 82vh, 780px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 31, 27, 0.82) 0%, rgba(23, 31, 27, 0.62) 36%, rgba(23, 31, 27, 0.12) 76%),
    linear-gradient(0deg, rgba(23, 31, 27, 0.36), transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 0 clamp(20px, 7vw, 84px) 86px;
  color: white;
}

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

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 9vw, 6.3rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

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

.button.secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.button.secondary.light {
  color: var(--ink);
  border-color: var(--line);
  background: var(--panel);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1120px, calc(100% - 32px));
  margin: -44px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-info div {
  padding: 24px;
  background: var(--panel);
}

.quick-info span,
.quick-info small {
  display: block;
  color: var(--muted);
}

.quick-info span {
  margin-bottom: 8px;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.15rem;
}

.section,
.split-section,
.visit {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 7vw, 88px);
  align-items: end;
  padding: 92px 0 32px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro > p,
.split-copy p,
.visit p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

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

.category-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 44px;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.product-grid h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.product-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.storefront-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.64fr) minmax(420px, 1fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  margin: 74px auto 0;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 42px rgba(24, 31, 28, 0.08);
}

.storefront-section h2 {
  font-size: clamp(1.7rem, 4vw, 3.25rem);
  line-height: 1.04;
}

.storefront-section img {
  display: block;
  width: 100%;
  aspect-ratio: 906 / 336;
  object-fit: cover;
  border-radius: 8px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.8fr);
  gap: clamp(28px, 7vw, 84px);
  align-items: center;
  padding: 100px 0;
}

.split-copy h2 {
  margin-bottom: 22px;
}

.text-link {
  color: var(--green);
  font-weight: 800;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list div {
  padding: 22px;
  border-left: 5px solid var(--clay);
  border-radius: 8px;
  background: #f2eee5;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 7vw, 76px);
  align-items: center;
  margin-bottom: 80px;
  padding: clamp(34px, 6vw, 58px);
  border-radius: 8px;
  color: white;
  background: var(--green-dark);
}

.visit .eyebrow {
  color: #f2c76a;
}

.visit p {
  color: rgba(255, 255, 255, 0.78);
}

.hours-card {
  padding: 26px;
  border-radius: 8px;
  color: var(--ink);
  background: white;
}

.hours-card h3 {
  margin-bottom: 18px;
}

dl,
dd {
  margin: 0;
}

.hours-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.hours-card div:last-child {
  border-bottom: 0;
}

dt {
  color: var(--muted);
}

dd {
  font-weight: 800;
  text-align: right;
}

footer {
  display: grid;
  gap: 8px;
  padding: 32px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: #171f1b;
}

footer strong {
  color: white;
}

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

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding-bottom: 72px;
  }

  .quick-info,
  .intro,
  .product-grid,
  .storefront-section,
  .split-section,
  .visit {
    grid-template-columns: 1fr;
  }

  .intro {
    padding-top: 64px;
  }

  .product-grid article {
    min-height: auto;
  }

  .category-icon {
    margin-bottom: 28px;
  }
}

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

  .hero {
    min-height: 640px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(23, 31, 27, 0.86), rgba(23, 31, 27, 0.6)),
      linear-gradient(0deg, rgba(23, 31, 27, 0.42), transparent 44%);
  }

  h1 {
    font-size: 3.15rem;
  }

  .button {
    width: 100%;
  }

  .quick-info {
    margin-top: 0;
    width: 100%;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .visit {
    width: 100%;
    margin-bottom: 0;
    border-radius: 0;
  }
}
