:root {
  --bg: #f5f2ed;
  --paper: #ffffff;
  --paper-soft: #fbf8f4;
  --ink: #303030;
  --ink-soft: #645f5d;
  --red: #ee1d23;
  --red-deep: #ba1117;
  --yellow: #efe637;
  --coal: #252525;
  --coal-soft: #3d3a3a;
  --line: #ddd6cf;
  --shadow: 0 30px 80px rgba(24, 20, 20, 0.12);
  --shadow-soft: 0 18px 42px rgba(24, 20, 20, 0.08);
  --radius: 28px;
  --content-width: min(1180px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6.5rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Public Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(239, 230, 55, 0.22), transparent 20%),
    linear-gradient(180deg, #faf7f2 0%, #f5f2ed 38%, #f1ece4 100%);
}

body.nav-open {
  overflow: hidden;
}

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

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

p,
ul {
  margin: 0;
}

.section-shell,
.site-header__inner,
.site-footer__inner {
  width: var(--content-width);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  isolation: isolate;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(48, 48, 48, 0.08);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header--solid {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(48, 48, 48, 0.1);
  box-shadow: 0 12px 28px rgba(24, 20, 20, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.6rem;
}

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

.brand__logo {
  flex: 0 0 auto;
  width: 3.6rem;
  height: 4.35rem;
  overflow: hidden;
}

.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand__copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.brand__copy strong,
h1,
h2,
h3,
.button,
.nav-toggle,
.hero__callout strong,
.trust-panel strong,
.service-card__eyebrow,
.eyebrow {
  font-family: "League Spartan", sans-serif;
}

.brand__copy strong {
  font-size: 1.15rem;
  letter-spacing: 0.01em;
}

.brand__copy span {
  color: var(--ink-soft);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a:not(.button) {
  position: relative;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 0.22rem;
  border-radius: 999px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:not(.button):hover::after,
.site-nav a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--paper);
  cursor: pointer;
}

.nav-toggle span {
  width: 1.2rem;
  height: 0.16rem;
  margin-inline: auto;
  border-radius: 999px;
  background: var(--ink);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 20, 0.56);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 998;
}

body.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.9rem 1.25rem;
  border-radius: 999px;
  font-size: 0.97rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button--small {
  min-height: 3rem;
}

.button--primary {
  background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
  color: white;
  box-shadow: 0 18px 34px rgba(238, 29, 35, 0.24);
}

.button--dark {
  background: var(--coal);
  color: white;
  box-shadow: 0 18px 34px rgba(37, 37, 37, 0.2);
}

.button--light {
  background: var(--paper);
  color: var(--red);
  box-shadow: 0 18px 34px rgba(24, 20, 20, 0.14);
}

.hero {
  padding: 2rem 0 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
}

.hero__content,
.hero__media,
.service-card,
.review-card,
.area-panel,
.faq-panel,
.why__panel,
.trust-panel {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--red);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.95rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--yellow);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(2.35rem, 4.8vw, 4rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.7rem;
  letter-spacing: -0.03em;
}

.lead,
.section-heading p,
.service-card p,
.why__content p,
.why__panel-list,
.review-card p,
.faq-item p,
.area-panel p,
.trust-panel p,
.trust-panel span,
.hero__callout p,
.site-footer__meta,
.site-footer__links a,
.brand--footer .brand__copy span {
  color: var(--ink-soft);
  line-height: 1.7;
}

.lead {
  max-width: 34rem;
  margin-top: 1.1rem;
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.hero__facts {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin-top: 2.5rem;
  list-style: none;
}

.hero__facts li {
  display: flex;
  align-items: center;
  min-height: 4.4rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-left: 0.48rem solid var(--yellow);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero__media {
  position: relative;
  padding: 0.65rem 0 1.4rem;
}

.hero__frame {
  position: relative;
  overflow: hidden;
  border-radius: 2.2rem;
  box-shadow: var(--shadow);
  background: var(--coal);
}

.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(37, 37, 37, 0.08) 0%, rgba(37, 37, 37, 0.62) 100%);
  pointer-events: none;
}

.hero__frame img {
  width: 100%;
  height: clamp(31rem, 42vw, 35rem);
  object-fit: cover;
  object-position: 72% center;
}

.hero__callout {
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.3rem;
  max-width: 23rem;
  padding: 1.1rem 1.15rem 1rem;
  border-top: 0.35rem solid var(--yellow);
  border-radius: 1.3rem;
  background: rgba(37, 37, 37, 0.86);
  color: white;
  z-index: 1;
}

.hero__callout-label {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__callout strong {
  display: block;
  margin: 0.35rem 0 0.55rem;
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
}

.hero__callout p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.city-tags span {
  padding: 0.62rem 0.82rem;
  border-radius: 999px;
  background: var(--paper-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.trust-strip {
  padding: 2.5rem 0 0;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.trust-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  padding: 1.35rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.trust-panel strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 1.12rem;
  text-transform: uppercase;
}

.trust-panel--statement {
  background: linear-gradient(135deg, var(--coal) 0%, var(--coal-soft) 100%);
  border-color: transparent;
}

.trust-panel--statement p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
}

.section {
  padding: 5.3rem 0;
}

.section-heading {
  max-width: 52rem;
  margin-bottom: 2rem;
}

.section-heading p:last-child {
  margin-top: 1rem;
}

.services {
  padding-top: 5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}


.service-card__media {
  position: relative;
  overflow: hidden;
  background: var(--coal);
}

.service-card__media img {
  width: 100%;
  height: 18rem;
  object-fit: cover;
}

.service-card__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.45rem;
}

.service-card__eyebrow {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--coal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card p,
.review-card p {
  margin-top: 0.95rem;
}

.service-card__list,
.check-list,
.why__panel-list {
  padding-left: 1rem;
  margin-top: 1rem;
}

.service-card__list li + li,
.check-list li + li,
.why__panel-list li + li {
  margin-top: 0.4rem;
}


.why {
  background:
    linear-gradient(180deg, var(--coal) 0%, #1f1f1f 100%);
}

.why__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(19rem, 0.9fr);
  gap: 1.4rem;
  align-items: start;
}

.why__content h2,
.why__content p,
.why__content li,
.section-heading--light h2,
.section-heading--light p {
  color: white;
}

.check-list {
  margin-top: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
}

.why__panel {
  padding: 1.5rem;
  border-radius: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 246, 241, 0.96) 100%);
  box-shadow: var(--shadow);
}

.why__panel-title {
  margin-bottom: 0.8rem;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.why__panel-list {
  margin-bottom: 1.4rem;
  color: var(--ink);
}

.reviews {
  background: linear-gradient(180deg, #272727 0%, #2f2f2f 100%);
}

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

.review-card {
  padding: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-soft);
}

.review-card__person {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.review-card__person img {
  width: 3.75rem;
  height: 3.75rem;
  border: 3px solid rgba(239, 230, 55, 0.65);
  border-radius: 50%;
  object-fit: cover;
}

.review-card__person strong {
  display: block;
  color: white;
  font-size: 1rem;
}

.review-card__person span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

.review-card p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

.area-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.area-panel,
.faq-panel,
.cta__inner,
.site-footer__inner {
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.area-panel,
.faq-panel {
  padding: 1.6rem;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.3rem;
}

.city-tags span {
  background: rgba(238, 29, 35, 0.06);
}

.area-promise {
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.area-promise__title {
  margin-bottom: 0.8rem;
  color: var(--red);
  font-family: "League Spartan", sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.area-promise ul {
  padding-left: 1rem;
  margin-bottom: 1.4rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.area-promise li + li {
  margin-top: 0.4rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: var(--paper);
}

.faq-item summary {
  position: relative;
  padding: 1.1rem 3.4rem 1.1rem 1.15rem;
  list-style: none;
  cursor: pointer;
  font-weight: 800;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.15rem;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 1.4rem;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 1.15rem 1.15rem;
}

.cta {
  padding-top: 0;
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.7rem;
  background:
    linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  border-color: transparent;
}

.cta__inner h2,
.cta__inner .eyebrow,
.cta__inner .eyebrow::before {
  color: white;
}

.cta__inner .eyebrow::before {
  background: rgba(255, 255, 255, 0.28);
}

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

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 2rem;
  padding: 1.4rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: start;
  gap: 1rem;
  font-weight: 700;
}

.site-footer__links a:first-child {
  color: var(--red);
}

.site-footer__meta {
  grid-column: 1 / -1;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}


.call-rail {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--red) 0%, var(--red-deep) 100%);
  color: white;
  box-shadow: 0 18px 32px rgba(238, 29, 35, 0.28);
  z-index: 900;
}

.call-rail span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.call-rail strong {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

@media (max-width: 1100px) {
  .hero__grid,
  .why__grid,
  .area-faq__grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }

  .hero__media {
    padding-top: 0;
  }

  .hero__facts {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .review-grid {
    grid-template-columns: 1fr;
  }

  .site-footer__links {
    justify-content: start;
  }
}

@media (max-width: 1360px) and (min-width: 1101px) {
  h1 {
    font-size: clamp(2.6rem, 3.8vw, 3.9rem);
  }

  .hero__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 2rem;
  }

  .hero__frame img {
    height: clamp(29rem, 40vw, 33rem);
  }
}

@media (max-width: 880px) {
  .site-header__inner {
    min-height: 5rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 5.6rem;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.7rem;
    padding: 1rem;
    border: 1px solid rgba(48, 48, 48, 0.12);
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
    z-index: 999;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(0.46rem) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-0.46rem) rotate(-45deg);
  }

  .site-nav a:not(.button)::after {
    display: none;
  }

  .site-nav .button {
    width: 100%;
  }

  .call-rail {
    right: 1rem;
    bottom: 1rem;
    padding: 0.65rem 0.95rem;
  }

  .call-rail span {
    display: none;
  }
}

@media (max-width: 720px) {
  .hero__grid {
    row-gap: 1.5rem;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.4rem, 9vw, 3.4rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
    line-height: 0.98;
  }

  .hero {
    padding-top: 1.1rem;
  }

  .hero__media {
    padding-bottom: 0;
  }

  .hero__frame img {
    min-height: 30rem;
  }

  .hero__callout {
    left: 1rem;
    right: 1rem;
    max-width: none;
  }

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

  .hero__actions,
  .button,
  .button--small,
  .button--dark,
  .button--light,
  .button--primary {
    width: 100%;
  }

  .hero__facts {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .trust-strip__grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .cta__inner {
    align-items: start;
  }

  .brand__logo {
    width: 3rem;
    height: 3.65rem;
  }

  .brand__copy span {
    letter-spacing: 0.08em;
  }
}

@media (max-width: 520px) {
  .brand__copy strong {
    font-size: 1.08rem;
  }

  .brand__copy span {
    display: none;
  }

  .site-header__inner {
    gap: 0.75rem;
  }

  .nav-toggle {
    width: 3rem;
    height: 3rem;
  }
}

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

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