:root {
  --cream: #f4eddc;
  --cream-strong: #eadcc0;
  --olive: #435b2c;
  --olive-dark: #2d3e1f;
  --brown: #4a2c1b;
  --gold: #b4935f;
  --pear: #d7b66b;
  --white: #fffaf0;
  --shadow: 0 22px 60px rgba(74, 44, 27, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(180, 147, 95, 0.22), transparent 28rem),
    linear-gradient(180deg, var(--cream), #fff8eb 42%, var(--cream));
  color: var(--brown);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 4rem);
  background: rgba(244, 237, 220, 0.88);
  border-bottom: 1px solid rgba(180, 147, 95, 0.28);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 12px 30px rgba(74, 44, 27, 0.1);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  color: var(--olive-dark);
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  color: var(--olive-dark);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transition: width 180ms ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(67, 91, 44, 0.24);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--olive-dark);
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  padding: 8rem clamp(1rem, 6vw, 5rem) 4rem;
}

.hero-content {
  max-width: 720px;
}

.section-kicker {
  margin: 0 0 0.7rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  color: var(--olive-dark);
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 6.7rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.2rem;
}

.hero-copy {
  max-width: 620px;
  margin: 1.4rem 0 2rem;
  color: rgba(74, 44, 27, 0.82);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn.primary {
  background: var(--olive);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(67, 91, 44, 0.24);
}

.btn.secondary {
  background: rgba(255, 250, 240, 0.76);
  border-color: rgba(67, 91, 44, 0.2);
  color: var(--olive-dark);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  border-radius: 999px;
  content: "";
}

.hero-visual::before {
  width: min(38vw, 430px);
  aspect-ratio: 1;
  background: rgba(180, 147, 95, 0.2);
}

.hero-visual::after {
  inset: 11%;
  border: 2px solid rgba(67, 91, 44, 0.18);
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: min(430px, 88vw);
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 6vw, 5rem);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.about {
  background: rgba(255, 250, 240, 0.64);
}

.essence {
  background:
    linear-gradient(135deg, rgba(67, 91, 44, 0.1), rgba(180, 147, 95, 0.08)),
    rgba(234, 220, 192, 0.44);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about-grid > p {
  margin: 0;
  max-width: 660px;
  font-size: 1.08rem;
}

.essence-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  max-width: 1040px;
}

.essence-copy p {
  margin: 0;
  padding: 1.35rem;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.74);
  box-shadow: 0 14px 34px rgba(74, 44, 27, 0.08);
}

.feature-list,
.testimonial-grid,
.product-grid {
  display: grid;
  gap: 1rem;
}

.feature-list article,
.product-card,
.testimonial-card,
.contact-panel {
  border: 1px solid rgba(180, 147, 95, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 14px 34px rgba(74, 44, 27, 0.08);
}

.feature-list article {
  padding: 1.1rem;
}

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

.feature-list strong {
  color: var(--olive-dark);
  font-size: 1.05rem;
}

.feature-list span {
  margin-top: 0.25rem;
  color: rgba(74, 44, 27, 0.76);
}

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

.product-card {
  min-height: 250px;
  padding: 1.35rem;
}

.product-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(215, 182, 107, 0.28);
}

.product-icon::before,
.product-icon::after {
  position: absolute;
  content: "";
}

.icon-fruit::before {
  width: 22px;
  height: 22px;
  border-radius: 50% 50% 46% 54%;
  background: var(--olive);
  box-shadow: 12px 5px 0 var(--pear);
}

.icon-fruit::after {
  width: 14px;
  height: 8px;
  top: 12px;
  right: 14px;
  border-radius: 999px 0;
  background: var(--olive-dark);
  transform: rotate(-24deg);
}

.icon-leaf::before,
.icon-leaf::after {
  width: 26px;
  height: 14px;
  border-radius: 100% 0;
  background: var(--olive);
}

.icon-leaf::before {
  transform: rotate(-18deg) translate(-4px, -2px);
}

.icon-leaf::after {
  background: var(--gold);
  transform: rotate(152deg) translate(-4px, -3px);
}

.icon-jar::before {
  width: 23px;
  height: 28px;
  border: 3px solid var(--brown);
  border-radius: 6px 6px 8px 8px;
  background: rgba(215, 182, 107, 0.5);
}

.icon-jar::after {
  width: 18px;
  height: 5px;
  top: 12px;
  border-radius: 4px;
  background: var(--brown);
}

.icon-basket::before {
  width: 30px;
  height: 20px;
  bottom: 12px;
  border: 3px solid var(--brown);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: repeating-linear-gradient(90deg, rgba(180, 147, 95, 0.68), rgba(180, 147, 95, 0.68) 5px, rgba(255, 250, 240, 0.7) 5px, rgba(255, 250, 240, 0.7) 9px);
}

.icon-basket::after {
  width: 24px;
  height: 18px;
  top: 11px;
  border: 3px solid var(--brown);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
}

.product-card p,
.testimonial-card p,
.contact-panel p {
  color: rgba(74, 44, 27, 0.76);
}

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

.testimonial-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.4rem;
}

.testimonial-card img {
  width: 72px;
  height: 72px;
  border: 3px solid rgba(180, 147, 95, 0.42);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(74, 44, 27, 0.12);
}

.testimonial-card p {
  margin-top: 0;
  font-size: 1.02rem;
}

.testimonial-card strong {
  color: var(--olive-dark);
}

.contact {
  background:
    linear-gradient(135deg, rgba(67, 91, 44, 0.1), rgba(180, 147, 95, 0.12)),
    rgba(255, 250, 240, 0.66);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--olive-dark);
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(67, 91, 44, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--brown);
  font: inherit;
  padding: 0.9rem 1rem;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(180, 147, 95, 0.32);
  border-color: var(--gold);
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
  font-weight: 700;
  color: var(--olive);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem clamp(1rem, 6vw, 5rem);
  background: var(--brown);
  color: var(--cream);
}

.site-footer p {
  margin: 0.2rem 0;
  color: rgba(244, 237, 220, 0.78);
}

.footer-brand {
  margin-bottom: 0.55rem;
  color: var(--white);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(244, 237, 220, 0.24);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 800;
}

.social-links i {
  width: 1rem;
  text-align: center;
  color: var(--pear);
  font-size: 1.05rem;
}

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

  .hero {
    min-height: auto;
    padding-top: 7rem;
  }

  .hero-visual {
    min-height: 320px;
  }

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

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

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.4rem;
    padding: 1rem;
    border: 1px solid rgba(180, 147, 95, 0.28);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.75rem;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .product-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    grid-template-columns: 58px 1fr;
  }

  .testimonial-card img {
    width: 58px;
    height: 58px;
  }

  .product-card {
    min-height: auto;
  }
}

@media (min-width: 721px) {
  .site-header {
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    padding: 0.85rem clamp(1rem, 4vw, 4rem);
    border: 0;
    border-bottom: 1px solid rgba(180, 147, 95, 0.28);
    border-radius: 0;
    transform: none;
  }

  .brand {
    margin-bottom: 0;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .site-nav {
    gap: 1.4rem;
    font-size: 0.95rem;
  }

  .site-nav a {
    padding: 0;
  }

  .site-nav a::after {
    display: block;
  }

  .site-nav a:hover {
    border-radius: 0;
    background: transparent;
  }

  .hero {
    min-height: 86vh;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.5rem;
    padding-top: 8.3rem;
    text-align: center;
  }

  .hero-content {
    display: grid;
    justify-items: center;
    max-width: 820px;
  }

  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    min-height: 220px;
  }

  .hero-visual::before {
    width: min(240px, 46vw);
  }

  .hero-visual::after {
    inset: 2%;
  }

  .hero-visual img {
    width: min(220px, 52vw);
  }

  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }
}
