/* Vozion Avtoservis — design system CSS (ported 1:1 from Claude Design source) */

:root {
  --bg: #141618;
  --bg-alt: #17191c;
  --bg-card: #191c1f;
  --bg-card-hover: #1e2225;
  --bg-footer: #101214;
  --bg-input: #141618;
  --border: #26292d;
  --border-soft: #23262a;
  --border-mid: #2e3237;
  --border-strong: #33373c;
  --border-stronger: #3a3f45;
  --border-btn: #383d43;

  --text-1: #f5f6f7;
  --text-2: #f2f3f4;
  --text-3: #eceef0;
  --text-4: #e9eaec;
  --text-5: #dfe1e3;
  --text-6: #c9ccd0;
  --text-7: #c4c8cc;
  --text-8: #b9bdc2;
  --text-muted-1: #a9aeb4;
  --text-muted-2: #a8adb3;
  --text-muted-3: #9ea3a9;
  --text-muted-4: #93989e;
  --text-muted-5: #8f949a;
  --text-faint-1: #8b9096;
  --text-faint-2: #7d8288;
  --text-faint-3: #6e737a;
  --text-faint-4: #5f646a;

  --accent: #f0a13c;
  --accent-hover: #ffb85e;
  --accent-hover-2: #ffc077;
  --accent-ink: #141618;
  --green: #7dc47d;

  --max: 1240px;
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Barlow', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text-4);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover-2); }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; letter-spacing: -0.01em; }
p { margin: 0; text-wrap: pretty; }
button { font-family: var(--font-body); cursor: pointer; }
input, select, textarea { font-family: var(--font-body); }
img { display: block; max-width: 100%; }
::selection { background: var(--accent); color: var(--accent-ink); }

@keyframes slideIn { from { transform: translateX(40px); opacity: 0 } to { transform: translateX(0); opacity: 1 } }
@keyframes fadeUp { from { transform: translateY(14px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }

.page-shell { min-height: 100vh; display: flex; flex-direction: column; background: var(--bg); }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--accent); color: var(--accent-ink); padding: 12px 18px; font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Promo bar */
.promo-bar {
  background: var(--accent); color: var(--accent-ink); text-align: center;
  padding: 9px 16px; font-size: 14px; font-weight: 600; letter-spacing: .01em;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(20,22,24,.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .wrap { padding: 14px 24px; display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 11px; background: none; border: none; padding: 0; }
.brand-mark {
  width: 38px; height: 38px; background: var(--accent); display: flex; align-items: center;
  justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 19px; color: var(--accent-ink); flex: none;
}
.brand-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: .02em; color: var(--text-2); }
.brand-sub { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .22em; color: var(--text-faint-1); text-transform: uppercase; }

.main-nav { display: flex; gap: 22px; margin-left: auto; align-items: center; flex-wrap: wrap; }
.main-nav a {
  background: none; border: none; color: var(--text-6); font-size: 14.5px; font-weight: 500;
  padding: 6px 0; display: inline-block;
}
.main-nav a:hover, .main-nav a.active { color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.tel-link {
  font-family: var(--font-mono); font-size: 13px; color: var(--text-4);
  border: 1px solid var(--border-strong); padding: 9px 13px; white-space: nowrap;
}
.tel-link:hover { border-color: var(--accent); color: var(--accent); }
.cart-btn {
  position: relative; background: #1e2124; border: 1px solid var(--border-strong);
  color: var(--text-4); padding: 9px 14px; font-size: 13.5px; font-weight: 600;
}
.cart-btn:hover { border-color: var(--accent); }
.cart-btn .count { font-family: var(--font-mono); color: var(--accent); margin-left: 7px; }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border-strong); color: var(--text-4);
  padding: 9px 12px; font-size: 15px; margin-left: auto;
}
.header-cta {
  background: var(--accent); border: none; color: var(--accent-ink); padding: 10px 16px;
  font-size: 13.5px; font-weight: 700; white-space: nowrap;
}
.header-cta:hover { background: var(--accent-hover); color: var(--accent-ink); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; border: none;
  font-size: 15.5px; font-weight: 700; padding: 16px 26px; font-family: var(--font-body);
}
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-hover); color: var(--accent-ink); }
.btn-outline { background: none; border: 1px solid var(--border-stronger); color: var(--text-4); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-small { padding: 13px 20px; font-size: 14px; font-weight: 600; white-space: nowrap; }
.btn-tiny { padding: 10px 16px; font-size: 13px; font-weight: 600; background: #25292d; border: 1px solid var(--border-btn); color: var(--text-4); }
.btn-tiny:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.btn-dark { background: var(--accent-ink); border: none; color: #f4f5f6; padding: 17px 28px; font-size: 15.5px; font-weight: 700; }
.btn-dark:hover { background: #000; }
.btn-outline-dark { border: 1px solid var(--accent-ink); color: var(--accent-ink); padding: 17px 28px; font-size: 15.5px; font-weight: 700; background: none; }
.btn-outline-dark:hover { background: var(--accent-ink); color: #f4f5f6; }

/* Hero */
.hero {
  position: relative; border-bottom: 1px solid var(--border); overflow: hidden;
}
.hero .wrap {
  padding: 78px 24px 84px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
}
.hero-copy { animation: fadeUp .5s ease both; }
.badge-live {
  display: inline-flex; align-items: center; gap: 9px; border: 1px solid var(--border-strong);
  padding: 7px 12px; font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-muted-3); margin-bottom: 26px;
}
.badge-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; }
.hero h1 { font-size: 62px; line-height: 1.02; font-weight: 800; color: var(--text-1); margin-bottom: 22px; }
.hero h1 .accent { color: var(--accent); }
.hero-lead { font-size: 19px; line-height: 1.6; color: var(--text-muted-2); max-width: 530px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; max-width: 520px;
  border-top: 1px solid var(--border); padding-top: 26px;
}
.hero-stats .stat-num { font-family: var(--font-display); font-size: 30px; font-weight: 800; color: var(--accent); }
.hero-stats .stat-label { font-size: 13.5px; color: var(--text-muted-3); line-height: 1.4; }
.hero-photo {
  height: 470px; border: 1px solid var(--border-mid); overflow: hidden; position: relative;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.photo-frame { border: 1px solid var(--border-mid); overflow: hidden; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* USP strip */
.usp-strip { border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.usp-strip .wrap { padding: 30px 24px; display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
.usp-item { display: flex; gap: 13px; align-items: flex-start; }
.usp-dot { width: 9px; height: 9px; background: var(--accent); margin-top: 6px; flex: none; }
.usp-title { font-weight: 600; font-size: 15px; color: var(--text-3); }
.usp-text { font-size: 13.5px; color: var(--text-muted-4); line-height: 1.45; }

/* Section chrome */
.section { max-width: var(--max); margin: 0 auto; padding: 76px 24px; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 38px; flex-wrap: wrap;
}
.eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-title { font-size: 40px; font-weight: 800; color: var(--text-2); }
.section-sub { font-size: 16px; color: var(--text-muted-3); margin-top: 12px; max-width: 620px; }

/* Services grid (home) */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.service-card { background: var(--bg-card); padding: 30px 26px 32px; }
.service-card:hover { background: var(--bg-card-hover); }
.service-no { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint-3); margin-bottom: 16px; }
.service-card h3 { font-size: 20px; font-weight: 700; color: #f0f1f2; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; line-height: 1.6; color: var(--text-muted-3); margin-bottom: 18px; }
.service-price { font-family: var(--font-mono); font-size: 13px; color: var(--accent); }

/* How we work */
.how-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.steps { display: flex; flex-direction: column; gap: 20px; }
.step { display: flex; gap: 18px; }
.step-num { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--accent); width: 34px; flex: none; }
.step-title { font-weight: 600; font-size: 16.5px; color: var(--text-3); margin-bottom: 4px; }
.step-text { font-size: 14.5px; color: var(--text-muted-3); line-height: 1.55; }

/* Products grid */
.products-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.product-card { border: 1px solid var(--border); background: var(--bg-card); display: flex; flex-direction: column; }
.product-card:hover { border-color: var(--border-stronger); }
.product-photo { height: 170px; border-bottom: 1px solid var(--border); overflow: hidden; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-cat { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--text-faint-3); }
.product-name { font-family: var(--font-display); font-weight: 600; font-size: 16px; color: #eff0f1; line-height: 1.3; }
.product-desc { font-size: 13.5px; color: var(--text-muted-5); line-height: 1.5; flex: 1; }
.product-stock { font-size: 12.5px; color: var(--green); }
.product-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 6px; }
.product-price { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--accent); }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card { border: 1px solid var(--border); background: #1a1d20; padding: 28px; }
.stars { color: var(--accent); font-size: 15px; letter-spacing: 3px; margin-bottom: 14px; }
.review-text { font-size: 15px; line-height: 1.65; color: var(--text-7); margin-bottom: 18px; }
.review-who { font-size: 13.5px; color: var(--text-muted-5); }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; }
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; padding: 20px 0; display: flex; align-items: center;
  justify-content: space-between; gap: 18px; text-align: left; color: var(--text-3); font-size: 17px;
  font-weight: 600; font-family: var(--font-display);
}
.faq-q:hover { color: var(--accent); }
.faq-sign { font-family: var(--font-mono); font-size: 20px; color: var(--accent); flex: none; }
.faq-a { font-size: 15px; line-height: 1.65; color: var(--text-muted-3); padding: 0 40px 22px 0; display: none; }
.faq-item.open .faq-a { display: block; }

/* CTA band */
.cta-band { background: var(--accent); }
.cta-band .wrap {
  padding: 56px 24px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-band h2 { font-size: 34px; font-weight: 800; color: var(--accent-ink); margin-bottom: 8px; }
.cta-band p { font-size: 16.5px; color: #3a2c15; font-weight: 500; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Page hero (inner pages) */
.page-hero { border-bottom: 1px solid var(--border); background: var(--bg-alt); }
.page-hero .wrap { padding: 64px 24px 58px; }
.page-hero h1 { font-size: 52px; font-weight: 800; color: #f4f5f6; margin-bottom: 20px; max-width: 900px; }
.page-hero p { font-size: 18px; line-height: 1.6; color: #a8adb3; max-width: 760px; }

/* Services listing page */
.service-list { max-width: var(--max); margin: 0 auto; padding: 56px 24px 76px; display: flex; flex-direction: column; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.service-row { background: var(--bg-card); padding: 32px; display: grid; grid-template-columns: 60px 1fr 1.2fr 150px; gap: 28px; align-items: start; }
.service-row:hover { background: #1d2124; }
.service-row-no { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--accent); }
.service-row h3 { font-size: 21px; font-weight: 700; color: #f0f1f2; margin-bottom: 8px; }
.service-time { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-faint-2); }
.service-row p { font-size: 15px; line-height: 1.65; color: var(--text-muted-3); }
.service-row-price { text-align: right; }
.service-row-price .price { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--accent); margin-bottom: 12px; }

/* Price table */
.price-wrap { max-width: 1000px; margin: 0 auto; padding: 56px 24px 40px; }
.price-table { border: 1px solid var(--border); }
.price-head, .price-row {
  display: grid; grid-template-columns: 1fr 110px 130px; gap: 16px; padding: 16px 24px; align-items: center;
}
.price-head {
  background: #1e2225; border-bottom: 1px solid var(--border); font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint-1);
}
.price-row { border-bottom: 1px solid var(--border-soft); background: var(--bg-card); }
.price-row:hover { background: #1d2124; }
.price-row:last-child { border-bottom: none; }
.price-name { font-size: 15px; color: var(--text-5); }
.price-time { font-family: var(--font-mono); font-size: 13px; color: var(--text-faint-1); }
.price-value { font-family: var(--font-mono); font-size: 14.5px; color: var(--accent); text-align: right; }
.price-notes { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 32px; }
.note-card { border: 1px solid var(--border); background: var(--bg-card); padding: 24px; }
.note-card h3 { font-size: 17px; font-weight: 700; color: #eff0f1; margin-bottom: 8px; }
.note-card p { font-size: 14px; color: var(--text-muted-4); line-height: 1.55; }
.price-cta { max-width: 1000px; margin: 0 auto; padding: 0 24px 76px; }
.price-cta-box {
  border: 1px solid var(--border-strong); background: #1a1d20; padding: 32px; display: flex; align-items: center;
  justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.price-cta-box h3 { font-size: 23px; font-weight: 700; color: var(--text-2); margin-bottom: 6px; }
.price-cta-box p { font-size: 15px; color: var(--text-muted-3); }

/* Shop */
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-chip {
  background: #1c1f22; border: 1px solid var(--border-mid); color: var(--text-6); padding: 9px 15px;
  font-size: 13.5px; font-weight: 500;
}
.filter-chip:hover, .filter-chip.active { border-color: var(--accent); color: var(--accent); }
.shown-label { font-family: var(--font-mono); font-size: 12px; color: var(--text-faint-1); }
.shop-notes { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 40px; }
.shop-note { border: 1px solid var(--border); background: var(--bg-alt); padding: 22px; }
.shop-note .t { font-weight: 700; font-size: 15px; color: var(--text-3); margin-bottom: 6px; }
.shop-note .d { font-size: 13.5px; color: var(--text-muted-4); line-height: 1.5; }
.product-card.is-hidden { display: none; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.trust-list { display: flex; flex-direction: column; gap: 18px; }
.trust-item { border-left: 2px solid var(--accent); padding-left: 18px; }
.trust-item .t { font-weight: 600; font-size: 16.5px; color: var(--text-3); margin-bottom: 4px; }
.trust-item p { font-size: 14.5px; color: var(--text-muted-3); line-height: 1.55; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.team-card { border: 1px solid var(--border); background: #1a1d20; }
.team-photo { height: 230px; border-bottom: 1px solid var(--border); overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 22px; }
.team-name { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: #f0f1f2; }
.team-role { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin: 7px 0 12px; }
.team-bio { font-size: 14.5px; color: var(--text-muted-3); line-height: 1.6; }
.equip-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.equip-cell { background: var(--bg-card); padding: 24px; }
.equip-cell .t { font-weight: 600; font-size: 15.5px; color: var(--text-3); margin-bottom: 6px; }
.equip-cell .d { font-size: 13.5px; color: var(--text-muted-4); line-height: 1.5; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.blog-card { border: 1px solid var(--border); background: var(--bg-card); display: flex; flex-direction: column; }
.blog-card:hover { border-color: var(--border-stronger); }
.blog-photo { height: 180px; border-bottom: 1px solid var(--border); overflow: hidden; }
.blog-photo img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.blog-meta { font-family: var(--font-mono); font-size: 11px; color: var(--text-faint-3); }
.blog-card h3 { font-size: 20px; font-weight: 700; color: #eff0f1; line-height: 1.28; }
.blog-lead { font-size: 14.5px; color: var(--text-muted-4); line-height: 1.6; flex: 1; }
.blog-link { align-self: flex-start; background: none; border: none; padding: 0; color: var(--accent); font-size: 14px; font-weight: 600; }
.blog-link:hover { color: var(--accent-hover-2); }

/* Article */
.article-head { max-width: 840px; margin: 0 auto; padding: 56px 24px 24px; }
.back-link { background: none; border: none; padding: 0; color: var(--text-faint-1); font-size: 13.5px; margin-bottom: 26px; display: inline-block; }
.back-link:hover { color: var(--accent); }
.article-meta { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-faint-2); margin-bottom: 16px; }
.article-head h1 { font-size: 44px; line-height: 1.1; font-weight: 800; color: #f4f5f6; }
.article-photo { max-width: 840px; margin: 0 auto; padding: 0 24px 20px; }
.article-photo .photo-frame { height: 320px; }
.article-body { max-width: 840px; margin: 0 auto; padding: 24px 24px 60px; display: flex; flex-direction: column; gap: 18px; }
.article-body h2 { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: #f1f2f3; margin-top: 16px; }
.article-body p { font-size: 17.5px; line-height: 1.75; color: var(--text-8); }
.article-cta {
  border: 1px solid var(--border-strong); background: #1a1d20; padding: 28px; margin-top: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.article-cta .t { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text-2); margin-bottom: 6px; }
.article-cta p { font-size: 14.5px; color: var(--text-muted-3); }

/* Forms */
.form-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; border: 1px solid var(--border); background: var(--bg-card); padding: 30px; }
.form-col { display: flex; flex-direction: column; gap: 15px; border: 1px solid var(--border); background: var(--bg-card); padding: 28px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.span2 { grid-column: span 2; }
.field span.label { font-size: 13px; color: var(--text-muted-3); font-weight: 500; }
.field input, .field select, .field textarea {
  background: var(--bg-input); border: 1px solid var(--border-mid); color: var(--text-4); padding: 12px 13px; font-size: 14.5px;
}
.field textarea { resize: vertical; }
.field-check { grid-column: span 2; display: flex; gap: 11px; align-items: flex-start; font-size: 13px; color: var(--text-muted-5); line-height: 1.5; }
.field-check input { margin-top: 3px; }
.form-submit { grid-column: span 2; background: var(--accent); border: none; color: var(--accent-ink); padding: 16px; font-size: 15.5px; font-weight: 700; }
.form-submit:hover { background: var(--accent-hover); }
.form-col .form-submit { grid-column: auto; padding: 15px; font-size: 15px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; }

.success-panel { border: 1px solid var(--accent); background: #1c1e18; padding: 34px; }
.success-panel .t { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: var(--accent); margin-bottom: 12px; }
.success-panel p { font-size: 16px; color: var(--text-7); line-height: 1.6; margin-bottom: 20px; }
.success-panel.small { padding: 30px; }
.success-panel.small .t { font-size: 23px; }
.success-panel.small p { font-size: 15.5px; margin-bottom: 0; }

.side-card { border: 1px solid var(--border); background: var(--bg-alt); padding: 26px; }
.side-card h3 { font-size: 18px; font-weight: 700; color: #eff0f1; margin-bottom: 14px; }
.side-card + .side-card { margin-top: 20px; }
.hours-row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--text-7); }
.hours-row .t { font-family: var(--font-mono); }
.hours-row.muted { color: var(--text-muted-5); }
.bring-list { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; color: var(--text-muted-3); line-height: 1.5; }

/* Contact page */
.contact-cards { max-width: var(--max); margin: 0 auto; padding: 56px 24px 40px; display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.contact-card { border: 1px solid var(--border); background: var(--bg-card); padding: 26px; }
.contact-card .k { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.contact-card .v { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: #f0f1f2; }
.contact-card .v:hover { color: var(--accent); }
.contact-card .v.small { font-size: 16px; word-break: break-all; }
.contact-card .hint { font-size: 13.5px; color: var(--text-muted-5); margin-top: 8px; line-height: 1.5; }
.contact-main { max-width: var(--max); margin: 0 auto; padding: 0 24px 76px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-main h2 { font-size: 28px; font-weight: 800; color: var(--text-2); margin-bottom: 18px; }
.map-frame { flex: 1; min-height: 330px; border: 1px solid var(--border-mid); overflow: hidden; }
.map-frame iframe { width: 100%; height: 100%; min-height: 330px; border: 0; display: block; }
.how-to { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--text-muted-3); line-height: 1.5; }

/* Legal pages */
.legal-layout { max-width: var(--max); margin: 0 auto; padding: 48px 24px 80px; display: grid; grid-template-columns: 250px 1fr; gap: 48px; }
.legal-nav { display: flex; flex-direction: column; gap: 2px; align-self: start; border: 1px solid var(--border); background: var(--bg-card); padding: 10px; }
.legal-nav a { text-align: left; background: none; border: none; color: var(--text-7); font-size: 14px; padding: 11px 13px; display: block; }
.legal-nav a:hover, .legal-nav a.active { background: #22262a; color: var(--accent); }
.legal-body { display: flex; flex-direction: column; gap: 16px; max-width: 820px; }
.legal-body h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: #f1f2f3; margin-top: 18px; }
.legal-body p { font-size: 16px; line-height: 1.75; color: #a9aeb4; }
.legal-imprint { border: 1px solid var(--border); background: var(--bg-alt); padding: 24px; margin-top: 22px; font-size: 14px; color: var(--text-muted-5); line-height: 1.65; }

/* Footer */
.site-footer { background: var(--bg-footer); border-top: 1px solid var(--border); }
.footer-grid { max-width: var(--max); margin: 0 auto; padding: 56px 24px 30px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 18px; }
.footer-brand .mark { width: 34px; height: 34px; background: var(--accent); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--accent-ink); }
.footer-brand .name { font-family: var(--font-display); font-weight: 800; font-size: 17px; letter-spacing: .02em; color: var(--text-2); }
.footer-col p { font-size: 14px; color: var(--text-faint-1); line-height: 1.65; margin-bottom: 18px; max-width: 330px; }
.footer-mono { font-family: var(--font-mono); font-size: 12px; color: var(--text-faint-3); line-height: 1.8; }
.footer-heading { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.footer-links a, .footer-links button { background: none; border: none; padding: 0; color: var(--text-muted-1); font-size: 14px; }
.footer-links a:hover, .footer-links button:hover { color: var(--accent); }
.footer-hours { display: flex; flex-direction: column; gap: 9px; font-size: 14px; color: var(--text-muted-1); }
.footer-hours .row { display: flex; justify-content: space-between; gap: 12px; }
.footer-hours .row span:last-child { font-family: var(--font-mono); color: var(--text-5); }
.footer-note { margin-top: 20px; padding-top: 18px; border-top: 1px solid #22262a; font-size: 13px; color: var(--text-faint-1); line-height: 1.6; }
.footer-bottom {
  max-width: var(--max); margin: 0 auto; padding: 20px 24px 40px; border-top: 1px solid #1e2124;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-family: var(--font-mono);
  font-size: 11.5px; color: var(--text-faint-3);
}

/* Cart drawer */
.cart-overlay {
  position: fixed; inset: 0; z-index: 90; display: none; justify-content: flex-end;
}
.cart-overlay.open { display: flex; }
.cart-scrim { position: absolute; inset: 0; background: rgba(8,9,10,.7); border: none; padding: 0; margin: 0; }
.cart-drawer {
  position: relative; width: 430px; max-width: 92vw; background: var(--bg-alt); border-left: 1px solid var(--border-mid);
  display: flex; flex-direction: column; animation: slideIn .22s ease both;
}
.cart-head { padding: 22px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cart-head .t { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--text-2); }
.cart-close { background: none; border: none; color: var(--text-faint-1); font-size: 22px; line-height: 1; padding: 0 4px; }
.cart-close:hover { color: var(--accent); }
.cart-body { flex: 1; overflow: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.cart-empty { padding: 40px 0; text-align: center; }
.cart-empty p { font-size: 15px; color: var(--text-muted-5); line-height: 1.6; margin-bottom: 20px; }
.cart-line { display: grid; grid-template-columns: 1fr auto; gap: 12px; border: 1px solid var(--border); background: #1a1d20; padding: 16px; }
.cart-line .name { font-size: 14.5px; color: #e4e6e8; line-height: 1.4; }
.cart-line .total { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--accent); white-space: nowrap; }
.cart-line .qty-controls { display: flex; align-items: center; gap: 10px; }
.qty-btn { width: 30px; height: 30px; background: #22262a; border: 1px solid var(--border-strong); color: var(--text-4); font-size: 16px; line-height: 1; }
.qty-btn:hover { border-color: var(--accent); color: var(--accent); }
.qty-val { font-family: var(--font-mono); font-size: 14px; color: var(--text-5); min-width: 18px; text-align: center; }
.cart-foot { border-top: 1px solid var(--border); padding: 20px 24px 24px; display: flex; flex-direction: column; gap: 11px; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--text-muted-1); }
.cart-summary-row .v { font-family: var(--font-mono); color: var(--text-5); }
.cart-summary-row.vat { font-size: 13px; color: var(--text-faint-2); }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--border); padding-top: 12px; margin-top: 4px; }
.cart-total-row .t { font-size: 15px; color: var(--text-4); font-weight: 600; }
.cart-total-row .v { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--accent); }
.ship-hint { font-size: 12.5px; color: var(--text-faint-2); line-height: 1.5; }
.checkout-btn { background: var(--accent); border: none; color: var(--accent-ink); padding: 15px; font-size: 15px; font-weight: 700; margin-top: 6px; }
.checkout-btn:hover { background: var(--accent-hover); }
.checkout-btn[aria-disabled="true"] { opacity: .5; pointer-events: none; }
.ship-terms-link { background: none; border: none; color: var(--text-faint-1); font-size: 12.5px; padding: 2px; }
.ship-terms-link:hover { color: var(--accent); }

/* Cookie bar */
.cookie-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; background: #1a1d20; border-top: 1px solid var(--border-strong);
  box-shadow: 0 -12px 40px rgba(0,0,0,.45); display: none;
}
.cookie-bar.open { display: block; }
.cookie-bar .wrap { padding: 22px 24px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.cookie-copy { flex: 1; min-width: 280px; }
.cookie-copy .t { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--text-2); margin-bottom: 7px; }
.cookie-copy p { font-size: 14px; color: var(--text-muted-3); line-height: 1.6; max-width: 760px; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-cookie-reject { background: none; border: 1px solid var(--border-stronger); color: var(--text-4); padding: 14px 20px; font-size: 14px; font-weight: 600; }
.btn-cookie-reject:hover { border-color: var(--accent); color: var(--accent); }
.btn-cookie-accept { background: var(--accent); border: none; color: var(--accent-ink); padding: 14px 22px; font-size: 14px; font-weight: 700; }
.btn-cookie-accept:hover { background: var(--accent-hover); }

/* Checkout page */
.checkout-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; }
.order-summary { border: 1px solid var(--border); background: var(--bg-card); padding: 26px; }
.order-summary h3 { font-size: 18px; font-weight: 700; color: #eff0f1; margin-bottom: 14px; }
.order-line { display: flex; justify-content: space-between; gap: 12px; font-size: 14px; color: var(--text-7); padding: 10px 0; border-bottom: 1px solid var(--border-soft); }

/* Skeleton photo placeholder (fallback, unused when real photo present) */
.photo-placeholder {
  background: repeating-linear-gradient(135deg,#1c1f22 0 11px,#212529 11px 22px);
  display: flex; align-items: center; justify-content: center; color: var(--text-faint-2);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
}

/* Responsive */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .main-nav.open { display: flex; flex-direction: column; align-items: flex-start; width: 100%; order: 5; }
  .nav-toggle { display: inline-flex; }
  .site-header .wrap { flex-wrap: wrap; }
  .header-actions { margin-left: auto; }
  .tel-link { display: none; }
  .hero .wrap, .how-grid, .about-grid, .faq-layout, .checkout-layout { grid-template-columns: 1fr; }
  .hero-photo { height: 320px; order: -1; }
  .usp-strip .wrap, .services-grid, .products-grid, .reviews-grid, .team-grid, .equip-grid,
  .price-notes, .shop-notes, .blog-grid, .contact-cards, .legal-layout, .price-head, .price-row {
    grid-template-columns: repeat(2,1fr);
  }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-nav { flex-direction: row; flex-wrap: wrap; }
  .contact-main { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 1fr; gap: 10px; }
  .service-row-price { text-align: left; }
  .form-grid2 { grid-template-columns: 1fr; }
  .field.span2 { grid-column: span 1; }
  .form-submit { grid-column: span 1; }
  .hero h1 { font-size: 44px; }
  .section-title, .page-hero h1 { font-size: 34px; }
}
@media (max-width: 640px) {
  .usp-strip .wrap, .services-grid, .products-grid, .reviews-grid, .team-grid, .equip-grid,
  .price-notes, .shop-notes, .blog-grid, .contact-cards {
    grid-template-columns: 1fr;
  }
  .price-head, .price-row { grid-template-columns: 1fr 80px; }
  .price-head div:nth-child(2), .price-row .price-time { display: none; }
  .hero-stats { grid-template-columns: 1fr; gap: 14px; }
  .cta-band .wrap { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cart-drawer { width: 100vw; max-width: 100vw; }
}
