:root {
  --ink: #20242a;
  --ink-2: #2a2d34;
  --muted: #667085;
  --line: #e6e8ec;
  --soft: #f5f6f8;
  --red: #c8202b;
  --red-2: #e03742;
  --white: #fff;
  --shadow: 0 14px 34px rgba(25, 28, 34, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--ink-2);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: .02em; }
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--red);
}
.brand span span { color: var(--red-2); }
.links { display: flex; align-items: center; gap: 18px; font-size: 14px; font-weight: 700; }
.links a:hover { color: #ff737b; }
.call { display: flex; align-items: center; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-2); }
.btn-dark { background: var(--ink-2); color: var(--white); }
.btn-outline { border-color: rgba(255,255,255,.45); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--ink); }
.hero {
  min-height: 680px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(25,28,34,.94), rgba(42,45,52,.72)),
    url("assets/hero-workshop.jpg") center/cover;
}
.eyebrow {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(200,32,43,.18);
  border: 1px solid rgba(255,255,255,.22);
  color: #ff9ca2;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 16px; }
h1 { max-width: 760px; font-size: clamp(42px, 7vw, 76px); letter-spacing: 0; }
h2 { font-size: clamp(30px, 4vw, 44px); }
h3 { font-size: 22px; }
.hero p { max-width: 720px; font-size: 20px; color: rgba(255,255,255,.86); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.section { padding: 78px 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--ink-2); color: var(--white); }
.section-red { background: var(--red); color: var(--white); }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}
.kicker { color: var(--red); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.grid { display: grid; gap: 22px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.feature { text-align: center; padding: 18px; }
.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 999px;
  background: rgba(200,32,43,.1);
  color: var(--red);
  font-size: 26px;
}
.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-body { padding: 22px; }
.thumb { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.muted { color: var(--muted); }
.brand-grid { grid-template-columns: repeat(6, 1fr); }
.brand-pill {
  padding: 18px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  text-align: center;
  font-size: 18px;
  font-weight: 900;
}
.gallery { grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 8px; }
.quote { padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); }
.stars { color: var(--red); letter-spacing: 2px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.info-list li { display: flex; gap: 12px; align-items: flex-start; }
.form {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
label { display: block; margin: 0 0 6px; font-weight: 800; }
input, select, textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 12px;
  font: inherit;
}
.field { margin-bottom: 14px; }
.footer {
  padding: 54px 0 20px;
  background: linear-gradient(180deg, #20242a, #16191e);
  color: var(--white);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 30px; }
.footer a, .footer p, .footer li { color: rgba(255,255,255,.72); }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.copy { margin-top: 34px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.12); font-size: 13px; color: rgba(255,255,255,.58); }
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 26px;
}
@media (max-width: 980px) {
  .links { display: none; }
  .grid-4, .grid-3, .brand-grid, .gallery, .footer-grid, .split { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .call { display: none; }
  .hero { min-height: 620px; }
  .section-head { display: block; }
  .grid-4, .grid-3, .grid-2, .brand-grid, .gallery, .footer-grid, .split { grid-template-columns: 1fr; }
}

.home-hero{min-height:88vh;display:flex;align-items:center;color:#fff;background:linear-gradient(135deg,rgba(23,26,31,.94),rgba(42,45,52,.72)),url("assets/hero-workshop.jpg") center/cover}.home-hero h1{max-width:800px}.home-hero h1 span{color:#ff5963}.home-hero p{max-width:760px;font-size:20px;color:rgba(255,255,255,.85)}.page-hero{padding:76px 0;color:#fff;background-size:cover;background-position:center}.page-hero.plain{background:var(--ink-2);color:#fff}.page-hero p{max-width:780px;color:rgba(255,255,255,.84);font-size:18px}.crumb{font-size:14px;margin-bottom:14px;color:rgba(255,255,255,.72)}.crumb a:hover{color:#ff737b}.center{text-align:center}.brand-card{padding:28px 18px;border:1px solid var(--line);border-radius:8px;background:#fff;text-align:center;transition:.25s}.brand-card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:var(--red)}.brand-card h2{font-size:26px}.brand-card p{font-size:13px;color:var(--muted)}.brand-card span{color:var(--red);font-weight:900;font-size:13px}.gallery-page{grid-template-columns:repeat(3,1fr)}figure{margin:0;position:relative;overflow:hidden;border-radius:8px;border:1px solid var(--line);background:#fff}figure img{width:100%;aspect-ratio:4/3;object-fit:cover}figcaption{position:absolute;inset:auto 0 0;padding:14px;color:#fff;background:linear-gradient(transparent,rgba(0,0,0,.82));font-size:14px}.prose{max-width:880px}.prose p,article p{color:var(--muted)}.detail{display:grid;grid-template-columns:minmax(0,2fr) 360px;gap:44px;align-items:start}article{display:grid;gap:22px}.check-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin:0;padding:0;list-style:none}.check-grid li,.check-grid div{padding:12px 14px;border-radius:8px;background:var(--soft);font-weight:700}.steps{display:grid;gap:12px;margin:0;padding:0;counter-reset:step;list-style:none}.steps li{padding:16px 16px 16px 54px;border-radius:8px;background:var(--soft);font-weight:800;position:relative}.steps li:before{counter-increment:step;content:counter(step);position:absolute;left:16px;top:13px;width:28px;height:28px;border-radius:999px;background:var(--red);color:#fff;display:grid;place-items:center}.side-cta{position:sticky;top:88px;padding:26px;border-radius:8px;background:var(--ink-2);color:#fff;display:grid;gap:12px}.side-cta p{color:rgba(255,255,255,.8)}.btn-outline-dark{border-color:rgba(255,255,255,.45);color:#fff;background:transparent}.service-list{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}.service-list a{padding:16px;border:1px solid var(--line);border-radius:8px}.service-list span{display:block;color:var(--muted);font-size:13px}.stat{padding:28px;background:#fff;border:1px solid var(--line);border-radius:8px;text-align:center;font-size:38px;font-weight:900}.stat span{display:block;font-size:14px;color:var(--muted)}.info-list li{display:grid;gap:2px}.info-list strong{font-weight:900}.info-list span,.info-list a{color:var(--muted)}@media(max-width:1020px){.gallery-page{grid-template-columns:repeat(2,1fr)}.detail{grid-template-columns:1fr}.side-cta{position:static}}@media(max-width:640px){.gallery-page,.check-grid,.service-list{grid-template-columns:1fr}.home-hero{min-height:720px}}
