@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --primary: #9d1321;
  --navy: #071e41;
  --primary-dark: #7a0f1a;
  --navy-dark: #071e41;
  --text: #1f2933;
  --text-light: #5f6c7b;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --border: #d8dee6;
  --shadow: 0 18px 40px rgba(7, 30, 65, 0.08);
  --max-width: 1180px;
  --radius: 0px;
  --radius-button: 8px;
  --transition: 0.25s ease;
  --fw-heading: 800;
  --fw-body: 400;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  font-weight: var(--fw-body);
}

.site-main {
  overflow-x: clip;
}

h1,
h2,
h3 {
  font-family: 'Inter', sans-serif;
  font-weight: var(--fw-heading);
}

img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.site-header__brand .site-header__logo,
.site-footer__logo-img,
.hero__media .hero__image {
  border-radius: 0;
}

/* Framed images (hero + content sections) */
.image-frame {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.image-frame img {
  border-radius: 0;
  transition: transform 0.4s ease;
}

.image-frame:hover img {
  transform: scale(1.03);
}

@media (prefers-reduced-motion: reduce) {
  .image-frame:hover img {
    transform: none;
  }
}

.section-light {
  background: #f7f7f7;
}

.section-white {
  background: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.top-bar,
.site-header,
.section,
.site-footer {
  width: 100%;
}

.section > *,
.site-footer > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

/* TOP BAR */
.top-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 10px 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
}

.top-bar__phone {
  font-weight: var(--fw-body);
  color: #fff;
}

.top-bar__phone:hover {
  color: var(--primary);
}

.top-bar__tagline {
  color: rgba(255, 255, 255, 0.72);
  font-weight: var(--fw-body);
}

/* HEADER */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #ebeff4;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
  max-width: none;
  margin: 0;
  height: 72px;
  box-sizing: border-box;
}

.site-header__brand {
  grid-column: 1;
  justify-self: start;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  margin: 0;
  padding: 0;
  width: auto;
  min-width: 0;
}

.site-header .site-nav {
  grid-column: 2;
  justify-self: center;
}

.site-header__brand:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.site-header__brand .site-header__logo,
.site-header__brand img {
  display: block;
  height: 58px;
  width: auto;
  max-height: none;
  max-width: none;
  margin: 11px 0 0 0;
  padding: 0;
  transform: scale(2.4);
  transform-origin: left center;
  object-fit: contain;
  object-position: left center;
}

.site-header__cta {
  grid-column: 3;
  justify-self: end;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  min-width: 0;
}

.site-header .site-nav__list {
  display: flex;
  align-items: center;
}

.site-header .btn--call {
  padding: 8px 16px;
  font-size: 0.72rem;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav__link {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition);
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--primary-dark);
}

/* BUTTONS */
.btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  font-family: inherit;
  font-weight: var(--fw-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.76rem;
  padding: 13px 22px;
}

.btn--call {
  background: var(--primary);
  color: #fff;
}

.btn--call:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.btn--primary,
.text-link {
  background: var(--primary);
  color: #fff;
}

.btn--primary:hover,
.text-link:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* HERO */
.hero {
  width: 100%;
  max-width: none;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 38%) minmax(0, 62%);
  align-items: stretch;
  gap: 0;
  padding: 0 0 95px;
}

.hero__content {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 68px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
}

.hero__content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.98;
  font-weight: var(--fw-heading);
  letter-spacing: -0.04em;
  margin-bottom: 22px;
  color: #fff;
  max-width: 420px;
}

.hero__intro {
  max-width: 430px;
  font-size: 0.96rem;
  font-weight: var(--fw-body);
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 22px;
}

.hero__phone {
  margin: 0;
  max-width: 430px;
}

.hero__phone-link {
  font-size: clamp(1.65rem, 3.8vw, 3rem);
  font-weight: var(--fw-heading);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #fff;
  text-decoration: none;
}

.hero__phone-link:hover,
.hero__phone-link:focus-visible {
  color: #fff;
  text-decoration: underline;
}

.hero__media {
  display: block;
  min-height: 520px;
}

.hero__image {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

/* INTRO — wide display headline (lead outside the old navy strip) */
.section--intro {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: none;
  margin: -44px auto 0;
  background: transparent;
  text-align: center;
  padding: 0 24px 72px;
  box-shadow: none;
  overflow-x: clip;
}

.section--intro .section__lead {
  max-width: min(100%, 1040px);
  margin: 0 auto;
  font-size: clamp(1.35rem, 2.6vw, 2.35rem);
  line-height: 1.22;
  font-weight: var(--fw-body);
  letter-spacing: -0.028em;
  color: var(--navy);
}

/* Scroll-triggered slide-in (see .reveal-on-scroll on elements in index.html) */
.reveal-on-scroll {
  opacity: 0;
  transform: translateX(-2.75rem);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* GENERIC SECTION SPACING */
.section {
  padding: 0 24px 90px;
}

.section h2 {
  color: var(--navy);
}

.section--why h2,
.layout-two-col__text h2 {
  position: relative;
  padding-left: 16px;
}

.section--why h2::before,
.layout-two-col__text h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  height: 70%;
  width: 4px;
  background: var(--primary);
  border-radius: 2px;
}

/* WHY / SERVICES GRID */
.section--why {
  padding-top: 0;
  overflow-x: clip;
}

.section--why h2 {
  max-width: var(--max-width);
  margin: 0 auto 16px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  font-weight: var(--fw-heading);
  letter-spacing: -0.03em;
}

.section--why__subhead {
  box-sizing: border-box;
  max-width: 50vw;
  margin-top: 0;
  margin-bottom: 32px;
  margin-left: calc((100% - min(var(--max-width), 100%)) / 2);
  margin-right: auto;
  padding: 0;
  text-align: left;
  color: var(--text-light);
  font-size: clamp(0.95rem, 1.9vw, 1.08rem);
  line-height: 1.6;
  font-weight: var(--fw-body);
}

.feature-list {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 52px;
}

.feature {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.feature::before {
  content: "\2713";
  display: block;
  width: 32px;
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: var(--fw-heading);
  color: var(--primary);
  margin-top: 1px;
  grid-row: 1 / -1;
}

.feature__title,
.feature__text {
  grid-column: 2;
}

.feature__title {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: var(--fw-heading);
  margin-bottom: 6px;
}

.feature__text {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
  font-weight: var(--fw-body);
}

/* SPLIT SECTIONS */
.layout-two-col {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}

.section--split .layout-two-col__media {
  order: 1;
}

.section--split .layout-two-col__text {
  order: 2;
}

.section--split-reverse .layout-two-col {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.section--split-reverse .layout-two-col__text {
  order: 1;
}

.section--split-reverse .layout-two-col__media {
  order: 2;
}

.layout-two-col__text h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: var(--fw-heading);
  max-width: 480px;
  margin-bottom: 22px;
}

.layout-two-col__text p {
  max-width: 520px;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: var(--fw-body);
  margin-bottom: 16px;
}

.section__link-wrap {
  margin-top: 22px;
}

.layout-two-col__media .image-frame {
  height: 100%;
  min-height: 430px;
}

.layout-two-col__media .image-frame .section__image {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.section__image {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

/* LOCAL SECTION - BIGGER TYPE LIKE REFERENCE */
.section--split-reverse h2 {
  color: var(--navy);
  font-size: clamp(2.6rem, 6.5vw, 5.4rem);
  line-height: 0.95;
  font-weight: var(--fw-heading);
  max-width: 420px;
}

.section--split-reverse .layout-two-col__text {
  padding-right: 12px;
}

/* AREAS WE SERVE */
.section--areas {
  text-align: center;
  padding-top: 10px;
}

.section--areas h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  font-weight: var(--fw-heading);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.section__intro {
  max-width: 760px;
  margin: 0 auto 18px;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: var(--fw-body);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 32px;
  max-width: 900px;
  margin: 0 auto 18px;
  padding: 0;
  text-align: center;
}

.area-list__item {
  color: var(--primary);
  font-weight: var(--fw-heading);
  font-size: 1rem;
}

.section__note {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-light);
  font-weight: var(--fw-body);
}

/* HIDE TESTIMONIALS */
.section--testimonials {
  display: none;
}

/* FOOTER */
.site-footer {
  background: var(--navy);
  color: #fff;
  padding: 22px 24px 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 0 minmax(0, 1fr);
  column-gap: 34px;
  row-gap: 10px;
  align-items: center;
  overflow-x: clip;
}

.site-footer > .site-footer__block:first-of-type,
.site-footer > .site-footer__block:last-of-type {
  min-height: 11.5rem;
  transform: translateY(2.25rem);
}

.site-footer > .site-footer__block:first-of-type {
  grid-column: 1;
  justify-self: center;
  text-align: center;
}

.site-footer > .site-footer__block:last-of-type {
  grid-column: 3;
  justify-self: center;
  text-align: center;
}

.site-footer {
  max-width: 100%;
}

.site-footer__block {
  max-width: var(--max-width);
}

.site-footer__heading {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: var(--fw-heading);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  padding-bottom: 0;
}

.site-footer__block p,
.site-footer__link {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.55;
  font-weight: var(--fw-body);
}

.site-footer__block p {
  margin: 0.35em 0;
}

.site-footer__block p:first-of-type {
  margin-top: 0;
}

.site-footer__block p:last-of-type {
  margin-bottom: 0;
}

.site-footer__link:hover {
  color: #fff;
}

/* Center column is 0px wide so Contact/Hours keep full 1fr each; logo paints on top */
.site-footer__logo {
  grid-column: 2;
  width: 0;
  min-width: 0;
  min-height: 224px;
  align-self: stretch;
  justify-self: center;
  position: relative;
  z-index: 1;
  line-height: 0;
  padding: 0;
  overflow: visible;
  pointer-events: none;
}

.site-footer__logo-link {
  display: inline-block;
  line-height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

.site-footer__logo-link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: 4px;
}

.site-footer__logo-img {
  display: block;
  height: 224px;
  width: auto;
  max-width: 880px;
  object-fit: contain;
}

/* Full-bleed row: beat .site-footer > * max-width so the rule + text align with the footer grid */
.site-footer > .site-footer__legal {
  grid-column: 1 / -1;
  justify-self: stretch;
  max-width: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  box-sizing: border-box;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.83rem;
  font-weight: var(--fw-body);
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero,
  .layout-two-col,
  .section--split-reverse .layout-two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 80px;
  }

  .hero__content {
    min-height: auto;
    padding: 52px 36px;
  }

  .hero__media,
  .hero__image,
  .layout-two-col__media .image-frame,
  .section__image,
  .layout-two-col__media .image-frame .section__image {
    min-height: 340px;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .site-footer > .site-footer__block:first-of-type,
  .site-footer > .site-footer__block:last-of-type {
    grid-column: auto;
    justify-self: center;
    min-height: 0;
    transform: none;
  }

  .site-footer__logo {
    grid-column: auto;
    width: auto;
    min-width: 0;
    min-height: 0;
    pointer-events: auto;
  }

  .site-footer__logo-link {
    position: static;
    transform: none;
  }

  .site-footer__logo-img {
    max-width: min(880px, 100%);
  }

  .site-footer > .site-footer__block {
    text-align: center;
  }
}

/* Mobile call bar - hidden on desktop */
.mobile-call-bar {
  display: none;
}

@media (max-width: 760px) {
  /* Hide top bar phone number */
  .top-bar__phone {
    display: none;
  }

  .top-bar {
    flex-direction: column;
    text-align: center;
    gap: 4px;
  }

  /* Hide Call Us button */
  .site-header__cta {
    display: none;
  }

  /* Center logo */
  .site-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    height: auto;
    min-height: 72px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .site-header__brand {
    grid-column: auto;
    justify-self: center;
    margin: 0 auto;
    width: 100%;
    justify-content: center;
  }

  .site-header__brand .site-header__logo,
  .site-header__brand img {
    transform-origin: center center;
  }

  .site-header .site-nav {
    grid-column: auto;
    justify-self: auto;
    width: 100%;
    order: 3;
  }

  .site-nav__list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .section--intro {
    margin-top: -36px;
  }

  .section--why__subhead {
    max-width: 100%;
  }

  /* Hero phone link keeps original color */
  .hero__phone-link,
  .hero__phone-link:hover,
  .hero__phone-link:focus-visible,
  .hero__phone-link:visited {
    color: inherit;
    text-decoration: none;
  }

  /* Hide Contact and Hours in footer */
  .site-footer__contact,
  .site-footer__hours {
    display: none;
  }

  /* Sticky Call Now bar */
  .mobile-call-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--primary);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.9rem 1rem;
    border-top: 2px solid var(--primary-dark);
  }

  /* Padding so content isn't hidden behind call bar */
  body {
    padding-bottom: 3.2rem;
  }
}

@media (max-width: 540px) {
  .hero {
    padding-left: 0;
    padding-right: 0;
    margin-top: 0;
  }

  .hero__content {
    padding: 42px 24px;
  }

  .section,
  .top-bar,
  .site-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-header {
    padding-left: 12px;
    padding-right: 12px;
    padding-top: 0;
    padding-bottom: 0;
    height: auto;
    min-height: 72px;
  }

  .section--intro {
    padding-left: 16px;
    padding-right: 16px;
  }

  .layout-two-col__text h2,
  .section--split-reverse h2 {
    max-width: none;
  }
}

/* ================================================================
   SUBPAGE STYLES
   ================================================================ */

/* Full-width banner hero */
.sub-banner {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.sub-banner__bg {
  position: absolute;
  inset: 0;
}

.sub-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sub-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 30, 65, 0.7) 0%, rgba(7, 30, 65, 0.5) 100%);
}

.sub-banner__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  padding: 90px 24px 60px;
}

.sub-banner__content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.98;
  font-weight: var(--fw-heading);
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.sub-banner__content p {
  max-width: 620px;
  margin: 0 auto 22px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
}

.sub-banner__phone {
  display: inline-block;
  font-size: clamp(1.5rem, 3.5vw, 2.6rem);
  font-weight: var(--fw-heading);
  color: #fff;
  letter-spacing: 0.02em;
}

.sub-banner__phone:hover {
  text-decoration: underline;
}

/* Service cards */
.sub-cards {
  padding: 80px 24px;
}

.sub-cards__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.sub-cards__container h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-heading);
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 36px;
  position: relative;
  padding-left: 16px;
}

.sub-cards__container h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  height: 70%;
  width: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.sub-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.sub-card {
  position: relative;
  background: var(--bg-soft);
  padding: 32px 28px;
  border-radius: 0;
  overflow: hidden;
}

.sub-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
}

.sub-card h3 {
  font-size: 1.15rem;
  font-weight: var(--fw-heading);
  color: var(--navy);
  margin: 0 0 10px;
}

.sub-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* FAQ section */
.sub-faq {
  padding: 80px 24px;
}

.sub-faq__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.sub-faq__intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-heading);
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 32px;
}

.sub-faq__list {
  max-width: 820px;
}

.sub-faq__item {
  border-bottom: 1px solid var(--border);
}

.sub-faq__question {
  display: block;
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
}

.sub-faq__question::-webkit-details-marker {
  display: none;
}

.sub-faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.2s ease;
}

.sub-faq__item[open] .sub-faq__question::after {
  content: "−";
}

.sub-faq__answer {
  padding: 0 0 20px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.65;
}

.sub-faq__answer ul {
  padding-left: 1.2rem;
  margin: 0 0 12px;
}

.sub-faq__answer li {
  margin-bottom: 6px;
}

.sub-faq__answer p {
  margin: 0 0 8px;
}

/* CTA band */
.sub-cta-band {
  background: var(--navy);
  padding: 64px 24px;
  text-align: center;
  color: #fff;
}

.sub-cta-band__container {
  max-width: 700px;
  margin: 0 auto;
}

.sub-cta-band__container h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: var(--fw-heading);
  margin: 0 0 12px;
  color: #fff;
}

.sub-cta-band__container p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

.sub-cta-band__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.sub-cta-band__button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

/* Subpage responsive */
@media (max-width: 980px) {
  .sub-cards__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .sub-banner {
    min-height: 42vh;
  }

  .sub-banner__content {
    padding: 72px 16px 48px;
  }

  .sub-cards {
    padding: 56px 16px;
  }

  .sub-faq {
    padding: 56px 16px;
  }

  .sub-cta-band {
    padding: 48px 16px;
  }
}

@media (max-width: 540px) {
  .sub-banner__content {
    padding: 64px 16px 40px;
  }

  .sub-card {
    padding: 24px 20px;
  }
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */

.about-story {
  padding: 80px 24px;
}

.about-story__container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.about-story__text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-heading);
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0 0 20px;
  position: relative;
  padding-left: 16px;
}

.about-story__text h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  height: 70%;
  width: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.about-story__text p {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0 0 16px;
}

.about-story__image .image-frame {
  height: 100%;
  min-height: 380px;
}

.about-story__image .image-frame img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  border-radius: 0;
}

/* Values grid */
.about-values {
  padding: 80px 24px;
}

.about-values__container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-values__container h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--fw-heading);
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0 0 36px;
  text-align: center;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.about-value {
  text-align: center;
  padding: 28px 20px;
}

.about-value h3 {
  font-size: 1.1rem;
  font-weight: var(--fw-heading);
  color: var(--navy);
  margin: 0 0 10px;
}

.about-value p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .about-story__container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-story__image .image-frame,
  .about-story__image .image-frame img {
    min-height: 300px;
  }

  .about-values__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (max-width: 760px) {
  .about-story {
    padding: 56px 16px;
  }

  .about-values {
    padding: 56px 16px;
  }

  .about-values__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-value {
    text-align: left;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
  }

  .about-value:last-child {
    border-bottom: none;
  }
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */

.sub-banner--short {
  min-height: 36vh;
}

.contact-page {
  padding: 72px 24px;
}

.contact-page__container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

/* Info cards */
.contact-page__card {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.contact-page__card:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-page__card h2 {
  font-size: 1rem;
  font-weight: var(--fw-heading);
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.contact-page__phone {
  margin: 0 0 6px;
}

.contact-page__phone a {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: var(--fw-heading);
  color: var(--primary);
}

.contact-page__phone a:hover {
  text-decoration: underline;
}

.contact-page__note {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

.contact-page__card p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-page__hours {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-page__hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--text);
  border-bottom: 1px solid var(--bg-soft);
}

.contact-page__hours li:last-child {
  border-bottom: none;
}

.contact-page__hours span:first-child {
  font-weight: 600;
}

/* Form box */
.contact-page__form-box {
  background: var(--navy);
  color: #fff;
  padding: 36px 32px;
}

.contact-page__form-box h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--fw-heading);
  margin: 0 0 8px;
  color: #fff;
}

.contact-page__form-box > p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.contact-page__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.cpf__group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.cpf__group--full {
  grid-column: 1 / -1;
}

.cpf__group label {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.cpf__group input,
.cpf__group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background: #fff;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}

.cpf__group input:focus,
.cpf__group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.cpf__group textarea {
  resize: vertical;
  min-height: 100px;
}

.cpf__honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-page__success {
  color: #b8f0c8;
  margin-bottom: 16px;
}

.cpf__submit {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
  margin-top: 8px;
}

.cpf__submit:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

@media (max-width: 980px) {
  .contact-page__container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .sub-banner--short {
    min-height: 30vh;
  }
}

@media (max-width: 760px) {
  .contact-page {
    padding: 48px 16px;
  }

  .contact-page__form-box {
    padding: 28px 20px;
  }

  .contact-page__form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .sub-banner--short {
    min-height: 26vh;
  }
}

/* Contact — service area map */
.contact-map {
  padding: 64px 24px 80px;
}

.contact-map__container {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.contact-map h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  font-weight: var(--fw-heading);
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-map__intro {
  max-width: 720px;
  margin: 0 auto 28px;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-map__embed {
  max-width: 1000px;
  margin: 0 auto 24px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.contact-map__embed iframe {
  display: block;
  width: 100%;
  height: min(420px, 55vh);
  min-height: 280px;
  border: 0;
  border-radius: 0;
}

.contact-map__towns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 24px;
  list-style: none;
  margin: 0 auto 16px;
  padding: 0;
  max-width: 900px;
}

.contact-map__towns li {
  color: var(--primary);
  font-weight: var(--fw-heading);
  font-size: 0.95rem;
}

.contact-map__note {
  margin: 0;
  font-size: 0.9rem;
}

.contact-map__note a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-map__note a:hover {
  color: var(--primary);
}

@media (max-width: 760px) {
  .contact-map {
    padding: 48px 16px 64px;
  }
}
