:root {
  --forest: #2d5016;
  --sage: #87a878;
  --cream: #f5f1eb;
  --brown: #8b6914;
  --terracotta: #c67d4a;
  --off-white: #fcfaf6;
  --text: #2f2b27;
  --shadow: 0 18px 40px rgba(45, 80, 22, 0.12);
  --shadow-soft: 0 12px 24px rgba(139, 105, 20, 0.12);
  --radius-xl: 34px 58px 42px 54px;
  --radius-lg: 28px 42px 30px 48px;
  --radius-md: 22px 34px 24px 38px;
  --transition: all 0.45s ease-in-out;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Tajawal', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(135, 168, 120, 0.18), transparent 32%),
    radial-gradient(circle at bottom right, rgba(198, 125, 74, 0.12), transparent 25%),
    var(--off-white);
  line-height: 1.8;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: -1;
  inset: auto;
  width: 260px;
  height: 260px;
  background:
    radial-gradient(circle at 30% 30%, rgba(135, 168, 120, 0.18), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(198, 125, 74, 0.14), transparent 56%);
  filter: blur(2px);
  pointer-events: none;
}

body::before {
  top: 6%;
  left: 2%;
  border-radius: 59% 41% 52% 48% / 43% 53% 47% 57%;
}

body::after {
  bottom: 8%;
  right: 2%;
  border-radius: 43% 57% 40% 60% / 54% 38% 62% 46%;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

button,
a {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.page-shell {
  overflow: hidden;
}

.site-header {
  position: relative;
  background:
    linear-gradient(180deg, rgba(245, 241, 235, 0.96), rgba(245, 241, 235, 0.82)),
    repeating-radial-gradient(circle at top right, rgba(135, 168, 120, 0.08) 0 8px, transparent 8px 28px);
}

.site-header::after,
.products::before,
.delivery::after {
  content: "";
  position: absolute;
  background: no-repeat center/contain;
  opacity: 0.18;
  pointer-events: none;
}

.site-header::after {
  width: 220px;
  height: 220px;
  left: -2rem;
  bottom: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cpath fill='none' stroke='%232d5016' stroke-width='3' stroke-linecap='round' stroke-dasharray='7 8' d='M38 144c33-58 61-92 104-108-11 36-34 88-77 118-21 14-40 10-27-10Z'/%3E%3Cpath fill='none' stroke='%2387a878' stroke-width='3' stroke-linecap='round' d='M74 90c11 7 19 19 22 34'/%3E%3C/svg%3E");
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 1.2rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--forest);
}

.brand strong {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.2rem;
}

.brand span:last-child {
  display: block;
  font-size: 0.88rem;
  color: rgba(47, 43, 39, 0.75);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  color: var(--off-white);
  background: linear-gradient(135deg, var(--forest), var(--sage));
  border-radius: 41% 59% 47% 53% / 58% 37% 63% 42%;
  box-shadow: var(--shadow-soft);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.nav-links a,
.footer-links a {
  color: var(--forest);
  text-decoration: none;
  padding: 0.7rem 1rem;
  border: 1.5px dashed rgba(45, 80, 22, 0.28);
  border-radius: 999px;
  transition: var(--transition);
}

.nav-links a:hover,
.footer-links a:hover {
  background: rgba(135, 168, 120, 0.18);
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
  min-height: calc(100vh - 88px);
  padding: 2rem 0 4rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--terracotta);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero h1,
.section-heading h2,
.hero-card h2,
.contact-box h2,
.delivery-box h2 {
  margin: 0;
  font-family: 'Libre Baskerville', serif;
  color: var(--forest);
  line-height: 1.3;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4.7rem);
  max-width: 12ch;
}

.hero h1 span {
  color: var(--terracotta);
}

.hero-text,
.section-heading p,
.delivery-box p,
.contact-box p {
  max-width: 60ch;
  color: rgba(47, 43, 39, 0.8);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.8rem 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 0.95rem 1.4rem;
  text-decoration: none;
  border-radius: 28px 42px 24px 38px;
  transition: var(--transition);
}

.btn-primary {
  color: var(--off-white);
  background: linear-gradient(135deg, var(--forest), #3c6920);
  box-shadow: var(--shadow);
}

.btn-secondary {
  color: var(--forest);
  background: rgba(135, 168, 120, 0.16);
  border: 1.5px dashed rgba(45, 80, 22, 0.3);
}

.btn:hover,
.product-meta button:hover {
  transform: translateY(-3px) scale(1.01);
}

.hero-features {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-features li {
  position: relative;
  padding-inline-start: 1.8rem;
}

.hero-features li::before,
.delivery-list li::before {
  content: "❃";
  position: absolute;
  inset-inline-start: 0;
  color: var(--sage);
}

.hero-visual {
  position: relative;
  min-height: 530px;
}

.blob {
  position: absolute;
  inset: auto;
  border-radius: 61% 39% 53% 47% / 45% 51% 49% 55%;
  transition: var(--transition);
}

.blob-main {
  top: 1rem;
  right: 2rem;
  width: min(440px, 100%);
  height: 440px;
  background:
    linear-gradient(180deg, rgba(135, 168, 120, 0.36), rgba(245, 241, 235, 0.55)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cpath fill='none' stroke='%232d5016' stroke-opacity='.18' stroke-width='2' d='M26 145c33-59 61-92 109-116M76 90c9 7 18 18 22 35M100 69c-1 11 2 24 10 35M56 118c12 0 24 4 34 11'/%3E%3C/svg%3E");
  box-shadow: var(--shadow);
}

.blob-soft {
  bottom: 2rem;
  left: 1rem;
  width: 220px;
  height: 220px;
  background: rgba(198, 125, 74, 0.18);
}

.hero-card {
  position: absolute;
  left: 0;
  bottom: 4rem;
  width: min(320px, 88%);
  padding: 1.8rem;
  background: rgba(252, 250, 246, 0.94);
  border: 2px dashed rgba(139, 105, 20, 0.32);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.badge,
.product-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(135, 168, 120, 0.18);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-price,
.price {
  color: var(--brown);
  font-weight: 800;
  font-size: 1.3rem;
}

.products {
  position: relative;
}

.products::before {
  width: 180px;
  height: 180px;
  top: 3rem;
  right: -1.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 160 160'%3E%3Cpath fill='none' stroke='%23c67d4a' stroke-width='3' stroke-linecap='round' stroke-dasharray='6 7' d='M24 117c31-44 53-69 93-90-11 28-28 67-63 95-18 15-42 12-30-5Z'/%3E%3C/svg%3E");
}

.section-heading {
  margin-bottom: 2rem;
}

.text-start {
  text-align: start;
}

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

.product-card {
  overflow: hidden;
  background: rgba(252, 250, 246, 0.96);
  border: 1.5px dashed rgba(45, 80, 22, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px rgba(45, 80, 22, 0.16);
}

.product-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 6;
}

.product-image-wrap img {
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

.product-card:hover img {
  transform: scale(1.06);
}

.product-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(245, 241, 235, 0.92);
}

.product-content {
  padding: 1.3rem;
}

.product-content h3 {
  margin: 0 0 0.6rem;
  font-family: 'Libre Baskerville', serif;
  font-size: 1.05rem;
  color: var(--forest);
}

.product-content p {
  margin: 0 0 1rem;
  color: rgba(47, 43, 39, 0.76);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-meta button {
  padding: 0.75rem 1rem;
  color: var(--off-white);
  background: linear-gradient(135deg, var(--terracotta), #b5642e);
  border-radius: 20px 32px 24px 26px;
  transition: var(--transition);
}

.sustainability {
  background:
    linear-gradient(180deg, rgba(135, 168, 120, 0.12), rgba(245, 241, 235, 0.8)),
    var(--cream);
}

.sustainability-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

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

.eco-badge {
  padding: 1.4rem;
  background: rgba(252, 250, 246, 0.92);
  border: 1.5px dashed rgba(45, 80, 22, 0.26);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.eco-badge strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--forest);
}

.delivery {
  position: relative;
}

.delivery::after {
  width: 190px;
  height: 190px;
  left: -1rem;
  top: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 180'%3E%3Cpath fill='none' stroke='%2387a878' stroke-width='3' stroke-linecap='round' stroke-dasharray='5 9' d='M40 145c21-54 48-93 100-117-5 33-19 83-55 116-19 17-53 19-45 1Z'/%3E%3C/svg%3E");
}

.delivery-box,
.contact-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.2rem;
  background: rgba(252, 250, 246, 0.96);
  border: 2px dashed rgba(139, 105, 20, 0.25);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.delivery-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.delivery-list li {
  position: relative;
  padding-inline-start: 1.7rem;
  color: var(--forest);
  font-weight: 600;
}

.contact {
  padding-top: 1rem;
}

.contact-box {
  background: linear-gradient(135deg, rgba(245, 241, 235, 0.98), rgba(198, 125, 74, 0.08));
}

.site-footer {
  position: relative;
  padding: 2rem 0 3rem;
  background: #efe8de;
}

.site-footer::before {
  content: "";
  display: block;
  height: 16px;
  background:
    radial-gradient(circle at 10px -2px, transparent 12px, rgba(45, 80, 22, 0.18) 13px, rgba(45, 80, 22, 0.18) 15px, transparent 16px) repeat-x;
  background-size: 32px 16px;
  margin-bottom: 1.5rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-content p {
  margin: 0;
  color: rgba(47, 43, 39, 0.75);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

@media (max-width: 1024px) {
  .hero,
  .sustainability-grid,
  .delivery-box,
  .contact-box {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
    padding-bottom: 3rem;
  }

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

  .hero-card {
    left: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 720px) {
  .navbar,
  .nav-links,
  .hero-actions,
  .contact-actions,
  .footer-content {
    flex-direction: column;
    align-items: stretch;
  }

  .navbar {
    text-align: center;
  }

  .brand {
    justify-content: center;
  }

  .nav-links a,
  .footer-links a,
  .btn,
  .product-meta button {
    width: 100%;
  }

  .hero {
    padding-top: 1rem;
  }

  .hero h1 {
    max-width: none;
  }

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

  .blob-main {
    right: 0;
    width: 100%;
    height: 320px;
  }

  .blob-soft {
    width: 150px;
    height: 150px;
  }

  .hero-card {
    position: relative;
    width: 100%;
    left: auto;
    bottom: auto;
    margin-top: 12rem;
  }

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

  .section {
    padding: 4rem 0;
  }

  .delivery-box,
  .contact-box {
    padding: 1.5rem;
  }

  .product-meta {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}