:root {
  --green-950: #062117;
  --green-900: #0b3324;
  --green-800: #0e4931;
  --green-700: #12623f;
  --green-600: #178253;
  --green-500: #20a66a;
  --green-300: #83d7a4;
  --mint: #e9fbef;
  --mint-2: #f5fff8;
  --gold: #cda35a;
  --ink: #102019;
  --muted: #62736b;
  --line: rgba(16, 32, 25, 0.11);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 33, 23, 0.14);
  --shadow-soft: 0 16px 40px rgba(6, 33, 23, 0.09);
  --radius: 8px;
  --container: 1400px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 0%, rgba(131, 215, 164, 0.28), transparent 32rem),
    linear-gradient(180deg, #fbfffc 0%, #f4faf6 42%, #ffffff 100%);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

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

.section-pad { padding: 92px 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.section-head h2, h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--green-950);
}
h1 { font-size: clamp(2.55rem, 7vw, 5.8rem); margin-bottom: 22px; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin-bottom: 14px; }
h3 { font-size: 1.28rem; margin-bottom: 10px; }
.lead {
  color: #405249;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  max-width: 760px;
}
.eyebrow {
  color: var(--green-600);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  margin-bottom: 12px;
}

.btn {
  border: 0;
  border-radius: var(--radius);
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  box-shadow: 0 16px 34px rgba(23, 130, 83, 0.28);
}
.btn-dark { background: var(--green-950); color: white; }
.btn-light { background: rgba(255,255,255,.82); color: var(--green-950); border: 1px solid rgba(255,255,255,.78); }
.btn-small { min-height: 40px; padding: 0 14px; font-size: .9rem; }
.btn-full { width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(251, 255, 252, 0.82);
  border-bottom: 1px solid rgba(16, 32, 25, 0.08);
}
.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}
.brand-mark {
  width: 52px;
  height: 42px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: transparent;
  font-size: 0;
  background: rgba(6,33,23,.94) url("../images/kap-prirode-transparent.png") center / contain no-repeat;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 12px 24px rgba(18,98,63,.25);
}
.brand small { display: block; color: var(--muted); font-weight: 700; font-size: .72rem; }
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #31443a;
  font-weight: 750;
}
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--green-600); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.76);
  color: var(--green-950);
  display: inline-grid;
  place-items: center;
  font-weight: 900;
  transition: all .2s ease;
  position: relative;
}
.icon-btn:hover { background: var(--green-950); color: white; transform: translateY(-1px); }
.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--green-950);
  font-size: .72rem;
}
.menu-toggle { display: none; }

.hero {
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: center;
  padding: 42px 0 76px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: 46px;
}
.hero-copy { position: relative; z-index: 2; }
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.pill {
  border: 1px solid rgba(23, 130, 83, .16);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--green-800);
  font-weight: 800;
  font-size: .86rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}
.stat {
  border: 1px solid rgba(255,255,255,.9);
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.stat strong { display: block; font-size: 1.5rem; color: var(--green-800); line-height: 1; }
.stat span { color: var(--muted); font-weight: 750; font-size: .85rem; }
.hero-art {
  position: relative;
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero-art img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}
.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,33,23,.22));
}
.hero-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: white;
  background: rgba(6, 33, 23, .48);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  padding: 20px;
}
.hero-card strong { display: block; font-size: 1.25rem; }

.category-grid, .benefit-grid, .offer-grid, .testimonial-grid, .footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.category-card, .benefit-card, .service-card, .testimonial, .faq-item, .summary-panel, .contact-panel {
  border: 1px solid rgba(16, 32, 25, .08);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.category-card, .benefit-card, .service-card, .testimonial { padding: 26px; }
.category-card {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .25s ease, border-color .25s ease;
}
.category-card:hover, .product-card:hover { transform: translateY(-6px); border-color: rgba(23,130,83,.26); }
.category-card .arrow { color: var(--green-600); font-weight: 900; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.product-card {
  border: 1px solid rgba(16, 32, 25, .08);
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(6,33,23,.08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.product-card:hover { box-shadow: var(--shadow); }
.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--mint);
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-media img { transform: scale(1.06); }
.product-media span {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--green-800);
  font-weight: 900;
  font-size: .76rem;
}
.product-info { padding: 18px; }
.product-info p:not(.eyebrow) { color: var(--muted); font-size: .94rem; min-height: 72px; }
.product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.product-actions strong, .detail-price { color: var(--green-800); font-size: 1.35rem; font-weight: 950; }

.band {
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  color: white;
}
.band h2, .band h3 { color: white; }
.band .product-card h3,
.band .product-card h3 a,
.band .product-card .product-info p,
.band .product-card .product-meta .eyebrow {
  color: var(--green-950);
}
.band .eyebrow { color: var(--green-300); }
.band p { color: rgba(255,255,255,.74); }
.band .benefit-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.13);
  color: white;
}
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--mint);
  color: var(--green-800);
  font-weight: 950;
  margin-bottom: 18px;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: center;
}
.feature-panel {
  padding: 34px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #ffffff, var(--mint-2));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.feature-panel img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  width: 100%;
  object-fit: cover;
  margin-bottom: 24px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.filter {
  border: 1px solid var(--line);
  background: white;
  color: var(--green-900);
  border-radius: 999px;
  padding: 10px 15px;
  font-weight: 850;
}
.filter.active {
  background: var(--green-950);
  color: white;
}

.page-hero {
  padding: 78px 0 54px;
  background:
    radial-gradient(circle at 84% 10%, rgba(131,215,164,.28), transparent 28rem),
    linear-gradient(135deg, #03170f 0%, #0a3323 52%, #168454 100%);
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero .lead { max-width: 860px; }
.page-hero h1 { color: white; }
.page-hero .lead { color: rgba(255,255,255,.78); }
.page-hero .eyebrow { color: var(--green-300); }

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: stretch;
  margin: 48px 0 84px;
  padding: clamp(24px, 3vw, 46px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 18% 15%, rgba(131,215,164,.32), transparent 30rem),
    radial-gradient(circle at 88% 86%, rgba(205,163,90,.16), transparent 26rem),
    linear-gradient(135deg, #04180f 0%, #0a3323 48%, #16804f 100%);
  box-shadow: 0 34px 95px rgba(6,33,23,.22);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.product-detail::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 37px;
  border: 1px solid rgba(255,255,255,.13);
  pointer-events: none;
  z-index: -1;
}
.detail-media {
  position: relative;
  align-self: stretch;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 78px rgba(0,0,0,.28);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
}
.detail-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}
.detail-copy {
  align-self: center;
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,255,250,.94));
  backdrop-filter: blur(16px);
  box-shadow: 0 26px 70px rgba(0,0,0,.18);
}

.detail-copy h1 {
  margin-top: 8px;
  font-size: clamp(2.55rem, 5vw, 5.2rem);
  max-width: 720px;
}

.detail-copy .lead {
  color: #405249;
}
.detail-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}
.detail-kicker span,
.detail-kicker small {
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--green-950);
  background: #eefaf2;
  border: 1px solid rgba(22,128,79,.16);
  font-weight: 950;
  line-height: 1;
}
.detail-kicker small {
  color: #0f8d59;
}
.floating-note {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius);
  padding: 16px;
}
.floating-note span { display: block; color: var(--green-800); font-size: 2rem; font-weight: 950; line-height: 1; }
.qty-row {
  display: flex;
  gap: 8px;
  margin: 20px 0;
}
.qty-row input {
  width: 86px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.clean-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
  color: var(--muted);
}
.clean-list li {
  padding: 10px 0 10px 28px;
  position: relative;
}
.clean-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-600);
  font-weight: 900;
}

.detail-service-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.detail-service-row span {
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 13px;
  border-radius: 16px;
  background: white;
  color: var(--green-900);
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(6,33,23,.07);
  font-weight: 900;
  line-height: 1.2;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(440px, 100%);
  height: 100dvh;
  z-index: 80;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(22px);
  transform: translateX(104%);
  transition: transform .32s ease;
  box-shadow: -24px 0 70px rgba(6,33,23,.18);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.drawer-head, .drawer-foot {
  padding: 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-foot { border-top: 1px solid var(--line); border-bottom: 0; display: block; }
.drawer-foot .summary-line { margin-bottom: 16px; }
.drawer-body { padding: 14px; overflow: auto; flex: 1; }
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,33,23,.36);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.overlay.open { opacity: 1; pointer-events: auto; }

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  margin-bottom: 10px;
}
.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius);
}
.cart-item h4 { margin: 0 0 2px; }
.cart-item p { margin: 0; color: var(--muted); font-size: .9rem; }
.mini-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.mini-qty button {
  border: 1px solid var(--line);
  background: var(--mint-2);
  border-radius: 6px;
  min-width: 28px;
  height: 28px;
  font-weight: 900;
}
.mini-qty .remove { color: #9d2732; background: #fff5f5; padding: 0 8px; }

.cart-page-grid, .checkout-grid, .contact-grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 24px;
  align-items: start;
}
.summary-panel, .contact-panel { padding: 24px; }
.summary-panel.wide { max-width: 740px; margin: 0 auto; }
.summary-line, .summary-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.summary-total {
  font-size: 1.25rem;
  color: var(--green-900);
  border-bottom: 0;
}
.empty-state, .empty-big {
  text-align: center;
  padding: 42px 22px;
  color: var(--muted);
}
.empty-big {
  max-width: 650px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.form-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 850; color: var(--green-950); }
.field input, .field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #fbfffc;
  color: var(--ink);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(32,166,106,.12);
}
.pay-note {
  margin-top: 12px;
  padding: 13px;
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--green-900);
}

.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item { padding: 20px; }
.faq-item h3 { font-size: 1.05rem; margin-bottom: 6px; }
.faq-item p { margin-bottom: 0; color: var(--muted); }

.cta {
  border-radius: 26px;
  padding: 52px;
  background:
    linear-gradient(135deg, rgba(6,33,23,.88), rgba(18,98,63,.86)),
    url("../images/domaci-sokovi.jpg") center/cover;
  color: white;
  box-shadow: var(--shadow);
}
.cta h2 { color: white; }
.cta p { color: rgba(255,255,255,.78); }

.site-footer {
  padding: 54px 0 28px;
  background: var(--green-950);
  color: rgba(255,255,255,.76);
}
.site-footer h3, .site-footer strong { color: white; }
.footer-grid { grid-template-columns: 1.2fr .8fr .8fr; }
.footer-links { display: grid; gap: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 34px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 22px);
  z-index: 100;
  background: var(--green-950);
  color: white;
  padding: 13px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  transition: all .25s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Premium storefront upgrade */
body {
  background:
    linear-gradient(90deg, rgba(246, 255, 248, .9) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(246, 255, 248, .9) 0 1px, transparent 1px 100%),
    radial-gradient(circle at 7% 8%, rgba(131, 215, 164, 0.22), transparent 28rem),
    radial-gradient(circle at 88% 14%, rgba(205, 163, 90, 0.14), transparent 24rem),
    linear-gradient(180deg, #fbfffc 0%, #f2faf4 38%, #ffffff 100%);
  background-size: 58px 58px, 58px 58px, auto, auto, auto;
}

.site-header {
  background: rgba(250, 255, 251, .74);
  box-shadow: 0 18px 50px rgba(6, 33, 23, .06);
}

.brand-mark {
  width: 56px;
  height: 46px;
  background-size: 86%;
}

.hero-premium {
  min-height: calc(100svh - 78px);
  padding: 0 0 58px;
  display: block;
  background:
    radial-gradient(circle at 80% 16%, rgba(131,215,164,.22), transparent 32rem),
    linear-gradient(135deg, #03170f 0%, #073322 44%, #168454 100%);
}

.hero-premium::before {
  content: none;
}

.hero-premium .hero-grid {
  position: relative;
}

.hero-premium .container.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, .86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(36px, 5vw, 92px);
  width: min(1400px, calc(100% - 48px));
  max-width: 1400px;
  margin: 0 auto;
  min-height: calc(100svh - 78px);
  padding: clamp(32px, 4vw, 64px) 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.10), transparent 30rem),
    radial-gradient(circle at 25% 88%, rgba(205,163,90,.12), transparent 26rem);
  box-shadow: none;
  overflow: hidden;
  isolation: isolate;
}

.hero-premium .container.hero-grid::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.14);
  pointer-events: none;
  z-index: 3;
}

.hero-premium .container.hero-grid::after {
  content: "";
  position: absolute;
  right: -14%;
  top: -32%;
  width: 64%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,.15), rgba(255,255,255,.03) 58%, transparent 72%);
  filter: blur(1px);
  pointer-events: none;
  z-index: 0;
}

.hero-premium .hero-copy,
.hero-premium .hero-showcase {
  position: relative;
  z-index: 2;
}

.hero-premium h1 {
  max-width: 700px;
  font-size: clamp(2.45rem, 3.75vw, 5.35rem);
  line-height: .97;
  color: white;
}

.hero-premium .lead {
  max-width: 620px;
  font-size: clamp(1rem, 1vw, 1.15rem);
  color: rgba(255,255,255,.82);
}

.hero-premium .eyebrow {
  color: var(--green-300);
}

.hero-premium .pill {
  color: white;
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
}

.hero-premium .btn-light {
  background: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.5);
  color: var(--green-950);
}

.hero-premium .stat {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.16);
  box-shadow: none;
}

.hero-premium .stat strong {
  color: white;
}

.hero-premium .stat span {
  color: rgba(255,255,255,.72);
}

.hero-showcase {
  min-height: clamp(500px, 36vw, 650px);
  position: relative;
}

.showcase-main,
.showcase-tile {
  position: absolute;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
}

.showcase-main {
  inset: 58px clamp(82px, 6.5vw, 126px) 44px clamp(86px, 7.5vw, 150px);
  isolation: isolate;
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
}

.showcase-main img,
.showcase-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.showcase-main:hover img,
.showcase-tile:hover img {
  transform: scale(1.055);
}

.showcase-main::after,
.editorial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(6,33,23,.52));
  pointer-events: none;
}

.showcase-tile {
  z-index: 2;
  display: block;
}

.showcase-tile span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  color: white;
  font-weight: 900;
  font-size: .86rem;
  line-height: 1.15;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
}

.tile-a {
  width: clamp(190px, 12vw, 260px);
  height: clamp(226px, 14.5vw, 312px);
  left: clamp(2px, 1vw, 22px);
  top: clamp(14px, 2vw, 34px);
}

.tile-b {
  width: clamp(210px, 14vw, 300px);
  height: clamp(172px, 11vw, 238px);
  right: clamp(4px, 2vw, 34px);
  top: clamp(8px, 1.6vw, 30px);
}

.tile-c {
  width: clamp(216px, 14vw, 310px);
  height: clamp(194px, 12vw, 260px);
  right: clamp(8px, 2.6vw, 52px);
  bottom: clamp(12px, 1.8vw, 34px);
}

.hero-card {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 22px 48px rgba(0,0,0,.2);
}

.collection-band {
  background: linear-gradient(180deg, rgba(255,255,255,.55), rgba(233,251,239,.42));
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 18px;
}

.editorial-card {
  position: relative;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  color: white;
  isolation: isolate;
  transition: transform .28s ease, box-shadow .28s ease;
}

.editorial-card.large {
  grid-row: 1 / span 2;
}

.editorial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform .7s ease;
}

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

.editorial-card div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.editorial-card h3 {
  color: white;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin-bottom: 6px;
}

.editorial-card span {
  color: rgba(255,255,255,.82);
  font-weight: 750;
}

.product-band {
  background:
    linear-gradient(135deg, rgba(6,33,23,.98), rgba(14,73,49,.96)),
    radial-gradient(circle at 12% 14%, rgba(131,215,164,.22), transparent 26rem);
}

.product-band .product-card {
  background: linear-gradient(180deg, #ffffff, #f8fffb);
}

.products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  border: 1px solid rgba(16,32,25,.1);
  box-shadow: 0 18px 48px rgba(6,33,23,.1);
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-media {
  aspect-ratio: 4 / 3.05;
  background:
    radial-gradient(circle at 50% 32%, rgba(255,255,255,.9), transparent 52%),
    linear-gradient(145deg, #edf9f1, #ffffff);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(6,33,23,.08));
  pointer-events: none;
}

.product-media span {
  z-index: 2;
  box-shadow: 0 10px 24px rgba(6,33,23,.1);
}

.product-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-meta {
  min-height: 36px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.product-meta .eyebrow {
  margin-bottom: 0;
}

.product-meta small {
  white-space: nowrap;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--green-800);
  background: var(--mint-2);
  font-weight: 900;
  font-size: .72rem;
}

.product-info h3 {
  min-height: 48px;
  margin-bottom: 10px;
  font-size: 1.16rem;
  color: var(--green-950);
}

.product-info p:not(.eyebrow) {
  min-height: 76px;
  margin-bottom: 0;
  color: #586b62;
}

.product-actions {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(16,32,25,.08);
}

.product-actions .btn {
  min-width: 92px;
  border-radius: 10px;
}

/* Cleaner product cards */
.products-grid {
  gap: 24px;
}

.product-card {
  border-radius: var(--radius);
  border: 1px solid rgba(16,32,25,.12);
  box-shadow: 0 10px 26px rgba(6,33,23,.07);
  background: #fff;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(6,33,23,.10);
}

.product-media {
  aspect-ratio: 1 / .82;
  background: #f7faf8;
}

.product-media img {
  object-fit: cover;
}

.product-card:hover .product-media img {
  transform: none;
}

.product-media::after {
  content: none;
}

.product-media span {
  left: 10px;
  top: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: .72rem;
  box-shadow: none;
}

.product-info {
  padding: 16px;
}

.product-meta {
  min-height: 0;
  margin-bottom: 8px;
}

.product-info h3 {
  min-height: 44px;
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.25;
}

.product-info p:not(.eyebrow) {
  display: none;
}

.product-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
}

.product-actions strong,
.detail-price {
  font-size: 1.28rem;
  line-height: 1.1;
  white-space: nowrap;
}

.product-actions .btn {
  min-width: 118px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: var(--radius);
  line-height: 1.1;
}

.shop-hero {
  padding: 82px 0 70px;
  background:
    radial-gradient(circle at 80% 12%, rgba(131,215,164,.30), transparent 30rem),
    radial-gradient(circle at 20% 90%, rgba(205,163,90,.13), transparent 24rem),
    linear-gradient(135deg, #03170f 0%, #0b3324 50%, #168454 100%);
  border-bottom: 1px solid rgba(255,255,255,.12);
  position: relative;
  overflow: hidden;
  color: white;
}

.shop-hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -42% auto;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  filter: blur(10px);
}

.shop-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 38px;
  position: relative;
  z-index: 1;
}

.shop-hero h1 {
  font-size: clamp(3rem, 7vw, 6.3rem);
  max-width: 900px;
  color: white;
}

.shop-hero .lead {
  color: rgba(255,255,255,.78);
}

.shop-hero .eyebrow {
  color: var(--green-300);
}

.shop-hero-card {
  min-height: 430px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.22);
}

.shop-hero-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.shop-hero-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: white;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(6,33,23,.58);
  backdrop-filter: blur(16px);
}

.shop-hero-card span,
.shop-hero-card strong {
  display: block;
}

.shop-hero-card span {
  color: var(--green-300);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .74rem;
  letter-spacing: .08em;
}

.shop-hero-card strong {
  font-size: 1.35rem;
}

.shop-section {
  padding-top: 44px;
}

.shop-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.shop-tools .filter-row {
  margin-bottom: 0;
}

.shop-tools p {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
  white-space: nowrap;
}

.filter {
  box-shadow: 0 10px 24px rgba(6,33,23,.06);
}

.feature-panel {
  border-radius: 22px;
}

.feature-panel img {
  aspect-ratio: 16 / 10;
}

.services-premium {
  background:
    radial-gradient(circle at 12% 18%, rgba(131,215,164,.18), transparent 28rem),
    linear-gradient(180deg, rgba(255,255,255,.62), rgba(233,251,239,.40));
}

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

.services-copy {
  grid-column: span 5;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 56px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 10%, rgba(131,215,164,.16), transparent 18rem),
    rgba(255,255,255,.86);
  border: 1px solid rgba(16,32,25,.10);
  box-shadow: 0 26px 70px rgba(6,33,23,.10);
}

.services-copy h2 {
  font-size: clamp(2.35rem, 4.35vw, 4.5rem);
  line-height: .98;
}

.service-showcase {
  grid-column: span 7;
  position: relative;
  height: clamp(460px, 40vw, 560px);
  min-height: auto;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 86px rgba(6,33,23,.18);
  border: 1px solid rgba(255,255,255,.7);
}

.service-showcase img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 38%, rgba(6,33,23,.78)),
    linear-gradient(90deg, rgba(6,33,23,.18), transparent 55%);
}

.service-showcase div {
  position: absolute;
  left: clamp(24px, 4vw, 38px);
  right: clamp(24px, 4vw, 38px);
  bottom: clamp(24px, 4vw, 38px);
  z-index: 2;
  color: white;
}

.service-showcase span,
.service-card.pro span {
  display: inline-flex;
  color: var(--green-300);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  margin-bottom: 10px;
}

.service-showcase strong {
  display: block;
  max-width: 620px;
  font-size: clamp(1.9rem, 3.4vw, 3.35rem);
  line-height: 1.04;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  grid-column: 1 / -1;
}

.service-card.pro {
  min-height: 230px;
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(250,255,251,.90));
  border: 1px solid rgba(16,32,25,.10);
  box-shadow: 0 22px 55px rgba(6,33,23,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card.pro:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.premium-category-grid {
  grid-template-columns: repeat(3, 1fr);
}

.category-card.image-card {
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  background: white;
}

.category-card.image-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.category-card.image-card div {
  padding: 22px 22px 0;
}

.category-card.image-card .arrow {
  padding: 0 22px 22px;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: center;
}

.spotlight-card {
  padding: 28px;
  border-radius: 26px;
}

.testimonial-stack {
  display: grid;
  gap: 18px;
}

.premium-testimonial {
  padding: 34px;
  font-size: 1.08rem;
}

.mini-product-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.mini-product-strip a {
  position: relative;
  min-height: 170px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.mini-product-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-product-strip span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  color: white;
  font-weight: 950;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
}

.site-contact-cta {
  background:
    radial-gradient(circle at 12% 0%, rgba(131,215,164,.18), transparent 30rem),
    linear-gradient(180deg, #f7fff9 0%, #ffffff 62%, #f2fbf5 100%);
  color: var(--green-950);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.site-contact-cta::before {
  content: none;
}

.site-contact-cta > .container {
  position: relative;
  z-index: 1;
}

.site-contact-cta h2 {
  color: var(--green-950);
  font-size: clamp(2.4rem, 5vw, 4.7rem);
}
.site-contact-cta .lead { color: #405249; }

.contact-premium-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 470px;
  gap: 28px;
  align-items: start;
}

.contact-premium-copy {
  padding-top: 24px;
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.contact-method {
  min-height: 120px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  box-shadow: 0 20px 44px rgba(6,33,23,.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.contact-method:hover {
  transform: translateY(-4px);
  border-color: rgba(22,128,79,.22);
  box-shadow: 0 26px 58px rgba(6,33,23,.12);
}

.contact-method span {
  color: var(--green-700);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
}

.contact-method strong {
  color: var(--green-950);
  font-size: 1.05rem;
  line-height: 1.18;
}

.contact-premium-form {
  padding: 24px;
  border-radius: 24px;
  background: white;
  color: var(--green-950);
  border: 1px solid var(--line);
  box-shadow: 0 28px 70px rgba(6,33,23,.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-premium-form .field.full,
.contact-premium-form .btn-full {
  grid-column: 1 / -1;
}

.contact-premium-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 20%, rgba(131,215,164,.22), transparent 22rem),
    var(--green-950);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 22px 52px rgba(6,33,23,.16);
}

.contact-premium-note strong {
  color: white;
  font-size: 1.15rem;
}

.contact-premium-note span {
  color: rgba(255,255,255,.76);
  font-weight: 750;
}

.site-footer {
  padding: 0 0 28px;
  background:
    radial-gradient(circle at 10% 0%, rgba(131,215,164,.2), transparent 28rem),
    linear-gradient(135deg, #03160f, #062117 48%, #0b3324);
  color: rgba(255,255,255,.76);
}

.footer-premium {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) .7fr .7fr .9fr;
  gap: 28px;
  padding-top: 54px;
}

.footer-brand-panel {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: white;
  font-weight: 950;
  font-size: 1.35rem;
}

.footer-logo img {
  width: 78px;
  height: 62px;
  object-fit: contain;
  background: transparent;
}

.footer-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.footer-mini-stats span {
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255,255,255,.07);
}

.footer-mini-stats strong {
  color: var(--green-300);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column strong {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.footer-column a {
  color: rgba(255,255,255,.72);
}

.footer-column a:hover {
  color: white;
}

.footer-contact .btn {
  width: fit-content;
  margin-top: 8px;
  color: var(--green-950);
  background: rgba(255,255,255,.92);
}

.premium-bottom {
  margin-top: 30px;
}

.about-hero {
  padding: 86px 0 70px;
  background:
    radial-gradient(circle at 78% 14%, rgba(131,215,164,.30), transparent 30rem),
    radial-gradient(circle at 12% 86%, rgba(205,163,90,.13), transparent 24rem),
    linear-gradient(135deg, #03170f 0%, #0b3324 52%, #168454 100%);
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: white;
  overflow: hidden;
}

.about-hero-grid,
.story-grid,
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.about-hero h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 5.8vw, 5.5rem);
  color: white;
}

.about-hero .lead {
  color: rgba(255,255,255,.78);
}

.about-hero .eyebrow {
  color: var(--green-300);
}

.about-hero .btn-light {
  color: var(--green-950);
  background: rgba(255,255,255,.92);
  border-color: rgba(255,255,255,.48);
}

.about-visual {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 32px 90px rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.2);
}

.about-visual img {
  width: 100%;
  aspect-ratio: 4 / 4.2;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(16px);
  color: var(--green-950);
}

.about-badge strong {
  display: block;
  font-size: 2.3rem;
  line-height: 1;
}

.story-card,
.value-card,
.founder-panel {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.story-card {
  padding: 34px;
}

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

.value-card {
  padding: 24px;
}

.value-card span {
  color: var(--green-600);
  font-weight: 950;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-metrics div {
  padding: 24px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}

.about-metrics strong {
  display: block;
  color: white;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
}

.about-metrics span {
  color: rgba(255,255,255,.76);
  font-weight: 800;
}

.founder-panel {
  padding: 34px;
  text-align: center;
}

.founder-panel img {
  width: min(280px, 70%);
  margin: 0 auto 24px;
  object-fit: contain;
}

.founder-panel strong {
  display: block;
  color: var(--green-950);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.15;
}

@media (max-width: 980px) {
  .menu-toggle { display: inline-grid; }
  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.95);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .hero-grid, .split, .product-detail, .cart-page-grid, .checkout-grid, .contact-grid, .shop-hero-grid, .services-grid, .spotlight-grid, .contact-premium-grid, .about-hero-grid, .story-grid, .founder-grid { grid-template-columns: 1fr; }
  .hero-premium .container.hero-grid {
    min-height: auto;
    padding: 40px 28px 52px;
    width: 100%;
    border-radius: 0;
  }
  .hero-premium .container.hero-grid::before { border-radius: 0; }
  .hero { min-height: auto; }
  .hero-art, .hero-art img { min-height: 420px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .category-grid, .benefit-grid, .offer-grid, .testimonial-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-showcase { min-height: 560px; }
  .showcase-main { inset: 70px 18px 58px 46px; }
  .tile-a { width: 170px; height: 210px; }
  .tile-b { width: 190px; height: 160px; }
  .tile-c { width: 190px; height: 170px; }
  .editorial-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .editorial-card.large { grid-row: auto; }
  .shop-tools { align-items: flex-start; flex-direction: column; }
  .services-copy,
  .service-showcase { grid-column: 1 / -1; min-height: auto; }
  .service-showcase { grid-row: auto; min-height: 460px; height: auto; }
  .service-list, .premium-category-grid, .footer-premium { grid-template-columns: 1fr 1fr; }
  .about-metrics { grid-template-columns: repeat(2, 1fr); }
  .contact-method-grid { grid-template-columns: 1fr; }
  .contact-premium-note { align-items: flex-start; flex-direction: column; }
  .detail-service-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 22px, var(--container)); }
  .section-pad { padding: 64px 0; }
  .nav-wrap { height: 68px; }
  .brand small { display: none; }
  .hero { padding-top: 28px; }
  .hero-grid { gap: 28px; }
  .hero-premium {
    min-height: auto;
    padding: 18px 0 54px;
  }
  .hero-premium .container.hero-grid {
    padding: 28px 16px 42px;
    border-radius: 0;
    width: 100%;
  }
  .hero-premium .container.hero-grid::before { border-radius: 0; }
  .hero-premium h1 { font-size: clamp(2.15rem, 14vw, 3.45rem); }
  .products-grid, .category-grid, .benefit-grid, .offer-grid, .testimonial-grid, .footer-grid, .form-grid, .service-list, .premium-category-grid, .mini-product-strip, .footer-premium, .values-grid, .about-metrics { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .hero-art, .hero-art img { min-height: 340px; }
  .hero-showcase { min-height: 480px; }
  .showcase-main { inset: 42px 0 66px 0; border-radius: 20px; }
  .showcase-tile { border-radius: 16px; }
  .tile-a { width: 124px; height: 150px; left: 0; top: 0; }
  .tile-b { width: 138px; height: 116px; right: 0; top: 18px; }
  .tile-c { width: 148px; height: 130px; right: 0; bottom: 0; }
  .showcase-tile span { font-size: .72rem; }
  .editorial-card { min-height: 230px; border-radius: 18px; }
  .shop-hero { padding: 54px 0 38px; }
  .shop-hero-card, .shop-hero-card img { min-height: 300px; }
  .product-info h3, .product-info p:not(.eyebrow) { min-height: auto; }
  .product-meta { min-height: auto; }
  .section-head { display: block; }
  .product-actions { align-items: stretch; flex-direction: column; }
  .product-actions .btn { width: 100%; }
  .cart-item { grid-template-columns: 62px 1fr; }
  .cart-item > strong { grid-column: 2; }
  .cta { padding: 32px 22px; border-radius: 18px; }
  .header-actions .btn { display: none; }
  .services-copy, .story-card, .founder-panel, .contact-premium-form { padding: 24px; border-radius: 18px; }
  .service-showcase { min-height: 320px; height: 320px; border-radius: 20px; }
  .service-card.pro { min-height: auto; padding: 22px; border-radius: 18px; }
  .category-card.image-card { min-height: 320px; }
  .contact-premium-form { grid-template-columns: 1fr; }
  .contact-premium-form .field.full, .contact-premium-form .btn-full { grid-column: auto; }
  .product-detail { padding: 18px; border-radius: 24px; margin-top: 24px; }
  .product-detail::before { border-radius: 23px; }
  .detail-copy { padding: 24px; border-radius: 18px; }
  .detail-media img { min-height: 330px; }
  .footer-brand-panel { padding: 22px; border-radius: 18px; }
  .about-hero { padding: 58px 0 44px; }
  .about-visual img { aspect-ratio: 4 / 3.6; }
}

/* Final product and hero polish */
.hero-premium .container.hero-grid {
  width: min(1400px, calc(100% - 48px));
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.product-card {
  border-radius: 8px;
  border: 1px solid rgba(16,32,25,.12);
  box-shadow: 0 10px 26px rgba(6,33,23,.07);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(6,33,23,.10);
}

.product-media {
  aspect-ratio: 1 / .82;
}

.product-card:hover .product-media img {
  transform: none;
}

.product-info {
  padding: 16px;
}

.product-info h3 {
  min-height: 42px;
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.25;
}

.product-info p:not(.eyebrow) {
  display: none;
}

.product-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding-top: 14px;
}

.product-actions strong {
  font-size: 1.28rem;
  line-height: 1.1;
  white-space: nowrap;
}

.product-actions .btn {
  min-width: 118px;
  min-height: 40px;
  border-radius: 8px;
  line-height: 1.1;
}

@media (max-width: 640px) {
  .hero-premium .container.hero-grid {
    width: 100%;
    padding: 28px 16px 42px;
  }

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

  .product-actions .btn {
    width: 100%;
  }
}

/* Final layout corrections */
.hero-premium {
  overflow: hidden;
}

.hero-premium .container.hero-grid {
  grid-template-columns: minmax(0, 65fr) minmax(320px, 35fr);
  gap: clamp(36px, 5vw, 74px);
  overflow: visible;
}

.hero-premium .container.hero-grid::before,
.hero-premium .container.hero-grid::after {
  content: none;
}

.hero-premium .hero-copy {
  max-width: 760px;
}

.hero-premium h1 {
  max-width: 720px;
}

.hero-showcase {
  min-height: clamp(430px, 34vw, 560px);
  overflow: visible;
}

.showcase-main {
  inset: 42px 0 42px 0;
  border: 0;
  border-radius: 18px;
}

.showcase-tile {
  border: 0;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}

.tile-a {
  width: clamp(120px, 9vw, 170px);
  height: clamp(130px, 10vw, 190px);
  left: -26px;
  top: 22px;
}

.tile-b {
  width: clamp(150px, 11vw, 210px);
  height: clamp(105px, 8vw, 150px);
  right: -22px;
  top: 86px;
}

.tile-c {
  width: clamp(150px, 11vw, 220px);
  height: clamp(120px, 8.5vw, 160px);
  right: 12px;
  bottom: 12px;
}

.services-premium {
  background: linear-gradient(180deg, rgba(247,255,249,.72), rgba(255,255,255,.88));
}

.services-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
}

.services-copy {
  grid-column: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  justify-content: center;
}

.services-copy h2 {
  font-size: clamp(2.1rem, 3.35vw, 3.9rem);
  max-width: 620px;
}

.services-copy .lead {
  max-width: 620px;
}

.services-copy .btn {
  width: fit-content;
}

.service-showcase {
  grid-column: auto;
  height: clamp(360px, 34vw, 500px);
  min-height: 0;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 20px 54px rgba(6,33,23,.12);
}

.service-list {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card.pro {
  min-height: 190px;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(6,33,23,.07);
}

.product-detail {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  margin: 44px auto 70px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.product-detail::before,
.floating-note {
  content: none;
  display: none;
}

.detail-media {
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(6,33,23,.10);
  background: white;
}

.detail-media img {
  min-height: clamp(420px, 46vw, 680px);
}

.detail-copy {
  padding: clamp(12px, 3vw, 34px) 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.detail-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

.detail-service-row span {
  border-radius: 8px;
  box-shadow: none;
}

.footer-premium {
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  align-items: start;
}

.footer-brand-panel {
  border-radius: 8px;
  box-shadow: none;
}

.footer-column {
  min-height: 100%;
  padding-top: 18px;
}

@media (max-width: 980px) {
  .hero-premium .container.hero-grid,
  .services-grid,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    min-height: 430px;
  }

  .service-list,
  .footer-premium {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .service-list,
  .footer-premium {
    grid-template-columns: 1fr;
  }

  .tile-a,
  .tile-b,
  .tile-c {
    display: none;
  }
}
