:root {
  --green: #2E7D32;
  --brown: #6D4C41;
  --cream: #F5F0E6;
  --ink: #1A1A1A;
  --muted: #5F5F5F;
  --white: #ffffff;
  --greenLight: #E8F5E9;
}
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--green);
  border-bottom: none;
  backdrop-filter: saturate(150%) blur(8px);
}
.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-logo {
  height: 44px;
  width: 44px;
  object-fit: contain;
  background: var(--green);
  border-radius: 8px;
}
.brand-name {
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--green);
  text-transform: uppercase;
  font-size: 20px;
}
.brand-tagline {
  font-size: 12px;
  color: var(--muted);
}
.site-header .brand-name {
  color: #ffffff;
}
.site-header .brand-tagline {
  color: rgba(255,255,255,0.85);
}
.nav a {
  display: inline-block;
  margin-left: 16px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
}
.nav a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0;
  height: auto;
  width: auto;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  align-items: center;
  justify-content: center;
  transition: color 160ms ease;
}
.menu-toggle:active {
  transform: scale(0.98);
}
.menu-toggle.active {
  background: transparent;
  color: var(--green);
  box-shadow: none;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slides .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 800ms ease;
}
.hero-slides .slide.is-active {
  opacity: 1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-copy h1 {
  font-family: "Fraunces", serif;
  font-size: 46px;
  line-height: 1.15;
  margin: 0 0 12px;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
}
.hero-copy p {
  font-size: 18px;
  color: #ffffff;
  max-width: 820px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.45);
}
.hero-copy {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.hero-media {
  margin: 0;
}
.hero-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.cta-group {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.btn.small {
  height: 38px;
  padding: 0 14px;
  font-weight: 600;
}
.btn.primary {
  background: var(--green);
  color: var(--white);
}
.btn.primary:hover {
  background: #256628;
}
.btn.outline {
  border: 2px solid var(--green);
  color: var(--green);
  background: transparent;
}
.btn.outline:hover {
  background: rgba(46,125,50,0.08);
}
.hero .btn.outline {
  border-color: #ffffff;
  color: #ffffff;
}
.hero .btn.outline:hover {
  background: rgba(255,255,255,0.12);
}
.section {
  padding: 64px 0;
}
.section-alt {
  background: var(--white);
}
.section-green-light {
  background: var(--greenLight);
}
.section-green {
  background: var(--green);
}
.section-green h2 {
  color: #ffffff;
}
.section-green p {
  color: rgba(255,255,255,0.9);
}
.section-green .benefits li {
  color: rgba(255,255,255,0.9);
}
.section-green .benefits li::before {
  color: #ffffff;
}
.section h2 {
  margin: 0 0 24px;
  font-family: "Fraunces", serif;
  font-weight: 700;
  color: var(--green);
}
.section h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  background: var(--green);
  border-radius: 2px;
  margin-top: 10px;
}
/* Contact spacing */
#contact .container > p {
  margin: 0 0 16px;
}
.section h3 {
  font-family: "Fraunces", serif;
  font-weight: 600;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  border: 1px solid rgba(46,125,50,0.12);
  border-radius: 12px;
  padding: 20px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
  border-color: rgba(46,125,50,0.20);
}
.card::before {
  content: "";
  display: block;
  height: 4px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--green), #8BC34A);
  margin: -20px -20px 12px;
}
.product-card {
  display: flex;
  flex-direction: column;
}
.product-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
  background: rgba(0,0,0,0.04);
  border: 2px solid rgba(46,125,50,0.12);
}
.card h3 {
  margin: 0 0 8px;
  color: var(--green);
}
.card p {
  margin: 0 0 16px;
  color: var(--muted);
}
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.benefits li {
  padding-left: 24px;
  position: relative;
}
.benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 20px;
  margin-top: 12px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  align-items: stretch;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-panel {
  background: var(--white);
  border: 2px solid rgba(46,125,50,0.12);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.contact-actions {
  justify-content: flex-end;
  margin-top: 8px;
}
.contact-media {
  margin: 0;
  display: flex;
}
.contact-photo {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border: 2px solid rgba(46,125,50,0.12);
}
.contact-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px;
  align-items: center;
}
.contact-label {
  color: var(--muted);
  font-weight: 600;
}
.contact-value a {
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
}
.contact-value a:hover {
  text-decoration: underline;
}
.contact-email a {
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}
.contact-email a:hover {
  text-decoration: underline;
}
.site-footer {
  border-top: 1px solid rgba(46,125,50,0.22);
  background: var(--greenLight);
  padding: 20px 0;
  margin-top: 0;
}
.site-footer small {
  color: var(--muted);
}
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .benefits {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .header-content {
    height: 56px;
    padding: 8px 0;
    gap: 8px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .nav a {
    margin: 0 12px 0 0;
  }
  .brand-name {
    font-size: 18px;
  }
  .brand-logo {
    height: 36px;
    width: 36px;
  }
  .hero-copy h1 {
    font-size: 34px;
  }
  .hero-copy {
    padding: 0;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--green);
    border-bottom: none;
    padding: 12px 20px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 200ms ease, opacity 200ms ease, visibility 0s linear 200ms;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform 200ms ease, opacity 200ms ease, visibility 0s;
  }
  .nav a {
    display: inline-block;
    margin-right: 16px;
    margin-bottom: 8px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .section {
    padding: 52px 0;
  }
  .btn {
    height: 46px;
    padding: 0 16px;
    font-size: 15px;
  }
  .cta-group {
    gap: 10px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-photo {
    height: auto;
    aspect-ratio: 3 / 4;
    object-position: 50% 30%;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 72px 0;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .cta-group .btn {
    flex: 1 1 100%;
  }
  .section h2 {
    margin-bottom: 18px;
  }
  .benefits li {
    font-size: 15px;
    line-height: 1.6;
  }
  .contact-item {
    grid-template-columns: 120px 1fr;
  }
  .contact-photo {
    height: auto;
    aspect-ratio: 3 / 4;
    object-position: 50% 35%;
  }
}
