:root {
  --color-yellow: #ffd60a;
  --color-yellow-deep: #ffb700;
  --color-black: #111111;
  --color-black-soft: #1a1a1a;
  --color-charcoal: #202020;
  --color-white: #ffffff;
  --color-cream: #e1b300;
  --color-border: rgba(17, 17, 17, 0.12);
  --shadow-soft: 0 22px 45px rgba(17, 17, 17, 0.12);
  --shadow-card: 0 14px 30px rgba(17, 17, 17, 0.09);
  --radius-large: 28px;
  --radius-medium: 18px;
  --radius-small: 12px;
  --container: min(1120px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--color-black);
}

main[id],
section[id] {
  scroll-margin-top: clamp(7rem, 18vh, 10.5rem);
}

body {
  margin: 0;
  font-family: "Barlow", sans-serif;
  color: var(--color-black);
  background: var(--color-black);
  line-height: 1.6;
}

main {
  background:
    linear-gradient(135deg, rgba(255, 183, 0, 0.14), transparent 34%),
    linear-gradient(180deg, #fffef9 0%, #ffffff 58%, #fff7d6 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 183, 0, 0.02),
    transparent 18%,
    transparent 82%,
    rgba(17, 17, 17, 0.04)
  );
  z-index: 1;
}

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 3px solid var(--color-yellow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  overflow: visible;
}

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

.brand img {
  width: 105px;
  height: 105px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: scale(1.72);
  transform-origin: center;
}

.brand span,
.header-call,
.button,
h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif;
}

.brand span {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--color-black);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 600;
  color: var(--color-black);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--color-yellow);
  transition: transform 180ms ease;
}

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

.header-call {
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(255, 214, 10, 0.3);
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 5.5rem 0 4rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(17, 17, 17, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(17, 17, 17, 0.1)),
    url("Van 2 .png")
      center center/cover no-repeat;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  display: none;
}

.hero::after {
  width: 340px;
  height: 340px;
  bottom: -160px;
  left: -120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 65%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--color-black);
  color: var(--color-yellow);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 5vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.hero-text {
  max-width: 62ch;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.94);
}

.hero-copy h1 {
  color: var(--color-yellow);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  -webkit-text-stroke: 3.6px var(--color-black);
  paint-order: stroke fill;
}

.hero-copy .eyebrow {
  background: rgba(17, 17, 17, 0.9);
}

.hero-kicker {
  display: inline-block;
  margin: 0 0 0.9rem;
  padding: 0.35rem 0.7rem;
  border-left: 4px solid var(--color-yellow);
  background: rgba(17, 17, 17, 0.55);
  color: rgba(255, 255, 255, 0.96);
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-copy .hero-highlights {
  color: var(--color-white);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.75rem 0 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: var(--color-yellow);
  color: var(--color-black);
  box-shadow: 0 16px 28px rgba(255, 214, 10, 0.34);
}

.button-secondary {
  border: 2px solid var(--color-black);
  background: var(--color-black);
  color: var(--color-yellow);
}

.button-accent {
  border: 2px solid var(--color-yellow-deep);
  background: var(--color-yellow);
  color: var(--color-black);
  box-shadow: 0 16px 28px rgba(255, 214, 10, 0.28);
}

.hero-highlights {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}

.hero-highlights li::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  background: var(--color-yellow);
  box-shadow: 0 0 0 6px rgba(255, 214, 10, 0.25);
}

.hero-card {
  position: relative;
}

.hero-card-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 2rem;
  border-radius: var(--radius-large);
  background:
    linear-gradient(180deg, rgba(255, 183, 0, 0.98), rgba(255, 214, 10, 0.92)),
    linear-gradient(135deg, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.02));
  border: 2px solid var(--color-black);
  box-shadow: var(--shadow-soft);
}

.hero-card-panel::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px dashed rgba(17, 17, 17, 0.15);
  border-radius: calc(var(--radius-large) - 10px);
}

.card-label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  color: rgba(17, 17, 17, 0.75);
}

.panel-catchphrase {
  margin-top: 0.8rem;
  margin-bottom: 0;
  color: rgba(17, 17, 17, 0.88);
  font-family: "Montserrat", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.hero-card h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 0.75rem;
}

.emergency-panel {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.15rem 1.2rem 1.2rem;
  border-left: 6px solid var(--color-black);
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(4px);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.emergency-panel::after {
  display: none;
}

.emergency-panel > * {
  position: relative;
  z-index: 1;
}

.emergency-panel h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.02;
}

.emergency-panel p {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.62;
}

.hero-contact-list {
  display: grid;
  gap: 0.8rem;
  margin-top: auto;
}

.hero-contact-list a {
  font-weight: 700;
}

.trust-strip {
  background: var(--color-black);
  color: var(--color-white);
  border-top: 4px solid var(--color-yellow);
  border-bottom: 4px solid var(--color-yellow);
}

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

.trust-grid div {
  padding: 0.9rem 1rem;
  border-left: 3px solid var(--color-yellow);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 0.35rem;
  font-size: 1.02rem;
}

.section {
  padding: 5rem 0;
}

.bee-accent-section {
  position: relative;
  overflow: hidden;
}

.bee-accent-section::after {
  content: "";
  position: absolute;
  right: clamp(-1.5rem, 1vw, 1rem);
  bottom: 1.2rem;
  width: clamp(220px, 24vw, 390px);
  height: clamp(170px, 19vw, 290px);
  background:
    radial-gradient(circle at center, rgba(255, 214, 10, 0.08), transparent 68%),
    url("248d1c33-3787-4e60-84e6-ad2d1bba3534.png") center/contain no-repeat;
  opacity: 0.12;
  transform: scaleX(-1);
  transform-origin: center;
  filter: contrast(1.05) saturate(0.85);
  pointer-events: none;
  z-index: 0;
}

.bee-accent-section .container {
  position: relative;
  z-index: 1;
}

.bee-accent-section.bee-left::after {
  right: auto;
  left: clamp(-1.5rem, 1vw, 1rem);
}

.services,
.areas,
.reviews,
.faq {
  position: relative;
}

.services::before,
.areas::before,
.reviews::before,
.faq::before {
  content: "";
  display: block;
  width: 88px;
  height: 6px;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-black), var(--color-yellow));
}

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

.section-heading h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.6rem, 5vw, 3.9rem);
  line-height: 1.02;
}

.section-heading p:last-child {
  color: rgba(17, 17, 17, 0.75);
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem 1.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-row {
  position: relative;
  padding: 0.95rem 0 0.95rem 2.1rem;
  border-top: 2px solid rgba(17, 17, 17, 0.2);
  background: transparent;
}

.service-row h3 {
  margin-bottom: 0.35rem;
  font-size: 1.12rem;
  color: var(--color-black);
}

.service-row::before {
  content: "";
  position: absolute;
  top: 1.28rem;
  left: 0.95rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-yellow-deep);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.92);
}

.service-row p {
  margin-bottom: 0;
}

.services {
  overflow: hidden;
  text-align: center;
}

.services::after {
  display: none;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services .section-heading {
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.services .section-heading h2 {
  display: block;
  padding: 0;
}

.services .section-heading::before,
.services .section-heading::after {
  content: "";
  position: absolute;
  top: 6.15rem;
  width: 360px;
  height: 274px;
  background:
    url("248d1c33-3787-4e60-84e6-ad2d1bba3534.png") center/contain no-repeat;
  opacity: 0.94;
  pointer-events: none;
}

.services .section-heading::before {
  left: -12.5rem;
  transform: translate(-50%, -50%) scaleX(-1);
}

.services .section-heading::after {
  right: -12.5rem;
  transform: translate(50%, -50%);
}

.areas-top {
  padding-bottom: 4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.84)),
    url("SHingles 2.webp")
      center/cover no-repeat;
  text-align: center;
}

.areas-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 2rem;
  align-items: start;
}

.areas-list-wrap {
  padding: 0 0 2.8rem 1.3rem;
  border-left: 5px solid var(--color-yellow-deep);
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
}

.areas-list {
  margin: 0.25rem 0 0;
  padding-left: 0;
  columns: 2;
  column-gap: 5.8rem;
  color: var(--color-black);
  font-size: 1.42rem;
  line-height: 2;
  list-style: none;
}

.areas-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.4rem;
  font-weight: 700;
  break-inside: avoid;
  white-space: nowrap;
}

.areas-list li::before {
  content: "";
  position: absolute;
  top: 0.8rem;
  left: 0.42rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-yellow-deep);
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.92);
}

.areas-top .section-heading {
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  width: 100%;
  margin: -0.2rem 0;
  padding: 0;
}

.section-divider .container {
  width: 100%;
  max-width: none;
}

.section-divider span {
  display: block;
  width: 100%;
  height: 33px;
  border-radius: 0;
  background:
    repeating-linear-gradient(
      90deg,
      var(--color-black) 0 48px,
      var(--color-yellow) 48px 96px
    );
  box-shadow: var(--shadow-card);
}

.review-card {
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.review-card {
  padding: 1.4rem;
  border-radius: var(--radius-medium);
  background: var(--color-white);
}

.about {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.96), rgba(34, 34, 34, 0.92)),
    linear-gradient(135deg, rgba(17, 17, 17, 0.34), transparent 45%),
    url("Roofer image .jpg")
      center/cover no-repeat;
  color: var(--color-white);
}

.about .section-heading h2,
.about p {
  color: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.15rem;
  align-items: start;
}

.about-copy p {
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.about-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 0.7rem;
}

.about-header .section-heading {
  margin-bottom: 0;
}

.featured-tagline {
  max-width: none;
  margin: 0;
  padding: 0.9rem 1.05rem;
  border-left: 6px solid var(--color-yellow);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 183, 0, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
  color: var(--color-yellow);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 1.75vw, 1.22rem);
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
}

.quote-section {
  background:
    linear-gradient(180deg, rgba(255, 183, 0, 0.12), transparent 55%),
    #fff8dc;
}

.quote-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.5rem 1.6rem;
  border: 2px solid var(--color-black);
  border-radius: var(--radius-large);
  background:
    linear-gradient(135deg, rgba(255, 183, 0, 0.2), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow-card);
}

.quote-card .section-heading,
.quote-card p:last-child {
  margin-bottom: 0;
}

.quote-card h2 {
  margin-bottom: 0.55rem;
}

.quote-card p {
  margin-bottom: 0;
}

.quote-button {
  white-space: nowrap;
}

.reviews {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 183, 0, 0.05), rgba(17, 17, 17, 0.02));
}

.reviews.bee-accent-section::after {
  right: 50%;
  left: auto;
  bottom: -5.25rem;
  width: clamp(560px, 62vw, 980px);
  height: clamp(410px, 46vw, 720px);
  opacity: 0.11;
  transform: translateX(50%) scaleX(-1);
}

.reviews-carousel {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.75rem 0;
}

.reviews-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: review-scroll 34s linear infinite;
}

.review-card {
  position: relative;
  margin: 0;
  width: min(360px, calc(100vw - 3rem));
  flex: 0 0 min(360px, calc(100vw - 3rem));
  padding: 0.35rem 0 0.35rem 1.4rem;
  border: 0;
  background: transparent;
  border-top: 0;
  border-left: 5px solid var(--color-yellow);
  border-radius: 0;
  box-shadow: none;
}

.review-card p {
  font-size: 1.03rem;
  margin-bottom: 0.55rem;
}

.review-card footer {
  margin-top: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.faq {
  padding-top: 0.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.16)),
    url("shingles picture .webp")
      center/cover no-repeat;
  position: relative;
}

.faq::after {
  display: none;
}

.faq .container {
  position: relative;
  z-index: 1;
}

.faq .section-heading h2,
.faq .section-heading p:last-child {
  color: var(--color-yellow);
  -webkit-text-stroke: 4px var(--color-black);
  paint-order: stroke fill;
  text-shadow: none;
}

.faq .section-heading {
  max-width: 100%;
}

.faq .section-heading h2 {
  white-space: nowrap;
}

.faq .section-heading p:last-child {
  display: block;
  margin-top: 0.4rem;
}

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

.faq-item {
  padding: 1rem 1rem 0.95rem;
  border: 2px solid var(--color-black);
  border-top: 6px solid var(--color-yellow-deep);
  border-radius: var(--radius-medium);
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    var(--shadow-card),
    inset 0 0 0 1px rgba(255, 183, 0, 0.18);
}

.faq-item h3 {
  margin: 0 0 0.45rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--color-black);
}

.faq-item p {
  margin: 0;
  color: rgba(17, 17, 17, 0.8);
  font-size: 0.94rem;
  line-height: 1.55;
}

.extras {
  padding-top: 0.6rem;
  padding-bottom: 0;
  background: #f4f4f4;
  margin-bottom: 0;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  position: relative;
}

.extras-grid::before {
  content: "";
  position: absolute;
  top: 0.4rem;
  bottom: 0.4rem;
  left: 50%;
  width: 8px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--color-yellow), var(--color-black), var(--color-yellow));
}

.extra-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 0.55rem 0.85rem;
  border: 0;
  border-radius: 0;
  background: #f4f4f4;
  box-shadow: none;
  margin: 0;
  text-align: center;
}

.payment-copy {
  margin-bottom: 0.3rem;
  font-weight: 600;
  font-size: 0.9rem;
  max-width: 28rem;
}

.payment-copy-strong {
  margin-bottom: 0.9rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
  color: var(--color-black);
}

.payments-image {
  display: block;
  width: 50%;
  max-width: 100%;
  margin: 0.15rem auto 0;
  border-radius: 0;
  background: #f4f4f4;
  padding: 0;
  mix-blend-mode: multiply;
  opacity: 0.98;
}

.payments-bee-image {
  width: min(74%, 280px);
  margin-top: 0.2rem;
  background: transparent;
  mix-blend-mode: normal;
  opacity: 0.95;
  filter: drop-shadow(0 14px 24px rgba(17, 17, 17, 0.14));
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  width: 100%;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 0;
  justify-content: center;
  width: 76px;
  height: 76px;
  min-height: 76px;
  padding: 0;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-yellow);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.social-links a span {
  display: none;
}

.social-links svg {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
}

.social-links svg path {
  fill: var(--color-yellow);
}

.social-icon-image {
  display: block;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.social-icon-yelp {
  width: 42px;
  height: 42px;
}

.site-footer {
  background: var(--color-black);
  color: var(--color-white);
  border-top: 8px solid var(--color-yellow);
  box-shadow: 0 -18px 42px rgba(0, 0, 0, 0.58);
  position: relative;
  z-index: 4;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 0;
  margin-bottom: 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.25rem;
  min-height: 82px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-align: center;
  width: 100%;
  max-width: none;
  padding: 0 1.25rem;
}

.footer-inner > * {
  text-align: center;
}

.scroll-reveal {
  opacity: 0.28;
  transform: translateY(52px) scale(0.985);
  filter: saturate(0.88);
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    filter 700ms ease;
  will-change: opacity, transform, filter;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: saturate(1);
}

@keyframes review-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.625rem));
  }
}

@media (max-width: 980px) {
  .header-inner,
  .hero-grid,
  .about-grid,
  .areas-layout {
    grid-template-columns: 1fr;
  }

  .header-inner {
    display: grid;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 0.85rem 1rem;
  }

  .trust-grid,
  .services-list,
  .quote-card,
  .extras-grid,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-card {
    grid-template-columns: 1fr;
  }

  .service-row {
    padding-left: 1.95rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
  }

  .header-call {
    width: 100%;
    text-align: center;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.4rem);
  }

  .section,
  .hero {
    padding: 4rem 0;
  }

  .hero-card-panel,
  .hero-card-panel {
    padding: 1.5rem;
  }

  .hero-kicker {
    font-size: 0.8rem;
  }

  .trust-grid,
  .services-list,
  .quote-card,
  .extras-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .faq .section-heading h2,
  .faq .section-heading p:last-child {
    -webkit-text-stroke: 2.4px var(--color-black);
  }

  .faq .section-heading h2 {
    white-space: normal;
    line-height: 1.05;
  }

  .faq .section-heading p:last-child {
    line-height: 1.2;
  }

  .extras-grid::before {
    left: 0;
    right: 0;
    top: calc(50% + 1.3rem);
    bottom: auto;
    width: auto;
    height: 6px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, var(--color-yellow), var(--color-black), var(--color-yellow));
  }

  .extra-panel:first-child {
    padding-bottom: 2.3rem;
  }

  .extra-panel:last-child {
    padding-top: 2.3rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.8rem 0;
  }

  .areas-list {
    columns: 1;
    column-gap: 0;
  }

  .brand {
    align-items: flex-start;
    gap: 0.95rem;
  }

  .brand img {
    transform: scale(1.28);
  }

  .about-header {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    align-items: start;
  }

  .featured-tagline {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
  }

  .site-nav {
    font-size: 0.95rem;
  }

  .bee-accent-section::after {
    width: 170px;
    height: 130px;
    right: -1.2rem;
    bottom: 0.8rem;
    opacity: 0.09;
  }

  .bee-accent-section.bee-left::after {
    left: -1.2rem;
    right: auto;
  }

  .services .section-heading::before,
  .services .section-heading::after {
    top: -1.2rem;
    width: 104px;
    height: 80px;
    opacity: 0.9;
  }

  .services .section-heading::before {
    left: 1.7rem;
    transform: translateY(0) scaleX(-1);
  }

  .services .section-heading::after {
    right: 1.7rem;
    transform: translateY(0);
  }

  .reviews.bee-accent-section::after {
    width: 430px;
    height: 330px;
    bottom: 4.6rem;
    right: 50%;
    left: auto;
    opacity: 0.09;
    transform: translateX(50%) scaleX(-1);
  }

}

@media (max-width: 560px) {
  .services .section-heading {
    padding: 0 5rem 0.35rem;
  }

  .services .section-heading h2 {
    max-width: 8.5ch;
    margin-left: auto;
    margin-right: auto;
  }

  .services .section-heading::before,
  .services .section-heading::after {
    top: -0.95rem;
    bottom: auto;
    width: 86px;
    height: 66px;
    opacity: 0.88;
  }

  .services .section-heading::before {
    left: 1.1rem;
    transform: translateY(0) scaleX(-1);
  }

  .services .section-heading::after {
    right: 1.1rem;
    transform: translateY(0);
  }

  .reviews.bee-accent-section::after {
    width: 360px;
    height: 275px;
    bottom: 3.7rem;
    opacity: 0.085;
  }
}
