:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #eef4fa;
  --text: #19324a;
  --muted: #667b8f;
  --line: #dbe4ec;
  --navy: #173c5a;
  --blue: #1e9ce3;
  --blue-dark: #0f86ca;
  --container: 1180px;
  --shadow: 0 18px 42px rgba(23, 60, 90, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
}

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

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

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

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

.header-inner {
  min-height: 122px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  flex-shrink: 0;
}

.menu-panel,
.main-nav,
.header-actions,
.hero-actions,
.contact-cta-list,
.footer-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-panel {
  margin-left: auto;
}

.main-nav {
  flex-wrap: wrap;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  color: #476076;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "▾";
  margin-left: 6px;
  font-size: 0.85rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 320px;
  display: grid;
  gap: 6px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.18s ease;
  z-index: 120;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 12px;
}

.nav-dropdown-menu a:hover {
  background: var(--surface-soft);
}

.main-nav a,
.footer-links a {
  color: #476076;
  font-weight: 700;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-dark {
  background: var(--navy);
  color: #fff;
}

.button-light {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}

.button-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.78);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  border-radius: 999px;
  transition: 0.2s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 760px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(23, 60, 90, 0.86) 0%, rgba(23, 60, 90, 0.76) 34%, rgba(23, 60, 90, 0.28) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: 760px;
  padding: 84px 0;
}

.hero-copy {
  max-width: 760px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: #dbeaf7;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
}

.section-eyebrow {
  color: var(--blue-dark);
}

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

h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
  letter-spacing: -0.05em;
  max-width: 10ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.18rem;
}

.subpage-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: -0.04em;
}

.hero-text,
.lead,
.section-copy p,
.article-card p,
.article-card li,
.method-card p,
.process-card p,
.process-card li,
.quote-card p,
.accordion-body p,
.accordion-body li,
.site-footer p,
.form-note,
.tile-card li {
  color: var(--muted);
}

.hero-text {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.94);
  max-width: 68ch;
  font-size: 1.05rem;
}

.hero-rating {
  margin: 20px 0 22px;
  font-weight: 700;
}

.hero-points {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-bottom: 24px;
}

.hero-points div {
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  font-weight: 700;
}

.section {
  padding: 72px 0;
}

.alt-section {
  background: #eef3f9;
}

.section-head {
  max-width: 820px;
  margin-bottom: 24px;
}

.compact-head {
  max-width: 760px;
}

.article-layout {
  display: grid;
  gap: 24px;
}

.split-grid,
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.article-card,
.service-card,
.method-card,
.process-card,
.quote-card,
.contact-form,
.benefit-item,
.tile-card,
.accordion-card,
.mini-visual {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.article-card,
.method-card,
.process-card,
.quote-card,
.tile-card {
  padding: 24px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px 24px 24px;
}

.service-card h3 {
  margin-top: 8px;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  color: var(--navy);
}

.service-card p {
  margin: 14px 0 0;
  max-width: 32ch;
  font-size: 1rem;
}

.service-card-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f2f8fd 0%, #e4f1fb 100%);
  border: 1px solid #cfe1f1;
  box-shadow: 0 10px 24px rgba(30, 156, 227, 0.12);
}

.service-card-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  opacity: 0.96;
  filter: invert(21%) sepia(31%) saturate(1328%) hue-rotate(173deg) brightness(93%) contrast(92%);
}

.mini-visual {
  overflow: hidden;
}

.mini-visual img {
  aspect-ratio: 16 / 12;
  object-fit: cover;
}

.service-grid,
.method-grid,
.process-grid,
.quote-grid,
.tiles-grid,
.services-overview-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.review-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 20px 14px;
  border-radius: 24px;
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 4px solid #fff;
  box-shadow: 0 10px 24px rgba(23, 60, 90, 0.12);
}

.review-meta {
  display: grid;
  gap: 2px;
}

.review-meta strong {
  font-size: 1.12rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.review-meta span {
  color: #557089;
  line-height: 1.2;
}

.review-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.review-stars {
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}

.review-time {
  font-size: 0.95rem;
  color: #6e8498;
}

.review-card p {
  margin: 0;
  color: #2f4d68;
  font-size: 1.02rem;
  line-height: 1.75;
}

.review-card-foot {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #dce6ef;
}

.review-foot-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-weight: 700;
}

.review-foot-item img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: invert(19%) sepia(26%) saturate(1212%) hue-rotate(173deg) brightness(95%) contrast(91%);
}

.services-overview-grid {
  grid-template-columns: repeat(3, 1fr);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.location-link-card {
  display: block;
  padding: 22px 18px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.45;
  transition: 0.18s ease;
}

.location-link-card:hover {
  transform: translateY(-2px);
  border-color: #b6cfe3;
}

.services-overview-card {
  display: block;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: 0.18s ease;
}

.services-overview-card:hover {
  transform: translateY(-2px);
}

.services-overview-card img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.services-overview-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin: 18px;
  padding: 0 18px;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.link-card {
  transition: 0.18s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: #bfd7ea;
}

.link-card span,
.inline-phone {
  display: inline-block;
  margin-top: auto;
  padding-top: 22px;
  color: var(--blue-dark);
  font-weight: 800;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-item {
  padding: 18px 20px;
  font-weight: 700;
  color: var(--navy);
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--navy);
  font-weight: 800;
}

.quote-card footer {
  margin-top: 16px;
  color: var(--navy);
  font-weight: 700;
}

.accordion-list {
  display: grid;
  gap: 14px;
}

.accordion-card {
  padding: 20px 22px;
}

.accordion-card summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--navy);
}

.accordion-body {
  margin-top: 16px;
}

.accordion-body ul,
.article-card ul,
.tile-card ul,
.contact-list {
  margin: 0 0 18px;
  padding-left: 22px;
}

.accordion-body li,
.article-card li,
.tile-card li,
.contact-list li {
  margin-bottom: 8px;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 24px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  background: #fff;
  font: inherit;
  color: var(--text);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.subpage-main {
  min-height: calc(100vh - 122px);
}

.subpage-hero {
  padding-bottom: 40px;
}

.site-footer {
  padding: 54px 0 48px;
  background: #173f61;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(3, minmax(180px, 1fr));
  gap: 34px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 20px;
}

.footer-logo {
  width: min(250px, 100%);
  height: auto;
  object-fit: contain;
}

.footer-brand strong,
.footer-title {
  display: block;
  font-size: 2rem;
  line-height: 1.1;
  color: #fff;
}

.footer-brand p,
.footer-copy,
.footer-column p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.84);
}

.footer-column {
  display: grid;
  gap: 14px;
}

.footer-list {
  display: grid;
  gap: 12px;
}

.footer-list a,
.footer-list span {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.footer-list a:hover {
  color: #fff;
}

.footer-contact-block {
  display: grid;
  gap: 6px;
}

.sticky-bar {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 95;
  grid-template-columns: 72px 72px minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  border-radius: 24px;
  background: rgba(23, 60, 90, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(14, 31, 48, 0.3);
  backdrop-filter: blur(12px);
}

.sticky-call,
.sticky-mail,
.sticky-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 18px;
  border-radius: 22px;
  font-weight: 800;
}

.sticky-call,
.sticky-mail {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.95rem;
}

.sticky-primary {
  background: #ff991a;
  color: #fff;
  font-size: 1.05rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

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

  .menu-panel {
    position: fixed;
    top: 122px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 12px 18px;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .menu-panel.is-open {
    display: flex;
  }

  .main-nav,
  .header-actions {
    display: grid;
    gap: 10px;
  }

  .main-nav a,
  .nav-dropdown-toggle,
  .header-actions a {
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 10px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
    box-shadow: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .service-grid,
  .tiles-grid,
  .quote-grid,
  .services-overview-grid,
  .locations-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .brand-logo {
    width: 92px;
    height: 92px;
  }

  .header-inner {
    min-height: 92px;
  }

  .menu-panel {
    top: 92px;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    padding: 42px 0 54px;
  }

  h1 {
    font-size: 2.8rem;
    max-width: 100%;
  }

  .hero-actions,
  .contact-cta-list,
  .split-grid,
  .contact-box,
  .service-grid,
  .tiles-grid,
  .method-grid,
  .process-grid,
  .quote-grid,
  .services-overview-grid,
  .locations-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .section {
    padding: 52px 0;
  }

  .article-card,
  .service-card,
  .method-card,
  .process-card,
  .quote-card,
  .tile-card,
  .accordion-card,
  .contact-form {
    padding: 20px;
  }

  .site-footer {
    padding: 42px 0 118px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand strong,
  .footer-title {
    font-size: 1.65rem;
  }

  .sticky-bar {
    display: grid;
  }
}


:root {
  --bg: #f7f7f4;
  --surface: #ffffff;
  --surface-soft: #fff8e5;
  --text: #252126;
  --muted: #5f5a61;
  --line: #ebe3cf;
  --navy: #252126;
  --blue: #ffb100;
  --blue-dark: #e09b00;
  --accent: #ffb100;
  --accent-dark: #ef9d00;
  --accent-soft: #fff2be;
  --shadow: 0 20px 44px rgba(37, 33, 38, 0.08);
  --container: 1280px;
}
body {
  background: linear-gradient(180deg, #fffdf8 0%, #f7f7f4 100%);
  color: var(--text);
}
.container { width: min(var(--container), calc(100% - 40px)); }
.site-header {
  background: rgba(255,255,252,0.96);
  border-bottom: 1px solid #efe7d3;
  box-shadow: 0 10px 26px rgba(37, 33, 38, 0.04);
}
.header-inner {
  min-height: 108px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand {
  gap: 12px;
  min-width: 0;
}
.brand-mark,
.footer-brand-mark {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff9e7 0%, #ffe4a5 100%);
  border: 1px solid #efd395;
  box-shadow: 0 12px 30px rgba(255, 177, 0, 0.16);
}
.brand-mark svg,
.footer-brand-mark svg {
  color: #252126;
}
.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.brand-text strong {
  font-size: 1.08rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.brand-text span {
  font-size: 0.92rem;
  color: #6d655f;
  white-space: nowrap;
}
.menu-panel {
  margin-left: 0;
  width: 100%;
  justify-content: center;
  gap: 32px;
}
.main-nav {
  gap: 26px;
  flex-wrap: nowrap;
}
.main-nav a,
.nav-dropdown-toggle {
  color: #252126;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}
.main-nav a:hover,
.nav-dropdown-toggle:hover {
  color: var(--accent-dark);
}
.nav-dropdown-menu {
  min-width: 340px;
  border-radius: 20px;
  border-color: #f0e4be;
  background: #fffef9;
}
.nav-dropdown-menu a:hover {
  background: #fff4cb;
}
.header-actions {
  gap: 14px;
  flex-shrink: 0;
}
.header-actions .button-light {
  min-height: 70px;
  padding: 0 24px;
  border-radius: 16px;
  border-color: #f0d691;
  background: linear-gradient(180deg, #ffc431 0%, #ffb100 100%);
  color: #252126;
  box-shadow: 0 14px 28px rgba(255, 177, 0, 0.18);
}
.header-actions .button-dark {
  min-height: 70px;
  padding: 0 22px;
  border-radius: 16px;
  background: #252126;
  color: #fffaf0;
}
.menu-toggle {
  margin-left: 0;
}
.hero.hero-tow {
  min-height: auto;
  background:
    radial-gradient(circle at 86% 27%, rgba(255, 177, 0, 0.18) 0%, rgba(255, 177, 0, 0.18) 17%, rgba(255, 177, 0, 0) 18%),
    linear-gradient(180deg, #fffdf8 0%, #fff8e6 100%);
  overflow: hidden;
}
.hero.hero-tow .hero-media,
.hero.hero-tow .hero-overlay {
  display: none;
}
.hero.hero-tow .hero-content {
  min-height: auto;
  grid-template-columns: minmax(340px, 0.92fr) minmax(420px, 1.08fr);
  gap: 56px;
  padding: 68px 0 72px;
}
.hero.hero-tow .hero-copy {
  color: #252126;
  max-width: 100%;
}
.hero.hero-tow .eyebrow {
  margin-bottom: 14px;
  color: var(--accent-dark);
}
.hero.hero-tow h1 {
  max-width: 11.5ch;
  color: #252126;
}
.hero.hero-tow h1 .accent {
  color: var(--accent);
}
.hero.hero-tow .hero-text {
  color: #49444b;
  font-size: 1.06rem;
  max-width: 59ch;
}
.hero.hero-tow .hero-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 34px;
  margin-top: 26px;
  margin-bottom: 24px;
  max-width: none;
}
.hero.hero-tow .hero-points div {
  background: transparent;
  padding: 0;
  border-radius: 0;
  color: #3d373d;
  font-weight: 500;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
}
.hero.hero-tow .hero-points div::before {
  content: "◉";
  color: #252126;
  font-size: 1rem;
  line-height: 1.2;
}
.hero.hero-tow .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.hero.hero-tow .button-accent {
  min-height: 84px;
  min-width: 392px;
  justify-content: flex-start;
  gap: 16px;
  padding: 0 22px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffc431 0%, #ffb100 100%);
  color: #252126;
  box-shadow: 0 18px 32px rgba(255, 177, 0, 0.24);
}
.hero.hero-tow .button-accent::before {
  content: "✆";
  font-size: 2rem;
  line-height: 1;
}
.hero-hotline-copy {
  display: inline-grid;
  line-height: 1.06;
}
.hero-hotline-copy strong {
  font-size: 2rem;
  letter-spacing: -0.05em;
}
.hero-hotline-copy span {
  font-size: 1.02rem;
  font-weight: 600;
}
.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 0 18px;
  border-radius: 16px;
  background: #161317;
  color: #fff;
  font-weight: 800;
}
.hero-rating-badge small {
  display: block;
  color: #ffd35b;
  font-size: 0.82rem;
}
.hero.hero-tow .button-outline {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #252126;
  font-size: 1rem;
  font-weight: 800;
}
.hero.hero-tow .button-outline:hover {
  transform: none;
  color: var(--accent-dark);
}
.hero-visual {
  position: relative;
  min-height: 660px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 2% 11% 6% 7%;
  border: 6px solid #ffb100;
  border-radius: 42% 58% 54% 46% / 50% 38% 62% 50%;
  transform: rotate(10deg);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 14% -12% -18% 44%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 177, 0, 0.98) 0%, rgba(255, 177, 0, 0.98) 56%, rgba(255, 177, 0, 0) 57%);
}
.hero-visual-card {
  position: absolute;
  inset: 5% 12% 0 10%;
  overflow: hidden;
  border-radius: 34% 66% 42% 58% / 58% 42% 58% 42%;
  box-shadow: 0 26px 54px rgba(37, 33, 38, 0.16);
  z-index: 1;
}
.hero-visual-card img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-side-icons {
  position: absolute;
  right: 0;
  top: 30%;
  z-index: 2;
  display: grid;
  gap: 12px;
}
.hero-side-icons span {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 12px 24px rgba(37, 33, 38, 0.08);
  border-left: 5px solid var(--accent);
  color: #252126;
  font-size: 1.35rem;
}
.section-eyebrow { color: var(--accent-dark); }
.button-accent { background: var(--accent); color: #252126; }
.button-accent:hover { background: var(--accent-dark); }
.button-dark { background: #252126; }
.button-light { background: #fff; border-color: var(--line); }
.review-avatar.a1,
.review-avatar.a2,
.review-avatar.a3 {
  background: linear-gradient(135deg, #ffbb15, #322a2f);
}
.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.28rem;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}
.service-card-icon-wrap {
  background: linear-gradient(180deg, #fff9e3 0%, #ffeebd 100%);
  border-color: #efd79a;
  box-shadow: 0 10px 24px rgba(255, 177, 0, 0.14);
  overflow: hidden;
}
.service-card h3,
.review-meta strong,
.review-foot-item,
.location-link-card {
  color: #252126;
}
.service-card,
.quote-card,
.tile-card,
.process-card,
.article-card,
.accordion-card,
.contact-form,
.contact-card {
  border-color: #ece3cf;
}
.service-grid,
.quote-grid,
.tiles-grid,
.services-overview-grid,
.process-grid {
  gap: 24px;
}
.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.location-link-card:hover,
.services-overview-card:hover {
  border-color: #f1ce6d;
}
.services-overview-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.services-overview-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 22px 24px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffc431 0%, #ffb100 100%);
  box-shadow: 0 16px 28px rgba(255, 177, 0, 0.22);
}
.services-overview-card span {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 34px;
  z-index: 2;
  display: block;
  text-align: center;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.25;
  color: #252126;
}
.services-overview-card img {
  aspect-ratio: 8 / 11;
  object-position: center;
}
.feature-band {
  position: relative;
  overflow: hidden;
  background: #252126;
  color: #fff;
}
.feature-band::before {
  content: "";
  position: absolute;
  inset: -35% auto -30% 50%;
  width: 780px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,177,0,0.98) 0%, rgba(255,177,0,0.98) 56%, rgba(255,177,0,0) 57%);
}
.feature-band .container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 32px;
  align-items: center;
}
.feature-band-copy h2,
.feature-band-copy p,
.feature-band-copy li {
  color: #fff;
}
.feature-band-copy h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin-bottom: 20px;
}
.feature-band-copy p {
  color: rgba(255,255,255,0.88);
  font-size: 1.08rem;
}
.feature-band-phone {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #ffb100;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}
.feature-band-phone strong {
  font-weight: 400;
}
.feature-band-media {
  position: relative;
  min-height: 360px;
}
.feature-band-media::before {
  content: "";
  position: absolute;
  inset: -12% -16% -16% 14%;
  border-radius: 48% 0 0 48%;
  background: #ffb100;
}
.feature-band-media-card {
  position: absolute;
  inset: 0 0 0 24%;
  overflow: hidden;
  border-radius: 45% 0 0 45%;
  box-shadow: 0 22px 44px rgba(0,0,0,0.22);
}
.feature-band-media-card img {
  height: 100%;
  object-fit: cover;
}
.contact-highlight {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: start;
}
.contact-highlight-card {
  padding: 32px 34px;
  border-radius: 40px;
  background: linear-gradient(180deg, #ffc93f 0%, #ffb100 100%);
  box-shadow: 0 26px 44px rgba(255, 177, 0, 0.18);
}
.contact-highlight-card h2 {
  margin-bottom: 26px;
  text-align: center;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
}
.contact-highlight-card .contact-form {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}
.contact-highlight-copy h2 {
  font-size: clamp(2.5rem, 4.2vw, 4.4rem);
  max-width: 11ch;
}
.contact-highlight-copy h2 .accent {
  color: var(--accent);
}
.contact-highlight-copy p {
  font-size: 1.06rem;
  color: #4b464c;
}
.service-story {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: 46px;
  align-items: start;
}
.service-story-copy p {
  font-size: 1.06rem;
  color: #4b464c;
}
.service-story-copy .service-bullets {
  margin: 22px 0 28px;
}
.service-story-copy .service-bullets li {
  color: #302a30;
}
.framed-stack {
  display: grid;
  gap: 26px;
}
.frame-image {
  position: relative;
  max-width: 500px;
}
.frame-image.one {
  margin-left: auto;
}
.frame-image.two {
  width: 88%;
  margin-left: auto;
}
.frame-image::before {
  content: "";
  position: absolute;
  inset: 14px -24px -24px 24px;
  background: #ffcf58;
  z-index: 0;
}
.frame-image img {
  position: relative;
  z-index: 1;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.icon-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 26px;
}
.icon-services .icon-service-item {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.65rem;
  color: #252126;
}
.icon-services .icon-service-item span:first-child {
  font-size: 2.1rem;
}
.callback-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
}
.callback-strip h2 {
  font-size: clamp(2.7rem, 4vw, 4.2rem);
  max-width: 10ch;
}
.callback-strip .phone-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: clamp(2rem, 3.3vw, 3.4rem);
  color: #252126;
  font-weight: 800;
}
.callback-strip .phone-box span:first-child {
  color: var(--accent);
}
.alt-section {
  background: #f2f5f8;
}
.site-footer {
  background: #252126;
}
.site-footer a,
.site-footer p,
.site-footer li,
.site-footer .footer-note {
  color: #f5e9bd;
}
.site-footer h3,
.site-footer h4,
.site-footer strong {
  color: #fff;
}
@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto auto;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }
  .menu-panel {
    position: fixed;
    top: 96px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 16px;
    align-content: start;
    padding: 20px;
    background: rgba(255,255,252,0.98);
    border: 1px solid #efe2ba;
    border-radius: 26px;
    box-shadow: 0 20px 44px rgba(37,33,38,0.14);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    margin-left: 0;
    z-index: 120;
  }
  .menu-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .main-nav,
  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav a,
  .nav-dropdown-toggle,
  .header-actions .button {
    width: 100%;
    min-height: 58px;
    padding: 0 20px;
    border-radius: 18px;
    border: 1px solid #eadcb5;
    background: #fffef9;
    color: #252126;
    justify-content: flex-start;
  }
  .header-actions .button-dark {
    background: #252126;
    color: #fff;
    border-color: #252126;
    justify-content: center;
  }
  .nav-dropdown {
    display: grid;
    gap: 10px;
  }
  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
    box-shadow: none;
    border-radius: 18px;
  }
  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }
  .hero.hero-tow .hero-content,
  .feature-band .container,
  .contact-highlight,
  .service-story,
  .callback-strip {
    grid-template-columns: 1fr;
  }
  .hero.hero-tow .hero-content {
    gap: 30px;
    padding: 48px 0 54px;
  }
  .hero.hero-tow h1 {
    max-width: 10ch;
  }
  .hero.hero-tow .hero-points {
    grid-template-columns: 1fr;
  }
  .hero.hero-tow .button-accent {
    min-width: 0;
    width: 100%;
  }
  .hero-visual {
    min-height: 500px;
  }
  .hero-visual-card {
    inset: 6% 9% 0 8%;
  }
  .hero-side-icons {
    top: auto;
    bottom: 18px;
  }
  .feature-band-media {
    min-height: 320px;
  }
  .feature-band-media-card {
    inset: 0 0 0 8%;
  }
  .contact-highlight-copy h2,
  .callback-strip h2 {
    max-width: none;
  }
  .service-grid,
  .quote-grid,
  .tiles-grid,
  .services-overview-grid,
  .icon-services {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }
  .header-inner {
    min-height: 88px;
    gap: 16px;
  }
  .brand-mark,
  .footer-brand-mark {
    width: 62px;
    height: 62px;
    border-radius: 18px;
  }
  .brand-text strong {
    font-size: 1rem;
    white-space: normal;
  }
  .brand-text span {
    font-size: 0.86rem;
    white-space: normal;
  }
  .menu-panel {
    top: 84px;
    left: 12px;
    right: 12px;
    padding: 16px;
  }
  .hero.hero-tow h1 {
    font-size: clamp(2.7rem, 12vw, 4.4rem);
    max-width: none;
  }
  .hero.hero-tow .hero-text {
    font-size: 1rem;
  }
  .hero.hero-tow .button-accent {
    min-height: 74px;
    padding: 0 18px;
  }
  .hero-hotline-copy strong {
    font-size: 1.58rem;
  }
  .hero-rating-badge {
    width: 100%;
    justify-content: center;
  }
  .hero-visual {
    min-height: 340px;
  }
  .hero-visual::before {
    inset: 4% 10% 2% 6%;
  }
  .hero-visual::after {
    inset: 18% -16% -20% 44%;
  }
  .hero-side-icons {
    display: none;
  }
  .feature-band-copy h2,
  .contact-highlight-copy h2,
  .callback-strip h2 {
    font-size: clamp(2.2rem, 10vw, 3.3rem);
  }
  .service-grid,
  .quote-grid,
  .tiles-grid,
  .services-overview-grid,
  .icon-services,
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .services-overview-card span {
    left: 24px;
    right: 24px;
    bottom: 30px;
    font-size: 1.18rem;
  }
  .frame-image.two {
    width: 100%;
  }
  .split-grid,
  .contact-box {
    grid-template-columns: 1fr;
  }
}

