:root {
  --ink: #17231f;
  --muted: #60706a;
  --green: #145c66;
  --leaf: #3d8b8f;
  --saffron: #e39a2f;
  --cream: #edf7f7;
  --paper: #fbfcfa;
  --line: #dbe8e7;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(36, 89, 74, 0.13);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open,
body.cart-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 241, 0.92);
  border-bottom: 1px solid rgba(229, 220, 203, 0.85);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(36, 89, 74, 0.2);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 12px;
  color: #31433d;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--green);
  background: rgba(110, 155, 89, 0.13);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  position: relative;
  color: var(--green);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--saffron);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(36, 89, 74, 0.2);
}

.button.secondary {
  color: var(--green);
  background: var(--white);
  border-color: var(--line);
}

.button.ghost {
  color: var(--green);
  background: rgba(20, 92, 102, 0.08);
  border-color: transparent;
}

.button.block {
  width: 100%;
}

.text-link {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #dbe9ec;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(248, 242, 231, 0.98) 0%, rgba(248, 242, 231, 0.84) 43%, rgba(248, 242, 231, 0.2) 70%);
  z-index: 1;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 70px 0 96px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--saffron);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  margin-top: 16px;
  font-size: clamp(42px, 6vw, 74px);
  max-width: 11ch;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  max-width: 560px;
  margin-top: 22px;
  font-size: 18px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -42px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-item {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: var(--white);
}

.trust-item svg {
  flex: 0 0 auto;
  color: var(--saffron);
}

.trust-item strong {
  display: block;
  font-size: 15px;
}

.trust-item span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 86px 0;
}

.section.alt {
  background: var(--cream);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 520px;
}

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

.product-card,
.story-panel,
.checkout-panel,
.contact-panel,
.article-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(36, 89, 74, 0.08);
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 92, 102, 0.28);
  box-shadow: 0 18px 42px rgba(20, 92, 102, 0.14);
}

.product-art {
  display: block;
  position: relative;
  aspect-ratio: 16 / 8.8;
  overflow: hidden;
  background: #e8f1f1;
}

.product-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

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

.product-body {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  padding: 18px;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.service-card-title {
  font-size: 24px;
  line-height: 1.15;
}

.service-card-title a:hover {
  color: var(--green);
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: stretch;
  gap: 12px;
  margin-top: 4px;
}

.product-meta .button {
  flex: 1 1 0;
  min-height: 42px;
  padding: 0 12px;
}

.price,
.price-badge {
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
}

.price-badge {
  position: absolute;
  right: 12px;
  top: 12px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(20, 92, 102, 0.94);
  border-radius: 999px;
  font-size: 16px;
  box-shadow: 0 12px 28px rgba(20, 92, 102, 0.24);
}

.image-name-strip {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.15;
  box-shadow: 0 12px 28px rgba(23, 35, 31, 0.12);
}

.tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  color: var(--saffron);
  background: rgba(227, 154, 47, 0.11);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}

.service-tag {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.page-hero {
  padding: 56px 0 38px;
  background: linear-gradient(135deg, #fbf6ed, #e8f0df);
  border-bottom: 1px solid var(--line);
}

.page-hero .lead {
  max-width: 680px;
}

.page-hero h1 {
  max-width: 760px;
  font-size: clamp(38px, 5vw, 62px);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.filter-button {
  padding: 10px 14px;
  color: var(--green);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

.filter-button.active {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.story-panel {
  padding: 30px;
}

.story-panel ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.story-panel li {
  display: flex;
  gap: 12px;
  color: #384943;
}

.story-panel li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 8px;
  background: var(--saffron);
  border-radius: 50%;
}

.image-panel {
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.article-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.article-card,
.value-card {
  padding: 24px;
}

.value-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.contact-grid,
.checkout-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.contact-panel,
.checkout-panel {
  padding: 24px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #2e4039;
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(36, 89, 74, 0.1);
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
}

.cart-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 35, 31, 0.34);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 0.24s ease;
  box-shadow: -18px 0 40px rgba(23, 35, 31, 0.16);
}

.cart-open .cart-drawer {
  pointer-events: auto;
}

.cart-open .cart-overlay {
  opacity: 1;
}

.cart-open .cart-panel {
  transform: translateX(0);
}

.cart-head,
.cart-foot {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.cart-foot {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-items {
  padding: 18px;
  overflow: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty button {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
}

.cart-total,
.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
  color: #31433d;
}

.checkout-total {
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 22px;
  font-weight: 900;
}

.empty {
  padding: 24px;
  text-align: center;
  color: var(--muted);
}

.note {
  margin-top: 14px;
  color: #795425;
  font-size: 13px;
}

.policy-content {
  display: grid;
  gap: 22px;
  max-width: 860px;
}

.policy-content h2 {
  font-size: 28px;
}

.policy-content ul,
.policy-content ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.policy-content li + li {
  margin-top: 8px;
}

.thank-you-details {
  margin-top: 24px;
}

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

.summary-card {
  padding: 18px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.summary-card.full {
  grid-column: 1 / -1;
}

.summary-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.summary-row span,
.summary-card p {
  color: var(--muted);
}

.summary-row strong {
  text-align: right;
}

.summary-row.total {
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.email-copy-button {
  margin-top: 16px;
}

.product-detail {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
  margin-top: 24px;
}

.product-detail-media {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-detail-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-detail-info {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(36, 89, 74, 0.08);
}

.product-detail-info h1 {
  max-width: none;
}

.product-detail-price {
  margin-top: 22px;
  color: var(--green);
  font-size: 34px;
  font-weight: 900;
}

.detail-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.detail-list div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 14px;
  background: #fffdf8;
}

.detail-list strong {
  color: var(--ink);
}

.detail-list span {
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px;
  background: rgba(255, 250, 241, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(23, 35, 31, 0.18);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin-top: 4px;
  font-size: 14px;
}

.cookie-banner .button {
  flex: 0 0 auto;
}

.site-footer {
  padding: 42px 0;
  color: #d7e4dc;
  background: #18362f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 28px;
}

.site-footer p,
.site-footer a {
  color: #c5d5cd;
}

.site-footer h3 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 12px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.copyright {
  padding-top: 24px;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 14px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-grid;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    display: grid;
    padding: 16px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 0.22s ease;
    box-shadow: var(--shadow);
  }

  .nav-open .nav-links {
    transform: translateY(0);
  }

  .nav-links a {
    border-radius: var(--radius);
  }

  .hero {
    min-height: 680px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(248, 242, 231, 0.98) 0%, rgba(248, 242, 231, 0.82) 58%, rgba(248, 242, 231, 0.24) 100%);
  }

  .trust-grid,
  .product-grid,
  .article-grid,
  .values-grid,
  .footer-grid,
  .split,
  .contact-grid,
  .checkout-grid,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .brand span:last-child {
    max-width: 138px;
    line-height: 1.15;
  }

  .nav {
    min-height: 66px;
  }

  .nav-links {
    top: 66px;
  }

  .button {
    width: 100%;
  }

  .product-meta {
    display: grid;
  }

  .product-meta .button {
    width: 100%;
  }

  .service-card-top {
    align-items: flex-start;
  }

  .summary-grid {
    grid-template-columns: 1fr;
  }

  .summary-row {
    display: grid;
  }

  .summary-row strong {
    text-align: left;
  }

  .detail-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cookie-banner {
    display: grid;
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .hero-content {
    padding: 48px 0 86px;
  }

  .trust-strip {
    margin-top: -24px;
  }

  .trust-item {
    min-height: 76px;
  }

  .section {
    padding: 62px 0;
  }
}
