/* Mojster Keramike d.o.o. — site stylesheet
   Design tokens ported 1:1 from the Claude Design prototype (Mojster Keramike.dc.html) */

@import url("fonts.css");

:root {
  --ink: #1B1917;
  --ink-2: #33302C;
  --paper: #F6F2ED;
  --paper-2: #FBF8F4;
  --card-border: #E9E1D8;
  --line: #E3DBD1;
  --line-2: #F1EBE3;
  --muted: #5C544C;
  --muted-2: #6B635C;
  --muted-3: #8A8178;
  --rust: #B5502E;
  --rust-dark: #8E3C21;
  --teal: #2E5A57;
  --teal-ink: #EAF2F0;
  --near-black: #141311;
  --input-bg: #FBF8F4;
  --input-border: #DCD3C8;
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: Manrope, system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}
img { max-width: 100%; display: block; }
a { color: var(--rust); text-decoration: none; }
a:hover { color: var(--rust-dark); text-decoration: underline; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }
button { border: none; background: none; cursor: pointer; }
ul { margin: 0; }
h1, h2, h3 { font-family: var(--font-display); }

@keyframes slidein { from { transform: translateX(30px); opacity: 0 } to { transform: translateX(0); opacity: 1 } }
@keyframes fadeup { from { transform: translateY(10px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: #1B1917; color: #fff;
  padding: 10px 16px; z-index: 100; border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Promo bar ---------- */
.promo-bar {
  background: var(--teal); color: var(--teal-ink); font-size: 13px; letter-spacing: 0.02em;
  text-align: center; padding: 9px 20px;
}
.promo-bar a { color: #fff; text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40; background: rgba(246,242,237,0.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1240px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 18px;
}
.brand { display: flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 3px;
  background-image: linear-gradient(45deg,#B5502E 25%,#2E5A57 25%,#2E5A57 50%,#B5502E 50%,#B5502E 75%,#2E5A57 75%);
  background-size: 17px 17px;
}
.brand-text { line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-size: 20px; }
.brand-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.14em; color: var(--muted-2); text-transform: uppercase; }
.main-nav { display: flex; gap: 13px; margin-left: auto; flex-wrap: wrap; font-size: 13.5px; font-weight: 500; }
.main-nav a { color: var(--ink); padding: 6px 0; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a.active { color: var(--ink); text-decoration: none; border-bottom-color: var(--rust); }
.header-actions { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.cart-btn {
  position: relative; cursor: pointer; border: 1px solid #D8CFC4; background: #fff;
  border-radius: 999px; padding: 9px 14px; font-size: 13.5px; font-weight: 600; color: var(--ink); white-space: nowrap;
}
.cart-btn:hover { border-color: var(--rust); text-decoration: none; }
.phone-btn {
  background: var(--rust); color: #fff; border-radius: 999px; padding: 10px 16px;
  font-size: 13.5px; font-weight: 600; text-decoration: none; white-space: nowrap;
}
.phone-btn:hover { background: var(--rust-dark); text-decoration: none; }
.nav-toggle { display: none; }

/* ---------- Buttons / chips ---------- */
.btn { display: inline-block; cursor: pointer; border-radius: 999px; padding: 15px 28px; font-weight: 600; font-size: 15px; border: 1px solid transparent; }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: var(--rust); color: var(--paper); text-decoration: none; }
.btn-outline-ink { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-outline-ink:hover { background: var(--ink); color: var(--paper); text-decoration: none; }
.btn-rust { background: var(--rust); color: #fff; }
.btn-rust:hover { background: var(--rust-dark); color: #fff; text-decoration: none; }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: #F0C8B4; text-decoration: none; }
.btn-block { display: block; width: 100%; text-align: center; padding: 14px; border: none; }
.btn-sm { padding: 10px 18px; font-size: 13.5px; border-radius: 999px; }
.btn-sm-outline { border: 1px solid var(--ink); color: var(--ink); }
.btn-sm-outline:hover { background: var(--ink); color: var(--paper); text-decoration: none; }
.btn-sm-dark { background: var(--ink); color: var(--paper); text-align: center; }
.btn-sm-dark:hover { background: var(--rust); text-decoration: none; }

.chip {
  cursor: pointer; border-radius: 999px; padding: 9px 16px; font-size: 13.5px; font-weight: 600;
  border: 1px solid var(--input-border); background: #fff; color: var(--muted);
}
.chip.is-active { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.link-arrow { font-size: 14px; font-weight: 600; border-bottom: 1px solid var(--rust); color: var(--rust); padding-bottom: 2px; }
.link-arrow:hover { color: var(--rust-dark); text-decoration: none; }

/* ---------- Eyebrow / labels ---------- */
.eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rust); margin-bottom: 12px; }
.eyebrow-light { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: #D98A63; margin-bottom: 12px; }

/* ---------- Hero ---------- */
.hero { padding: 64px 24px 40px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.hero h1 { font-size: 60px; line-height: 1.03; margin: 0 0 20px; letter-spacing: -0.015em; }
.hero-lead { font-size: 18.5px; line-height: 1.65; color: var(--muted); max-width: 56ch; margin: 0 0 28px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; border-top: 1px solid var(--line); padding-top: 22px; }
.hero-stat-num { font-family: var(--font-display); font-size: 30px; }
.hero-stat-label { font-size: 12.5px; color: var(--muted-2); }
.hero-media { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 200px 150px; gap: 12px; }
.hero-media .media-photo:first-child { grid-column: 1 / -1; }
.media-photo { position: relative; border-radius: 6px; overflow: hidden; background: #E7DED3; }
.media-photo img { width: 100%; height: 100%; object-fit: cover; }
.media-caption {
  position: absolute; left: 12px; bottom: 12px; font-family: var(--font-mono); font-size: 10.5px;
  color: #3E3833; background: rgba(255,255,255,0.85); padding: 4px 8px; border-radius: 3px;
}

.zigzag { height: 26px; background-image: linear-gradient(45deg,#E3DBD1 25%,transparent 25%,transparent 75%,#E3DBD1 75%),linear-gradient(45deg,#E3DBD1 25%,transparent 25%,transparent 75%,#E3DBD1 75%); background-size: 26px 26px; background-position: 0 0,13px 13px; }
.zigzag-dark { height: 20px; background-image: linear-gradient(45deg,#2A2622 25%,transparent 25%,transparent 75%,#2A2622 75%),linear-gradient(45deg,#2A2622 25%,transparent 25%,transparent 75%,#2A2622 75%); background-size: 20px 20px; background-position: 0 0,10px 10px; }

/* ---------- Sections / grids ---------- */
section.section { padding: 60px 24px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 34px; flex-wrap: wrap; }
.section-title { font-size: 38px; margin: 0; }

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

.card { background: #fff; border: 1px solid var(--card-border); border-radius: 8px; padding: 26px; transition: border-color .15s ease, transform .15s ease; }
.card:hover { border-color: var(--rust); transform: translateY(-2px); }
.card-num { font-family: var(--font-mono); font-size: 11px; color: var(--rust); margin-bottom: 14px; }
.card h3 { font-size: 22px; margin: 0 0 10px; }
.card-text { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0 0 16px; }
.card-price { font-size: 13px; font-weight: 600; color: var(--teal); }

/* ---------- Process (dark) ---------- */
.process { background: var(--ink); color: #F1EBE4; }
.process-inner { padding: 64px 24px; display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 52px; }
.process h2 { color: #fff; font-size: 38px; margin: 0 0 16px; }
.process-lead { font-size: 15px; line-height: 1.7; color: #B8B0A7; margin: 0; }
.step-row { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid #332F2B; }
.step-n { font-family: var(--font-display); font-size: 26px; color: #D98A63; }
.step-title { font-size: 17px; font-weight: 600; margin-bottom: 5px; }
.step-text { font-size: 14px; line-height: 1.6; color: #A9A199; }

/* ---------- Calculator ---------- */
.calc-panel { background: #fff; border: 1px solid var(--card-border); border-radius: 10px; padding: 38px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; }
.calc-panel h2 { font-size: 34px; margin: 0 0 10px; }
.calc-panel > div:first-child > p { font-size: 14.5px; line-height: 1.65; color: var(--muted); margin: 0 0 26px; }
.calc-field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--muted-2); margin-bottom: 8px; }
.calc-field input[type="range"] { width: 100%; accent-color: var(--rust); }
.chip-row { display: flex; gap: 8px; flex-wrap: wrap; }
.calc-result { background: var(--paper); border-radius: 8px; padding: 30px; display: flex; flex-direction: column; }
.calc-result-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); }
.calc-total { font-family: var(--font-display); font-size: 52px; line-height: 1.1; margin: 10px 0 4px; }
.calc-sub { font-size: 13px; color: var(--muted-2); margin-bottom: 20px; }
.calc-lines { border-top: 1px solid var(--line); padding-top: 16px; display: grid; gap: 9px; font-size: 13.5px; color: #4A433D; }
.calc-line { display: flex; justify-content: space-between; gap: 12px; }
.calc-line strong { font-weight: 600; }
.calc-cta { margin-top: auto; padding-top: 22px; }
.calc-cta-note { font-size: 11.5px; color: var(--muted-3); margin-top: 10px; text-align: center; }

/* ---------- Reviews ---------- */
.review { background: #fff; border: 1px solid var(--card-border); border-radius: 8px; padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.review-stars { color: var(--rust); font-size: 14px; letter-spacing: 2px; }
.review-text { font-size: 15px; line-height: 1.65; color: #3E3833; margin: 0; font-style: italic; }
.review-name { margin-top: auto; font-size: 13px; color: var(--muted-2); }
.review-name strong { color: var(--ink); }

/* ---------- Shop teaser (teal) ---------- */
.shop-teaser { background: var(--teal); color: var(--teal-ink); }
.shop-teaser-inner { padding: 56px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.shop-teaser h2 { color: #fff; font-size: 34px; margin: 0 0 12px; }
.shop-teaser p { font-size: 15.5px; line-height: 1.7; color: #C4D8D5; margin: 0 0 22px; }
.featured-item { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); border-radius: 8px; padding: 16px; }
.featured-name { font-size: 14.5px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.featured-price { font-size: 13px; color: #BFD4D1; margin-bottom: 12px; }
.chip-ghost { cursor: pointer; font-size: 12.5px; font-weight: 600; border: 1px solid rgba(255,255,255,0.4); border-radius: 999px; padding: 7px 14px; display: inline-block; color: #fff; }
.chip-ghost:hover { background: #fff; color: var(--ink); text-decoration: none; }

/* ---------- Blog teaser ---------- */
.blog-teaser-row { cursor: pointer; display: grid; grid-template-columns: 100px 1fr; gap: 22px; padding: 20px 0; border-bottom: 1px solid var(--line); color: inherit; }
.blog-teaser-row:hover { background: var(--paper-2); text-decoration: none; }
.blog-teaser-date { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted-3); }
.blog-teaser-title { font-family: var(--font-display); font-size: 21px; margin-bottom: 6px; color: var(--ink); }
.blog-teaser-text { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* ---------- Generic page header ---------- */
.page-head { padding: 56px 24px 0; }
.page-head h1 { font-size: 48px; margin: 0 0 16px; line-height: 1.06; }
.page-lead { font-size: 17px; line-height: 1.7; color: #4A433D; max-width: 78ch; margin: 0 0 40px; }

/* ---------- Services detail ---------- */
.service-detail { background: #fff; border: 1px solid var(--card-border); border-radius: 10px; padding: 32px; display: grid; grid-template-columns: 1fr 1.3fr 0.7fr; gap: 34px; }
.service-detail h2 { font-size: 27px; margin: 0 0 10px; }
.service-detail-text { font-size: 14.5px; line-height: 1.65; color: var(--muted); margin: 0; }
.label-caps { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 12px; }
.service-detail ul { padding-left: 18px; display: grid; gap: 7px; font-size: 14px; line-height: 1.55; color: #3E3833; }
.service-price-col { border-left: 1px solid #EFE8DF; padding-left: 26px; }
.service-price { font-family: var(--font-display); font-size: 32px; margin-bottom: 6px; }
.service-unit { font-size: 12.5px; color: var(--muted-3); margin-bottom: 18px; }
.regions-panel { margin-top: 44px; background: var(--ink); color: #EFE9E2; border-radius: 10px; padding: 38px; display: grid; grid-template-columns: 1fr 1fr; gap: 38px; }
.regions-panel h2 { color: #fff; font-size: 28px; margin: 0 0 12px; }
.regions-panel p { font-size: 14.5px; line-height: 1.7; color: #B0A8A0; margin: 0; }
.region-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; font-size: 14px; }
.region-item { border: 1px solid #35302B; border-radius: 6px; padding: 12px 14px; }
.region-item .note { color: var(--muted-3); font-size: 12.5px; }

/* ---------- Gallery ---------- */
.gallery-card { background: #fff; border: 1px solid var(--card-border); border-radius: 8px; overflow: hidden; }
.gallery-photo { height: 210px; position: relative; overflow: hidden; background: #E7DED3; }
.gallery-photo img { width: 100%; height: 100%; object-fit: cover; }
.gallery-body { padding: 20px; }
.gallery-title { font-family: var(--font-display); font-size: 20px; margin-bottom: 6px; }
.gallery-text { font-size: 13.5px; line-height: 1.6; color: var(--muted); margin-bottom: 12px; }
.gallery-meta { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; color: var(--muted-3); }

/* ---------- Pricing ---------- */
.price-table { background: #fff; border: 1px solid var(--card-border); border-radius: 10px; overflow: hidden; }
.price-group-head { background: #F1EBE3; padding: 14px 26px; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: 20px; padding: 16px 26px; border-bottom: 1px solid var(--line-2); align-items: baseline; }
.price-row-name { font-size: 15.5px; font-weight: 600; }
.price-row-note { font-size: 13px; color: var(--muted-2); margin-top: 3px; }
.price-row-price { font-family: var(--font-display); font-size: 21px; white-space: nowrap; }
.price-aside-teal { background: var(--teal); color: var(--teal-ink); border-radius: 10px; padding: 26px; }
.price-aside-teal h2 { color: #fff; font-size: 22px; margin-bottom: 10px; }
.price-aside-teal ul { padding-left: 18px; font-size: 14px; line-height: 1.7; color: #C4D8D5; display: grid; gap: 6px; }
.price-aside-white { background: #fff; border: 1px solid var(--card-border); border-radius: 10px; padding: 26px; }
.price-aside-white h2 { font-size: 22px; margin-bottom: 10px; }
.price-aside-white ul { padding-left: 18px; font-size: 14px; line-height: 1.7; color: var(--muted); display: grid; gap: 6px; }
.price-note { border: 1px dashed #C9BFB2; border-radius: 10px; padding: 22px; font-size: 13px; line-height: 1.65; color: var(--muted-2); }

/* ---------- Shop ---------- */
.product-card { background: #fff; border: 1px solid var(--card-border); border-radius: 8px; display: flex; flex-direction: column; overflow: hidden; transition: border-color .15s ease; }
.product-card:hover { border-color: var(--rust); }
.product-photo { height: 150px; position: relative; overflow: hidden; background: #EAE1D6; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; }
.product-slot { position: absolute; top: 10px; left: 10px; font-family: var(--font-mono); font-size: 10px; color: var(--muted); background: rgba(255,255,255,0.85); padding: 3px 7px; border-radius: 3px; }
.product-stock { position: absolute; top: 10px; right: 10px; font-family: var(--font-mono); font-size: 10px; color: var(--teal); background: #fff; padding: 3px 7px; border-radius: 3px; }
.product-body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-family: var(--font-mono); font-size: 10.5px; color: var(--muted-3); }
.product-name { font-size: 15px; font-weight: 600; line-height: 1.35; }
.product-desc { font-size: 13px; line-height: 1.55; color: var(--muted-2); }
.product-price-row { margin-top: auto; padding-top: 12px; display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.product-price { font-family: var(--font-display); font-size: 22px; }
.product-unit { font-size: 11.5px; color: var(--muted-3); }
.add-to-cart { cursor: pointer; text-align: center; background: var(--ink); color: var(--paper); border-radius: 999px; padding: 11px; font-size: 13.5px; font-weight: 600; border: none; width: 100%; }
.add-to-cart:hover { background: var(--rust); }
.shop-badge { border: 1px solid var(--line); border-radius: 8px; padding: 20px; background: var(--paper-2); }
.shop-badge-title { font-size: 14.5px; font-weight: 700; margin-bottom: 6px; }
.shop-badge-text { font-size: 13px; line-height: 1.6; color: var(--muted-2); }

/* ---------- About ---------- */
.about-photo { height: 230px; border-radius: 8px; position: relative; overflow: hidden; background: #E7DED3; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-fact-card { background: #fff; border: 1px solid var(--card-border); border-radius: 8px; padding: 22px; display: grid; gap: 12px; font-size: 14px; }
.about-fact-row { display: flex; justify-content: space-between; }
.about-fact-row span { color: var(--muted-2); }
.team-card { background: #fff; border: 1px solid var(--card-border); border-radius: 8px; overflow: hidden; }
.team-photo { height: 150px; position: relative; overflow: hidden; background: #E4E9E7; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 18px; }
.team-name { font-size: 15.5px; font-weight: 700; }
.team-role { font-size: 12.5px; color: var(--rust); margin: 3px 0 8px; }
.team-text { font-size: 13px; line-height: 1.6; color: var(--muted-2); }
.value-card { border: 1px solid var(--line); border-radius: 8px; padding: 26px; background: var(--paper-2); }
.value-card h3 { font-size: 22px; margin-bottom: 8px; }
.value-card p { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; }

/* ---------- Blog ---------- */
.post-card { cursor: pointer; background: #fff; border: 1px solid var(--card-border); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; color: inherit; }
.post-card:hover { border-color: var(--rust); text-decoration: none; }
.post-photo { height: 160px; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.post-photo img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-meta { font-family: var(--font-mono); font-size: 11px; color: var(--muted-3); }
.post-title { font-family: var(--font-display); font-size: 21px; line-height: 1.25; color: var(--ink); }
.post-excerpt { font-size: 13.5px; line-height: 1.6; color: var(--muted); }
.post-read-more { margin-top: auto; padding-top: 12px; font-size: 13px; font-weight: 600; color: var(--rust); }

.article-wrap { max-width: 820px; margin: 0 auto; padding: 56px 24px 72px; }
.article-back { cursor: pointer; font-size: 13.5px; font-weight: 600; color: var(--rust); }
.article-meta { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted-3); margin: 22px 0 10px; }
.article-title { font-size: 42px; line-height: 1.1; margin: 0 0 22px; }
.article-cover { height: 260px; border-radius: 8px; margin-bottom: 30px; position: relative; overflow: hidden; background: #E7DED3; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.article-body { display: grid; gap: 20px; font-size: 17px; line-height: 1.8; color: #33302C; }
.article-cta { margin-top: 38px; background: var(--teal); color: var(--teal-ink); border-radius: 10px; padding: 30px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.article-cta-title { font-family: var(--font-display); font-size: 24px; color: #fff; margin-bottom: 6px; }
.article-cta-text { font-size: 14px; color: #C4D8D5; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: start; }
.contact-form-panel { background: #fff; border: 1px solid var(--card-border); border-radius: 10px; padding: 32px; }
.form-title { font-family: var(--font-display); font-size: 26px; margin: 0 0 16px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: var(--muted-2); margin-bottom: 6px; }
.field input, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--input-border); border-radius: 6px;
  background: var(--input-bg); color: var(--ink);
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--rust); outline-offset: 1px; }
.consent-row { display: flex; gap: 10px; align-items: flex-start; font-size: 12.5px; line-height: 1.55; color: var(--muted-2); }
.consent-row input { margin-top: 2px; accent-color: var(--rust); }
.form-note { font-size: 11.5px; color: var(--muted-3); text-align: center; }
.form-success { padding: 30px 0; text-align: center; }
.form-success h2 { font-size: 28px; margin-bottom: 10px; }
.form-success p { font-size: 15px; color: var(--muted); line-height: 1.65; }
.form-error { background: #FBEAE4; border: 1px solid #E3B39F; color: #8E3C21; border-radius: 8px; padding: 12px 16px; font-size: 13.5px; margin-bottom: 14px; }

.contact-card-dark { background: var(--ink); color: #EFE9E2; border-radius: 10px; padding: 30px; display: grid; gap: 16px; }
.contact-card-dark h2 { color: #fff; font-size: 24px; margin: 0; }
.contact-detail-list { display: grid; gap: 10px; font-size: 14.5px; line-height: 1.6; }
.contact-detail-list span { color: var(--muted-3); display: block; font-size: 12px; }
.contact-detail-list a { color: #F0C8B4; }
.legal-fine { border-top: 1px solid #33302B; padding-top: 14px; font-size: 12.5px; line-height: 1.7; color: #A9A199; }
.map-embed { height: 260px; border-radius: 10px; overflow: hidden; border: 1px solid var(--card-border); }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

.faq-panel { background: #fff; border: 1px solid var(--card-border); border-radius: 10px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--line-2); }
.faq-item:last-child { border-bottom: none; }
.faq-item > summary {
  cursor: pointer; padding: 20px 26px; display: flex; justify-content: space-between; gap: 20px;
  align-items: center; list-style: none; font-size: 16px; font-weight: 600; color: var(--ink);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary:hover { background: var(--paper-2); }
.faq-sign { font-family: var(--font-mono); color: var(--rust); font-size: 18px; }
.faq-sign::before { content: '+'; }
.faq-item[open] .faq-sign::before { content: '\2212'; }
.faq-a { padding: 0 26px 22px; font-size: 15px; line-height: 1.7; color: #4A433D; max-width: 88ch; }

/* ---------- Legal pages ---------- */
.legal-wrap { max-width: 900px; margin: 0 auto; padding: 56px 24px 72px; }
.legal-wrap h1 { font-size: 42px; line-height: 1.1; margin: 0 0 10px; }
.legal-updated { font-family: var(--font-mono); font-size: 11.5px; color: var(--muted-3); margin-bottom: 30px; }
.legal-section { background: #fff; border: 1px solid var(--card-border); border-radius: 8px; padding: 28px; margin-bottom: 26px; }
.legal-section h2 { font-size: 23px; margin: 0 0 12px; }
.legal-section p { font-size: 15.5px; line-height: 1.75; color: #3E3833; margin: 0 0 12px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-note { border: 1px dashed #C9BFB2; border-radius: 8px; padding: 24px; font-size: 13.5px; line-height: 1.7; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--near-black); color: #A9A199; margin-top: auto; }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: 52px 24px 30px; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 38px; }
.footer-brand { font-family: var(--font-display); font-size: 22px; color: #fff; margin-bottom: 12px; }
.footer-addr { font-size: 13.5px; line-height: 1.75; }
.footer-addr a { color: #E0B49C; }
.footer-ids { font-size: 12px; line-height: 1.7; margin-top: 14px; color: #7E766E; }
.footer-col-title { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer-links { display: grid; gap: 9px; font-size: 13.5px; }
.footer-links a { color: #A9A199; }
.footer-links a:hover { color: #E0B49C; text-decoration: none; }
.footer-bottom { max-width: 1240px; margin: 0 auto; padding: 18px 24px 40px; border-top: 1px solid #262320; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12px; color: #6E665E; }
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.cookie-settings-link { cursor: pointer; text-decoration: underline; background: none; border: none; color: #6E665E; font-size: 12px; padding: 0; }

/* ---------- Cart drawer ---------- */
.cart-overlay { position: fixed; inset: 0; z-index: 60; display: none; }
.cart-overlay.open { display: flex; justify-content: flex-end; }
.cart-scrim { position: absolute; inset: 0; background: rgba(20,19,17,0.45); border: none; cursor: pointer; }
.cart-panel {
  position: relative; width: 440px; max-width: 92vw; background: var(--paper); height: 100%;
  display: flex; flex-direction: column; box-shadow: -20px 0 60px rgba(0,0,0,0.25); animation: slidein .22s ease-out;
}
.cart-head { padding: 22px 26px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.cart-title { font-family: var(--font-display); font-size: 24px; }
.cart-close { cursor: pointer; font-size: 22px; color: var(--muted-2); line-height: 1; background: none; border: none; }
.cart-body { flex: 1; overflow: auto; padding: 20px 26px; display: grid; gap: 14px; align-content: start; }
.cart-empty { text-align: center; padding: 50px 10px; color: var(--muted-2); }
.cart-empty h3 { font-family: var(--font-display); font-size: 22px; color: var(--ink); margin-bottom: 8px; }
.cart-empty p { font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
.cart-order-placed { background: var(--teal); color: var(--teal-ink); border-radius: 8px; padding: 24px; }
.cart-order-placed h3 { font-family: var(--font-display); font-size: 22px; color: #fff; margin-bottom: 8px; }
.cart-order-placed p { font-size: 14px; line-height: 1.65; color: #C4D8D5; margin: 0; }
.cart-line { background: #fff; border: 1px solid var(--card-border); border-radius: 8px; padding: 16px; display: grid; grid-template-columns: 56px 1fr auto; gap: 14px; align-items: center; }
.cart-line-thumb { width: 56px; height: 56px; border-radius: 5px; background: #EAE1D6; overflow: hidden; }
.cart-line-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-line-name { font-size: 14.5px; font-weight: 600; line-height: 1.35; }
.cart-line-price { font-size: 12.5px; color: var(--muted-2); margin: 3px 0 8px; }
.qty-row { display: flex; align-items: center; gap: 8px; }
.qty-btn { cursor: pointer; width: 26px; height: 26px; border: 1px solid var(--input-border); border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 15px; background: #fff; }
.qty-val { font-size: 14px; font-weight: 600; min-width: 22px; text-align: center; }
.remove-link { cursor: pointer; font-size: 12px; color: var(--muted-3); text-decoration: underline; margin-left: 6px; background: none; border: none; }
.cart-line-total { font-family: var(--font-display); font-size: 18px; white-space: nowrap; }
.cart-footer { border-top: 1px solid var(--line); padding: 22px 26px; background: #fff; }
.cart-totals { display: grid; gap: 8px; font-size: 14px; margin-bottom: 16px; }
.cart-totals-row { display: flex; justify-content: space-between; }
.cart-totals-row span:first-child { color: var(--muted-2); }
.cart-vat-row { font-size: 12.5px; color: var(--muted-3); }
.cart-grand { border-top: 1px solid #EFE8DF; padding-top: 10px; align-items: baseline; }
.cart-grand-total { font-family: var(--font-display); font-size: 26px; }
.cart-terms-note { font-size: 11.5px; color: var(--muted-3); margin-top: 10px; line-height: 1.6; }
.cart-terms-note a { text-decoration: underline; }

/* ---------- Cookie banner ---------- */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; padding: 18px; display: none; justify-content: center; }
.cookie-banner.open { display: flex; }
.cookie-box {
  max-width: 1000px; width: 100%; background: var(--near-black); color: #CFC7BE; border-radius: 12px;
  padding: 24px 26px; display: grid; grid-template-columns: 1fr auto; gap: 26px; align-items: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3); animation: fadeup .25s ease-out;
}
.cookie-box h2 { font-family: var(--font-display); font-size: 20px; color: #fff; margin-bottom: 6px; }
.cookie-box p { font-size: 13.5px; line-height: 1.65; margin: 0; }
.cookie-box a { color: #E0B49C; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.cookie-btn-ghost { cursor: pointer; border: 1px solid #3A342E; border-radius: 999px; padding: 12px 20px; font-size: 13.5px; font-weight: 600; color: #CFC7BE; background: none; }
.cookie-btn-accept { cursor: pointer; background: var(--rust); color: #fff; border-radius: 999px; padding: 12px 22px; font-size: 13.5px; font-weight: 600; border: none; }

/* ---------- Misc ---------- */
.map-placeholder { height: 220px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background-image: repeating-linear-gradient(135deg,#DDE7E5 0 10px,#CFDEDB 10px 20px); }
.map-placeholder span { font-family: var(--font-mono); font-size: 11.5px; color: #41504E; background: rgba(255,255,255,0.9); padding: 8px 14px; border-radius: 4px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .nav-toggle {
    display: flex; align-items: center; justify-content: center; margin-left: auto;
    width: 40px; height: 40px; border: 1px solid var(--input-border); border-radius: 8px; background: #fff;
  }
  .main-nav.open {
    display: flex; flex-direction: column; gap: 2px; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 10px 24px 18px; margin: 0;
  }
  .main-nav.open a { padding: 10px 0; border-bottom: 1px solid var(--line-2); }
  .header-inner { flex-wrap: wrap; position: relative; }

  .hero { grid-template-columns: 1fr; padding: 40px 20px 32px; }
  .hero h1 { font-size: 42px; }
  .hero-stats { grid-template-columns: repeat(2,1fr); }
  .process-inner { grid-template-columns: 1fr; padding: 44px 20px; }
  .calc-panel { grid-template-columns: 1fr; padding: 26px; }
  .shop-teaser-inner { grid-template-columns: 1fr; padding: 40px 20px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .service-detail { grid-template-columns: 1fr; }
  .service-price-col { border-left: none; padding-left: 0; border-top: 1px solid #EFE8DF; padding-top: 18px; }
  .regions-panel { grid-template-columns: 1fr; padding: 26px 20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container, section.section, .page-head, .article-wrap, .legal-wrap { padding-left: 18px; padding-right: 18px; }
  .hero h1 { font-size: 34px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .page-head h1 { font-size: 32px; }
  .section-title { font-size: 28px; }
  .field-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .article-title { font-size: 30px; }
  .article-cta { flex-direction: column; align-items: flex-start; }
  .cart-panel { width: 100%; }
  .service-detail { padding: 22px; }
}
