:root {
  --purple: #3b145f;
  --purple-dark: #27103f;
  --gold: #f2c230;
  --gold-deep: #d8a90f;
  --ink: #17151c;
  --muted: #59616b;
  --line: #dfe3e7;
  --soft: #eef0f2;
  --white: #ffffff;
  --blue: #146c94;
  --copper: #b86a3c;
  --shadow: 0 18px 50px rgba(23, 21, 28, 0.16);
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 20;
  width: auto;
  height: auto;
  clip: auto;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(223, 227, 231, 0.62);
  box-shadow: 0 8px 24px rgba(23, 21, 28, 0.05);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
}

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

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1;
}

.nav-links a {
  text-decoration: none;
  color: #312f37;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a:hover,
.text-link:hover,
.footer-links a:hover {
  color: var(--purple);
}

.nav-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  background: var(--gold);
  color: var(--ink);
  border: 2px solid var(--gold);
  text-decoration: none;
  font-weight: 900;
  border-radius: var(--radius);
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

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

.hero-bg {
  background-image: image-set(
    url("assets/images/new-hero-optimized.jpg") type("image/jpeg") 1x,
    url("assets/images/new-hero.png") type("image/png") 2x
  );
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 13, 19, 0.94) 0%, rgba(23, 21, 28, 0.78) 36%, rgba(23, 21, 28, 0.32) 62%, rgba(23, 21, 28, 0.06) 100%),
    linear-gradient(180deg, rgba(59, 20, 95, 0.16), rgba(15, 13, 19, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 86px 0 110px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  max-width: 820px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 900;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
  border: 2px solid var(--gold);
}

.button-secondary {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.contact-strip {
  background: var(--gold);
  color: var(--ink);
}

.strip-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.strip-inner p {
  margin: 0;
}

.strip-inner a {
  color: var(--ink);
  font-size: 26px;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.section,
.feature-band,
.final-cta {
  padding: 92px 0;
}

.intro-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.intro-section.section {
  padding: 52px 0;
}

.intro-grid,
.proof-grid,
.review-grid,
.area-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 56px;
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

p {
  font-size: 17px;
}

.intro-copy p,
.section-heading p,
.feature-copy p,
.area-card p,
.review-copy p,
.owner-copy p,
.final-cta p {
  color: var(--muted);
}

.intro-copy {
  align-self: center;
}

.intro-copy p {
  max-width: 760px;
  margin-top: 0;
  font-size: 20px;
  font-weight: 650;
}

.intro-expectations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.intro-expectations div {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
}

.intro-expectations strong {
  display: block;
  color: #312f37;
  font-size: 15px;
  font-weight: 900;
}

.intro-expectations span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.services-section,
.work-section,
.local-seo-section {
  background: var(--soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading p:last-child {
  margin: 0;
}

.services-section {
  background:
    linear-gradient(180deg, #f4f6f8 0%, #ffffff 100%);
}

.services-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  gap: 48px;
  align-items: end;
  max-width: 1050px;
  margin-bottom: 34px;
}

.services-heading h2 {
  max-width: 760px;
}

.services-heading p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.service-card {
  display: flex;
  min-height: 264px;
  padding: 24px;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(223, 227, 231, 0.95);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(23, 21, 28, 0.07);
}

.service-card-featured {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 28px;
  align-items: end;
  min-height: auto;
  padding: 26px 28px;
  background:
    linear-gradient(135deg, rgba(59, 20, 95, 0.96), rgba(36, 16, 56, 0.98));
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.16);
}

.service-card-featured .eyebrow,
.service-card-featured h3,
.service-card-featured p {
  color: var(--white);
}

.service-card-featured .eyebrow {
  color: var(--gold);
}

.service-card-featured h3 {
  max-width: 420px;
  margin-top: 8px;
  font-size: 30px;
  line-height: 1.04;
}

.service-card-featured p {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.8);
}

.service-next-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 700px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.service-next-steps li {
  display: grid;
  gap: 5px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
}

.service-next-steps strong,
.service-next-steps span {
  display: block;
}

.service-next-steps strong {
  color: var(--white);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
}

.service-next-steps span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.25;
}

.service-featured-action {
  display: inline-flex;
  grid-column: 2;
  grid-row: 1 / 5;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  margin-top: 18px;
  padding: 0 18px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 4px;
  font-weight: 950;
  text-decoration: none;
}

.service-link-card {
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.service-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59, 20, 95, 0.28);
  background: #fbfbfc;
  box-shadow: 0 22px 46px rgba(23, 21, 28, 0.12);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  background: #f1edf5;
  color: var(--purple);
  border-radius: 4px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 650;
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.8);
}

.service-points {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-points li {
  position: relative;
  padding-left: 18px;
  color: #34313a;
  font-size: 14px;
  font-weight: 850;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--purple);
  font-size: 14px;
  font-weight: 950;
}

.common-section {
  background: #f8f9fa;
}

.common-grid,
.faq-grid,
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 54px;
  align-items: start;
}

.common-grid {
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(23, 21, 28, 0.07);
}

.common-grid h2 {
  max-width: 520px;
  font-size: clamp(26px, 3vw, 36px);
}

.common-copy p:last-child {
  max-width: 540px;
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 650;
}

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

.common-list span {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px 18px;
  background: #f8f9fa;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  color: #2c2931;
  font-weight: 900;
}

.common-list small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.process-section {
  background: #f8f9fa;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-steps div {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-steps span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--purple);
  font-size: 13px;
  font-weight: 950;
}

.process-steps strong {
  display: block;
  font-size: 19px;
}

.process-steps p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

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

.owner-section {
  background: #f8f9fa;
}

.owner-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(0, 1.24fr);
  gap: 56px;
  align-items: center;
}

.owner-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.owner-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.owner-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #2c2931;
  font-size: 14px;
  font-weight: 900;
}

.feature-band-alt {
  background: #f8f9fa;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}

.feature-grid.reverse .feature-media {
  order: 2;
}

.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-media-wide img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-copy p {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #2c2931;
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  transform: rotate(-45deg);
}

.text-link {
  display: inline-flex;
  color: var(--purple);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.proof-section {
  background: var(--purple-dark);
  color: var(--white);
}

.proof-section h2 {
  color: var(--white);
}

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

.proof-points div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.proof-points strong {
  display: block;
  color: var(--gold);
  font-size: 19px;
}

.proof-points span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 20px;
}

.work-grid figure {
  position: relative;
  margin: 0;
  background: var(--white);
  border: 1px solid rgba(223, 227, 231, 0.9);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(23, 21, 28, 0.1);
}

.work-grid img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.work-grid figcaption {
  padding: 18px 20px 20px;
  font-weight: 850;
}

.area-section {
  background: var(--white);
}

.area-card {
  padding: 34px;
  background: var(--purple);
  color: var(--white);
  border-radius: var(--radius);
}

.area-card h2,
.area-card p {
  color: var(--white);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: start;
  padding-top: 10px;
}

.area-list span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
}

.area-note {
  flex-basis: 100%;
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
}

.google-readiness {
  flex-basis: 100%;
  display: grid;
  gap: 4px;
  max-width: 620px;
  margin-top: 6px;
  padding: 18px;
  background: #f8f9fa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.google-readiness strong {
  color: var(--ink);
}

.google-readiness span {
  color: var(--muted);
  font-size: 14px;
}

.local-seo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.local-seo-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.local-seo-card h3 {
  font-size: 19px;
}

.local-seo-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.review-section {
  background: var(--white);
}

.review-note,
.small-note {
  font-size: 14px;
}

.faq-section {
  background: #f8f9fa;
}

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

.faq-item {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq-item summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.25;
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.final-cta {
  background: var(--ink);
  color: var(--white);
}

.final-cta h2,
.final-cta p {
  color: var(--white);
}

.contact-panel {
  padding: 32px;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
}

.contact-number {
  display: block;
  color: var(--purple);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  font-weight: 950;
  text-decoration: none;
}

.contact-trust {
  margin: 16px 0 0;
  color: #2c2931 !important;
  font-weight: 850;
}

.contact-panel dl {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.estimate-shell {
  margin-top: 38px;
}

.estimate-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.form-heading,
.wide-field,
.form-note {
  grid-column: 1 / -1;
}

.estimate-form h3 {
  color: var(--white);
}

.estimate-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-weight: 850;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font: inherit;
}

.estimate-form textarea {
  resize: vertical;
}

.estimate-form .button {
  width: fit-content;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 14px;
}

.sticky-mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  background: rgba(15, 13, 19, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(23, 21, 28, 0.28);
  backdrop-filter: blur(14px);
}

.sticky-mobile-cta a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  font-weight: 950;
}

.service-page .hero {
  min-height: 560px;
}

.service-page .hero-bg {
  opacity: 0.82;
}

.service-detail {
  background: var(--white);
}

.service-detail-grid,
.related-service-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
}

.service-detail-card {
  padding: 28px;
  background: #f8f9fa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-detail-card dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.service-detail-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-detail-card dd {
  margin: 4px 0 0;
  font-weight: 850;
}

.related-service-links {
  display: grid;
  gap: 12px;
}

.related-service-links a {
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--purple);
  font-weight: 900;
  text-decoration: none;
}

.contact-panel dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-panel dd {
  margin: 4px 0 0;
  font-size: 18px;
  font-weight: 800;
}

.contact-panel a {
  color: var(--purple);
}

.small-note {
  margin-bottom: 0;
  color: var(--muted) !important;
}

.site-footer {
  padding: 42px 0;
  background: #0f0d13;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.footer-brand small {
  color: rgba(255, 255, 255, 0.7);
}

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

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

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  overflow-wrap: anywhere;
}

@media (max-width: 960px) {
  .nav {
    justify-content: space-between;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

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

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-call {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(15, 13, 19, 0.86) 0%, rgba(23, 21, 28, 0.62) 52%, rgba(23, 21, 28, 0.42) 100%),
      linear-gradient(90deg, rgba(15, 13, 19, 0.64), rgba(23, 21, 28, 0.1));
  }

  .hero-bg {
    transform: none;
  }

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

  .intro-grid,
  .owner-grid,
  .proof-grid,
  .review-grid,
  .area-grid,
  .cta-grid,
  .common-grid,
  .faq-grid,
  .process-grid,
  .service-detail-grid,
  .related-service-grid,
  .section-heading,
  .services-heading,
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-grid.reverse .feature-media {
    order: 0;
  }

  .service-grid,
  .work-grid,
  .proof-points,
  .intro-expectations,
  .local-seo-grid,
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card-featured {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

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

  .service-featured-action {
    grid-column: auto;
    grid-row: auto;
    width: fit-content;
  }

  .estimate-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-content {
    padding: 72px 0 58px;
  }

  .hero-badges {
    display: none;
  }

  .button {
    width: 100%;
  }

  .strip-inner {
    display: grid;
    padding: 18px 0;
  }

  .strip-inner a {
    font-size: 30px;
  }

  .section,
  .feature-band,
  .final-cta {
    padding: 46px 0;
  }

  .contact-strip,
  .intro-section,
  .review-section,
  .local-seo-section {
    display: none;
  }

  .service-grid,
  .work-grid,
  .proof-points,
  .common-list,
  .intro-expectations,
  .local-seo-grid,
  .process-steps,
  .estimate-form {
    grid-template-columns: 1fr;
  }

  .service-card-featured {
    grid-column: auto;
  }

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

  .service-featured-action {
    width: 100%;
  }

  .service-card {
    min-height: auto;
  }

  .feature-media img {
    aspect-ratio: 4 / 3;
  }

  .contact-panel {
    padding: 24px;
  }

  .contact-number {
    font-size: 34px;
  }

  .faq-item {
    padding: 18px;
  }

  .local-seo-card p {
    display: none;
  }

  .estimate-form {
    padding: 20px;
  }

  .estimate-form .button {
    width: 100%;
  }

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

  body {
    padding-bottom: 76px;
  }

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

  .footer-brand {
    min-width: 0;
  }

  .footer-brand span:last-child {
    min-width: 0;
  }

  .footer-brand small {
    overflow-wrap: anywhere;
  }
}
