/* Grimer Bona — grimerbona.shop
   Fonts are self-hosted-free system stacks (no external font/CDN requests):
   display ~ DM Serif Display, body ~ Karla, mono ~ IBM Plex Mono. */

:root {
  --bg: #FBF8F1;
  --surface: #FFFDF7;
  --surface-alt: #F1EEE2;
  --ink: #23281F;
  --ink-soft: #3C4436;
  --muted: #5A6153;
  --muted-2: #6B7360;
  --muted-3: #4A5243;
  --green: #2F5D3A;
  --green-dark: #25492D;
  --olive: #7C8B4E;
  --border: #E4DECB;
  --border-soft: #EFE9D9;
  --border-2: #E0D9C4;
  --chip-border: #C3CBB0;
  --card-hover: #B9C4A3;
  --input-border: #DDD6C0;
  --placeholder-1: #E6E0CD;
  --placeholder-2: #DDD6C0;
  --footer-bg: #23281F;
  --footer-text: #D9D6C7;
  --footer-muted: #A8AC9B;
  --footer-border: #343A2D;
  --footer-input: #2B3126;
  --badge-bg: #C9D6B0;
  --note-bg: #EDF1E4;
  --note-ink: #33452F;

  --font-display: Georgia, 'Times New Roman', 'Noto Serif', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'Courier New', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --container: 1240px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
body { min-height: 100vh; display: flex; flex-direction: column; overflow-x: hidden; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--olive); }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; }
img { max-width: 100%; display: block; }
::selection { background: #D8E3C8; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; margin: 0; }
p { margin: 0; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.eyebrow { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--olive); margin-bottom: 12px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 12px; top: -60px; background: var(--green); color: #F4EFE3; padding: 10px 16px; border-radius: 8px; z-index: 200; transition: top .15s ease; }
.skip-link:focus { top: 12px; color: #F4EFE3; }

/* Used only for the (user-triggered) cart drawer slide-in - never on initial paint,
   so there is no risk of a slow paint, crawler or screenshot tool catching faded content. */
@keyframes gbSlide { from { transform: translateX(30px); opacity: .55; } to { transform: none; opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .cart-drawer.is-open { animation: none; }
}

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; border: none; border-radius: var(--radius-pill); font-weight: 600; font-size: 15.5px; padding: 15px 28px; text-align: center; }
.btn-primary { background: var(--green); color: #F4EFE3; }
.btn-primary:hover { background: var(--green-dark); color: #F4EFE3; }
.btn-outline { background: none; color: var(--green); border: 1.5px solid var(--chip-border); }
.btn-outline:hover { background: #EDE7D6; color: var(--green); }
.btn-light { background: #F4EFE3; color: var(--ink); }
.btn-light:hover { background: #fff; color: var(--ink); }
.btn-block { width: 100%; }
.btn-sm { padding: 9px 15px; font-size: 13.5px; border-radius: var(--radius-pill); }
.btn-chip { border: 1.5px solid var(--chip-border); background: var(--bg); color: var(--ink-soft); padding: 10px 18px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 600; }
.btn-chip:hover, .btn-chip.is-active { background: #EDE7D6; color: var(--green); }
.btn-chip.is-active { border-color: var(--green); }
.link-back { background: none; border: none; padding: 0; color: var(--olive); font-size: 14px; font-weight: 600; margin-bottom: 24px; display: inline-block; }

/* ---------- Promo + header ---------- */
.promo-bar { background: var(--green); color: #F1EEE2; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; text-align: center; padding: 9px 16px; font-weight: 600; }
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(251,248,241,.94); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.site-header .container { padding-top: 14px; padding-bottom: 14px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand-mark { width: 34px; height: 34px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; color: #F4EFE3; font-family: var(--font-display); font-size: 19px; }
.brand-text { line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-size: 20px; color: var(--ink); }
.brand-domain { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .18em; color: var(--olive); text-transform: uppercase; }
.main-nav { display: flex; gap: 4px; flex-wrap: wrap; margin-left: auto; }
.main-nav a { background: none; border: none; padding: 9px 12px; font-size: 14.5px; font-weight: 500; color: var(--ink-soft); border-radius: 8px; }
.main-nav a:hover, .main-nav a[aria-current="page"] { background: #EDE7D6; color: var(--green); }
.cart-btn { display: flex; align-items: center; gap: 9px; background: var(--green); color: #F4EFE3; border: none; padding: 11px 18px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 600; flex-shrink: 0; }
.cart-btn:hover { background: var(--green-dark); color: #F4EFE3; }
.cart-count { background: var(--badge-bg); color: var(--ink); border-radius: var(--radius-pill); min-width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; padding: 0 6px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; margin-left: auto; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ''; display: block; width: 18px; height: 2px; background: var(--ink); margin: 4px 0; }

/* ---------- Layout sections ---------- */
main { flex: 1; }
.section { padding: 70px 24px 20px; max-width: var(--container); margin: 0 auto; }
.section-tight { padding-top: 40px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.section-title { font-size: 38px; }
.page-eyebrow { margin-top: 40px; }
.page-title { font-size: 46px; margin: 0 0 14px; }
.page-lead { font-size: 17px; line-height: 1.65; color: var(--muted); max-width: 720px; margin: 0 0 30px; }

/* ---------- Home hero ---------- */
.hero { padding: 64px 24px 40px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-eyebrow { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--olive); margin-bottom: 18px; }
.hero h1 { font-size: 60px; line-height: 1.04; margin: 0 0 22px; }
.hero-lead { font-size: 18.5px; line-height: 1.65; color: var(--muted-3); margin: 0 0 30px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 42px; flex-wrap: wrap; }
.hero-stats .num { font-family: var(--font-display); font-size: 30px; color: var(--green); }
.hero-stats .lbl { font-size: 13.5px; color: var(--muted-2); }
.hero-media { position: relative; }
.hero-photo { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid #D8D1BB; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge { position: absolute; bottom: -26px; left: -34px; width: 200px; background: var(--green); color: #F1EEE2; padding: 20px; border-radius: var(--radius-md); }
.hero-badge .month { font-family: var(--font-display); font-size: 22px; line-height: 1.2; }
.hero-badge .note { font-size: 13.5px; line-height: 1.5; margin-top: 6px; color: #D6E0C6; }

@media (max-width: 720px) {
  .hero-badge { position: static; width: auto; margin-top: 18px; }
}

/* ---------- Feature strip ---------- */
.feature-strip { background: var(--surface-alt); border-block: 1px solid var(--border); margin-top: 40px; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; padding: 52px 24px; }
.feature-item { padding-right: 18px; border-right: 1px solid var(--border-2); }
.feature-item:last-child { border-right: none; padding-right: 0; }
.feature-item .ft { font-family: var(--font-display); font-size: 21px; margin-bottom: 8px; }
.feature-item p { font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* ---------- Cards: product / article / review / service / team ---------- */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.product-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; }
.product-card:hover { border-color: var(--card-hover); }
.product-thumb { aspect-ratio: 1/1; display: block; overflow: hidden; background: var(--placeholder-1); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--olive); }
.product-name { font-family: var(--font-display); font-size: 18.5px; line-height: 1.25; color: var(--ink); }
.product-name:hover { color: var(--green); }
.product-short { font-size: 13.5px; color: var(--muted-2); line-height: 1.5; flex: 1; }
.product-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 6px; }
.product-price { font-size: 18px; font-weight: 700; color: var(--green); }

.article-card { cursor: pointer; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; display: flex; flex-direction: column; }
.article-card:hover { border-color: var(--card-hover); }
.article-thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--placeholder-1); }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.article-meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--olive); margin-bottom: 10px; }
.article-title { font-family: var(--font-display); font-size: 21px; line-height: 1.25; margin-bottom: 10px; color: var(--ink); }
.article-excerpt { margin: 0 0 14px; font-size: 14.5px; line-height: 1.6; color: var(--muted); flex: 1; }
.article-more { font-size: 14px; font-weight: 600; color: var(--green); }

.review-card { background: var(--surface-alt); border-radius: var(--radius-md); padding: 26px; }
.review-stars { font-size: 15px; color: var(--olive); letter-spacing: .18em; margin-bottom: 12px; }
.review-text { margin: 0 0 16px; font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); font-style: italic; }
.review-author { font-size: 13.5px; color: var(--muted-2); }

.service-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px; display: flex; flex-direction: column; gap: 10px; }
.service-title { font-family: var(--font-display); font-size: 23px; line-height: 1.2; }
.service-text { margin: 0; font-size: 15px; line-height: 1.6; color: var(--muted); flex: 1; }
.service-price { font-size: 16px; font-weight: 700; color: var(--green); margin-top: 6px; }

.team-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.team-photo { aspect-ratio: 1/1; overflow: hidden; background: var(--placeholder-1); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 18px; }
.team-name { font-family: var(--font-display); font-size: 20px; }
.team-role { font-size: 13px; color: var(--olive); margin: 4px 0 8px; font-family: var(--font-mono); }
.team-bio { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* ---------- CTA banner (services teaser on home) ---------- */
.cta-banner { background: var(--green); border-radius: 20px; padding: 52px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; color: #F1EEE2; margin: 70px 24px 0; max-width: var(--container); margin-left: auto; margin-right: auto; }
.cta-banner .eyebrow { color: #B9CCA4; }
.cta-banner h2 { font-size: 36px; margin: 0 0 16px; line-height: 1.15; }
.cta-banner p { font-size: 16.5px; line-height: 1.65; color: #D6E0C6; margin: 0 0 26px; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cta-item { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: 12px; padding: 18px; }
.cta-item .t { font-family: var(--font-display); font-size: 20px; }
.cta-item .d { font-size: 13.5px; color: #C6D3B4; margin-top: 6px; }

@media (max-width: 860px) {
  .cta-banner { grid-template-columns: 1fr; }
}

/* ---------- Shop ---------- */
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.result-count { font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); margin-bottom: 18px; }
.info-strip { margin-top: 56px; background: var(--surface-alt); border-radius: 16px; padding: 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.info-strip .t { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; }
.info-strip p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--muted); }

/* ---------- Product detail ---------- */
.product-detail { max-width: 1100px; margin: 0 auto; padding: 44px 24px 80px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.product-hero-img { aspect-ratio: 1/1; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid #D8D1BB; }
.product-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.product-detail h1 { font-size: 38px; margin: 0 0 14px; line-height: 1.15; }
.product-price-lg { font-size: 28px; font-weight: 700; color: var(--green); margin-bottom: 6px; }
.product-stock { font-size: 13px; color: var(--muted-2); margin-bottom: 22px; }
.product-desc { font-size: 16px; line-height: 1.7; color: var(--muted-3); margin: 0 0 22px; }
.specs { border-top: 1px solid var(--border); padding-top: 18px; margin-bottom: 24px; }
.spec-row { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px solid var(--border-soft); font-size: 14.5px; }
.spec-row span:first-child { color: var(--muted-2); }
.spec-row span:last-child { font-weight: 600; color: var(--ink-soft); }
.product-footnote { font-size: 13.5px; color: var(--muted-2); margin-top: 14px; line-height: 1.6; }

@media (max-width: 800px) {
  .product-detail-grid, .grid-2 { grid-template-columns: 1fr; }
}

/* ---------- Blog / article ---------- */
.article-layout { max-width: 1240px; margin: 0 auto; padding: 44px 24px 80px; display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 56px; align-items: start; }
.article-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--olive); margin-bottom: 14px; }
.article-layout h1 { font-size: 44px; line-height: 1.1; margin: 0 0 20px; }
.article-lead { font-size: 19px; line-height: 1.65; color: var(--muted-3); margin: 0 0 28px; font-style: italic; }
.article-cover { aspect-ratio: 16/9; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 34px; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-body h2 { font-size: 28px; margin: 36px 0 14px; line-height: 1.2; }
.article-body p { font-size: 17px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 18px; }
.note-box { background: var(--note-bg); border-radius: 12px; padding: 22px 24px; margin: 24px 0; font-size: 16px; line-height: 1.65; color: var(--note-ink); }
.article-aside { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 18px; }
.aside-box { background: var(--surface-alt); border-radius: var(--radius-md); padding: 22px; }
.aside-box .h { font-family: var(--font-display); font-size: 19px; margin-bottom: 12px; }
.aside-link { cursor: pointer; padding: 10px 0; border-bottom: 1px solid var(--border-2); font-size: 14.5px; line-height: 1.45; color: var(--ink-soft); display: block; }
.aside-link:last-child { border-bottom: none; }
.aside-link:hover { color: var(--green); }
.aside-cta { background: var(--green); color: #F1EEE2; border-radius: var(--radius-md); padding: 22px; }
.aside-cta .h { color: #F1EEE2; }
.aside-cta p { margin: 0 0 16px; font-size: 14px; line-height: 1.6; color: #D6E0C6; }

@media (max-width: 900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
}

/* ---------- Calendar ---------- */
.month-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.month-panel h2 { font-size: 32px; margin: 0 0 8px; }
.month-panel > p { font-size: 16px; line-height: 1.65; color: var(--muted); margin: 0 0 28px; max-width: 760px; }
.month-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.month-col { background: var(--surface-alt); border-radius: 12px; padding: 22px; }
.month-col .h { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--olive); margin-bottom: 12px; }
.month-col div.item { font-size: 15px; line-height: 1.5; padding: 6px 0; color: var(--ink-soft); }
.month-block { display: none; }
.month-block.is-active { display: block; }

@media (max-width: 760px) {
  .month-cols { grid-template-columns: 1fr; }
}

/* ---------- Services process ---------- */
.process-panel { background: var(--surface-alt); border-radius: var(--radius-lg); padding: 40px; }
.process-panel h2 { font-size: 30px; margin: 0 0 26px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-grid .n { font-family: var(--font-mono); font-size: 12px; color: var(--olive); margin-bottom: 8px; }
.process-grid .t { font-family: var(--font-display); font-size: 19px; margin-bottom: 6px; }
.process-grid p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--muted); }

@media (max-width: 760px) {
  .process-grid, .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .process-grid, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- About ---------- */
.about-wrap { max-width: 1000px; margin: 0 auto; padding: 52px 24px 80px; }
.about-wrap h1 { font-size: 46px; margin: 0 0 22px; }
.about-wrap p.lede { font-size: 18px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 18px; }
.about-wrap p.body-text { font-size: 17px; line-height: 1.75; color: var(--muted-3); margin: 0 0 18px; }
.company-box { background: var(--surface-alt); border-radius: 16px; padding: 32px; }
.company-box h2 { font-size: 26px; margin: 0 0 16px; }
.company-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 30px; font-size: 15px; line-height: 1.7; color: var(--muted-3); }

@media (max-width: 560px) {
  .company-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 900px; margin: 0 auto; padding: 52px 24px 80px; }
.faq-wrap h1 { font-size: 46px; margin: 0 0 30px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary { cursor: pointer; padding: 20px 0; display: flex; justify-content: space-between; gap: 20px; align-items: baseline; font-family: var(--font-display); font-size: 21px; line-height: 1.3; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--olive); font-size: 20px; font-family: var(--font-body); flex-shrink: 0; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item .a { margin: 0 0 22px; font-size: 16px; line-height: 1.7; color: var(--muted-3); max-width: 720px; }

/* ---------- Contact ---------- */
.contact-wrap { max-width: 1100px; margin: 0 auto; padding: 52px 24px 80px; }
.contact-wrap h1 { font-size: 46px; margin: 0 0 32px; }
.contact-info { display: flex; flex-direction: column; gap: 22px; font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.contact-info .h { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--olive); margin-bottom: 6px; }
.contact-photo { margin-top: 26px; aspect-ratio: 16/10; border-radius: var(--radius-md); overflow: hidden; }
.contact-photo img { width: 100%; height: 100%; object-fit: cover; }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 30px; }
.form-card h2 { font-size: 24px; margin: 0 0 18px; }

/* ---------- Forms ---------- */
.form-stack { display: flex; flex-direction: column; gap: 14px; }
.field { padding: 13px 15px; border: 1px solid var(--input-border); border-radius: var(--radius-sm); background: var(--bg); font-size: 15px; width: 100%; color: var(--ink); }
.field:focus { outline: 2px solid var(--olive); outline-offset: 1px; }
textarea.field { resize: vertical; }
.field-check { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; line-height: 1.55; color: var(--muted); }
.field-check input { margin-top: 3px; }
.form-msg { font-size: 14px; line-height: 1.5; padding: 12px 14px; border-radius: var(--radius-sm); display: none; }
.form-msg.is-visible { display: block; }
.form-msg.ok { background: #E5EEDA; color: var(--green-dark); }
.form-msg.err { background: #F5E1DA; color: #8C3B1B; }
.newsletter-row { display: flex; gap: 8px; }
.newsletter-row .field { flex: 1; min-width: 0; padding: 11px 14px; border: 1px solid var(--footer-border); border-radius: var(--radius-sm); background: var(--footer-input); color: #F4EFE3; font-size: 14px; }
.newsletter-row .btn { background: var(--olive); color: #1B1F18; border: none; padding: 11px 18px; border-radius: var(--radius-sm); font-weight: 700; font-size: 14px; }
.newsletter-row .btn:hover { background: #8E9D5D; color: #1B1F18; }

/* ---------- Legal ---------- */
.legal-wrap { max-width: 860px; margin: 0 auto; padding: 52px 24px 80px; }
.legal-updated { font-family: var(--font-mono); font-size: 12px; color: var(--muted-2); margin-bottom: 34px; }
.legal-wrap h1 { font-size: 44px; margin: 0 0 10px; line-height: 1.12; }
.legal-wrap h2 { font-size: 26px; margin: 34px 0 12px; line-height: 1.25; }
.legal-wrap p { font-size: 16px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 16px; }
.legal-footnote { margin-top: 46px; background: var(--surface-alt); border-radius: var(--radius-md); padding: 26px; font-size: 15px; line-height: 1.7; color: var(--muted-3); }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); color: var(--footer-text); margin-top: 20px; }
.footer-grid { max-width: var(--container); margin: 0 auto; padding: 58px 24px 30px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand { font-family: var(--font-display); font-size: 24px; color: #F4EFE3; margin-bottom: 12px; }
.footer-desc { margin: 0 0 16px; font-size: 14.5px; line-height: 1.65; color: var(--footer-muted); max-width: 290px; }
.footer-addr { font-size: 14px; line-height: 1.7; color: var(--footer-muted); }
.footer-col-title { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--olive); margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; font-size: 14.5px; }
.footer-links a { color: var(--footer-text); }
.footer-links a:hover { color: var(--badge-bg); }
.footer-newsletter p { margin: 0 0 14px; font-size: 14.5px; line-height: 1.6; color: var(--footer-muted); }
.footer-bar { border-top: 1px solid var(--footer-border); }
.footer-bar-inner { max-width: var(--container); margin: 0 auto; padding: 18px 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13px; color: #8C907F; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; z-index: 90; background: rgba(35,40,31,.45); display: none; }
.cart-overlay.is-open { display: block; }
.cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 91; width: 440px; max-width: 92vw; background: var(--bg); display: flex; flex-direction: column; box-shadow: -18px 0 50px rgba(0,0,0,.16); transform: translateX(100%); transition: transform .25s ease; }
.cart-drawer.is-open { transform: translateX(0); animation: gbSlide .25s ease both; }
.cart-head { padding: 22px 26px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-title { font-family: var(--font-display); font-size: 24px; }
.cart-close { background: none; border: none; font-size: 22px; color: var(--muted-2); padding: 0 4px; }
.cart-body { flex: 1; overflow-y: auto; padding: 20px 26px; }
.cart-empty { font-size: 15.5px; line-height: 1.7; color: var(--muted); }
.cart-line { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border-soft); }
.cart-line-thumb { width: 64px; height: 64px; border-radius: 9px; background: var(--placeholder-1); flex-shrink: 0; overflow: hidden; }
.cart-line-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-body { flex: 1; }
.cart-line-name { font-size: 15px; font-weight: 600; line-height: 1.35; }
.cart-line-price { font-size: 13px; color: var(--muted-2); margin: 3px 0 8px; }
.qty-row { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 26px; height: 26px; border-radius: 7px; border: 1px solid var(--input-border); background: var(--surface); font-size: 15px; line-height: 1; }
.qty-val { font-size: 14.5px; font-weight: 600; min-width: 18px; text-align: center; }
.cart-remove { margin-left: auto; background: none; border: none; font-size: 13px; color: #8C7A5E; text-decoration: underline; }
.cart-line-total { font-size: 15px; font-weight: 700; color: var(--green); white-space: nowrap; }
.cart-summary { padding: 22px 26px; border-top: 1px solid var(--border); background: var(--surface-alt); }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 15px; color: var(--muted); margin-bottom: 7px; }
.cart-summary-total { display: flex; justify-content: space-between; font-size: 20px; font-weight: 700; color: var(--ink); margin: 12px 0 4px; }
.cart-vat { font-size: 12.5px; color: var(--muted-2); margin-bottom: 16px; }

/* ---------- Cookie banner ---------- */
.cookie-banner { position: fixed; left: 20px; bottom: 20px; z-index: 80; max-width: 430px; background: var(--surface); border: 1px solid var(--input-border); border-radius: 16px; padding: 22px 24px; box-shadow: 0 18px 44px rgba(35,40,31,.18); display: none; }
.cookie-banner.is-visible { display: block; }
.cookie-banner h2 { font-size: 20px; margin-bottom: 8px; }
.cookie-banner p { margin: 0 0 16px; font-size: 14px; line-height: 1.6; color: var(--muted); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 520px) {
  .cookie-banner { left: 12px; right: 12px; max-width: none; }
}

/* ---------- Responsive nav ---------- */
@media (max-width: 900px) {
  .main-nav { position: fixed; top: 63px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); flex-direction: column; gap: 0; padding: 8px 24px 16px; margin-left: 0; display: none; max-height: calc(100vh - 63px); overflow-y: auto; }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 12px 4px; border-radius: 0; border-bottom: 1px solid var(--border-soft); }
  .nav-toggle { display: block; }
  .site-header .container { flex-wrap: wrap; }
  .hero { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-item { border-right: none; padding-right: 0; }
}

@media (max-width: 640px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 42px; }
  .page-title, .about-wrap h1, .faq-wrap h1, .contact-wrap h1 { font-size: 34px; }
  .section-title { font-size: 28px; }
  .cta-banner { padding: 30px; }
  .cta-grid { grid-template-columns: 1fr; }
}
