@font-face {
  font-family: "DM Sans";
  src: url(../fonts/DMSans-VariableFont_opsz\,wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Fraunces";
  src: url(../fonts/Fraunces-VariableFont_SOFT\,WONK\,opsz\,wght.ttf);
  font-display: swap;
}

:root {
  --color-bg: #f4f0e8;
  --color-surface: #fffdf8;
  --color-surface-2: #e9e3d8;
  --color-text: #171813;
  --color-text-muted: #67675f;
  --color-primary: #1e4f43;
  --color-primary-2: #163a32;
  --color-accent: #d9683b;
  --color-line: #cfc8bb;
  --color-dark: #15231f;
  --color-dark-text: #f6f2e9;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 72px;
  --space-8: 96px;
  --text-display: clamp(3rem, 7vw, 6.8rem);
  --text-h1: clamp(2.45rem, 5.5vw, 4.75rem);
  --text-h2: clamp(2rem, 3.5vw, 3.35rem);
  --text-h3: clamp(1.25rem, 2vw, 1.65rem);
  --text-body: 1rem;
  --text-small: .875rem;
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --shadow: 0 22px 70px rgba(24, 28, 22, .12);
  --max: 1240px;
  --ease: cubic-bezier(.2,.75,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
img { max-width: 100%; }
::selection { background: var(--color-accent); color: #fff; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 12px;
  top: 12px;
  transform: translateY(-180%);
  background: var(--color-dark);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}
.skip-link:focus { transform: none; }

.ad-strip {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-dark);
  color: rgba(255,255,255,.72);
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244,240,232,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-line);
}
.header-inner {
  width: min(var(--max), calc(100% - 32px));
  height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-5);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -.02em;
}
.brand-mark {
  width: 30px;
  height: 30px;
  display:block;
  flex:0 0 auto;
  background:transparent;
  border:0;
  border-radius:0;
  overflow:visible;
}
.brand-mark img { width:100%; height:100%; object-fit:contain; display:block; border-radius:0; }
.brand-name { font-family: 'Fraunces', serif; font-size: 20px; }
.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color .25s var(--ease);
}
.nav a:hover { color: var(--color-text); }
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--color-primary);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.header-cta:hover { transform: translateY(-2px); background: var(--color-primary-2); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  background: transparent;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}

main { overflow: hidden; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section { padding: var(--space-8) 0; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-primary);
}
.section-kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}
h1,h2,h3 { font-family: 'Fraunces', serif; line-height: 1.02; letter-spacing: -.035em; margin: 0; }
h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }
p { margin: 0; }
.lede { font-size: clamp(1.08rem,1.6vw,1.3rem); color: var(--color-text-muted); max-width: 760px; }
.muted { color: var(--color-text-muted); }

.hero { padding: var(--space-7) 0 var(--space-8); position: relative; }
.hero::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(30,79,67,.2);
  border-radius: 50%;
  left: -120px;
  top: 90px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.04fr) minmax(360px,.76fr);
  gap: clamp(44px,7vw,100px);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-labels { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--color-line);
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,.45);
}
.hero h1 { max-width: 820px; }
.hero h1 em { color: var(--color-accent); font-style: normal; }
.hero-copy > p { margin-top: 24px; max-width: 700px; font-size: 18px; color: var(--color-text-muted); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.btn {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--color-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(24,28,22,.12); }
.btn-primary { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.btn-primary:hover { background: var(--color-primary-2); }
.btn-ghost { background: transparent; }
.hero-note { margin-top: 24px; font-size: 13px; color: var(--color-text-muted); max-width: 620px; }
.hero-media { position: relative; min-height: 650px; }
.hero-photo {
  position: absolute;
  inset: 0 0 0 12%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-surface-2);
  box-shadow: var(--shadow);
}
.media-fill img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-fill { overflow: hidden; background: var(--color-surface-2); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-fill.is-missing img, .hero-photo.is-missing img { display: none; }
.hero-stamp {
  position: absolute;
  left: 0;
  bottom: 52px;
  width: 205px;
  min-height: 205px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  transform: rotate(-7deg);
  box-shadow: 0 20px 40px rgba(217,104,59,.26);
}
.hero-stamp strong { font-family: 'Fraunces',serif; font-size: 24px; line-height: 1.05; }
.hero-stamp span { font-size: 12px; display: block; margin-top: 8px; }

.fact-rail { border-top: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); }
.fact-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.fact {
  padding: 26px 24px;
  border-right: 1px solid var(--color-line);
}
.fact:last-child { border-right: 0; }
.fact strong { display:block; font-family:'Fraunces',serif; font-size: 28px; line-height:1; margin-bottom:8px; }
.fact span { font-size: 12px; color: var(--color-text-muted); }

.editorial { background: var(--color-surface); }
.editorial-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(36px,8vw,110px); align-items:start; }
.editorial-title { position: sticky; top: 120px; }
.editorial-title h2 { margin-top: 16px; }
.editorial-title p { margin-top: 18px; color: var(--color-text-muted); }
.article-copy { max-width: 760px; }
.article-copy p { font-size: 18px; color: #34352f; margin-bottom: 25px; }
.article-copy p:first-child::first-letter {
  float:left;
  font-family:'Fraunces',serif;
  font-size:72px;
  line-height:.8;
  padding:8px 12px 0 0;
  color:var(--color-primary);
}
.article-callout {
  margin: 36px 0;
  border-left: 5px solid var(--color-accent);
  padding: 22px 26px;
  background: var(--color-bg);
  font-family:'Fraunces',serif;
  font-size: 24px;
  line-height:1.25;
}
.article-image {
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  margin: 38px 0 12px;
}
.image-caption { font-size: 12px; color: var(--color-text-muted); }

.box-lab { background: var(--color-dark); color: var(--color-dark-text); }
.box-lab .section-kicker { color: #bcd6ce; }
.box-lab-head { display:grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items:end; }
.box-lab-head p { color: rgba(246,242,233,.68); font-size: 17px; }
.box-stage { display:grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 54px; }
.box-scene {
  min-height: 720px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  padding: 64px 28px 28px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-end;
  position:relative;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  overflow:hidden;
  cursor:pointer;
  outline:none;
  transition:border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.box-scene:hover { transform:translateY(-4px); border-color:rgba(255,255,255,.3); background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02)); }
.box-scene:focus-visible { box-shadow:0 0 0 3px rgba(188,214,206,.4); border-color:#bcd6ce; }
.box-scene::before { content:none; }
.box-scene.is-open::before { content:none; }
.box-visual { width: 270px; height: 360px; position: relative; perspective: 900px; margin-bottom: 12px; z-index:2; transform-style:preserve-3d; }
.box-body {
  position:absolute;
  left:15px;
  right:15px;
  bottom:0;
  height:108px;
  background:linear-gradient(90deg,#ad7847 0 49%,#b98754 49% 100%);
  border-radius: 3px 3px 10px 10px;
  box-shadow:inset 0 -20px 0 rgba(0,0,0,.09), 0 18px 28px rgba(0,0,0,.16);
  z-index:3;
}
.box-body::before {
  content:'';
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:10px;
  background:rgba(66,42,23,.24);
  box-shadow:inset 0 4px 5px rgba(0,0,0,.2);
  opacity:0;
  transition:opacity .35s var(--ease) .22s;
}
.box-body::after { content:''; position:absolute; width:20px; inset:0 auto 0 50%; transform:translateX(-50%); background:rgba(255,244,211,.44); }
.box-lid {
  position:absolute;
  left:6px;
  right:6px;
  bottom:96px;
  height:42px;
  background:linear-gradient(180deg,#cda06c,#bd8954);
  border-radius:6px;
  transform-origin:50% 100%;
  transform:rotateX(0deg) translateZ(3px);
  transition:transform 1.05s cubic-bezier(.2,.78,.2,1), filter .45s ease;
  z-index:7;
  box-shadow:0 7px 14px rgba(0,0,0,.16);
  backface-visibility:visible;
}
.box-lid::before {
  content:'';
  position:absolute;
  left:9px;
  right:9px;
  height:26px;
  top:-21px;
  background:#d5aa75;
  clip-path:polygon(7% 100%,0 0,100% 0,93% 100%);
  transform-origin:bottom center;
  transform:rotateX(84deg);
  opacity:.62;
}
.box-lid::after { content:''; position:absolute; left:50%; top:0; bottom:0; width:20px; transform:translateX(-50%); background:rgba(255,244,211,.48); }
.box-product {
  position:absolute;
  left:50%;
  bottom:72px;
  width:250px;
  height:248px;
  transform:translate(-50%, 92px) scale(.62);
  opacity:0;
  z-index:4;
  transition:transform .92s cubic-bezier(.16,.82,.3,1) .42s, opacity .35s ease .42s;
  pointer-events:none;
  filter:blur(2px);
}
.box-carousel-viewport {
  width:100%;
  height:210px;
  overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(246,242,233,.045);
  box-shadow:none;
  cursor:grab;
  touch-action:pan-y;
  user-select:none;
}
.box-carousel-viewport.is-dragging { cursor:grabbing; }
.box-carousel-viewport.is-dragging .box-carousel-track { transition:none; }
.box-carousel-track {
  display:flex;
  width:100%;
  height:100%;
  transform:translateX(0);
  transition:transform .48s cubic-bezier(.22,.72,.25,1);
  will-change:transform;
}
.product-choice {
  position:relative;
  flex:0 0 100%;
  width:100%;
  height:100%;
  padding:0;
  border:0;
  background:transparent;
  cursor:grab;
  overflow:hidden;
}
.box-carousel-viewport.is-dragging .product-choice { cursor:grabbing; }
.product-choice img {
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
  border-radius:22px;
}
.product-choice.is-contain {
  background:linear-gradient(180deg, rgba(255,255,255,.82), rgba(244,242,238,.92));
}
.product-choice.is-contain img {
  object-fit:contain;
  padding:10px;
}
.product-choice:focus-visible {
  outline:2px solid #fff;
  outline-offset:-5px;
}
.product-choice.is-selected::after {
  content:'';
  position:absolute;
  inset:0;
  border:2px solid #fff;
  border-radius:22px;
  box-shadow:inset 0 0 0 3px rgba(188,214,206,.24);
  pointer-events:none;
}

.box-carousel-nav {
  position:absolute;
  top:50%;
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.32);
  background:rgba(20,35,31,.82);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  z-index:8;
  transform:translateY(-50%);
  transition:background .2s var(--ease), transform .2s var(--ease), border-color .2s var(--ease);
}
.box-carousel-nav:hover { background:rgba(33,62,54,.96); border-color:rgba(255,255,255,.6); transform:translateY(-50%) scale(1.05); }
.box-carousel-prev { left:-15px; }
.box-carousel-next { right:-15px; }
.box-carousel-dots { position:absolute; left:50%; bottom:8px; transform:translateX(-50%); display:flex; align-items:center; justify-content:center; gap:7px; z-index:8; padding:0; background:transparent; box-shadow:none; filter:none; }
.box-carousel-dots span { width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,.34); box-shadow:none; filter:none; transition:width .25s var(--ease), background .25s var(--ease), border-radius .25s var(--ease); }
.box-carousel-dots span.is-active { width:18px; border-radius:99px; background:#fff; box-shadow:none; }
.product-card { scroll-margin-top:130px; }
.product-card.choice-target { animation:choiceTarget 1.5s ease; }
@keyframes choiceTarget { 0%,100% { box-shadow:var(--shadow); } 35% { box-shadow:0 0 0 4px rgba(188,214,206,.75), 0 24px 54px rgba(24,28,22,.18); transform:translateY(-6px); } }

.box-scene.is-open .box-lid { transform:rotateX(-128deg) translateY(-10px) translateZ(4px); filter:brightness(1.08); }
.box-scene.is-open .box-body::before { opacity:1; }
.box-scene.is-open .box-product { opacity:1; transform:translate(-50%, -92px) scale(1); filter:blur(0); pointer-events:auto; }
.box-click-hint { display:flex; align-items:center; justify-content:center; gap:8px; min-height:28px; margin:4px 0 16px; color:rgba(246,242,233,.72); font-size:12px; font-weight:700; letter-spacing:.03em; position:relative; z-index:8; }
.box-click-dot { width:8px; height:8px; border-radius:50%; background:#bcd6ce; box-shadow:0 0 0 0 rgba(188,214,206,.42); animation:boxPulse 1.8s ease-out infinite; }
.box-scene.is-open .box-click-dot { animation:none; box-shadow:none; }
@keyframes boxPulse { 0% { box-shadow:0 0 0 0 rgba(188,214,206,.42); } 70% { box-shadow:0 0 0 8px rgba(188,214,206,0); } 100% { box-shadow:0 0 0 0 rgba(188,214,206,0); } }
.box-copy { width:100%; position:relative; z-index:8; }
.box-copy small { color:rgba(255,255,255,.5); text-transform:uppercase; letter-spacing:.12em; }
.box-copy h3 { margin:8px 0 8px; }
.box-copy p { color:rgba(246,242,233,.65); font-size:14px; }
.box-lab-actions { display:flex; justify-content:center; margin-top:30px; }
.box-disclaimer { color:rgba(246,242,233,.55); font-size:13px; max-width:800px; text-align:center; }

.catalog-head { display:grid; grid-template-columns: 1fr .9fr; gap: 40px; align-items:end; margin-bottom:46px; }
.catalog-head .lede { justify-self:end; }
.product-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.product-card {
  background:var(--color-surface);
  border:1px solid var(--color-line);
  border-radius:var(--radius-lg);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:transform .3s var(--ease), box-shadow .3s var(--ease);
}
.product-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.product-media { aspect-ratio: 1/1; position:relative; }
.product-tag {
  position:absolute;
  left:16px;
  top:16px;
  z-index:2;
  background:rgba(255,253,248,.9);
  backdrop-filter:blur(12px);
  border-radius:999px;
  padding:7px 10px;
  font-size:11px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.product-content { padding: 26px; display:flex; flex-direction:column; flex:1; }
.product-content h3 { margin-bottom:12px; }
.product-content > p { color:var(--color-text-muted); font-size:15px; min-height:72px; }
.product-specs { display:flex; flex-wrap:wrap; gap:7px; margin:20px 0; }
.product-specs span { border:1px solid var(--color-line); border-radius:999px; padding:5px 9px; font-size:11px; }
.price-block { padding-top:18px; border-top:1px solid var(--color-line); }
.price { font-family:'Fraunces',serif; font-size:38px; line-height:1; }
.price-sub { margin-top:8px; font-size:12px; color:var(--color-text-muted); }
.price-detail { margin-top:14px; padding:12px 14px; background:var(--color-bg); border-radius:var(--radius-sm); font-size:11px; line-height:1.55; color:#4f5049; }
.product-card .btn { width:100%; margin-top:18px; }

.split-section {
  background:var(--color-surface-2);
  padding:clamp(38px,4vw,52px) 0 clamp(42px,4.5vw,60px);
}
.split-grid {
  display:grid;
  grid-template-columns:1fr;
  gap:clamp(12px,1.6vw,18px);
  align-items:center;
  justify-items:center;
  width:min(1040px, calc(100% - 40px));
  margin:0 auto;
  text-align:center;
}
.split-copy {
  width:min(820px,100%);
  margin:0 auto;
  text-align:center;
  justify-self:center;
}
.split-copy .section-kicker { justify-content:center; }
.split-copy h2 { margin:8px auto 10px; max-width:760px; }
.split-copy > p { color:var(--color-text-muted); font-size:17px; margin:0 auto; max-width:760px; }
.split-media {
  width:min(680px,100%);
  aspect-ratio:16/6.6;
  border-radius:var(--radius-lg);
  justify-self:center;
  margin:0 auto;
}
.check-list {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  border-top:0;
  width:min(900px,100%);
  margin:0 auto;
  text-align:center;
  justify-self:center;
}
.check-row {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  padding:18px 16px;
  border:1px solid var(--color-line);
  border-radius:var(--radius-md);
  background:rgba(255,255,255,.36);
}
.check-row i { color:var(--color-primary); width:26px; height:26px; }
.check-row strong { display:block; margin-bottom:6px; }
.check-row span { color:var(--color-text-muted); font-size:14px; }

.category-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:10px; margin-top:40px; }
.category-card { min-height:220px; border:1px solid var(--color-line); border-radius:var(--radius-md); padding:22px; display:flex; flex-direction:column; justify-content:space-between; background:rgba(255,255,255,.35); }
.category-card i { width:28px; height:28px; color:var(--color-primary); }
.category-card h3 { font-size:22px; }
.category-card p { font-size:13px; color:var(--color-text-muted); }

.transparency { background:var(--color-primary); color:#fff; }
.transparency .section-kicker { color:#d5e7e1; }
.transparency-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:60px; align-items:start; }
.transparency h2 { margin-top:14px; }
.transparency-copy { display:grid; gap:14px; }
.transparency-row { border-top:1px solid rgba(255,255,255,.22); padding:20px 0; display:grid; grid-template-columns:160px 1fr; gap:20px; }
.transparency-row strong { font-family:'Fraunces',serif; font-size:20px; }
.transparency-row span { color:rgba(255,255,255,.72); }

.lead { background:var(--color-surface); }
.lead-grid { display:grid; grid-template-columns:.82fr 1.18fr; gap:clamp(40px,8vw,110px); align-items:start; }
.lead-copy { position:sticky; top:120px; }
.lead-copy h2 { margin:14px 0 20px; }
.lead-copy p { color:var(--color-text-muted); }
.contact-card { margin-top:28px; padding:20px 0; border-top:1px solid var(--color-line); border-bottom:1px solid var(--color-line); font-size:14px; }
.lead-form { background:var(--color-bg); border:1px solid var(--color-line); border-radius:var(--radius-lg); padding:clamp(24px,4vw,42px); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field { display:flex; flex-direction:column; gap:8px; }
.field.full { grid-column:1/-1; }
.field label { font-size:13px; font-weight:700; }
.field input, .field select, .field textarea {
  width:100%;
  border:1px solid #bbb4a8;
  background:var(--color-surface);
  color:var(--color-text);
  border-radius:12px;
  min-height:50px;
  padding:12px 14px;
  outline:none;
  transition:border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height:120px; resize:vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color:var(--color-primary); box-shadow:0 0 0 3px rgba(30,79,67,.12); }
.consent { display:flex; gap:10px; align-items:flex-start; margin:20px 0; font-size:12px; color:var(--color-text-muted); }
.consent input { margin-top:4px; }
.form-note { font-size:11px; color:var(--color-text-muted); margin-top:12px; }

.site-footer { background:#0e1714; color:#f4f0e8; padding:64px 0 34px; }
.footer-grid { display:grid; grid-template-columns:1.2fr .7fr .7fr 1fr; gap:36px; }
.footer-brand p { margin-top:14px; color:rgba(244,240,232,.6); max-width:340px; }
.footer-title { font-size:12px; text-transform:uppercase; letter-spacing:.13em; color:rgba(244,240,232,.5); margin-bottom:14px; }
.footer-links { display:grid; gap:8px; }
.footer-links a { text-decoration:none; font-size:14px; color:rgba(244,240,232,.78); }
.footer-links a:hover { color:#fff; }
.legal-data { font-size:13px; line-height:1.75; color:rgba(244,240,232,.7); }
.footer-disclaimer { margin-top:46px; padding-top:22px; border-top:1px solid rgba(255,255,255,.12); display:grid; grid-template-columns:1fr auto; gap:28px; align-items:end; }
.footer-disclaimer p { font-size:11px; color:rgba(244,240,232,.5); max-width:940px; }
.footer-disclaimer span { font-size:11px; color:rgba(244,240,232,.5); white-space:nowrap; }

.legal-hero { padding:70px 0 46px; }
.legal-hero h1 { max-width:850px; }
.legal-hero p { margin-top:18px; max-width:740px; color:var(--color-text-muted); }
.legal-layout { display:grid; grid-template-columns:260px minmax(0,780px); gap:70px; padding-bottom:96px; }
.legal-aside { position:sticky; top:120px; align-self:start; border-top:1px solid var(--color-line); }
.legal-aside a { display:block; padding:12px 0; border-bottom:1px solid var(--color-line); text-decoration:none; font-size:13px; color:var(--color-text-muted); }
.legal-copy h2 { margin:46px 0 18px; font-size:28px; }
.legal-copy h2:first-child { margin-top:0; }
.legal-copy p { margin:0 0 17px; color:#3d3e38; }
.legal-copy strong { color:var(--color-text); }

.thanks-hero { min-height:68vh; display:grid; place-items:center; padding:80px 0; }
.thanks-card { width:min(900px,100%); background:var(--color-surface); border:1px solid var(--color-line); border-radius:var(--radius-lg); padding:clamp(28px,6vw,70px); box-shadow:var(--shadow); }
.thanks-card h1 { margin:14px 0 20px; }
.thanks-card .lede { max-width:720px; }
.next-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin:36px 0; }
.next-card { padding:22px; border:1px solid var(--color-line); border-radius:var(--radius-md); background:var(--color-bg); }
.next-card span { font-family:'Fraunces',serif; font-size:32px; color:var(--color-accent); }
.next-card h3 { font-size:20px; margin:9px 0; }
.next-card p { font-size:13px; color:var(--color-text-muted); }


.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity:1; transform:none; }

:focus-visible { outline:3px solid rgba(217,104,59,.45); outline-offset:3px; }

@media (max-width: 1024px) {
  .nav { display:none; }
  .nav-toggle { display:flex; justify-self:end; }
  .header-cta { display:none; }
  .header-inner { grid-template-columns:auto 1fr auto; }
  .nav.mobile-open { position:fixed; inset:105px 16px auto 16px; display:grid; gap:0; background:var(--color-surface); border:1px solid var(--color-line); border-radius:var(--radius-md); box-shadow:var(--shadow); padding:10px; }
  .nav.mobile-open a { padding:14px; border-bottom:1px solid var(--color-line); }
  .nav.mobile-open a:last-child { border-bottom:0; }
  .hero-grid, .editorial-grid, .catalog-head, .split-grid, .transparency-grid, .lead-grid { grid-template-columns:1fr; }
  .hero-media { min-height:540px; }
  .hero-photo { inset:0 0 0 8%; }
  .editorial-title, .lead-copy { position:static; }
  .box-stage, .product-grid { grid-template-columns:1fr 1fr; }
  .box-scene:last-child, .product-card:last-child { grid-column:1/-1; max-width:calc(50% - 9px); width:100%; justify-self:center; }
  .category-grid { grid-template-columns:repeat(3,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .legal-layout { grid-template-columns:1fr; gap:30px; }
  .legal-aside { position:static; display:grid; grid-template-columns:repeat(3,1fr); }
  .legal-aside a { padding:10px; }
}

@media (max-width: 767px) {
  :root { --space-8: 68px; --space-7: 52px; }
  .container, .header-inner { width:min(100% - 22px,var(--max)); }
  .header-inner { height:64px; }
  .brand-name { font-size:18px; }
  .hero { padding-top:44px; }
  .hero-grid { gap:34px; }
  .hero-media { min-height:420px; }
  .hero-photo { inset:0 0 0 0; }
  .hero-stamp { width:150px; min-height:150px; left:12px; bottom:18px; padding:18px; }
  .hero-stamp strong { font-size:18px; }
  .fact-grid { grid-template-columns:1fr 1fr; }
  .fact:nth-child(2) { border-right:0; }
  .fact:nth-child(-n+2) { border-bottom:1px solid var(--color-line); }
  .article-copy p { font-size:16px; }
  .box-lab-head { grid-template-columns:1fr; gap:20px; }
  .box-stage, .product-grid { grid-template-columns:1fr; }
  .box-scene:last-child, .product-card:last-child { grid-column:auto; max-width:none; }
  .box-scene { min-height:640px; }
  .box-lab-actions { align-items:flex-start; flex-direction:column; }
  .category-grid { grid-template-columns:1fr 1fr; }
  .category-card:last-child { grid-column:1/-1; }
  .transparency-row { grid-template-columns:1fr; gap:5px; }
  .form-grid { grid-template-columns:1fr; }
  .field.full { grid-column:auto; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-disclaimer { grid-template-columns:1fr; }
  .next-grid { grid-template-columns:1fr; }
  .legal-aside { grid-template-columns:1fr; }
}

@media (max-width: 390px) {
  .category-grid { grid-template-columns:1fr; }
  .category-card:last-child { grid-column:auto; }
  .hero-actions .btn { width:100%; }
  .fact { padding:20px 14px; }
}


.journal-preview { background:var(--color-surface); }
.journal-head { display:grid; grid-template-columns:1fr .85fr; gap:clamp(28px,6vw,80px); align-items:end; margin-bottom:44px; }
.journal-head p { color:var(--color-text-muted); font-size:17px; }
.journal-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.journal-card { min-height:340px; padding:28px; border:1px solid var(--color-line); border-radius:var(--radius-lg); background:var(--color-bg); display:flex; flex-direction:column; justify-content:flex-start; text-decoration:none; color:inherit; transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.journal-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); border-color:rgba(30,79,67,.32); }
.journal-index { font-family:var(--font-display); font-size:42px; color:var(--color-primary); opacity:.42; }
.journal-card h3 { font-size:clamp(1.45rem,2.4vw,2rem); margin-bottom:14px; }
.journal-card p { color:var(--color-text-muted); }
.journal-link { display:flex; align-items:center; gap:8px; margin-top:28px; font-weight:800; font-size:13px; }
.journal-link svg { width:17px; height:17px; }
.journal-cta { display:flex; justify-content:flex-end; margin-top:28px; }

.article-hub-hero { padding:clamp(90px,12vw,160px) 0 clamp(70px,9vw,120px); background:var(--color-dark); color:var(--color-dark-text); }
.article-hub-hero .section-kicker { color:#bcd6ce; }
.article-hub-hero h1 { max-width:940px; margin:18px 0 24px; }
.article-hub-hero p { max-width:760px; color:rgba(246,242,233,.68); font-size:18px; margin-bottom:28px; }
.article-hub-hero .btn-ghost { color:#fff; border-color:rgba(255,255,255,.28); }
.article-hub { padding:var(--space-8) 0; background:var(--color-bg); }
.article-hub-layout { display:grid; grid-template-columns:250px minmax(0,1fr); gap:clamp(42px,8vw,110px); align-items:start; }
.article-toc { position:sticky; top:125px; display:grid; gap:4px; }
.article-toc span { font-size:11px; text-transform:uppercase; letter-spacing:.14em; color:var(--color-text-muted); margin-bottom:12px; }
.article-toc a { padding:12px 0; color:var(--color-text-muted); text-decoration:none; border-bottom:1px solid var(--color-line); font-size:13px; transition:color .2s var(--ease), padding-left .2s var(--ease); }
.article-toc a:hover { color:var(--color-primary); padding-left:7px; }
.article-stack { display:grid; gap:0; }
.feature-article { position:relative; padding:0 0 clamp(72px,10vw,130px); margin-bottom:clamp(72px,10vw,130px); border-bottom:1px solid var(--color-line); scroll-margin-top:130px; }
.feature-article:last-child { border-bottom:0; margin-bottom:0; }
.article-number { display:block; font-family:var(--font-display); font-size:clamp(64px,10vw,128px); line-height:.8; color:var(--color-primary); opacity:.12; margin-bottom:-12px; }
.feature-article h2 { max-width:830px; margin:15px 0 28px; }
.feature-article p { max-width:780px; font-size:18px; color:#34352f; margin-bottom:24px; }
.feature-article .article-lede { font-size:clamp(1.25rem,2.2vw,1.55rem); line-height:1.55; color:var(--color-text); }
.feature-article .article-callout { max-width:780px; }
.feature-article .article-image { max-width:900px; }
.article-end-cta { margin-top:48px; padding:28px; background:var(--color-surface); border:1px solid var(--color-line); border-radius:var(--radius-lg); display:flex; gap:28px; align-items:center; justify-content:space-between; }
.article-end-cta h3 { margin-top:8px; }

@media (max-width: 1024px) {
  .journal-head { grid-template-columns:1fr; }
  .journal-grid { grid-template-columns:1fr 1fr; }
  .journal-card:last-child { grid-column:1/-1; }
  .article-hub-layout { grid-template-columns:1fr; }
  .article-toc { position:static; grid-template-columns:repeat(3,1fr); gap:10px; }
  .article-toc span { grid-column:1/-1; }
}
@media (max-width: 767px) {
  .journal-grid, .article-toc { grid-template-columns:1fr; }
  .journal-card:last-child { grid-column:auto; }
  .journal-card { min-height:280px; }
  .article-end-cta { align-items:flex-start; flex-direction:column; }
  .feature-article p { font-size:16px; }
  .box-visual { width:228px; height:300px; }
  .box-product { width:218px; height:230px; }
  .box-carousel-viewport { height:194px; }
  .box-scene { min-height:650px; }
  .check-list { grid-template-columns:1fr; }
  .split-grid { width:min(100% - 32px,1120px); }
}
@media (prefers-reduced-motion: reduce) {
  .box-lid,.box-product,.box-scene,.box-scene::before { transition-duration:.01ms !important; }
  .box-click-dot { animation:none !important; }
}


.product-hub-hero p { max-width: 860px; }
.product-directory { background: var(--color-surface); }
.product-directory-head { display:grid; grid-template-columns: 1fr .9fr; gap: 32px; align-items:end; margin-bottom: 34px; }
.product-directory-head p { color: var(--color-text-muted); font-size: 17px; }
.product-directory-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.directory-link { min-height: 120px; padding: 22px; border:1px solid var(--color-line); border-radius: var(--radius-md); background: var(--color-bg); text-decoration:none; color:inherit; display:grid; gap:10px; transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.directory-link span { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--color-text-muted); }
.directory-link strong { font-size: 1.1rem; line-height: 1.35; }
.directory-link svg { width: 18px; height: 18px; color: var(--color-primary); }
.directory-link:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(30,79,67,.24); }
.product-detail-hub { background: var(--color-bg); }
.product-detail-stack { display:grid; gap: 22px; }
.detail-card { display:grid; grid-template-columns: 340px minmax(0,1fr); gap: 28px; border:1px solid var(--color-line); border-radius: var(--radius-lg); padding: 26px; background: var(--color-surface); scroll-margin-top: 120px; }
.detail-media { aspect-ratio: 1/1; border-radius: var(--radius-md); overflow:hidden; background: var(--color-bg); }
.detail-copy { display:grid; gap: 16px; align-content:start; }
.detail-meta { display:flex; flex-wrap:wrap; gap:10px; align-items:center; }
.detail-index, .detail-box, .detail-cat { display:inline-flex; align-items:center; min-height: 34px; padding: 0 12px; border-radius: 999px; font-size: 12px; font-weight: 800; letter-spacing: .05em; }
.detail-index { background: var(--color-primary); color: #fff; }
.detail-box { background: rgba(30,79,67,.1); color: var(--color-primary); }
.detail-cat { background: rgba(217,104,59,.12); color: var(--color-accent); }
.detail-card h2 { font-size: clamp(1.7rem,2.6vw,2.4rem); margin: 0; }
.detail-lede { font-size: 1.1rem; color: var(--color-text); }
.detail-card p { color: #34352f; margin: 0; }
.detail-notes { display:grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.detail-notes div { padding: 18px; border: 1px solid var(--color-line); border-radius: var(--radius-md); background: var(--color-bg); }
.detail-notes strong { display:block; margin-bottom: 8px; }
.detail-notes span { color: var(--color-text-muted); font-size: 15px; line-height: 1.55; }
.detail-actions { display:flex; flex-wrap:wrap; gap: 12px; padding-top: 4px; }
.detail-price-note { color: var(--color-text-muted); font-size: 14px; line-height: 1.6; }
@media (max-width: 1024px) {
  .product-directory-head, .detail-card { grid-template-columns: 1fr; }
  .product-directory-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 767px) {
  .product-directory-grid, .detail-notes { grid-template-columns: 1fr; }
  .detail-card { padding: 22px; }
}



.product-modal {
  position:fixed;
  inset:0;
  display:grid;
  place-items:center;
  padding:24px;
  z-index:120;
  opacity:0;
  visibility:hidden;
  transition:opacity .25s var(--ease), visibility .25s var(--ease);
}
.product-modal.is-open { opacity:1; visibility:visible; }
.body-modal-open { overflow:hidden; }
.product-modal-backdrop { position:absolute; inset:0; background:rgba(17,25,23,.62); backdrop-filter:blur(6px); }
.product-modal-dialog {
  position:relative;
  width:min(860px, 100%);
  display:grid;
  grid-template-columns:minmax(280px, 360px) minmax(0, 1fr);
  gap:0;
  background:var(--color-surface);
  border:1px solid rgba(17,25,23,.08);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 28px 70px rgba(10,14,13,.22);
  z-index:1;
}
.product-modal-close {
  position:absolute;
  right:16px;
  top:16px;
  width:44px;
  height:44px;
  border-radius:50%;
  border:1px solid rgba(17,25,23,.1);
  background:rgba(255,255,255,.9);
  font-size:28px;
  line-height:1;
  cursor:pointer;
  z-index:2;
}
.product-modal-media { min-height:100%; background:var(--color-bg); }
.product-modal-media img { width:100%; height:100%; object-fit:cover; display:block; }
.product-modal-content { padding:34px 34px 30px; display:flex; flex-direction:column; gap:18px; }
.product-modal-meta { display:flex; flex-wrap:wrap; gap:10px; }
.product-modal-meta span {
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(30,79,67,.08);
  color:var(--color-primary);
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.product-modal-content h3 { margin:0; font-size:clamp(1.8rem, 3vw, 2.4rem); }
.product-modal-content p { margin:0; color:var(--color-text-muted); }
.product-modal-specs { display:flex; flex-wrap:wrap; gap:10px; }
.product-modal-specs span {
  border:1px solid var(--color-line);
  border-radius:999px;
  padding:9px 12px;
  font-size:13px;
  color:var(--color-text);
  background:var(--color-bg);
}
.product-modal-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:auto; }
@media (max-width: 767px) {
  .product-modal { padding:16px; }
  .product-modal-dialog { grid-template-columns:1fr; width:min(560px,100%); }
  .product-modal-media { min-height:280px; }
  .product-modal-content { padding:24px 20px 22px; }
}

/* Editorial article system */
.journal-grid-editorial { grid-template-columns:repeat(3,minmax(0,1fr)); }
.journal-grid-editorial .journal-card-featured { grid-column:1/-1; min-height:300px; background:var(--color-dark); color:var(--color-dark-text); border-color:transparent; }
.journal-grid-editorial .journal-card-featured p { color:rgba(246,242,233,.68); max-width:760px; }
.journal-grid-editorial .journal-card-featured .section-kicker { color:#bcd6ce; }
.journal-grid-editorial .journal-card-featured .journal-index { color:rgba(255,255,255,.42); }
.journal-card .section-kicker { margin-bottom:12px; }
.article-listing { background:var(--color-bg); }
.article-hero-actions { display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.article-meta { color:rgba(246,242,233,.58); font-size:13px; }
.article-page .article-toc a.is-current { color:var(--color-primary); font-weight:700; }
.article-page .feature-article h3 { max-width:780px; margin:42px 0 14px; font-family:'Fraunces',serif; font-size:clamp(1.45rem,2.4vw,2rem); line-height:1.15; }
.article-page .feature-article .article-image { margin-top:34px; aspect-ratio:16/9; border-radius:var(--radius-lg); overflow:hidden; }
.article-page .feature-article .image-caption { max-width:780px; margin:10px 0 32px; font-size:12px; color:var(--color-text-muted); }
.article-page .feature-article .article-callout strong { color:var(--color-text); }
@media (max-width:1024px){.journal-grid-editorial{grid-template-columns:1fr 1fr}.journal-grid-editorial .journal-card-featured{grid-column:1/-1}}
@media (max-width:767px){.journal-grid-editorial{grid-template-columns:1fr}.journal-grid-editorial .journal-card-featured{grid-column:auto;min-height:330px}.article-hero-actions{align-items:flex-start;flex-direction:column}}

.journal-card-media {
  width:calc(100% + 56px);
  margin:-28px -28px 22px;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:var(--radius-lg) var(--radius-lg) 0 0;
  background:var(--color-surface-2);
}
.journal-card-media img { width:100%; height:100%; object-fit:cover; display:block; }
.journal-grid-editorial .journal-card-featured .journal-card-media { aspect-ratio:16/6; }
@media (max-width:767px){
  body {
    word-break: break-word;
  }
  .journal-card-media { width:calc(100% + 56px); aspect-ratio:16/9; }
  .journal-grid-editorial .journal-card-featured .journal-card-media { aspect-ratio:16/9; }
}

/* Article image slots now contain real images 23.webp–26.webp. */
.article-image-slot { position:relative; overflow:hidden; background:var(--color-surface-2); }
.article-image-slot img { width:100%; height:100%; object-fit:cover; display:block; }
.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 9999;
  width: min(660px, calc(100% - 48px));
  opacity: 0;
  visibility: hidden;
  transform: translateY(28px) scale(.985);
  transform-origin: left bottom;
  pointer-events: none;
  transition:
    opacity .32s var(--ease),
    visibility .32s var(--ease),
    transform .32s var(--ease);
}

.cookie-banner.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.cookie-banner__panel {
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.cookie-banner__top {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 24px;
  background: var(--color-dark);
  color: var(--color-dark-text);
}

.cookie-banner__label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cookie-banner__label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.cookie-banner__status {
  color: rgba(246, 242, 233, .55);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cookie-banner__body {
  padding: 28px 28px 18px;
}

.cookie-banner__body h3 {
  max-width: 520px;
  margin: 0 0 14px;
  color: var(--color-text);
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.cookie-banner__body p {
  max-width: 570px;
  margin: 0;
  color: var(--color-text-muted);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  line-height: 1.65;
}

.cookie-banner__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0 28px 22px;
}

.cookie-banner__legal a {
  position: relative;
  color: var(--color-primary);
  font-size: .76rem;
  font-weight: 700;
  text-decoration: none;
}

.cookie-banner__legal a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -3px;
  height: 1px;
  background: var(--color-primary);
  transition: right .2s var(--ease);
}

.cookie-banner__legal a:hover::after {
  right: 0;
}

.cookie-banner__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--color-line);
}

.cookie-btn {
  min-height: 58px;
  border: 0;
  border-radius: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background .22s var(--ease),
    color .22s var(--ease);
}

.cookie-btn--accept {
  background: var(--color-primary);
  color: #fff;
}

.cookie-btn--accept:hover {
  background: var(--color-primary-2);
}

.cookie-btn--necessary {
  background: var(--color-bg);
  color: var(--color-text);
  border-left: 1px solid var(--color-line);
}

.cookie-btn--necessary:hover {
  background: var(--color-surface-2);
}

.cookie-btn:focus-visible,
.cookie-banner__legal a:focus-visible,
.cookie-settings-link:focus-visible {
  outline: 3px solid rgba(217, 104, 59, .45);
  outline-offset: 3px;
}

.cookie-settings-link {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9000;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  background: var(--color-dark);
  color: var(--color-dark-text);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(14, 23, 20, .18);
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform .22s var(--ease),
    background .22s var(--ease),
    box-shadow .22s var(--ease);
}

.cookie-settings-link__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--color-accent);
}

.cookie-settings-link:hover {
  transform: translateY(-2px);
  background: var(--color-primary-2);
  box-shadow: 0 16px 36px rgba(14, 23, 20, .22);
}

body:has(.cookie-banner.show) .cookie-settings-link {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 700px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
  }

  .cookie-banner__panel {
    border-radius: 22px;
  }

  .cookie-banner__top {
    min-height: 42px;
    padding: 0 18px;
  }

  .cookie-banner__status {
    display: none;
  }

  .cookie-banner__body {
    padding: 22px 20px 16px;
  }

  .cookie-banner__body h3 {
    font-size: 1.75rem;
  }

  .cookie-banner__body p {
    font-size: .84rem;
    line-height: 1.55;
  }

  .cookie-banner__legal {
    gap: 14px;
    padding: 0 20px 18px;
  }

  .cookie-banner__actions {
    grid-template-columns: 1fr;
  }

  .cookie-btn {
    min-height: 52px;
  }

  .cookie-btn--necessary {
    border-left: 0;
    border-top: 1px solid var(--color-line);
  }

  .cookie-settings-link {
    right: 12px;
    bottom: 12px;
    min-height: 38px;
    padding: 0 13px;
    font-size: .68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner,
  .cookie-btn,
  .cookie-banner__legal a,
  .cookie-settings-link {
    transition: none;
  }
}