/* =========================================================================
   Divad Ã¢â‚¬â€ Interior pages (shared)
   Loaded by inc/enqueue.php on all non-Home templates.
   Per-page CSS files (service.css, about.css, etc.) only add overrides.
   ========================================================================= */

/* -------------------------------------------------------------------------
   Universal uppercase headings (matches Home; Figma uses Futura Hv BT heavy)
   ------------------------------------------------------------------------- */
.interior-hero__title,
.interior-section__title,
.section-title,
.interior-cta__title,
.interior-card__title,
.trust-bar__item,
.fleet-card__name {
  text-transform: uppercase;
  letter-spacing: 0;
}

/* -------------------------------------------------------------------------
   Interior Hero Ã¢â‚¬â€ two-column layout (text + image)
   Used by: Service, About Us, individual service detail pages
   ------------------------------------------------------------------------- */
.interior-hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}

.interior-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  min-height: 560px;
  align-items: stretch;
}

.interior-hero__body {
  display: grid;
  align-content: center;
  gap: 1.25rem;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  padding-right: clamp(1.5rem, 3vw, 3rem);
}

.interior-hero__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.75vw, 3rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
}

.interior-hero__lead {
  margin: 0;
  max-width: 36rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.15vw, 1.0625rem);
  line-height: 1.55;
  color: var(--ink-light);
}

.interior-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.interior-hero__contacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.interior-hero__contact-name {
  display: block;
  margin: 0 0 0.2rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.interior-hero__contact-phone {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
}

.interior-hero__contact-phone:hover {
  color: var(--brand);
}

.interior-hero__media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.interior-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* -------------------------------------------------------------------------
   Trust Bar Ã¢â‚¬â€ horizontal band of icon + text statements
   Used by: Service (4 items), reusable on other interior pages
   ------------------------------------------------------------------------- */
.trust-bar {
  background: var(--brand);
  color: #ffffff;
  padding-block: clamp(1.5rem, 3vw, 2.5rem);
}

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

/* Icon stacked above label, centered, with vertical dividers (Figma) */
.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding-inline: clamp(1rem, 2.5vw, 2.5rem);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
}

.trust-bar__item + .trust-bar__item {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.trust-bar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.trust-bar__icon .cnm-icon {
  width: 2rem;
  height: 2rem;
  background-color: #ffffff;
}

/* -------------------------------------------------------------------------
   Interior Section Ã¢â‚¬â€ title + intro paragraph block
   ------------------------------------------------------------------------- */
.interior-section {
  padding-block: clamp(3rem, 5vw, 4.5rem);
}
.interior-section.where-we-work-regions {background: #F3F3F3;}
.interior-section--warm   { background: var(--bg-warm); }
.interior-section--grey   { background: var(--bg-section); }
.interior-section--white  { background: var(--bg); }

.interior-section__head {
  max-width: 64rem;
  margin-inline: auto;
  text-align: center;
  display: grid;
  gap: 1rem;
}

.interior-section__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}

.interior-section__lead {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.6;
  color: var(--ink-light);
}

/* Eyebrow Ã¢â‚¬â€ small uppercase accent label above a section title */
.eyebrow {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* -------------------------------------------------------------------------
   Interior Cards Grid Ã¢â‚¬â€ 2/3/4 column card grids
   ------------------------------------------------------------------------- */
.interior-cards {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.interior-cards--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.interior-cards--four  { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.interior-card {
  display: grid;
  gap: 0.625rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 0;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.interior-card:hover {
  /* transform: translateY(-2px); */
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.interior-card__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}

.interior-card__copy {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink-light);
}

.interior-card__link {
  justify-self: start;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-pink);
  text-decoration: none;
}

.interior-card__link:hover {
  color: var(--accent-pink);
  text-decoration: underline;
}

.interior-card__link .cnm-icon {
  width: 0.9rem;
  height: 0.9rem;
}

/* -------------------------------------------------------------------------
   Media-Content Ã¢â‚¬â€ two-column with image + text
   ------------------------------------------------------------------------- */
.interior-media-content {
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

.interior-media-content__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.interior-media-content__media {
  aspect-ratio: 560 / 500;
  border-radius: var(--radius);
  overflow: hidden;
}

.interior-media-content__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interior-media-content__body {
  display: grid;
  gap: 1.125rem;
}

.interior-media-content__list {
  display: grid;
  gap: 0.875rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.interior-media-content__list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: flex-start;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--ink);
}

.interior-media-content__list .cnm-icon {
  width: 1.125rem;
  height: 1.125rem;
  background-color: var(--brand);
  margin-top: 0.25rem;
}

/* Image-on-right variant Ã¢â‚¬â€ apply this modifier to swap visually */

/* -------------------------------------------------------------------------
   Testimonials Ã¢â‚¬â€ quote cards
   Default: light bg. Add `--dark` modifier for full-bleed dark image variant.
   ------------------------------------------------------------------------- */
.interior-testimonials {
  padding-block: clamp(3rem, 5vw, 4.5rem);
  background: var(--bg);
  position: relative;
  isolation: isolate;
}

.interior-testimonials__bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  z-index: -2;
}

.interior-testimonials__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interior-testimonials__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 85%) 0%, rgb(20 16 4 / 92%) 100%);
  z-index: -1;
}

.interior-testimonials__inner {
  position: relative;
  z-index: 1;
}

/* Dark variant Ã¢â‚¬â€ image fills section, dark overlay, white text */
.interior-testimonials--dark {
  background: var(--brand-dark);
  color: #ffffff;
}

.interior-testimonials--dark .interior-testimonials__bg {
  opacity: 1;
}

.interior-testimonials--dark .interior-section__title {
  color: #ffffff;
}

.interior-testimonials--dark .testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--accent-tint);
  backdrop-filter: blur(6px);
  text-align: center;
}

.interior-testimonials--dark .testimonial-card__quote {
  color: rgba(255, 255, 255, 0.92);
}
.interior-testimonials--dark .testimonial-card__quote p {
  display: inline
}

.interior-testimonials--dark .testimonial-card__author {
  color: var(--accent-tint);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1rem, 3vw, 6rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.testimonial-card {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  background: #ffffff;
  border-radius: 0;
  border-left: 3px solid var(--brand);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.testimonial-card__quote {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink);
  font-style: italic;
}

.testimonial-card__author {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--brand);
  text-transform: uppercase;
}

.interior-testimonials__cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Match the service hero's primary button: stays the blue default, just adds
   the uppercase + letter-spacing the global button doesn't set by itself. */
.interior-testimonials__cta .btn-layout.default {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* -------------------------------------------------------------------------
   Interior CTA / Form
   ------------------------------------------------------------------------- */
.interior-cta {
  background: var(--bg-section);
  padding-block: clamp(3rem, 5vw, 4.5rem);
}

/* Centered intro (heading + copy) sits on the section bg, above the form card */
.interior-cta__head {
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
  display: grid;
  gap: 1rem;
}

.interior-cta__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}

.interior-cta__copy {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-light);
}

/* White form card, centered below the intro */
.interior-cta__form-card {
  max-width: 52rem;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: #ffffff;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

/* Bridge variant Ã¢â‚¬â€ grey top, white lower band that merges into the next
   section. The white ::before rises from the base to ~mid-textarea. */
.interior-cta--bridge {
  position: relative;
  overflow: hidden;
}

.interior-cta--bridge::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 33%;
  background: #ffffff;
  z-index: 0;
}

.interior-cta--bridge .interior-cta__head,
.interior-cta--bridge .interior-cta__form-card {
  position: relative;
  z-index: 1;
}

/* =========================================================================
   Responsive
   ========================================================================= */
@media (max-width: 1399px) {
  /* Fine-tuning between Figma 1280 and laptop */
}

/* -------------------------------------------------------------------------
   Service Areas preview Ã¢â‚¬â€ title/copy + SC county map (Figma node 240:1194)
   Shared via template-parts/service-areas.php so any interior page can reuse it.
   ------------------------------------------------------------------------- */
.service-areas__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.service-areas__body {
  display: grid;
  gap: 1.25rem;
}

.service-areas__title {
  text-align: left;
  text-transform: uppercase;
}

.service-areas__copy {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-light);
}

.service-areas__media {
  display: flex;
  justify-content: center;
}

.service-areas__media img {
  max-width: 100%;
  height: auto;
}

/* -------------------------------------------------------------------------
   Legal pages Ã¢â‚¬â€ minimal header + numbered long-form content
   Shared by Terms & Conditions and Privacy Policy templates
   ------------------------------------------------------------------------- */
.legal-header {
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 2vw, 1.5rem);
  border-bottom: 1px solid var(--border);
}

.legal-header__inner {
  max-width: 50rem;
}

.legal-header__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}

.legal-header__lead {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.6;
  color: var(--ink-light);
}

.legal-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.legal-header__meta span {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink-light);
}

.legal-header__meta span strong {
  color: var(--ink);
  font-weight: 700;
}

.legal-content {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

.legal-content__inner {
  max-width: 50rem;
}

.legal-section {
  margin-bottom: 2.5rem;
}

.legal-section__title {
  margin: 0 0 0.875rem;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  color: var(--ink);
}

.legal-section p {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-light);
}

.legal-section p strong {
  color: var(--ink);
  font-weight: 700;
}

.legal-section__list {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  list-style: none;
}

.legal-section__list li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-light);
}

.legal-section__list li::before {
  content: "";
  position: absolute;
  left: -0.75rem;
  top: 0.7em;
  width: 5px;
  height: 5px;
  background: var(--ink-light);
  border-radius: 50%;
}

.legal-section__list li strong {
  color: var(--ink);
  font-weight: 700;
}

/* Security-standards style spec row (magenta label + value) */
.legal-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.legal-spec {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}

.legal-spec__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.legal-spec__value {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

@media (max-width: 575px) {
  .legal-specs {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* Highlighted clause note Ã¢â‚¬â€ light panel with magenta left border */
.legal-note {
  margin: 1.25rem 0 0;
  padding: 1rem 1.25rem;
  background: #eef2f7;
  border-left: 3px solid var(--accent);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-light);
}

/* -------------------------------------------------------------------------
   404 Ã¢â‚¬â€ Page Not Found (Figma 328:2520)
   ------------------------------------------------------------------------- */
.error-404 {
  background: #f9f9f9;
  padding-block: clamp(2.5rem, 7vw, 6rem);
}

.error-404__inner {
  position: relative;
  display: flex;
  justify-content: center;
}

.error-404__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -56%);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(11rem, 30vw, 22rem);
  line-height: 1;
  color: #1a1c1c;
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.error-404__content {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  display: grid;
  justify-items: center;
  gap: 1.25rem;
  text-align: center;
  padding-block: clamp(2.5rem, 7vw, 5.5rem);
}

.error-404__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.error-404__lead {
  margin: 0;
  max-width: 30rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  color: var(--ink-light);
}

.error-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 0.75rem;
}

.error-404__btn {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.error-404__tagline {
  margin: 1rem 0 0;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(82, 66, 75, 0.55);
}

/* Minimal closing CTA Ã¢â‚¬â€ rule, heading, copy, dark button */
.legal-cta {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--border, #e2e2e2);
}

.legal-cta__title {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-weight: 700;
  color: var(--ink);
}

.legal-cta__copy {
  margin: 0 0 1.5rem;
  max-width: 42rem;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-light);
}

.legal-cta__btn {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1.5rem;
  background: #0f172a;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
}

.legal-cta__btn:hover {
  background: var(--brand);
}

/* -------------------------------------------------------------------------
   Page Hero Ã¢â‚¬â€ dark, centered title + subtitle, optional bg image
   Shared via template-parts/page-hero.php (interior pages)
   ------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  background: #1a1c1c;
  color: #ffffff;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.82) 100%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  text-align: center;
  display: grid;
  gap: 1rem;
  justify-items: center;
}

.page-hero__eyebrow {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-tint, #ffbeea);
}

.page-hero__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
  color: #ffffff;
}

.page-hero__subtitle {
  margin: 0;
  max-width: 40rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  line-height: 1.5;
  color: #e8e8e8;
}

/* Left-aligned variant (e.g. About Us) Ã¢â‚¬â€ content hard-left at the
   container edge, copy constrained to the left half, pink eyebrow accent. */
.page-hero--left .page-hero__inner {
  max-width: calc(var(--container) + (var(--gutter) * 2));
  text-align: left;
  justify-items: start;
}

/* Pink eyebrow accent bar above the title (Figma 48x4 #933b77) */
.page-hero--left .page-hero__inner::before {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: var(--accent);
}

.page-hero--left .page-hero__title,
.page-hero--left .page-hero__subtitle {
  max-width: 40rem;
}

.page-hero--left .page-hero__overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.78) 50%, rgba(0, 0, 0, 0.55) 100%);
}

/* Optional hero CTA button (e.g. Work With Us "View Open Roles") */
.page-hero__actions {
  margin-top: 1.75rem;
}

.page-hero__cta {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* -------------------------------------------------------------------------
   CTA / Free Quote Ã¢â‚¬â€ dark card over bg image
   Shared via template-parts/cta-quote.php
   ------------------------------------------------------------------------- */
.cta-quote__card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.cta-quote__bg {
  position: absolute;
  inset: 0;
}

.cta-quote__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-quote__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.62) 100%);
}

.cta-quote__body {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  gap: 1rem;
}

.cta-quote__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
}

.cta-quote__copy {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.cta-quote__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.cta-quote__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}

.cta-quote__phone .cnm-icon {
  width: 18px;
  height: 18px;
  background-color: #ffffff;
}

.cta-quote__phone:hover {
  color: var(--brand-tint, #9cc9ff);
}

@media (max-width: 991px) {
  .interior-hero__inner,
  .interior-media-content__inner {
    grid-template-columns: 1fr;
  }

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

  .interior-cards--three {
    grid-template-columns: 1fr;
  }

  .trust-bar__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 0;
  }

  .trust-bar__item + .trust-bar__item {
    border-left: none;
  }

  .trust-bar__item:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
  }
}

@media (max-width: 767px) {
  .interior-hero__contacts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .trust-bar__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trust-bar__item:nth-child(even) {
    border-left: none;
  }
}

/* Projects & Proof CTA Ã¢â‚¬â€ uppercase to match the site's CTAs. The component's
   base styles live in home.css (home only); on interior pages (e.g.
   service-detail) home.css is not loaded, so apply the convention here too. */
.home-projects__cta {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
