/* SkyCeiling — shared stylesheet. Self-contained, no external fonts/CDN. */

:root {
  --bg: oklch(0.975 0.004 240);
  --ink: #131a20;
  --ink-soft: #2b3640;
  --ink-soft2: #3d4a56;
  --ink-mute: #5c6773;
  --ink-faint: #7b8794;
  --ink-faint2: #6b7784;

  --line: oklch(0.92 0.008 240);
  --line-soft: oklch(0.95 0.006 240);
  --line-strong: oklch(0.88 0.01 240);
  --line-stronger: oklch(0.85 0.01 240);
  --line-faint: oklch(0.94 0.006 240);

  --card-tint: oklch(0.97 0.006 232);
  --card-tint-2: oklch(0.96 0.008 232);
  --input-bg: oklch(0.98 0.004 240);

  --dark: #101820;
  --dark-2: #0b1218;
  --dark-3: #18222c;
  --dark-4: #1d2731;
  --dark-5: #25303b;
  --dark-border: #26313c;
  --dark-border-2: #2b3742;
  --dark-border-3: #1b242e;
  --dark-muted: #8b98a5;
  --dark-text-soft: #b6c0c9;

  --accent: oklch(0.72 0.13 232);
  --accent-strong: oklch(0.8 0.13 232);
  --accent-deep: oklch(0.5 0.12 250);
  --link: oklch(0.55 0.12 232);
  --link-hover: oklch(0.42 0.1 232);
  --link-mid: oklch(0.5 0.11 232);
  --link-deep: oklch(0.45 0.11 232);
  --bullet: oklch(0.62 0.13 232);
  --star: oklch(0.78 0.13 80);
  --stock-green: oklch(0.55 0.14 150);
  --btn-dark-hover: oklch(0.4 0.09 240);
  --danger: #c0392b;

  --font-heading: Archivo, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: Manrope, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
h1, h2, h3, h4 { font-family: var(--font-heading); margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--link-hover); text-decoration: underline; }
img { max-width: 100%; display: block; }
input, select, textarea, button { font-family: var(--font-body); font-size: 15px; }
button { cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.mono { font-family: var(--font-mono); }
.eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--link); margin-bottom: 14px;
}
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 24px; }
.section > .container-inner { max-width: var(--container); margin: 0 auto; }
main { flex: 1; }

@keyframes scup { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes scslide { from { transform: translateX(30px); opacity: 0; } to { transform: none; opacity: 1; } }
.anim-up { animation: scup 0.6s ease both; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 26px; border-radius: 11px; font-weight: 600; font-size: 16px;
  cursor: pointer; border: 1px solid transparent; text-decoration: none; line-height: 1.2;
}
.btn:hover { text-decoration: none; }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--btn-dark-hover); color: #fff; }
.btn-accent { background: var(--accent); color: #08131c; }
.btn-accent:hover { background: var(--accent-strong); color: #08131c; }
.btn-outline-dark { border-color: rgba(255,255,255,0.35); color: #fff; background: transparent; }
.btn-outline-dark:hover { border-color: #fff; color: #fff; }
.btn-outline { border-color: var(--line-stronger); color: var(--ink); background: #fff; }
.btn-outline:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 18px; font-size: 14px; border-radius: 10px; }

/* ---------- Promo bar ---------- */
.promo-bar {
  background: var(--dark); color: oklch(0.93 0.02 232); font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase; font-family: var(--font-mono);
  padding: 9px 24px; text-align: center;
}
.promo-bar strong, .promo-bar .promo-phone { color: var(--accent); font-style: normal; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40; background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px); border-bottom: 1px solid var(--line);
}
.site-header .container {
  padding: 14px 24px; display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; color: inherit; }
.brand:hover { text-decoration: none; color: inherit; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 9px; flex-shrink: 0;
  background: linear-gradient(150deg, var(--accent), var(--accent-deep));
}
.brand__name { font-family: var(--font-heading); font-weight: 700; font-size: 19px; letter-spacing: -0.03em; line-height: 1; color: var(--ink); }
.brand__sub {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-faint);
  font-family: var(--font-mono);
}
.nav { display: flex; gap: 2px; flex-wrap: wrap; margin-left: auto; }
.nav a {
  padding: 8px 11px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--ink-soft2); white-space: nowrap;
}
.nav a:hover { background: var(--card-tint-2); color: var(--dark); text-decoration: none; }
.nav a.is-active { background: var(--card-tint-2); color: var(--dark); }
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-phone { font-family: var(--font-mono); font-size: 14px; font-weight: 500; color: var(--dark); white-space: nowrap; }
.header-phone:hover { color: var(--dark); }
.cart-btn {
  position: relative; padding: 9px 14px; border-radius: 9px; background: var(--dark);
  color: #fff; font-size: 14px; font-weight: 600; cursor: pointer; white-space: nowrap;
  border: none; font-family: var(--font-body);
}
.cart-btn:hover { background: var(--btn-dark-hover); }
.nav-toggle {
  display: none; margin-left: auto; background: none; border: 1px solid var(--line-strong);
  border-radius: 9px; padding: 8px 12px; font-weight: 600; font-size: 14px; color: var(--dark);
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; align-items: center; gap: 6px; }
  .nav {
    display: none; margin-left: 0; width: 100%; flex-direction: column; gap: 2px;
    order: 5; padding-top: 10px; border-top: 1px solid var(--line); margin-top: 12px;
  }
  .nav.is-open { display: flex; }
  .site-header .container { flex-wrap: wrap; }
  .header-actions { margin-left: auto; }
}

/* ---------- Hero ---------- */
.hero { background: var(--dark); color: #fff; overflow: hidden; }
.hero .container {
  padding: 88px 24px 96px; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center;
}
.hero__kicker {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 22px;
}
.hero h1 { font-size: 60px; line-height: 1.02; font-weight: 700; margin-bottom: 24px; }
.hero p.lead {
  font-size: 19px; line-height: 1.6; color: oklch(0.82 0.01 240); max-width: 520px;
  margin-bottom: 32px; text-wrap: pretty;
}
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 520px; }
.hero__stat-num { font-family: var(--font-heading); font-size: 30px; font-weight: 700; color: var(--accent); }
.hero__stat-label { font-size: 13px; color: oklch(0.75 0.01 240); }
.hero__media {
  height: 460px; border-radius: 18px; overflow: hidden; border: 1px solid #2a333e; position: relative;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.photo-tag {
  position: absolute; left: 14px; bottom: 14px; font-family: var(--font-mono); font-size: 11px;
  color: #fff; background: rgba(16,24,32,0.72); padding: 6px 10px; border-radius: 7px;
  backdrop-filter: blur(3px);
}

/* ---------- USP strip ---------- */
.usp-strip { background: #fff; border-bottom: 1px solid var(--line); }
.usp-strip .container { padding: 34px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.usp-item { display: flex; gap: 12px; align-items: flex-start; }
.usp-dot { width: 9px; height: 9px; border-radius: 3px; background: var(--bullet); margin-top: 6px; flex-shrink: 0; }
.usp-title { font-family: var(--font-heading); font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.usp-desc { font-size: 14px; color: var(--ink-mute); line-height: 1.5; }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; padding: 56px 20px 48px; }
  .hero h1 { font-size: 40px; }
  .hero__media { height: 280px; order: -1; }
  .usp-strip .container { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Section headers ---------- */
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 40px;
}
.section-head h2 { font-size: 40px; font-weight: 700; line-height: 1.1; }
@media (max-width: 700px) {
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head h2 { font-size: 30px; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
}

/* ---------- Grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
}

/* ---------- Cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
}
.card-pad { padding: 20px; }
.card-media { height: 150px; overflow: hidden; position: relative; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media--lg { height: 210px; }
.service-card { transition: transform 0.15s ease, border-color 0.15s ease; }
.service-card:hover { border-color: var(--accent); transform: translateY(-3px); text-decoration: none; color: inherit; }
.service-card h3 { font-size: 19px; font-weight: 600; }
.service-card .price { font-family: var(--font-mono); font-size: 14px; color: var(--link); white-space: nowrap; }
.service-card .desc { font-size: 14px; color: var(--ink-mute); line-height: 1.55; margin-top: 8px; }
.card-title-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }

/* ---------- Process steps ---------- */
.steps-section { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step { border-top: 2px solid var(--dark); padding-top: 18px; }
.step__num { font-family: var(--font-mono); font-size: 13px; color: var(--link); margin-bottom: 10px; }
.step h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--ink-mute); line-height: 1.6; }

/* ---------- Why-us ---------- */
.why-section .container { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.why-media { height: 400px; border-radius: 18px; overflow: hidden; position: relative; }
.why-media img { width: 100%; height: 100%; object-fit: cover; }
.why-list { display: flex; flex-direction: column; gap: 14px; }
.why-list li { display: flex; gap: 12px; align-items: flex-start; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.why-list li::before { content: '✓'; font-family: var(--font-mono); font-size: 12px; color: var(--link); margin-top: 3px; }
.why-list span { font-size: 15px; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 900px) {
  .why-section .container { grid-template-columns: 1fr; }
  .why-media { height: 260px; }
}

/* ---------- Testimonials ---------- */
.reviews-section { background: var(--dark); color: #fff; }
.review-card { background: var(--dark-3); border: 1px solid var(--dark-border); border-radius: 16px; padding: 26px; }
.review-stars { color: var(--star); font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.review-text { font-size: 15px; line-height: 1.65; color: oklch(0.87 0.01 240); margin-bottom: 18px; }
.review-name { font-family: var(--font-heading); font-weight: 600; font-size: 14px; }
.review-meta { font-size: 13px; color: var(--dark-muted); }

/* ---------- CTA panel ---------- */
.cta-panel {
  background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.cta-panel h2 { font-size: 34px; font-weight: 700; margin-bottom: 14px; }
.cta-panel p { font-size: 16px; color: var(--ink-mute); line-height: 1.6; margin-bottom: 24px; }
.facts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fact-tile { background: var(--card-tint); border-radius: 13px; padding: 18px; }
.fact-tile__k { font-family: var(--font-heading); font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.fact-tile__v { font-size: 13px; color: var(--ink-mute); line-height: 1.45; }
@media (max-width: 900px) {
  .cta-panel { grid-template-columns: 1fr; padding: 32px; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-head { padding: 64px 24px 0; max-width: var(--container); margin: 0 auto; }
.page-head h1 { font-size: 46px; font-weight: 700; margin-bottom: 18px; }
.page-head p.lead { font-size: 18px; color: var(--ink-soft2); line-height: 1.65; max-width: 760px; margin-bottom: 48px; text-wrap: pretty; }
@media (max-width: 700px) {
  .page-head h1 { font-size: 32px; }
  .page-head p.lead { font-size: 16px; }
}

/* ---------- Services page list ---------- */
.service-row {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 28px;
  display: grid; grid-template-columns: 230px 1fr 200px; gap: 28px; align-items: center;
}
.service-row .card-media { height: 150px; border-radius: 12px; }
.service-row h2 { font-size: 24px; font-weight: 600; margin-bottom: 10px; }
.service-row .desc { font-size: 15px; color: var(--ink-soft2); line-height: 1.65; margin-bottom: 12px; }
.tag-list { display: flex; gap: 8px; flex-wrap: wrap; }
.tag {
  font-family: var(--font-mono); font-size: 11px; padding: 5px 9px; border-radius: 6px;
  background: var(--card-tint-2); color: var(--ink-soft2);
}
.service-row .price-col { text-align: right; }
.service-row .price-big { font-family: var(--font-heading); font-size: 26px; font-weight: 700; margin-bottom: 4px; }
.service-row .price-note { font-size: 13px; color: var(--ink-faint); margin-bottom: 14px; }
@media (max-width: 900px) {
  .service-row { grid-template-columns: 1fr; text-align: left; }
  .service-row .price-col { text-align: left; }
}

.extras-panel { margin-top: 56px; background: var(--dark); color: #fff; border-radius: 20px; padding: 44px; }
.extras-panel h2 { font-size: 30px; font-weight: 700; margin-bottom: 26px; }
.extra-item { border-top: 1px solid var(--dark-border-2); padding-top: 16px; }
.extra-item__t { font-family: var(--font-heading); font-weight: 600; font-size: 17px; margin-bottom: 6px; }
.extra-item__d { font-size: 14px; color: oklch(0.78 0.01 240); line-height: 1.55; }

/* ---------- Calculator ---------- */
.calc-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 28px; align-items: start; }
.calc-form { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px; }
.calc-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 22px; }
label.field { display: block; margin-bottom: 22px; }
label.field:last-child { margin-bottom: 0; }
.field__label { display: block; font-size: 13px; font-weight: 600; color: var(--ink-soft2); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line-strong); border-radius: 10px;
  background: var(--input-bg); color: var(--ink);
}
.field textarea { resize: vertical; }
.toggle-row {
  display: flex; justify-content: space-between; align-items: center; padding: 14px 16px;
  border: 1px solid var(--line-strong); border-radius: 11px; cursor: pointer; background: #fff;
  width: 100%; text-align: left; font-family: var(--font-body); margin-bottom: 10px;
}
.toggle-row:last-child { margin-bottom: 0; }
.toggle-row:hover { border-color: var(--bullet); }
.toggle-row__label { font-size: 15px; font-weight: 500; }
.toggle-row__state { font-family: var(--font-mono); font-size: 13px; color: var(--link); }
.toggle-row.is-on .toggle-row__state { color: var(--stock-green); }

.calc-result {
  background: var(--dark); color: #fff; border-radius: 18px; padding: 32px; position: sticky; top: 100px;
}
.calc-result__kicker {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.calc-result__total { font-family: var(--font-heading); font-size: 52px; font-weight: 700; line-height: 1; margin-bottom: 8px; }
.calc-result__sub { font-size: 14px; color: var(--dark-muted); margin-bottom: 24px; }
.calc-rows { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.calc-rows .row { display: flex; justify-content: space-between; font-size: 14px; padding-bottom: 9px; border-bottom: 1px solid var(--dark-border); }
.calc-rows .row span:first-child { color: oklch(0.8 0.01 240); }
.calc-note { font-size: 12px; color: var(--dark-muted); margin-top: 14px; line-height: 1.5; }

.price-table { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.price-table .row {
  display: grid; grid-template-columns: 1fr 180px; gap: 20px; padding: 16px 24px;
  border-bottom: 1px solid var(--line-faint); align-items: center;
}
.price-table .row:last-child { border-bottom: none; }
.price-table .row__t { font-weight: 600; font-size: 15px; }
.price-table .row__d { font-size: 13px; color: var(--ink-faint); }
.price-table .row__v { font-family: var(--font-mono); font-size: 15px; text-align: right; color: var(--link-deep); }
@media (max-width: 900px) {
  .calc-grid { grid-template-columns: 1fr; }
  .calc-result { position: static; }
  .calc-row2 { grid-template-columns: 1fr; }
}

/* ---------- Gallery ---------- */
.filter-row { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-chip {
  padding: 10px 16px; border-radius: 9px; border: 1px solid var(--line-strong); font-size: 14px;
  font-weight: 500; cursor: pointer; background: #fff; color: var(--ink-soft2); font-family: var(--font-body);
}
.filter-chip:hover { border-color: var(--dark); }
.filter-chip.is-active { background: var(--dark); color: #fff; border-color: var(--dark); }
.gallery-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.gallery-card .desc { font-size: 14px; color: var(--ink-mute); line-height: 1.55; margin: 6px 0 12px; }
.gallery-card .meta { font-family: var(--font-mono); font-size: 12px; color: var(--link-deep); }
.gallery-item[hidden] { display: none; }

/* ---------- Shop ---------- */
.shop-info-row { display: flex; gap: 20px; flex-wrap: wrap; font-size: 14px; color: var(--ink-soft2); margin-bottom: 40px; font-family: var(--font-mono); }
.product-card { display: flex; flex-direction: column; }
.product-card .card-media { height: 160px; }
.product-card__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card__cat { font-family: var(--font-mono); font-size: 11px; color: var(--link); }
.product-card h3 { font-size: 16px; font-weight: 600; line-height: 1.3; }
.product-card .desc { font-size: 13px; color: var(--ink-mute); line-height: 1.5; flex: 1; }
.product-card__price-row { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; }
.product-card__price { font-family: var(--font-heading); font-size: 20px; font-weight: 700; }
.product-card__stock { font-size: 12px; color: var(--stock-green); }
.add-to-cart {
  padding: 11px; border-radius: 10px; background: var(--dark); color: #fff; font-weight: 600; font-size: 14px;
  text-align: center; cursor: pointer; border: none; font-family: var(--font-body); width: 100%;
}
.add-to-cart:hover { background: var(--btn-dark-hover); }
.shop-info-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.shop-info-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.shop-info-card p { font-size: 14px; color: var(--ink-mute); line-height: 1.6; }

/* ---------- About ---------- */
.about-intro { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; margin-bottom: 56px; }
.about-intro__text { display: flex; flex-direction: column; gap: 18px; }
.about-intro__text p { font-size: 17px; line-height: 1.7; color: var(--ink-soft); }
.about-intro__media { height: 100%; min-height: 340px; border-radius: 18px; overflow: hidden; position: relative; }
.about-intro__media img { width: 100%; height: 100%; object-fit: cover; }
.timeline-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.timeline-card__y { font-family: var(--font-mono); font-size: 13px; color: var(--link); margin-bottom: 10px; }
.timeline-card p { font-size: 15px; line-height: 1.6; color: var(--ink-soft); }
.team-panel { background: var(--dark); color: #fff; border-radius: 20px; padding: 44px; }
.team-panel h2 { font-size: 30px; font-weight: 700; margin-bottom: 26px; }
.team-photo { height: 170px; border-radius: 14px; overflow: hidden; margin-bottom: 14px; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-family: var(--font-heading); font-weight: 600; font-size: 16px; }
.team-role { font-size: 13px; color: var(--dark-muted); }
.cert-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.cert-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.cert-card p { font-size: 14px; color: var(--ink-mute); line-height: 1.6; }
@media (max-width: 900px) {
  .about-intro { grid-template-columns: 1fr; }
}

/* ---------- Blog ---------- */
.blog-card .card-media { height: 190px; }
.blog-card__meta { display: flex; gap: 12px; font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint); margin-bottom: 10px; }
.blog-card__meta .tag-color { color: var(--link); }
.blog-card h2 { font-size: 23px; font-weight: 600; line-height: 1.25; margin: 10px 0; }
.blog-card p { font-size: 15px; color: var(--ink-mute); line-height: 1.6; }
.blog-card { transition: transform .15s ease, border-color .15s ease; }
.blog-card:hover { border-color: var(--accent); transform: translateY(-3px); text-decoration: none; color: inherit; }

.post-back { font-family: var(--font-mono); font-size: 13px; color: var(--link-mid); margin-bottom: 26px; display: inline-block; }
.post-wrap { max-width: 800px; margin: 0 auto; padding: 56px 24px 88px; }
.post-meta { display: flex; gap: 12px; font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint); margin-bottom: 16px; }
.post-title { font-size: 42px; font-weight: 700; line-height: 1.12; margin-bottom: 22px; }
.post-media { height: 300px; border-radius: 16px; overflow: hidden; margin-bottom: 34px; }
.post-media img { width: 100%; height: 100%; object-fit: cover; }
.post-body { display: flex; flex-direction: column; gap: 20px; }
.post-body p { font-size: 18px; line-height: 1.75; color: var(--ink-soft); text-wrap: pretty; }
.post-cta {
  margin-top: 44px; background: var(--dark); color: #fff; border-radius: 18px; padding: 34px;
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
}
.post-cta h3 { font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.post-cta p { font-size: 15px; color: oklch(0.8 0.01 240); }
@media (max-width: 700px) {
  .post-title { font-size: 30px; }
}

/* ---------- FAQ ---------- */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.faq-item summary {
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  cursor: pointer; list-style: none; font-family: var(--font-heading); font-weight: 600; font-size: 17px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: oklch(0.98 0.006 232); }
.faq-item summary::after {
  content: '+'; font-family: var(--font-mono); color: var(--link); font-size: 18px; flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-a { padding: 0 24px 22px; font-size: 16px; line-height: 1.7; color: var(--ink-soft2); }
.faq-list { display: flex; flex-direction: column; gap: 10px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.contact-form-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 32px; }
.consent-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--ink-mute); line-height: 1.55; }
.consent-row input { margin-top: 3px; }
.contact-side { display: flex; flex-direction: column; gap: 20px; }
.contact-card { background: var(--dark); color: #fff; border-radius: 18px; padding: 30px; }
.contact-card h2 { font-size: 22px; font-weight: 600; margin-bottom: 20px; }
.contact-detail-list { display: flex; flex-direction: column; gap: 14px; font-size: 15px; line-height: 1.6; }
.contact-detail-list .k { color: var(--dark-muted); font-size: 13px; }
.contact-detail-list a { color: oklch(0.78 0.12 232); }
.contact-map { height: 260px; border-radius: 18px; overflow: hidden; position: relative; border: 1px solid var(--line); }
.contact-map img { width: 100%; height: 100%; object-fit: cover; }
.contact-regions { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px; }
.contact-regions h3 { font-size: 17px; font-weight: 600; margin-bottom: 12px; }
.contact-regions p { font-size: 14px; color: var(--ink-mute); line-height: 1.7; }
.form-thanks { padding: 30px 0; text-align: center; }
.form-thanks h2 { font-family: var(--font-heading); font-size: 24px; font-weight: 700; margin-bottom: 10px; }
.form-thanks p { font-size: 15px; color: var(--ink-mute); line-height: 1.6; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Legal ---------- */
.legal-wrap { max-width: 880px; margin: 0 auto; padding: 56px 24px 88px; }
.legal-wrap h1 { font-size: 40px; font-weight: 700; margin-bottom: 10px; }
.legal-updated { font-family: var(--font-mono); font-size: 13px; color: var(--ink-faint); margin-bottom: 36px; }
.legal-block { margin-bottom: 30px; }
.legal-block h2 { font-size: 22px; font-weight: 600; margin-bottom: 12px; }
.legal-block p { font-size: 16px; line-height: 1.75; color: var(--ink-soft2); margin-bottom: 12px; }
.legal-footer-note {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px;
  font-size: 14px; line-height: 1.7; color: var(--ink-soft2);
}

/* ---------- Sitemap ---------- */
.sitemap-wrap { max-width: 1000px; margin: 0 auto; padding: 64px 24px 88px; }
.sitemap-wrap h1 { font-size: 42px; font-weight: 700; margin-bottom: 32px; }
.sitemap-col { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.sitemap-col h3 { font-size: 16px; font-weight: 600; margin-bottom: 14px; }
.sitemap-col ul { display: flex; flex-direction: column; gap: 9px; }
.sitemap-col a { font-size: 14px; color: var(--ink-soft2); }
.sitemap-col a:hover { color: var(--link-mid); }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark-2); color: #fff; margin-top: auto; }
.footer-grid {
  max-width: var(--container); margin: 0 auto; padding: 64px 24px 32px;
  display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand span { font-family: var(--font-heading); font-weight: 700; font-size: 18px; }
.footer-about { font-size: 14px; line-height: 1.7; color: var(--dark-muted); margin-bottom: 18px; }
.footer-contact { font-size: 14px; line-height: 1.8; color: var(--dark-text-soft); }
.footer-contact a { color: oklch(0.78 0.12 232); }
.footer-col-title {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--dark-text-soft); }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--dark-border-3); }
.footer-bottom .container {
  padding: 20px 24px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-faint);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Cart drawer ---------- */
.cart-overlay {
  position: fixed; inset: 0; z-index: 60; display: none; justify-content: flex-end;
}
.cart-overlay.is-open { display: flex; }
.cart-backdrop { position: absolute; inset: 0; background: rgba(11,18,24,0.5); border: none; padding: 0; }
.cart-panel {
  position: relative; width: 440px; max-width: 92vw; height: 100%; background: #fff;
  display: flex; flex-direction: column; animation: scslide 0.28s ease both;
}
.cart-head {
  padding: 22px 24px; border-bottom: 1px solid var(--line); display: flex;
  justify-content: space-between; align-items: center;
}
.cart-head h2 { font-size: 20px; font-weight: 600; }
.cart-close { cursor: pointer; font-size: 22px; color: var(--ink-faint); line-height: 1; background: none; border: none; }
.cart-close:hover { color: var(--dark); }
.cart-body { flex: 1; overflow-y: auto; padding: 20px 24px; }
.cart-empty { padding: 40px 0; text-align: center; color: var(--ink-faint); }
.cart-empty p { font-size: 15px; line-height: 1.6; margin-bottom: 18px; }
.cart-lines { display: flex; flex-direction: column; gap: 14px; }
.cart-line { display: flex; gap: 14px; padding-bottom: 14px; border-bottom: 1px solid var(--line-faint); }
.cart-line__thumb { width: 64px; height: 64px; border-radius: 10px; background: var(--card-tint-2); flex-shrink: 0; }
.cart-line__body { flex: 1; }
.cart-line__name { font-weight: 600; font-size: 14px; line-height: 1.35; margin-bottom: 4px; }
.cart-line__unit { font-family: var(--font-mono); font-size: 12px; color: var(--ink-faint); margin-bottom: 8px; }
.cart-line__qty { display: flex; align-items: center; gap: 10px; }
.qty-btn {
  width: 28px; height: 28px; border: 1px solid var(--line-strong); border-radius: 8px; display: flex;
  align-items: center; justify-content: center; cursor: pointer; background: #fff; font-family: var(--font-mono);
}
.qty-btn:hover { border-color: var(--dark); }
.qty-val { font-family: var(--font-mono); font-size: 14px; min-width: 18px; text-align: center; }
.cart-line__del { margin-left: auto; font-size: 12px; color: #9aa5b1; cursor: pointer; background: none; border: none; }
.cart-line__del:hover { color: var(--danger); }
.cart-line__sum { font-family: var(--font-heading); font-weight: 700; font-size: 15px; white-space: nowrap; }
.cart-foot { border-top: 1px solid var(--line); padding: 20px 24px; background: var(--input-bg); }
.cart-totals { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; font-size: 14px; }
.cart-totals .row { display: flex; justify-content: space-between; }
.cart-totals .row span:first-child { color: var(--ink-mute); }
.cart-totals .row.grand {
  font-family: var(--font-heading); font-weight: 700; font-size: 19px; padding-top: 8px;
  border-top: 1px solid var(--line-strong);
}
.cart-foot p.note { font-size: 12px; color: var(--ink-faint); margin-top: 12px; line-height: 1.5; }
.checkout-fields { display: flex; flex-direction: column; gap: 12px; margin: 16px 0; }
.checkout-fields .field { margin-bottom: 0; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; bottom: 18px; left: 18px; right: 18px; z-index: 70; display: none; justify-content: center;
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner__inner {
  max-width: 920px; width: 100%; background: var(--dark); color: #fff; border-radius: 16px; padding: 24px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  box-shadow: 0 18px 44px rgba(11,18,24,0.35);
}
.cookie-banner h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.cookie-banner p { font-size: 14px; line-height: 1.6; color: oklch(0.82 0.01 240); }
.cookie-banner p a { color: oklch(0.78 0.12 232); }
.cookie-actions { display: flex; flex-direction: column; gap: 9px; min-width: 190px; }
@media (max-width: 640px) {
  .cookie-banner__inner { grid-template-columns: 1fr; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
