:root {
  --red: #e21b1b;
  --red-dark: #b80f13;
  --yellow: #ffd10a;
  --ink: #151515;
  --graphite: #232323;
  --muted: #6d7178;
  --line: #e8e8e8;
  --soft: #f6f6f4;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 15, 15, 0.12);
  --shadow-strong: 0 26px 80px rgba(15, 15, 15, 0.2);
  --radius: 8px;
  --max: 1920px;
  --page-pad: clamp(24px, 3vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  align-items: center;
  min-height: 76px;
  gap: 24px;
  padding: 10px var(--page-pad);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(14px);
  transition: min-height 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  animation: topbar-fade-in 1.05s ease both;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.08);
}

.brand {
  display: inline-flex;
  animation: logo-fade-down 1.05s cubic-bezier(0.2, 0.9, 0.18, 1) 1.35s both;
}

.brand img {
  width: 230px;
  height: 54px;
  object-fit: contain;
  transition: transform 0.25s ease, width 0.25s ease;
}

.brand:hover img {
  transform: translateY(-1px) scale(1.03);
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2vw, 38px);
  font-size: clamp(1.02rem, 0.92vw, 1.18rem);
  font-weight: 950;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
  animation: element-fade-in 0.9s ease backwards;
}

.main-nav a:nth-child(1) {
  animation-delay: 0.1s;
}

.main-nav a:nth-child(2) {
  animation-delay: 0.16s;
}

.main-nav a:nth-child(3) {
  animation-delay: 0.22s;
}

.main-nav a:nth-child(4) {
  animation-delay: 0.28s;
}

.main-nav a:nth-child(5) {
  animation-delay: 0.34s;
}

.main-nav a:hover {
  color: var(--red);
  transform: translateY(-1px);
}

.main-nav a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 5px;
  content: "";
  background: var(--yellow);
  border-radius: 999px;
  transition: width 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-cta,
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 28px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 12px 28px rgba(226, 27, 27, 0.24);
}

.nav-cta {
  justify-self: end;
  min-width: 188px;
  min-height: 48px;
  padding-inline: 18px;
  text-align: center;
  line-height: 1.08;
  animation: element-fade-in 0.9s ease 0.58s backwards;
}

.mobile-cta {
  display: none;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-3px);
}

.btn::after,
.nav-cta::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.34) 45%, transparent 68%);
  transform: translateX(-120%);
  transition: transform 0.58s ease;
  pointer-events: none;
}

.btn:hover::after,
.nav-cta:hover::after {
  transform: translateX(120%);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.24);
}

.btn-yellow {
  color: #171205;
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(255, 209, 10, 0.25);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: var(--soft);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: clamp(600px, 72vh, 780px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--white);
  isolation: isolate;
}

.hero::after {
  display: none;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 24% 42%, rgba(255, 209, 10, 0.17), transparent 22%),
    linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 48%, transparent 58%);
  mix-blend-mode: screen;
  opacity: 0.8;
  pointer-events: none;
  animation:
    hero-overlay-fade 1.8s ease 0.3s backwards,
    hero-light-sweep 6.5s ease-in-out 1.2s infinite alternate;
}

.hero-media {
  position: absolute;
  inset: 0;
  animation: hero-image-fade-up 1.75s cubic-bezier(0.18, 0.84, 0.18, 1) both;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.62) 35%, rgba(0, 0, 0, 0.18) 72%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: hero-slow-zoom 18s ease-in-out 1.2s infinite alternate;
}

.hero-inner {
  width: min(var(--max), calc(100% - 96px));
  margin: 0 auto;
  position: relative;
  z-index: 4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: clamp(64px, 8vw, 112px) 0 clamp(90px, 9vw, 132px);
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content > p:not(.eyebrow),
.hero-content .hero-actions {
  animation: hero-content-in 1.25s cubic-bezier(0.18, 0.84, 0.18, 1) backwards;
}

.hero-content .eyebrow {
  animation-delay: 1.05s;
}

.hero-content h1 {
  animation-delay: 1.25s;
}

.hero-content > p:not(.eyebrow) {
  animation-delay: 1.48s;
}

.hero-content .hero-actions {
  animation-delay: 1.72s;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--red);
  font-size: clamp(0.92rem, 0.8vw, 1.08rem);
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero-dark .eyebrow,
.page-hero-red .eyebrow,
.about-band .eyebrow {
  color: var(--yellow);
  font-size: clamp(1.02rem, 0.95vw, 1.28rem);
  letter-spacing: 0.06em;
}

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

h1 {
  max-width: 780px;
  font-size: clamp(3rem, 4.3vw, 5.1rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2.2rem, 3.1vw, 4rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: 1.35rem;
}

.hero-content > p:not(.eyebrow) {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.15rem, 1.4vw, 1.42rem);
}

.page-hero p,
.section-heading p {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.1vw, 1.22rem);
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 1.2vw, 1.35rem);
}

.hero-actions,
.split-heading,
.cta-panel,
.forms-layout,
.story-section {
  display: flex;
  gap: 20px;
}

.hero-actions {
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-actions .btn {
  min-width: 190px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.2vw, 20px);
  width: min(var(--max), calc(100% - 96px));
  max-width: none;
  margin: -46px auto 0;
  padding: 0;
  position: relative;
  z-index: 4;
}

.trust-strip article {
  min-height: 132px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 22px;
  padding: 30px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 34%),
    linear-gradient(135deg, var(--red), var(--red-dark));
  border: 1px solid rgba(226, 27, 27, 0.18);
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(184, 15, 19, 0.22);
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, filter 0.25s ease;
  animation: card-fade-up 1.05s cubic-bezier(0.18, 0.84, 0.18, 1) backwards;
}

.trust-strip article:nth-child(1) {
  animation-delay: 1.65s;
}

.trust-strip article:nth-child(2) {
  animation-delay: 1.82s;
}

.trust-strip article:nth-child(3) {
  animation-delay: 1.99s;
}

.trust-strip article:nth-child(4) {
  animation-delay: 2.16s;
}

.trust-strip article:hover {
  z-index: 2;
  border-color: rgba(255, 209, 10, 0.5);
  box-shadow: 0 28px 70px rgba(184, 15, 19, 0.34);
  filter: saturate(1.05);
  transform: translateY(-8px);
}

.trust-strip article:hover .trust-icon {
  background: #fff;
  border-color: rgba(255, 209, 10, 0.95);
  transform: translateY(-3px) scale(1.04);
}

.trust-icon {
  grid-row: span 2;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: var(--red);
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  font-size: 1.45rem;
  font-weight: 900;
  background: linear-gradient(180deg, #fff, #fff7f7);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.trust-icon img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: center;
}

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

.trust-strip strong {
  font-size: 1.42rem;
  line-height: 1.1;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.76);
}

.section {
  max-width: none;
  margin: 0 auto;
  padding: clamp(68px, 7vw, 106px) var(--page-pad);
}

.section-light {
  max-width: none;
  padding-inline: var(--page-pad);
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.section-light .service-grid:first-child {
  margin-top: clamp(18px, 3vw, 46px);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading p {
  margin-inline: auto;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 1.6vw, 34px);
}

.service-grid-large {
  grid-template-columns: repeat(2, 1fr);
  max-width: var(--max);
  margin: 0 auto;
}

.service-card {
  overflow: hidden;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(15, 15, 15, 0.07);
  position: relative;
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 30%), rgba(255, 209, 10, 0.22), transparent 28%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.service-card > img {
  width: 100%;
  height: clamp(260px, 18vw, 380px);
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}

.card-icon {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: -43px 0 0 26px;
  border: 2px solid rgba(226, 27, 27, 0.2);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #fff7f7);
  box-shadow: 0 20px 44px rgba(15, 15, 15, 0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.card-icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  transform: none !important;
  filter: none !important;
}

.service-card h2,
.service-card h3,
.service-card p {
  padding-inline: 22px;
}

.service-card h2,
.service-card h3 {
  padding-top: 18px;
}

.service-card .card-icon + h2,
.service-card .card-icon + h3 {
  padding-top: 20px;
}

.service-card p {
  margin: 14px 0 30px;
  color: var(--muted);
  font-size: 1rem;
}

.service-card:hover {
  border-color: rgba(226, 27, 27, 0.16);
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover > img {
  filter: saturate(1.09) contrast(1.04);
  transform: scale(1.08);
}

.service-card:hover .card-icon {
  background: #fff7f7;
  box-shadow: 0 20px 42px rgba(226, 27, 27, 0.18);
  transform: translateY(-5px) rotate(-3deg);
}

.service-card::after {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 10px;
  height: 10px;
  content: "";
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.service-card:hover::after {
  transform: translate(4px, -4px) rotate(45deg);
}

.project-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: clamp(34px, 4vw, 72px);
  align-items: center;
  min-height: 360px;
}

.project-copy .btn {
  margin-top: 24px;
}

.project-copy h2 {
  max-width: 360px;
}

.project-carousel {
  --project-gap: clamp(14px, 1.4vw, 24px);
  --project-visible: 4;
  min-width: 0;
  overflow: hidden;
  padding: 8px 4px 20px;
}

.project-track {
  display: flex;
  gap: var(--project-gap);
  will-change: transform;
  transition: transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-slide {
  position: relative;
  flex: 0 0 calc((100% - (var(--project-gap) * (var(--project-visible) - 1))) / var(--project-visible));
  min-width: 0;
  height: clamp(300px, 22vw, 430px);
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #111;
  box-shadow: 0 18px 42px rgba(15, 15, 15, 0.12);
}

.project-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.project-slide::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  content: "";
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.62), transparent);
  pointer-events: none;
}

.project-slide figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  padding: 9px 13px;
  color: #fff;
  background: rgba(226, 27, 27, 0.94);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-slide:hover img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.06);
}

.project-slide.is-clone {
  opacity: 1;
  transform: none;
}

.about-band {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.95fr 0.45fr;
  min-height: 590px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.about-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.82));
}

.about-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.9s ease;
}

.about-band:hover > img {
  transform: scale(1.07);
}

.about-copy,
.stats {
  position: relative;
  z-index: 2;
  align-self: center;
}

.about-copy {
  grid-column: 1 / 3;
  max-width: min(980px, 62vw);
  padding: clamp(62px, 7vw, 108px);
}

.about-copy h2 {
  max-width: 880px;
  font-size: clamp(2.7rem, 4.2vw, 5.4rem);
}

.about-copy p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 1.2vw, 1.32rem);
}

.stats {
  display: grid;
  gap: 8px;
  padding: 40px clamp(24px, 4vw, 54px) 40px 0;
}

.stats strong {
  color: var(--yellow);
  font-size: 3.2rem;
  line-height: 1;
  text-shadow: 0 10px 35px rgba(255, 209, 10, 0.22);
}

.stats span {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.reviews-section {
  padding: clamp(72px, 8vw, 122px) var(--page-pad) clamp(58px, 7vw, 98px);
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 209, 10, 0.08), transparent 24%),
    linear-gradient(180deg, #fff, #f8f8f6);
}

.reviews-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
  max-width: 1440px;
  margin: 0 auto;
}

.reviews-copy {
  text-align: center;
}

.reviews-copy .eyebrow {
  color: var(--red);
}

.reviews-copy h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(3rem, 4.6vw, 5.5rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.reviews-copy h2 span,
.reviews-copy strong,
.reviews-cta strong {
  color: var(--red);
}

.reviews-copy > p {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.25vw, 1.42rem);
}

.google-score {
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(15, 15, 15, 0.1);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.google-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.score-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.score-line strong {
  color: var(--ink);
  font-size: 2.6rem;
  line-height: 1;
}

.score-line span,
.review-stars {
  color: #f7b500;
  letter-spacing: 0.08em;
}

.score-line span {
  font-size: 2rem;
  line-height: 1;
}

.google-score > p {
  margin: 8px 0 22px;
  color: var(--ink);
  font-size: 1.32rem;
  font-weight: 850;
}

.google-score .google-score-copy {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
}

.google-score .google-score-copy strong {
  color: var(--red);
  font-weight: 900;
}

.score-meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 12px;
  align-items: center;
  margin-bottom: 24px;
}

.score-meta span {
  grid-row: span 2;
  color: var(--red);
  font-size: 1.55rem;
}

.score-meta strong,
.score-meta em {
  display: block;
  font-style: normal;
}

.score-meta em {
  color: var(--muted);
}

.google-score .btn {
  width: 100%;
}

.reviews-heading {
  margin: clamp(46px, 6vw, 80px) auto 24px;
  text-align: center;
}

.reviews-heading h3 {
  font-size: clamp(1.55rem, 1.8vw, 2.2rem);
}

.reviews-heading p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.reviews-heading span {
  background: linear-gradient(90deg, #4285f4, #34a853, #fbbc05, #ea4335);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 900;
}

.review-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (clamp(22px, 3vw, 42px) * 2)) / 3);
  gap: clamp(22px, 3vw, 42px);
  max-width: 1320px;
  margin: 0 auto;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 4px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--red) rgba(226, 27, 27, 0.08);
}

.review-grid::-webkit-scrollbar {
  height: 10px;
}

.review-grid::-webkit-scrollbar-track {
  background: rgba(226, 27, 27, 0.08);
  border-radius: 999px;
}

.review-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 999px;
}

.review-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(15, 15, 15, 0.08);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(15, 15, 15, 0.08);
  scroll-snap-align: start;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.review-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
}

.review-avatar {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  font-size: 1.55rem;
  font-weight: 850;
}

.review-avatar-img {
  object-fit: cover;
  object-position: center;
}

.review-top strong,
.review-top small {
  display: block;
}

.review-top a:hover strong {
  color: var(--red);
}

.review-top small,
.review-card footer {
  color: var(--muted);
}

.review-google {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.review-stars {
  margin: 24px 0 18px;
  font-size: 1.5rem;
}

.review-card p {
  color: var(--ink);
  font-size: 1.08rem;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
}

.review-card footer img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.reviews-cta {
  display: grid;
  grid-template-columns: auto 1fr minmax(260px, 430px);
  gap: clamp(22px, 4vw, 64px);
  align-items: center;
  max-width: 1320px;
  margin: 42px auto 0;
  padding: clamp(24px, 3vw, 34px) clamp(26px, 4vw, 52px);
  background:
    radial-gradient(circle at 6% 50%, rgba(255, 209, 10, 0.2), transparent 22%),
    #fffdf2;
  border: 1px solid rgba(255, 209, 10, 0.8);
  border-radius: 12px;
}

.reviews-badge {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  color: var(--ink);
  background: transparent;
  border-radius: 50%;
}

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

.reviews-cta h3 {
  font-size: clamp(1.5rem, 1.8vw, 2.1rem);
}

.reviews-cta p {
  margin: 8px 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.reviews-actions {
  display: grid;
  gap: 12px;
  justify-items: stretch;
  border-left: 1px solid rgba(226, 27, 27, 0.18);
  padding-left: clamp(24px, 4vw, 54px);
}

.reviews-actions .btn {
  width: 100%;
}

.reviews-actions > a:not(.btn) {
  color: var(--graphite);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.reviews-note {
  max-width: 1320px;
  margin: 18px auto 0;
  color: var(--muted);
  text-align: center;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 4vw, 80px);
  max-width: none;
  width: calc(100% - (var(--page-pad) * 2));
  margin: clamp(28px, 4vw, 54px) auto 0;
  padding: clamp(54px, 6vw, 96px) clamp(48px, 6vw, 110px);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(226, 27, 27, 0.2), transparent 42%),
    linear-gradient(135deg, #202020 0%, #2d2d2d 58%, #171717 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-strong);
}

.cta-panel h2 {
  max-width: 820px;
}

.cta-panel p {
  max-width: 760px;
}

.cta-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.1), transparent),
    radial-gradient(circle at 84% 20%, rgba(255, 209, 10, 0.22), transparent 28%),
    linear-gradient(90deg, transparent 0 74%, rgba(226, 27, 27, 0.32) 74% 100%);
  transform: translateX(-18%);
  animation: cta-shimmer 4.5s ease-in-out infinite alternate;
}

.cta-panel .btn-yellow {
  min-width: 0;
  padding-inline: 30px;
}

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

.contact-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(38px, 4vw, 72px);
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 246, 244, 0.92)),
    #fff;
  max-width: none;
  padding-inline: var(--page-pad);
  padding-top: clamp(78px, 8vw, 132px);
  padding-bottom: clamp(72px, 8vw, 120px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.contact-preview::before,
.contact-preview::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.contact-preview::before {
  inset: 3% -12% auto auto;
  width: min(105vw, 1500px);
  height: min(72vw, 980px);
  opacity: 0.18;
  background: var(--yellow);
  clip-path: polygon(0 0, 30% 0, 70% 45%, 70% 0, 100% 0, 100% 76%, 78% 76%, 40% 33%, 24% 55%, 16% 47%, 16% 100%, 0 100%);
  transform: rotate(0deg);
}

.contact-preview::after {
  left: -8%;
  bottom: 4%;
  width: 54vw;
  height: 18px;
  background: var(--yellow);
  box-shadow: 0 34px 0 rgba(255, 209, 10, 0.36);
  transform: rotate(-7deg);
}

.quote-copy {
  max-width: none;
}

.quote-copy h2 {
  max-width: 820px;
  font-size: clamp(2.9rem, 4.6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.quote-copy > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.2vw, 1.35rem);
}

.quote-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.quote-pills span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 10px 16px;
  border: 1px solid rgba(226, 27, 27, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 36px rgba(15, 15, 15, 0.08);
  font-weight: 850;
}

.quote-pills img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.quote-form {
  width: 100%;
  max-width: none;
  padding: clamp(30px, 3vw, 52px);
  border: 1px solid rgba(226, 27, 27, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
    #fff;
  backdrop-filter: blur(14px);
}

.form-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.form-head h2 {
  font-size: clamp(1.9rem, 2.4vw, 3rem);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
}

.full-field {
  grid-column: 1 / -1;
}

.quote-form .btn {
  min-height: 58px;
  margin-top: 20px;
  font-size: 1.02rem;
}

.cta-panel p {
  margin-bottom: 0;
}

.page-hero {
  padding: clamp(72px, 10vw, 118px) clamp(18px, 6vw, 84px);
  background: linear-gradient(135deg, #ffffff, var(--soft));
}

.page-hero h1 {
  max-width: 900px;
  color: var(--ink);
}

.page-hero p {
  color: var(--muted);
}

.page-hero-dark {
  color: var(--white);
  background: linear-gradient(135deg, #111, #2b2b2b);
}

.page-hero-dark h1,
.page-hero-red h1 {
  color: var(--white);
}

.page-hero-dark p,
.page-hero-red p {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero-red {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.forms-layout,
.story-section {
  align-items: flex-start;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 104px) clamp(18px, 4vw, 24px);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(36px, 5vw, 72px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(54px, 6vw, 88px) var(--page-pad) clamp(78px, 8vw, 116px);
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 209, 10, 0.08), transparent 30%),
    linear-gradient(180deg, #fff, #fbfbfa);
}

.contact-panel {
  min-width: 0;
}

.contact-panel-info {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-panel-info h2 {
  max-width: 780px;
  font-size: clamp(2.6rem, 4vw, 4.9rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.contact-panel-info h2::after {
  display: block;
  width: 74px;
  height: 4px;
  margin-top: 28px;
  content: "";
  background: var(--red);
  border-radius: 999px;
}

.contact-intro {
  max-width: 620px;
  margin-top: 26px;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.18vw, 1.32rem);
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 34px;
  margin: 42px 0 42px;
}

.contact-link {
  position: relative;
  display: grid;
  gap: 4px;
  min-height: 72px;
  padding: 0 0 0 72px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.22s ease;
}

.contact-link::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 54px;
  height: 54px;
  content: "";
  color: #fff;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.24), transparent 28%),
    linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  box-shadow: 0 16px 32px rgba(226, 27, 27, 0.24);
}

.contact-link::after {
  position: absolute;
  left: 15px;
  top: 17px;
  width: 24px;
  height: 24px;
  content: "";
  background: #fff;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.contact-link:nth-child(1)::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E");
}

.contact-link:nth-child(2)::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.03 3C8.85 3 3 8.73 3 15.78c0 2.25.6 4.45 1.74 6.38L3 29l7.02-1.8a13.2 13.2 0 0 0 6 1.45h.01C23.21 28.65 29 22.92 29 15.87 29 8.82 23.21 3 16.03 3Zm0 23.5a11.05 11.05 0 0 1-5.63-1.53l-.4-.24-4.17 1.07 1.11-4.02-.26-.41a10.4 10.4 0 0 1-1.63-5.59c0-5.87 4.93-10.64 10.99-10.64 6.05 0 10.92 4.81 10.92 10.73 0 5.87-4.88 10.63-10.93 10.63Zm6.02-7.96c-.33-.16-1.95-.94-2.25-1.05-.3-.11-.52-.16-.74.16-.22.33-.85 1.05-1.04 1.27-.19.22-.38.25-.71.09-.33-.16-1.39-.5-2.65-1.6a9.77 9.77 0 0 1-1.83-2.24c-.19-.33-.02-.5.14-.66.15-.15.33-.38.49-.57.16-.19.22-.33.33-.55.11-.22.05-.41-.03-.57-.08-.16-.74-1.75-1.01-2.39-.27-.64-.54-.55-.74-.56h-.63c-.22 0-.57.08-.87.41-.3.33-1.15 1.1-1.15 2.69 0 1.59 1.18 3.12 1.34 3.34.16.22 2.32 3.48 5.62 4.88.79.33 1.4.53 1.88.68.79.24 1.51.21 2.08.13.63-.09 1.95-.78 2.22-1.54.27-.77.27-1.43.19-1.56-.08-.14-.3-.22-.63-.38Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.03 3C8.85 3 3 8.73 3 15.78c0 2.25.6 4.45 1.74 6.38L3 29l7.02-1.8a13.2 13.2 0 0 0 6 1.45h.01C23.21 28.65 29 22.92 29 15.87 29 8.82 23.21 3 16.03 3Zm0 23.5a11.05 11.05 0 0 1-5.63-1.53l-.4-.24-4.17 1.07 1.11-4.02-.26-.41a10.4 10.4 0 0 1-1.63-5.59c0-5.87 4.93-10.64 10.99-10.64 6.05 0 10.92 4.81 10.92 10.73 0 5.87-4.88 10.63-10.93 10.63Zm6.02-7.96c-.33-.16-1.95-.94-2.25-1.05-.3-.11-.52-.16-.74.16-.22.33-.85 1.05-1.04 1.27-.19.22-.38.25-.71.09-.33-.16-1.39-.5-2.65-1.6a9.77 9.77 0 0 1-1.83-2.24c-.19-.33-.02-.5.14-.66.15-.15.33-.38.49-.57.16-.19.22-.33.33-.55.11-.22.05-.41-.03-.57-.08-.16-.74-1.75-1.01-2.39-.27-.64-.54-.55-.74-.56h-.63c-.22 0-.57.08-.87.41-.3.33-1.15 1.1-1.15 2.69 0 1.59 1.18 3.12 1.34 3.34.16.22 2.32 3.48 5.62 4.88.79.33 1.4.53 1.88.68.79.24 1.51.21 2.08.13.63-.09 1.95-.78 2.22-1.54.27-.77.27-1.43.19-1.56-.08-.14-.3-.22-.63-.38Z'/%3E%3C/svg%3E");
}

.contact-link:nth-child(3)::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2Zm0 4-8 5-8-5V6l8 5 8-5v2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2Zm0 4-8 5-8-5V6l8 5 8-5v2Z'/%3E%3C/svg%3E");
}

.contact-link:nth-child(4)::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E");
}

.contact-link:nth-child(5)::after {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 1a11 11 0 1 0 0 22 11 11 0 0 0 0-22Zm1 11.2 4.2 2.5-1 1.7L11 13V6h2v6.2Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 1a11 11 0 1 0 0 22 11 11 0 0 0 0-22Zm1 11.2 4.2 2.5-1 1.7L11 13V6h2v6.2Z'/%3E%3C/svg%3E");
}

.contact-link:hover {
  transform: translateY(-3px);
}

.contact-link span {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.contact-link strong {
  color: var(--red);
  font-size: clamp(1.05rem, 1vw, 1.22rem);
  line-height: 1.35;
}

.contact-form {
  margin-top: 10px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  min-height: 56px;
  border-color: #dedede;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(15, 15, 15, 0.035);
}

.contact-form textarea {
  min-height: 128px;
}

.contact-form .check {
  color: var(--muted);
}

.contact-form .check a {
  color: var(--red);
  font-weight: 850;
}

.contact-form .btn {
  width: min(330px, 100%);
  min-height: 62px;
  margin-top: 18px;
  justify-content: space-between;
  padding-inline: 28px;
  text-transform: uppercase;
}

.contact-form .btn::before {
  content: "→";
  order: 2;
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
}

.contact-panel-map {
  display: grid;
  gap: 30px;
}

.contact-panel-map iframe {
  width: 100%;
  min-height: clamp(420px, 42vw, 640px);
  border: 0;
  border-radius: 10px;
  box-shadow: 0 26px 70px rgba(15, 15, 15, 0.14);
}

.map-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 18px 48px rgba(15, 15, 15, 0.12);
}

.map-cards article {
  min-height: 220px;
  padding: clamp(24px, 3vw, 38px);
  background:
    radial-gradient(circle at 12% 16%, rgba(226, 27, 27, 0.08), transparent 22%),
    #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.22s ease, background 0.22s ease;
}

.map-cards article:hover {
  transform: translateY(-2px);
}

.map-cards article:nth-child(2) {
  color: #fff;
  background:
    radial-gradient(circle at 90% 12%, rgba(226, 27, 27, 0.22), transparent 24%),
    linear-gradient(135deg, #161616, #272727);
}

.map-cards article:nth-child(2) h3,
.map-cards article:nth-child(2) p {
  color: #fff;
}

.map-cards span {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.map-cards h3 {
  margin-top: 8px;
}

.map-cards p {
  color: var(--muted);
  font-size: 1.05rem;
}

.map-cards a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.single-form {
  justify-content: center;
}

.form-card,
.contact-card {
  width: 100%;
  padding: clamp(24px, 3vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.form-card:hover,
.contact-card:hover {
  border-color: rgba(226, 27, 27, 0.14);
  box-shadow: var(--shadow-strong);
  transform: translateY(-6px);
}

.form-card {
  max-width: 720px;
}

.contact-card {
  max-width: 430px;
}

label,
fieldset {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--graphite);
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(255, 209, 10, 0.42);
  border-color: var(--yellow);
}

.check,
.radio {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
}

.check input,
.radio input {
  width: auto;
}

fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.form-card .btn {
  width: 100%;
  margin-top: 18px;
}

.form-feedback {
  min-height: 26px;
  margin: 14px 0 0;
  color: var(--red-dark);
  font-weight: 750;
}

.form-feedback.success {
  color: #137a32;
}

.contact-card p {
  display: grid;
  gap: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.contact-card strong {
  color: var(--ink);
}

.story-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.story-section img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.value-list span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--soft);
  font-weight: 800;
}

.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 84, 72, 0.58), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(255, 209, 10, 0.11), transparent 28%),
    radial-gradient(circle at 72% 78%, rgba(150, 0, 12, 0.42), transparent 38%),
    linear-gradient(135deg, #c90813 0%, #e21b1b 42%, #b80f13 100%);
  background-size: 170% 170%, 150% 150%, 180% 180%, 220% 220%;
  position: relative;
  overflow: hidden;
  animation: footer-red-breathe 18s ease-in-out infinite alternate;
}

.site-footer::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--yellow), var(--red) 46%, var(--yellow));
}

.site-footer::after {
  position: absolute;
  top: -80px;
  right: -90px;
  width: 360px;
  height: 360px;
  content: "";
  border: 44px solid rgba(255, 255, 255, 0.075);
  transform: rotate(45deg);
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 1.05fr 0.85fr;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(58px, 6vw, 92px) var(--page-pad);
}

.footer-brand img {
  width: 230px;
  height: 90px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.18));
}

.footer-brand p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.footer-help {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: center;
  margin-top: 18px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 209, 10, 0.72);
  border-radius: 8px;
  color: var(--yellow);
  background: rgba(255, 209, 10, 0.08);
}

.footer-help span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--red);
  background: var(--yellow);
  border-radius: 6px;
  font-size: 1.25rem;
}

.footer-help strong,
.footer-help em {
  display: block;
  font-style: normal;
}

.footer-col {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: clamp(22px, 3vw, 42px);
}

.footer-col h3 {
  color: var(--yellow);
  font-size: 1.35rem;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.footer-col h3::after {
  display: block;
  width: 36px;
  height: 4px;
  margin-top: 12px;
  content: "";
  background: var(--yellow);
  border-radius: 999px;
}

.footer-col > a,
.footer-col p {
  display: block;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.9);
}

.footer-col > a:not(.footer-budget) {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col > a:not(.footer-budget)::before {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  content: "›";
  color: var(--yellow);
  border: 1px solid rgba(255, 209, 10, 0.34);
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.footer-col a:hover {
  color: var(--yellow);
}

.footer-contact p a {
  display: inline;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.footer-col > a:not(.footer-budget):hover::before {
  border-color: var(--yellow);
  transform: translateX(3px);
}

.footer-contact strong {
  display: block;
  color: #fff;
}

.footer-contact p {
  position: relative;
  padding-left: 42px;
}

.footer-contact p::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--yellow);
  border: 1px solid rgba(255, 209, 10, 0.42);
  border-radius: 50%;
  font-size: 0.92rem;
}

.footer-contact p:nth-of-type(1)::before {
  content: "☎";
}

.footer-contact p:nth-of-type(2)::before {
  content: "✉";
}

.footer-contact p:nth-of-type(3)::before {
  content: "⌖";
}

.footer-contact p:nth-of-type(4)::before {
  content: "◷";
}

.footer-budget {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 16px !important;
  padding: 13px 18px;
  color: #201400 !important;
  background: linear-gradient(135deg, var(--yellow), #ffc400);
  border-radius: 7px;
  box-shadow: 0 16px 34px rgba(255, 209, 10, 0.18);
  font-weight: 900;
  text-transform: uppercase;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px var(--page-pad);
  border-top: 1px solid rgba(255, 209, 10, 0.74);
  background: linear-gradient(135deg, #101010, #202020);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom span {
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
}

.floating-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none;
  padding: 13px 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 900;
}

.floating-call::before {
  display: none;
  width: 22px;
  height: 22px;
  content: "";
  background: #fff;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 13px 18px;
  color: #fff;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(135deg, #2ee06f, #25d366 48%, #16ad4d);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24), 0 0 0 8px rgba(37, 211, 102, 0.1);
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.whatsapp-float svg {
  width: 29px;
  height: 29px;
  flex: 0 0 auto;
}

.whatsapp-float:hover {
  filter: saturate(1.08);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(37, 211, 102, 0.13);
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: 24px;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(46px) scale(0.985);
  transition: opacity 1.15s ease, transform 1.15s cubic-bezier(0.18, 0.84, 0.18, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes topbar-fade-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes element-fade-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logo-fade-down {
  from {
    opacity: 0;
    transform: translateY(-26px) scale(0.96);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes card-fade-up {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.975);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-image-fade-up {
  from {
    opacity: 0;
    transform: translateY(44px) scale(1.02);
    filter: saturate(0.88) brightness(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: saturate(1) brightness(1);
  }
}

@keyframes hero-overlay-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.8;
  }
}

@keyframes hero-content-in {
  from {
    opacity: 0;
    transform: translateY(46px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

@keyframes yellow-slide-in {
  from {
    transform: translateY(80px) rotate(-3deg);
  }
  to {
    transform: translateY(0) rotate(-3deg);
  }
}

@keyframes hero-slow-zoom {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08);
  }
}

@keyframes hero-light-sweep {
  from {
    transform: translateX(-5%);
    opacity: 0.45;
  }
  to {
    transform: translateX(8%);
    opacity: 0.9;
  }
}

@keyframes cta-shimmer {
  from {
    transform: translateX(-22%);
  }
  to {
    transform: translateX(22%);
  }
}

@keyframes footer-red-breathe {
  0% {
    background-position: 0% 35%, 85% 20%, 70% 90%, 0% 50%;
  }

  50% {
    background-position: 16% 22%, 72% 34%, 82% 72%, 54% 42%;
  }

  100% {
    background-position: 28% 40%, 92% 28%, 58% 82%, 100% 50%;
  }
}

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

@media (max-width: 1120px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 88px 18px auto 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header {
    display: flex;
    justify-content: space-between;
    min-height: 78px;
    padding-inline: 22px;
  }

  .site-header::after {
    display: none;
  }

  .brand img {
    width: 230px;
    height: 58px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .main-nav .nav-cta,
  .mobile-cta {
    display: inline-flex;
    width: 100%;
  }

  .trust-strip,
  .service-grid,
  .service-grid-large {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-carousel {
    --project-visible: 2;
  }

  .project-showcase,
  .contact-preview {
    grid-template-columns: 1fr;
  }

  .project-showcase {
    min-height: 0;
  }

  .project-copy h2 {
    max-width: 620px;
  }

  .contact-preview {
    padding-inline: 24px;
  }

  .quote-copy {
    max-width: 850px;
  }

  .quote-copy h2 {
    max-width: 860px;
  }

  .project-slide {
    height: 320px;
  }

  .about-band {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .stats {
    grid-column: 1;
    padding: 44px 24px;
  }

  .about-copy > p:not(.eyebrow) {
    display: none;
  }

  .about-copy .btn {
    margin-top: 22px;
  }

  .forms-layout {
    flex-direction: column;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .reviews-hero {
    grid-template-columns: 1fr;
  }

  .reviews-copy {
    text-align: left;
  }

  .reviews-copy h2,
  .reviews-copy > p {
    margin-left: 0;
    margin-right: 0;
  }

  .review-grid {
    grid-auto-columns: calc((100% - clamp(22px, 3vw, 42px)) / 2);
  }

  .reviews-cta {
    grid-template-columns: auto 1fr;
  }

  .reviews-actions {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid rgba(226, 27, 27, 0.18);
    padding: 22px 0 0;
  }

  .contact-card,
  .form-card {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 10px 16px;
  }

  .brand img {
    width: 206px;
    height: 54px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-inner {
    width: calc(100% - 40px);
  }

  .hero-content {
    padding: 74px 0 96px;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-actions,
  .split-heading,
  .cta-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-panel .btn {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    width: 100%;
  }

  .trust-strip article {
    border: 1px solid rgba(226, 27, 27, 0.18);
    box-shadow: 0 16px 38px rgba(184, 15, 19, 0.18);
  }

  .trust-icon {
    width: 56px;
    height: 56px;
    font-size: 1.1rem;
  }

  .trust-icon img {
    width: 38px;
    height: 38px;
  }

  .service-grid,
  .service-grid-large,
  .story-section {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-col {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    padding: 26px 0 0;
  }

  .footer-brand img {
    width: 210px;
  }

  .footer-help {
    display: none;
  }

  .project-carousel {
    --project-visible: 1;
  }

  .project-slide {
    height: 270px;
  }

  .cta-panel {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }

  .cta-panel h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .contact-preview {
    padding-inline: 18px;
  }

  .contact-preview::before {
    width: 140vw;
    height: 118vw;
    opacity: 0.12;
  }

  .quote-copy h2 {
    font-size: clamp(2.35rem, 12vw, 3.6rem);
  }

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

  .form-head {
    display: block;
  }

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

  .contact-section {
    padding: 42px 18px 72px;
  }

  .reviews-section {
    padding: 54px 18px 64px;
  }

  .reviews-copy h2 {
    font-size: clamp(2.35rem, 11vw, 3.9rem);
  }

  .google-score,
  .review-card {
    padding: 24px;
  }

  .review-grid {
    grid-auto-columns: 88%;
  }

  .reviews-cta {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .reviews-badge {
    width: 68px;
    height: 68px;
  }

  .contact-panel-info {
    padding: 24px 18px;
  }

  .contact-links,
  .map-cards {
    grid-template-columns: 1fr;
  }

  .contact-panel-info h2 {
    font-size: clamp(2.2rem, 12vw, 3.7rem);
  }

  .contact-panel-map iframe {
    min-height: 360px;
  }

  .page-hero {
    padding-top: 64px;
  }

  .floating-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
    padding: 0;
    z-index: 999;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24), 0 0 0 8px rgba(226, 27, 27, 0.1);
    color: transparent;
    font-size: 0;
  }

  .floating-call::before {
    display: block;
    width: 28px;
    height: 28px;
    color: #fff;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 84px;
    width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0;
    gap: 0;
  }

  .whatsapp-float svg {
    width: 31px;
    height: 31px;
  }

  .whatsapp-float span {
    display: none;
  }

  .reviews-actions {
    display: none;
  }
}
