@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@1,400;1,500;1,600&display=swap');

:root {
  --lithos-bg-1: url("./assets/hero-products-base.png");
  --lithos-bg-2: url("./assets/hero-products-reveal.png");
}

:root {
  --green-950: #003f23;
  --green-900: #01462a;
  --green-800: #075837;
  --green-100: #d8f1dc;
  --gold: #f8bc12;
  --cream: #ffefbc;
  --paper: #fff8ec;
  --blush: #fff1ee;
  --clay: #da7642;
  --ink: #21332a;
  --muted: #6e766d;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 35, 20, .18);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { font-family: 'Inter', sans-serif; }
.font-playfair { font-family: 'Playfair Display', serif; }

@keyframes heroReveal { 0%{opacity:0;transform:translateY(28px);filter:blur(12px)} 100%{opacity:1;transform:translateY(0);filter:blur(0)} }
@keyframes heroFadeUp { 0%{opacity:0;transform:translateY(20px)} 100%{opacity:1;transform:translateY(0)} }
@keyframes heroZoom { 0%{transform:scale(1.12)} 100%{transform:scale(1)} }
.hero-anim { opacity:0; animation-fill-mode:forwards; animation-timing-function:cubic-bezier(0.16,1,0.3,1); }
.hero-reveal { animation-name:heroReveal; animation-duration:1.1s; }
.hero-fade { animation-name:heroFadeUp; animation-duration:1s; }
.hero-zoom { animation:heroZoom 1.8s cubic-bezier(0.16,1,0.3,1) forwards; }
@media (prefers-reduced-motion: reduce){ .hero-anim,.hero-zoom{ animation:none; opacity:1; } }

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.02em;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(18px, 4vw, 52px);
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}

.site-header.scrolled {
  background: rgba(0, 63, 35, .94);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .16);
  padding-block: 10px;
}

.brand {
  width: clamp(74px, 8vw, 112px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
  background: var(--green-950);
}

.brand img {
  height: 100%;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 54px);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 18px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}

.main-nav a,
.nav-dropdown > button {
  border: 0;
  padding: 10px 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button::after {
  content: "⌄";
  margin-left: 7px;
  color: var(--gold);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  min-width: 190px;
  transform: translateX(-50%) translateY(10px);
  padding: 8px;
  border: 1px solid rgba(248, 188, 18, .35);
  border-radius: var(--radius);
  background: var(--green-950);
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow);
  transition: opacity .2s ease, transform .2s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px;
  border-radius: 6px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  text-shadow: none;
}

.dropdown-menu a:hover {
  background: rgba(248, 188, 18, .16);
}

.cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 22px;
  border: 1px solid rgba(248, 188, 18, .48);
  border-radius: var(--radius);
  background: var(--gold);
  color: var(--green-950);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 35, 20, .2);
}

.cart-link:hover {
  background: var(--cream);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 239, 188, .55);
  border-radius: var(--radius);
  background: rgba(0, 63, 35, .8);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--cream);
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 140px 24px 72px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(0, 28, 15, .78), rgba(0, 63, 35, .38), rgba(0, 0, 0, .32)),
    url("./assets/hero-heading.png") center / cover;
}

.hero-copy {
  max-width: 950px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(48px, 8vw, 100px);
  line-height: 1.08;
  text-transform: uppercase;
  text-shadow: 0 5px 22px rgba(0, 0, 0, .55);
}

h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.12;
}

h3 {
  font-size: clamp(24px, 2vw, 32px);
}

.hero p,
.cta-band p {
  max-width: 850px;
  margin: 24px auto;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 22px);
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 28px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 10px 20px rgba(1, 70, 42, .22);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(1, 70, 42, .28);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f8a34b);
}

.btn-secondary,
.btn-small {
  background: var(--clay);
  color: var(--white);
}

.btn-small {
  min-height: 42px;
  padding: 10px 24px;
  font-size: 14px;
}

section {
  padding: clamp(64px, 8vw, 112px) clamp(22px, 5vw, 64px);
}

.soft {
  background: var(--blush);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.science {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  background: var(--paper);
}

.section-copy h2,
.section-heading h2,
.contact h2 {
  position: relative;
  padding-bottom: 22px;
}

.section-copy h2::after,
.section-heading h2::after,
.contact h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 116px;
  height: 4px;
  background: var(--gold);
}

.section-heading h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-copy p,
.section-heading p,
.collection-title p,
.contact p,
.product-card p,
.feature-grid p,
.testimonial-grid p,
.team-grid p {
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.65;
  text-transform: uppercase;
}

.media-frame,
.paper-frame {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-frame img,
.paper-frame img {
  height: min(58vw, 560px);
  object-fit: cover;
}

.section-heading,
.collection-title {
  max-width: 1100px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 960px;
}

.products,
.testimonials,
.team,
.collection-title {
  background: #f7f7f4;
}

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

.product-card {
  min-width: 0;
}

.product-card img {
  aspect-ratio: 1.45;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-card h3 {
  margin-top: 26px;
}

.why {
  background: linear-gradient(180deg, #f7f7f4 0%, #edf5ec 100%);
}

.feature-grid,
.testimonial-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.feature-grid article,
.testimonial-grid article,
.team-grid article {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  box-shadow: 0 12px 34px rgba(0, 63, 35, .08);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--green-900);
  font-weight: 700;
}

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

.gallery a {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.gallery img {
  aspect-ratio: 1.55;
  object-fit: cover;
  transition: transform .35s ease;
}

.branded-gallery img {
  background: var(--paper);
  object-fit: contain;
}

.gallery a:hover img {
  transform: scale(1.04);
}

.testimonial-grid img,
.team-grid img {
  width: 92px;
  height: 92px;
  margin: 24px auto 0;
  border: 4px solid var(--cream);
  border-radius: 50%;
  object-fit: cover;
}

.cta-band {
  display: grid;
  min-height: 430px;
  place-items: center;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(90deg, rgba(0, 45, 25, .78), rgba(0, 0, 0, .42)),
    url("./assets/cta-wellness.png") center / cover fixed;
}

.cta-band h2 {
  text-shadow: 0 5px 20px rgba(0, 0, 0, .5);
}

.team-grid {
  grid-template-columns: repeat(2, minmax(0, 360px));
  justify-content: center;
}

.team-grid img {
  width: 150px;
  height: 150px;
}

.portrait-logo {
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  margin: 0 auto 24px;
  padding: 14px;
  border: 4px solid var(--cream);
  border-radius: 50%;
  background: var(--green-950);
  box-shadow: 0 14px 30px rgba(0, 63, 35, .16);
}

.portrait-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.collection-title {
  margin: 0 auto;
  padding-block: clamp(72px, 9vw, 120px);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .95fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(247, 247, 244, .86), rgba(255, 241, 238, .88)),
    url("./assets/contact-background.png") center / cover;
}

.contact-panel,
.contact-form {
  min-width: 0;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(1, 70, 42, .35);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(4px);
}

.contact-list {
  display: grid;
  gap: 22px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 700;
  color: var(--ink);
}

.contact-list span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  color: var(--clay);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 63, 35, .1);
}

.contact-form {
  display: grid;
  gap: 16px;
  background: rgba(255, 241, 238, .88);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(1, 70, 42, .22);
  border-radius: 18px;
  padding: 14px 18px;
  background: var(--white);
  color: var(--ink);
  font: 16px var(--sans);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  margin: 0;
  color: var(--green-900);
  font-weight: 700;
}

.site-footer {
  padding: 34px 22px;
  background: var(--white);
  color: var(--muted);
  text-align: center;
  font-family: var(--serif);
}

.lang-pill,
.to-top {
  position: fixed;
  z-index: 18;
  border: 0;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.lang-pill {
  left: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: var(--green-950);
  color: var(--cream);
  font-weight: 800;
}

.to-top {
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--cream);
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}

.to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.cookie-box {
  position: fixed;
  right: 24px;
  bottom: 92px;
  z-index: 30;
  width: min(520px, calc(100vw - 40px));
  padding: 24px;
  border: 1px solid rgba(1, 70, 42, .2);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.cookie-box h2 {
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: 18px;
  text-align: center;
}

.cookie-box p {
  margin: 0 0 18px;
  line-height: 1.55;
}

.cookie-box a {
  display: block;
  margin-top: 12px;
  color: var(--green-800);
  text-align: center;
  text-decoration: underline;
}

.cookie-close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  color: var(--green-950);
  font-size: 28px;
  cursor: pointer;
}

.cookie-box.hidden {
  display: none;
}

.text-link {
  color: var(--clay);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.lithos-nav {
  z-index: 100;
  padding: 16px;
  background: transparent;
  box-shadow: none;
}

.lithos-nav.scrolled {
  background: rgba(0, 0, 0, .28);
  backdrop-filter: blur(12px);
  box-shadow: none;
  padding: 16px;
}

.lithos-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.lithos-brand span {
  color: #fff;
  font-size: 24px;
  font-style: italic;
  line-height: 1;
}

.lithos-pill {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(14px);
  color: rgba(255, 255, 255, .8);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-transform: none;
  text-shadow: none;
}

.lithos-pill a {
  padding: 6px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .8);
  font-weight: 500;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease;
}

.lithos-pill a.active,
.lithos-pill a:hover {
  background: rgba(255, 255, 255, .2);
  color: #fff;
}

.lithos-signup {
  display: block;
  padding: 10px 24px;
  border-radius: 999px;
  background: #fff;
  color: #111827;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s ease;
}

.lithos-signup:hover {
  background: #f3f4f6;
}

.global-cursor-spotlight {
  position: fixed;
  inset: 0;
  z-index: 18;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s ease;
}

.global-cursor-spotlight.is-active {
  opacity: .86;
}

.global-cursor-spotlight::before,
.global-cursor-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-mask-image: radial-gradient(circle 220px at var(--cursor-x, -999px) var(--cursor-y, -999px), rgba(255,255,255,.88) 0%, rgba(255,255,255,.48) 42%, rgba(255,255,255,.16) 68%, rgba(255,255,255,0) 100%);
  mask-image: radial-gradient(circle 220px at var(--cursor-x, -999px) var(--cursor-y, -999px), rgba(255,255,255,.88) 0%, rgba(255,255,255,.48) 42%, rgba(255,255,255,.16) 68%, rgba(255,255,255,0) 100%);
}

.global-cursor-spotlight::before {
  background:
    radial-gradient(circle 220px at var(--cursor-x, -999px) var(--cursor-y, -999px), rgba(248, 188, 18, .32), rgba(255, 239, 188, .08) 46%, transparent 72%),
    var(--spotlight-image, var(--lithos-bg-2));
  mix-blend-mode: soft-light;
  opacity: .62;
}

.global-cursor-spotlight::after {
  background:
    radial-gradient(circle 150px at var(--cursor-x, -999px) var(--cursor-y, -999px), rgba(248, 188, 18, .2), rgba(255, 239, 188, .06) 48%, transparent 76%);
  filter: blur(1px);
  mix-blend-mode: screen;
  opacity: .58;
}

.lithos-hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 100vh;
  overflow: hidden;
  padding: 0;
  background: var(--green-950);
  color: #fff;
  text-align: center;
}

.lithos-base,
.lithos-reveal {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

.lithos-base {
  z-index: 10;
  background-image: var(--lithos-bg-1);
}

.lithos-base::after,
.lithos-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 35, 20, .76), rgba(0, 63, 35, .24), rgba(0, 0, 0, .22)),
    linear-gradient(0deg, rgba(0, 0, 0, .42), transparent 42%, rgba(0, 0, 0, .2));
}

.lithos-reveal {
  z-index: 30;
  background-image: var(--lithos-bg-2);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.lithos-mask-canvas {
  position: absolute;
  inset: 0;
  display: none;
  pointer-events: none;
}

.lithos-heading {
  position: absolute;
  z-index: 50;
  top: 14%;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
  pointer-events: none;
}

.lithos-heading h1 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: .95;
  text-shadow: none;
  text-transform: none;
}

.lithos-heading span {
  display: block;
}

.lithos-line-one,
.lithos-line-two {
  font-size: clamp(48px, 9vw, 96px);
}

.lithos-line-one {
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--cream);
}

.lithos-line-two {
  margin-top: -4px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--gold);
}

.lithos-bottom-left {
  position: absolute;
  z-index: 50;
  bottom: 56px;
  left: clamp(40px, 4vw, 56px);
  max-width: 260px;
  text-align: left;
}

.lithos-bottom-left p,
.lithos-bottom-right p {
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  text-transform: none;
}

.lithos-bottom-right {
  position: absolute;
  z-index: 50;
  right: clamp(40px, 4vw, 56px);
  bottom: 96px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 260px;
  text-align: left;
}

.lithos-start {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green-950);
  font-size: 14px;
  font-weight: 500;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.lithos-start:hover {
  transform: scale(1.03);
  background: var(--cream);
  box-shadow: 0 10px 24px rgba(232, 112, 42, .3);
}

.lithos-start:active {
  transform: scale(.95);
}

.shop-page {
  background: #f7f7f4;
}

.shop-header {
  background: rgba(0, 63, 35, .96);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .14);
}

.shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(220px, .6fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: clamp(150px, 16vw, 190px);
  color: var(--cream);
  background:
    radial-gradient(circle at 80% 30%, rgba(248, 188, 18, .22), transparent 28%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
}

.shop-hero h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(42px, 6vw, 84px);
  text-transform: none;
}

.shop-hero p {
  max-width: 720px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.shop-kicker,
.product-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(248, 188, 18, .45);
  border-radius: 999px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.shop-hero-logo {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  max-width: 360px;
  padding: 28px;
  border: 2px solid rgba(248, 188, 18, .4);
  border-radius: 50%;
  background: rgba(0, 35, 20, .42);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.shop-toolbar {
  position: sticky;
  top: 92px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-block: 18px;
  background: rgba(247, 247, 244, .94);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0, 63, 35, .08);
}

.filter-chip {
  min-height: 42px;
  padding: 8px 18px;
  border: 1px solid rgba(0, 63, 35, .22);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-950);
  font-weight: 800;
  cursor: pointer;
}

.filter-chip.active {
  border-color: var(--gold);
  background: var(--green-950);
  color: var(--cream);
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}

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

.shop-product {
  display: grid;
  gap: 20px;
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(0, 63, 35, .12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 36px rgba(0, 63, 35, .1);
}

.shop-product[hidden] {
  display: none;
}

.shop-product img {
  aspect-ratio: 1.28;
  border-radius: var(--radius);
  background: var(--paper);
  object-fit: contain;
}

.shop-product h2,
.shop-cart h2,
.checkout-panel h2 {
  color: var(--green-950);
  font-size: clamp(26px, 3vw, 38px);
}

.shop-product p:not(.product-tag),
.checkout-panel p {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.55;
}

.shop-product strong {
  display: block;
  margin: 12px 0;
  color: var(--green-900);
  font-size: 24px;
}

.shop-cart {
  position: sticky;
  top: 178px;
  padding: 24px;
  border: 1px solid rgba(248, 188, 18, .38);
  border-radius: var(--radius);
  background: var(--green-950);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.cart-header,
.cart-summary,
.cart-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-header h2 {
  color: var(--cream);
  font-size: 30px;
}

.cart-header span,
.empty-cart {
  color: rgba(255, 239, 188, .76);
}

.cart-items {
  display: grid;
  gap: 12px;
  min-height: 90px;
  margin: 22px 0;
}

.cart-line {
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
}

.cart-line div {
  display: grid;
  gap: 4px;
}

.cart-line span {
  color: rgba(255, 239, 188, .78);
  font-size: 14px;
}

.cart-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.cart-controls button {
  min-height: 32px;
  border: 1px solid rgba(248, 188, 18, .36);
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  color: var(--cream);
  cursor: pointer;
}

.cart-summary {
  margin-bottom: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(248, 188, 18, .35);
  font-size: 20px;
}

.checkout-panel {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  background: var(--paper);
}

.checkout-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--green-950);
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid rgba(1, 70, 42, .22);
  border-radius: 18px;
  padding: 14px 18px;
  color: var(--ink);
  font: 16px var(--sans);
}

.store-subhero {
  padding-top: clamp(150px, 16vw, 190px);
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(0, 63, 35, .96), rgba(7, 88, 55, .88)),
    url("./assets/hero-heading.png") center / cover;
}

.store-subhero h1 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(48px, 7vw, 90px);
  text-transform: none;
}

.store-subhero p {
  max-width: 720px;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
}

.cart-page-layout,
.checkout-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  background: #f7f7f4;
}

.cart-detail {
  min-width: 0;
  padding: clamp(22px, 4vw, 40px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cart-header.light h2 {
  color: var(--green-950);
}

.cart-header.light span {
  color: var(--green-800);
  font-weight: 800;
}

.cart-items.detailed .cart-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  background: var(--paper);
  color: var(--green-950);
}

.cart-items.detailed .cart-line span {
  color: var(--muted);
}

.cart-items.detailed .cart-controls button {
  background: var(--green-950);
  color: var(--cream);
}

.order-summary,
.checkout-redirect-card {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: clamp(24px, 4vw, 38px);
  border-radius: var(--radius);
  background: var(--green-950);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.order-summary img,
.checkout-redirect-card img {
  width: 120px;
  margin: 0 auto;
}

.order-summary h2 {
  color: var(--cream);
  font-size: clamp(28px, 3vw, 42px);
}

.order-summary .text-link {
  color: var(--gold);
  text-align: center;
}

.checkout-page-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  background: var(--paper);
}

.checkout-form-large h2 {
  color: var(--green-950);
  font-size: clamp(30px, 4vw, 48px);
}

.checkout-items {
  display: grid;
  gap: 12px;
}

.checkout-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(248, 188, 18, .22);
}

.checkout-summary .cart-summary {
  border-top: 1px solid rgba(248, 188, 18, .35);
}

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

  .main-nav {
    position: fixed;
    top: 86px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 18px;
    border-radius: var(--radius);
    background: rgba(0, 63, 35, .98);
    box-shadow: var(--shadow);
  }

  .lithos-nav {
    padding: 16px 20px;
  }

  .lithos-pill {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 86px;
    transform: none;
    display: none;
    padding: 18px;
    border-radius: 8px;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(16px);
  }

  .lithos-pill.open {
    display: grid;
    gap: 8px;
  }

  .lithos-signup {
    display: none;
  }

  .lithos-bottom-left {
    display: none;
  }

  .lithos-bottom-right {
    right: 20px;
    left: 20px;
    bottom: 40px;
    max-width: none;
    gap: 16px;
  }

  .lithos-bottom-right p {
    font-size: 12px;
  }

  .main-nav.open {
    display: grid;
    gap: 8px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    transform: none;
    min-width: 0;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    background: rgba(255, 255, 255, .06);
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
    transform: none;
  }

  .split-section,
  .science,
  .contact,
  .shop-hero,
  .shop-layout,
  .checkout-panel,
  .cart-page-layout,
  .checkout-page-layout {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .shop-catalog,
  .feature-grid,
  .testimonial-grid,
  .team-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 86svh;
    padding-top: 130px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .section-copy h2::after,
  .contact h2::after {
    left: 0;
  }

  .shop-cart,
  .shop-toolbar {
    position: static;
  }

  .cart-items.detailed .cart-line {
    grid-template-columns: 1fr;
  }

  .cart-controls {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    width: 66px;
  }

  section {
    padding-inline: 18px;
  }

  .product-card p,
  .section-copy p,
  .section-heading p,
  .collection-title p,
  .contact p,
  .feature-grid p,
  .testimonial-grid p,
  .team-grid p {
    font-size: 15px;
  }

  .cookie-box {
    right: 12px;
    bottom: 84px;
    width: calc(100vw - 24px);
  }

  .lang-pill {
    left: 14px;
    bottom: 16px;
  }

  .to-top {
    right: 14px;
    bottom: 16px;
  }
}
