/* Sushi Roll Bratislava — stylesheet
   Fonts self-hosted locally, see fonts.css */

@import url('fonts.css');

:root {
  --bg: #f7f3ec;
  --bg-soft: #fffdf8;
  --ink: #16130f;
  --ink-2: #4f483c;
  --ink-3: #6d6455;
  --ink-4: #8a7f6d;
  --line: #e3d9c8;
  --line-soft: #e8dfd0;
  --line-input: #d8cdb9;
  --dark: #16130f;
  --dark-2: #1e1a15;
  --dark-line: #2b251e;
  --dark-line-2: #3b352c;
  --dark-muted: #8f8677;
  --dark-muted-2: #a89e8d;
  --dark-fg: #f4ece0;
  --accent: oklch(0.52 0.15 32);
  --accent-hover: oklch(0.6 0.15 32);
  --accent-light: oklch(0.72 0.12 40);
  --radius: 2px;
  --container: 1180px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--ink); }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 500; text-wrap: pretty; }
p { margin: 0; text-wrap: pretty; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 15px; }
img { display: block; max-width: 100%; }
main { flex: 1; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--bg); padding: 12px 18px; font: 600 14px/1 var(--font-body);
}
.skip-link:focus { left: 12px; top: 12px; }

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

@keyframes slideIn { from { transform: translateX(24px); opacity: 0 } to { transform: none; opacity: 1 } }
@keyframes fadeUp { from { transform: translateY(10px); opacity: 0 } to { transform: none; opacity: 1 } }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; border-radius: 999px; font: 600 14px/1 var(--font-body); letter-spacing: .02em;
  padding: 14px 26px; text-align: center; transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn--dark { background: var(--ink); color: var(--bg); font-weight: 700; }
.btn--dark:hover { background: var(--accent); color: #fff; }
.btn--accent { background: var(--accent); color: #fff; font-weight: 700; }
.btn--accent:hover { background: var(--accent-hover); }
.btn--outline { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--bg); }
.btn--ghost-dark { background: transparent; color: var(--dark-fg); border: 1px solid var(--dark-line-2); }
.btn--ghost-dark:hover { border-color: var(--dark-fg); }
.btn--light { background: var(--dark-fg); color: var(--ink); font-weight: 700; }
.btn--block { width: 100%; }
.btn--lg { padding: 17px; font-size: 15.5px; }
.btn:disabled { opacity: .55; cursor: not-allowed; }

/* ---------- Promo bar ---------- */
.promo-bar {
  background: var(--ink); color: var(--dark-fg); font: 500 13px/1.5 var(--font-body);
  letter-spacing: .02em; padding: 11px 20px; display: flex; justify-content: center;
  gap: 28px; flex-wrap: wrap; text-align: center;
}
.promo-bar__sep { opacity: .5; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50; background: rgba(247,243,236,.94);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: var(--container); margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; gap: 32px;
}
.brand { display: flex; align-items: center; gap: 10px; flex: none; }
.brand__mark {
  width: 34px; height: 34px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.brand__mark span { width: 12px; height: 12px; border-radius: 50%; background: var(--bg); }
.brand__name { font: 700 17px/1 var(--font-body); letter-spacing: .16em; }
.brand__loc { font: 400 9px/1.4 var(--font-mono); letter-spacing: .18em; color: var(--ink-4); margin-top: 3px; }

.main-nav { display: flex; gap: 22px; flex-wrap: wrap; font: 600 14px/1 var(--font-body); margin-left: auto; }
.main-nav a { color: var(--ink); padding: 6px 0; border-bottom: 1px solid transparent; }
.main-nav a:hover, .main-nav a.is-active { border-bottom-color: var(--ink); }

.cart-btn {
  flex: none; background: var(--ink); color: var(--bg); border: 0; border-radius: 999px;
  padding: 11px 18px; font: 600 13px/1 var(--font-body); letter-spacing: .04em;
  display: flex; align-items: center; gap: 8px;
}
.cart-btn:hover { background: var(--accent); }
.cart-btn__badge { font-family: var(--font-mono); }

.nav-toggle {
  display: none; flex: none; background: transparent; border: 1px solid var(--line-input);
  border-radius: 8px; width: 40px; height: 40px; margin-left: auto;
  align-items: center; justify-content: center; gap: 4px; flex-direction: column;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); }

/* ---------- Hero ---------- */
.hero { background: var(--ink); color: var(--dark-fg); overflow: hidden; }
.hero__inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; min-height: 600px;
}
.hero__content { padding: 80px 0; }
.hero__eyebrow { font: 500 11px/1 var(--font-mono); letter-spacing: .24em; color: var(--accent-light); text-transform: uppercase; }
.hero__title { font-size: 66px; line-height: 1.02; margin: 22px 0 0; letter-spacing: -.02em; }
.hero__title em { color: var(--accent-light); font-style: italic; }
.hero__lead { font-size: 18px; line-height: 1.65; color: #c9bfae; margin-top: 24px; max-width: 520px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hero__stats { display: flex; gap: 34px; margin-top: 52px; flex-wrap: wrap; }
.hero__stat-num { font: 500 30px/1 var(--font-display); }
.hero__stat-label { font: 400 12px/1.4 var(--font-mono); color: var(--dark-muted); margin-top: 6px; }
.hero__media { align-self: stretch; display: flex; }
.hero__media img { flex: 1; width: 100%; height: 100%; min-height: 420px; object-fit: cover; }

/* ---------- Feature strip ---------- */
.features { border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.features__inner { max-width: var(--container); margin: 0 auto; padding: 34px 24px; display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.feature__title { font: 700 14px/1.3 var(--font-body); }
.feature__text { font-size: 13.5px; line-height: 1.6; color: var(--ink-3); margin-top: 7px; }

/* ---------- Sections / headings ---------- */
.section { max-width: var(--container); margin: 0 auto; padding: 84px 24px; }
.section--top { padding-top: 56px; padding-bottom: 0; }
.section--tight { padding-top: 34px; }
.section--dark { background: var(--ink); color: var(--dark-fg); max-width: none; }
.section--dark .section-inner { max-width: var(--container); margin: 0 auto; padding: 80px 24px; }
.section--soft { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); max-width: none; }
.section--soft .section-inner { max-width: var(--container); margin: 0 auto; padding: 80px 24px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.eyebrow { font: 500 11px/1 var(--font-mono); letter-spacing: .22em; color: var(--accent); text-transform: uppercase; }
.eyebrow--light { color: var(--dark-muted-2); }
.section-title { font-size: 44px; margin-top: 14px; letter-spacing: -.01em; }
.section-title--center { text-align: center; }
.page-title { font-size: 52px; margin-top: 14px; }
.page-lead { font-size: 16.5px; line-height: 1.7; color: var(--ink-2); max-width: 700px; margin-top: 16px; }

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

/* ---------- Product / article cards ---------- */
.card { background: var(--bg-soft); border: 1px solid var(--line-soft); display: flex; flex-direction: column; }
.card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #ece4d6; }
.card__media--wide { aspect-ratio: 16/10; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__tag {
  position: absolute; top: 12px; left: 12px; background: var(--ink); color: var(--bg);
  font: 600 10.5px/1 var(--font-body); letter-spacing: .1em; text-transform: uppercase; padding: 7px 10px;
}
.card__body { padding: 20px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.card__row { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; }
.card__name { font: 700 16px/1.3 var(--font-body); }
.card__price { font: 500 20px/1 var(--font-display); flex: none; }
.card__desc { font-size: 13.5px; line-height: 1.6; color: var(--ink-3); flex: 1; }
.card__meta { font: 400 11px/1.4 var(--font-mono); color: var(--ink-4); }
.card__cta { margin-top: 6px; }

.article-card { cursor: pointer; background: var(--bg-soft); border: 1px solid var(--line-soft); display: block; }
.article-card:hover { border-color: var(--ink); }
.article-card__body { padding: 20px; }
.article-card--lg .article-card__body { padding: 22px; }
.article-card__date { font: 400 11px/1 var(--font-mono); color: var(--ink-4); letter-spacing: .1em; }
.article-card__title { font-size: 21px; margin-top: 11px; line-height: 1.25; }
.article-card--lg .article-card__title { font-size: 22px; }
.article-card__excerpt { font-size: 13.5px; line-height: 1.6; color: var(--ink-3); margin-top: 10px; }
.article-card__more { margin-top: 14px; font: 600 13px/1 var(--font-body); color: var(--accent); }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--reverse { grid-template-columns: 1fr 1fr; }
.split--reverse .split__media { order: 2; }
.split__media { aspect-ratio: 1/1; overflow: hidden; background: #ece4d6; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media--tall { aspect-ratio: 3/4; }
.split__media--tall4-5 { aspect-ratio: 4/5; }
.split__text p + p { margin-top: 14px; }
.split__text p { font-size: 16px; line-height: 1.7; color: var(--ink-2); }
.split__text p:first-of-type { margin-top: 20px; }

/* ---------- Steps (dark, numbered) ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; margin-top: 48px; }
.step { border-top: 1px solid var(--dark-line-2); padding-top: 22px; }
.step__num { font: 500 13px/1 var(--font-mono); color: var(--accent-light); }
.step__title { font: 700 17px/1.3 var(--font-body); margin-top: 12px; }
.step__text { font-size: 14px; line-height: 1.65; color: var(--dark-muted-2); margin-top: 9px; }

/* ---------- Reviews ---------- */
.review { margin: 0; background: var(--bg-soft); border: 1px solid var(--line-soft); padding: 26px; }
.review__stars { font: 500 14px/1 var(--font-mono); color: var(--accent); letter-spacing: .1em; }
.review__text { font: 500 italic 17px/1.6 var(--font-display); margin-top: 16px; }
.review__by { margin-top: 18px; font: 600 13px/1.4 var(--font-body); }
.review__meta { color: var(--ink-4); font-weight: 400; }

/* ---------- FAQ ---------- */
.faq { margin-top: 36px; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  display: flex; justify-content: space-between; gap: 20px; align-items: center;
  padding: 20px 4px; cursor: pointer; background: transparent; border: 0; width: 100%; text-align: left;
  font: 700 16.5px/1.4 var(--font-body); color: var(--ink);
}
.faq__sign { font: 400 20px/1 var(--font-mono); color: var(--accent); flex: none; }
.faq__a { font-size: 15px; line-height: 1.7; color: var(--ink-2); padding: 0 40px 22px 4px; margin: 0; display: none; }
.faq__item.is-open .faq__a { display: block; }

/* ---------- Category tabs (menu page) ---------- */
.cat-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin: 34px 0 0; }
.cat-tab {
  background: transparent; color: var(--ink); border: 1px solid var(--line-input); border-radius: 999px;
  padding: 11px 20px; font: 600 13.5px/1 var(--font-body);
}
.cat-tab:hover { border-color: var(--ink); }
.cat-tab.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.info-box { margin-top: 42px; background: var(--bg-soft); border: 1px solid var(--line-soft); padding: 26px; display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.info-box__title { font: 700 14px/1.3 var(--font-body); }
.info-box__text { font-size: 13.5px; line-height: 1.6; color: var(--ink-3); margin-top: 7px; }

/* ---------- Forms ---------- */
.form-card { background: var(--bg-soft); border: 1px solid var(--line-soft); padding: 30px; }
.form-card h2, .form-card h3 { font-size: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 22px; }
.field { display: flex; flex-direction: column; gap: 7px; font: 600 12.5px/1 var(--font-body); }
.field--full { grid-column: span 2; }
.field input, .field select, .field textarea {
  border: 1px solid var(--line-input); background: var(--bg); padding: 12px; border-radius: var(--radius); color: var(--ink);
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.checkbox-row { display: flex; gap: 11px; align-items: flex-start; margin-top: 26px; font-size: 13.5px; line-height: 1.6; color: var(--ink-2); cursor: pointer; }
.checkbox-row input { margin-top: 3px; }
.form-note { font-size: 12.5px; line-height: 1.6; color: var(--ink-4); margin-top: 14px; }
.form-error { margin-top: 14px; font-size: 13.5px; color: var(--accent); font-weight: 600; }
.form-success { font-size: 14.5px; line-height: 1.7; color: var(--ink-2); }
.form-success--dark { background: var(--ink); color: var(--dark-fg); padding: 26px; }
.form-success--dark .form-success__title { font: 700 17px/1.3 var(--font-body); color: var(--dark-fg); }
.form-success--dark p { font-size: 14.5px; line-height: 1.7; color: var(--dark-muted-2); margin-top: 9px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; pointer-events: none; }

.payment-option {
  border: 1px solid var(--line-input); padding: 16px; display: flex; gap: 14px; align-items: center;
  cursor: pointer; background: var(--bg); position: relative;
}
.payment-option:hover { border-color: var(--ink); }
.payment-option input { position: absolute; opacity: 0; }
.payment-option__dot { width: 16px; height: 16px; border-radius: 50%; border: 1px solid var(--ink); display: flex; align-items: center; justify-content: center; flex: none; }
.payment-option__dot span { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: none; }
.payment-option input:checked + .payment-option__dot span { display: block; }
.payment-option__label { display: block; font: 700 14.5px/1.3 var(--font-body); }
.payment-option__note { font-size: 13px; line-height: 1.5; color: var(--ink-3); }

/* ---------- Checkout ---------- */
.checkout-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 44px; margin-top: 40px; align-items: start; }
.order-summary { background: var(--ink); color: var(--dark-fg); padding: 30px; position: sticky; top: 90px; }
.order-summary h3 { font-size: 20px; color: var(--dark-fg); }
.order-lines { margin-top: 20px; display: flex; flex-direction: column; gap: 14px; }
.order-line { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; line-height: 1.5; border-bottom: 1px solid var(--dark-line); padding-bottom: 12px; }
.order-line__sum { font-family: var(--font-mono); flex: none; }
.order-totals { margin-top: 22px; display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.order-totals__row { display: flex; justify-content: space-between; }
.order-totals__row span:first-child { color: var(--dark-muted-2); }
.order-totals__row--grand { border-top: 1px solid var(--dark-line); padding-top: 12px; margin-top: 6px; font: 700 17px/1 var(--font-body); }
.order-totals__row--grand span:first-child { color: var(--dark-fg); }
.order-summary__note { font-size: 12.5px; line-height: 1.6; color: var(--dark-muted); margin-top: 20px; }
.empty-cart-note { font-size: 14px; line-height: 1.6; color: var(--dark-muted-2); }
.empty-cart-note a { color: var(--dark-fg); text-decoration: underline; }

/* ---------- Zones table ---------- */
.zones-table { margin-top: 44px; border: 1px solid var(--line-soft); background: var(--bg-soft); overflow-x: auto; }
.zones-table table { width: 100%; border-collapse: collapse; min-width: 560px; }
.zones-table th {
  padding: 16px 20px; font: 600 12px/1 var(--font-mono); letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-4); border-bottom: 1px solid var(--line-soft); text-align: left;
}
.zones-table td { padding: 16px 20px; border-bottom: 1px solid #f0e8da; font-size: 14.5px; }
.zones-table td:first-child { font-weight: 700; }
.zones-table td:nth-child(2), .zones-table td:nth-child(3) { font-family: var(--font-mono); }
.zones-table td:last-child { color: var(--ink-3); }

.payment-methods { display: flex; flex-direction: column; gap: 16px; margin-top: 20px; }
.payment-methods__item { border-left: 1px solid var(--line-input); padding-left: 18px; }
.payment-methods__item h3 { font: 700 15px/1.3 var(--font-body); }
.payment-methods__item p { font-size: 14px; line-height: 1.65; color: var(--ink-3); margin-top: 6px; }

.callout { margin-top: 24px; background: var(--ink); color: var(--dark-fg); padding: 24px; }
.callout__title { font: 700 15px/1.3 var(--font-body); }
.callout p { font-size: 14px; line-height: 1.65; color: var(--dark-muted-2); margin-top: 8px; }

/* ---------- Timeline ---------- */
.timeline { margin-top: 32px; border-top: 1px solid var(--line); }
.timeline__item { display: grid; grid-template-columns: 120px 1fr; gap: 28px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.timeline__year { font: 500 22px/1 var(--font-display); color: var(--accent); }
.timeline__title { font: 700 16px/1.4 var(--font-body); }
.timeline__text { font-size: 14.5px; line-height: 1.65; color: var(--ink-3); margin-top: 7px; max-width: 760px; }

/* ---------- Team ---------- */
.team-card__media { aspect-ratio: 1/1; overflow: hidden; background: #ece4d6; }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; }
.team-card__name { font: 700 15.5px/1.3 var(--font-body); margin-top: 14px; }
.team-card__role { font: 400 11.5px/1.4 var(--font-mono); color: var(--accent); margin-top: 5px; }
.team-card__text { font-size: 13.5px; line-height: 1.6; color: var(--ink-3); margin-top: 9px; }

/* ---------- Booking / contact side card ---------- */
.side-card { background: var(--bg-soft); border: 1px solid var(--line-soft); padding: 24px; }
.side-card__title { font: 700 15px/1.3 var(--font-body); }
.hours-row { display: flex; justify-content: space-between; font-size: 14px; }
.hours-row span:first-child { color: var(--ink-3); }
.hours-row span:last-child { font-family: var(--font-mono); }
.hours-list { margin-top: 14px; display: flex; flex-direction: column; gap: 9px; }
.side-card__note { font-size: 13px; line-height: 1.6; color: var(--ink-4); margin-top: 14px; }

/* ---------- Contact ---------- */
.contact-block + .contact-block { margin-top: 26px; }
.contact-block__label { font: 500 11px/1 var(--font-mono); letter-spacing: .18em; color: var(--ink-4); text-transform: uppercase; }
.contact-block p { font-size: 16.5px; line-height: 1.7; margin-top: 10px; }
.contact-block p.small { font-size: 14.5px; line-height: 1.8; color: var(--ink-2); }
.map-embed { aspect-ratio: 16/9; overflow: hidden; background: #ece4d6; position: relative; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Success / order-done ---------- */
.success { max-width: 720px; margin: 0 auto; padding: 100px 24px 120px; text-align: center; }
.success__icon {
  width: 64px; height: 64px; border-radius: 50%; background: var(--accent); margin: 0 auto;
  display: flex; align-items: center; justify-content: center; color: #fff; font: 500 28px/1 var(--font-display);
}
.success h1 { font-size: 44px; margin-top: 28px; }
.success p { font-size: 16.5px; line-height: 1.7; color: var(--ink-2); margin-top: 16px; }
.success__actions { display: flex; gap: 14px; justify-content: center; margin-top: 34px; flex-wrap: wrap; }

/* ---------- Legal pages ---------- */
.legal-wrap { max-width: 840px; margin: 0 auto; padding: 56px 24px 90px; }
.legal-meta { font: 400 12.5px/1.6 var(--font-mono); color: var(--ink-4); margin-top: 14px; }
.legal-sections { margin-top: 38px; display: flex; flex-direction: column; gap: 34px; }
.legal-sections h2 { font-size: 25px; line-height: 1.25; }
.legal-sections__body { display: flex; flex-direction: column; gap: 13px; margin-top: 14px; }
.legal-sections__body p { font-size: 15.5px; line-height: 1.75; color: #3f392f; }

/* ---------- Article page ---------- */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 56px 24px 90px; }
.article-back { cursor: pointer; font: 600 13px/1 var(--font-body); color: var(--accent); }
.article-meta { font: 400 11.5px/1 var(--font-mono); color: var(--ink-4); letter-spacing: .1em; margin-top: 26px; }
.article-title { font-size: 44px; margin-top: 14px; line-height: 1.12; }
.article-hero { aspect-ratio: 16/9; overflow: hidden; background: #ece4d6; margin-top: 30px; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-body { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.article-body p { font-size: 17px; line-height: 1.75; color: #332e26; }
.article-cta {
  margin-top: 44px; background: var(--ink); color: var(--dark-fg); padding: 30px;
  display: flex; justify-content: space-between; gap: 24px; align-items: center; flex-wrap: wrap;
}
.article-cta__title { font: 500 24px/1.2 var(--font-display); }
.article-cta p { font-size: 14px; color: var(--dark-muted-2); margin-top: 8px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #c9bfae; margin-top: auto; }
.footer-grid { max-width: var(--container); margin: 0 auto; padding: 64px 24px 30px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand__mark { width: 30px; height: 30px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; }
.footer-brand__mark span { width: 10px; height: 10px; border-radius: 50%; background: var(--ink); }
.footer-brand__name { font: 700 16px/1 var(--font-body); letter-spacing: .16em; color: var(--dark-fg); }
.footer-col p { font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 320px; }
.footer-col p.contact-lines { font-size: 14px; line-height: 1.8; margin-top: 14px; }
.footer-col p.contact-lines a { color: var(--dark-fg); }
.footer-heading { font: 500 11px/1 var(--font-mono); letter-spacing: .18em; color: var(--dark-muted); text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; font-size: 14.5px; }
.footer-links a { color: #c9bfae; }
.footer-links a:hover { color: var(--dark-fg); }
.newsletter-form { display: flex; gap: 8px; margin-top: 14px; }
.newsletter-form input {
  flex: 1; min-width: 0; border: 1px solid var(--dark-line-2); background: var(--dark-2); color: var(--dark-fg);
  padding: 12px; border-radius: var(--radius);
}
.newsletter-form button { background: var(--dark-fg); color: var(--ink); border: 0; border-radius: var(--radius); padding: 12px 16px; font: 700 13px/1 var(--font-body); flex: none; }
.newsletter-note { font-size: 13px; line-height: 1.6; color: var(--accent-light); margin-top: 10px; }
.footer-bottom-bar { border-top: 1px solid var(--dark-line); }
.footer-bottom { max-width: var(--container); margin: 0 auto; padding: 20px 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12.5px; color: var(--dark-muted); }

/* ---------- Cart drawer ---------- */
.cart-drawer { position: fixed; inset: 0; z-index: 80; display: none; justify-content: flex-end; }
.cart-drawer.is-open { display: flex; }
.cart-drawer__overlay { position: absolute; inset: 0; background: rgba(22,19,15,.5); border: 0; padding: 0; }
.cart-drawer__panel {
  position: relative; width: 420px; max-width: 92vw; background: var(--bg); height: 100%;
  display: flex; flex-direction: column; animation: slideIn .22s ease-out; box-shadow: -20px 0 60px rgba(22,19,15,.2);
}
.cart-drawer__head { padding: 24px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.cart-drawer__head h2 { font-size: 24px; }
.cart-drawer__close { background: transparent; border: 0; font: 400 22px/1 var(--font-mono); color: var(--ink-3); }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 24px; display: flex; flex-direction: column; gap: 18px; }
.cart-drawer__empty p { font-size: 15px; line-height: 1.7; color: var(--ink-2); }
.cart-drawer__foot { padding: 24px; border-top: 1px solid var(--line); background: var(--bg-soft); }
.cart-line { display: flex; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.cart-line__thumb { width: 70px; height: 70px; flex: none; background: #ece4d6; overflow: hidden; }
.cart-line__thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__body { flex: 1; }
.cart-line__name { font: 700 14.5px/1.35 var(--font-body); }
.cart-line__unit { font: 400 12px/1.4 var(--font-mono); color: var(--ink-4); margin-top: 4px; }
.cart-line__ctrl { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.qty-btn { width: 28px; height: 28px; border: 1px solid var(--line-input); background: var(--bg-soft); border-radius: var(--radius); font: 500 15px/1 var(--font-mono); }
.qty-val { font: 500 14px/1 var(--font-mono); min-width: 16px; text-align: center; }
.cart-line__remove { margin-left: auto; font: 600 12px/1 var(--font-body); color: var(--ink-4); cursor: pointer; background: none; border: 0; }
.cart-line__sum { font: 500 17px/1 var(--font-display); flex: none; }

/* ---------- Cookie bar ---------- */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--ink); color: #e4dbcb;
  padding: 20px 24px; animation: fadeUp .3s ease-out; box-shadow: 0 -14px 40px rgba(22,19,15,.25); display: none;
}
.cookie-bar.is-visible { display: block; }
.cookie-bar__inner { max-width: var(--container); margin: 0 auto; display: flex; gap: 26px; align-items: center; flex-wrap: wrap; }
.cookie-bar p { font-size: 13.5px; line-height: 1.65; flex: 1; min-width: 280px; }
.cookie-bar a { color: var(--dark-fg); text-decoration: underline; }
.cookie-bar__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; min-height: 0; }
  .hero__content { padding: 56px 0 36px; }
  .hero__title { font-size: 46px; }
  .hero__media img { min-height: 320px; }
  .features__inner { grid-template-columns: repeat(2,1fr); }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .split, .split--reverse { grid-template-columns: 1fr; gap: 30px; }
  .split--reverse .split__media { order: 0; }
  .checkout-grid { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-box { grid-template-columns: 1fr; }
  .page-title, .section-title { font-size: 36px; }
}

@media (max-width: 720px) {
  .main-nav { position: fixed; top: 67px; left: 0; right: 0; bottom: 0; background: var(--bg);
    flex-direction: column; gap: 0; padding: 12px 24px; display: none; overflow-y: auto; z-index: 60; }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .nav-toggle { display: flex; }
  .site-header__inner { gap: 12px; }
  .brand__name { font-size: 15px; }
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .features__inner { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; padding-bottom: 8px; }
  .hero__title { font-size: 36px; }
  .hero__stats { gap: 24px; }
  .zones-table table { min-width: 480px; }
  .cart-drawer__panel { width: 100%; max-width: 100vw; }
  .timeline__item { grid-template-columns: 1fr; gap: 8px; }
  .cookie-bar__inner { flex-direction: column; align-items: stretch; }
}
