:root {
  --white: #ffffff;
  --paper: #f5f8fb;
  --light-gray: #e7edf3;
  --mid-gray: #617080;
  --ink: #172536;
  --soft-ink: #38495a;
  --navy: #10263f;
  --blue: #0c78bf;
  --blue-dark: #0b4c7d;
  --sky: #e9f6ff;
  --orange: #ff641f;
  --orange-dark: #df460c;
  --line: #d4dee8;
  --page-gradient: linear-gradient(135deg, #dff3ff 0%, #52a6d8 34%, #1d6ea9 58%, #102f52 100%);
  --page-gradient-deep: linear-gradient(135deg, #dff3ff 0%, #479bd0 36%, #155b92 66%, #102f52 100%);
  --card-blue: #0c3b66;
  --card-blue-2: #0f4f82;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 6%, rgba(255, 100, 31, 0.14), transparent 24%),
    var(--page-gradient-deep);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.top-strip {
  background: linear-gradient(90deg, var(--navy), var(--blue-dark));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.92rem;
}

.top-strip .wrap {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  text-decoration: none;
  min-width: 260px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 102px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 14px rgba(23, 37, 54, 0.12));
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.32rem;
  color: var(--navy);
  line-height: 1;
}

.brand-text span {
  display: block;
  color: var(--mid-gray);
  font-size: 0.9rem;
  margin-top: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 4px;
  color: var(--soft-ink);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: var(--sky);
  color: var(--orange-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--orange);
  border-radius: 4px;
  background: linear-gradient(180deg, #ff8136, var(--orange));
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 10px 20px rgba(242, 103, 34, 0.18);
}

.button.secondary {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--blue);
  box-shadow: none;
}

.hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 100, 31, 0.16), transparent 26%),
    var(--page-gradient-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-grid {
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 1.05fr);
  align-items: center;
  gap: 44px;
  padding: 48px 0 44px;
}

.home-page .hero-grid {
  min-height: 500px;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 34px 0 26px;
}

.home-page .hero-grid > *,
.home-page .slogan-block {
  min-width: 0;
}

.home-page .hero-content {
  grid-column: 1 / -1;
}

.home-page h1 {
  font-size: clamp(2.35rem, 5.2vw, 4.25rem);
}

.eyebrow {
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  margin: 0 0 10px;
}

h1,
h2,
h3 {
  font-family: "Times New Roman", Times, serif;
  letter-spacing: 0;
  line-height: 1.08;
  color: var(--white);
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.9rem);
  max-width: 760px;
}

.slogan-block {
  width: fit-content;
  max-width: 760px;
  padding: 28px 32px 30px;
  background: linear-gradient(135deg, var(--navy), var(--card-blue-2));
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-left: 8px solid var(--orange);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(7, 24, 42, 0.28);
}

.home-page .slogan-block {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: 22px;
  width: 100%;
  max-width: 100%;
  min-height: 300px;
  padding: 24px 30px 26px;
  overflow: hidden;
}

.slogan-block h1 {
  max-width: 640px;
}

.home-page .slogan-block h1 span {
  display: block;
}

.home-page .slogan-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  max-width: 100%;
}

.slogan-block p {
  margin: 16px 0 0;
  padding: 10px 14px;
  width: fit-content;
  max-width: 100%;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--navy);
  font-weight: 800;
  font-size: clamp(1rem, 1.7vw, 1.28rem);
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.1rem);
}

h3 {
  font-size: 1.45rem;
}

.lead {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.05rem, 1.7vw, 1.24rem);
  max-width: 720px;
  margin: 22px 0 0;
}

.home-page .lead {
  margin-left: auto;
  margin-right: auto;
  margin-top: 16px;
  text-align: center;
}

.hero-actions,
.section-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.home-page .hero-actions {
  justify-content: center;
  margin-top: 20px;
}

.why-strip {
  margin-top: 24px;
  max-width: 760px;
  padding: 18px 20px;
  border-radius: 6px;
  background: rgba(12, 59, 102, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 42px rgba(7, 24, 42, 0.16);
}

.home-page .why-strip {
  grid-column: 1 / -1;
  margin-top: 0;
  max-width: 100%;
  padding: 16px 22px;
}

.why-strip h2 {
  font-size: clamp(1.32rem, 2vw, 1.72rem);
  margin-bottom: 12px;
}

.home-page .why-strip h2 {
  font-size: clamp(1.25rem, 1.75vw, 1.62rem);
  margin-bottom: 10px;
}

.why-strip ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.home-page .why-strip ul {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px 16px;
}

.why-strip li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.why-strip li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.82);
}

.hero-note {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 24px;
  max-width: 760px;
}

.home-page .hero-note {
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 100%;
  margin-top: -14px;
}

.note-card,
.service-card,
.review-card,
.info-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, var(--card-blue), var(--navy));
  border-radius: 6px;
  color: var(--white);
  box-shadow: 0 18px 44px rgba(7, 24, 42, 0.18);
}

.note-card {
  padding: 16px;
  border-top: 4px solid var(--orange);
}

.home-page .note-card {
  min-height: 122px;
  padding: 13px 14px;
}

.home-page .note-card b {
  font-size: 1.12rem;
}

.home-page .note-card span {
  font-size: 0.9rem;
  line-height: 1.45;
}

.note-card b {
  display: block;
  font-family: "Times New Roman", Times, serif;
  font-size: 1.18rem;
}

.note-card span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.service-visual {
  border: 0;
  border-radius: 16px;
  background:
    radial-gradient(circle at 55% 48%, rgba(255, 255, 255, 0.18), transparent 48%),
    rgba(12, 59, 102, 0.18);
  padding: 0;
  box-shadow: none;
  overflow: hidden;
}

.home-page .service-visual {
  align-self: center;
  justify-self: end;
  position: relative;
  background: transparent;
  border-radius: 0;
  overflow: visible;
  margin: 0;
  z-index: 1;
}

.home-page .service-visual::before {
  content: none;
}

.service-visual img {
  width: 100%;
  border-radius: 16px;
  opacity: 0.94;
  filter: saturate(0.92) contrast(0.96) brightness(0.98) drop-shadow(0 22px 44px rgba(7, 24, 42, 0.18));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 50%, rgba(0, 0, 0, 0.7) 67%, transparent 96%);
  mask-image: radial-gradient(ellipse at center, #000 50%, rgba(0, 0, 0, 0.7) 67%, transparent 96%);
}

.home-page .service-visual img {
  border-radius: 0;
  opacity: 0.98;
  filter: saturate(1.04) contrast(1.02) brightness(1.02) drop-shadow(0 24px 42px rgba(7, 24, 42, 0.22));
  transform: translateX(2%) scale(1.08);
  transform-origin: center;
  -webkit-mask-image: none;
  mask-image: none;
}

.home-page .caption-strip {
  display: none;
}

.caption-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 15px 4px 2px;
  color: rgba(255, 255, 255, 0.92);
}

.caption-strip strong {
  font-family: "Times New Roman", Times, serif;
  font-size: 1.25rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff1e7;
  color: var(--orange-dark);
  font-weight: 800;
  font-size: 0.82rem;
}

.section {
  padding: 68px 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.16), transparent 24%),
    var(--page-gradient-deep);
}

.home-page .section {
  padding: 48px 0;
}

.home-page .section.soft {
  padding: 34px 0;
}

.faq-section {
  padding-top: 52px;
}

.section.soft {
  background:
    linear-gradient(115deg, rgba(255, 100, 31, 0.75) 0%, rgba(42, 116, 158, 0.8) 42%, rgba(14, 45, 76, 0.98) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.home-page .section-head {
  margin-bottom: 22px;
}

.section-head p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service-card,
.review-card,
.info-card {
  padding: 22px;
}

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

.service-card::before,
.review-card::before,
.info-card::before {
  content: "";
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 999px;
  background: #ffffff;
  margin-bottom: 16px;
}

.service-card:nth-child(even)::before,
.review-card:nth-child(even)::before {
  background: var(--orange);
}

.service-card p,
.review-card p,
.info-card p {
  color: rgba(255, 255, 255, 0.88);
  margin: 12px 0 0;
}

.service-card ul,
.info-card ul,
.fine-print ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.88);
}

.service-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.service-title img {
  width: 58px;
  height: 44px;
  object-fit: contain;
  padding: 6px;
  border-radius: 4px;
  background: var(--orange);
}

.price-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.price-item {
  background: linear-gradient(145deg, rgba(12, 59, 102, 0.96), rgba(16, 38, 63, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  padding: 18px;
}

.price-item b {
  display: block;
  font-size: clamp(1.35rem, 2.1vw, 1.9rem);
  font-family: "Times New Roman", Times, serif;
  color: var(--white);
}

.stars {
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.05em;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 12px;
}

.rating-row .stars,
.summary-stars {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.96);
  color: #ffc233;
  text-shadow: 0 1px 0 #c06d00;
  letter-spacing: 0.03em;
}

.review-card cite {
  display: flex;
  align-items: center;
  gap: 10px;
  font-style: normal;
  font-weight: 800;
  margin-top: 18px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
  border: 2px solid var(--orange);
  box-shadow: 0 5px 12px rgba(7, 24, 42, 0.18);
}

.review-summary {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 1.15fr);
  gap: 22px;
  align-items: center;
  margin-bottom: 26px;
  padding: 24px 26px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  box-shadow: 0 18px 44px rgba(7, 24, 42, 0.18);
}

.review-summary h2 {
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.review-summary p {
  margin: 12px 0 0;
  font-size: 1.12rem;
}

.review-summary ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  font-weight: 900;
}

.review-summary li::before {
  content: "✓";
  color: var(--orange);
  margin-right: 8px;
}

.contact-band {
  background:
    linear-gradient(135deg, rgba(242, 103, 34, 0.96), rgba(242, 103, 34, 0.72) 32%, rgba(13, 79, 130, 0.98) 68%, var(--navy)),
    var(--navy);
  color: var(--white);
  padding: 54px 0;
}

.home-page .contact-band {
  padding: 40px 0;
}

.contact-band h2,
.contact-band p {
  color: var(--white);
}

.contact-band p {
  margin: 14px 0 0;
  opacity: 0.86;
}

.contact-band .button.secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}

.page-title {
  background:
    radial-gradient(circle at 85% 0%, rgba(255, 100, 31, 0.14), transparent 24%),
    var(--page-gradient-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding: 62px 0;
}

.page-title p {
  max-width: 730px;
  color: rgba(255, 255, 255, 0.88);
  margin: 18px 0 0;
  font-size: 1.12rem;
}

.service-page-hero {
  padding: 0;
  overflow: hidden;
}

.service-hero-grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  gap: 40px;
  padding: 50px 0 0;
}

.service-hero-grid h1 {
  max-width: 720px;
}

.service-page .service-headline-block {
  max-width: 740px;
}

.service-page .service-headline-block h1 {
  font-size: clamp(2.55rem, 5vw, 4.45rem);
}

.service-hero-grid img {
  align-self: end;
  width: min(760px, 100%);
  margin-left: auto;
  border-radius: 16px;
  opacity: 0.93;
  filter: saturate(0.9) contrast(0.96) brightness(0.98) drop-shadow(0 24px 50px rgba(7, 24, 42, 0.18));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 50%, rgba(0, 0, 0, 0.72) 68%, transparent 96%);
  mask-image: radial-gradient(ellipse at center, #000 50%, rgba(0, 0, 0, 0.72) 68%, transparent 96%);
}

.contact-page-hero {
  padding: 0;
  overflow: hidden;
}

.contact-hero-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: 42px;
  padding: 50px 0 0;
}

.contact-headline-block,
.service-headline-block {
  width: fit-content;
  max-width: 710px;
  padding: 24px 28px 28px;
  background: rgba(255, 255, 255, 0.96);
  border-left: 8px solid var(--orange);
  border-radius: 6px;
  box-shadow: 0 22px 56px rgba(7, 24, 42, 0.22);
}

.contact-headline-block h1,
.service-headline-block h1 {
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  line-height: 1.12;
  font-size: clamp(2.4rem, 5vw, 4.3rem);
}

.contact-subtitle,
.service-subtitle {
  display: inline-block;
  max-width: 720px;
  margin: 22px 0 0;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 4px;
  color: var(--navy);
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(7, 24, 42, 0.16);
}

.page-title .contact-subtitle,
.page-title .service-subtitle {
  color: var(--navy);
}

.contact-hero-grid img {
  align-self: end;
  width: min(610px, 100%);
  margin-left: auto;
  border-radius: 16px;
  opacity: 0.93;
  filter: saturate(0.9) contrast(0.96) brightness(0.98) drop-shadow(0 26px 48px rgba(7, 24, 42, 0.18));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 58%, rgba(0, 0, 0, 0.78) 73%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 58%, rgba(0, 0, 0, 0.78) 73%, transparent 100%);
}

.contact-hero-grid img.hero-cutout,
.reviews-hero-grid img.hero-cutout {
  border-radius: 0;
  opacity: 0.96;
  filter: saturate(0.94) contrast(0.98) brightness(0.98) drop-shadow(0 24px 42px rgba(7, 24, 42, 0.2));
  -webkit-mask-image: none;
  mask-image: none;
}

.reviews-page-hero {
  padding: 0;
  overflow: hidden;
}

.reviews-hero-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 42px;
  padding: 50px 0 0;
}

.review-headline-block {
  width: fit-content;
  max-width: 680px;
  padding: 24px 28px 28px;
  background: rgba(255, 255, 255, 0.96);
  border-left: 8px solid var(--orange);
  border-radius: 6px;
  box-shadow: 0 22px 56px rgba(7, 24, 42, 0.22);
}

.review-headline-block h1 {
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  line-height: 1.12;
  font-size: clamp(2.25rem, 3.8vw, 3.55rem);
}

.review-subtitle {
  display: inline-block;
  max-width: 720px;
  margin: 22px 0 0;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 4px;
  color: var(--navy);
  font-size: clamp(1.06rem, 1.7vw, 1.3rem);
  font-weight: 800;
  box-shadow: 0 16px 40px rgba(7, 24, 42, 0.16);
}

.page-title .review-subtitle {
  color: var(--navy);
}

.reviews-hero-grid img {
  align-self: end;
  width: min(620px, 100%);
  margin-left: auto;
  border-radius: 16px;
  opacity: 0.93;
  filter: saturate(0.9) contrast(0.96) brightness(0.98) drop-shadow(0 26px 48px rgba(7, 24, 42, 0.18));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 58%, rgba(0, 0, 0, 0.78) 73%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 58%, rgba(0, 0, 0, 0.78) 73%, transparent 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 800;
  color: var(--white);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  min-height: 46px;
  padding: 11px 12px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.next-steps {
  margin-top: 18px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.96);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  color: var(--navy);
}

.next-steps h3 {
  color: var(--navy);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.28rem;
  font-weight: 900;
}

.next-steps ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--soft-ink);
  font-weight: 800;
}

.fine-print {
  margin-top: 26px;
  padding: 18px;
  background: linear-gradient(145deg, var(--card-blue), var(--navy));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.93rem;
}

.service-visit-note {
  margin-top: 26px;
  padding: 18px 22px;
  background: linear-gradient(145deg, var(--card-blue), var(--navy));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 4px solid var(--orange);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  box-shadow: 0 18px 44px rgba(7, 24, 42, 0.18);
}

.service-visit-note ul {
  margin: 0;
  padding-left: 20px;
}

.site-footer {
  background: var(--navy);
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  font-weight: 700;
}

.footer-links a:hover {
  color: #ffb07d;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 62px;
  height: auto;
  padding: 6px;
  border-radius: 6px;
  background: var(--white);
}

@media (max-width: 860px) {
  .nav,
  .section-head,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 92px;
  }

  .hero-grid,
  .service-hero-grid,
  .contact-hero-grid,
  .reviews-hero-grid,
  .contact-layout,
  .review-summary,
  .grid-2,
  .grid-3,
  .price-row {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 42px 0;
  }

  .home-page .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 0;
  }

  .home-page .slogan-block {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .home-page .service-visual {
    margin: 4px 0 0;
  }

  .home-page .service-visual img {
    width: min(520px, 100%);
    margin: 0 auto;
    transform: scale(1.02);
  }

  .service-hero-grid {
    min-height: auto;
    padding: 46px 0 0;
  }

  .service-hero-grid img {
    margin: 12px auto 0;
    width: 100%;
  }

  .contact-hero-grid {
    min-height: auto;
    padding: 42px 0 0;
  }

  .contact-hero-grid img {
    width: min(520px, 100%);
    margin: 18px auto 0;
  }

  .reviews-hero-grid {
    min-height: auto;
    padding: 42px 0 0;
  }

  .reviews-hero-grid img {
    width: min(540px, 100%);
    margin: 18px auto 0;
  }

  .hero-note,
  .why-strip ul {
    grid-template-columns: 1fr;
  }

  .home-page .hero-note,
  .home-page .why-strip ul {
    grid-template-columns: 1fr;
  }

  .home-page .hero-note {
    margin-top: 0;
  }

  .top-strip .wrap {
    align-items: flex-start;
    padding: 9px 0;
  }
}

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

  .wrap {
    width: min(var(--max), calc(100% - 24px));
  }

  .home-page .wrap {
    width: min(var(--max), calc(100% - 24px));
  }

  .nav-links a {
    padding: 8px 8px;
    font-size: 0.9rem;
  }

  .brand {
    width: 100%;
  }

  .brand img {
    width: 78px;
  }

  .brand-text strong {
    font-size: 1.08rem;
  }

  .brand-text span {
    font-size: 0.82rem;
  }

  .section,
  .page-title {
    padding: 46px 0;
  }

  .contact-page-hero {
    padding: 0;
  }

  .reviews-page-hero {
    padding: 0;
  }

  .contact-headline-block {
    padding: 18px 18px 20px;
  }

  .contact-headline-block h1 {
    font-size: clamp(2.2rem, 11vw, 3.45rem);
  }

  .review-headline-block {
    padding: 18px 18px 20px;
  }

  .review-headline-block h1 {
    font-size: clamp(2.05rem, 10vw, 3.2rem);
  }

  .button {
    width: 100%;
  }

  .home-page h1 {
    font-size: clamp(1.95rem, 8.4vw, 2.55rem);
  }

  .home-page .slogan-block {
    width: 100%;
    max-width: 100%;
    padding: 20px 18px 10px;
  }

  .home-page .slogan-block h1,
  .home-page .slogan-block p {
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .home-page .slogan-block p {
    width: min(100%, 280px);
    font-size: 0.98rem;
  }

  .home-page .lead {
    width: 100%;
    max-width: 290px;
    overflow-wrap: anywhere;
  }
}

/* Premium visual refresh */
body {
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
}

.site-header {
  background: rgba(16, 38, 63, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 34px rgba(7, 24, 42, 0.16);
}

.top-strip {
  background: linear-gradient(90deg, var(--orange-dark), var(--orange));
  color: var(--white);
  font-weight: 800;
}

.nav {
  min-height: 86px;
}

.brand img {
  width: 88px;
  padding: 6px;
  border-radius: 8px;
  background: var(--white);
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.24));
}

.brand-text strong,
.brand-text span,
.nav-links a {
  color: var(--white);
}

.brand-text span {
  opacity: 0.78;
}

.nav-links a {
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.86);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.nav-links .button {
  color: var(--white);
}

.button {
  border-radius: 6px;
  box-shadow: 0 14px 28px rgba(223, 70, 12, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(223, 70, 12, 0.3);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
}

.hero,
.page-title {
  background:
    linear-gradient(120deg, rgba(16, 38, 63, 0.96), rgba(12, 78, 126, 0.92) 48%, rgba(12, 120, 191, 0.72)),
    var(--page-gradient-deep);
  position: relative;
  overflow: hidden;
}

.hero::before,
.page-title::before {
  content: "";
  position: absolute;
  inset: auto -10% -26% 52%;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 100, 31, 0.24), transparent 65%);
  pointer-events: none;
}

.hero-grid,
.service-hero-grid,
.contact-hero-grid,
.reviews-hero-grid {
  position: relative;
  z-index: 1;
}

.home-page .hero-grid {
  min-height: 640px;
  padding: 52px 0 42px;
}

.eyebrow {
  color: #ffd7c4;
}

.home-page .slogan-block {
  min-height: 360px;
  padding: 34px 36px 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 8px solid var(--orange);
  background:
    linear-gradient(135deg, rgba(16, 38, 63, 0.96), rgba(12, 59, 102, 0.92)),
    rgba(16, 38, 63, 0.96);
  box-shadow: 0 30px 80px rgba(7, 24, 42, 0.34);
}

.home-page .slogan-block h1 {
  font-size: clamp(2.6rem, 5.8vw, 5.4rem);
}

.slogan-block p {
  border-left: 4px solid var(--orange);
}

.home-page .service-visual img {
  transform: translateX(1%) scale(1.18);
  filter: saturate(1.08) contrast(1.04) brightness(1.03) drop-shadow(0 30px 52px rgba(0, 0, 0, 0.28));
}

.home-page .lead {
  max-width: 850px;
}

.home-page .hero-note {
  margin-top: 4px;
}

.note-card {
  background: var(--white);
  border: 1px solid rgba(16, 38, 63, 0.08);
  border-top: 4px solid var(--orange);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(7, 24, 42, 0.14);
}

.note-card b {
  color: var(--navy);
}

.note-card span {
  color: var(--soft-ink);
}

.why-strip {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--navy);
}

.why-strip h2 {
  color: var(--navy);
}

.why-strip ul {
  color: var(--soft-ink);
}

.section {
  background: var(--paper);
  color: var(--ink);
}

.section:nth-of-type(odd) {
  background: var(--white);
}

.section h2,
.section h3,
.info-card h2,
.info-card h3 {
  color: var(--navy);
}

.section-head p,
.service-card p,
.review-card p,
.info-card p,
.service-card ul,
.info-card ul,
.fine-print ul {
  color: var(--soft-ink);
}

.section-head {
  align-items: center;
}

.service-card,
.review-card,
.info-card {
  background: var(--white);
  border: 1px solid rgba(16, 38, 63, 0.08);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(7, 24, 42, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover,
.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(12, 120, 191, 0.24);
  box-shadow: 0 24px 52px rgba(7, 24, 42, 0.13);
}

.service-card::before,
.review-card::before,
.info-card::before {
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.service-title img {
  background: #fff1e7;
  border: 1px solid #ffd1bb;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  color: var(--orange-dark);
}

.review-feature {
  background: var(--white);
  padding-top: 24px;
}

.review-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 24px;
  align-items: stretch;
}

.review-feature-grid > div,
.review-feature blockquote {
  margin: 0;
  padding: 28px;
  border-radius: 8px;
}

.review-feature-grid > div {
  background:
    linear-gradient(135deg, rgba(16, 38, 63, 0.97), rgba(12, 78, 126, 0.94));
  color: var(--white);
}

.review-feature-grid h2,
.review-feature-grid > div p {
  color: var(--white);
}

.review-feature-grid > div p {
  margin: 14px 0 0;
  opacity: 0.88;
}

.review-feature blockquote {
  background: #fff7f1;
  border: 1px solid #ffd1bb;
  color: var(--navy);
  box-shadow: 0 18px 40px rgba(7, 24, 42, 0.08);
}

.review-feature blockquote p {
  margin: 14px 0 0;
  color: var(--navy);
  font-size: 1.22rem;
  font-weight: 800;
}

.review-feature cite {
  display: block;
  margin-top: 16px;
  color: var(--soft-ink);
  font-style: normal;
  font-weight: 900;
}

.section.soft {
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
}

.price-item {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 5px solid var(--orange);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(7, 24, 42, 0.12);
}

.price-item b {
  color: var(--navy);
}

.price-item span {
  color: var(--soft-ink);
}

.contact-band {
  background:
    linear-gradient(135deg, rgba(223, 70, 12, 0.95), rgba(255, 100, 31, 0.88) 34%, rgba(11, 76, 125, 0.98) 70%, var(--navy));
}

.page-title h1 {
  color: var(--white);
}

.contact-headline-block h1,
.review-headline-block h1 {
  color: var(--navy);
}

.subpage-hero-media {
  position: relative;
  margin: 0;
  align-self: end;
  border-radius: 10px 10px 0 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 0;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.subpage-hero-media::before {
  content: "";
  position: absolute;
  inset: auto 10% 0;
  height: 34%;
  border-radius: 999px 999px 0 0;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(2px);
}

.service-hero-grid .subpage-hero-media {
  width: min(640px, 100%);
  justify-self: end;
}

.service-hero-grid .subpage-hero-media img {
  width: 100%;
  margin: 0;
  border-radius: 0;
  opacity: 1;
  transform: scale(1.03);
  transform-origin: center bottom;
  -webkit-mask-image: linear-gradient(#000 82%, rgba(0, 0, 0, 0.86));
  mask-image: linear-gradient(#000 82%, rgba(0, 0, 0, 0.86));
}

.cutout-media {
  width: min(470px, 100%);
  justify-self: center;
  overflow: visible;
  border: 0;
  background:
    radial-gradient(circle at 50% 78%, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
  box-shadow: none;
}

.cutout-media::before {
  inset: auto 8% 6%;
  height: 26%;
  background: rgba(7, 24, 42, 0.22);
  filter: blur(16px);
}

.contact-hero-grid img.hero-cutout,
.reviews-hero-grid img.hero-cutout {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  opacity: 1;
  transform: scale(1.04);
}

.hero-proof-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(7, 24, 42, 0.12);
}

.subpage-feature {
  background: var(--white);
  padding-top: 12px;
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), var(--blue-dark));
  box-shadow: 0 22px 54px rgba(7, 24, 42, 0.14);
}

.split-feature h2,
.split-feature p {
  color: var(--white);
}

.split-feature p {
  margin: 14px 0 0;
  opacity: 0.88;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.feature-list span,
.contact-mini-card {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  font-weight: 900;
}

.feature-list span {
  padding: 16px;
  border-left: 4px solid var(--orange);
}

.contact-mini-card {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(16, 38, 63, 0.08);
  border-left: 4px solid var(--orange);
}

.contact-mini-card span {
  color: var(--soft-ink);
  font-weight: 700;
}

.service-hero-grid img,
.contact-hero-grid img,
.reviews-hero-grid img {
  filter: saturate(1.02) contrast(1.02) brightness(1.02) drop-shadow(0 28px 54px rgba(0, 0, 0, 0.24));
}

.contact-headline-block,
.review-headline-block,
.contact-subtitle,
.review-subtitle,
.review-summary,
.next-steps {
  border-radius: 8px;
}

label {
  color: var(--navy);
}

input,
select,
textarea {
  border-color: rgba(16, 38, 63, 0.18);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(12, 120, 191, 0.22);
  border-color: var(--blue);
}

.service-visit-note,
.fine-print {
  background: linear-gradient(135deg, var(--navy), var(--card-blue));
}

@media (max-width: 860px) {
  .home-page .hero-grid {
    min-height: auto;
  }

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

  .home-page .service-visual img {
    transform: none;
  }
}

@media (max-width: 520px) {
  .site-header,
  main,
  .hero,
  .section,
  .contact-band,
  .page-title {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .wrap,
  .home-page .wrap {
    width: calc(100% - 24px);
    max-width: calc(100% - 24px);
  }

  .hero-content,
  .home-page .hero-content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .home-page .slogan-block {
    display: block;
    overflow: hidden;
    width: min(100%, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
  }

  .home-page .service-visual img {
    width: 100%;
    max-width: 100%;
    transform: none;
  }

  .home-page .lead {
    width: 100%;
    max-width: 330px;
    margin-left: 0;
    margin-right: 0;
    text-align: left;
    overflow-wrap: normal;
    font-size: 1rem;
  }

  .home-page .hero-actions {
    justify-content: flex-start;
  }
}

/* Subpage visual refinement */
.contact-headline-block,
.review-headline-block {
  max-width: 620px;
  box-shadow: 0 26px 64px rgba(7, 24, 42, 0.24);
}

.contact-subtitle,
.review-subtitle {
  max-width: 580px;
}

.cutout-media {
  width: min(520px, 100%);
}

.contact-hero-grid img.hero-cutout,
.reviews-hero-grid img.hero-cutout {
  transform: scale(1.08);
}

.reviews-page .cutout-media {
  width: min(560px, 100%);
}

.reviews-page .reviews-hero-grid img.hero-cutout {
  transform: scale(1.13);
}

.review-card {
  min-height: 245px;
}

.review-card cite {
  align-items: flex-start;
}

.review-card cite::after {
  content: "Verified local homeowner";
  display: block;
  color: var(--mid-gray);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

@media (max-width: 520px) {
  .service-hero-grid,
  .contact-hero-grid,
  .reviews-hero-grid {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    gap: 22px;
  }

  .service-page .service-headline-block h1,
  .contact-headline-block h1,
  .review-headline-block h1 {
    font-size: clamp(2.2rem, 10vw, 3.05rem);
    line-height: 1.08;
  }

  .service-hero-grid h1,
  .service-hero-grid p,
  .service-headline-block,
  .contact-headline-block,
  .review-headline-block,
  .service-subtitle,
  .contact-subtitle,
  .review-subtitle {
    width: 100%;
    max-width: 100%;
  }

  .service-headline-block,
  .contact-headline-block,
  .review-headline-block {
    padding: 18px 20px 20px;
  }

  .hero-proof-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-proof-row span {
    width: 100%;
    justify-content: center;
  }

  .subpage-hero-media,
  .cutout-media,
  .service-hero-grid .subpage-hero-media,
  .reviews-page .cutout-media {
    width: 100%;
    max-width: 100%;
  }

  .contact-hero-grid img.hero-cutout,
  .reviews-hero-grid img.hero-cutout,
  .service-hero-grid .subpage-hero-media img {
    transform: none;
  }

  .split-feature,
  .feature-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .service-page .service-headline-block h1,
  .contact-headline-block h1,
  .review-headline-block h1 {
    font-size: clamp(1.72rem, 7.2vw, 2rem);
    line-height: 1.12;
    max-width: 100%;
    overflow-wrap: normal;
  }

  .service-hero-grid h1,
  .service-hero-grid p,
  .service-headline-block,
  .contact-headline-block,
  .review-headline-block,
  .service-subtitle,
  .contact-subtitle,
  .review-subtitle {
    max-width: calc(100vw - 32px);
  }

  .service-subtitle,
  .contact-subtitle,
  .review-subtitle,
  .page-title p {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 330px;
    width: 100%;
  }
}

/* Photo composition polish */
.home-page .service-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-page .service-visual img {
  transform: scale(1.26);
  transform-origin: center center;
}

.service-hero-grid .subpage-hero-media {
  aspect-ratio: 1.28 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-hero-grid .subpage-hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 58% 50%;
  transform: scale(1.12);
}

.cutout-media {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 380px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.contact-hero-grid img.hero-cutout {
  width: min(410px, 92%);
  transform: scale(1.18);
  transform-origin: center bottom;
}

.reviews-hero-grid img.hero-cutout {
  width: min(430px, 92%);
  transform: scale(1.2);
  transform-origin: center bottom;
}

@media (max-width: 860px) {
  .home-page .service-visual img {
    transform: scale(1.08);
  }

  .service-hero-grid .subpage-hero-media {
    aspect-ratio: 1.08 / 1;
  }

  .cutout-media {
    min-height: 360px;
  }
}

@media (max-width: 520px) {
  .home-page .service-visual img {
    transform: scale(1.04);
  }

  .service-hero-grid .subpage-hero-media {
    aspect-ratio: 1 / 0.82;
  }

  .service-hero-grid .subpage-hero-media img {
    object-position: 58% 50%;
    transform: scale(1.08);
  }

  .cutout-media {
    min-height: 300px;
    border-radius: 8px;
  }

  .contact-hero-grid img.hero-cutout,
  .reviews-hero-grid img.hero-cutout {
    width: min(320px, 96%);
    transform: scale(1.08);
  }
}

/* Unified card system */
.note-card,
.service-card,
.review-card,
.info-card,
.price-item,
.review-summary,
.next-steps,
.service-visit-note,
.contact-mini-card,
.split-feature {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(16, 38, 63, 0.1);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(7, 24, 42, 0.1);
}

.note-card::after,
.service-card::after,
.review-card::after,
.info-card::after,
.price-item::after,
.review-summary::after,
.next-steps::after,
.service-visit-note::after,
.contact-mini-card::after,
.split-feature::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.note-card,
.service-card,
.review-card,
.info-card,
.price-item {
  border-top: 0;
}

.note-card b,
.price-item b,
.service-card h2,
.service-card h3,
.review-card h2,
.review-card h3,
.info-card h2,
.info-card h3,
.next-steps h3,
.review-summary h2,
.split-feature h2 {
  color: var(--navy);
}

.note-card span,
.price-item span,
.service-card p,
.review-card p,
.info-card p,
.service-card ul,
.info-card ul,
.next-steps ul,
.contact-mini-card span,
.split-feature p {
  color: var(--soft-ink);
}

.service-card::before,
.review-card::before,
.info-card::before {
  display: none;
}

.service-title img {
  background: #fff1e7;
  border: 1px solid #ffd1bb;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.review-summary,
.split-feature {
  padding-top: 30px;
}

.split-feature {
  background: var(--white);
}

.feature-list span {
  background: #f5f8fb;
  border: 1px solid rgba(16, 38, 63, 0.08);
  border-left: 4px solid var(--orange);
  color: var(--navy);
  box-shadow: none;
}

.service-visit-note {
  padding-top: 22px;
}

.service-visit-note ul {
  color: var(--soft-ink);
}

.service-card:hover,
.review-card:hover,
.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(12, 120, 191, 0.22);
  box-shadow: 0 24px 54px rgba(7, 24, 42, 0.14);
}

@media (max-width: 520px) {
  .service-card,
  .review-card,
  .info-card,
  .note-card,
  .price-item,
  .review-summary,
  .next-steps,
  .service-visit-note,
  .split-feature {
    border-radius: 7px;
  }
}

/* Transparent cutout test for mascot hero photos */
.contact-page .cutout-media,
.service-page .cutout-media,
.reviews-page .cutout-media {
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  min-height: 430px;
  border-radius: 0;
}

.contact-page .cutout-media::before,
.service-page .cutout-media::before,
.reviews-page .cutout-media::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 18px;
  height: 54px;
  border-radius: 999px;
  background: rgba(7, 24, 42, 0.28);
  filter: blur(18px);
}

.contact-page .contact-hero-grid img.hero-cutout,
.service-page .service-hero-grid img.hero-cutout,
.reviews-page .reviews-hero-grid img.hero-cutout {
  filter: saturate(1.04) contrast(1.03) brightness(1.02) drop-shadow(0 26px 42px rgba(0, 0, 0, 0.24));
}

.contact-page .contact-hero-grid img.hero-cutout {
  width: min(344px, 82%);
  transform: scale(1);
}

.service-page .service-hero-grid img.hero-cutout {
  width: min(520px, 96%);
  transform: scale(1);
}

.reviews-page .reviews-hero-grid img.hero-cutout {
  width: min(368px, 84%);
  transform: scale(1);
}

.service-page .service-hero-grid .subpage-hero-media {
  width: min(640px, 100%);
}

.service-page .service-hero-grid .subpage-hero-media img {
  height: auto;
  object-fit: contain;
  object-position: center bottom;
  opacity: 1;
  transform: scale(1);
  mix-blend-mode: normal;
  -webkit-mask-image: none;
  mask-image: none;
}

.service-page .service-hero-grid .subpage-hero-media::after {
  content: none;
}

@media (max-width: 860px) {
  .contact-page .cutout-media,
  .service-page .cutout-media,
  .reviews-page .cutout-media {
    min-height: 360px;
  }
}

@media (max-width: 520px) {
  .contact-page .cutout-media,
  .service-page .cutout-media,
  .reviews-page .cutout-media {
    min-height: 285px;
  }

  .contact-page .contact-hero-grid img.hero-cutout,
  .service-page .service-hero-grid img.hero-cutout,
  .reviews-page .reviews-hero-grid img.hero-cutout {
    width: min(300px, 88%);
    transform: none;
  }

  .reviews-page .review-headline-block h1 {
    font-size: clamp(1.42rem, 6.2vw, 1.72rem);
  }

  .reviews-page .review-headline-block,
  .reviews-page .review-subtitle {
    max-width: 330px;
  }
}

/* Home hero image spacing fix */
.home-page .slogan-block {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  column-gap: clamp(28px, 5vw, 64px);
}

.home-page .service-visual {
  justify-self: end;
  width: min(480px, 100%);
  max-width: 100%;
}

.home-page .service-visual img {
  width: 100%;
  transform: none;
  transform-origin: center right;
}

@media (max-width: 860px) {
  .home-page .slogan-block {
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .home-page .service-visual {
    justify-self: center;
    width: min(420px, 92%);
  }
}

@media (max-width: 520px) {
  .home-page .service-visual {
    width: min(340px, 92%);
  }
}

/* Professional image system */
.brand img {
  aspect-ratio: 284 / 260;
  object-fit: contain;
}

.footer-brand img {
  width: 42px;
  height: auto;
  aspect-ratio: 284 / 260;
  object-fit: contain;
}

.service-visual picture,
.subpage-hero-media picture {
  display: contents;
}

.home-page .slogan-block {
  grid-template-columns: minmax(500px, 0.95fr) minmax(500px, 0.95fr);
  column-gap: clamp(28px, 3.6vw, 44px);
  align-items: center;
}

.home-page .slogan-block h1 {
  font-size: clamp(2.65rem, 4.75vw, 4.85rem);
}

.home-page .service-visual {
  width: min(700px, 100%);
  justify-self: end;
}

.home-page .service-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: scale(1.18);
  transform-origin: center right;
  filter: saturate(1.06) contrast(1.04) brightness(1.02) drop-shadow(0 24px 42px rgba(0, 0, 0, 0.24));
}

.contact-page .contact-hero-grid img.hero-cutout {
  width: min(430px, 92%);
}

.service-page .service-hero-grid .subpage-hero-media {
  width: min(680px, 100%);
}

.service-page .service-hero-grid img.hero-cutout {
  width: min(620px, 100%);
}

.page-title .service-headline-block h1,
.page-title .contact-headline-block h1,
.page-title .review-headline-block h1 {
  color: var(--navy);
}

.reviews-page .reviews-hero-grid img.hero-cutout {
  width: min(430px, 92%);
}

.service-title img {
  flex: 0 0 54px;
  width: 54px;
  height: 42px;
  object-fit: contain;
}

.avatar {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
  object-fit: cover;
}

@media (max-width: 860px) {
  .home-page .slogan-block {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .home-page .service-visual {
    width: min(520px, 92%);
    justify-self: center;
  }

  .home-page .service-visual img {
    transform: scale(1.08);
  }

  .contact-page .contact-hero-grid img.hero-cutout,
  .reviews-page .reviews-hero-grid img.hero-cutout {
    width: min(380px, 86%);
  }

  .service-page .service-hero-grid img.hero-cutout {
    width: min(560px, 94%);
  }
}

@media (max-width: 520px) {
  .page-title .wrap.service-hero-grid,
  .page-title .wrap.contact-hero-grid,
  .page-title .wrap.reviews-hero-grid {
    width: min(var(--max), calc(100% - 24px));
    max-width: var(--max);
    margin-inline: auto;
  }

  .home-page .service-visual {
    width: min(320px, 88%);
  }

  .home-page .service-visual img {
    transform: none;
  }

  .contact-page .contact-hero-grid img.hero-cutout,
  .reviews-page .reviews-hero-grid img.hero-cutout {
    width: min(300px, 84%);
  }

  .service-page .service-hero-grid img.hero-cutout {
    width: min(340px, 94%);
  }

  .service-page .service-hero-grid > div {
    padding-inline: 0;
  }

  .service-page .service-headline-block {
    width: calc(100vw - 32px);
    max-width: calc(100vw - 32px);
    padding: 16px 16px 18px;
  }

  .service-page .service-headline-block h1 {
    font-size: clamp(1.42rem, 5.7vw, 1.62rem);
    line-height: 1.14;
    overflow-wrap: normal;
  }
}

/* Final hero image balance */
.home-page .service-visual {
  width: min(820px, 100%);
}

.home-page .service-visual img {
  transform: scale(1.34);
  transform-origin: center right;
}

.contact-page .cutout-media,
.reviews-page .cutout-media {
  width: min(680px, 100%);
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.contact-page .contact-hero-grid img.hero-cutout,
.reviews-page .reviews-hero-grid img.hero-cutout {
  width: auto;
  height: min(520px, 78vh);
  max-width: 100%;
  object-fit: contain;
  object-position: center bottom;
}

@media (max-width: 860px) {
  .home-page .service-visual {
    width: min(600px, 94%);
  }

  .home-page .service-visual img {
    transform: scale(1.1);
  }

  .contact-page .cutout-media,
  .reviews-page .cutout-media {
    width: min(560px, 100%);
    min-height: 390px;
  }

  .contact-page .contact-hero-grid img.hero-cutout,
  .reviews-page .reviews-hero-grid img.hero-cutout {
    height: min(390px, 62vh);
  }
}

@media (max-width: 520px) {
  .home-page .service-visual {
    width: min(360px, 92%);
  }

  .home-page .service-visual img {
    transform: scale(1.06);
  }

  .contact-page .cutout-media,
  .reviews-page .cutout-media {
    min-height: 300px;
  }

  .contact-page .contact-hero-grid img.hero-cutout,
  .reviews-page .reviews-hero-grid img.hero-cutout {
    height: min(300px, 52vh);
    width: auto;
    max-width: 86%;
  }
}

/* Final hero type balance */
.home-page .slogan-block {
  min-height: 0;
  padding: 30px 34px;
}

.home-page .slogan-block h1 {
  font-size: clamp(2.4rem, 4.05vw, 4.1rem);
  line-height: 1.08;
}

.contact-headline-block,
.service-headline-block,
.review-headline-block {
  padding: 22px 26px 24px;
}

.page-title .contact-headline-block h1,
.page-title .service-headline-block h1,
.page-title .review-headline-block h1 {
  font-size: clamp(2.25rem, 3.95vw, 3.75rem);
  line-height: 1.1;
}

.page-title .review-headline-block h1 {
  font-size: clamp(2.05rem, 3.35vw, 3.2rem);
}

.contact-subtitle,
.service-subtitle,
.review-subtitle {
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.45;
  padding: 12px 16px;
}

.hero-proof-row span {
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .home-page .slogan-block {
    padding: 28px 30px;
  }

  .home-page .slogan-block h1 {
    font-size: clamp(2.3rem, 8vw, 3.45rem);
  }

  .page-title .contact-headline-block h1,
  .page-title .service-headline-block h1,
  .page-title .review-headline-block h1 {
    font-size: clamp(2rem, 7vw, 3rem);
  }
}

@media (max-width: 520px) {
  .home-page .slogan-block {
    padding: 26px 28px;
  }

  .home-page .slogan-block h1 {
    font-size: clamp(2.15rem, 10.2vw, 2.8rem);
    line-height: 1.08;
  }

  .contact-headline-block,
  .service-headline-block,
  .review-headline-block {
    padding: 16px 18px 18px;
  }

  .page-title .contact-headline-block h1,
  .page-title .service-headline-block h1,
  .page-title .review-headline-block h1 {
    font-size: clamp(1.68rem, 7.6vw, 2.15rem);
    line-height: 1.12;
  }

  .service-page .service-headline-block h1 {
    font-size: clamp(1.34rem, 5.3vw, 1.52rem);
  }

  .contact-subtitle,
  .service-subtitle,
  .review-subtitle {
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .hero-proof-row span {
    font-size: 0.88rem;
  }
}

/* Home hero spacing cleanup */
.home-page .hero-grid {
  min-height: auto;
  padding: 42px 0 34px;
}

.home-page .slogan-block {
  grid-template-columns: minmax(360px, 0.76fr) minmax(360px, 1fr);
  column-gap: clamp(18px, 3vw, 44px);
  min-height: 0;
  padding: 22px 32px;
  align-items: center;
}

.home-page .slogan-copy {
  max-width: 520px;
}

.home-page .service-visual {
  width: min(500px, 100%);
  justify-self: end;
  margin: 0 16px 0 0;
}

.home-page .service-visual img {
  transform: scale(1.2);
  transform-origin: center right;
}

.home-page .lead {
  max-width: 780px;
}

@media (max-width: 1080px) {
  .home-page .slogan-block {
    grid-template-columns: minmax(330px, 0.78fr) minmax(360px, 1fr);
  }

  .home-page .service-visual img {
    transform: translateX(34px) scale(1.16);
  }
}

@media (max-width: 860px) {
  .home-page .hero-grid {
    padding: 32px 0 30px;
  }

  .home-page .slogan-block {
    grid-template-columns: 1fr;
    row-gap: 4px;
    min-height: 0;
    padding: 26px 28px 18px;
  }

  .home-page .service-visual {
    width: min(460px, 94%);
    justify-self: center;
    margin: -10px auto 0;
  }

  .home-page .service-visual img {
    transform: scale(1.06);
    transform-origin: center bottom;
  }
}

@media (max-width: 520px) {
  .home-page .slogan-block {
    padding: 24px 24px 14px;
    row-gap: 0;
  }

  .home-page .service-visual {
    width: min(330px, 94%);
    margin-top: -8px;
  }

  .home-page .service-visual img {
    transform: scale(1.02);
  }
}

/* Conversion polish copy */
.call-button {
  background: var(--navy);
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.lead-support {
  max-width: 660px;
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  opacity: 0.9;
}

.contact-form-card {
  border-top: 4px solid var(--orange);
}

.contact-form {
  gap: 16px;
}

.contact-form label {
  color: var(--navy);
  background: rgba(245, 248, 251, 0.72);
  border: 1px solid rgba(16, 38, 63, 0.08);
  border-radius: 6px;
  padding: 12px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-color: rgba(16, 38, 63, 0.18);
  border-radius: 6px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(12, 120, 191, 0.16);
  outline: none;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.form-submit-row span {
  color: var(--soft-ink);
  font-size: 0.94rem;
  font-weight: 800;
}

.form-submit-row a {
  color: var(--blue-dark);
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 760px) {
  body {
    padding-bottom: 74px;
  }

  .home-page .lead-support {
    display: none;
  }

  .home-page .hero-actions {
    gap: 10px;
  }

  .home-page .hero-actions .button {
    flex: 1 1 145px;
    justify-content: center;
    text-align: center;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(16, 38, 63, 0.94);
    box-shadow: 0 18px 44px rgba(7, 24, 42, 0.32);
    backdrop-filter: blur(12px);
  }

  .mobile-sticky-cta a {
    min-width: 0;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    color: var(--white);
    font-size: 0.92rem;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
  }

  .mobile-sticky-cta a:first-child {
    border: 1px solid rgba(255, 255, 255, 0.34);
  }

  .mobile-sticky-cta a:last-child {
    background: linear-gradient(180deg, var(--orange), var(--orange-dark));
    box-shadow: 0 12px 24px rgba(223, 70, 12, 0.28);
  }
}

@media (max-width: 520px) {
  .contact-form label {
    padding: 11px;
  }

  .form-submit-row .button {
    width: 100%;
  }
}

/* Professional visual polish pass */
.nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-ribbon {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.home-page .why-strip,
.review-summary {
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  border: 1px solid rgba(16, 38, 63, 0.08);
  border-top: 4px solid var(--orange);
  box-shadow: 0 24px 56px rgba(7, 24, 42, 0.12);
}

.home-page .why-strip h2,
.home-page .why-strip li,
.review-summary li {
  color: var(--navy);
}

.home-page .why-strip li::before,
.review-summary li::before {
  background: var(--orange);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.78);
}

.service-card,
.review-card {
  background: linear-gradient(180deg, #ffffff, #f8fbfe);
  color: var(--navy);
  border: 1px solid rgba(16, 38, 63, 0.1);
  border-top: 4px solid var(--orange);
  box-shadow: 0 18px 44px rgba(7, 24, 42, 0.12);
}

.service-card h2,
.service-card h3,
.review-card h2,
.review-card h3 {
  color: var(--navy);
}

.service-card p,
.review-card p,
.service-card ul {
  color: var(--soft-ink);
}

.service-card::before,
.review-card::before {
  opacity: 0.08;
}

.service-title {
  align-items: center;
}

.service-title img {
  background: rgba(255, 100, 31, 0.08);
  border: 1px solid rgba(255, 100, 31, 0.22);
  border-radius: 6px;
  padding: 7px;
}

.review-card .rating-row {
  color: var(--navy);
}

.featured-review {
  margin-top: 26px;
  margin-bottom: 26px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16, 38, 63, 0.97), rgba(12, 78, 126, 0.92)),
    var(--navy);
  color: var(--white);
  box-shadow: 0 24px 56px rgba(7, 24, 42, 0.18);
}

.featured-review h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.featured-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #ffd7c4;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.featured-review blockquote {
  margin: 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  border-left: 5px solid var(--orange);
  border-radius: 6px;
}

.featured-review blockquote p {
  margin: 10px 0;
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 800;
}

.featured-review cite {
  color: var(--soft-ink);
  font-style: normal;
  font-weight: 900;
}

.section.soft,
.faq-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 248, 251, 0.96));
}

.footer-rich {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) repeat(3, minmax(150px, 1fr));
  align-items: start;
  gap: 28px;
}

.footer-rich h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-rich p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.footer-rich a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-brand-block p {
  margin-top: 10px;
}

.footer-rich .footer-links {
  display: grid;
  gap: 8px;
}

@media (max-width: 860px) {
  .top-strip .wrap {
    justify-content: center;
    text-align: center;
    gap: 4px 12px;
  }

  .nav {
    gap: 14px;
    padding: 10px 0 12px;
  }

  .brand {
    justify-content: center;
  }

  .nav-links {
    justify-content: center;
    gap: 8px;
  }

  .nav-links .button {
    width: min(360px, 100%);
    justify-content: center;
  }

  .home-page .why-strip ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-review,
  .footer-rich {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .top-strip {
    font-size: 0.82rem;
  }

  .top-strip .wrap {
    min-height: 34px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 6px 0;
  }

  .brand img {
    width: 72px;
  }

  .brand-text strong {
    font-size: 0.98rem;
  }

  .brand-text span {
    font-size: 0.78rem;
  }

  .nav-links a {
    min-height: 38px;
    padding: 8px 7px;
    font-size: 0.86rem;
  }

  .nav-links {
    gap: 4px;
    width: 100%;
  }

  .home-page .why-strip ul {
    grid-template-columns: 1fr;
  }

  .featured-review {
    padding: 22px;
  }

  .footer-rich {
    gap: 22px;
  }
}

/* Mobile-only home hero refinement */
@media (max-width: 760px) {
  .home-page .slogan-copy p {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .home-page .service-visual {
    width: min(414px, 86%);
    margin: 12px auto 0;
    justify-self: center;
  }

  .home-page .service-visual img {
    transform: scale(0.96);
    transform-origin: center top;
  }
}

@media (max-width: 520px) {
  .home-page .slogan-copy {
    text-align: center;
  }

  .home-page .service-visual {
    width: min(298px, 86%);
    margin-top: 14px;
  }

  .home-page .service-visual img {
    transform: scale(0.92);
  }
}

/* Mobile-only service hero spacing fix */
@media (max-width: 760px) {
  .service-page .service-hero-grid {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 26px;
    gap: 14px;
  }

  .service-page .cutout-media {
    display: none;
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .service-page .service-hero-grid {
    padding-top: 24px;
    padding-bottom: 22px;
  }
}
