:root {
  --ink: #111318;
  --muted: #62666f;
  --paper: #fffdf8;
  --cream: #f4f1e9;
  --red: #e10600;
  --line: rgba(17, 19, 24, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "DM Sans", system-ui, sans-serif; }
a { color: inherit; text-decoration: none; }
.site-header { min-height: 78px; max-width: 1240px; margin: 0 auto; padding: 12px 5vw; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-mark { width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: var(--red); border-radius: 10px 10px 10px 2px; font: 800 14px/1 Manrope, sans-serif; transform: rotate(-3deg); }
.brand-copy { display: grid; gap: 4px; }
.brand-copy strong { font: 800 14px/1 Manrope, sans-serif; letter-spacing: .06em; }
.brand-copy small { color: var(--muted); font-size: 9px; letter-spacing: .18em; }
.header-actions { display: flex; gap: 10px; }
.button { min-height: 48px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; border: 1px solid var(--line); border-radius: 100px; font-weight: 800; }
.button-primary { color: #fff; border-color: var(--red); background: var(--red); box-shadow: 0 10px 28px rgba(225, 6, 0, .2); }
.button-dark { color: #fff; border-color: var(--ink); background: var(--ink); }
.crumbs { max-width: 1240px; margin: 0 auto; padding: 25px 5vw 0; color: var(--muted); font-size: 14px; }
.crumbs a { text-decoration: underline; text-underline-offset: 3px; }
.service-hero { max-width: 1240px; margin: 0 auto; padding: clamp(48px, 8vw, 96px) 5vw; display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(35px, 6vw, 80px); align-items: center; }
.eyebrow { margin: 0 0 18px; color: var(--red); font: 800 12px/1 Manrope, sans-serif; letter-spacing: .15em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: Manrope, sans-serif; letter-spacing: -.04em; }
h1 { max-width: 760px; font-size: clamp(44px, 6.5vw, 82px); line-height: .98; }
.lead { max-width: 720px; margin: 27px 0; color: var(--muted); font-size: clamp(17px, 1.8vw, 21px); line-height: 1.65; }
.price { margin: 0 0 26px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 10px; }
.price strong { font: 800 clamp(36px, 5vw, 58px)/1 Manrope, sans-serif; }
.price span { color: var(--muted); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.flyer { margin: 0; overflow: hidden; border-radius: 28px 28px 8px 28px; background: var(--ink); box-shadow: 0 24px 70px rgba(17,19,24,.18); }
.flyer img { display: block; width: 100%; height: auto; }
.details { padding: 84px max(5vw, calc((100vw - 1240px)/2 + 5vw)); display: grid; grid-template-columns: 1fr 1fr; gap: 22px; background: var(--cream); }
.details article { padding: clamp(26px, 4vw, 44px); border: 1px solid var(--line); border-radius: 22px; background: var(--paper); }
.details h2 { margin-bottom: 20px; font-size: clamp(28px, 3.3vw, 43px); }
.details p, .details li { color: var(--muted); font-size: 16px; line-height: 1.7; }
.details ul { margin: 0; padding-left: 21px; }
.local-cta { padding: 86px 5vw; color: #fff; background: var(--ink); text-align: center; }
.local-cta h2 { margin: 0 auto 18px; max-width: 780px; font-size: clamp(33px, 5vw, 58px); }
.local-cta p { max-width: 650px; margin: 0 auto 28px; color: #bec0c5; font-size: 17px; line-height: 1.7; }
.local-cta .hero-actions { justify-content: center; }
.site-footer { padding: 28px 5vw; display: flex; justify-content: space-between; gap: 28px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.mobile-actions { display: none; }
:focus-visible { outline: 3px solid #b60400; outline-offset: 3px; }

@media (max-width: 760px) {
  body { padding-bottom: 72px; }
  .site-header { min-height: 70px; }
  .brand-copy small, .header-actions .button:first-child { display: none; }
  .header-actions .button { min-height: 44px; padding-inline: 15px; font-size: 13px; }
  .service-hero, .details { grid-template-columns: 1fr; }
  .service-hero { padding-top: 48px; }
  .flyer { max-width: 560px; }
  .details { padding-block: 66px; }
  .site-footer { flex-direction: column; text-align: center; }
  .mobile-actions { position: fixed; z-index: 80; left: 10px; right: 10px; bottom: 10px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px; border-radius: 18px; background: rgba(17,19,24,.96); box-shadow: 0 14px 40px rgba(0,0,0,.28); }
  .mobile-actions a { min-height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 12px; color: #fff; font-weight: 800; }
  .mobile-actions a:last-child { background: var(--red); }
}
