/* Domvero — site stylesheet. Self-contained, no external fonts/CDN. */

:root {
  --bg: #faf7f2;
  --text: #16130f;
  --text-muted: #4a4339;
  --text-soft: #5c5549;
  --text-softer: #3d372e;
  --border: #e5ded2;
  --border-soft: #f1ece3;
  --card-bg: #fff;
  --mono-text: #8a8173;
  --mono-text-2: #6b6459;

  --accent: #c1602f;
  --accent: oklch(0.60 0.13 42);
  --accent-strong: #a84f27;
  --accent-strong: oklch(0.52 0.12 42);
  --accent-light: #d98a52;
  --accent-light: oklch(0.72 0.13 55);
  --accent-lighter: #e0a374;
  --accent-lighter: oklch(0.78 0.11 60);

  --dark-bg: #1c1814;
  --dark-bg-2: #241e18;
  --dark-border: #33291f;
  --dark-text: #f3ece1;
  --dark-text-soft: #c9bfae;
  --dark-text-softer: #bdb3a2;
  --dark-text-mono: #8d8474;

  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --font-heading: -apple-system, "Segoe UI", "Helvetica Neue", Roboto, Arial, sans-serif;
  --font-body: -apple-system, "Segoe UI", "Helvetica Neue", Roboto, Arial, sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", Consolas, "SFMono-Regular", Menlo, monospace;
}

[hidden] { display: none !important; }
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-strong); text-decoration: none; }
a:hover { color: var(--text); }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}
p { margin: 0; }
ul { margin: 0; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }
button { cursor: pointer; }

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

.page-body { min-height: 100vh; display: flex; flex-direction: column; }
.page-main { flex: 1; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px; padding: 15px 26px; font-weight: 600; font-size: 16px;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--text); color: #fff; }
.btn-dark { background: var(--text); color: #fff; }
.btn-dark:hover { background: var(--accent); color: #fff; }
.btn-outline { background: #fff; color: var(--text); border-color: #d9d0c1; }
.btn-outline:hover { border-color: var(--text); color: var(--text); }
.btn-outline-dark { background: none; color: var(--dark-text); border-color: #4a4034; }
.btn-outline-dark:hover { border-color: var(--dark-text); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 18px; font-size: 14px; border-radius: 10px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-row { display: flex; align-items: center; gap: 28px; padding: 14px 24px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--text); }
.brand-mark {
  width: 30px; height: 30px; border-radius: 8px; background: var(--accent);
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-family: var(--font-heading); font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.brand-name { font-family: var(--font-heading); font-weight: 700; font-size: 20px; letter-spacing: -0.03em; color: var(--text); }
.footer-brand-name { color: #fff; font-size: 19px; }

.site-nav { display: flex; flex-wrap: wrap; gap: 20px; font-size: 15px; font-weight: 500; margin-left: 8px; }
.nav-link { color: var(--text-muted); }
.nav-link:hover, .nav-link.is-active { color: var(--text); }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.header-phone { font-family: var(--font-mono); font-size: 14px; color: var(--text); white-space: nowrap; }
.header-phone:hover { color: var(--accent); }
.btn-header { padding: 10px 16px; font-size: 14px; }

.cart-btn {
  position: relative; border: 1px solid #d9d0c1; background: #fff; border-radius: 10px;
  padding: 9px 14px; font-size: 14px; font-weight: 600; color: var(--text);
}
.cart-btn:hover { border-color: var(--text); }
.cart-count { margin-left: 6px; font-family: var(--font-mono); color: var(--accent-strong); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 4px;
  width: 38px; height: 34px; border: 1px solid var(--border); border-radius: 8px; background: #fff;
  margin-left: auto;
}
.nav-toggle span { display: block; height: 2px; background: var(--text); border-radius: 2px; }

/* Eyebrow / section headers */
.eyebrow { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--accent-strong); text-transform: uppercase; }

/* Hero */
.hero-section { padding: 64px 24px 56px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; border: 1px solid #e0d7c8; background: #fff;
  border-radius: 999px; padding: 6px 14px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em;
  color: var(--mono-text-2); text-transform: uppercase;
}
.hero-title { font-size: 60px; line-height: 1.02; font-weight: 700; margin: 22px 0 20px; text-wrap: balance; }
.hero-lead { font-size: 19px; line-height: 1.6; color: var(--text-muted); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--border); }
.stat-num { font-family: var(--font-heading); font-weight: 700; font-size: 30px; letter-spacing: -0.03em; }
.stat-label { font-size: 14px; color: var(--mono-text-2); line-height: 1.4; margin-top: 4px; }

.hero-media { display: grid; gap: 14px; }
.photo-frame { position: relative; border-radius: 18px; overflow: hidden; background: var(--border-soft); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-frame.h-340 img, .photo-frame.h-340 { height: 340px; }
.photo-frame.h-170 img, .photo-frame.h-170 { height: 170px; }
.photo-frame.h-200 img, .photo-frame.h-200 { height: 200px; }
.photo-frame.h-150 img, .photo-frame.h-150 { height: 150px; }
.photo-frame.h-160 img, .photo-frame.h-160 { height: 160px; }
.photo-frame.h-240 img, .photo-frame.h-240 { height: 240px; }
.photo-frame.h-220 img, .photo-frame.h-220 { height: 220px; }
.photo-frame.h-280 img, .photo-frame.h-280 { height: 280px; }
.photo-frame.h-400 img, .photo-frame.h-400 { height: 400px; }
.photo-caption {
  position: absolute; left: 14px; bottom: 14px; font-family: var(--font-mono); font-size: 12px;
  background: rgba(250, 247, 242, 0.92); border: 1px solid #ded4c4; border-radius: 6px; padding: 6px 10px; color: var(--mono-text-2);
}
.hero-media-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.guarantee-card {
  height: 170px; border-radius: 18px; background: var(--dark-bg); color: var(--dark-text);
  padding: 18px; display: flex; flex-direction: column; justify-content: space-between;
}
.guarantee-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--dark-text-mono); }
.guarantee-num { font-family: var(--font-heading); font-weight: 700; font-size: 34px; letter-spacing: -0.03em; }
.guarantee-desc { font-size: 13px; color: var(--dark-text-soft); line-height: 1.4; margin-top: 4px; }

/* Trust bar */
.trustbar { background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 22px 24px; }
.trustbar-row {
  display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em; color: var(--mono-text); text-transform: uppercase;
}

/* Generic section spacing */
.section { padding: 72px 24px; }
.section-tight { padding: 56px 24px 0; }
.section-tight-bottom { padding: 34px 24px 72px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section-title { font-size: 40px; font-weight: 700; margin-top: 10px; }
.section-link { font-weight: 600; }
.page-h1 { font-size: 46px; font-weight: 700; margin-top: 12px; }
.page-lead { font-size: 18px; line-height: 1.65; color: var(--text-muted); max-width: 760px; margin-top: 16px; }

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

.card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius-md);
}
.service-card { padding: 24px; display: flex; flex-direction: column; gap: 10px; transition: border-color .15s ease; }
.service-card:hover { border-color: var(--text); }
.service-num { font-family: var(--font-mono); font-size: 12px; color: #a99e8c; }
.service-title { font-size: 21px; font-weight: 600; }
.service-text { font-size: 15px; line-height: 1.6; color: var(--text-soft); }
.service-price { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border-soft); font-family: var(--font-mono); font-size: 13px; color: var(--text); }

.service-full { padding: 28px; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 32px; margin-bottom: 16px; }
.service-full h2 { font-size: 26px; font-weight: 600; margin-top: 10px; }
.service-full .service-price-box {
  margin-top: 16px; font-family: var(--font-mono); font-size: 13px; background: var(--bg);
  border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; display: inline-block;
}
.included-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--mono-text); text-transform: uppercase; }
.included-list { margin: 12px 0 0; padding-left: 18px; display: grid; gap: 8px; font-size: 15px; line-height: 1.55; color: var(--text-softer); }

/* Dark process section */
.dark-section { background: var(--dark-bg); color: var(--dark-text); padding: 72px 24px; }
.dark-section h1, .dark-section h2 { color: #fff; }
.dark-section .page-lead, .dark-section .section-lead { color: var(--dark-text-soft); }
.step-card { border: 1px solid var(--dark-border); border-radius: var(--radius-md); padding: 22px; background: var(--dark-bg-2); }
.step-n { font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--accent-light); }
.step-card h3 { font-size: 19px; font-weight: 600; color: #fff; margin-top: 10px; }
.step-card p { font-size: 15px; line-height: 1.6; color: var(--dark-text-softer); margin-top: 8px; }
.step-time { font-family: var(--font-mono); font-size: 12px; color: var(--dark-text-mono); margin-top: 12px; }

.step-card-light { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; display: grid; grid-template-columns: 80px 1fr 180px; gap: 24px; align-items: start; margin-bottom: 14px; }
.step-n-lg { font-family: var(--font-heading); font-weight: 700; font-size: 28px; color: var(--accent); }
.step-card-light h2 { font-size: 22px; font-weight: 600; }
.step-card-light p { font-size: 15px; line-height: 1.65; color: var(--text-soft); margin-top: 8px; }
.step-time-right { font-family: var(--font-mono); font-size: 13px; color: var(--mono-text-2); text-align: right; }

/* Project cards */
.project-card { overflow: hidden; }
.project-card .card-body { padding: 20px; }
.project-card.project-card-lg .card-body { padding: 24px; }
.project-card h3 { font-size: 19px; font-weight: 600; }
.project-card h2 { font-size: 22px; font-weight: 600; }
.project-card p { font-size: 15px; line-height: 1.6; color: var(--text-soft); margin-top: 8px; }
.project-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag {
  font-family: var(--font-mono); font-size: 12px; color: var(--mono-text); background: var(--bg);
  border: 1px solid var(--border); border-radius: 8px; padding: 6px 10px;
}
.project-tags-inline { display: flex; gap: 16px; margin-top: 14px; font-family: var(--font-mono); font-size: 12px; color: var(--mono-text); }

/* Reviews */
.reviews-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin: 0 24px 72px; max-width: 1192px; margin-left: auto; margin-right: auto; }
.reviews-card h2 { font-size: 34px; font-weight: 700; }
.reviews-card > div:first-child p { font-size: 16px; line-height: 1.6; color: var(--text-soft); margin-top: 12px; }
.reviews-card > div:first-child a { display: inline-block; margin-top: 18px; font-weight: 600; }
.review-item { border: 1px solid var(--border); border-radius: 14px; padding: 18px; background: var(--bg); }
.review-item p { font-size: 15px; line-height: 1.6; color: var(--text-softer); }
.review-who { font-family: var(--font-mono); font-size: 12px; color: var(--mono-text); margin-top: 10px; }
.review-list { display: grid; gap: 14px; }

/* CTA banner */
.cta-banner-wrap { padding: 0 24px 80px; }
.cta-banner {
  max-width: 1240px; margin: 0 auto; background: var(--accent); border-radius: var(--radius-lg); padding: 44px;
  display: flex; flex-wrap: wrap; gap: 28px; align-items: center; justify-content: space-between; color: #fff;
}
.cta-banner h2 { font-size: 34px; font-weight: 700; color: #fff; max-width: 620px; }
.cta-banner p { font-size: 17px; line-height: 1.6; margin-top: 12px; color: #ffeee3; max-width: 620px; }
.cta-banner .btn { background: var(--text); color: #fff; }
.cta-banner .btn:hover { background: #fff; color: var(--text); }

/* Pricing page */
.pricing-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: start; }
.price-table { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.price-table-head { padding: 22px 24px; border-bottom: 1px solid var(--border); }
.price-table-head h2 { font-size: 24px; font-weight: 600; }
.price-row { display: flex; gap: 16px; justify-content: space-between; padding: 14px 24px; border-bottom: 1px solid var(--border-soft); }
.price-row-name { font-size: 16px; font-weight: 500; }
.price-row-note { font-size: 13px; color: var(--mono-text); margin-top: 2px; }
.price-row-value { font-family: var(--font-mono); font-size: 15px; white-space: nowrap; }
.price-table-foot { padding: 16px 24px; font-size: 13px; color: var(--mono-text); }

.calc-card { background: var(--dark-bg); color: var(--dark-text); border-radius: var(--radius-lg); padding: 26px; position: sticky; top: 88px; }
.calc-card h2 { font-size: 24px; font-weight: 600; color: #fff; }
.calc-card > p { font-size: 14px; line-height: 1.55; color: var(--dark-text-soft); margin-top: 8px; }
.calc-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--dark-text-soft); }
.calc-block { margin-top: 22px; }
.calc-block + .calc-block { margin-top: 18px; }
input[type="range"] { width: 100%; margin-top: 10px; accent-color: var(--accent-light); }
.level-list { display: grid; gap: 8px; margin-top: 10px; }
.level-btn {
  text-align: left; border: 1px solid var(--dark-border); background: var(--dark-bg-2); color: var(--dark-text);
  border-radius: 12px; padding: 12px 14px; display: flex; justify-content: space-between; gap: 12px; width: 100%;
}
.level-btn.is-active { background: var(--accent); border-color: var(--accent); }
.level-name { font-weight: 600; font-size: 15px; }
.level-rate { font-family: var(--font-mono); font-size: 13px; color: var(--dark-text-soft); }
.extras-row { margin-top: 18px; display: flex; gap: 8px; }
.extra-btn {
  flex: 1; border: 1px solid var(--dark-border); background: var(--dark-bg-2); color: var(--dark-text);
  border-radius: 12px; padding: 10px 12px; font-size: 14px; font-weight: 500;
}
.extra-btn.is-active { background: var(--accent); border-color: var(--accent); }
.calc-result { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--dark-border); }
.calc-result-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--dark-text-mono); text-transform: uppercase; }
.calc-result-value { font-family: var(--font-heading); font-weight: 700; font-size: 34px; color: #fff; letter-spacing: -0.03em; margin-top: 6px; }
.calc-result-weeks { font-size: 13px; color: var(--dark-text-softer); margin-top: 6px; }
.calc-cta { display: block; text-align: center; margin-top: 18px; }

/* Shop */
.shop-head { display: flex; flex-wrap: wrap; gap: 24px; justify-content: space-between; align-items: flex-end; }
.shop-side-note { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 16px 20px; font-size: 14px; line-height: 1.5; color: var(--text-soft); max-width: 300px; }
.shop-side-note strong { color: var(--text); }
.shop-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn { border: 1px solid #ded4c4; background: #fff; color: var(--text); border-radius: 999px; padding: 9px 16px; font-size: 14px; font-weight: 600; }
.filter-btn.is-active { border-color: var(--text); background: var(--text); color: #fff; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 24px; }
.product-card { display: flex; flex-direction: column; overflow: hidden; }
.product-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-family: var(--font-mono); font-size: 11px; color: #a99e8c; }
.product-name { font-size: 17px; font-weight: 600; line-height: 1.3; }
.product-text { font-size: 14px; line-height: 1.55; color: var(--text-soft); }
.product-foot { margin-top: auto; padding-top: 12px; }
.product-price { font-family: var(--font-heading); font-weight: 700; font-size: 20px; }
.product-stock { font-size: 12px; color: var(--mono-text); }
.product-add { width: 100%; margin-top: 12px; }
.shop-info-grid { margin-top: 40px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.shop-info-grid .footer-heading { margin-bottom: 0; }
.shop-info-grid p { font-size: 15px; line-height: 1.6; color: var(--text-softer); margin-top: 8px; }

/* Blog */
.post-card { display: flex; flex-direction: column; overflow: hidden; }
.post-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-meta { font-family: var(--font-mono); font-size: 11px; color: #a99e8c; }
.post-title { font-size: 20px; font-weight: 600; line-height: 1.3; }
.post-lead { font-size: 15px; line-height: 1.6; color: var(--text-soft); }
.post-more { margin-top: auto; font-weight: 600; padding-top: 10px; }

.article-wrap { padding: 56px 24px 72px; }
.article-inner { max-width: 760px; margin: 0 auto; }
.article-back { font-family: var(--font-mono); font-size: 13px; }
.article-title { font-size: 42px; font-weight: 700; margin-top: 18px; }
.article-meta { font-family: var(--font-mono); font-size: 13px; color: var(--mono-text); margin-top: 12px; }
.article-hero { margin: 24px 0 8px; height: 280px; }
.article-lead { font-size: 19px; line-height: 1.65; color: var(--text-softer); margin-top: 20px; }
.article-block { margin-top: 26px; }
.article-block h2 { font-size: 26px; font-weight: 600; margin-bottom: 10px; }
.article-block p { font-size: 17px; line-height: 1.7; color: #413a31; }
.article-cta { margin-top: 36px; background: var(--dark-bg); color: var(--dark-text); border-radius: var(--radius-lg); padding: 28px; }
.article-cta h3 { font-size: 22px; font-weight: 600; color: #fff; }
.article-cta p { font-size: 15px; line-height: 1.6; color: var(--dark-text-soft); margin-top: 8px; }
.article-cta .btn { display: inline-block; margin-top: 16px; }

/* About */
.about-hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.about-hero p { font-size: 18px; line-height: 1.65; color: var(--text-muted); margin-top: 16px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px; }
.value-card h3 { font-size: 19px; font-weight: 600; }
.value-card p { font-size: 15px; line-height: 1.6; color: var(--text-soft); margin-top: 8px; }
.team-section { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; margin-top: 24px; }
.team-section h2 { font-size: 26px; font-weight: 600; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 20px; }
.team-member-name { font-weight: 600; font-size: 17px; margin-top: 12px; }
.team-member-role { font-size: 14px; color: var(--mono-text-2); margin-top: 2px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.contact-list { display: grid; gap: 14px; margin-top: 26px; }
.contact-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.contact-item-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--mono-text); text-transform: uppercase; }
.contact-item-value { font-size: 17px; margin-top: 6px; color: var(--text); }
.contact-map { margin-top: 18px; position: relative; }
.contact-map .photo-caption a { color: var(--mono-text-2); text-decoration: underline; }

.contact-form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; position: sticky; top: 88px; }
.contact-form-card h2 { font-size: 24px; font-weight: 600; }
.form-grid { display: grid; gap: 14px; margin-top: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label.field { display: grid; gap: 6px; font-size: 14px; color: var(--text-soft); }
input[type="text"], input[type="tel"], input[type="email"], input[type="number"], select, textarea {
  border: 1px solid #ded4c4; border-radius: 10px; padding: 12px; background: var(--bg); color: var(--text); width: 100%;
}
textarea { resize: vertical; }
.checkbox-row { display: flex; gap: 10px; font-size: 13px; line-height: 1.5; color: var(--text-soft); align-items: flex-start; }
.checkbox-row input { margin-top: 3px; }
.form-fineprint { font-size: 12px; color: var(--mono-text); line-height: 1.5; }
.form-success { padding: 28px 0; text-align: center; }
.form-success h2 { font-size: 26px; font-weight: 600; }
.form-success p { font-size: 16px; line-height: 1.6; color: var(--text-soft); margin-top: 10px; }
.form-error { font-size: 13px; color: #a13a2b; background: #fbe9e4; border: 1px solid #f0c8bb; border-radius: 10px; padding: 10px 12px; }

/* Legal */
.legal-grid { display: grid; grid-template-columns: 250px 1fr; gap: 40px; align-items: start; }
.legal-nav { display: grid; gap: 6px; position: sticky; top: 88px; }
.legal-nav-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--mono-text); text-transform: uppercase; margin-bottom: 8px; }
.legal-nav a { font-size: 15px; font-weight: 500; padding: 10px 12px; border-radius: 10px; color: var(--text-softer); }
.legal-nav a.is-active { background: var(--text); color: #fff; }
.legal-nav a:hover:not(.is-active) { background: var(--border-soft); }
.legal-doc { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; max-width: 820px; }
.legal-doc h1 { font-size: 36px; font-weight: 700; }
.legal-doc-updated { font-family: var(--font-mono); font-size: 13px; color: var(--mono-text); margin-top: 10px; }
.legal-section { margin-top: 24px; }
.legal-section h2 { font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.legal-section p { font-size: 16px; line-height: 1.7; color: var(--text-softer); }

/* FAQ / payments (potek dela) */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.panel { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; }
.panel h2 { font-size: 24px; font-weight: 600; }
.payment-row { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-soft); }
.payment-list { display: grid; gap: 12px; margin-top: 16px; }
.panel-note { font-size: 14px; line-height: 1.6; color: var(--mono-text-2); margin-top: 14px; }
.faq-list { display: grid; gap: 14px; margin-top: 16px; }
.faq-item { border-bottom: 1px solid var(--border-soft); padding-bottom: 14px; }
.faq-q { font-weight: 600; font-size: 16px; }
.faq-a { font-size: 15px; line-height: 1.6; color: var(--text-soft); margin-top: 6px; }

/* Cart drawer */
.cart-overlay { position: fixed; inset: 0; z-index: 60; display: flex; justify-content: flex-end; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(22, 19, 15, 0.45); }
.cart-drawer {
  position: relative; width: 440px; max-width: 100%; height: 100%; background: var(--bg);
  border-left: 1px solid var(--border); display: flex; flex-direction: column;
  animation: dvin .2s ease;
}
@keyframes dvin { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.cart-drawer-head { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cart-drawer-head h2 { font-size: 22px; font-weight: 600; }
.icon-btn { border: 1px solid #ded4c4; background: #fff; border-radius: 10px; width: 34px; height: 34px; font-size: 16px; }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 18px 24px; display: grid; gap: 14px; align-content: start; }
.cart-empty { padding: 40px 0; text-align: center; }
.cart-empty p { font-size: 16px; color: var(--text-soft); line-height: 1.6; }
.cart-empty .btn { display: inline-block; margin-top: 16px; }
.cart-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 14px; display: grid; grid-template-columns: 64px 1fr; gap: 14px; }
.cart-item-thumb { height: 64px; border-radius: 10px; overflow: hidden; background: var(--border-soft); }
.cart-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-name { font-size: 15px; font-weight: 600; line-height: 1.3; }
.cart-item-price { font-size: 13px; color: var(--mono-text); margin-top: 2px; }
.cart-item-row { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.qty-controls { display: flex; align-items: center; gap: 8px; }
.qty-btn { border: 1px solid #ded4c4; background: var(--bg); border-radius: 8px; width: 30px; height: 30px; }
.qty-val { font-family: var(--font-mono); font-size: 15px; min-width: 22px; text-align: center; }
.cart-item-right { display: flex; align-items: center; gap: 12px; }
.cart-item-line { font-family: var(--font-heading); font-weight: 700; font-size: 16px; }
.cart-item-remove { border: none; background: none; color: var(--mono-text); font-size: 13px; text-decoration: underline; padding: 0; }
.cart-drawer-foot { border-top: 1px solid var(--border); padding: 20px 24px; background: #fff; }
.cart-totals { display: grid; gap: 8px; font-size: 15px; }
.cart-total-row { display: flex; justify-content: space-between; color: var(--text-soft); }
.cart-total-final { align-items: baseline; padding-top: 10px; margin-top: 4px; border-top: 1px solid var(--border-soft); }
.cart-total-final span:first-child { font-weight: 600; font-size: 17px; color: var(--text); }
.cart-total-final span:last-child { font-family: var(--font-heading); font-weight: 700; font-size: 26px; color: var(--text); }
.cart-fineprint { font-size: 12px; color: var(--mono-text); line-height: 1.5; margin-top: 10px; }

/* Cookie bar */
.cookie-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; padding: 16px 24px; background: var(--dark-bg); color: #e8e0d3; }
.cookie-bar-row { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
.cookie-bar p { font-size: 14px; line-height: 1.6; max-width: 720px; }
.cookie-bar a { color: var(--accent-lighter); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.link-btn { border: none; background: none; color: var(--dark-text-mono); font: inherit; padding: 0; text-decoration: none; cursor: pointer; }
.link-btn:hover { color: var(--dark-text); }

.footer-heading { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--dark-text-mono); text-transform: uppercase; margin-bottom: 4px; }

/* Footer */
.site-footer { background: var(--dark-bg); color: var(--dark-text-soft); padding: 56px 24px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; }
.footer-blurb { font-size: 14px; line-height: 1.65; margin-top: 14px; max-width: 320px; }
.footer-legal-lines { font-family: var(--font-mono); font-size: 12px; line-height: 1.8; margin-top: 16px; color: var(--dark-text-mono); }
.footer-col { display: grid; gap: 9px; align-content: start; font-size: 14px; }
.footer-col a { color: var(--dark-text-soft); }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--dark-border); display: flex; flex-wrap: wrap;
  gap: 16px; justify-content: space-between; font-size: 13px; color: var(--dark-text-mono);
}

/* Utilities */
.center-note { font-size: 13px; color: var(--mono-text); }
.mt-0 { margin-top: 0; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--text); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 100;
}
.skip-link:focus { left: 0; }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid, .about-hero, .pricing-grid, .two-col, .contact-grid, .legal-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .shop-info-grid { grid-template-columns: 1fr 1fr; }
  .service-full { grid-template-columns: 1fr; }
  .calc-card { position: static; }
  .contact-form-card { position: static; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; }
  .hero-title { font-size: 44px; }
}

@media (max-width: 760px) {
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%; background: var(--bg);
    border-bottom: 1px solid var(--border); flex-direction: column; gap: 0; padding: 8px 24px 16px; margin-left: 0;
  }
  .site-nav.is-open { display: flex; }
  .site-nav .nav-link { padding: 10px 0; border-bottom: 1px solid var(--border-soft); }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
  .btn-header { display: none; }
  .header-row { flex-wrap: wrap; position: relative; }
  .hero-title { font-size: 34px; }
  .hero-lead { font-size: 17px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .values-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .shop-info-grid { grid-template-columns: 1fr; }
  .reviews-card { grid-template-columns: 1fr; padding: 28px; }
  .step-card-light { grid-template-columns: 1fr; }
  .step-time-right { text-align: left; }
  .form-row-2 { grid-template-columns: 1fr; }
  .cta-banner h2 { font-size: 26px; }
  .section-title, .page-h1 { font-size: 30px; }
  .cart-drawer { width: 100%; }
  .trustbar-row { justify-content: flex-start; gap: 16px 24px; }
}
