:root {
  color-scheme: light;
  --bg: #f6f1e8;
  --surface: #ffffff;
  --surface-soft: #eef5ec;
  --text: #1f241c;
  --muted: #697265;
  --line: #dfe4d9;
  --primary: #226b45;
  --primary-dark: #174d31;
  --tomato: #c65f3d;
  --gold: #bc8525;
  --blue: #3d6f8f;
  --shadow: 0 18px 44px rgba(31, 36, 28, 0.12);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

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

.site-header,
.site-footer,
.section,
.hero {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header,
.site-footer,
.brand,
.nav-links,
.service-actions {
  display: flex;
  align-items: center;
}

.site-header {
  min-height: 76px;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  gap: 0.65rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: var(--primary);
  color: #ffffff;
}

.nav-links {
  gap: 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a,
.site-footer a {
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-dark);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 116px);
  overflow: hidden;
  border-radius: 8px;
  background: #17221d;
  box-shadow: var(--shadow);
}

.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  opacity: 0.82;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(18, 28, 22, 0.82), rgba(18, 28, 22, 0.44) 48%, rgba(18, 28, 22, 0.08));
}

.hero-content {
  position: absolute;
  z-index: 1;
  inset: auto auto clamp(1.25rem, 5vw, 3rem) clamp(1.25rem, 5vw, 3rem);
  width: min(620px, calc(100% - 2.5rem));
  color: #ffffff;
}

.hero-content p:not(.eyebrow) {
  max-width: 56ch;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.08rem;
  line-height: 1.7;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--tomato);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f1b18e;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(3.4rem, 9vw, 6.8rem);
}

h2 {
  max-width: 20ch;
  font-size: clamp(1.75rem, 3.6vw, 2.55rem);
}

h3 {
  font-size: 1.16rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 1.5rem;
  padding: 0.82rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--primary);
  color: #ffffff;
}

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

.section {
  padding: 3rem 0;
}

.service-section {
  padding-bottom: 0.85rem;
}

.varieties-section {
  padding-top: 0.9rem;
}

.section-heading {
  display: grid;
  gap: 0.65rem;
  max-width: 720px;
  margin-bottom: 1.15rem;
}

.service-section .section-heading,
.varieties-section .section-heading {
  max-width: none;
}

.service-section h2,
.varieties-section h2 {
  max-width: none;
  white-space: nowrap;
}

.section-copy {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.feature-grid,
.variety-grid {
  display: grid;
  gap: 0.85rem;
}

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

.feature-grid article,
.variety-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.feature-grid article {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  padding: 1.2rem;
  box-shadow: 0 12px 30px rgba(31, 36, 28, 0.08);
}

.feature-grid span {
  width: fit-content;
  padding: 0.28rem 0.5rem;
  border-radius: 8px;
  background: var(--surface-soft);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.feature-grid p,
.variety-card p,
.section-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.variety-card {
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(31, 36, 28, 0.08);
}

.variety-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.variety-card div {
  display: grid;
  gap: 0.65rem;
  min-height: 174px;
  padding: 1rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 1rem;
  align-items: start;
}

.contact-copy {
  margin-bottom: 0;
  padding: 0;
}

.contact-copy .section-copy {
  max-width: 54ch;
}

.contact-card {
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.contact-card a,
.contact-card div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 1rem;
  row-gap: 0.25rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  text-decoration: none;
}

.contact-card a:hover {
  border-color: var(--primary);
  background: #ffffff;
}

.contact-icon {
  display: grid;
  width: 52px;
  height: 52px;
  grid-row: span 2;
  place-items: center;
  border-radius: 8px;
  background: #ffffff;
  color: var(--primary-dark);
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-card .contact-label {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card strong {
  min-width: 0;
  color: var(--text);
  font-size: 1.05rem;
}

.site-footer {
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

@media (max-width: 900px) {
  .feature-grid,
  .variety-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .service-section h2,
  .varieties-section h2 {
    max-width: 20ch;
    white-space: normal;
  }
}

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

  .site-header {
    padding: 1rem 0;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .hero {
    min-height: 620px;
  }

  .hero-photo {
    min-height: 620px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(18, 28, 22, 0.22), rgba(18, 28, 22, 0.86));
  }

  .section {
    padding: 3rem 0;
  }
}