:root {
  --yellow: #ffd900;
  --yellow-soft: #ffea63;
  --red: #ef2118;
  --ink: #111311;
  --ink-2: #1a1d1a;
  --slate: #4f554f;
  --paper: #f5f6f2;
  --white: #ffffff;
  --line: rgba(17, 19, 17, 0.13);
  --shadow: 0 24px 70px rgba(8, 10, 8, 0.16);
  --radius: 1.15rem;
  --shell: min(1180px, calc(100% - 2.5rem));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 1000;
  padding: .7rem 1rem;
  background: var(--white);
  color: var(--ink);
  border-radius: .5rem;
  font-weight: 800;
}

.skip-link:focus { top: 1rem; }

.shell { width: var(--shell); margin-inline: auto; }

.utility-bar {
  background: var(--ink);
  color: rgba(255,255,255,.78);
  font-size: .82rem;
  font-weight: 650;
}

.utility-inner {
  min-height: 2.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-inner p { margin: 0; }
.utility-links { display: flex; align-items: center; gap: 1.2rem; }
.utility-links a { transition: color .2s ease; }
.utility-links a:hover { color: var(--yellow); }

.status-dot {
  display: inline-block;
  width: .5rem;
  height: .5rem;
  margin-right: .45rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 .25rem rgba(255,217,0,.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(17,19,17,.08);
  backdrop-filter: blur(14px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled { box-shadow: 0 12px 36px rgba(10,12,10,.1); }

.nav-wrap {
  min-height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand { min-width: 0; display: inline-flex; align-items: center; gap: .8rem; flex: 0 0 auto; }
.brand img { width: 4.5rem; height: 4.5rem; object-fit: cover; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.08; }
.brand-copy strong { max-width: none; white-space: nowrap; font-size: .7rem; line-height: 1.2; letter-spacing: .055em; text-transform: uppercase; }
.brand-copy small { font-size: 1.35rem; font-weight: 950; color: var(--red); letter-spacing: .06em; }

.main-nav { display: flex; align-items: center; gap: 1.75rem; font-weight: 750; }
.main-nav > a:not(.nav-shop) { position: relative; padding-block: .5rem; }
.main-nav > a:not(.nav-shop)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: .25rem;
  height: 2px;
  background: var(--red);
  transition: right .25s ease;
}
.main-nav > a:not(.nav-shop):hover::after { right: 0; }
.main-nav > a[aria-current="page"]::after { right: 0; }

.nav-shop {
  padding: .8rem 1rem;
  border-radius: .7rem;
  background: var(--ink);
  color: var(--white);
  transition: transform .2s ease, background .2s ease;
}
.nav-shop:hover { background: var(--red); transform: translateY(-2px); }

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: .7rem;
  background: var(--ink);
  padding: .75rem;
  cursor: pointer;
}
.menu-toggle span { display: block; width: 100%; height: 2px; margin: .3rem 0; background: var(--white); transition: transform .2s ease, opacity .2s ease; }

.hero {
  position: relative;
  min-height: clamp(620px, 74vh, 800px);
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: #272b28;
}

.hero-media {
  position: absolute;
  inset: -2%;
  z-index: -3;
  background: url('/assets/hero-materialy.webp') center center / cover no-repeat;
  animation: hero-breathe 16s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(11,13,11,.93) 0%, rgba(11,13,11,.78) 38%, rgba(11,13,11,.24) 67%, rgba(11,13,11,.12) 100%),
    linear-gradient(0deg, rgba(11,13,11,.45), transparent 50%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-inner { padding-block: 5rem 6rem; }
.hero-copy { max-width: 720px; }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.eyebrow.dark { color: #8a7000; }

h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { margin-top: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 710px; margin-bottom: 1.35rem; font-size: clamp(3rem, 6.5vw, 6rem); font-weight: 950; }
h2 { font-size: clamp(2.25rem, 4.5vw, 4.25rem); font-weight: 920; }
h3 { font-size: 1.45rem; font-weight: 900; }

.hero-lead { max-width: 650px; margin: 0; color: rgba(255,255,255,.8); font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.hero-actions, .contact-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

.button {
  min-height: 3.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .9rem 1.25rem;
  border: 1px solid transparent;
  border-radius: .72rem;
  font-weight: 850;
  line-height: 1.15;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-3px); }
.button-primary { background: var(--yellow); color: var(--ink); box-shadow: 0 12px 26px rgba(255,217,0,.22); }
.button-primary:hover { background: var(--yellow-soft); box-shadow: 0 16px 34px rgba(255,217,0,.3); }
.button-ghost { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.07); color: var(--white); backdrop-filter: blur(8px); }
.button-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.13); }
.button-outline-light { border-color: rgba(255,255,255,.32); color: var(--white); }
.button-outline-light:hover { border-color: var(--yellow); color: var(--yellow); }
.button-dark { background: var(--ink); color: var(--white); box-shadow: 0 12px 26px rgba(17,19,17,.16); }
.button-dark:hover { background: var(--red); box-shadow: 0 16px 34px rgba(239,33,24,.2); }

.hero-corner {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3.5rem);
  bottom: clamp(1.5rem, 4vw, 3rem);
  width: clamp(8.5rem, 14vw, 12rem);
  height: clamp(8.5rem, 14vw, 12rem);
  display: block;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 20px 55px rgba(0,0,0,.32);
  overflow: hidden;
  transform: rotate(-5deg);
}

.hero-corner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof { position: relative; z-index: 3; margin-top: -2.2rem; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.proof-item { display: flex; align-items: center; gap: 1rem; min-height: 7.2rem; padding: 1.35rem 2rem; }
.proof-item + .proof-item { border-left: 1px solid var(--line); }
.proof-item strong { color: var(--red); font-size: 2.5rem; line-height: 1; }
.proof-item span { max-width: 12rem; font-weight: 800; line-height: 1.3; }

.section { padding-block: clamp(5rem, 9vw, 8.5rem); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .65fr); align-items: end; gap: 4rem; margin-bottom: 3rem; }
.section-heading h2 { margin-bottom: 0; }
.section-heading > p { margin: 0 0 .3rem; color: var(--slate); }

.offer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.offer-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.offer-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: var(--yellow);
  transform: scaleX(.26);
  transform-origin: left;
  transition: transform .3s ease;
}
.offer-card:hover { transform: translateY(-8px); border-color: rgba(17,19,17,.25); box-shadow: 0 20px 50px rgba(17,19,17,.11); }
.offer-card:hover::before { transform: scaleX(1); }
.card-number { align-self: flex-end; margin-bottom: auto; color: rgba(17,19,17,.25); font-size: .8rem; font-weight: 900; letter-spacing: .12em; }
.offer-card h3 { max-width: 15rem; margin-bottom: .8rem; }
.offer-card p { margin: 0 0 1.25rem; color: var(--slate); }
.offer-card a { width: fit-content; margin-top: auto; color: #665500; font-weight: 850; }
.accent-card { background: var(--yellow); }
.accent-card::before { background: var(--red); }
.accent-card p { color: rgba(17,19,17,.72); }
.accent-card a { color: var(--ink); }
.offer-more { display: flex; justify-content: center; margin-top: 2rem; }

.offer-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  color: var(--white);
  background:
    radial-gradient(circle at 86% 18%, rgba(255,217,0,.17), transparent 23rem),
    linear-gradient(135deg, #0b0d0b 0%, #1b1f1b 100%);
}
.offer-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent 10%, black 85%);
}
.offer-page-hero-inner { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .65fr); gap: clamp(2.5rem, 7vw, 7rem); align-items: end; }
.breadcrumb { display: inline-flex; align-items: center; gap: .5rem; margin-bottom: 2.2rem; color: rgba(255,255,255,.65); font-size: .9rem; font-weight: 750; }
.breadcrumb:hover { color: var(--yellow); }
.offer-page-hero h1 { max-width: 820px; margin-bottom: 1.35rem; font-size: clamp(3.2rem, 7vw, 6.8rem); }
.offer-page-lead { max-width: 730px; margin: 0; color: rgba(255,255,255,.74); font-size: clamp(1.05rem, 1.7vw, 1.25rem); }
.offer-page-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.purchase-guide { padding: 1.7rem; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.06); backdrop-filter: blur(8px); }
.purchase-guide-label { display: block; margin-bottom: 1rem; color: var(--yellow); font-size: .76rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.purchase-guide ol { display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none; counter-reset: purchase-step; }
.purchase-guide li { position: relative; padding-left: 2.4rem; color: rgba(255,255,255,.7); font-size: .94rem; }
.purchase-guide li::before { counter-increment: purchase-step; content: counter(purchase-step, decimal-leading-zero); position: absolute; left: 0; top: .05rem; color: rgba(255,255,255,.34); font-size: .72rem; font-weight: 900; letter-spacing: .08em; }
.purchase-guide strong { display: block; margin-bottom: .15rem; color: var(--white); font-size: 1rem; }

.categories-section { padding-block: clamp(5rem, 9vw, 8rem); }
.categories-intro { max-width: 780px; margin-bottom: 3rem; }
.categories-intro h2 { margin-bottom: 1rem; }
.categories-intro > p:not(.eyebrow) { max-width: 680px; margin: 0; color: var(--slate); font-size: 1.08rem; }
.category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.category-card { min-height: 390px; display: flex; flex-direction: column; padding: 1.7rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 12px 32px rgba(17,19,17,.045); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.category-card:hover { transform: translateY(-6px); border-color: rgba(17,19,17,.25); box-shadow: 0 22px 50px rgba(17,19,17,.1); }
.category-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.category-icon { width: 3.45rem; height: 3.45rem; display: grid; place-items: center; border-radius: .9rem; background: var(--yellow); color: var(--ink); }
.category-icon svg { width: 1.75rem; height: 1.75rem; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.availability { min-height: 1.8rem; display: inline-flex; align-items: center; padding: .3rem .65rem; border-radius: 999px; background: #edf7ed; color: #235b32; font-size: .72rem; font-weight: 900; letter-spacing: .045em; text-transform: uppercase; }
.category-card h2 { margin-bottom: .75rem; font-size: 1.55rem; letter-spacing: -.025em; }
.category-card > p { margin: 0 0 1rem; color: var(--slate); }
.category-list { margin: 0 0 1.6rem; padding: 0; list-style: none; color: var(--slate); font-size: .91rem; }
.category-list li { position: relative; padding-left: 1.1rem; }
.category-list li + li { margin-top: .35rem; }
.category-list li::before { content: ""; position: absolute; left: 0; top: .72em; width: .38rem; height: .38rem; border-radius: 50%; background: var(--yellow); }
.category-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem 1rem; margin-top: auto; }
.category-actions .button { min-height: 2.9rem; padding: .72rem .9rem; font-size: .88rem; }
.category-shop-link { display: inline-flex; align-items: center; gap: .4rem; color: #675500; font-size: .88rem; font-weight: 900; border-bottom: 2px solid var(--yellow); }
.category-shop-link:hover { color: var(--red); }

.offer-help { padding-bottom: clamp(5rem, 9vw, 8rem); }
.offer-help-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 2rem; padding: clamp(2rem, 5vw, 4rem); border-radius: calc(var(--radius) * 1.35); background: var(--yellow); }
.offer-help h2 { max-width: 780px; margin-bottom: .75rem; font-size: clamp(2rem, 4vw, 3.7rem); }
.offer-help p { max-width: 720px; margin: 0; color: rgba(17,19,17,.72); }
.offer-help-actions { display: flex; flex-direction: column; gap: .75rem; min-width: 240px; }
.offer-help-actions .button { width: 100%; }

.shop-banner { padding-bottom: 2rem; }
.shop-banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: calc(var(--radius) * 1.35);
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}
.shop-banner-inner::after {
  content: "";
  position: absolute;
  right: -6rem;
  top: -8rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(255,217,0,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255,217,0,.035), 0 0 0 8rem rgba(255,217,0,.02);
  pointer-events: none;
}
.shop-banner h2 { margin-bottom: .8rem; font-size: clamp(2rem, 3.8vw, 3.55rem); }
.shop-banner p:not(.eyebrow) { max-width: 700px; margin: 0; color: rgba(255,255,255,.68); }
.shop-banner .button { position: relative; z-index: 1; white-space: nowrap; }
.shop-mark { width: 6.3rem; height: 6.3rem; display: grid; place-items: center; flex: 0 0 auto; border: 2px solid var(--yellow); border-radius: 50%; color: var(--yellow); font-size: 1.5rem; font-weight: 950; transform: rotate(-7deg); }

.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(2rem, 7vw, 7rem); align-items: center; }
.about-panel h2 { margin-bottom: 1.35rem; }
.about-panel > p:not(.eyebrow) { max-width: 700px; color: var(--slate); font-size: 1.08rem; }
.text-link { display: inline-flex; gap: .6rem; margin-top: 1rem; color: #725f00; font-weight: 900; border-bottom: 2px solid var(--yellow); }
.locations-card { padding: 1.8rem; border-radius: var(--radius); background: var(--ink); color: var(--white); box-shadow: var(--shadow); }
.locations-label { margin: 0 0 1.2rem; color: var(--yellow); font-size: .78rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.locations-card ul { margin: 0; padding: 0; list-style: none; }
.locations-card li { display: flex; align-items: center; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid rgba(255,255,255,.15); }
.locations-card li span { color: rgba(255,255,255,.35); font-size: .72rem; font-weight: 850; }
.locations-card li strong { font-size: 1.45rem; }

.brands-section { padding-block: clamp(4rem, 8vw, 7rem); text-align: center; background: var(--yellow); }
.brands-section h2 { max-width: 800px; margin: 0 auto 2.5rem; }
.brand-list { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.brand-list span { padding: .75rem 1rem; border: 1px solid rgba(17,19,17,.27); border-radius: 999px; font-weight: 950; letter-spacing: .055em; background: rgba(255,255,255,.3); }
.contact-section { color: var(--white); background: var(--ink-2); }
.contact-intro { max-width: 780px; margin-bottom: 3rem; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: clamp(1.25rem, 4vw, 3.5rem); align-items: start; }
.contact-intro h2 { max-width: 680px; margin-bottom: 1.2rem; }
.contact-intro > p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.66); font-size: 1.1rem; }
.inquiry-form { scroll-margin-top: 7rem; padding: clamp(1.35rem, 3.5vw, 2.4rem); border-radius: var(--radius); background: var(--white); color: var(--ink); box-shadow: 0 24px 65px rgba(0,0,0,.24); }
.form-heading { margin-bottom: 1.6rem; }
.form-kicker { display: block; margin-bottom: .55rem; color: #735e00; font-size: .76rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.form-heading h3 { margin-bottom: .65rem; font-size: clamp(1.7rem, 3vw, 2.35rem); }
.form-heading p { margin: 0; color: var(--slate); }
.form-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.form-field { display: flex; flex-direction: column; gap: .4rem; }
.form-field-full { grid-column: 1 / -1; }
.form-field label { font-size: .9rem; font-weight: 850; }
.form-field label span { color: var(--slate); font-size: .82rem; font-weight: 600; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 3.2rem; padding: .78rem .9rem; border: 1px solid rgba(17,19,17,.22); border-radius: .68rem; background: #fafbf8; color: var(--ink); font: inherit; font-size: 1rem; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.form-field textarea { min-height: 9.5rem; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 0; border-color: #a88b00; background: var(--white); box-shadow: 0 0 0 4px rgba(255,217,0,.22); }
.form-submit { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 1rem 1.25rem; margin-top: 1.25rem; }
.form-submit .button { width: fit-content; border: 0; cursor: pointer; }
.form-submit p { margin: .1rem 0 0; color: var(--slate); font-size: .79rem; line-height: 1.55; }
.form-submit p a { color: #675500; font-weight: 800; text-decoration: underline; text-underline-offset: .15em; }
.form-status { margin: 1rem 0 0; padding: .75rem .9rem; border-radius: .6rem; background: #edf7ed; color: #1c5b31; font-size: .9rem; font-weight: 750; }
.contact-card { min-height: 100%; display: flex; flex-direction: column; gap: .75rem; padding: 2rem; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); background: rgba(255,255,255,.055); font-style: normal; }
.contact-card-label { color: var(--yellow); font-size: .76rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.contact-card strong { font-size: 1.15rem; }
.contact-card p { margin: 0; color: rgba(255,255,255,.66); }
.contact-card .registration-data { display: flex; flex-wrap: wrap; gap: .45rem 1rem; padding-block: .2rem; color: rgba(255,255,255,.82); font-size: .9rem; }
.registration-data span { white-space: nowrap; }
.registration-data b { color: var(--white); font-size: .76rem; letter-spacing: .06em; }
.contact-detail-label { color: var(--white); font-weight: 800; }
.contact-channel { display: flex; flex-direction: column; gap: .15rem; padding-top: .45rem; border-top: 1px solid rgba(255,255,255,.1); }
.contact-channel a { width: fit-content; font-weight: 800; overflow-wrap: anywhere; }
.contact-channel a:hover { color: var(--yellow); }
.contact-channel small { color: rgba(255,255,255,.58); font-size: .82rem; }
.contact-card > a:not(.map-link) { width: fit-content; font-weight: 800; }
.contact-card > a:hover { color: var(--yellow); }
.map-link { width: fit-content; margin-top: .7rem; padding-bottom: .15rem; color: var(--yellow); border-bottom: 1px solid rgba(255,217,0,.5); font-weight: 850; }

.site-footer { padding: 4rem 0 1.5rem; background: #0b0c0b; color: rgba(255,255,255,.68); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .6fr .7fr; gap: 3rem; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: .65rem; }
.footer-grid strong { margin-bottom: .25rem; color: var(--white); }
.footer-grid a:hover { color: var(--yellow); }
.footer-brand img { width: 5.2rem; height: 5.2rem; }
.footer-brand p { max-width: 360px; margin: .4rem 0 0; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .65rem 1.5rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .82rem; }

.cookie-notice {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 990;
  width: min(920px, calc(100% - 2rem));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1.05rem 1.15rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: #111311;
  color: var(--white);
  box-shadow: 0 22px 65px rgba(0,0,0,.35);
  transform: translateX(-50%);
  transition: opacity .2s ease, transform .2s ease;
}
.cookie-notice.is-closing { opacity: 0; transform: translate(-50%, 1rem); pointer-events: none; }
.cookie-notice-copy { min-width: 0; }
.cookie-notice-copy strong { display: block; margin-bottom: .15rem; color: var(--yellow); font-size: 1rem; }
.cookie-notice-copy p { margin: 0; color: rgba(255,255,255,.78); font-size: .9rem; line-height: 1.55; }
.cookie-notice-copy a { color: var(--white); font-weight: 800; text-decoration: underline; text-underline-offset: .18em; }
.cookie-notice-copy a:hover { color: var(--yellow); }
.cookie-notice-button { min-width: 7.6rem; border: 0; cursor: pointer; white-space: nowrap; }

.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: none;
  align-items: center;
  gap: .55rem;
  min-height: 3.2rem;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(239,33,24,.35);
  font-weight: 900;
}

.legal-page { min-height: 72vh; padding-block: clamp(4rem, 8vw, 7rem); background: var(--paper); }
.legal-card { max-width: 900px; padding: clamp(1.4rem, 5vw, 4.5rem); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.legal-card h1 { color: var(--ink); font-size: clamp(2.6rem, 7vw, 5rem); }
.legal-card h2 { margin: 2.4rem 0 .65rem; font-size: clamp(1.35rem, 3vw, 1.8rem); letter-spacing: -.02em; }
.legal-card p { color: var(--slate); }
.legal-card ul { margin: .75rem 0 0; padding-left: 1.35rem; color: var(--slate); }
.legal-card li + li { margin-top: .65rem; }
.legal-card a:not(.button) { color: #6b5800; text-decoration: underline; text-underline-offset: .18em; }
.legal-lead { font-size: 1.12rem; }
.legal-updated { margin-top: 2.6rem; font-size: .9rem; }
.legal-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; margin-top: 1.5rem; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.65,.3,1), transform .7s cubic-bezier(.2,.65,.3,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.offer-grid .reveal:nth-child(2), .proof-grid .reveal:nth-child(2) { transition-delay: .08s; }
.offer-grid .reveal:nth-child(3), .proof-grid .reveal:nth-child(3) { transition-delay: .16s; }
.offer-grid .reveal:nth-child(4) { transition-delay: .05s; }
.offer-grid .reveal:nth-child(5) { transition-delay: .13s; }
.offer-grid .reveal:nth-child(6) { transition-delay: .21s; }

@keyframes hero-breathe {
  from { transform: scale(1.02); }
  to { transform: scale(1.075) translate3d(-.7%, -.4%, 0); }
}

@media (max-width: 960px) {
  .utility-inner p { display: none; }
  .utility-inner { justify-content: flex-end; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 5.6rem 0 auto;
    display: grid;
    gap: 0;
    max-height: 0;
    padding: 0 1.25rem;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 24px 35px rgba(10,12,10,.15);
    opacity: 0;
    transition: max-height .28s ease, opacity .2s ease, padding .28s ease;
  }
  .main-nav.open { max-height: 30rem; padding-block: 1rem 1.4rem; opacity: 1; }
  .main-nav > a { padding: .8rem 0; border-bottom: 1px solid var(--line); }
  .main-nav .nav-shop { margin-top: .6rem; padding: .9rem 1rem; border: 0; text-align: center; }
  .section-heading, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-banner-inner { grid-template-columns: auto 1fr; }
  .shop-banner .button { grid-column: 1 / -1; width: fit-content; }
  .offer-page-hero-inner { grid-template-columns: 1fr; align-items: start; }
  .purchase-guide { max-width: 650px; }
  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer-help-inner { grid-template-columns: 1fr; }
  .offer-help-actions { flex-direction: row; min-width: 0; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 1.3rem, 1180px); }
  .utility-links a:first-child { display: none; }
  .nav-wrap { min-height: 4.8rem; gap: .5rem; }
  .brand { gap: .5rem; }
  .brand img { width: 3rem; height: 3rem; }
  .brand-copy strong { max-width: none; white-space: nowrap; font-size: .69rem; letter-spacing: .015em; }
  .brand-copy small { font-size: 1rem; }
  .menu-toggle { width: 2.75rem; height: 2.75rem; flex: 0 0 auto; }
  .nav-wrap > .nav-shop { display: none; }
  .main-nav { inset: 4.8rem 0 auto; }
  .hero { min-height: 680px; align-items: end; }
  .hero-inner { padding-block: 8rem 7rem; }
  .hero-overlay { background: linear-gradient(0deg, rgba(11,13,11,.96) 0%, rgba(11,13,11,.8) 58%, rgba(11,13,11,.28) 100%); }
  .hero-media { background-position: 65% center; }
  h1 { font-size: clamp(2.75rem, 13vw, 4.4rem); }
  .hero-actions .button { width: 100%; }
  .hero-corner { top: 1.25rem; right: .85rem; bottom: auto; width: 7.25rem; height: 7.25rem; }
  .proof { margin-top: 0; background: var(--white); }
  .proof-grid { grid-template-columns: 1fr; width: 100%; border-radius: 0; box-shadow: none; }
  .proof-item { min-height: auto; padding: 1.2rem 1.25rem; }
  .proof-item + .proof-item { border-top: 1px solid var(--line); border-left: 0; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { min-height: 275px; }
  .offer-more .button { width: 100%; }
  .offer-page-hero { padding-block: 3rem 4.5rem; }
  .breadcrumb { margin-bottom: 1.7rem; }
  .offer-page-hero h1 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .offer-page-actions .button { width: 100%; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 360px; }
  .offer-help-actions { flex-direction: column; }
  .shop-banner-inner { grid-template-columns: 1fr; }
  .shop-mark { width: 5.2rem; height: 5.2rem; }
  .shop-banner .button { width: 100%; }
  .contact-actions .button { width: 100%; }
  .form-fields, .form-submit { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
  .form-submit .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .floating-call { display: flex; }
  .site-footer { padding-bottom: 6rem; }
  .cookie-notice { bottom: .65rem; width: calc(100% - 1.3rem); grid-template-columns: 1fr; gap: .8rem; padding: 1rem; border-radius: .9rem; }
  .cookie-notice-button { width: 100%; }
}

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

@media print {
  .utility-bar, .site-header, .floating-call, .cookie-notice, .hero-actions, .shop-banner .button { display: none !important; }
  .hero { min-height: auto; color: var(--ink); background: var(--white); }
  .hero-media, .hero-overlay, .hero::after, .hero-corner { display: none; }
  .reveal { opacity: 1; transform: none; }
}
