/* Gyors Mester - shared stylesheet
   Fonts intentionally use local/system stacks only (no external CDN). */

:root {
  --bg: #f6f4f0;
  --ink: #14161a;
  --text: #3c3830;
  --text-2: #4a453e;
  --text-3: #6b6259;
  --text-4: #8d8578;
  --line: #e3ded6;
  --line-2: #efeae1;
  --line-3: #cfc7ba;
  --line-4: #d8d1c5;
  --line-5: #dcd5c9;
  --line-6: #ddd6ca;
  --card: #fff;
  --amber: #e0952b;
  --gold: #b07c1e;
  --navy: #29506b;
  --navy-dark: #22415a;
  --navy-line: #3d6683;
  --hero-bg: #1b2430;
  --footer-bg: #14161a;
  --footer-text: #a8a19a;
  --footer-text-2: #77706a;
  --footer-text-3: #cfc9bf;
  --green-dot: #7bbf6a;
  --ok-bg: #eef3ee;
  --ok-border: #bcd3b8;
  --ok-text: #2f5b2a;
  --ok-text-2: #33502f;
  --danger: #9a5b4b;
  --danger-line: #d8b3a9;
  --err-bg: #f7e9e6;
  --err-border: #e0b3a9;
  --err-text: #7a3327;
  --max: 1180px;
  --font-display: 'Arial Narrow', 'Segoe UI Semibold', Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, 'Liberation Mono', monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); }
body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  color: var(--ink);
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; border-bottom: 1px solid rgba(41,80,107,0.35); }
a:hover { color: var(--gold); border-bottom-color: var(--gold); }
button { font-family: inherit; }
ul { margin: 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; }

.page { background: var(--bg); color: var(--ink); min-height: 100vh; display: flex; flex-direction: column; }

/* Skip link */
.skip-link {
  position: absolute; left: -999px; top: -999px;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 4px; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Topbar */
.topbar { background: var(--ink); color: #cfc9bf; font-size: 13px; padding: 9px 24px; display: flex; justify-content: center; }
.topbar-inner { width: 100%; max-width: var(--max); display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.topbar-left { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
.topbar-right { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }
.topbar-sep { color: #6f675c; }
.topbar-dot { display: inline-flex; align-items: center; gap: 8px; }
.dot-green { width: 7px; height: 7px; border-radius: 50%; background: var(--green-dot); display: inline-block; }
.topbar-phone { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: var(--bg); letter-spacing: 0.02em; }
.mono { font-family: var(--font-mono); letter-spacing: 0.06em; }

/* Header */
.site-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 40; }
.header-inner { max-width: var(--max); margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 12px; background: none; border: none; padding: 0; cursor: pointer; text-align: left; color: inherit; border-bottom: none; }
.brand-mark { width: 42px; height: 42px; background: var(--ink); color: var(--amber); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 22px; border-radius: 5px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-title { font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: 0.01em; color: var(--ink); }
.brand-sub { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; color: var(--text-4); text-transform: uppercase; }

.main-nav { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-left: auto; }
.nav-link { background: none; border: none; border-bottom: none; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--text); padding: 9px 11px; border-radius: 4px; }
.nav-link:hover, .nav-link.active { background: #f2efe9; color: var(--ink); }
.nav-cart { display: inline-flex; align-items: center; gap: 8px; background: #f2efe9; border: 1px solid var(--line); border-bottom: 1px solid var(--line); cursor: pointer; font-size: 15px; font-weight: 600; color: var(--ink); padding: 9px 13px; border-radius: 4px; margin-left: 6px; }
.nav-cart:hover { border-color: var(--ink); }
.cart-badge { font-family: var(--font-mono); font-size: 12px; background: var(--ink); color: var(--amber); border-radius: 20px; padding: 2px 7px; }
.btn-call { border: none; background: var(--amber); color: var(--ink); font-weight: 700; font-size: 15px; padding: 11px 16px; border-radius: 4px; margin-left: 2px; border-bottom: none; }
.btn-call:hover { background: var(--ink); color: var(--amber); }

main { flex: 1; }

/* Generic buttons */
.btn { display: inline-block; border: none; cursor: pointer; font-weight: 700; border-radius: 4px; font-size: 16px; padding: 14px 22px; border-bottom: none; text-align: center; }
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-amber:hover { background: var(--ink); color: var(--amber); }
.btn-dark { background: var(--ink); color: var(--bg); }
.btn-dark:hover { background: var(--navy); color: var(--bg); }
.btn-outline-dark { background: #fff; color: var(--ink); border: 1px solid var(--line-3); }
.btn-outline-dark:hover { border-color: var(--ink); }
.btn-outline-light { background: transparent; color: var(--bg); border: 1px solid #4c5563; }
.btn-outline-light:hover { border-color: var(--amber); color: var(--amber); }
.btn-lg { font-size: 17px; padding: 16px 26px; border-radius: 5px; }
.btn-text { background: none; border: none; border-bottom: 1px solid #a9bccb; padding: 0; cursor: pointer; color: var(--navy); font-weight: 700; font-size: 14.5px; }
.btn-text:hover { color: var(--gold); border-color: var(--gold); }
.btn-block { width: 100%; }

/* Sections */
.section { max-width: var(--max); margin: 0 auto; padding: 64px 24px; }
.section-narrow { max-width: 900px; margin: 0 auto; padding: 56px 24px 70px; }
.section-article { max-width: 820px; margin: 0 auto; padding: 56px 24px 70px; }
.eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin: 0 0 12px; }
.eyebrow-light { color: #f0c887; }
.eyebrow-amber { color: var(--amber); }
h1.page-title { font-size: 52px; line-height: 1.03; font-weight: 700; color: var(--ink); margin: 0 0 16px; }
h2.section-title { font-size: 40px; line-height: 1.05; font-weight: 700; color: var(--ink); margin: 0 0 14px; }
.lead { font-size: 18px; line-height: 1.65; color: var(--text-2); margin: 0 0 10px; max-width: 780px; }

/* Hero (home) */
.hero { background: var(--hero-bg); color: var(--bg); padding: 0; border-bottom: 6px solid var(--amber); }
.hero-inner { max-width: var(--max); margin: 0 auto; padding: 72px 24px 80px; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero h1 { font-size: 64px; line-height: 1.02; font-weight: 700; margin: 0 0 20px; letter-spacing: -0.01em; }
.hero-lead { font-size: 19px; line-height: 1.6; color: #c9c2b7; margin: 0 0 28px; max-width: 560px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.hero-checks { display: flex; flex-wrap: wrap; gap: 26px; font-size: 14.5px; color: #a8a19a; }
.hero-photo { border-radius: 8px; overflow: hidden; aspect-ratio: 4/5; border: 1px solid #3a4553; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Stats */
.stats { background: #fff; border-bottom: 1px solid var(--line); }
.stats-grid { max-width: var(--max); margin: 0 auto; padding: 34px 24px; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-num { font-family: var(--font-display); font-size: 40px; font-weight: 700; line-height: 1; color: var(--ink); }
.stat-label { font-size: 14px; color: var(--text-3); margin-top: 6px; }

/* Cards grid (services teaser) */
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.service-card { background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.service-card:hover { border-color: var(--ink); }
.service-code { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--gold); }
.service-card h3 { font-size: 25px; font-weight: 600; margin: 0; color: var(--ink); }
.service-card p { font-size: 14.5px; line-height: 1.55; color: var(--text-3); margin: 0; }
.service-from { margin-top: auto; font-size: 14px; font-weight: 700; color: var(--ink); padding-top: 10px; }
.btn-row { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

/* Steps box */
.steps-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 38px; }
.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; }
.step { display: flex; flex-direction: column; gap: 10px; border-top: 3px solid var(--amber); padding-top: 16px; }
.step-n { font-family: var(--font-display); font-size: 34px; font-weight: 700; line-height: 1; color: var(--line-3); }
.step h3 { font-size: 23px; font-weight: 600; margin: 0; color: var(--ink); }
.step p { font-size: 14.5px; line-height: 1.6; color: var(--text-3); margin: 0; }

/* Navy promo */
.promo-navy { background: var(--navy); color: #f2efe9; }
.promo-grid { max-width: var(--max); margin: 0 auto; padding: 60px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.promo-grid h2 { font-size: 40px; line-height: 1.05; font-weight: 700; margin: 0 0 16px; }
.promo-grid p { font-size: 17px; line-height: 1.65; color: #d6dee6; margin: 0 0 20px; }
.price-teaser { background: var(--navy-dark); border: 1px solid var(--navy-line); border-radius: 8px; overflow: hidden; }
.price-teaser-row { display: flex; justify-content: space-between; gap: 16px; padding: 15px 22px; border-bottom: 1px solid var(--navy-line); font-size: 15.5px; }
.price-teaser-row span:first-child { color: #e6ecf2; }
.price-teaser-row span:last-child { font-weight: 700; white-space: nowrap; color: #f0c887; }

/* Two column info (brands/areas) */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.two-col h2 { font-size: 36px; line-height: 1.05; font-weight: 700; color: var(--ink); margin: 0 0 16px; }
.two-col p { font-size: 16.5px; line-height: 1.65; color: var(--text-2); margin: 0 0 18px; }
.pill-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { border: 1px solid var(--line-5); background: #fff; border-radius: 20px; padding: 7px 14px; font-size: 14px; color: var(--text); }
.pill-square { border-radius: 4px; }

/* Reviews */
.reviews-band { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review-card { border: 1px solid var(--line); border-radius: 6px; padding: 24px; display: flex; flex-direction: column; gap: 12px; background: #fbfaf8; }
.stars { color: var(--amber); letter-spacing: 2px; font-size: 15px; }
.review-card p { font-size: 15.5px; line-height: 1.65; color: var(--text); margin: 0; }
.review-author { font-size: 13.5px; color: var(--text-4); margin-top: auto; }

/* Blog cards */
.blog-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 26px; flex-wrap: wrap; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; display: flex; flex-direction: column; }
.blog-thumb { height: 140px; overflow: hidden; }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 20px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.blog-date { font-family: var(--font-mono); font-size: 11px; color: var(--gold); letter-spacing: 0.1em; }
.blog-body h3, .blog-body h2 { font-size: 24px; font-weight: 600; margin: 0; color: var(--ink); line-height: 1.15; }
.blog-body p { font-size: 14.5px; line-height: 1.6; color: var(--text-3); margin: 0; }
.blog-grid-3 .blog-thumb { height: 150px; }

/* CTA dark band */
.cta-band { background: var(--ink); color: var(--bg); }
.cta-inner { max-width: var(--max); margin: 0 auto; padding: 56px 24px; display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; }
.cta-inner h2 { font-size: 40px; font-weight: 700; margin: 0 0 10px; line-height: 1.05; }
.cta-inner p { font-size: 17px; color: #b8b1a7; margin: 0; max-width: 620px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Services detail page */
.service-detail-list { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; gap: 18px; padding: 20px 24px 60px; }
.service-detail { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 30px; display: grid; grid-template-columns: 1fr 1.4fr 0.7fr; gap: 30px; }
.service-detail h2 { font-size: 30px; font-weight: 700; margin: 6px 0 10px; color: var(--ink); line-height: 1.1; }
.service-detail p { font-size: 15px; line-height: 1.6; color: var(--text-3); margin: 0; }
.faults-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--text-4); text-transform: uppercase; }
.faults-list { margin: 10px 0 0; padding-left: 18px; display: flex; flex-direction: column; gap: 6px; }
.faults-list li { font-size: 15px; line-height: 1.5; color: var(--text); }
.service-price-col { border-left: 1px solid var(--line-2); padding-left: 24px; display: flex; flex-direction: column; gap: 8px; }
.service-price-col .from { font-family: var(--font-display); font-size: 30px; font-weight: 700; color: var(--ink); line-height: 1; }
.service-price-col .time { font-size: 13.5px; color: var(--text-3); line-height: 1.5; }
.service-price-col .btn { margin-top: auto; font-size: 14.5px; padding: 11px 14px; }

.never-band { background: #fff; border-top: 1px solid var(--line); }
.never-card { border: 1px solid var(--line); border-radius: 6px; padding: 22px; }
.never-card h3 { font-size: 22px; margin: 0 0 8px; color: var(--ink); }
.never-card p { font-size: 15px; line-height: 1.6; color: var(--text-3); margin: 0; }

/* Prices page */
.price-groups { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 16px 24px 40px; max-width: var(--max); margin: 0 auto; }
.price-group { background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.price-group-head { padding: 18px 24px; background: var(--ink); color: var(--bg); }
.price-group-head h2 { font-size: 25px; font-weight: 600; margin: 0; }
.price-group-row { display: flex; justify-content: space-between; gap: 18px; padding: 14px 24px; border-bottom: 1px solid var(--line-2); font-size: 15.5px; }
.price-group-row span:first-child { color: var(--text); }
.price-group-row span:last-child { font-weight: 700; white-space: nowrap; color: var(--ink); }
.price-info-band { background: var(--navy); color: #f2efe9; border-radius: 8px; padding: 34px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; max-width: var(--max); margin: 0 auto 64px; }
.price-info-band h3 { font-size: 24px; margin: 0 0 8px; }
.price-info-band p { font-size: 15px; line-height: 1.6; color: #d6dee6; margin: 0; }

/* Shop */
.shop-filters { max-width: var(--max); margin: 0 auto; padding: 8px 24px 12px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.filter-pill { border: 1px solid var(--line-3); background: #fff; color: var(--text); cursor: pointer; font-size: 14.5px; font-weight: 600; padding: 9px 15px; border-radius: 20px; }
.filter-pill:hover, .filter-pill.active { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.shop-count { margin-left: auto; font-family: var(--font-mono); font-size: 12px; color: var(--text-4); }
.product-grid { max-width: var(--max); margin: 0 auto; padding: 14px 24px 60px; display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.product-card { background: #fff; border: 1px solid var(--line); border-radius: 6px; display: flex; flex-direction: column; overflow: hidden; }
.product-thumb { height: 150px; position: relative; overflow: hidden; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-cat-tag { position: absolute; top: 10px; left: 10px; font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em; background: var(--ink); color: var(--amber); padding: 3px 7px; border-radius: 3px; }
.product-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-body h3 { font-size: 21px; font-weight: 600; margin: 0; color: var(--ink); line-height: 1.2; }
.product-body p { font-size: 13.5px; line-height: 1.5; color: var(--text-3); margin: 0; }
.product-sku { font-family: var(--font-mono); font-size: 11px; color: var(--text-4); }
.product-price-row { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--ink); line-height: 1; }
.btn-add { background: var(--amber); color: var(--ink); border: none; cursor: pointer; font-size: 14px; font-weight: 700; padding: 10px 14px; border-radius: 4px; }
.btn-add:hover { background: var(--ink); color: var(--amber); }
.shop-footer { background: #fff; border-top: 1px solid var(--line); }
.shop-footer-grid { max-width: var(--max); margin: 0 auto; padding: 48px 24px; display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.shop-footer-grid h3 { font-size: 22px; margin: 0 0 8px; color: var(--ink); }
.shop-footer-grid p { font-size: 14.5px; line-height: 1.6; color: var(--text-3); margin: 0; }
.no-products { grid-column: 1 / -1; padding: 40px; text-align: center; color: var(--text-3); border: 1px dashed var(--line-3); border-radius: 8px; }

/* Cart */
.cart-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 26px; align-items: start; }
.cart-lines { background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.cart-line { display: grid; grid-template-columns: 64px 1fr auto auto; gap: 16px; align-items: center; padding: 18px 22px; border-bottom: 1px solid var(--line-2); }
.cart-thumb { width: 64px; height: 64px; border-radius: 4px; background: #efeae1; }
.cart-line h3 { font-size: 21px; font-weight: 600; margin: 0; color: var(--ink); }
.cart-line-meta { font-family: var(--font-mono); font-size: 11px; color: var(--text-4); }
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 32px; height: 32px; border: 1px solid var(--line-3); background: #fff; cursor: pointer; border-radius: 4px; font-size: 17px; color: var(--ink); }
.qty-btn:hover { border-color: var(--ink); }
.qty-val { min-width: 26px; text-align: center; font-weight: 700; font-size: 16px; }
.cart-line-total { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; min-width: 110px; }
.cart-line-total .amount { font-weight: 700; font-size: 16.5px; color: var(--ink); }
.link-remove { background: none; border: none; padding: 0; cursor: pointer; font-size: 13px; color: var(--danger); border-bottom: 1px solid var(--danger-line); }
.cart-summary { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.cart-summary h2 { font-size: 26px; font-weight: 700; margin: 0 0 4px; color: var(--ink); }
.summary-row { display: flex; justify-content: space-between; font-size: 15.5px; color: var(--text); }
.summary-row .val { font-weight: 700; }
.summary-divider { height: 1px; background: var(--line-2); margin: 6px 0; }
.summary-total-row { display: flex; justify-content: space-between; align-items: baseline; }
.summary-total-row .label { font-size: 15.5px; color: var(--text); }
.summary-total-row .amount { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--ink); }
.summary-note { font-size: 13px; line-height: 1.55; color: var(--text-4); margin: 4px 0 0; }
.summary-legal { font-size: 12.5px; line-height: 1.55; color: var(--text-4); margin: 6px 0 0; }
.cart-empty { background: #fff; border: 1px dashed var(--line-3); border-radius: 8px; padding: 46px; text-align: center; }
.cart-empty p { font-size: 17px; color: var(--text-3); margin: 0 0 18px; }
.order-confirm { margin-top: 22px; background: var(--ok-bg); border: 1px solid var(--ok-border); border-radius: 8px; padding: 22px; }
.order-confirm h3 { font-size: 24px; margin: 0 0 8px; color: var(--ok-text); }
.order-confirm p { font-size: 15px; line-height: 1.6; color: var(--ok-text-2); margin: 0; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 44px; align-items: start; padding: 56px 24px 20px; max-width: var(--max); margin: 0 auto; }
.about-grid h1 { font-size: 52px; line-height: 1.03; font-weight: 700; color: var(--ink); margin: 0 0 18px; }
.about-grid p { font-size: 17.5px; line-height: 1.7; color: var(--text-2); margin: 0 0 14px; }
.about-photo { border-radius: 8px; overflow: hidden; aspect-ratio: 3/4; border: 1px solid var(--line-6); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.team-card { background: #fff; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.team-photo { height: 150px; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 18px; }
.team-card-body h3 { font-size: 22px; margin: 0 0 4px; color: var(--ink); }
.team-role { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--gold); margin: 0 0 8px; }
.team-note { font-size: 14px; line-height: 1.55; color: var(--text-3); margin: 0; }
.timeline-band { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.timeline-grid { max-width: var(--max); margin: 0 auto; padding: 52px 24px; display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.timeline-year { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--gold); }
.timeline-grid h3 { font-size: 24px; margin: 6px 0 8px; color: var(--ink); }
.timeline-grid p { font-size: 15px; line-height: 1.6; color: var(--text-3); margin: 0; }

/* Article */
.article-back { background: none; border: none; padding: 0; cursor: pointer; color: var(--navy); font-weight: 600; font-size: 14.5px; margin-bottom: 22px; border-bottom: 1px solid #a9bccb; display: inline-block; }
.article-meta { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--gold); margin: 0 0 12px; }
.article-title { font-size: 46px; line-height: 1.06; font-weight: 700; color: var(--ink); margin: 0 0 20px; }
.article-hero { border-radius: 8px; overflow: hidden; height: 280px; margin-bottom: 28px; border: 1px solid var(--line-6); }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-body p { font-size: 18px; line-height: 1.75; color: var(--text); margin: 0 0 18px; }
.article-body h2 { font-size: 30px; font-weight: 700; color: var(--ink); margin: 30px 0 12px; }
.article-callout { background: var(--hero-bg); color: #f2efe9; border-radius: 8px; padding: 28px; margin: 30px 0; }
.article-callout h2 { font-size: 28px; font-weight: 700; margin: 0 0 10px; color: #f2efe9; }
.article-callout p { font-size: 16.5px; line-height: 1.7; color: #d6dee6; margin: 0; }
.article-footer { border-top: 1px solid var(--line); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between; }
.article-footer span { font-size: 16px; color: var(--text-2); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.faq-item summary { list-style: none; width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 18px 22px; display: flex; justify-content: space-between; gap: 16px; align-items: center; font-family: var(--font-display); font-size: 23px; font-weight: 600; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: #faf8f5; }
.faq-item summary::after { content: '+'; font-size: 20px; color: var(--gold); flex-shrink: 0; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item .faq-answer { font-size: 16px; line-height: 1.7; color: var(--text-2); margin: 0; padding: 0 22px 20px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; padding: 56px 24px 70px; max-width: var(--max); margin: 0 auto; }
.contact-grid h1 { font-size: 50px; line-height: 1.03; font-weight: 700; color: var(--ink); margin: 0 0 18px; }
.contact-grid > div > p.lead-contact { font-size: 17.5px; line-height: 1.7; color: var(--text-2); margin: 0 0 24px; max-width: none; }
.contact-info-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 24px; display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.info-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--text-4); text-transform: uppercase; display: block; }
.info-value { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--ink); }
.info-value-sm { font-size: 17px; color: var(--text); }
.info-sub { font-size: 15px; color: var(--text-3); }
.contact-map { border-radius: 8px; min-height: 180px; border: 1px solid var(--line-6); overflow: hidden; background: repeating-linear-gradient(135deg, #e9e4da 0 10px, #e2dcd1 10px 20px); display: flex; align-items: center; padding: 26px; }
.contact-map p { font-size: 15px; line-height: 1.6; color: var(--text); margin: 0 0 14px; }
.contact-map strong { color: var(--ink); }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 28px; }
.form-card h2 { font-size: 30px; font-weight: 700; margin: 0 0 6px; color: var(--ink); }
.form-card > p { font-size: 15px; line-height: 1.6; color: var(--text-3); margin: 0 0 20px; }
.field-stack { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 600; color: var(--text); }
.field input[type="text"], .field input[type="tel"], .field input[type="email"], .field textarea {
  border: 1px solid var(--line-4); border-radius: 4px; padding: 12px; font-size: 15.5px; font-family: inherit; background: #fbfaf8; width: 100%;
}
.field textarea { resize: vertical; }
.field-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; line-height: 1.55; color: var(--text-3); font-weight: 400; }
.field-consent input { margin-top: 3px; }
.form-msg-ok { background: var(--ok-bg); border: 1px solid var(--ok-border); border-radius: 6px; padding: 16px; font-size: 15px; line-height: 1.6; color: #33502f; }
.form-msg-err { background: var(--err-bg); border: 1px solid var(--err-border); border-radius: 6px; padding: 16px; font-size: 15px; line-height: 1.6; color: var(--err-text); }
.honeypot { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* Legal pages */
.legal h1 { font-size: 48px; line-height: 1.04; font-weight: 700; color: var(--ink); margin: 0 0 20px; }
.legal .version { font-family: var(--font-mono); font-size: 12px; color: var(--text-4); margin: 0 0 26px; }
.legal h2 { font-size: 28px; font-weight: 700; color: var(--ink); margin: 24px 0 10px; }
.legal p { font-size: 16.5px; line-height: 1.75; color: var(--text); margin: 0 0 14px; }
.legal ul { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; margin: 0 0 18px; }
.legal ul li { font-size: 16.5px; line-height: 1.65; color: var(--text); }
.data-table { border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: #fff; margin-bottom: 16px; }
.data-table-head { display: grid; background: var(--ink); color: var(--bg); font-size: 13px; font-family: var(--font-mono); letter-spacing: 0.06em; }
.data-table-head span, .data-table-row span { padding: 12px 16px; }
.data-table-row { display: grid; border-bottom: 1px solid var(--line-2); font-size: 14.5px; line-height: 1.55; color: var(--text); }
.data-table-row span { padding: 14px 16px; }
.cols-3 { grid-template-columns: 1fr 1fr 1fr; }
.cols-4 { grid-template-columns: 0.8fr 1.2fr 0.6fr 0.6fr; }
.cols-2 { grid-template-columns: 0.7fr 1.3fr; }
.impressum-caption { font-size: 15px; line-height: 1.7; color: var(--text-3); margin: 22px 0 0; }

/* Footer */
.site-footer { background: var(--footer-bg); color: var(--footer-text); margin-top: auto; }
.footer-grid { max-width: var(--max); margin: 0 auto; padding: 56px 24px 28px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 34px; }
.footer-brand-row { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; }
.footer-mark { width: 38px; height: 38px; background: var(--amber); color: var(--ink); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 20px; border-radius: 5px; }
.footer-brand-name { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--bg); letter-spacing: 0.01em; }
.footer-col p { font-size: 14.5px; line-height: 1.7; margin: 0 0 14px; max-width: 330px; }
.footer-addr { font-size: 14.5px; line-height: 1.7; margin: 0; color: var(--footer-text-3); }
.footer-col-title { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); margin: 0 0 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; align-items: flex-start; }
.footer-link { background: none; border: none; border-bottom: none; padding: 0; cursor: pointer; color: var(--footer-text); font-size: 14.5px; }
.footer-link:hover { color: var(--bg); }
.footer-bottom-wrap { border-top: 1px solid #2a2d34; }
.footer-bottom { max-width: var(--max); margin: 0 auto; padding: 18px 24px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; font-size: 13px; color: var(--footer-text-2); }

/* Cookie banner */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: #fff; border-top: 2px solid var(--ink); box-shadow: 0 -8px 30px rgba(20,22,26,0.14); }
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner { max-width: var(--max); margin: 0 auto; padding: 20px 24px; display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.cookie-banner-inner h3 { font-size: 22px; font-weight: 700; margin: 0 0 6px; color: var(--ink); }
.cookie-banner-inner > div:first-child { max-width: 660px; }
.cookie-banner-inner p { font-size: 14.5px; line-height: 1.6; color: var(--text-2); margin: 0; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-cookie-reject { background: #fff; border: 1px solid var(--line-3); cursor: pointer; font-size: 15px; font-weight: 600; padding: 12px 18px; border-radius: 4px; color: var(--text); }
.btn-cookie-reject:hover { border-color: var(--ink); }
.btn-cookie-accept { background: var(--ink); border: none; cursor: pointer; font-size: 15px; font-weight: 700; padding: 12px 20px; border-radius: 4px; color: var(--bg); }
.btn-cookie-accept:hover { background: var(--amber); color: var(--ink); }

/* Responsive */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 46px; }
  .grid-4, .stats-grid { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .two-col, .promo-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .price-groups, .price-info-band, .shop-footer-grid, .team-grid, .timeline-grid, .product-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-price-col { border-left: none; padding-left: 0; border-top: 1px solid var(--line-2); padding-top: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  h1.page-title { font-size: 36px; }
  h2.section-title { font-size: 30px; }
  .hero h1 { font-size: 36px; }
  .hero-inner { padding: 48px 20px 56px; }
  .grid-4, .grid-3, .stats-grid, .price-groups, .price-info-band, .shop-footer-grid, .team-grid, .timeline-grid, .product-grid, .cart-grid { grid-template-columns: 1fr; }
  .cart-line { grid-template-columns: 48px 1fr; grid-template-areas: "thumb name" "thumb qty" "thumb total"; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .main-nav { gap: 2px; }
}
