/* LlantaFix — design system stylesheet
   Fonts are self-hosted, see fonts.css. No external CDN. */

:root {
  --bg: #14110F;
  --bg-alt: #1A1614;
  --bg-alt-2: #161311;
  --card: #1B1815;
  --card-hover: #201C19;
  --footer-bg: #100E0C;
  --border: #2B2724;
  --border-light: #332E2A;
  --border-lighter: #3A342F;
  --border-lightest: #4A443F;
  --row-border: #241F1C;
  --text: #F5F1EC;
  --text-soft: #CFC8C1;
  --text-secondary: #B8B0A8;
  --text-muted: #A8A09A;
  --text-muted-2: #938B84;
  --text-faint: #8C847C;
  --text-faint-2: #7A726B;
  --text-faint-3: #6E665F;
  --text-faint-4: #5E5751;
  --accent: #E8541F;
  --accent-hover: #FF7A45;
  --accent-wash: #E8541F22;
  --green: #1F8A5C;
  --green-hover: #26A870;
  --stock-green: #6E9E7F;
  --hover-bg: #221E1B;
  --outline-hover-bg: #1F1B18;

  --f-display: 'Anton', Impact, 'Arial Narrow', sans-serif;
  --f-condensed: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --f-body: 'Barlow', Helvetica, Arial, sans-serif;
  --f-mono: 'JetBrains Mono', 'Courier New', monospace;

  --max: 1240px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  font-family: var(--f-body);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; }

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

button { font: inherit; }

@keyframes lfSlide { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes lfFade { from { opacity: 0; } to { opacity: 1; } }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Promo bar ---------- */
.promo-bar {
  background: var(--accent);
  color: var(--bg);
  font-family: var(--f-condensed);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 14px;
  text-align: center;
  padding: 9px 16px;
}
.promo-bar a { color: var(--bg); text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(20,17,15,0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 4px solid var(--text);
  background: var(--bg);
  display: grid;
  place-items: center;
  flex: none;
}
.logo-mark span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}
.logo-word {
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--text);
}
.logo-word em { font-style: normal; color: var(--accent); }

.main-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-left: auto;
}
.main-nav a {
  cursor: pointer;
  padding: 8px 11px;
  border-radius: 4px;
  font-family: var(--f-condensed);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 16px;
  color: #E6E0DA;
  text-decoration: none;
}
.main-nav a:hover, .main-nav a.active { background: var(--hover-bg); color: #fff; }

.cart-btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--accent);
  color: var(--bg);
  padding: 10px 16px;
  border-radius: 4px;
  font-family: var(--f-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 16px;
  border: none;
}
.cart-btn:hover { background: var(--accent-hover); }
.cart-count {
  background: var(--bg);
  color: var(--text);
  border-radius: 999px;
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  font-family: var(--f-mono);
  font-size: 12px;
  padding: 0 4px;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: 1px solid var(--border-lighter);
  border-radius: 4px;
  color: var(--text);
  padding: 8px 10px;
  font-family: var(--f-condensed);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  cursor: pointer;
  display: inline-block;
  border-radius: 4px;
  font-family: var(--f-condensed);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 19px;
  padding: 15px 26px;
  border: none;
  text-align: center;
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--accent-hover); color: var(--bg); text-decoration: none; }
.btn-outline { border: 1px solid var(--border-lightest); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--text); background: var(--outline-hover-bg); text-decoration: none; }
.btn-dark { background: var(--bg); color: var(--text); }
.btn-dark:hover { background: #201b18; text-decoration: none; }
.btn-sm { font-size: 16px; padding: 10px 16px; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #1A1614 0%, #14110F 100%);
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 24px 64px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 10px;
  border-radius: 3px;
}
.hero h1 {
  font-family: var(--f-display);
  font-size: 68px;
  line-height: 0.98;
  margin: 20px 0 0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}
.hero h1 span { color: var(--accent); }
.hero p.lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 20px 0 0;
  text-wrap: pretty;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 34px;
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--text-faint-2);
  letter-spacing: 0.04em;
}
.hero-photo, .photo-box {
  aspect-ratio: 4/3;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  overflow: hidden;
  background: var(--bg-alt);
}
.hero-photo img, .photo-box img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Stats ---------- */
.stats-section { border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.stats-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-value { font-family: var(--f-display); font-size: 40px; color: var(--accent); line-height: 1; }
.stat-label { font-size: 15px; color: var(--text-secondary); margin-top: 4px; }

/* ---------- Section ---------- */
.section { max-width: var(--max); margin: 0 auto; padding: 72px 24px; }
.section.alt-bg-wrap { max-width: none; padding: 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section.alt-bg-wrap > .wrap { padding-top: 68px; padding-bottom: 68px; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.section-kicker { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.section-title { font-family: var(--f-display); font-size: 44px; margin: 10px 0 0; text-transform: uppercase; letter-spacing: -0.01em; }
.section-link { cursor: pointer; font-family: var(--f-condensed); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; font-size: 17px; color: var(--accent); }
.section-link:hover { color: var(--accent-hover); }

.page-header { max-width: var(--max); margin: 0 auto; padding: 60px 24px 0; }
.page-header.narrow { max-width: 900px; }
.page-header.narrower { max-width: 820px; }
.page-header h1 { font-family: var(--f-display); font-size: 54px; margin: 12px 0 16px; text-transform: uppercase; }
.page-header p.lead { font-size: 18px; line-height: 1.65; color: var(--text-secondary); max-width: 760px; text-wrap: pretty; }
.page-body { max-width: var(--max); margin: 0 auto; padding: 0 24px 80px; }
.page-body.narrow { max-width: 900px; }
.page-body.narrower { max-width: 820px; }
.page-body.mid { max-width: 1000px; }
.page-body.article { max-width: 800px; }
.page-body.contact { max-width: 1100px; }

/* ---------- Grids & cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

.card { background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 26px; }
.card:hover { border-color: var(--accent); background: var(--card-hover); }

.service-card .service-num { font-family: var(--f-mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.service-card h3 { font-family: var(--f-condensed); font-size: 25px; text-transform: uppercase; margin: 10px 0 8px; letter-spacing: 0.01em; }
.service-card p { font-size: 15.5px; line-height: 1.6; color: var(--text-muted); margin: 0; text-wrap: pretty; }
.service-card .service-price { margin-top: 16px; font-family: var(--f-mono); font-size: 13px; color: var(--text); }

.step { border-left: 3px solid var(--accent); padding: 4px 0 4px 20px; }
.step .step-n { font-family: var(--f-display); font-size: 34px; color: #3A342F; line-height: 1; }
.step h3 { font-family: var(--f-condensed); font-size: 24px; text-transform: uppercase; margin: 6px 0 8px; }
.step p { font-size: 15.5px; line-height: 1.6; color: var(--text-muted); margin: 0; }

/* Product cards */
.product-card { background: var(--card); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; }
.product-photo { aspect-ratio: 1/1; overflow: hidden; background: var(--bg-alt); position: relative; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; }
.product-info { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-brand { font-family: var(--f-mono); font-size: 10.5px; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; }
.product-name { font-family: var(--f-condensed); font-size: 20px; text-transform: uppercase; line-height: 1.15; }
.product-desc { font-size: 14px; color: var(--text-muted-2); line-height: 1.5; }
.product-stock { font-family: var(--f-mono); font-size: 11px; color: var(--stock-green); margin-top: 2px; }
.product-price { font-family: var(--f-display); font-size: 24px; margin-top: auto; }
.product-price.lg { font-size: 26px; }
.add-btn {
  cursor: pointer; text-align: center; background: var(--accent); color: var(--bg);
  padding: 10px; border-radius: 4px; font-family: var(--f-condensed); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; font-size: 16px; border: none; width: 100%;
}
.add-btn:hover { background: var(--accent-hover); }

/* Reviews */
.review-card { background: var(--bg); border: 1px solid var(--border); border-radius: 6px; padding: 26px; }
.review-stars { color: var(--accent); font-family: var(--f-mono); font-size: 14px; letter-spacing: 0.2em; }
.review-text { font-size: 16px; line-height: 1.65; color: var(--text-soft); margin: 14px 0 18px; text-wrap: pretty; }
.review-name { font-family: var(--f-condensed); text-transform: uppercase; letter-spacing: 0.05em; font-size: 16px; color: var(--text); }
.review-city { font-family: var(--f-mono); font-size: 11px; color: var(--text-faint-2); margin-top: 3px; }

/* Blog / post cards */
.post-card { cursor: pointer; background: var(--card); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; display: block; }
.post-card:hover { border-color: var(--accent); }
.post-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--bg-alt); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-body { padding: 22px; }
.post-meta { font-family: var(--f-mono); font-size: 11px; color: var(--text-faint-2); letter-spacing: 0.08em; }
.post-title { font-family: var(--f-condensed); font-size: 23px; text-transform: uppercase; margin: 10px 0 8px; line-height: 1.15; }
.post-excerpt { font-size: 15px; line-height: 1.6; color: var(--text-muted); margin: 0; }
.post-readmore { margin-top: 14px; font-family: var(--f-condensed); text-transform: uppercase; letter-spacing: 0.06em; font-size: 15px; color: var(--accent); }

/* CTA band */
.cta-band { background: var(--accent); color: var(--bg); }
.cta-band .wrap {
  padding: 56px 24px; display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.cta-band h2 { font-family: var(--f-display); font-size: 40px; margin: 0; text-transform: uppercase; line-height: 1.05; }
.cta-band p { margin: 10px 0 0; font-size: 18px; font-weight: 500; }

/* ---------- Price list ---------- */
.price-list { margin-top: 36px; border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.price-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: 20px; align-items: center;
  padding: 16px 22px; border-bottom: 1px solid var(--row-border);
}
.price-row:nth-child(odd) { background: #161311; }
.price-row:nth-child(even) { background: #1A1614; }
.price-row .price-name { font-family: var(--f-condensed); font-size: 21px; text-transform: uppercase; }
.price-row .price-note { font-size: 14px; color: var(--text-faint); }
.price-row .price-unit { font-family: var(--f-mono); font-size: 12px; color: var(--text-faint-2); }
.price-row .price-amt { font-family: var(--f-display); font-size: 24px; color: var(--accent); min-width: 90px; text-align: right; }

.info-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 6px; padding: 26px; }
.info-card h3 { font-family: var(--f-condensed); font-size: 23px; text-transform: uppercase; margin: 0 0 10px; }
.info-card p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--text-muted); }

/* ---------- Category pills ---------- */
.category-pills { display: flex; gap: 8px; flex-wrap: wrap; margin: 32px 0 24px; }
.pill {
  cursor: pointer; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--border-lighter);
  font-family: var(--f-condensed); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  font-size: 16px; color: var(--text-soft); background: transparent; text-decoration: none; display: inline-block;
}
.pill:hover, .pill.active { border-color: var(--accent); text-decoration: none; }
.pill.active { background: var(--accent-wash); color: var(--text); }

/* ---------- Branches ---------- */
.branch-card { background: var(--card); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.branch-photo { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-alt); }
.branch-photo img { width: 100%; height: 100%; object-fit: cover; }
.branch-body { padding: 24px; }
.branch-body h3 { font-family: var(--f-display); font-size: 26px; text-transform: uppercase; margin: 0 0 12px; }
.branch-address { font-size: 15.5px; line-height: 1.7; color: var(--text-secondary); }
.branch-contact { margin-top: 14px; font-family: var(--f-mono); font-size: 12.5px; color: var(--text); line-height: 1.9; }
.branch-extra { margin-top: 14px; font-size: 14px; color: var(--text-faint); }

/* ---------- Values / about ---------- */
.wide-photo { aspect-ratio: 21/9; border-radius: 6px; border: 1px solid var(--border-light); overflow: hidden; margin-bottom: 30px; background: var(--bg-alt); }
.wide-photo img { width: 100%; height: 100%; object-fit: cover; }
.prose { font-size: 17.5px; line-height: 1.8; color: #C4BCB5; display: flex; flex-direction: column; gap: 18px; }
.prose p { margin: 0; }
.value-card { border-top: 3px solid var(--accent); padding-top: 16px; }
.value-card h3 { font-family: var(--f-condensed); font-size: 22px; text-transform: uppercase; margin: 0 0 8px; }
.value-card p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--text-muted); }
.company-box { margin-top: 44px; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 6px; padding: 30px; }
.company-box h2 { font-family: var(--f-display); font-size: 28px; margin: 0 0 14px; text-transform: uppercase; }
.company-data { font-family: var(--f-mono); font-size: 13px; line-height: 2.1; color: var(--text-secondary); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: 6px; background: var(--card); overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 20px 24px; display: flex; justify-content: space-between; gap: 20px; align-items: center;
  font-family: var(--f-condensed); font-size: 22px; text-transform: uppercase; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: var(--f-display); font-size: 22px; color: var(--accent); flex: none;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-answer { padding: 0 24px 22px; font-size: 16.5px; line-height: 1.7; color: var(--text-muted); }

/* ---------- Forms ---------- */
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--text-faint); text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-stack { display: flex; flex-direction: column; gap: 16px; }
input[type="text"], input[type="tel"], input[type="email"], select, textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border-lighter); border-radius: 4px;
  padding: 13px 14px; color: var(--text); font-family: var(--f-body); font-size: 16px;
}
textarea { min-height: 110px; resize: vertical; }
select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, #8C847C 50%), linear-gradient(135deg, #8C847C 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 15px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.check-row { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-muted-2); line-height: 1.6; }
.check-row input { margin-top: 4px; flex: none; }
.form-note { font-size: 13px; color: var(--text-faint-2); margin-top: 4px; }
.form-success { padding: 40px 0; text-align: center; }
.form-success .headline { font-family: var(--f-display); font-size: 30px; color: var(--accent); text-transform: uppercase; }
.form-success p { font-size: 16.5px; color: var(--text-secondary); line-height: 1.7; margin: 12px 0 0; }
.form-error { border: 1px solid var(--accent); background: #E8541F14; color: var(--text); border-radius: 4px; padding: 14px 16px; font-size: 15px; margin-bottom: 16px; }

.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 24px; margin-top: 38px; }
.contact-panel { background: var(--card); border: 1px solid var(--border); border-radius: 6px; padding: 30px; }
.contact-side { display: flex; flex-direction: column; gap: 16px; }
.map-box { aspect-ratio: 4/3; border-radius: 6px; border: 1px solid var(--border-light); overflow: hidden; }
.map-box iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.3) invert(0.92) contrast(0.9); }

/* ---------- Legal pages ---------- */
.legal-content { font-size: 16.5px; line-height: 1.85; color: var(--text-secondary); display: flex; flex-direction: column; gap: 20px; }
.legal-content p { margin: 0; }
.legal-content h2 { font-family: var(--f-condensed); font-size: 26px; text-transform: uppercase; color: var(--text); margin: 8px 0 0; }
.legal-updated { font-family: var(--f-mono); font-size: 11.5px; color: var(--text-faint-2); letter-spacing: 0.08em; margin-bottom: 28px; }
.legal-content h1 { font-family: var(--f-display); font-size: 46px; margin: 0 0 8px; text-transform: uppercase; }

.cookie-table { border: 1px solid var(--border); border-radius: 6px; overflow: hidden; }
.cookie-row { padding: 18px 22px; border-bottom: 1px solid var(--row-border); }
.cookie-row:nth-child(odd) { background: #161311; }
.cookie-row:nth-child(even) { background: #1A1614; }
.cookie-type { font-family: var(--f-condensed); font-size: 21px; text-transform: uppercase; color: var(--text); }
.cookie-desc { font-size: 15px; line-height: 1.65; margin-top: 6px; }
.cookie-meta { font-family: var(--f-mono); font-size: 11px; color: var(--text-faint-2); letter-spacing: 0.08em; margin-top: 8px; }

/* ---------- Article ---------- */
.article-back { cursor: pointer; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.1em; color: var(--accent); text-decoration: none; }
.article-meta { font-family: var(--f-mono); font-size: 11.5px; color: var(--text-faint-2); letter-spacing: 0.08em; margin-top: 26px; }
.article-title { font-family: var(--f-display); font-size: 46px; line-height: 1.05; margin: 14px 0 22px; text-transform: uppercase; }
.article-photo { aspect-ratio: 16/9; border-radius: 6px; border: 1px solid var(--border-light); overflow: hidden; margin-bottom: 30px; background: var(--bg-alt); }
.article-photo img { width: 100%; height: 100%; object-fit: cover; }
.article-body { font-size: 17.5px; line-height: 1.85; color: var(--text-soft); display: flex; flex-direction: column; gap: 20px; }
.article-body p { margin: 0; }
.article-body h2 { font-family: var(--f-condensed); font-size: 30px; text-transform: uppercase; margin: 10px 0 0; color: var(--text); }
.article-list { display: flex; flex-direction: column; gap: 12px; }
.article-list div { display: flex; gap: 14px; }
.article-list span:first-child { font-family: var(--f-display); color: var(--accent); }
.pull-quote { border-left: 3px solid var(--accent); padding: 4px 0 4px 20px; font-size: 18px; color: var(--text); }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); background: var(--footer-bg); }
.footer-grid { max-width: var(--max); margin: 0 auto; padding: 56px 24px 28px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 36px; }
.footer-logo { font-family: var(--f-display); font-size: 26px; line-height: 1; color: var(--text); }
.footer-logo em { font-style: normal; color: var(--accent); }
.footer-about { font-size: 15px; line-height: 1.7; color: var(--text-faint); margin: 14px 0 0; }
.footer-legalid { font-family: var(--f-mono); font-size: 11.5px; color: var(--text-faint-3); letter-spacing: 0.06em; line-height: 2; margin-top: 16px; }
.footer-col-title { font-family: var(--f-condensed); font-size: 17px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 15px; color: var(--text-faint); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }
.footer-contact { font-family: var(--f-mono); font-size: 12.5px; color: var(--text-faint); line-height: 2.1; }
.footer-hours { font-size: 14.5px; color: var(--text-faint); line-height: 1.8; margin-top: 14px; }
.payment-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 16px; }
.payment-badges span { border: 1px solid #322D29; border-radius: 3px; padding: 5px 9px; font-family: var(--f-mono); font-size: 10.5px; color: var(--text-faint-2); letter-spacing: 0.06em; }
.footer-bottom {
  max-width: var(--max); margin: 0 auto; padding: 18px 24px 40px; border-top: 1px solid #201C19;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-family: var(--f-mono); font-size: 11px; color: var(--text-faint-4); letter-spacing: 0.06em;
}

/* ---------- Cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; z-index: 60; background: rgba(0,0,0,0.6); animation: lfFade 0.2s ease; display: none; }
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed; top: 0; right: 0; z-index: 61; width: 420px; max-width: 100%; height: 100%;
  background: #16130F; border-left: 1px solid var(--border); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.25s ease;
}
.cart-drawer.open { transform: translateX(0); animation: lfSlide 0.25s ease; }
.cart-head { padding: 22px 24px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-head h2 { font-family: var(--f-display); font-size: 24px; text-transform: uppercase; margin: 0; }
.cart-close { cursor: pointer; font-family: var(--f-display); font-size: 22px; color: var(--text-faint); background: none; border: none; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.cart-empty { text-align: center; padding: 50px 10px; color: var(--text-faint); }
.cart-empty .headline { font-family: var(--f-condensed); font-size: 22px; text-transform: uppercase; color: var(--text); }
.cart-empty p { font-size: 15px; line-height: 1.6; margin: 10px 0 20px; }
.cart-line { display: grid; grid-template-columns: 68px 1fr; gap: 14px; border-bottom: 1px solid var(--row-border); padding-bottom: 14px; }
.cart-line-photo { aspect-ratio: 1/1; border-radius: 4px; overflow: hidden; background: var(--bg-alt); }
.cart-line-photo img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-name { font-family: var(--f-condensed); font-size: 18px; text-transform: uppercase; line-height: 1.2; }
.cart-line-sku { font-family: var(--f-mono); font-size: 11px; color: var(--text-faint-2); margin-top: 3px; }
.cart-line-row { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.qty-btns { display: flex; align-items: center; gap: 8px; }
.qty-btn { cursor: pointer; width: 26px; height: 26px; display: grid; place-items: center; border: 1px solid var(--border-lighter); border-radius: 3px; color: var(--text); background: none; }
.qty-val { font-family: var(--f-mono); font-size: 13px; min-width: 18px; text-align: center; }
.cart-remove { cursor: pointer; font-family: var(--f-mono); font-size: 10.5px; color: var(--text-faint-2); margin-left: 6px; letter-spacing: 0.06em; background: none; border: none; }
.cart-line-total { font-family: var(--f-display); font-size: 18px; }
.cart-summary { border-top: 1px solid var(--border); padding: 20px 24px 24px; background: #131110; }
.summary-row { display: flex; justify-content: space-between; font-size: 15px; color: var(--text-secondary); }
.summary-rows { display: flex; flex-direction: column; gap: 8px; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.summary-total .label { font-family: var(--f-condensed); font-size: 20px; text-transform: uppercase; }
.summary-total .amount { font-family: var(--f-display); font-size: 28px; color: var(--accent); }
.summary-note { font-family: var(--f-mono); font-size: 11px; color: var(--text-faint-2); margin-top: 10px; line-height: 1.7; }
.summary-legal { font-size: 13px; color: var(--text-faint-2); text-align: center; margin-top: 10px; line-height: 1.6; }
.cart-ordered { border-top: 1px solid var(--border); padding: 24px; text-align: center; }
.cart-ordered .headline { font-family: var(--f-display); font-size: 24px; color: var(--accent); text-transform: uppercase; }
.cart-ordered p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin: 10px 0 0; }

/* ---------- Cookie banner ---------- */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 50; background: var(--card); border-top: 1px solid var(--accent); padding: 18px 24px; }
.cookie-banner-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.cookie-banner-text { flex: 1; min-width: 280px; font-size: 15px; line-height: 1.6; color: var(--text-secondary); }
.cookie-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed; right: 22px; bottom: 96px; z-index: 45; cursor: pointer; background: var(--green); color: var(--text);
  padding: 13px 18px; border-radius: 999px; font-family: var(--f-condensed); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.45); text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
}
.whatsapp-fab:hover { background: var(--green-hover); color: var(--text); text-decoration: none; }

.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--accent); color: var(--bg); padding: 10px 16px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 52px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; width: 100%; flex-direction: column; gap: 2px; margin-left: 0; order: 3; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px; }
  .menu-toggle { display: block; margin-left: auto; }
  .header-inner { position: relative; }
  .hero h1 { font-size: 40px; }
  .section-title, .page-header h1 { font-size: 34px; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; padding-bottom: 12px; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
  .price-row { grid-template-columns: 1fr; text-align: left; gap: 6px; }
  .price-row .price-amt { text-align: left; }
  .whatsapp-fab span.label { display: none; }
  .cart-drawer { width: 100%; }
}
