:root {
  --forest: #003933;
  --gold: #c0a730;
  --linen: #eae4d6;
  --oak: #8a7554;
  --bark: #4d3a2a;
  --white: #fff;
  --ink: #182522;
  --muted: #66706d;
  --line: rgba(0, 57, 51, .14);
  --shadow: 0 22px 60px rgba(20, 35, 30, .10);
  --radius: 22px;
  --container: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--forest); font-weight: 750; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.6rem, 5.7vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.65rem); }
h3 { font-size: 1.28rem; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.container--narrow { max-width: 860px; }
.section { padding: 110px 0; }
.section--linen { background: #f2eee4; background: color-mix(in srgb, var(--linen) 72%, white); }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 999; background: #fff; color: var(--forest); padding: 12px 18px; border-radius: 10px; box-shadow: var(--shadow); }
.skip-link:focus { top: 16px; }

.eyebrow {
  margin-bottom: 15px;
  color: var(--oak);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow--gold { color: var(--gold); }
.lead { font-size: clamp(1.1rem, 1.8vw, 1.35rem); line-height: 1.65; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 25px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  background: var(--gold);
  color: var(--forest);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(192, 167, 48, .24); background: #d0b83f; }
.button--dark { background: var(--forest); border-color: var(--forest); color: #fff; }
.button--dark:hover { background: #07564d; box-shadow: 0 12px 30px rgba(0, 57, 51, .2); }
.button--small { min-height: 42px; padding: 9px 18px; font-size: .9rem; }
.button--wide { min-width: 235px; }
.button--disabled { background: #bcc3c1; border-color: #bcc3c1; color: #fff; cursor: not-allowed; }
.button--disabled:hover { transform: none; box-shadow: none; background: #bcc3c1; }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--forest); font-weight: 750; }
.text-link span { display: grid; width: 34px; height: 34px; place-items: center; border: 1px solid currentColor; border-radius: 50%; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.text-link--light { color: #fff; }

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid rgba(0, 57, 51, .09);
  backdrop-filter: blur(14px);
}
.header-inner { display: flex; min-height: 86px; align-items: center; gap: 28px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand img { width: 230px; height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 29px); margin-left: auto; }
.main-nav a { position: relative; color: #28433e; font-size: .91rem; font-weight: 650; white-space: nowrap; }
.main-nav a::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; background: var(--gold); content: ""; transform: scaleX(0); transition: transform .2s ease; }
.main-nav a:hover::after { transform: scaleX(1); }
.cart-link { display: flex; align-items: center; gap: 7px; color: var(--forest); font-weight: 750; white-space: nowrap; }
.cart-link svg { width: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cart-count { display: grid; min-width: 23px; height: 23px; place-items: center; padding: 0 5px; border-radius: 20px; background: var(--gold); color: var(--forest); font-size: .75rem; }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle > span:not(.visually-hidden) { display: block; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--forest); transition: transform .2s ease, opacity .2s ease; }

/* Home hero */
.hero { position: relative; display: flex; min-height: min(790px, calc(100vh - 86px)); align-items: center; overflow: hidden; background: var(--forest); color: #fff; }
.hero__image, .hero__overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__image { object-fit: cover; object-position: center; }
.hero__overlay { background: linear-gradient(90deg, rgba(0, 34, 30, .96) 0%, rgba(0, 44, 39, .78) 36%, rgba(0, 44, 39, .13) 71%, rgba(0, 35, 31, .22) 100%); }
.hero__content { position: relative; z-index: 1; padding: 100px 0 155px; }
.hero__content > * { max-width: 690px; }
.hero__content h1 { max-width: 780px; margin-bottom: 24px; color: #fff; }
.hero__content > p:not(.hero__kicker) { max-width: 610px; margin-bottom: 38px; color: rgba(255,255,255,.82); font-size: clamp(1.12rem, 2vw, 1.45rem); line-height: 1.55; }
.hero__kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; color: var(--gold); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero__kicker span { width: 37px; height: 2px; background: var(--gold); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }
.hero__facts { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.24); }
.hero__facts span { position: relative; padding: 25px 28px 25px 53px; border-right: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.88); font-size: .88rem; font-weight: 650; }
.hero__facts span::before { position: absolute; top: 31px; left: 28px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); content: ""; }

/* Sections */
.section-heading { margin-bottom: 55px; }
.section-heading h2 { max-width: 770px; margin-bottom: 0; }
.section-heading--split { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 80px; }
.section-heading--split > p { max-width: 480px; margin: 0 0 8px; color: var(--muted); font-size: 1.08rem; }
.section-heading--row { display: flex; align-items: end; justify-content: space-between; gap: 35px; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.benefit-card { position: relative; min-height: 330px; padding: 30px 27px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.benefit-card::after { position: absolute; right: -55px; bottom: -65px; width: 150px; height: 150px; border-radius: 50%; background: var(--linen); content: ""; opacity: .7; }
.benefit-card--gold { background: var(--gold); border-color: var(--gold); }
.benefit-card--gold::after { background: rgba(255,255,255,.24); }
.benefit-card__number { display: block; margin-bottom: 52px; color: var(--oak); font-size: .76rem; font-weight: 800; }
.benefit-card--gold .benefit-card__number { color: var(--forest); }
.benefit-card svg { width: 48px; height: 48px; margin-bottom: 25px; fill: none; stroke: var(--forest); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card h3 { position: relative; z-index: 1; margin-bottom: 12px; }
.benefit-card p { position: relative; z-index: 1; margin: 0; color: #63706d; font-size: .93rem; }
.benefit-card--gold p { color: rgba(0,57,51,.75); }

/* Product cards */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card { overflow: hidden; border: 1px solid rgba(0,57,51,.11); border-radius: var(--radius); background: #fff; transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.product-card__image { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; background: #f4f2ea; }
.product-card__image > img { width: 100%; height: 100%; object-fit: contain; transition: transform .35s ease; }
.product-card:hover .product-card__image > img { transform: scale(1.035); }
.product-card__placeholder { display: grid; width: 100%; height: 100%; place-items: center; background: radial-gradient(circle, #fff 0, var(--linen) 75%); }
.product-card__placeholder img { width: 30%; opacity: .42; }
.product-card__body { padding: 24px; }
.product-card__body .eyebrow { margin-bottom: 9px; }
.product-card__body h3 { min-height: 2.7em; margin-bottom: 20px; font-size: 1.18rem; }
.product-card__body h3 a:hover { color: var(--oak); }
.product-card__bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price { color: var(--forest); font-size: 1.16rem; }
.button--icon { min-height: 43px; padding: 10px 16px; font-size: .85rem; }
.quick-add { margin: 0; }
.sold-out { color: var(--muted); font-size: .83rem; }
.empty-state { display: flex; min-height: 360px; flex-direction: column; align-items: center; justify-content: center; padding: 55px 25px; border: 1px dashed rgba(0,57,51,.24); border-radius: var(--radius); text-align: center; }
.empty-state img { margin-bottom: 18px; opacity: .6; }
.empty-state h2, .empty-state h3 { margin-bottom: 12px; }
.empty-state p { max-width: 520px; color: var(--muted); }

/* Production and trust */
.production { overflow: hidden; }
.production__grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); align-items: center; gap: clamp(60px, 8vw, 125px); }
.production__media { position: relative; max-width: 505px; }
.production__media::before { position: absolute; z-index: -1; top: -32px; right: -35px; width: 78%; height: 82%; border-radius: var(--radius); background: var(--linen); content: ""; }
.production__media > img { width: 100%; max-height: 630px; border-radius: 160px 160px 20px 20px; box-shadow: var(--shadow); object-fit: cover; object-position: center; }
.production__badge { position: absolute; right: -40px; bottom: 40px; display: flex; width: 165px; height: 165px; flex-direction: column; align-items: center; justify-content: center; border: 8px solid #fff; border-radius: 50%; background: var(--gold); color: var(--forest); text-align: center; }
.production__badge strong { font-size: 1.35rem; }
.production__badge span { max-width: 110px; font-size: .72rem; line-height: 1.3; }
.production__content h2 { max-width: 670px; margin-bottom: 27px; }
.production__content .lead { max-width: 650px; color: var(--muted); }
.check-list { display: grid; gap: 15px; margin: 32px 0 40px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 13px; color: var(--forest); font-weight: 650; }
.check-list span { display: grid; width: 28px; height: 28px; flex: 0 0 28px; place-items: center; border-radius: 50%; background: var(--linen); color: var(--forest); }
.trust { background: var(--forest); }
.trust__grid { display: grid; grid-template-columns: 1fr 1.25fr; align-items: center; gap: 75px; }
.trust h2 { max-width: 520px; margin-bottom: 0; color: #fff; }
.trust__facts { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius); }
.trust__facts div { padding: 27px 22px; border-right: 1px solid rgba(255,255,255,.2); }
.trust__facts div:last-child { border: 0; }
.trust__facts span, .trust__facts strong { display: block; }
.trust__facts span { min-height: 43px; margin-bottom: 17px; color: rgba(255,255,255,.62); font-size: .76rem; line-height: 1.35; }
.trust__facts strong { color: var(--gold); font-size: clamp(.9rem, 1.4vw, 1.15rem); overflow-wrap: anywhere; }
.cta-section { padding: 75px 0; background: var(--gold); }
.cta-section__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-section h2 { max-width: 780px; margin-bottom: 0; }
.cta-section .eyebrow { color: var(--forest); }
.cta-section .button { flex: 0 0 auto; border-color: var(--forest); background: var(--forest); color: #fff; }

/* Online payment */
.payment-home { padding: 62px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #f8f6ef; }
.payment-home__inner { display: grid; grid-template-columns: 210px 1fr auto; align-items: center; gap: 45px; }
.payment-home__brand { display: flex; align-items: center; gap: 13px; color: var(--forest); }
.payment-home__brand > span, .payment-feature__mark, .cart-payment__mark { display: grid; place-items: center; border-radius: 50%; background: var(--forest); color: #fff; font-weight: 900; }
.payment-home__brand > span { width: 62px; height: 62px; font-size: 1.75rem; }
.payment-home__brand strong { font-size: 1.45rem; letter-spacing: -.03em; }
.payment-home h2 { margin-bottom: 8px; font-size: clamp(1.65rem, 3vw, 2.55rem); }
.payment-home p { margin-bottom: 0; color: var(--muted); }
.payment-home .eyebrow { margin-bottom: 10px; color: var(--oak); }
.payment-home__badges, .payment-feature__cards { display: flex; flex-wrap: wrap; gap: 7px; }
.payment-home__badges span, .payment-feature__cards span { padding: 8px 11px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: var(--forest); font-size: .72rem; font-weight: 800; }
.payment-feature { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 24px; margin: 38px 0 48px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #f8f6ef; }
.payment-feature__mark { width: 70px; height: 70px; font-size: 2rem; }
.payment-feature h2 { margin: 0 0 8px; font-size: clamp(1.55rem, 3vw, 2.1rem); }
.payment-feature p { margin: 0; color: var(--muted); }
.payment-feature .eyebrow { margin-bottom: 9px; }
.payment-feature__cards { grid-column: 2; }
.cart-payment { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid rgba(0,57,51,.14); }
.cart-payment__mark { width: 40px; height: 40px; flex: 0 0 40px; }
.cart-payment strong, .cart-payment small { display: block; }
.cart-payment strong { color: var(--forest); font-size: .88rem; }
.cart-payment small { margin-top: 2px; color: var(--muted); font-size: .68rem; line-height: 1.35; }
.static-page-shell[hidden] { display: none !important; }
.static-information-page .site-header { position: sticky; }

/* Shared inner pages */
.page-hero { background: var(--forest); color: #fff; }
.page-hero--compact { padding: 70px 0 75px; }
.page-hero h1 { max-width: 960px; margin: 0; color: #fff; font-size: clamp(2.55rem, 5vw, 4.65rem); }
.page-hero .eyebrow { color: var(--gold); }
.page-intro { max-width: 760px; margin-top: 24px; color: rgba(255,255,255,.72); font-size: 1.1rem; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 32px; color: rgba(255,255,255,.57); font-size: .78rem; }
.breadcrumbs a:hover { color: #fff; }
.product-page .breadcrumbs { color: var(--muted); }
.product-page .breadcrumbs a:hover { color: var(--forest); }
.category-list { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 45px; }
.category-list a { display: flex; align-items: center; gap: 13px; padding: 12px 18px; border: 1px solid var(--line); border-radius: 100px; color: var(--forest); font-weight: 700; }
.category-list a:hover { background: var(--forest); color: #fff; }
.pagination { margin-top: 55px; text-align: center; }
.pagination a, .pagination span { display: inline-grid; min-width: 42px; height: 42px; place-items: center; margin: 3px; border: 1px solid var(--line); border-radius: 50%; }
.pagination .current { background: var(--forest); color: #fff; }

/* Product detail */
.product-page { padding-top: 45px; }
.product-view { display: grid; grid-template-columns: minmax(0, 1.06fr) minmax(380px, .94fr); align-items: start; gap: clamp(48px, 7vw, 95px); }
.product-gallery__main { display: grid; aspect-ratio: 1 / 1; place-items: center; overflow: hidden; border-radius: var(--radius); background: #f4f2ea; }
.product-gallery__main > img { width: 100%; height: 100%; object-fit: contain; }
.product-gallery__thumbs { display: flex; gap: 10px; margin-top: 13px; overflow-x: auto; }
.product-gallery__thumbs button { width: 78px; height: 78px; flex: 0 0 78px; padding: 3px; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; }
.product-gallery__thumbs button:hover { border-color: var(--gold); }
.product-gallery__thumbs img { width: 100%; height: 100%; object-fit: cover; }
.product-info { position: sticky; top: 125px; }
.product-info h1 { margin-bottom: 20px; font-size: clamp(2.25rem, 4vw, 4rem); }
.product-price { margin-bottom: 21px; color: var(--forest); font-size: 2rem; font-weight: 800; }
.product-promise { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.product-promise span { padding: 7px 11px; border-radius: 100px; background: var(--linen); color: var(--forest); font-size: .76rem; font-weight: 750; }
.product-form { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 15px 40px rgba(0,57,51,.06); }
.product-form > label { display: block; margin: 16px 0 7px; color: var(--muted); font-size: .78rem; font-weight: 750; text-transform: uppercase; }
.product-form > label:first-child { margin-top: 0; }
.product-form select { width: 100%; min-height: 50px; padding: 10px 13px; border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink); }
.buy-row { display: flex; gap: 12px; }
.quantity { display: grid; grid-template-columns: 38px 48px 38px; height: 54px; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 100px; }
.quantity button { border: 0; background: transparent; color: var(--forest); font-size: 1.2rem; cursor: pointer; }
.quantity input { width: 100%; border: 0; outline: none; background: transparent; text-align: center; -moz-appearance: textfield; }
.quantity input::-webkit-outer-spin-button, .quantity input::-webkit-inner-spin-button { margin: 0; -webkit-appearance: none; }
.product-service { display: grid; gap: 0; margin: 22px 0 0; padding: 0; list-style: none; }
.product-service li { display: grid; grid-template-columns: 110px 1fr; gap: 14px; padding: 15px 2px; border-bottom: 1px solid var(--line); font-size: .88rem; }
.product-service li strong { color: var(--forest); }
.product-service li span { color: var(--muted); }
.product-service a { color: var(--oak); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.product-description { margin-top: 100px; padding-top: 65px; border-top: 1px solid var(--line); }
.product-description > h2 { max-width: 720px; }

/* Cart */
.cart-form { display: grid; grid-template-columns: 1fr 355px; align-items: start; gap: 45px; }
.cart-table { border-top: 1px solid var(--line); }
.cart-item { display: grid; grid-template-columns: 110px 1fr 130px 130px; align-items: center; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.cart-item__image { display: grid; aspect-ratio: 1; place-items: center; overflow: hidden; border-radius: 13px; background: #f4f2ea; }
.cart-item__image img { width: 100%; height: 100%; object-fit: contain; }
.cart-item__info h2 { margin: 0 0 6px; font-size: 1.05rem; }
.cart-item__info p { margin-bottom: 7px; color: var(--muted); font-size: .84rem; }
.remove-link { color: #8f4e45; font-size: .79rem; text-decoration: underline; text-underline-offset: 3px; }
.cart-item__quantity label { display: block; margin-bottom: 6px; color: var(--muted); font-size: .71rem; }
.cart-item__quantity input { width: 80px; height: 43px; padding: 5px; border: 1px solid var(--line); border-radius: 8px; text-align: center; }
.cart-item__price { color: var(--forest); text-align: right; }
.cart-summary { position: sticky; top: 120px; padding: 28px; border-radius: var(--radius); background: var(--linen); }
.cart-total { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin: 24px 0; padding-top: 22px; border-top: 1px solid rgba(0,57,51,.14); }
.cart-total strong { color: var(--forest); font-size: 1.6rem; }
.cart-summary .button { width: 100%; }
.cart-summary > p { margin: 14px 5px 0; color: var(--muted); font-size: .75rem; line-height: 1.45; text-align: center; }
.text-button { padding: 0; border: 0; background: none; color: var(--forest); font-size: .84rem; font-weight: 750; text-decoration: underline; cursor: pointer; text-underline-offset: 4px; }

/* Text, legal and contacts */
.prose { color: #354441; font-size: 1.03rem; line-height: 1.82; }
.prose > :first-child { margin-top: 0; }
.prose h2 { margin-top: 58px; margin-bottom: 20px; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.prose h3 { margin-top: 36px; }
.prose a { color: #766316; font-weight: 700; text-decoration: underline; text-decoration-color: rgba(118,99,22,.34); text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: 23px; }
.prose li { margin-bottom: 8px; }
.legal-meta { display: inline-flex; margin-bottom: 32px; padding: 7px 13px; border-radius: 100px; background: var(--linen); color: var(--forest); font-size: .8rem; font-weight: 750; }
.legal-note { margin: 36px 0 48px; padding: 25px 28px; border-left: 4px solid var(--gold); border-radius: 0 14px 14px 0; background: #f6f3e9; }
.legal-note > strong { display: block; margin-bottom: 7px; color: var(--forest); font-size: 1.03rem; }
.legal-note p { margin: 0; }
.info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 42px 0 60px; }
.info-grid--two { grid-template-columns: repeat(2, 1fr); }
.info-card { padding: 25px; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.info-card > span { display: block; margin-bottom: 14px; color: var(--oak); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.info-card > strong { display: block; margin-bottom: 8px; color: var(--forest); font-size: 1.12rem; overflow-wrap: anywhere; }
.info-card p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.details-table { margin: 26px 0; border-top: 1px solid var(--line); }
.details-table p { display: grid; grid-template-columns: minmax(170px, .7fr) 1.3fr; gap: 25px; margin: 0; padding: 15px 0; border-bottom: 1px solid var(--line); }
.details-table span { color: var(--muted); }
.details-table strong { color: var(--forest); font-weight: 650; overflow-wrap: anywhere; }
.contact-panel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin: 38px 0 60px; overflow: hidden; border-radius: 17px; background: var(--forest); }
.contact-panel > div { padding: 27px 24px; background: rgba(255,255,255,.06); }
.contact-panel span, .contact-panel a { display: block; }
.contact-panel span { margin-bottom: 10px; color: rgba(255,255,255,.56); font-size: .75rem; text-transform: uppercase; }
.contact-panel a { color: var(--gold); font-weight: 750; overflow-wrap: anywhere; }

/* Search, articles, 404 */
.search-form { display: flex; max-width: 720px; gap: 10px; margin-top: 30px; }
.search-form input { min-width: 0; flex: 1; padding: 14px 18px; border: 1px solid rgba(255,255,255,.35); border-radius: 100px; background: rgba(255,255,255,.1); color: #fff; outline: none; }
.search-form input::placeholder { color: rgba(255,255,255,.53); }
.search-results, .article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.search-results article, .article-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); }
.search-results h2, .article-card h2 { font-size: 1.4rem; }
.search-results p, .article-card > p { color: var(--muted); }
.search-summary { margin-bottom: 30px; color: var(--muted); }
.not-found { display: grid; min-height: 70vh; place-items: center; padding: 90px 0; background: var(--linen); }
.not-found__inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.not-found img { margin-bottom: 24px; opacity: .65; }
.not-found h1 { margin-bottom: 18px; }
.not-found > p, .not-found__inner > p:not(.eyebrow) { max-width: 550px; color: var(--muted); }

/* Footer and cookie notice */
.site-footer { padding: 75px 0 25px; background: #002a26; color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 55px; }
.footer-brand img { width: 240px; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: .94; }
.footer-brand p { max-width: 280px; margin: 0; font-size: .9rem; }
.footer-title { margin-bottom: 20px; color: #fff; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-grid > div:not(.footer-brand) > a { display: block; margin-bottom: 10px; font-size: .87rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 58px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.45); font-size: .75rem; }
.cookie-notice { position: fixed; z-index: 300; right: 20px; bottom: 20px; display: flex; width: min(520px, calc(100% - 40px)); align-items: center; gap: 18px; padding: 18px 20px; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; background: var(--forest); box-shadow: 0 18px 60px rgba(0,0,0,.26); color: #fff; }
.cookie-notice[hidden] { display: none; }
.cookie-notice p { margin: 0; font-size: .82rem; line-height: 1.45; }
.cookie-notice p a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie-notice .button { flex: 0 0 auto; }

/* Checkout */
.checkout-page { background: #f7f6f1; }
.checkout-header { padding: 20px 0; border-bottom: 1px solid var(--line); background: #fff; }
.checkout-header .container { display: flex; align-items: center; justify-content: space-between; gap: 25px; }
.checkout-header .brand img { width: 225px; }
.checkout-back { color: var(--forest); font-size: .88rem; font-weight: 750; }
.checkout-main { min-height: 65vh; padding: 55px 0; }
.checkout-main input, .checkout-main textarea, .checkout-main select { border-radius: 8px; }
.checkout-main button, .checkout-main input[type="submit"] { border-radius: 100px; }
.checkout-footer { padding: 25px 0; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.checkout-footer .container { display: flex; justify-content: space-between; gap: 25px; }
.checkout-footer strong { color: var(--forest); }
.checkout-footer a { color: var(--forest); text-decoration: underline; }

@media (max-width: 1100px) {
  .main-nav { position: absolute; top: calc(100% + 1px); right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 15px 20px 24px; border-bottom: 1px solid var(--line); background: #fff; box-shadow: 0 15px 30px rgba(0,57,51,.08); }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 11px 0; }
  .main-nav a::after { display: none; }
  .menu-toggle { display: block; margin-left: auto; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .trust__grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr repeat(3, 1fr); gap: 32px; }
  .cart-form { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .payment-home__inner { grid-template-columns: 180px 1fr; }
  .payment-home__badges { grid-column: 2; }
}

@media (max-width: 820px) {
  .section { padding: 78px 0; }
  .header-inner { min-height: 76px; }
  .brand img { width: 195px; }
  .cart-link__text { display: none; }
  .hero { min-height: 720px; }
  .hero__image { object-position: 64% center; }
  .hero__overlay { background: linear-gradient(90deg, rgba(0,40,35,.96) 0%, rgba(0,40,35,.72) 55%, rgba(0,40,35,.35) 100%); }
  .hero__content { padding: 80px 0 185px; }
  .hero__content > * { max-width: 650px; }
  .hero__facts { grid-template-columns: 1fr; padding: 12px 0; }
  .hero__facts span { padding: 8px 20px 8px 43px; border: 0; }
  .hero__facts span::before { top: 15px; left: 23px; }
  .section-heading--split { grid-template-columns: 1fr; gap: 22px; }
  .section-heading--row { align-items: start; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .production__grid { grid-template-columns: 1fr; }
  .production__media { margin-inline: auto; }
  .product-view { grid-template-columns: 1fr; }
  .product-info { position: static; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
  .cart-item { grid-template-columns: 90px 1fr 100px; }
  .cart-item__quantity { grid-column: 2 / 3; }
  .cart-item__price { grid-column: 3; grid-row: 1; }
  .contact-panel { grid-template-columns: 1fr; }
  .payment-home__inner { grid-template-columns: 1fr; gap: 24px; }
  .payment-home__badges { grid-column: auto; }
}

@media (max-width: 580px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 62px 0; }
  .header-inner { gap: 9px; }
  .brand img { width: 155px; }
  .menu-toggle { margin-left: auto; }
  .cart-link { gap: 3px; }
  .hero { min-height: 700px; }
  .hero__image { object-position: 68% center; }
  .hero__overlay { background: linear-gradient(90deg, rgba(0,38,34,.97) 0%, rgba(0,38,34,.78) 67%, rgba(0,38,34,.52) 100%); }
  .hero__content { padding-top: 70px; }
  .hero__content h1 { font-size: clamp(2.55rem, 13vw, 4.3rem); }
  .hero__actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .section-heading { margin-bottom: 35px; }
  .section-heading--row { align-items: start; flex-direction: column; }
  .benefit-grid, .product-grid, .info-grid, .info-grid--two, .article-grid, .search-results { grid-template-columns: 1fr; }
  .benefit-card { min-height: 285px; }
  .benefit-card__number { margin-bottom: 32px; }
  .product-card__body h3 { min-height: auto; }
  .production__media { width: calc(100% - 22px); }
  .production__badge { right: -18px; bottom: 22px; width: 132px; height: 132px; border-width: 6px; }
  .trust__facts { grid-template-columns: 1fr; }
  .trust__facts div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .trust__facts span { min-height: 0; }
  .cta-section__inner { align-items: flex-start; flex-direction: column; }
  .buy-row { align-items: stretch; flex-direction: column; }
  .quantity { width: 134px; }
  .button--wide { width: 100%; }
  .product-form { padding: 21px; }
  .product-description { margin-top: 65px; padding-top: 45px; }
  .page-hero--compact { padding: 52px 0 58px; }
  .cart-item { grid-template-columns: 75px 1fr; gap: 15px; }
  .cart-item__price { grid-column: 2; grid-row: 2; text-align: left; }
  .cart-item__quantity { grid-column: 2; grid-row: 3; }
  .details-table p { grid-template-columns: 1fr; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .cookie-notice { align-items: stretch; flex-direction: column; }
  .cookie-notice .button { width: 100%; }
  .search-form { align-items: stretch; flex-direction: column; }
  .checkout-header .container { align-items: flex-start; flex-direction: column; }
  .payment-feature { grid-template-columns: 1fr; }
  .payment-feature__cards { grid-column: auto; }
  .checkout-footer .container { flex-direction: column; }
}
