/* Sjajivo Auto Detailing — stylesheet
   Self-hosted fonts, no external CDN. */

@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url('/fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url('/fonts/archivo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0300-0301, U+0304, U+0308, U+0329, U+1E00-1EFF, U+2020;
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/karla-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('/fonts/karla-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0300-0301, U+0304, U+0308, U+0329, U+1E00-1EFF, U+2020;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/fonts/jetbrainsmono-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('/fonts/jetbrainsmono-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-024F, U+0300-0301, U+0304, U+0308, U+0329, U+1E00-1EFF, U+2020;
}

:root {
  --bg: #0e1113;
  --bg-section: #121618;
  --bg-card: #161a1d;
  --bg-hover: #1d2226;
  --border: #2a3136;
  --border-strong: #3a4247;
  --text: #e8eaeb;
  --text-secondary: #d3d8da;
  --text-muted: #b3babe;
  --text-dim: #9aa3a8;
  --text-faint: #6d777d;
  --accent: #45c8dc;
  --accent-hover: #6fd8e8;
  --gold: #dca85a;
  --green: #7fbf8a;
  --font-display: 'Archivo', 'Arial Black', sans-serif;
  --font-body: 'Karla', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'Cascadia Code', Consolas, monospace;
  --container: 1240px;
  --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body {
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; }
img { max-width: 100%; display: block; }
input, textarea, select, button { font-family: inherit; }
::selection { background: var(--accent); color: var(--bg); }
h1, h2, h3 { font-family: var(--font-display); margin: 0; }
p { margin: 0; }

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

/* Promo bar */
.promo-bar {
  background: var(--accent);
  color: var(--bg);
  text-align: center;
  padding: 9px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(14, 17, 19, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: inherit;
}
.brand:hover { text-decoration: none; color: inherit; }
.brand-mark {
  width: 34px;
  height: 34px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  color: var(--accent);
  flex: 0 0 auto;
}
.brand-text { line-height: 1.05; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.main-nav { display: flex; flex-wrap: wrap; gap: 4px 2px; margin-left: auto; }
.main-nav a {
  padding: 8px 11px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 4px;
  white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--bg-hover);
  color: #fff;
  text-decoration: none;
}

.header-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.header-phone { font-family: var(--font-mono); font-size: 13px; color: var(--text); }
.header-phone:hover { color: var(--accent-hover); }
.cart-link {
  position: relative;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}
.cart-link:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: 4px;
  padding: 9px 11px;
  cursor: pointer;
  flex: 0 0 auto;
}
.nav-toggle:hover { border-color: var(--accent); color: var(--accent); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 15px 26px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  font-family: var(--font-body);
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover { background: var(--accent-hover); color: var(--bg); }
.btn-outline { border-color: var(--border-strong); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-accent-outline { border-color: var(--accent); color: var(--accent); background: transparent; }
.btn-accent-outline:hover { background: var(--accent); color: var(--bg); }
.btn-small { padding: 11px 18px; font-size: 13px; }
.btn-tiny { padding: 8px 14px; font-size: 13px; }
.btn-block { display: block; width: 100%; }

/* Kicker / eyebrow label */
.kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* Sections */
.section { padding: 72px 24px; }
.section-tight { padding: 60px 24px 80px; }
.section-alt { background: var(--bg-section); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.section-title { font-weight: 900; font-size: 38px; letter-spacing: -0.01em; }
.section-link { font-size: 14px; font-weight: 700; color: var(--accent); white-space: nowrap; }

/* Hero */
.hero { padding: 72px 24px 64px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { font-weight: 900; font-size: 58px; line-height: 1.02; letter-spacing: -0.02em; margin: 0 0 22px; }
.hero-lead { font-size: 18px; color: var(--text-muted); margin: 0 0 32px; max-width: 520px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; border-top: 1px solid var(--border); padding-top: 24px; max-width: 520px; }
.hero-stat-num { font-family: var(--font-display); font-weight: 900; font-size: 28px; color: var(--accent); }
.hero-stat-label { font-size: 13px; color: var(--text-dim); }
.hero-media { display: grid; gap: 12px; }
.hero-media-main { height: 320px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.hero-media-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-media-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-media-grid .media-box { height: 150px; }

.media-box { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.media-box img { width: 100%; height: 100%; object-fit: cover; }

/* Trust bar */
.trust-bar { background: var(--bg-section); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.card-link { cursor: pointer; }
.card-link:hover { border-color: var(--accent); background: var(--bg-hover); text-decoration: none; }
.card-num { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); margin-bottom: 14px; }
.card-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 10px; }
.card-text { font-size: 15px; color: var(--text-dim); margin-bottom: 16px; }
.card-price { font-family: var(--font-mono); font-size: 13px; color: var(--accent); }

/* Process steps */
.steps { grid-template-columns: repeat(5, 1fr); }
.step { border-top: 2px solid var(--accent); padding-top: 16px; }
.step-num { font-family: var(--font-display); font-weight: 900; font-size: 30px; color: var(--border); }
.step-title { font-weight: 700; font-size: 16px; margin: 6px 0 8px; }
.step-text { font-size: 14px; color: var(--text-dim); }

/* Ceramic highlight */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-media { height: 380px; }
.bullet-list { display: grid; gap: 10px; margin-bottom: 26px; }
.bullet-item { display: flex; gap: 12px; align-items: start; }
.bullet-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; margin-top: 9px; flex: 0 0 auto; }
.bullet-text { font-size: 15px; color: var(--text-muted); }

/* Reviews */
.review-stars { color: var(--gold); font-size: 14px; letter-spacing: 0.2em; margin-bottom: 14px; }
.review-text { font-size: 15px; color: var(--text-secondary); margin-bottom: 18px; }
.review-name { font-size: 13px; font-weight: 700; }
.review-car { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); }

/* Product cards */
.product-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.product-shot { height: 150px; border-bottom: 1px solid var(--border); overflow: hidden; }
.product-shot img { width: 100%; height: 100%; object-fit: cover; }
.product-shot-tall { height: 170px; }
.product-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-name { font-weight: 700; font-size: 15px; }
.product-desc { font-size: 13px; color: var(--text-dim); flex: 1; }
.product-cat { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); }
.product-stock { font-family: var(--font-mono); font-size: 11px; color: var(--green); }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 4px; }
.product-price { font-family: var(--font-display); font-weight: 900; font-size: 20px; color: var(--accent); }
.product-price-mono { font-family: var(--font-mono); font-size: 15px; color: var(--accent); }
.add-btn { padding: 9px 14px; background: var(--bg-hover); border: 1px solid var(--border-strong); border-radius: 4px; font-size: 13px; font-weight: 700; cursor: pointer; color: var(--text); }
.add-btn:hover { border-color: var(--accent); color: var(--accent); }

/* CTA banner */
.cta-banner { background: var(--bg-card); border: 1px solid var(--border); border-radius: 8px; padding: 46px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.cta-banner h2 { font-weight: 900; font-size: 32px; margin: 0 0 12px; }
.cta-banner p { color: var(--text-dim); }
.cta-actions { display: flex; flex-direction: column; gap: 10px; }
.cta-actions .btn { text-align: center; }
.cta-phone { padding: 15px 26px; border: 1px solid var(--border-strong); color: var(--text); font-weight: 700; text-align: center; border-radius: 4px; font-family: var(--font-mono); font-size: 14px; }
.cta-phone:hover { border-color: var(--accent); color: var(--accent-hover); }

/* Page header */
.page-head { padding-top: 60px; }
.page-head h1 { font-weight: 900; font-size: 46px; margin: 0 0 16px; letter-spacing: -0.02em; }
.page-lead { color: var(--text-muted); max-width: 720px; margin: 0 0 40px; font-size: 17px; }

/* Service long list */
.service-row { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; display: grid; grid-template-columns: 240px 1fr 200px; gap: 30px; align-items: start; }
.service-row-num { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); margin-bottom: 8px; }
.service-row-title { font-family: var(--font-display); font-weight: 700; font-size: 22px; line-height: 1.15; }
.service-row-time { font-family: var(--font-mono); font-size: 12px; color: var(--text-dim); margin-top: 10px; }
.service-row-text { margin: 0 0 14px; color: var(--text-muted); }
.service-bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.service-bullets .bullet-item { align-items: start; }
.service-bullets .bullet-dot { width: 6px; height: 6px; margin-top: 9px; }
.service-bullets .bullet-text { font-size: 14px; color: var(--text-dim); }
.service-row-price { text-align: right; }
.service-row-price .price-value { font-family: var(--font-display); font-weight: 900; font-size: 26px; color: var(--accent); }
.service-row-price .price-hint { font-size: 12px; color: var(--text-faint); margin-bottom: 14px; }

.info-box { border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.info-box-title { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-bottom: 10px; }
.info-box-text { font-size: 15px; color: var(--text-dim); }
.info-box-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.info-box-card .info-box-title { margin-bottom: 8px; font-size: 15px; font-weight: 700; font-family: var(--font-body); }
.info-box-card .info-box-text { font-size: 14px; }

/* Coating packages */
.coating-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; gap: 14px; }
.coating-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.coating-name { font-family: var(--font-display); font-weight: 900; font-size: 24px; }
.coating-price { font-family: var(--font-display); font-weight: 900; font-size: 34px; color: var(--text); }
.coating-desc { font-size: 14px; color: var(--text-dim); }
.coating-items { display: grid; gap: 8px; border-top: 1px solid var(--border); padding-top: 14px; }
.coating-items div { font-size: 14px; color: var(--text-muted); }
.coating-card .btn { margin-top: auto; }

.care-item { border-left: 2px solid var(--accent); padding: 4px 0 4px 16px; }
.care-item-title { font-weight: 700; }
.care-item-text { font-size: 14px; color: var(--text-dim); }

/* Price table */
.price-table { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.price-table-head, .price-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.8fr 0.8fr;
  gap: 16px;
  padding: 18px 24px;
  align-items: center;
}
.price-table-head {
  padding: 16px 24px;
  background: var(--bg-hover);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.price-row { border-top: 1px solid var(--border); }
.price-row:hover { background: var(--bg-card); }
.price-row-name { font-weight: 700; font-size: 16px; }
.price-row-incl { font-size: 14px; color: var(--text-dim); }
.price-row-time { font-family: var(--font-mono); font-size: 13px; color: var(--text-dim); }
.price-row-price { text-align: right; font-family: var(--font-mono); font-size: 16px; color: var(--accent); }

/* Shop category chips */
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.chip {
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-family: var(--font-mono);
  cursor: pointer;
  background: transparent;
  color: var(--text-muted);
}
.chip.active { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.chip:hover:not(.active) { border-color: var(--border-strong); color: var(--text); }

/* Cart */
.cart-empty { border: 1px dashed var(--border); border-radius: var(--radius); padding: 60px; text-align: center; }
.cart-empty-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.cart-empty-text { color: var(--text-dim); margin-bottom: 22px; }
.cart-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; align-items: start; }
.cart-lines { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cart-line { display: grid; grid-template-columns: 70px 1fr auto auto; gap: 16px; padding: 18px; border-bottom: 1px solid var(--border); align-items: center; }
.cart-line-thumb { height: 60px; width: 70px; border: 1px solid var(--border); border-radius: 4px; overflow: hidden; }
.cart-line-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-name { font-weight: 700; font-size: 15px; }
.cart-line-unit { font-family: var(--font-mono); font-size: 12px; color: var(--text-dim); }
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 30px; height: 30px; border: 1px solid var(--border-strong); border-radius: 4px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-weight: 700; background: transparent; color: var(--text); }
.qty-btn:hover { border-color: var(--accent); color: var(--accent); }
.qty-value { width: 28px; text-align: center; font-family: var(--font-mono); }
.cart-line-total { text-align: right; min-width: 110px; }
.cart-line-total .total-amt { font-family: var(--font-display); font-weight: 900; font-size: 17px; }
.remove-link { font-size: 12px; color: var(--text-dim); cursor: pointer; text-decoration: underline; background: none; border: none; padding: 0; font-family: inherit; }
.cart-lines-foot { padding: 16px 18px; display: flex; justify-content: space-between; align-items: center; }
.cart-summary { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.cart-summary-title { font-family: var(--font-display); font-weight: 900; font-size: 20px; margin-bottom: 18px; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 15px; color: var(--text-muted); }
.summary-row.small { font-size: 13px; color: var(--text-faint); }
.summary-row.total { padding: 16px 0 0; margin-top: 12px; border-top: 1px solid var(--border); font-weight: 700; font-size: 17px; }
.summary-total-amt { font-family: var(--font-display); font-weight: 900; font-size: 24px; color: var(--accent); }
.ship-hint { font-size: 13px; color: var(--text-dim); margin: 14px 0 18px; }
.legal-hint { font-size: 12px; color: var(--text-faint); margin-top: 14px; }
.order-notice { margin-top: 24px; border: 1px solid var(--accent); background: rgba(69, 200, 220, 0.08); border-radius: var(--radius); padding: 24px; }
.order-notice-title { font-weight: 700; margin-bottom: 6px; }
.order-notice-text { font-size: 14px; color: var(--text-muted); }

/* Gallery */
.gallery-item-title { margin-top: 10px; font-weight: 700; font-size: 15px; }
.gallery-item-meta { font-size: 13px; color: var(--text-dim); }
.gallery-media { height: 230px; }

/* Blog */
.post-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.post-card:hover { border-color: var(--accent); text-decoration: none; }
.post-shot { height: 170px; border-bottom: 1px solid var(--border); overflow: hidden; }
.post-shot img { width: 100%; height: 100%; object-fit: cover; }
.post-body { padding: 22px; }
.post-meta { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); margin-bottom: 10px; }
.post-title { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin-bottom: 10px; line-height: 1.25; color: var(--text); }
.post-lead { font-size: 14px; color: var(--text-dim); }

/* Article */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 60px 24px 80px; }
.back-link { font-size: 14px; color: var(--accent); font-weight: 700; margin-bottom: 24px; display: inline-block; }
.article-meta { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); margin-bottom: 14px; }
.article-wrap h1 { font-weight: 900; font-size: 40px; margin: 0 0 22px; letter-spacing: -0.02em; line-height: 1.1; }
.article-hero { height: 300px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin-bottom: 30px; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-body p { font-size: 17px; color: var(--text-secondary); margin: 0 0 18px; }
.article-body h2 { font-family: var(--font-display); font-weight: 700; font-size: 24px; margin: 32px 0 12px; }
.article-callout { margin: 36px 0; padding: 24px; border-left: 3px solid var(--accent); background: var(--bg-card); border-radius: 0 6px 6px 0; }
.article-callout-title { font-weight: 700; margin-bottom: 6px; }
.article-callout-text { color: var(--text-muted); }
.article-foot { border-top: 1px solid var(--border); padding-top: 26px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: space-between; }
.article-foot-text { color: var(--text-dim); }

/* About */
.stat-box { border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.stat-box-num { font-family: var(--font-display); font-weight: 900; font-size: 24px; color: var(--accent); }
.stat-box-label { font-size: 14px; color: var(--text-dim); }
.team-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.team-photo { height: 180px; border-bottom: 1px solid var(--border); overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 18px; }
.team-name { font-weight: 700; font-size: 16px; }
.team-role { font-family: var(--font-mono); font-size: 11px; color: var(--accent); margin: 4px 0 8px; text-transform: uppercase; letter-spacing: 0.1em; }
.team-bio { font-size: 14px; color: var(--text-dim); }
.about-media { height: 340px; }

/* Forms */
.form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; }
.form-card-title { font-family: var(--font-display); font-weight: 700; font-size: 20px; margin-bottom: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { margin-bottom: 16px; }
.form-label { font-size: 13px; color: var(--text-dim); margin-bottom: 6px; display: block; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-size: 15px;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--accent); }
.form-textarea { min-height: 110px; resize: vertical; }
.form-check { display: flex; gap: 10px; align-items: start; margin-bottom: 18px; }
.form-check input { margin-top: 4px; }
.form-check-text { font-size: 13px; color: var(--text-dim); }
.form-note { margin-top: 14px; font-size: 14px; color: var(--accent); }
.form-error { margin-top: 14px; font-size: 14px; color: #e28a8a; }

.contact-info-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.contact-info-title { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-bottom: 14px; }
.contact-info-list { display: grid; gap: 10px; font-size: 15px; color: var(--text-muted); }
.hours-row { display: flex; justify-content: space-between; font-size: 15px; }
.hours-row .label { color: var(--text-muted); }
.hours-row .value { font-family: var(--font-mono); }
.map-embed { height: 220px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.3) invert(0.92) contrast(0.9); }

/* FAQ */
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; cursor: pointer; }
.faq-item:hover { border-color: var(--border-strong); }
.faq-q-row { display: flex; gap: 16px; justify-content: space-between; align-items: start; }
.faq-q { font-weight: 700; font-size: 17px; }
.faq-sign { color: var(--accent); font-size: 20px; line-height: 1; flex: 0 0 auto; }
.faq-a { margin-top: 12px; color: var(--text-muted); font-size: 15px; display: none; }
.faq-item.open .faq-a { display: block; }

/* Legal pages */
.legal-layout { padding: 60px 24px 80px; display: grid; grid-template-columns: 250px 1fr; gap: 44px; align-items: start; }
.legal-sidebar { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; position: sticky; top: 100px; }
.legal-sidebar-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 12px; }
.legal-nav { display: grid; gap: 4px; }
.legal-nav a { padding: 9px 10px; border-radius: 4px; font-size: 14px; color: var(--text-muted); }
.legal-nav a:hover { text-decoration: none; background: var(--bg-hover); color: var(--text); }
.legal-nav a.active { background: var(--bg-hover); color: var(--accent); }
.legal-updated { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); margin-bottom: 12px; }
.legal-content h1 { font-weight: 900; font-size: 38px; margin: 0 0 24px; letter-spacing: -0.02em; }
.legal-section { margin-bottom: 26px; }
.legal-section h2 { font-family: var(--font-display); font-weight: 700; font-size: 21px; margin: 0 0 10px; }
.legal-section p { margin: 0 0 10px; color: var(--text-muted); font-size: 15px; }
.legal-contact-box { margin-top: 40px; padding: 24px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-card); }
.legal-contact-box .title { font-weight: 700; margin-bottom: 8px; }
.legal-contact-box .text { font-size: 15px; color: var(--text-muted); }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: var(--bg-section); }
.footer-grid { max-width: var(--container); margin: 0 auto; padding: 56px 24px 30px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 34px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-mark { width: 30px; height: 30px; border: 2px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 900; font-size: 13px; color: var(--accent); }
.footer-brand-name { font-family: var(--font-display); font-weight: 900; font-size: 15px; text-transform: uppercase; letter-spacing: 0.02em; color: var(--text); }
.footer-desc { font-size: 14px; color: var(--text-dim); margin-bottom: 16px; max-width: 320px; }
.footer-meta { font-family: var(--font-mono); font-size: 12px; color: var(--text-faint); line-height: 1.9; }
.footer-col-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 14px; }
.footer-links { display: grid; gap: 9px; font-size: 14px; }
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 24px 40px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 13px; color: var(--text-faint); }
.payment-badges { display: flex; flex-wrap: wrap; gap: 10px; font-family: var(--font-mono); font-size: 11px; color: var(--text-faint); }
.payment-badges span { padding: 5px 10px; border: 1px solid var(--border); border-radius: 3px; }

/* 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-box {
  max-width: 1080px;
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.5);
}
.cookie-title { font-weight: 700; margin-bottom: 6px; }
.cookie-text { font-size: 14px; color: var(--text-dim); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--bg);
  padding: 10px 16px;
  z-index: 100;
  border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* Utility */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.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 { grid-template-columns: 1fr; padding: 48px 20px 40px; }
  .hero h1 { font-size: 42px; }
  .split { grid-template-columns: 1fr; }
  .split-media { height: 260px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 1fr; }
  .service-row-price { text-align: left; }
  .cart-layout { grid-template-columns: 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
  .cta-banner { grid-template-columns: 1fr; padding: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 8px;
  }
  .main-nav.open { display: flex; }
  .header-inner { position: relative; flex-wrap: wrap; }
  .main-nav a { padding: 12px 14px; }
  .header-phone { display: none; }
  .hero h1 { font-size: 34px; }
  .hero-media-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 28px; }
  .page-head h1 { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; padding: 40px 20px 20px; }
  .price-table-head, .price-row { grid-template-columns: 1.4fr 1fr 0.8fr; }
  .price-table-head div:nth-child(3), .price-row > div:nth-child(3) { display: none; }
  .cookie-box { grid-template-columns: 1fr; }
}
