:root {
  --ink: #171815;
  --muted: #66705f;
  --paper: #fffdf7;
  --panel: #f5f0df;
  --leaf: #2f6b45;
  --leaf-dark: #16432a;
  --gold: #d99524;
  --amber: #f4c35d;
  --sky: #d8eced;
  --line: rgba(23, 24, 21, 0.14);
  --shadow: 0 18px 55px rgba(22, 67, 42, 0.16);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  background: rgba(13, 36, 24, 0.78);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: 54px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.25));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.site-nav a:hover,
.site-nav a:focus {
  opacity: 1;
  color: var(--amber);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius);
  background: transparent;
  color: #fff;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: start;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 12, 9, 0.88) 0%, rgba(18, 25, 15, 0.58) 48%, rgba(18, 25, 15, 0.2) 100%),
    linear-gradient(0deg, rgba(6, 12, 9, 0.9) 0%, rgba(89, 55, 6, 0.44) 54%, rgba(6, 12, 9, 0.22) 100%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(300px, 40vh, 370px) 0 88px;
  color: #fff;
}

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

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.9vw, 6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: 0.03em;
}

.button.primary {
  color: #171815;
  background: var(--amber);
  box-shadow: 0 15px 35px rgba(244, 195, 93, 0.28);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary.dark {
  color: var(--leaf-dark);
  border-color: rgba(22, 67, 42, 0.24);
  background: #fff;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.section {
  width: min(1130px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) 0;
}

.section-heading {
  max-width: 780px;
}

.section-heading.centered {
  margin: 0 auto 36px;
  text-align: center;
}

.section h2,
.youtube-band h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.2vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.intro-copy {
  color: #3b4138;
  font-size: 1.1rem;
}

.feature-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 14px;
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
}

.feature-strip img {
  width: 100%;
  height: clamp(220px, 28vw, 380px);
  object-fit: cover;
  border-radius: var(--radius);
}

.feature-strip img:nth-child(2) {
  margin-top: 38px;
}

.services {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, #fffdf7 0%, #eef5ed 100%);
}

.services > .section-heading,
.service-grid {
  width: min(1130px, calc(100% - 36px));
}

.services > .section-heading {
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 38px auto 0;
}

.service-grid article,
.info-grid article,
.box-details > div,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.service-grid article {
  overflow: hidden;
}

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

.service-grid div {
  padding: 20px;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.18;
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.crop-list {
  color: var(--leaf-dark);
  font-weight: 750;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--gold);
}

.image-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.boxes {
  width: 100%;
  max-width: none;
  background: #172f22;
  color: #fff;
}

.boxes > .section-heading,
.box-layout {
  width: min(1130px, calc(100% - 36px));
}

.boxes > .section-heading {
  margin: 0 auto 34px;
}

.boxes .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
}

.box-layout {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 0.85fr);
  gap: 18px;
  margin: 0 auto;
}

.box-main {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.box-details {
  display: grid;
  gap: 18px;
}

.box-details > div {
  padding: 24px;
  color: var(--ink);
}

.price-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.price-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.price-list strong {
  font-size: 1.25rem;
  color: var(--leaf-dark);
}

.price-list small {
  grid-column: 1 / -1;
  color: var(--muted);
}

.box-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.box-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.info-grid article {
  overflow: hidden;
}

.info-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.info-grid h3,
.info-grid p {
  padding-left: 18px;
  padding-right: 18px;
}

.info-grid h3 {
  padding-top: 18px;
}

.info-grid p {
  padding-bottom: 20px;
  color: #495044;
}

.youtube-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1130px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(36px, 6vw, 58px);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(22, 67, 42, 0.93), rgba(22, 67, 42, 0.58)),
    url("../images/pollen-closeup.jpg") center / cover;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 0.72fr);
  gap: clamp(24px, 5vw, 60px);
  padding: clamp(26px, 5vw, 48px);
  background: linear-gradient(135deg, #fff 0%, var(--sky) 100%);
}

.contact-actions {
  display: grid;
  align-content: center;
  gap: 18px;
  color: #39443b;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 58px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--leaf-dark);
}

.site-footer a {
  color: #fff;
  text-decoration: none;
  font-weight: 750;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    display: none;
    width: min(320px, calc(100vw - 36px));
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(13, 36, 24, 0.96);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 10px;
  }

  .intro,
  .split,
  .box-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .box-main {
    min-height: 300px;
  }
}

@media (max-width: 680px) {
  .brand span {
    max-width: 180px;
    line-height: 1.1;
  }

  .hero {
    min-height: 92vh;
  }

  .feature-strip,
  .service-grid,
  .info-grid,
  .box-gallery {
    grid-template-columns: 1fr;
  }

  .feature-strip img:nth-child(2) {
    margin-top: 0;
  }

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