:root {
  --bg: #f5f6ef;
  --surface: #ffffff;
  --surface-soft: #f3f0e4;
  --text: #1f2b22;
  --muted: #5d665f;
  --primary: #2f6a38;
  --primary-dark: #1f4c28;
  --accent: #d4a31e;
  --accent-dark: #a27a10;
  --border: #d9ddca;
  --dark: #122318;
  --dark-soft: #1d3424;
  --shadow-lg: 0 20px 48px rgba(12, 33, 21, 0.16);
  --shadow-md: 0 12px 28px rgba(12, 33, 21, 0.1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at 12% 15%, rgba(212, 163, 30, 0.2), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(47, 106, 56, 0.25), transparent 36%),
    var(--bg);
}

h1,
h2,
h3 {
  margin: 0 0 0.65rem;
  line-height: 1.2;
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.65rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(245, 246, 239, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(140deg, var(--primary), var(--accent));
  box-shadow: var(--shadow-md);
}

.brand-text {
  font-size: 1.03rem;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  padding: 0.45rem 0.75rem;
}

.hero {
  padding: 4.6rem 0 3.4rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.72rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--primary-dark);
  background: rgba(47, 106, 56, 0.14);
}

.eyebrow-light {
  color: #d5e9d8;
  background: rgba(213, 233, 216, 0.12);
}

.hero-copy {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0.72rem 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

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

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

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  border-color: var(--border);
  background: #fff;
  color: var(--text);
}

.hero-stats {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.hero-stats > div {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  background: #fff;
}

.stat-value {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
}

.stat-label {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.75rem;
  animation: liftUp 0.75s ease-out;
}

.hero-shot {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: #fff;
}

.hero-shot-main {
  grid-row: span 2;
}

.hero-shot img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  object-position: center;
}

.section {
  padding: 4.1rem 0;
}

.section-head {
  margin-bottom: 1.5rem;
}

.product-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.1rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card img {
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid #e8eadc;
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
}

.product-meta {
  margin-bottom: 0;
  font-weight: 700;
  color: var(--accent-dark);
}

.section-dark {
  background:
    radial-gradient(circle at 18% 10%, rgba(212, 163, 30, 0.2), transparent 30%),
    linear-gradient(140deg, var(--dark), var(--dark-soft));
  color: #edf4ee;
}

.quality-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.quality-grid p {
  color: #c8d8cd;
}

.quality-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.quality-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(227, 240, 229, 0.2);
  border-radius: 12px;
  padding: 0.95rem 1rem;
}

.quality-item h3 {
  font-size: 1.15rem;
}

.quality-item p {
  margin-bottom: 0;
  color: #d4e2d7;
}

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

.contact-grid-single {
  grid-template-columns: 1fr;
}

.business-details {
  margin-top: 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
  padding: 1rem;
}

.business-details p {
  margin-bottom: 0.55rem;
}

.business-details p:last-child {
  margin-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: #eff0e6;
}

.footer-wrap {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.footer-wrap p {
  margin: 0;
}

@keyframes liftUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

  .hero-media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-shot-main {
    grid-row: span 1;
  }

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

@media (max-width: 700px) {
  .menu-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0.9rem 4%;
  }

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

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

  .hero-media-grid {
    grid-template-columns: 1fr;
  }

  .hero-shot img {
    min-height: 180px;
  }
}
