:root {
  --bg: #f5f2eb;
  --surface: #fffaf2;
  --surface-strong: #151515;
  --text: #17120e;
  --muted: #615449;
  --line: rgba(23, 18, 14, 0.1);
  --danger: #ef3e24;
  --danger-deep: #bf240a;
  --accent: #ffb703;
  --shadow: 0 22px 60px rgba(23, 18, 14, 0.12);
  --radius: 24px;
  --container: 1200px;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --font-display: "Arial Black", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --font-body: "Trebuchet MS", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 183, 3, 0.18), transparent 26%),
    linear-gradient(180deg, #fff8ee 0%, #f5f2eb 42%, #fbf7f0 100%);
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: 999px;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(255, 248, 238, 0.9);
  border-bottom: 1px solid rgba(23, 18, 14, 0.08);
}

.header-shell,
.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(180deg, var(--danger), var(--danger-deep));
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(239, 62, 36, 0.25);
  flex: 0 0 auto;
}

.brand-mark svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.82rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.1rem;
}

.header-contact span {
  font-size: 0.78rem;
  color: var(--muted);
}

.header-contact a {
  font-size: 1rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.35rem;
  border-radius: 16px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(180deg, var(--danger) 0%, var(--danger-deep) 100%);
  color: #fff;
  box-shadow: 0 18px 32px rgba(239, 62, 36, 0.24);
}

.button-secondary {
  background: #1b1b1b;
  color: #fff;
}

.button-large {
  min-height: 3.6rem;
  padding-inline: 1.6rem;
}

.hero {
  padding: var(--space-5) 0 var(--space-4);
}

.hero-grid,
.why-grid,
.contact-grid {
  display: grid;
  gap: var(--space-4);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.85rem;
  color: var(--danger-deep);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.eyebrow::before {
  content: "";
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 183, 3, 0.18);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.95;
}

h1,
h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.9rem, 8vw, 5.4rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  max-width: 12ch;
}

h3 {
  font-size: 1.15rem;
  line-height: 1.05;
}

.hero-text,
.section-intro p,
.service-card p,
.area-card p,
.contact-card,
.testimonial-card p,
.faq-list p,
.mini-card p,
.aside-box p {
  color: var(--muted);
}

.hero-text {
  margin: 1.1rem 0 0;
  font-size: 1.05rem;
  max-width: 60ch;
}

.hero-trust {
  margin: 1.1rem 0 0;
  font-weight: 800;
}

.price-strip {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: rgba(255, 183, 3, 0.2);
  color: #714700;
  font-weight: 900;
}

.hero-actions,
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.hero-points,
.check-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}

.hero-points {
  margin: 1.4rem 0 0;
}

.hero-points li,
.check-list li {
  position: relative;
  padding-left: 1.6rem;
  font-weight: 700;
}

.hero-points li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--danger);
}

.hero-panel {
  position: relative;
}

.media-frame {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2a2520, #54493d);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.media-hero {
  aspect-ratio: 5 / 4;
}

.callout-card,
.aside-box,
.mini-card,
.contact-card,
.final-cta-shell,
.map-card,
.service-card,
.area-card,
.step-card,
.testimonial-card,
.faq-list details {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.callout-card {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  background: rgba(21, 21, 21, 0.94);
  color: #fff;
  border-radius: 20px;
  max-width: 18rem;
}

.callout-card a {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--accent);
}

.callout-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-bar {
  padding-bottom: var(--space-4);
}

.trust-items {
  display: grid;
  gap: 0.85rem;
}

.trust-items > div {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 18, 14, 0.08);
  border-radius: 18px;
}

.section {
  padding: var(--space-5) 0;
}

.section-intro {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}

.section-intro-compact {
  max-width: 50rem;
}

.services-layout,
.service-aside,
.why-media-stack,
.faq-grid,
.faq-list,
.services-grid,
.areas-grid,
.steps-grid,
.testimonials-grid {
  display: grid;
  gap: 1rem;
}

.service-card,
.area-card,
.step-card,
.testimonial-card,
.contact-card,
.aside-box,
.mini-card,
.faq-list details {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  padding: 1.2rem;
}

.service-card h3,
.area-card h3 {
  margin-bottom: 0.55rem;
}

.check-list {
  margin: 1.35rem 0 0;
}

.mini-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.area-card-featured {
  background: linear-gradient(160deg, #171717, #252525);
  color: #fff;
}

.area-card-featured p {
  color: rgba(255, 255, 255, 0.74);
}

.step-card {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 14px;
  background: rgba(239, 62, 36, 0.12);
  color: var(--danger-deep);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  right: 0.75rem;
  top: -0.15rem;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(239, 62, 36, 0.16);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 900;
  padding-right: 2rem;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -0.1rem;
  font-size: 1.6rem;
  color: var(--danger);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0.9rem 0 0;
}

.map-card {
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 100%;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 1.25rem;
}

.contact-list div {
  display: grid;
  gap: 0.15rem;
}

.contact-list dt {
  font-weight: 900;
  color: var(--danger-deep);
}

.contact-list dd {
  margin: 0;
}

.contact-list a {
  font-weight: 800;
}

.media-small {
  aspect-ratio: 16 / 10;
}

.section-final-cta {
  padding-top: 0;
}

.final-cta-shell {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 28px;
  background: linear-gradient(135deg, #171717 0%, #2a1710 100%);
  color: #fff;
}

.site-footer {
  padding: 0 0 6rem;
}

.brand-footer .brand-mark {
  background: linear-gradient(180deg, #111, #313131);
  box-shadow: none;
}

.footer-shell {
  align-items: flex-start;
  border-top: 1px solid rgba(23, 18, 14, 0.08);
  padding-top: 1.25rem;
}

.footer-meta {
  text-align: right;
  color: var(--muted);
}

.footer-meta p {
  margin: 0;
}

.mobile-call-bar {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--danger), var(--danger-deep));
  color: #fff;
  box-shadow: 0 24px 50px rgba(191, 36, 10, 0.35);
}

.mobile-call-bar span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mobile-call-bar strong {
  font-size: 1.15rem;
}

.is-missing {
  min-height: 12rem;
}

.is-missing::after {
  content: "Image unavailable";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.85);
  background:
    linear-gradient(135deg, rgba(239, 62, 36, 0.26), rgba(21, 21, 21, 0.72)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 12px, transparent 12px 24px);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (min-width: 700px) {
  .trust-items,
  .steps-grid,
  .testimonials-grid,
  .services-grid,
  .areas-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

@media (min-width: 900px) {
  .hero {
    padding: var(--space-6) 0 var(--space-5);
  }

  .hero-grid,
  .why-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .services-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: start;
  }

  .areas-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .faq-grid {
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .trust-items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .final-cta-shell {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }
}

@media (max-width: 899px) {
  .header-contact {
    display: none;
  }

  .callout-card {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .footer-shell {
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 639px) {
  .brand-text span {
    display: none;
  }

  .site-header .button {
    min-height: 2.8rem;
    padding: 0.75rem 1rem;
  }

  .section {
    padding: 3.6rem 0;
  }

  .site-footer {
    padding-bottom: 6.5rem;
  }
}

@media (min-width: 960px) {
  .mobile-call-bar {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
