:root {
  --ink: #111820;
  --ink-2: #1d2833;
  --steel: #60707e;
  --steel-2: #d8dee5;
  --paper: #ffffff;
  --soft: #f4f6f8;
  --accent: #cf142f;
  --accent-dark: #a70f25;
  --line: #dce2e8;
  --shadow: 0 18px 48px rgba(17, 24, 32, 0.16);
  --radius: 8px;
  --container: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
::selection { background: var(--accent); color: var(--paper); }
img, svg { display: block; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
button, input, textarea { font: inherit; }
svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-150%);
  background: var(--paper);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 850;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 1px 0 rgba(17,24,32,0.08);
  backdrop-filter: blur(12px);
}
.topline { display: none; background: var(--ink); color: var(--paper); font-size: 0.9rem; }
.topline__inner {
  min-height: 36px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
}
.topline a { color: var(--paper); font-weight: 850; text-decoration: none; }
.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { flex: 0 0 auto; width: clamp(190px, 42vw, 260px); }
.brand img { width: 100%; max-height: 92px; object-fit: contain; object-position: left center; }
.nav-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span:not(.sr-only) { width: 20px; height: 2px; background: currentColor; border-radius: 999px; }
.nav-menu {
  position: absolute;
  inset: 82px 16px auto 16px;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.nav-menu.is-open { display: flex; }
.nav-menu a {
  padding: 12px 14px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
  border-radius: 6px;
}
.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a[aria-current="page"] { background: var(--soft); color: var(--accent); }

.section-dark {
  color: var(--paper);
  background:
    linear-gradient(105deg, rgba(17, 24, 32, 0.98) 0%, rgba(17, 24, 32, 0.93) 54%, rgba(17, 24, 32, 0.78) 100%),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 16px),
    var(--ink);
}
.hero__grid,
.page-hero__grid {
  display: grid;
  gap: 34px;
  align-items: center;
  padding-block: clamp(54px, 8vw, 94px);
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.section-dark .eyebrow { color: #ff5f73; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; line-height: 1.05; letter-spacing: 0; }
h1 { max-width: 840px; font-size: clamp(2.35rem, 7vw, 5.1rem); }
h2 { font-size: clamp(1.9rem, 4.6vw, 3.25rem); }
h3 { font-size: 1.15rem; }
.hero__lead {
  max-width: 720px;
  margin: 20px 0 0;
  color: #e8edf2;
  font-size: clamp(1.08rem, 2.4vw, 1.3rem);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-1px); }
.button--accent { color: var(--paper); background: var(--accent); }
.button--accent:hover, .button--accent:focus-visible { background: var(--accent-dark); }
.button--light { color: var(--ink); background: var(--paper); }
.button--ghost { color: var(--paper); border-color: rgba(255,255,255,0.38); background: rgba(255,255,255,0.08); }
.button--dark { color: var(--paper); background: var(--ink); }

.hero-media,
.page-hero__image,
.rounded-media {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-media {
  position: relative;
  min-height: 420px;
  margin: 0;
  background: var(--ink-2);
}
.hero-media > img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,24,32,0.08), rgba(17,24,32,0.62));
}
.hero-badge {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(132px, 220px) 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  color: var(--ink);
  background: rgba(255,255,255,0.94);
  border-radius: var(--radius);
  box-shadow: 0 18px 38px rgba(0,0,0,0.25);
}
.hero-badge img { width: 100%; max-height: 84px; object-fit: contain; }
.hero-badge span { font-weight: 850; }
.page-hero__image,
.rounded-media {
  width: 100%;
  height: min(56vw, 460px);
  object-fit: cover;
}

.trust-band { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-band__grid { display: grid; gap: 1px; background: var(--line); border-inline: 1px solid var(--line); }
.trust-band__grid div { min-height: 108px; padding: 22px; background: var(--paper); }
.trust-band strong { display: block; font-size: 1.02rem; }
.trust-band span { display: block; margin-top: 5px; color: var(--steel); font-size: 0.94rem; }

.section { padding-block: clamp(58px, 8vw, 96px); }
.section-split,
.gallery,
.reputation { background: var(--soft); }
.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}
.section-heading--left { margin-inline: 0; text-align: left; }
.section-heading p:not(.eyebrow),
.split-copy p,
.contact p,
.cta-row p {
  color: #4d5b66;
  font-size: 1.04rem;
}

.feature-grid,
.service-detail-grid,
.reputation-cards,
.contact-cards,
.gallery-grid {
  display: grid;
  gap: 14px;
}
.image-card,
.gallery-tile {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  border-radius: var(--radius);
  color: var(--paper);
  text-decoration: none;
  background: var(--ink-2);
  box-shadow: 0 12px 30px rgba(17,24,32,0.08);
}
.image-card img,
.gallery-tile img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 260ms ease;
}
.image-card:hover img,
.gallery-tile:hover img { transform: scale(1.035); }
.image-card::after,
.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(17,24,32,0.84) 100%);
}
.image-card span,
.gallery-tile span,
.gallery-tile figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  font-weight: 950;
  font-size: 1.05rem;
}
.center-action { display: flex; justify-content: center; margin-top: 26px; }

.split-grid,
.reputation__grid,
.contact-grid,
.cta-row {
  display: grid;
  gap: 34px;
  align-items: center;
}
.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0;
  list-style: none;
}
.check-list li { position: relative; padding-left: 30px; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 0 0 4px var(--paper);
}
.text-link {
  color: var(--accent);
  font-weight: 900;
  text-decoration-thickness: 2px;
}

.service-detail {
  display: grid;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(17,24,32,0.06);
}
.service-detail img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 6px;
}
.service-detail p { color: #52616d; }
.service-detail--callout { border-color: rgba(207,20,47,0.35); background: linear-gradient(145deg, #fff, #fff3f5); }
.service-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--accent);
  background: #fff0f2;
  border-radius: var(--radius);
}

.reputation-cards article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}
.reputation-cards p { margin: 7px 0 0; color: #52616d; }
.gallery-grid--full .gallery-tile { min-height: 290px; }

.contact-strip { background: var(--ink); color: var(--paper); }
.contact-strip .eyebrow { color: #ff5f73; }
.contact-strip p { color: #dce2e8; }
.cta-row__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.contact { background: var(--paper); }
.contact-cards { margin: 26px 0; }
.contact-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}
.contact-card svg { flex: 0 0 auto; color: var(--accent); }
.contact-card small { display: block; margin-top: 3px; color: var(--steel); }
.map { width: 100%; min-height: 320px; border: 0; border-radius: var(--radius); background: var(--soft); }
.request-form {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}
.request-form .form-note { margin: 10px 0 20px; color: #cfd8e1; }
.request-form label { display: block; margin-top: 14px; font-weight: 850; }
.request-form input,
.request-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 2px solid transparent;
  border-radius: 6px;
}
.request-form input:focus,
.request-form textarea:focus { outline: 0; border-color: #ff6a7c; }
.consent { display: grid !important; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; }
.consent input { width: 18px; height: 18px; margin-top: 3px; }
.hidden-field { display: none; }
.request-form .button { width: 100%; margin-top: 20px; }
.form-status { min-height: 24px; margin: 14px 0 0; color: #dce9de; font-weight: 750; }

.footer { padding: 44px 0 82px; color: #d8e1e8; background: #0c1218; }
.footer__grid { display: grid; gap: 24px; justify-items: center; text-align: center; }
.footer__brand {
  display: inline-grid;
  place-items: center;
  padding: 12px 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.96);
  box-shadow: 0 16px 34px rgba(0,0,0,0.28);
}
.footer img { width: 190px; max-height: 96px; object-fit: contain; }
.footer p { margin: 12px 0 0; color: #aeb8c2; }
.footer__actions { display: grid; gap: 10px; align-content: start; justify-items: center; }
.footer__actions a { color: var(--paper); font-weight: 900; }
.site-credit {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #84919d;
  font-size: 0.78rem;
  text-align: center;
}
.site-credit a {
  color: #aeb8c2;
  font-weight: 800;
  text-decoration: none;
}
.site-credit a:hover,
.site-credit a:focus-visible { color: var(--paper); text-decoration: underline; }
.mobile-call {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 60;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--paper);
  background: var(--accent);
  border-radius: var(--radius);
  box-shadow: 0 18px 36px rgba(17,24,32,0.28);
  text-decoration: none;
  font-weight: 950;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.mobile-call.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

@media (min-width: 640px) {
  .trust-band__grid,
  .feature-grid,
  .gallery-grid,
  .reputation-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-tile--wide { grid-column: span 2; }
  .service-detail { grid-template-columns: 0.85fr 1.15fr; align-items: center; }
  .service-detail img { height: 100%; min-height: 280px; }
}

@media (min-width: 900px) {
  .topline { display: block; }
  .nav { min-height: 104px; }
  .brand { width: 250px; }
  .nav-toggle { display: none; }
  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .nav-menu a { padding: 10px 11px; font-size: 0.96rem; }
  .hero__grid,
  .page-hero__grid { grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.9fr); }
  .trust-band__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .split-grid,
  .contact-grid,
  .reputation__grid,
  .cta-row { grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr); }
  .gallery-grid { grid-template-columns: 1.2fr 0.8fr 0.8fr; }
  .gallery-tile--wide { grid-column: span 1; grid-row: span 2; min-height: 454px; }
  .service-detail:nth-child(even) img { order: 2; }
  .mobile-call { display: none; }
  .footer { padding-bottom: 42px; }
  .footer__grid { grid-template-columns: 1fr 1.2fr 0.6fr; align-items: start; justify-items: center; text-align: center; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 24px, var(--container)); }
  .hero__actions .button,
  .cta-row__actions .button { width: 100%; }
  .hero-badge { grid-template-columns: 1fr; }
  .hero-badge span { display: none; }
  .hero-media,
  .hero-media > img { min-height: 330px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

@media print {
  .site-header, .mobile-call, .nav-toggle, .footer, .hero__actions, .cta-row__actions, .icon-sprite, iframe { display: none !important; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  a[href^="tel:"]::after, a[href^="mailto:"]::after { content: " (" attr(href) ")"; font-size: 0.9em; }
  .section-dark { background: #fff !important; color: #000 !important; }
  .hero__lead, .section-heading p, p { color: #000 !important; }
  main { padding: 16px; }
  img { max-width: 100%; page-break-inside: avoid; }
  h1, h2, h3 { page-break-after: avoid; }
}
