:root {
  --ink: #171717;
  --muted: #666b73;
  --line: #e7e0d6;
  --paper: #fbfaf7;
  --white: #ffffff;
  --red: #d51a27;
  --red-dark: #9f121c;
  --gold: #c4972f;
  --green: #0f766e;
  --shadow: 0 20px 60px rgba(23, 23, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(251, 250, 247, 0.94);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.05rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.nav a,
.text-link {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.nav a:hover,
.text-link:hover {
  color: var(--red);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #111;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(850px, 100%);
  padding: clamp(92px, 12vw, 150px) clamp(20px, 6vw, 72px) clamp(34px, 7vw, 76px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffcf55;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 5.5vw, 4.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 2.8vw, 2.75rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.15;
}

.hero-text {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.8vw, 1.26rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(213, 26, 39, 0.28);
}

.btn.primary:hover {
  background: var(--red-dark);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border-color: rgba(23, 23, 23, 0.12);
}

.btn.wide {
  width: 100%;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
  margin: clamp(28px, 4vw, 44px) 0 0;
}

.hero-facts div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-facts dt {
  font-size: 1.25rem;
  font-weight: 950;
}

.hero-facts dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip span {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: var(--white);
  color: #38332d;
  font-weight: 850;
  text-align: center;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) 0;
}

.decision,
.split,
.proof,
.areas,
.certificate,
.contact,
.payment-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.decision {
  width: min(1280px, calc(100% - 40px));
  margin-top: clamp(54px, 8vw, 90px);
  margin-bottom: clamp(54px, 8vw, 90px);
  padding: clamp(22px, 4vw, 46px);
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}

.decision-copy p,
.section-copy p,
.proof p,
.certificate p,
.contact p,
.faq p,
.payment-card p {
  color: var(--muted);
  font-size: 1.04rem;
}

.decision .decision-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.decision-photo {
  width: 100%;
  max-height: 330px;
  margin-top: 26px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 32%;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.decision-stack {
  display: grid;
  gap: 12px;
}

.decision-stack article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.decision-stack strong {
  font-size: 1.02rem;
}

.decision-stack span {
  color: rgba(255, 255, 255, 0.7);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.price-panel {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pricing-section {
  padding-top: 20px;
}

.price-note {
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding: 18px;
  background: #f3eee6;
  border-left: 4px solid var(--red);
  border-radius: 8px;
}

.price-note span {
  color: var(--muted);
}

.price-group {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-group.accent {
  border-color: rgba(213, 26, 39, 0.25);
  background: #fff7f7;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.price-row strong {
  white-space: nowrap;
}

.situation-section {
  padding-top: 20px;
}

.situation-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 14px;
}

.situation-main {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 5vw, 46px);
  background:
    linear-gradient(145deg, rgba(213, 26, 39, 0.92), rgba(159, 18, 28, 0.92)),
    var(--red);
  color: var(--white);
  border-radius: 8px;
}

.situation-main h3 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.situation-main p {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
}

.label {
  width: max-content;
  margin-bottom: 20px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-cases {
  display: grid;
  gap: 14px;
}

.mini-cases article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 110px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-cases span {
  margin-top: 8px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.card {
  min-height: 250px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(213, 26, 39, 0.35);
  box-shadow: var(--shadow);
}

.card p {
  color: var(--muted);
}

.icon {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--red);
  font-weight: 950;
}

.service-media-row {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 14px;
  margin-top: 18px;
}

.service-media-row img {
  width: 100%;
  height: clamp(220px, 28vw, 360px);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.proof {
  width: 100%;
  max-width: none;
  padding-inline: clamp(20px, 6vw, 72px);
  background: var(--ink);
  color: var(--white);
}

.proof img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.proof p {
  color: rgba(255, 255, 255, 0.76);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 3px;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.step-list li {
  min-height: 188px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  counter-increment: steps;
}

.step-list li::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  margin-bottom: 34px;
  color: var(--green);
  font-weight: 950;
}

.step-list strong,
.step-list span {
  display: block;
}

.step-list span {
  margin-top: 8px;
  color: var(--muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(34px, 5vw, 56px) clamp(20px, 6vw, 72px);
  background: var(--red);
  color: var(--white);
}

.cta-band .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.cta-band .btn.primary {
  background: var(--white);
  color: var(--red);
  box-shadow: none;
  flex: 0 0 auto;
}

.payment-section {
  align-items: stretch;
}

.payment-card {
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.payment-grid span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #332c24;
  font-weight: 900;
}

.pay-badge b {
  display: block;
  font-size: 1.22rem;
  line-height: 1;
}

.pay-badge em {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 800;
}

.pay-badge.paypal b {
  color: #003087;
}

.pay-badge.klarna {
  background: #ffb3c7;
  border-color: #ff9db8;
}

.pay-badge.klarna b {
  color: #111;
}

.pay-badge.visa b {
  color: #1434cb;
}

.pay-badge.giro b {
  color: #0a7f56;
}

.pay-badge.cash b,
.pay-badge.card b {
  color: var(--red);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tags span,
.area-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.area-tags a:hover {
  border-color: rgba(213, 26, 39, 0.35);
  color: var(--red);
}

.studio-section {
  width: min(1320px, calc(100% - 40px));
  margin: clamp(56px, 8vw, 96px) auto;
  padding: clamp(18px, 3vw, 30px);
  background: #161616;
  border-radius: 8px;
  color: var(--white);
}

.studio-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: stretch;
}

.studio-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 560px;
  padding: clamp(22px, 4vw, 42px);
  background: #242424;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.studio-copy .eyebrow {
  color: #ffcf55;
}

.studio-copy h2 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(1.7rem, 2.6vw, 2.55rem);
}

.studio-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
}

.studio-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.studio-actions span {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 560px;
}

.studio-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
}

.studio-card.large {
  grid-row: span 2;
}

.studio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.studio-card.large img {
  object-position: center 38%;
}

.studio-card:not(.large) img {
  object-position: center;
}

.studio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08) 58%);
}

.studio-card:hover img {
  transform: scale(1.025);
}

.studio-card div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.studio-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #ffcf55;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.studio-card h3 {
  max-width: 340px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
}

.certificate {
  align-items: stretch;
  padding-top: 30px;
}

.certificate-copy {
  padding: clamp(24px, 4vw, 38px);
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}

.certificate-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.certificate-facts {
  display: grid;
  gap: 10px;
}

.certificate-facts span {
  display: grid;
  align-content: center;
  min-height: 104px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
}

.certificate-facts strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  padding: 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.contact {
  border-top: 1px solid var(--line);
}

.contact-actions {
  justify-content: flex-start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(213, 26, 39, 0.28);
  border-color: rgba(213, 26, 39, 0.55);
}

.contact-form > input[name="website"] {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 700;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
}

.consent a {
  color: var(--red);
  font-weight: 900;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 6vw, 72px) 90px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer a {
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
}

.mobile-call {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  background: var(--red);
  color: var(--white);
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(23, 23, 23, 0.28);
  font-weight: 950;
  text-decoration: none;
}

.subpage {
  min-height: 70vh;
}

.subpage-hero {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(76px, 10vw, 130px) 0 clamp(42px, 7vw, 76px);
}

.subpage-hero h1 {
  max-width: 780px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.subpage-hero p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-hero {
  padding-bottom: 28px;
}

.legal-content {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto clamp(70px, 9vw, 110px);
  padding: clamp(24px, 4vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-content h2 {
  margin: 32px 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
}

.legal-content a {
  color: var(--red);
  font-weight: 900;
}

.service-page {
  background: var(--paper);
}

.service-hero {
  width: min(1280px, calc(100% - 40px));
  margin: clamp(38px, 6vw, 72px) auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: stretch;
}

.service-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 58px);
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}

.service-hero .eyebrow {
  color: #ffcf55;
}

.service-hero h1 {
  max-width: 760px;
  font-size: clamp(2.05rem, 4.4vw, 4rem);
}

.service-hero p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
}

.service-hero img {
  width: 100%;
  min-height: 520px;
  max-height: 680px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.service-detail-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto clamp(42px, 7vw, 80px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-detail-grid article {
  min-height: 230px;
  padding: clamp(20px, 3vw, 28px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-detail-grid span {
  display: block;
  margin-bottom: 36px;
  color: var(--red);
  font-weight: 950;
}

.service-detail-grid h2 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.service-detail-grid p {
  color: var(--muted);
}

.service-module {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto clamp(42px, 7vw, 80px);
}

.service-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(20px, 5vw, 54px);
  align-items: stretch;
}

.service-split img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.service-panel {
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-panel p {
  color: var(--muted);
}

.service-checks {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-checks li {
  padding: 14px 16px;
  background: #f3eee6;
  border-radius: 8px;
  color: #332c24;
  font-weight: 800;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.process-strip span {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
  background: var(--white);
  color: var(--muted);
}

.process-strip strong {
  color: var(--ink);
}

.district-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.district-link-grid a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.district-link-grid a:hover {
  border-color: rgba(213, 26, 39, 0.35);
  color: var(--red);
}

.service-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto clamp(70px, 9vw, 110px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 5vw, 52px);
  background: var(--red);
  color: var(--white);
  border-radius: 8px;
}

.service-cta h2 {
  margin-bottom: 6px;
}

.service-cta p {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.service-cta .btn.primary {
  background: var(--white);
  color: var(--red);
  box-shadow: none;
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.38));
  }

  .trust-strip,
  .service-grid,
  .service-media-row,
  .step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .decision,
  .split,
  .proof,
  .areas,
  .certificate,
  .contact,
  .payment-section,
  .situation-layout {
    grid-template-columns: 1fr;
  }

  .studio-inner,
  .studio-grid,
  .service-hero,
  .service-detail-grid,
  .service-split,
  .process-strip {
    grid-template-columns: 1fr;
  }

  .service-hero img {
    min-height: 360px;
  }

  .service-cta {
    display: grid;
  }

  .studio-copy,
  .studio-grid {
    min-height: auto;
  }

  .studio-card.large {
    grid-row: auto;
  }

  .decision-stack article {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 10px 14px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand small {
    display: none;
  }

  .header-call {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding: 94px 18px 30px;
  }

  h1 {
    font-size: clamp(2.05rem, 11vw, 3.35rem);
  }

  .hero-actions .btn,
  .contact-actions .btn,
  .contact-form {
    width: 100%;
  }

  .hero-facts,
  .trust-strip,
  .service-grid,
  .service-media-row,
  .step-list,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .trust-strip span {
    min-height: 58px;
  }

  .section {
    width: min(100% - 28px, 1180px);
    padding: 54px 0;
  }

  .card,
  .step-list li {
    min-height: auto;
  }

  .cta-band {
    display: grid;
  }

  .cta-band .btn {
    width: 100%;
  }

  .mobile-call {
    display: flex;
  }
}
