body.inner-page main h1,
body.inner-page main h2,
body.inner-page main h3,
body.inner-page main h4 {
  margin: 0;
  color: var(--ink);
}

body.inner-page main h1 {
  font-family: "League Spartan", sans-serif;
  font-weight: 800;
}

body.inner-page main h2,
body.inner-page main h3,
body.inner-page main h4 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

body.inner-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-green-dark);
}

body.inner-page .eyebrow::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
}

body.inner-page .city-strip-section {
  position: relative;
  z-index: 3;
  margin-top: clamp(-2rem, -3.6vw, -1.2rem);
  padding: 0 0 1.45rem;
}

body.inner-page .city-strip-shell {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(17, 17, 17, 0.16);
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 242, 0.94));
  box-shadow: 0 16px 36px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body.inner-page .city-strip-shell::before,
body.inner-page .city-strip-shell::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(1.2rem, 3vw, 2.25rem);
  pointer-events: none;
  z-index: 1;
}

body.inner-page .city-strip-shell::before {
  left: 0;
  background: linear-gradient(90deg, rgba(250, 252, 248, 0.96), rgba(250, 252, 248, 0));
}

body.inner-page .city-strip-shell::after {
  right: 0;
  background: linear-gradient(270deg, rgba(250, 252, 248, 0.96), rgba(250, 252, 248, 0));
}

body.inner-page .city-strip-marquee {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: city-strip-scroll 34s linear infinite;
}

body.inner-page .city-strip-list {
  display: flex;
  align-items: center;
  gap: 1.45rem;
  flex-shrink: 0;
  padding: 1.08rem 1.45rem;
}

body.inner-page .city-strip-name {
  color: rgba(17, 17, 17, 0.42);
  font-family: "League Spartan", sans-serif;
  font-size: clamp(1rem, 1.9vw, 1.42rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

body.inner-page .city-strip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.24);
  flex: 0 0 auto;
}

@keyframes city-strip-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

body.inner-page .hero-panel {
  display: grid;
  gap: 1rem;
}

body.inner-page .hero-panel-copy {
  display: grid;
  gap: 0.75rem;
  padding: 0.1rem 0.1rem 0.2rem;
}

body.inner-page .hero-sequence {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 620ms cubic-bezier(0.2, 0.75, 0.25, 1),
    transform 620ms cubic-bezier(0.2, 0.75, 0.25, 1);
  transition-delay: var(--hero-delay, 0ms);
}

body.inner-page.is-ready .hero-sequence {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.inner-page .hero-panel-copy h2 {
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 1.06;
}

body.inner-page .hero-panel-copy p,
body.inner-page .section-heading p,
body.inner-page .gallery-content p,
body.inner-page .service-card p,
body.inner-page .panel p,
body.inner-page .card p,
body.inner-page .cta-banner p,
body.inner-page .service-areas p {
  max-width: none;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.66;
}

body.inner-page .hero-note {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(19, 33, 45, 0.09);
  border-radius: 20px;
  background: rgba(243, 245, 238, 0.95);
}

body.inner-page .hero-note strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-size: 0.96rem;
}

body.inner-page .section-shell {
  display: grid;
  gap: 1.5rem;
}

body.inner-page .section-heading {
  display: grid;
  gap: 0.72rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

body.inner-page .section-heading h2,
body.inner-page .service-areas .section-heading h2,
body.inner-page .cta-banner h2 {
  font-size: clamp(1.95rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  word-spacing: 0.02em;
  font-weight: 800;
}

body.inner-page .services-grid,
body.inner-page .gallery-grid,
body.inner-page .info-grid,
body.inner-page .card-stack,
body.inner-page .panel-stack,
body.inner-page .copy-stack {
  display: grid;
  gap: 1rem;
}

body.inner-page .services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.inner-page .gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.inner-page .service-card,
body.inner-page .gallery-item,
body.inner-page .panel,
body.inner-page .card,
body.inner-page .cta-banner,
body.inner-page .service-areas {
  border: 1px solid rgba(19, 33, 45, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 241, 0.96) 52%, rgba(239, 244, 235, 0.96));
  box-shadow: var(--shadow-card);
}

body.inner-page .service-card,
body.inner-page .gallery-item,
body.inner-page .panel,
body.inner-page .card {
  padding: clamp(1.2rem, 2.8vw, 1.75rem);
}

body.inner-page .service-card h3,
body.inner-page .gallery-item-title,
body.inner-page .panel h2,
body.inner-page .panel h3,
body.inner-page .card h3 {
  font-size: clamp(1.26rem, 2vw, 1.65rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
}

body.inner-page .gallery-item {
  overflow: hidden;
  gap: 0;
}

body.inner-page .gallery-thumb {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 1.14 / 0.82;
  background: #d6dfd3;
}

body.inner-page .gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.inner-page .gallery-content {
  display: grid;
  gap: 0.75rem;
  padding-top: 1rem;
}

body.inner-page .gallery-tags,
body.inner-page .service-links,
body.inner-page .city-links,
body.inner-page .contact-form-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

body.inner-page .gallery-tags span,
body.inner-page .contact-form-meta span,
body.inner-page .city-links a,
body.inner-page .service-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.56rem 0.82rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(24, 169, 87, 0.14);
  background: rgba(24, 169, 87, 0.08);
  color: var(--brand-green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.inner-page .service-links a,
body.inner-page .city-links a {
  min-height: 42px;
  text-decoration: none;
}

body.inner-page .service-links a:hover,
body.inner-page .city-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(24, 169, 87, 0.24);
}

body.inner-page .checklist {
  display: grid;
  gap: 0.78rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.inner-page .checklist li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.78rem;
  align-items: start;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.58;
}

body.inner-page .checklist li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.38rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-orange-soft));
  box-shadow: 0 0 0 7px rgba(24, 169, 87, 0.1);
}

body.inner-page .spotlight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
}

body.inner-page .cta-banner {
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
}

body.inner-page .inline-note {
  color: rgba(19, 33, 45, 0.62);
  font-size: 0.92rem;
  font-weight: 700;
}

body.inner-page .quick-wins-section {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding: 0 0 1.2rem;
}

body.inner-page .quick-wins-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.2rem, 3vw, 2.3rem);
  align-items: stretch;
  padding: clamp(1.2rem, 2.8vw, 1.75rem);
  border: 1px solid rgba(19, 33, 45, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 241, 0.96) 52%, rgba(239, 244, 235, 0.96));
  box-shadow: var(--shadow-card);
}

body.inner-page .quick-wins-intro {
  display: grid;
  align-content: center;
  gap: 0.85rem;
  padding-right: clamp(0rem, 1vw, 0.8rem);
}

body.inner-page .quick-wins-intro h2 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 11ch;
  text-wrap: balance;
}

body.inner-page .quick-wins-intro p {
  max-width: 31rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.66;
}

body.inner-page .quick-wins-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

body.inner-page .quick-win {
  display: grid;
  gap: 0.72rem;
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(19, 33, 45, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 32px rgba(19, 33, 45, 0.04);
}

body.inner-page .quick-win-label {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(19, 33, 45, 0.52);
}

body.inner-page .quick-win-value {
  margin: 0;
  color: var(--ink);
  font-family: "League Spartan", sans-serif;
  font-size: clamp(1.28rem, 1.8vw, 1.72rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

body.inner-page .quick-win p {
  max-width: 18rem;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.58;
}

body.inner-page .quick-win-meter {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

body.inner-page .quick-win-track {
  height: 8px;
  border-radius: var(--radius-pill);
  background: #e7ede6;
  overflow: hidden;
}

body.inner-page .quick-win-track span {
  display: block;
  width: var(--quick-progress, 80%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-green), #9cd648 62%, var(--brand-orange-soft));
  transform: scaleX(1);
  transform-origin: left center;
}

body.inner-page .contact-zone {
  padding-top: clamp(4.2rem, 7vw, 6rem);
}

body.inner-page .contact-zone .container {
  width: min(calc(100% - 1.6rem), 1240px);
}

body.inner-page .contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(1.6rem, 4vw, 4.5rem);
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(135deg, #143223, #1d5a37 58%, #3f8e60 100%);
  box-shadow: 0 34px 64px rgba(19, 33, 45, 0.14);
}

body.inner-page .contact-copy {
  display: grid;
  align-content: center;
  gap: 1.15rem;
  padding: clamp(2rem, 5vw, 3.2rem);
  color: rgba(255, 255, 255, 0.88);
}

body.inner-page .contact-copy h2,
body.inner-page .contact-copy p,
body.inner-page .contact-copy .eyebrow {
  color: #ffffff;
}

body.inner-page .contact-copy h2 {
  font-size: clamp(2rem, 3.1vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  max-width: 14ch;
  text-wrap: balance;
}

body.inner-page .contact-copy .lede {
  max-width: 40rem;
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.68;
}

body.inner-page .contact-copy .eyebrow::before {
  opacity: 0.28;
}

body.inner-page .contact-list {
  display: grid;
  gap: 0.78rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.inner-page .contact-list li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.78rem;
  align-items: start;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

body.inner-page .contact-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.38rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-green), var(--brand-orange-soft));
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.12);
}

body.inner-page .contact-list li,
body.inner-page .contact-list li div,
body.inner-page .contact-list li p {
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.58;
}

body.inner-page .contact-highlights {
  display: grid;
  gap: 0.8rem;
  margin-top: 0.2rem;
}

body.inner-page .contact-highlight {
  display: grid;
  gap: 0.24rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

body.inner-page .contact-highlight strong {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.inner-page .contact-highlight span {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.56;
}

body.inner-page .contact-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding-top: 0.35rem;
}

body.inner-page .contact-link-row a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

body.inner-page .contact-form-panel {
  padding: clamp(1.5rem, 4vw, 2.1rem);
  background: linear-gradient(180deg, rgba(248, 251, 246, 0.98), rgba(236, 243, 234, 0.98));
}

body.inner-page .contact-form-card {
  display: grid;
  gap: 1.1rem;
  height: 100%;
  padding: clamp(1.6rem, 4vw, 2.25rem);
  background: #ffffff;
  border: 1px solid rgba(19, 33, 45, 0.08);
  border-radius: 34px;
  box-shadow: 0 22px 48px rgba(19, 33, 45, 0.08);
}

body.inner-page .contact-form-card .eyebrow {
  color: var(--brand-green-dark);
}

body.inner-page .contact-form-card h3 {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
}

body.inner-page .contact-form-card p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.62;
}

body.inner-page .contact-form-card form {
  display: grid;
  gap: 1.1rem;
  margin-top: 0.25rem;
}

body.inner-page .field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

body.inner-page .contact-form-card label {
  display: grid;
  gap: 0.5rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

body.inner-page .contact-form-card input,
body.inner-page .contact-form-card textarea {
  width: 100%;
  min-width: 0;
  padding: 1.08rem 1.1rem;
  border: 1px solid rgba(19, 33, 45, 0.14);
  border-radius: 18px;
  background: #fcfdfc;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

body.inner-page .contact-form-card input:focus,
body.inner-page .contact-form-card textarea:focus {
  outline: none;
  border-color: rgba(24, 169, 87, 0.62);
  box-shadow: 0 0 0 4px rgba(24, 169, 87, 0.12);
}

body.inner-page .contact-form-card input.is-invalid,
body.inner-page .contact-form-card textarea.is-invalid {
  border-color: #cf5a45;
  background: #fff8f6;
  box-shadow: 0 0 0 4px rgba(207, 90, 69, 0.1);
}

body.inner-page .contact-form-card input::placeholder,
body.inner-page .contact-form-card textarea::placeholder {
  color: rgba(19, 33, 45, 0.44);
  font-weight: 500;
}

body.inner-page .contact-form-card textarea {
  min-height: 150px;
  resize: vertical;
}

body.inner-page .input-hint {
  color: rgba(19, 33, 45, 0.66);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.48;
}

body.inner-page .field-error,
body.inner-page .form-status {
  min-height: 1.1rem;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.4;
}

body.inner-page .field-error,
body.inner-page .form-status.error {
  color: #c34733;
}

body.inner-page .form-status.success {
  color: var(--brand-green-dark);
}

body.inner-page .contact-form-card button {
  width: 100%;
  margin-top: 0.35rem;
}

body.inner-page .button-note {
  color: var(--ink-muted);
  font-size: 0.83rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

body.inner-page main > section[data-header-theme="dark"] .contact-form-card,
body.inner-page main > section[data-header-theme="dark"] .gallery-item,
body.inner-page main > section[data-header-theme="dark"] .service-card,
body.inner-page main > section[data-header-theme="dark"] .panel,
body.inner-page main > section[data-header-theme="dark"] .card,
body.inner-page main > section[data-header-theme="dark"] .faq details,
body.inner-page main > section[data-header-theme="dark"] .service-areas {
  color: var(--ink);
}

body.inner-page main > section[data-header-theme="dark"] .contact-form-card h1,
body.inner-page main > section[data-header-theme="dark"] .contact-form-card h2,
body.inner-page main > section[data-header-theme="dark"] .contact-form-card h3,
body.inner-page main > section[data-header-theme="dark"] .contact-form-card h4,
body.inner-page main > section[data-header-theme="dark"] .gallery-item h1,
body.inner-page main > section[data-header-theme="dark"] .gallery-item h2,
body.inner-page main > section[data-header-theme="dark"] .gallery-item h3,
body.inner-page main > section[data-header-theme="dark"] .gallery-item h4,
body.inner-page main > section[data-header-theme="dark"] .service-card h1,
body.inner-page main > section[data-header-theme="dark"] .service-card h2,
body.inner-page main > section[data-header-theme="dark"] .service-card h3,
body.inner-page main > section[data-header-theme="dark"] .service-card h4,
body.inner-page main > section[data-header-theme="dark"] .panel h1,
body.inner-page main > section[data-header-theme="dark"] .panel h2,
body.inner-page main > section[data-header-theme="dark"] .panel h3,
body.inner-page main > section[data-header-theme="dark"] .panel h4,
body.inner-page main > section[data-header-theme="dark"] .card h1,
body.inner-page main > section[data-header-theme="dark"] .card h2,
body.inner-page main > section[data-header-theme="dark"] .card h3,
body.inner-page main > section[data-header-theme="dark"] .card h4,
body.inner-page main > section[data-header-theme="dark"] .faq summary,
body.inner-page main > section[data-header-theme="dark"] .service-areas h1,
body.inner-page main > section[data-header-theme="dark"] .service-areas h2,
body.inner-page main > section[data-header-theme="dark"] .service-areas h3,
body.inner-page main > section[data-header-theme="dark"] .service-areas h4,
body.inner-page main > section[data-header-theme="dark"] .contact-form-card label {
  color: var(--ink) !important;
  text-shadow: none !important;
}

body.inner-page main > section[data-header-theme="dark"] .contact-form-card p,
body.inner-page main > section[data-header-theme="dark"] .contact-form-card .input-hint,
body.inner-page main > section[data-header-theme="dark"] .contact-form-card .field-error,
body.inner-page main > section[data-header-theme="dark"] .contact-form-card .form-status,
body.inner-page main > section[data-header-theme="dark"] .contact-form-card .button-note,
body.inner-page main > section[data-header-theme="dark"] .gallery-item p,
body.inner-page main > section[data-header-theme="dark"] .service-card p,
body.inner-page main > section[data-header-theme="dark"] .service-card li,
body.inner-page main > section[data-header-theme="dark"] .panel p,
body.inner-page main > section[data-header-theme="dark"] .panel li,
body.inner-page main > section[data-header-theme="dark"] .card p,
body.inner-page main > section[data-header-theme="dark"] .card li,
body.inner-page main > section[data-header-theme="dark"] .faq details p,
body.inner-page main > section[data-header-theme="dark"] .service-areas p,
body.inner-page main > section[data-header-theme="dark"] .service-areas .inline-note {
  color: var(--ink-soft) !important;
  text-shadow: none !important;
}

body.inner-page main > section[data-header-theme="dark"] .contact-form-card .eyebrow,
body.inner-page main > section[data-header-theme="dark"] .gallery-item .pill,
body.inner-page main > section[data-header-theme="dark"] .service-card .pill,
body.inner-page main > section[data-header-theme="dark"] .panel .pill,
body.inner-page main > section[data-header-theme="dark"] .card .pill,
body.inner-page main > section[data-header-theme="dark"] .service-areas .eyebrow {
  color: var(--brand-green-dark) !important;
  text-shadow: none !important;
}

body.inner-page main > section[data-header-theme="dark"] .contact-form-meta span,
body.inner-page main > section[data-header-theme="dark"] .gallery-tags span,
body.inner-page main > section[data-header-theme="dark"] .service-links a,
body.inner-page main > section[data-header-theme="dark"] .city-links a {
  color: var(--brand-green-dark) !important;
}

body.inner-page main > section[data-header-theme="dark"] .hero-note {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

body.inner-page main > section[data-header-theme="dark"] .hero-note strong {
  color: rgba(255, 255, 255, 0.74);
}

body.inner-page main > section[data-header-theme="dark"] .hero-note p {
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 1100px) {
  body.inner-page .quick-wins-shell,
  body.inner-page .spotlight-grid,
  body.inner-page .contact-shell,
  body.inner-page .services-grid,
  body.inner-page .gallery-grid {
    grid-template-columns: 1fr;
  }

  body.inner-page .quick-wins-shell,
  body.inner-page .contact-shell {
    gap: 1.15rem;
  }

  body.inner-page .quick-wins-intro h2,
  body.inner-page .contact-copy h2,
  body.inner-page .section-heading h2,
  body.inner-page .service-areas .section-heading h2,
  body.inner-page .cta-banner h2 {
    font-size: clamp(1.78rem, 3vw, 2.35rem);
  }
}

@media (max-width: 920px) {
  body.inner-page .city-strip-section {
    margin-top: -1.35rem;
    padding-bottom: 1rem;
  }

  body.inner-page .city-strip-list {
    gap: 1rem;
    padding: 0.95rem 1rem;
  }

  body.inner-page .city-strip-name {
    font-size: 0.92rem;
    letter-spacing: 0.13em;
  }

  body.inner-page .quick-wins-panel,
  body.inner-page .field-row {
    grid-template-columns: 1fr;
  }

  body.inner-page .quick-win,
  body.inner-page .contact-copy,
  body.inner-page .contact-form-card,
  body.inner-page .service-card,
  body.inner-page .gallery-item,
  body.inner-page .panel,
  body.inner-page .card,
  body.inner-page .cta-banner,
  body.inner-page .service-areas {
    border-radius: 24px;
  }

  body.inner-page .contact-copy,
  body.inner-page .quick-wins-intro {
    justify-items: center;
    text-align: center;
  }

  body.inner-page .contact-copy h2,
  body.inner-page .contact-copy .lede,
  body.inner-page .quick-wins-intro h2,
  body.inner-page .quick-wins-intro p,
  body.inner-page .quick-win p {
    max-width: 100%;
  }

  body.inner-page .contact-highlights,
  body.inner-page .contact-list {
    width: min(100%, 34rem);
    margin-inline: auto;
  }

  body.inner-page .contact-link-row,
  body.inner-page .contact-form-meta {
    justify-content: center;
  }

  body.inner-page .section-heading,
  body.inner-page .service-areas,
  body.inner-page .gallery-content,
  body.inner-page .service-card,
  body.inner-page .panel,
  body.inner-page .card,
  body.inner-page .cta-banner {
    text-align: left;
    justify-items: stretch;
  }

  body.inner-page .section-heading p,
  body.inner-page .gallery-content p,
  body.inner-page .service-card p,
  body.inner-page .panel p,
  body.inner-page .card p,
  body.inner-page .cta-banner p,
  body.inner-page .service-areas p {
    margin-inline: 0;
  }

  body.inner-page .city-links,
  body.inner-page .service-links,
  body.inner-page .gallery-tags {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  body.inner-page .quick-wins-section {
    padding-bottom: 0.35rem;
  }

  body.inner-page .quick-win,
  body.inner-page .contact-copy,
  body.inner-page .contact-form-panel,
  body.inner-page .contact-form-card,
  body.inner-page .service-card,
  body.inner-page .gallery-item,
  body.inner-page .panel,
  body.inner-page .card,
  body.inner-page .cta-banner,
  body.inner-page .service-areas {
    padding: 1rem;
  }

  body.inner-page .contact-link-row,
  body.inner-page .contact-form-card button {
    width: 100%;
  }

  body.inner-page .contact-link-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
  }

  body.inner-page .contact-link-row a {
    width: 100%;
    justify-content: center;
  }

  body.inner-page .hero-panel-copy h2,
  body.inner-page .section-heading h2,
  body.inner-page .service-areas .section-heading h2,
  body.inner-page .cta-banner h2,
  body.inner-page .quick-wins-intro h2,
  body.inner-page .contact-copy h2 {
    font-size: clamp(1.62rem, 6.1vw, 2.1rem);
  }

  body.inner-page .quick-wins-shell,
  body.inner-page .contact-shell {
    gap: 1rem;
  }

  body.inner-page .hero-panel-copy,
  body.inner-page .gallery-content,
  body.inner-page .section-heading {
    gap: 0.68rem;
  }

  body.inner-page .city-links a,
  body.inner-page .service-links a,
  body.inner-page .gallery-tags span,
  body.inner-page .contact-form-meta span {
    min-height: 40px;
    font-size: 0.76rem;
    line-height: 1.25;
  }
}

@media (max-width: 560px) {
  body.inner-page .city-strip-section {
    margin-top: -1rem;
    padding-bottom: 0.9rem;
  }

  body.inner-page .city-strip-list {
    gap: 0.9rem;
    padding: 0.88rem 0.9rem;
  }

  body.inner-page .quick-wins-shell,
  body.inner-page .contact-shell,
  body.inner-page .contact-form-card,
  body.inner-page .service-card,
  body.inner-page .gallery-item,
  body.inner-page .panel,
  body.inner-page .card,
  body.inner-page .cta-banner,
  body.inner-page .service-areas {
    border-radius: 20px;
  }

  body.inner-page .quick-win {
    padding: 0.95rem 0.9rem;
  }

  body.inner-page .contact-highlight {
    padding: 0.82rem 0.88rem;
  }

  body.inner-page .contact-form-card input,
  body.inner-page .contact-form-card textarea {
    padding: 0.9rem 0.95rem;
  }

  body.inner-page .quick-win-value {
    font-size: 1.18rem;
  }

  body.inner-page .quick-win p,
  body.inner-page .contact-highlight span,
  body.inner-page .service-card p,
  body.inner-page .gallery-content p {
    font-size: 0.91rem;
  }

  body.inner-page .hero-panel-copy h2,
  body.inner-page .section-heading h2,
  body.inner-page .service-areas .section-heading h2,
  body.inner-page .cta-banner h2,
  body.inner-page .quick-wins-intro h2,
  body.inner-page .contact-copy h2 {
    font-size: clamp(1.48rem, 6.5vw, 1.9rem);
    line-height: 1.1;
  }

  body.inner-page .hero-panel,
  body.inner-page .panel,
  body.inner-page .card,
  body.inner-page .cta-banner,
  body.inner-page .service-areas,
  body.inner-page .contact-copy,
  body.inner-page .contact-form-panel,
  body.inner-page .contact-form-card {
    padding: 0.95rem;
  }

  body.inner-page .input-hint,
  body.inner-page .field-error,
  body.inner-page .form-status,
  body.inner-page .button-note {
    font-size: 0.79rem;
  }

  body.inner-page .city-strip-name {
    font-size: 0.86rem;
    letter-spacing: 0.11em;
  }
}

@media (max-width: 420px) {
  body.inner-page .city-links,
  body.inner-page .service-links,
  body.inner-page .gallery-tags,
  body.inner-page .contact-form-meta {
    gap: 0.45rem;
  }

  body.inner-page .city-links a,
  body.inner-page .service-links a,
  body.inner-page .gallery-tags span,
  body.inner-page .contact-form-meta span {
    width: 100%;
  }

  body.inner-page .quick-wins-shell,
  body.inner-page .contact-shell,
  body.inner-page .service-card,
  body.inner-page .gallery-item,
  body.inner-page .panel,
  body.inner-page .card,
  body.inner-page .cta-banner,
  body.inner-page .service-areas,
  body.inner-page .contact-copy,
  body.inner-page .contact-form-card {
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.inner-page .city-strip-marquee {
    animation: none !important;
    transform: none !important;
  }
}
