:root {
  --ink: #17211b;
  --muted: #627066;
  --line: #dfe7dc;
  --leaf: #1e7b45;
  --leaf-dark: #115632;
  --mint: #edf7ef;
  --sun: #f5b84b;
  --rose: #d9544d;
  --paper: #fffdf8;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(20, 38, 27, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--white);
  background: var(--leaf);
  font-size: 14px;
}

.top-nav {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-size: 15px;
}

.top-nav a:hover {
  color: var(--leaf-dark);
}

.header-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
}

.header-action,
.button.primary {
  color: var(--white);
  background: var(--leaf);
}

.header-action:hover,
.button.primary:hover {
  background: var(--leaf-dark);
}

.button.secondary {
  color: var(--leaf-dark);
  background: var(--mint);
  border: 1px solid rgba(30, 123, 69, 0.22);
}

.hero {
  position: relative;
  min-height: 74vh;
  display: flex;
  align-items: center;
  padding: 96px clamp(18px, 5vw, 72px) 92px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 26, 16, 0.86), rgba(9, 26, 16, 0.46), rgba(9, 26, 16, 0.12)),
    url("https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(46px, 8vw, 96px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  margin: 22px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-strip div {
  padding: 24px clamp(16px, 3vw, 38px);
  border-right: 1px solid var(--line);
}

.service-strip div:last-child {
  border-right: 0;
}

.service-strip strong {
  display: block;
  font-size: 24px;
}

.service-strip span {
  color: var(--muted);
}

.section {
  padding: 74px clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-heading h2,
.contact-band h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
}

.feature-grid,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-grid article,
.plan,
.cart-panel,
.order-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(20, 38, 27, 0.06);
}

.feature-grid article {
  padding: 26px;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: var(--white);
  background: var(--rose);
  font-weight: 900;
}

.feature-grid h3,
.plan h3,
.cart-panel h3,
.filters h3 {
  margin: 18px 0 8px;
  font-size: 22px;
}

.feature-grid p,
.plan p {
  margin: 0;
  color: var(--muted);
}

.shop-section {
  background: #f4f1e8;
}

.shop-layout {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 86px;
  display: grid;
  gap: 10px;
}

.filter {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
  text-align: left;
  padding: 0 14px;
}

.filter.active,
.filter:hover {
  color: var(--white);
  background: var(--leaf);
  border-color: var(--leaf);
}

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

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(20, 38, 27, 0.08);
}

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

.product-body {
  padding: 18px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.product-card h3 {
  margin: 8px 0 12px;
  font-size: 22px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.price {
  font-size: 22px;
  font-weight: 900;
}

.add-button {
  min-width: 104px;
}

.plans-section {
  background: var(--white);
}

.plan {
  position: relative;
  padding: 28px;
}

.plan.featured {
  border-color: rgba(30, 123, 69, 0.5);
  box-shadow: var(--shadow);
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--leaf-dark);
  background: var(--mint);
  font-size: 12px;
  font-weight: 900;
}

.plan-price {
  color: var(--ink) !important;
  font-size: 28px;
  font-weight: 900;
}

.plan .button {
  margin-top: 22px;
  width: 100%;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.cart-panel,
.order-form {
  padding: 24px;
}

.panel-header,
.cart-row,
.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.panel-header h3 {
  margin: 0;
}

.text-button {
  border: 0;
  color: var(--rose);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.cart-items {
  min-height: 160px;
  margin: 18px 0;
}

.empty-cart {
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
}

.cart-row {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-row strong {
  display: block;
}

.cart-row span {
  color: var(--muted);
  font-size: 14px;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.qty-controls button {
  width: 34px;
  height: 34px;
  border: 0;
  background: var(--mint);
  cursor: pointer;
}

.qty-controls b {
  width: 34px;
  text-align: center;
}

.cart-total {
  padding-top: 18px;
  border-top: 2px solid var(--ink);
  font-size: 22px;
}

.order-form {
  display: grid;
  gap: 16px;
}

.order-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.submit-order {
  width: 100%;
}

.coupon-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: end;
}

.map-field {
  display: grid;
  gap: 12px;
}

.map-field-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.map-field-header div {
  display: grid;
  gap: 4px;
}

.map-field-header span,
.map-status {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.location-button {
  width: auto;
  white-space: nowrap;
}

.delivery-map {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--mint);
}

.map-status {
  margin: 0;
}

.order-message {
  min-height: 24px;
  margin: 0;
  color: var(--leaf-dark);
  font-weight: 800;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 58px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--leaf-dark);
}

.contact-band .eyebrow {
  color: var(--sun);
}

.button.light {
  color: var(--ink);
  background: var(--white);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

@media (max-width: 980px) {
  .top-nav {
    display: none;
  }

  .service-strip,
  .feature-grid,
  .plan-grid,
  .product-grid,
  .checkout-layout {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
    display: flex;
    flex-wrap: wrap;
  }

  .filter {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 10px;
    padding-inline: 14px;
  }

  .header-action {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 14px;
  }

  .hero {
    min-height: 76vh;
    padding-top: 84px;
  }

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

  .button {
    width: 100%;
  }

  .coupon-row {
    grid-template-columns: 1fr;
  }

  .map-field-header {
    align-items: stretch;
    flex-direction: column;
  }

  .service-strip,
  .feature-grid,
  .plan-grid,
  .product-grid,
  .checkout-layout,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-block: 54px;
  }
}
