:root {
  --bg: #0c0e0e;
  --bg-alt: #141717;
  --surface: #1c2021;
  --surface-2: #242829;
  --light: #e8e6e1;
  --light-surface: #f4f3f0;
  --line: rgba(255, 255, 255, 0.10);
  --line-dark: rgba(12, 14, 14, 0.12);
  --text: #f3f2ef;
  --text-muted: #9ba09f;
  --text-dark: #141717;
  --text-dark-muted: #5b6160;
  --accent: #c7d2bf;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shell: 1240px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.is-locked { overflow: hidden; }

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

a { color: inherit; }

h1, h2, h3 { margin: 0 0 0.6em; line-height: 1.08; letter-spacing: -0.03em; font-weight: 700; }

p { margin: 0 0 1em; }

ul { margin: 0; padding: 0; list-style: none; }

address { font-style: normal; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--light);
  color: var(--text-dark);
  padding: 12px 18px;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.eyebrow--dark { color: var(--text-dark-muted); }

.tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.button--light {
  background: var(--light);
  color: var(--text-dark);
}
.button--light:hover { transform: translateY(-2px); background: #ffffff; }
.button--ghost {
  background: transparent;
  border-color: var(--line);
  color: inherit;
}
.button--ghost:hover { transform: translateY(-2px); border-color: currentColor; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  padding: 14px 0;
  background: rgba(12, 14, 14, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), padding 0.3s var(--ease);
}
.site-header.is-scrolled {
  padding: 8px 0;
  background: rgba(12, 14, 14, 0.94);
  border-bottom-color: var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  margin: 0;
}
.nav {
  display: none;
  gap: 26px;
}
.nav__link {
  position: relative;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { transform: scaleX(1); }

.site-header__actions { display: flex; align-items: center; gap: 10px; }
.site-header__cta { display: none; }

.icon-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: inherit;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 14px;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.icon-button:hover { border-color: var(--text); transform: translateY(-1px); }
.icon-button__count {
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--light);
  color: var(--text-dark);
  font-size: 12px;
}
.icon-button__count.is-bumped { animation: bump 0.4s var(--ease); }

@keyframes bump {
  0% { transform: scale(1); }
  45% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.burger {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}
.burger span {
  width: 16px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 40px;
  text-align: center;
}
.hero__glow {
  position: absolute;
  top: -260px;
  left: 50%;
  width: 900px;
  height: 640px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(199, 210, 191, 0.18), rgba(12, 14, 14, 0));
  filter: blur(20px);
  animation: drift 18s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes drift {
  from { transform: translateX(-54%) translateY(0); }
  to { transform: translateX(-46%) translateY(30px); }
}
.hero__title {
  font-size: clamp(38px, 8.2vw, 92px);
  font-weight: 800;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 25%, #9aa3a0 105%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 22px;
}
.hero__lead {
  max-width: 620px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 15px;
}
.hero__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  animation: kenburns 26s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.02); }
  to { transform: scale(1.1); }
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 14, 14, 0.15) 0%, rgba(12, 14, 14, 0.85) 78%);
}
.hero__panel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  padding: 18px;
  text-align: left;
  margin-top: -140px;
}
.hero__panel-block {
  background: rgba(20, 23, 23, 0.78);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.hero__panel-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.hero__stats { display: flex; gap: 22px; flex-wrap: wrap; }
.hero__stat-value {
  display: block;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.hero__stat-label { font-size: 12px; color: var(--text-muted); }
.hero__notes { display: grid; gap: 12px; }
.hero__notes p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.section { padding: 72px 0; }
.section--light {
  background: var(--light);
  color: var(--text-dark);
}
.section--light .section__lead,
.section--light .card p,
.section--light .feature__card p { color: var(--text-dark-muted); }
.section--light .tag { border-color: var(--line-dark); color: var(--text-dark-muted); }
.section--light .button--light {
  background: var(--text-dark);
  color: var(--light);
}

.section__title { font-size: clamp(28px, 4.6vw, 48px); }
.section__title--centred { text-align: center; }
.section__lead {
  max-width: 560px;
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 40px;
}
.section__title--centred + .section__lead { margin: 0 auto 44px; text-align: center; }

.split { display: grid; gap: 24px; margin-bottom: 36px; }
.split__body p { color: var(--text-muted); margin-bottom: 24px; }

.duo { display: grid; gap: 18px; }
.duo__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.duo__card:hover { transform: translateY(-4px); border-color: rgba(255, 255, 255, 0.24); }
.duo__card-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.duo__card h3 { font-size: 22px; margin-bottom: 0; }
.duo__card p { color: var(--text-muted); font-size: 14px; margin-top: 16px; }
.duo__list { display: grid; gap: 10px; margin: 18px 0 24px; }
.duo__list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
}
.duo__list li span:last-child { color: var(--text); font-weight: 600; }
.duo__card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}
.duo__card--media { position: relative; padding: 0; min-height: 360px; }
.duo__card--media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.duo__overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(180deg, rgba(12, 14, 14, 0.1), rgba(12, 14, 14, 0.9));
  min-height: 360px;
}
.duo__overlay p { margin-top: 10px; }

.cards {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.card {
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(12, 14, 14, 0.24); }
.card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.card:hover img { transform: scale(1.05); }
.card__body { padding: 22px; }
.card__body h3 { font-size: 20px; }
.card__body p { font-size: 14px; color: var(--text-muted); margin: 0; }

.products {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.product {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.product:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, 0.25); }
.product__media { overflow: hidden; background: var(--surface-2); }
.product__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product:hover .product__media img { transform: scale(1.06); }
.product__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  flex: 1;
}
.product__name { font-size: 18px; margin: 4px 0 0; }
.product__desc { font-size: 13px; color: var(--text-muted); margin: 0; }
.product__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.product__price { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }

.feature { display: grid; gap: 18px; }
.feature__card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: transform 0.35s var(--ease);
}
.feature__card:hover { transform: translateY(-4px); }
.feature__card h3 { font-size: 21px; }
.feature__card p { font-size: 14px; margin: 0; }
.feature__list { display: grid; gap: 10px; margin-top: 20px; }
.feature__list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-dark-muted);
}
.feature__list li span:last-child { color: var(--text-dark); font-weight: 600; }
.feature__card--media {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 320px;
  color: var(--text);
}
.feature__card--media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.feature__overlay {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  align-items: flex-start;
  min-height: 320px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(12, 14, 14, 0.1), rgba(12, 14, 14, 0.88));
}
.feature__overlay h3 { margin-bottom: 0; }
.section--light .feature__overlay p { color: var(--text-muted); }
.section--light .feature__card--media .button--light { background: var(--light); color: var(--text-dark); }
.feature__card--stat {
  background: var(--text-dark);
  color: var(--light);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stat__value {
  font-size: clamp(42px, 7vw, 64px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat__label { font-size: 13px; margin: 14px 0 0; opacity: 0.75; }
.section--light .feature__card--stat p { color: inherit; }

.stories { display: grid; gap: 18px; }
.stories__quote,
.stories__note {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.stories__quote h3 { font-size: 22px; }
.stories__quote p,
.stories__note p { color: var(--text-muted); font-size: 14px; }
.stories__author { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; }
.stories__media { margin: 0; border-radius: var(--radius-lg); overflow: hidden; }
.stories__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform 0.7s var(--ease); }
.stories__media:hover img { transform: scale(1.04); }
.stories__stat {
  background: var(--light);
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery { display: grid; gap: 16px; grid-template-columns: 1fr; }
.gallery__item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.gallery__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery__item--wide img { aspect-ratio: 3 / 2; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px;
  font-size: 13px;
  color: var(--text);
  background: linear-gradient(180deg, rgba(12, 14, 14, 0), rgba(12, 14, 14, 0.85));
}

.section--delivery { background: var(--bg-alt); }
.delivery { display: grid; gap: 26px; }
.delivery__text p { color: var(--text-muted); font-size: 15px; }
.delivery__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.delivery__media { margin: 0; border-radius: var(--radius-lg); overflow: hidden; }
.delivery__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

.journal { display: grid; gap: 18px; }
.journal__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  transition: transform 0.35s var(--ease);
}
.journal__card:hover { transform: translateY(-5px); }
.journal__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.journal__card:hover img { transform: scale(1.05); }
.journal__body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 24px;
  background: linear-gradient(180deg, rgba(12, 14, 14, 0), rgba(12, 14, 14, 0.9));
}
.journal__body h3 { font-size: 20px; margin: 14px 0 0; }

.faq { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq__item {
  background: var(--light-surface);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p { margin: 14px 0 0; font-size: 14px; color: var(--text-dark-muted); }

.section--contact { padding-bottom: 88px; }
.contact { display: grid; gap: 28px; }
.contact p { color: var(--text-muted); max-width: 520px; }
.contact__details {
  display: grid;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.contact__details li {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.contact__details li:last-child { border-bottom: none; padding-bottom: 0; }
.contact__details span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}
.contact__details a { text-decoration: none; }
.contact__details a:hover { text-decoration: underline; }

.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
}
.footer__inner { display: grid; gap: 30px; }
.footer__brand p { color: var(--text-muted); font-size: 14px; max-width: 280px; }
.footer__brand .brand { color: var(--text); margin-bottom: 12px; display: block; }
.footer__col { display: grid; gap: 8px; align-content: start; }
.footer__col h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.footer__col p, .footer__col address, .footer__col a {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.footer__col a:hover { color: var(--text); }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.footer__bottom p { margin: 0; font-size: 12px; color: var(--text-muted); }

.cart { position: fixed; inset: 0; z-index: 120; }
.cart__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 8, 0.6);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.cart.is-open .cart__backdrop { opacity: 1; }
.cart__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(440px, 100%);
  background: var(--bg-alt);
  border-left: 1px solid var(--line);
  padding: 22px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
}
.cart.is-open .cart__panel { transform: translateX(0); }
.cart__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.cart__head h2 { font-size: 22px; margin: 0; }
.cart__close {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.cart__close:hover { border-color: var(--text); }
.cart__empty { color: var(--text-muted); font-size: 14px; }
.cart__items { display: grid; gap: 14px; }
.cart__item {
  display: grid;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.cart__item-name { margin: 0; font-size: 15px; font-weight: 600; }
.cart__item-price { margin: 2px 0 0; font-size: 13px; color: var(--text-muted); }
.cart__qty { display: flex; align-items: center; gap: 10px; }
.cart__qty button {
  min-width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.25s var(--ease);
}
.cart__qty button:hover { border-color: var(--text); }
.cart__remove { padding: 0 14px; font-size: 12px; color: var(--text-muted); }
.cart__total:not([hidden]) {
  display: flex;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 700;
  margin: 18px 0;
}
.cart__checkout { width: 100%; }
.cart__checkout[hidden] { display: none; }
.cart__form:not([hidden]) { display: grid; gap: 14px; }
.cart__form h3 { font-size: 19px; margin: 0; }
.field { display: grid; gap: 6px; }
.field label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-muted); }
.field input, .field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  font: inherit;
  font-size: 15px;
  padding: 11px 14px;
  transition: border-color 0.25s var(--ease);
}
.field input:hover, .field textarea:hover { border-color: rgba(255, 255, 255, 0.24); }
.field input.is-invalid, .field textarea.is-invalid { border-color: #e08a7a; }
.field__error { margin: 0; font-size: 12px; color: #e08a7a; min-height: 0; }
.field__error:empty { display: none; }
.cart__legal { font-size: 12px; color: var(--text-muted); margin: 0; }
.cart__legal a { color: var(--text); }
.cart__form-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cart__form-actions .button { flex: 1; }
.cart__done h3 { font-size: 22px; }
.cart__done p { font-size: 14px; color: var(--text-muted); }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 150;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  background: var(--light);
  color: var(--text-dark);
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.toast.is-visible { opacity: 1; transform: translate(-50%, 0); }

.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 100; }
.progress span {
  display: block;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}

.legal { padding: 56px 0 80px; }
.legal__inner { max-width: 840px; }
.legal__head h1 { font-size: clamp(32px, 6vw, 56px); }
.legal__updated { color: var(--text-muted); font-size: 14px; }
.legal__toc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  margin: 32px 0 44px;
}
.legal__toc h2 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-muted); }
.legal__toc ol { margin: 0; padding-left: 20px; display: grid; gap: 8px; }
.legal__toc a { font-size: 14px; color: var(--text-muted); text-decoration: none; }
.legal__toc a:hover { color: var(--text); text-decoration: underline; }
.legal__section { margin-bottom: 38px; scroll-margin-top: 90px; }
.legal__section h2 { font-size: clamp(21px, 3vw, 28px); }
.legal__section p, .legal__section li { color: var(--text-muted); font-size: 15px; }
.legal__section ul { display: grid; gap: 10px; margin: 0 0 16px; padding-left: 18px; list-style: disc; }
.legal__section strong { color: var(--text); }
.legal__section a { color: var(--text); }

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 600px) {
  .cards, .products, .gallery, .journal { grid-template-columns: repeat(2, 1fr); }
  .hero__panel { grid-template-columns: repeat(2, 1fr); padding: 24px; }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
  .cart__item { grid-template-columns: 1fr auto; align-items: center; }
}

@media (min-width: 900px) {
  .section { padding: 96px 0; }
  .hero { padding: 88px 0 56px; }
  .nav { display: flex; }
  .burger { display: none; }
  .site-header__cta { display: inline-flex; }
  .split { grid-template-columns: 1fr 1fr; align-items: end; gap: 60px; margin-bottom: 52px; }
  .duo { grid-template-columns: 1.05fr 0.95fr; }
  .cards { grid-template-columns: repeat(4, 1fr); }
  .products { grid-template-columns: repeat(3, 1fr); }
  .feature { grid-template-columns: repeat(3, 1fr); }
  .feature__card--wide { grid-column: span 2; }
  .feature__card--media { grid-row: span 2; }
  .stories { grid-template-columns: repeat(3, 1fr); }
  .stories__media { grid-column: span 2; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .journal { grid-template-columns: repeat(3, 1fr); }
  .journal__card--tall { grid-row: span 2; }
  .delivery { grid-template-columns: 1fr 1fr; align-items: center; gap: 48px; }
  .contact { grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
  .footer__inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .legal { padding: 80px 0 110px; }
}

@media (min-width: 1100px) {
  .products { grid-template-columns: repeat(4, 1fr); }
  .hero__panel { margin-top: -180px; padding: 30px; gap: 20px; }
}

@media (max-width: 899px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--line);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
  }
  .nav.is-open { max-height: 340px; }
  .nav__link { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .site-header { position: sticky; }
  .site-header__inner { position: relative; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
