/* Poctivá Myčka — shared stylesheet. Fonts are self-hosted, see fonts/fonts.css. */
@import url('../fonts/fonts.css');

:root {
  --bg: #0d1012;
  --bg-alt: #101517;
  --bg-card: #14191c;
  --bg-deep: #06181f;
  --bg-header: rgba(13, 16, 18, 0.94);

  --border: #22282c;
  --border-soft: #23292d;
  --border-soft2: #1c2225;
  --border-mid: #2f373c;
  --border-accent: #2c4a56;
  --border-hover: #3d6a7b;

  --text: #e9eef0;
  --text-soft: #cdd6da;
  --text-mute: #adbabf;
  --text-mute2: #98a5ab;
  --text-dim: #8c999f;
  --text-dim2: #7d8a91;
  --text-faint: #6f7c83;
  --text-nav: #9aa6ac;
  --text-footlink: #5f6b71;

  --accent: #5cb8dd;
  --accent-light: #9adcf2;
  --accent-deep: #06181f;

  --font-display: 'Archivo', 'Arial Black', sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'Cascadia Code', Consolas, monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body { min-height: 100vh; display: flex; flex-direction: column; }

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

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

::selection { background: var(--accent); color: var(--bg-deep); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 900; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }

button { font-family: inherit; cursor: pointer; }

.mono { font-family: var(--font-mono); }

@keyframes pmDrift { from { background-position: 0 0; } to { background-position: 240px 0; } }
@keyframes pmFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

/* ---------- layout helpers ---------- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container-narrower { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.container-article { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.container-legal { max-width: 820px; margin: 0 auto; padding: 0 24px; }

.section { padding: 72px 24px; }
.section-lg { padding: 96px 24px 84px; }
.section > .container,
.section > .container-narrow,
.section > .container-narrower,
.section > .container-article,
.section > .container-legal { padding: 0; }
.section.bordered { border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); background: var(--bg-alt); }

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent);
  border: 1px solid var(--border-accent);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 26px;
}
.eyebrow.plain { border: 0; padding: 0; margin-bottom: 16px; }

/* ---------- promo bar & header ---------- */
.promo-bar {
  background: var(--accent);
  color: var(--accent-deep);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 9px 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--bg-header);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.site-header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; color: var(--accent-deep); font-size: 19px;
}
.brand-text { line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 900; font-size: 17px; letter-spacing: -0.01em; }
.brand-sub { font-family: var(--font-mono); font-size: 10px; color: var(--text-dim2); letter-spacing: 0.12em; }

.main-nav { display: flex; flex-wrap: wrap; gap: 4px; margin-left: auto; }
.main-nav a {
  padding: 8px 12px; border-radius: 9px; font-size: 14px; font-weight: 500;
  color: var(--text-nav); background: transparent;
}
.main-nav a:hover { background: #1b2124; color: #fff; }
.main-nav a.active { color: #fff; background: #1b2124; }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--border-mid);
  border-radius: 9px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text);
  flex-shrink: 0;
}

.cart-btn {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 15px; border-radius: 10px;
  background: var(--accent); color: var(--accent-deep);
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.cart-btn:hover { background: var(--accent-light); color: var(--accent-deep); }
.cart-count {
  min-width: 22px; height: 22px; border-radius: 11px;
  background: var(--accent-deep); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px; padding: 0 6px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 15px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: var(--accent-deep); }
.btn-primary:hover { background: var(--accent-light); color: var(--accent-deep); }
.btn-outline { border-color: var(--border-mid); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-block { display: block; width: 100%; }
.btn-sm { padding: 12px 18px; font-size: 14px; border-radius: 10px; }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--border-soft); }
.hero-bg {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, #12171a 0px, #12171a 28px, #0f1416 28px, #0f1416 56px);
  animation: pmDrift 14s linear infinite;
  opacity: 0.9;
}
.hero-inner {
  position: relative; max-width: 1240px; margin: 0 auto; padding: 96px 24px 84px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.hero h1 { font-size: 66px; line-height: 0.98; margin: 0 0 22px; text-wrap: balance; }
.hero-lead { font-size: 18px; line-height: 1.65; color: var(--text-mute); max-width: 520px; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 34px; margin-top: 44px; flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-display); font-weight: 900; font-size: 30px; color: var(--accent); }
.hero-stat-label { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim2); letter-spacing: 0.1em; }
.hero-photo { border-radius: 20px; overflow: hidden; border: 1px solid #2a3136; aspect-ratio: 4 / 5; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.page-photo { border-radius: 16px; overflow: hidden; border: 1px solid #2a3136; }
.page-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-4-3 { aspect-ratio: 4 / 3; }
.photo-16-9 { aspect-ratio: 16 / 9; }
.photo-16-10 { aspect-ratio: 16 / 10; }
.photo-1-1 { aspect-ratio: 1 / 1; }

/* ---------- cards ---------- */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 26px; }
.card-hover:hover { border-color: var(--border-hover); }
.card-tag { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: 0.12em; margin-bottom: 14px; }
.card h3 { font-family: var(--font-display); font-weight: 700; font-size: 21px; margin: 0 0 10px; }
.card p { font-size: 14.5px; line-height: 1.6; color: var(--text-mute2); margin: 0 0 18px; }
.card-price { font-family: var(--font-display); font-weight: 700; font-size: 17px; }

.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 34px; flex-wrap: wrap; }
.section-head h2 { font-size: 40px; }
.section-link { font-family: var(--font-mono); font-size: 13px; color: var(--accent); letter-spacing: 0.06em; }

/* ---------- calculator ---------- */
.calc-section { border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); background: var(--bg-alt); }
.calc-grid { max-width: 1240px; margin: 0 auto; padding: 72px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.calc-grid h2 { font-size: 38px; margin: 0 0 18px; }
.calc-grid > div:first-child > p { color: var(--text-mute2); font-size: 16px; line-height: 1.65; margin: 0 0 26px; }
.field { display: grid; gap: 7px; }
.field-label { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim2); letter-spacing: 0.1em; }
.field select, .field input, .field textarea {
  background: var(--bg-deep); color: var(--text); border: 1px solid var(--border-mid);
  border-radius: 10px; padding: 13px 14px; font-family: var(--font-body); font-size: 15px; width: 100%;
}
.field select:focus, .field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.calc-fields { display: grid; gap: 16px; max-width: 420px; }
.calc-result { background: var(--bg-card); border: 1px solid var(--border); border-radius: 18px; padding: 34px; display: flex; flex-direction: column; justify-content: center; }
.calc-result-label { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim2); letter-spacing: 0.12em; }
.calc-price { font-family: var(--font-display); font-weight: 900; font-size: 64px; color: var(--accent); line-height: 1.05; margin: 8px 0 4px; }
.calc-summary { color: var(--text-mute2); font-size: 15px; margin-bottom: 22px; }
.calc-meta { border-top: 1px dashed var(--border-soft2); padding-top: 18px; color: var(--text-mute2); font-size: 14px; line-height: 1.6; }

/* ---------- steps ---------- */
.step { border-top: 2px solid var(--accent); padding-top: 20px; }
.step-n { font-family: var(--font-display); font-weight: 900; font-size: 34px; color: #2f4954; }
.step h3 { font-size: 19px; margin: 6px 0 8px; }
.step p { color: var(--text-mute2); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* ---------- reviews ---------- */
.review-stars { color: var(--accent); font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.2em; margin-bottom: 14px; }
.review p { font-size: 15.5px; line-height: 1.7; color: var(--text-soft); margin: 0 0 18px; }
.review-name { font-weight: 700; font-size: 14px; }
.review-meta { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim2); }

/* ---------- loyalty ---------- */
.loyalty-box {
  border: 1px solid var(--border-accent); border-radius: 22px; padding: 46px;
  background-image: repeating-linear-gradient(135deg, #131a1d 0px, #131a1d 16px, #101618 16px, #101618 32px);
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
}
.loyalty-box h2 { font-size: 38px; margin: 0 0 14px; }
.loyalty-box p { color: var(--text-mute); font-size: 16.5px; line-height: 1.65; }
.stamp-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.stamp {
  aspect-ratio: 1; border-radius: 50%; border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 18px;
}
.stamp.filled { color: var(--accent-deep); background: var(--accent); border-color: var(--accent); }
.stamp.empty { color: var(--text-footlink); background: transparent; }

/* ---------- services (list) ---------- */
.service-row {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 18px; padding: 32px;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 34px;
}
.service-row h3 { font-size: 27px; margin: 0 0 12px; }
.service-row > div:first-child > p { color: var(--text-mute2); font-size: 15.5px; line-height: 1.7; margin: 0 0 18px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { font-family: var(--font-mono); font-size: 11.5px; color: var(--accent-light); border: 1px solid var(--border-accent); border-radius: 999px; padding: 6px 12px; }
.service-side { border-left: 1px dashed var(--border-soft2); padding-left: 30px; display: flex; flex-direction: column; justify-content: center; }
.service-side .price-label { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim2); letter-spacing: 0.1em; }
.service-side .price { font-family: var(--font-display); font-weight: 900; font-size: 40px; color: var(--accent); }
.service-side .time { color: var(--text-mute2); font-size: 14px; margin-top: 6px; }
.service-side .btn { margin-top: 18px; }

/* ---------- pricing table ---------- */
.price-table { border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.price-table-head, .price-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
}
.price-table-head {
  background: var(--bg-card); border-bottom: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--text-dim2);
}
.price-table-head div, .price-row div { padding: 16px 22px; }
.price-row { border-bottom: 1px solid var(--border-soft2); }
.price-row:hover { background: #12181a; }
.price-row:last-child { border-bottom: 0; }
.price-row .name { font-weight: 700; font-size: 15px; padding: 17px 22px; }
.price-row .val { color: var(--text-mute); font-family: var(--font-mono); font-size: 14px; padding: 17px 22px; }
.info-card h3 { font-size: 19px; margin: 0 0 10px; }
.info-card p { color: var(--text-mute2); font-size: 14.5px; line-height: 1.65; }

/* ---------- plans ---------- */
.plan { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 32px; display: flex; flex-direction: column; }
.plan-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; }
.plan h3 { font-size: 28px; margin: 12px 0 6px; }
.plan-price { font-family: var(--font-display); font-weight: 900; font-size: 42px; color: var(--accent); }
.plan-period { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim2); margin-bottom: 22px; }
.plan-features { display: grid; gap: 10px; margin-bottom: 26px; }
.plan-feature { display: flex; gap: 10px; align-items: flex-start; color: #b7c2c7; font-size: 14.5px; line-height: 1.5; }
.plan-feature::before { content: '·'; color: var(--accent); font-weight: 700; }
.plan-btn { margin-top: auto; text-align: center; padding: 13px; border-radius: 11px; border: 1px solid var(--border-mid); font-weight: 700; }

/* ---------- shop ---------- */
.product-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.product-card:hover { border-color: var(--border-hover); }
.product-photo { aspect-ratio: 1; overflow: hidden; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-family: var(--font-mono); font-size: 10.5px; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 8px; }
.product-title { font-family: var(--font-display); font-weight: 700; font-size: 17px; margin: 0 0 8px; line-height: 1.25; }
.product-desc { color: var(--text-dim); font-size: 13.5px; line-height: 1.55; margin: 0 0 16px; }
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-family: var(--font-display); font-weight: 900; font-size: 19px; }
.add-cart-btn { padding: 9px 14px; border-radius: 9px; background: var(--accent); color: var(--accent-deep); font-weight: 700; font-size: 13px; border: 0; }
.add-cart-btn:hover { background: var(--accent-light); }
.perk { border: 1px solid var(--border); border-radius: 14px; padding: 22px; }
.perk h4 { font-family: var(--font-display); margin: 0 0 6px; font-size: 16px; }
.perk p { margin: 0; color: var(--text-dim); font-size: 14px; line-height: 1.55; }

/* ---------- cart ---------- */
.cart-line { display: flex; align-items: center; gap: 18px; padding: 20px 22px; border-bottom: 1px solid var(--border-soft2); }
.cart-line:last-child { border-bottom: 0; }
.cart-thumb {
  width: 62px; height: 62px; border-radius: 12px; flex-shrink: 0; overflow: hidden; border: 1px solid #262d31;
}
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-title { font-weight: 700; font-size: 15.5px; }
.cart-line-unit { font-family: var(--font-mono); font-size: 12px; color: var(--text-dim2); }
.qty-btn {
  width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--border-mid);
  display: flex; align-items: center; justify-content: center; font-weight: 700; background: transparent; color: var(--text);
}
.qty-btn:hover { border-color: var(--accent); color: var(--accent); }
.qty-val { font-family: var(--font-mono); min-width: 24px; text-align: center; }
.cart-sum { font-family: var(--font-display); font-weight: 900; font-size: 17px; min-width: 96px; text-align: right; }
.remove-link { color: var(--text-faint); cursor: pointer; font-size: 13px; background: none; border: 0; }
.remove-link:hover { color: #e57373; }
.summary-box { background: var(--bg-card); border: 1px solid var(--border); border-radius: 18px; padding: 26px; }
.summary-box h3 { font-size: 20px; margin: 0 0 18px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--text-mute); }
.summary-total {
  border-top: 1px solid #262d31; margin: 18px 0; padding-top: 18px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.summary-total-val { font-family: var(--font-display); font-weight: 900; font-size: 28px; color: var(--accent); }
.note { color: var(--text-faint); font-size: 12.5px; line-height: 1.55; margin: 14px 0 0; }
.success-box { margin-top: 16px; border: 1px solid var(--border-accent); border-radius: 12px; padding: 14px; color: var(--accent-light); font-size: 13.5px; line-height: 1.55; }
.empty-cart { border: 1px dashed var(--border-soft2); border-radius: 18px; padding: 56px; text-align: center; }
.empty-cart p { color: var(--text-mute2); font-size: 16.5px; margin: 0 0 20px; }

/* ---------- booking ---------- */
.slot-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.slot {
  padding: 13px 0; text-align: center; border-radius: 10px; border: 1px solid var(--border-mid);
  font-family: var(--font-mono); font-size: 14px; background: transparent; color: var(--text-soft);
}
.slot:hover:not(.slot-busy) { border-color: var(--accent); color: var(--accent); }
.slot.slot-selected { background: var(--accent); border-color: var(--accent); color: var(--accent-deep); }
.slot.slot-busy { border-color: var(--border-soft2); color: #4a5459; cursor: not-allowed; }
.slot-hint { color: var(--text-dim2); font-size: 13px; line-height: 1.6; margin: 18px 0 0; }
.picked-slot { font-family: var(--font-mono); font-size: 12px; color: var(--accent-light); }

/* ---------- faq ---------- */
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 24px 26px; }
.faq-item h3 { font-size: 18px; margin: 0 0 10px; }
.faq-item p { color: var(--text-mute2); font-size: 15px; line-height: 1.7; margin: 0; }

/* ---------- blog ---------- */
.post-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.post-card:hover { border-color: var(--border-hover); }
.post-photo { aspect-ratio: 16 / 10; overflow: hidden; }
.post-photo img { width: 100%; height: 100%; object-fit: cover; }
.post-body { padding: 22px; }
.post-meta { font-family: var(--font-mono); font-size: 10.5px; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 10px; }
.post-title { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin: 0 0 10px; line-height: 1.3; }
.post-excerpt { color: var(--text-dim); font-size: 14px; line-height: 1.6; margin: 0 0 14px; }
.post-read { font-family: var(--font-mono); font-size: 12px; color: var(--accent); }

.article-back { font-family: var(--font-mono); font-size: 12px; color: var(--accent); margin-bottom: 22px; display: inline-block; }
.article-meta { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim2); letter-spacing: 0.1em; margin-bottom: 14px; }
.article-title { font-size: 44px; line-height: 1.08; margin: 0 0 26px; }
.article-hero { aspect-ratio: 16 / 9; border-radius: 16px; overflow: hidden; border: 1px solid #2a3136; margin-bottom: 32px; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.prose { color: var(--text-soft); font-size: 17px; line-height: 1.8; }
.prose p { margin: 0 0 20px; }
.prose h2 { font-size: 26px; margin: 34px 0 14px; color: var(--text); }
.prose blockquote {
  margin: 30px 0; padding: 22px 26px; border-left: 3px solid var(--accent);
  background: var(--bg-card); border-radius: 0 12px 12px 0; color: var(--text-soft); font-size: 17px; line-height: 1.7;
}

/* ---------- legal ---------- */
.legal-block h2 { font-family: var(--font-display); font-weight: 700; font-size: 21px; margin: 0 0 10px; }
.legal-block p { color: var(--text-mute); font-size: 15.5px; line-height: 1.8; margin: 0; white-space: pre-line; }
.legal-updated { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-dim2); margin-bottom: 34px; }
.legal-footer { margin-top: 44px; border-top: 1px solid var(--border-soft); padding-top: 24px; color: var(--text-dim2); font-size: 13.5px; line-height: 1.7; }

/* ---------- about / contact ---------- */
.about-copy { color: #b7c2c7; font-size: 16.5px; line-height: 1.78; }
.about-copy p { margin: 0 0 18px; }
.about-copy p:last-child { margin-bottom: 0; }
.fact-card { border: 1px solid var(--border); border-radius: 16px; padding: 22px; }
.fact-card-label { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim2); letter-spacing: 0.1em; margin-bottom: 12px; }
.fact-list { display: grid; gap: 9px; color: #b7c2c7; font-size: 14.5px; }

.contact-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 26px; }
.contact-card-label { font-family: var(--font-mono); font-size: 11px; color: var(--text-dim2); letter-spacing: 0.1em; margin-bottom: 12px; }
.contact-card-body { font-size: 16px; line-height: 1.7; color: var(--text-soft); }
.contact-hours-row { display: flex; justify-content: space-between; font-size: 15px; color: var(--text-soft); }
.contact-hours-row.closed { color: var(--text-dim2); }
.contact-form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 26px; display: grid; gap: 13px; }
.contact-form-card h3 { font-size: 20px; margin: 0; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border-soft); background: #0a0d0e; margin-top: auto; }
.footer-grid { max-width: 1240px; margin: 0 auto; padding: 56px 24px 30px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand { font-family: var(--font-display); font-weight: 900; font-size: 19px; margin-bottom: 12px; }
.footer-desc { color: var(--text-dim2); font-size: 14px; line-height: 1.7; margin: 0 0 16px; max-width: 300px; }
.footer-addr { font-family: var(--font-mono); font-size: 12.5px; color: var(--text-nav); line-height: 1.9; }
.footer-col-title { font-family: var(--font-mono); font-size: 11px; color: var(--text-footlink); letter-spacing: 0.12em; margin-bottom: 14px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: var(--text-nav); font-size: 14px; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1240px; margin: 0 auto; padding: 20px 24px 40px; border-top: 1px solid #171c1f;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11.5px; color: var(--text-footlink);
}

/* ---------- cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 60;
  display: flex; justify-content: center;
}
.cookie-banner[hidden] { display: none; }
.cookie-inner {
  max-width: 980px; width: 100%; background: #131a1d; border: 1px solid var(--border-accent); border-radius: 18px;
  padding: 24px 26px; display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: center;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55); animation: pmFade 0.35s ease both;
}
.cookie-inner h2 { font-size: 17px; margin-bottom: 7px; }
.cookie-inner p { color: var(--text-nav); font-size: 13.5px; line-height: 1.65; margin: 0; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { white-space: nowrap; }

/* ---------- misc ---------- */
.text-mute { color: var(--text-mute); }
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 48px; }
  .calc-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 1fr; }
  .service-side { border-left: 0; border-top: 1px dashed var(--border-soft2); padding-left: 0; padding-top: 24px; margin-top: 10px; }
  .loyalty-box { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .price-table-head, .price-row { grid-template-columns: 1.6fr 1fr 1fr 1fr; font-size: 13px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .main-nav.open { display: flex; flex-direction: column; width: 100%; }
  .nav-toggle { display: flex; }
  .site-header-inner { flex-wrap: wrap; }
  .hero h1 { font-size: 38px; }
  .hero-inner { padding: 56px 20px 48px; }
  h1 { font-size: 36px !important; }
  .section, .section-lg { padding: 52px 20px; }
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: repeat(3, 1fr); }
  .price-table-head, .price-row { grid-template-columns: 1.4fr 1fr 1fr; font-size: 12px; }
  .price-table-head div:nth-child(4), .price-row div:nth-child(4) { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .cookie-inner { grid-template-columns: 1fr; }
  .cart-line { flex-wrap: wrap; }
}
