*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #1b1b1b;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

h1,
h2,
h3 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.site-header {
  background-color: transparent;
  border-bottom: none;
  position: absolute;
  top: -0.3rem;
  left: 0;
  right: 0;
  z-index: 1000;
}

.site-header-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0.7rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 1rem;
}

.site-header-logo-wrapper {
  justify-self: start;
  align-self: start;
  margin-top: calc(2rem - 8px);
}

.site-header-logo-image {
  width: 180px;
  height: auto;
  display: block;
}

.site-header-navigation {
  justify-self: end;
  min-width: 0;
  align-self: start;
  display: flex;
  align-items: center;
  margin-top: 0.2rem;
}

.site-header-cta-wrapper {
  align-self: start;
  display: flex;
  align-items: center;
  margin-top: 0.2rem;
}

.site-header-nav-list {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-header-nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
}

.site-header-nav-link:hover,
.site-header-nav-link:focus-visible {
  color: #0a4ea1;
}

.site-header-call-button {
  display: inline-block;
  background-color: rgba(10, 78, 161, 0.92);
  color: #ffffff;
  padding: 0.6rem 1rem;
  border-radius: 2px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.site-header-call-button:hover,
.site-header-call-button:focus-visible {
  background-color: #083d7c;
}

.hero-section {
  position: relative;
  min-height: 115vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
}

.hero-background-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #000000;
}

.hero-background-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.hero-content-wrapper {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 4rem 1.25rem;
  display: grid;
  grid-template-columns: minmax(240px, 380px) 1fr;
  align-items: center;
  gap: 2rem;
}

.hero-feature-image-wrapper {
  width: 100%;
  overflow: hidden;
  margin-left: -1.25rem;
}

.hero-feature-image {
  width: 100%;
  height: auto;
  display: block;
}

.hero-text-content {
  text-align: left;
}

.hero-heading {
  margin: 0 0 1rem;
  max-width: 760px;
  margin-left: 0;
  font-size: clamp(1.95rem, 3.8vw, 3.15rem);
  line-height: 1.1;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.62);
}

.hero-subtext {
  margin: 0 0 1.5rem;
  max-width: 640px;
  font-size: 1.05rem;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.58);
}

.hero-phone-button {
  display: inline-block;
  background-color: #ffffff;
  color: #111111;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
}

.hero-phone-link {
  display: inline-block;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.3vw, 1.85rem);
  color: #ffffff;
  text-decoration: none;
  line-height: 1.1;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.6);
}

.hero-phone-link:hover,
.hero-phone-link:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

@media (max-width: 980px) {
  .site-header {
    top: 0;
  }

  .site-header-container {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 0.9rem;
    padding: 0.8rem 1.25rem;
  }

  .site-header-logo-wrapper {
    margin-top: 0;
  }

  .site-header-navigation {
    justify-self: stretch;
    width: 100%;
  }

  .site-header-nav-list {
    justify-content: flex-start;
  }

  .site-header-cta-wrapper {
    justify-self: end;
  }

  .site-header-call-button {
    font-size: 0.82rem;
    padding: 0.5rem 0.7rem;
  }

  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 5rem 1rem 3rem;
  }

  .hero-feature-image-wrapper {
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-text-content {
    text-align: center;
  }

  .hero-feature-image {
    height: auto;
  }

  .hero-heading {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtext {
    margin-right: auto;
    margin-left: auto;
  }
}

.about-section {
  padding: 0 1.25rem 4rem;
  position: relative;
  z-index: 2;
}

.about-box {
  max-width: 1200px;
  margin: -7rem auto 0;
  background: #000000;
  color: #ffffff;
  padding: 3rem 2rem;
}

.about-box-content {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px);
  gap: 2rem;
  align-items: center;
}

.about-box-text-column {
  max-width: 640px;
}

.about-box-image-column {
  width: 100%;
}

.about-box-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: cover;
}

.about-heading {
  margin: 0 0 1rem;
  text-align: left;
}

.about-primary-text {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 980px) {
  .about-box {
    margin: 0;
    padding: 2.25rem 1.25rem;
  }

  .about-box-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.mosaic-section {
  padding: 6rem 1.25rem 4rem;
}

.mosaic-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.mosaic-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.mosaic-image-primary {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 700px;
}

.mosaic-image-secondary {
  grid-column: 2;
  grid-row: 1;
  min-height: 320px;
}

.mosaic-image-tertiary {
  grid-column: 3;
  grid-row: 1;
  min-height: 320px;
}

.mosaic-text-tile {
  grid-column: 2 / span 2;
  grid-row: 2;
  background: #000000;
  color: #ffffff;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mosaic-text-heading {
  margin: 0 0 0.9rem;
}

.mosaic-text-paragraph {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 980px) {
  .mosaic-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .mosaic-image-primary,
  .mosaic-image-secondary,
  .mosaic-image-tertiary,
  .mosaic-text-tile {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }

  .mosaic-image-primary {
    max-height: 520px;
  }
}

.services-showcase-section {
  padding: 4rem 1.25rem;
  background: #ffffff;
}

.services-showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.services-showcase-intro-tile {
  padding: 0;
  display: flex;
  align-items: center;
}

.services-showcase-intro-heading {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.05;
  color: #111111;
}

.services-showcase-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 0;
}

.services-showcase-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.services-showcase-content {
  padding: 0;
}

.services-showcase-heading {
  margin: 0 0 0.55rem;
  font-size: 1.35rem;
  color: #111111;
}

.services-showcase-description {
  margin: 0;
  color: #1f2933;
}

@media (max-width: 980px) {
  .services-showcase-container {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .services-showcase-card {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .services-showcase-image {
    aspect-ratio: 16 / 10;
  }
}

.service-areas-map-section {
  padding: 6rem 1.25rem 0;
}

.service-areas-map-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.service-areas-panel {
  color: #111111;
}

.service-areas-heading {
  margin: 0 0 0.8rem;
}

.service-areas-intro {
  margin: 0 0 1rem;
  color: #1f2933;
}

.service-areas-list {
  margin: 0;
  padding-left: 1.2rem;
}

.service-areas-item {
  margin: 0 0 0.45rem;
}

.service-map-panel {
  min-height: 450px;
}

.service-map-embed {
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: block;
}

@media (max-width: 980px) {
  .service-areas-map-container {
    grid-template-columns: 1fr;
  }

  .service-map-panel,
  .service-map-embed {
    min-height: 360px;
  }
}

.footer-contact-section {
  position: relative;
  z-index: 3;
  background-color: #ffffff;
  min-height: 0;
  margin-top: 0;
  padding: 6rem 1.25rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.footer-contact-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 0;
}

.footer-contact-box {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1200px;
  background: #000000;
  color: #ffffff;
  padding: 1.35rem 1.5rem;
  transform: none;
  margin-top: 0;
}

.footer-contact-heading {
  margin: 0 0 0.5rem;
  text-align: left;
}

.footer-contact-form {
  margin-top: 0.75rem;
}

.footer-contact-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
}

.footer-contact-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-contact-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
}

.footer-contact-input,
.footer-contact-select,
.footer-contact-textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  background: #ffffff;
  color: #111111;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

.footer-contact-textarea {
  resize: vertical;
  min-height: 110px;
}

.footer-contact-button-wrapper {
  margin-top: 0.85rem;
}

.footer-contact-submit-button {
  display: inline-block;
  padding: 0.6rem 1rem;
  background: #0a4ea1;
  color: #ffffff;
  text-decoration: none;
  border-radius: 2px;
  font-weight: 700;
  border: none;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  cursor: pointer;
}

.footer-contact-submit-button:hover,
.footer-contact-submit-button:focus-visible {
  background: #083d7c;
}

.site-header-call-button,
.footer-contact-submit-button,
.footer-contact-action-link,
.hero-phone-link {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.hero-feature-image,
.about-box-image,
.mosaic-image,
.services-showcase-image,
.service-map-embed,
.site-footer-logo-image {
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.14);
}

.about-box,
.mosaic-text-tile,
.footer-contact-box {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.16);
}

.footer-contact-input,
.footer-contact-select,
.footer-contact-textarea {
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}

.site-footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #1a1a1a;
  background-image: url("images/footer.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 4rem 1.25rem 2rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  pointer-events: none;
}

.site-footer-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.site-footer-column-heading {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.site-footer-phone,
.site-footer-email {
  margin: 0 0 0.5rem;
}

.site-footer-phone-link,
.site-footer-email-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer-logo-image {
  max-width: 160px;
  height: auto;
  display: block;
}

.site-footer-brand-column {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column: 2;
}

.site-footer-contact-column {
  grid-column: 3;
  text-align: center;
}

.site-footer-services-column {
  grid-column: 1;
  text-align: center;
}

.site-footer-services-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.site-footer-services-item {
  margin: 0 0 0.4rem;
}

.site-footer-services-link {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer-tagline {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.site-footer-copyright {
  position: relative;
  z-index: 1;
  margin: 2rem auto 0;
  max-width: none;
  width: 100%;
  padding: 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 980px) {
  .footer-contact-box {
    padding: 1.25rem 1rem;
  }

  .footer-contact-field-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 3rem 1.25rem 2rem;
  }

  .site-footer-container {
    grid-template-columns: 1fr;
  }
}

/* Subpage header - transparent, overlays hero */
.site-header--solid {
  background-color: transparent;
}

/* ===== CONTACT PAGE ===== */

.contact-hero {
  background: #000000;
  color: #ffffff;
  padding: 8rem 1.25rem 4rem;
  text-align: center;
}

.contact-hero__content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-hero__content h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.contact-hero__content p {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.contact-main {
  padding: 5rem 1.25rem;
  background: #ffffff;
}

.contact-main__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}

.contact-info__block {
  margin-bottom: 2rem;
}

.contact-info__block h2 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: #111111;
}

.contact-info__block p {
  margin: 0;
  color: #1f2933;
}

.contact-info__link {
  color: #0a4ea1;
  font-weight: 600;
}

.contact-info__link:hover {
  text-decoration: underline;
}

.contact-info__areas,
.contact-info__services {
  margin: 0;
  padding-left: 1.2rem;
  color: #1f2933;
}

.contact-info__areas li,
.contact-info__services li {
  margin-bottom: 0.35rem;
}

.contact-info__services a {
  color: #0a4ea1;
}

.contact-info__services a:hover {
  text-decoration: underline;
}

.contact-form-box {
  background: #000000;
  color: #ffffff;
  padding: 2.5rem 2rem;
}

.contact-form-box h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 1.25rem;
  color: #ffffff;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
}

.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.contact-form__group label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.95);
}

.contact-form__group input,
.contact-form__group select,
.contact-form__group textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 2px;
  background: #ffffff;
  color: #111111;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

.contact-form__group textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-form__submit {
  display: inline-block;
  padding: 0.7rem 1.25rem;
  background: #0a4ea1;
  color: #ffffff;
  border: none;
  border-radius: 2px;
  font-weight: 700;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  margin-top: 0.5rem;
}

.contact-form__submit:hover {
  background: #083d7c;
}

.contact-map {
  width: 100%;
  line-height: 0;
}

.contact-map__embed {
  width: 100%;
  height: 400px;
  display: block;
}

@media (max-width: 980px) {
  .contact-main__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 760px) {
  .contact-hero {
    padding: 6rem 1rem 3rem;
  }

  .contact-main {
    padding: 3rem 1rem;
  }

  .contact-form-box {
    padding: 1.5rem 1.25rem;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-map__embed {
    height: 280px;
  }
}

/* ===== SUBPAGE SHARED STYLES ===== */

.subpage-hero,
.drywall-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
}

.subpage-hero__bg,
.drywall-hero__bg {
  position: absolute;
  inset: 0;
}

.subpage-hero__bg img,
.drywall-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.subpage-hero__overlay,
.drywall-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.subpage-hero__content,
.drywall-hero__content {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 6rem 1.25rem 4rem;
  text-align: center;
}

.subpage-hero__content h1,
.drywall-hero__content h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 1.25rem;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}

.subpage-hero__content p,
.drywall-hero__content p {
  max-width: 640px;
  margin: 0 auto 1.5rem;
  font-size: 1.05rem;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
}

.subpage-hero__cta,
.drywall-hero__cta {
  display: inline-block;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.3vw, 1.85rem);
  color: #ffffff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.6);
}

.subpage-hero__cta:hover,
.drywall-hero__cta:hover {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* Services grid */
.subpage-services,
.drywall-services {
  padding: 5rem 1.25rem;
  background: #ffffff;
}

.subpage-services__container,
.drywall-services__container {
  max-width: 1200px;
  margin: 0 auto;
}

.subpage-services__container h2,
.drywall-services__container h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 2rem;
  color: #111111;
}

.subpage-services__grid,
.drywall-services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.subpage-service-card,
.drywall-service-card {
  background: #f8f8f8;
  padding: 2rem 1.5rem;
  border-left: 4px solid #0a4ea1;
}

.subpage-service-card h3,
.drywall-service-card h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: #111111;
}

.subpage-service-card p,
.drywall-service-card p {
  margin: 0;
  color: #1f2933;
  font-size: 0.95rem;
}

/* Why section */
.subpage-why,
.drywall-why {
  padding: 5rem 1.25rem;
  background: #000000;
  color: #ffffff;
}

.subpage-why__container,
.drywall-why__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 420px);
  gap: 3rem;
  align-items: center;
}

.subpage-why__text h2,
.drywall-why__text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 1.5rem;
  color: #ffffff;
}

.subpage-why__list,
.drywall-why__list {
  margin: 0 0 1.5rem;
  padding-left: 1.2rem;
}

.subpage-why__list li,
.drywall-why__list li {
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
}

.subpage-why__text p,
.drywall-why__text p {
  color: rgba(255, 255, 255, 0.85);
}

.subpage-why__image img,
.drywall-why__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* CTA section */
.subpage-cta,
.drywall-cta {
  padding: 5rem 1.25rem;
  background: #ffffff;
  text-align: center;
}

.subpage-cta__container,
.drywall-cta__container {
  max-width: 800px;
  margin: 0 auto;
}

.subpage-cta__container h2,
.drywall-cta__container h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0 0 1rem;
  color: #111111;
}

.subpage-cta__container p,
.drywall-cta__container p {
  margin: 0 0 1.5rem;
  color: #1f2933;
  font-size: 1.05rem;
}

.subpage-cta__button,
.drywall-cta__button {
  display: inline-block;
  background: #0a4ea1;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 2px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.subpage-cta__button:hover,
.drywall-cta__button:hover {
  background: #083d7c;
}

@media (max-width: 980px) {
  .subpage-services__grid,
  .drywall-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .subpage-why__container,
  .drywall-why__container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .subpage-hero,
  .drywall-hero {
    min-height: 55vh;
  }

  .subpage-hero__content,
  .drywall-hero__content {
    padding: 5rem 1rem 3rem;
  }

  .subpage-services__grid,
  .drywall-services__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .subpage-services,
  .drywall-services {
    padding: 3rem 1rem;
  }

  .subpage-why,
  .drywall-why {
    padding: 3rem 1rem;
  }

  .subpage-cta,
  .drywall-cta {
    padding: 3rem 1rem;
  }
}

/* Hamburger button - hidden on desktop */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile call bar - hidden on desktop */
.mobile-call-bar {
  display: none;
}

@media (max-width: 760px) {
  /* Header: logo left, hamburger right */
  .site-header {
    top: 0;
  }

  .site-header-container {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 0;
    padding: 0.6rem 1rem;
  }

  .site-header-logo-wrapper {
    margin-top: 0;
    grid-column: 1;
  }

  .site-header-logo-image {
    width: 130px;
  }

  /* Hide desktop call button */
  .site-header-cta-wrapper {
    display: none;
  }

  /* Hamburger visible */
  .nav-toggle {
    display: block;
    grid-column: 2;
    align-self: center;
  }

  /* Mobile nav dropdown */
  .site-header-navigation {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0;
  }

  .site-header-nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.9);
  }

  .site-header-nav-list.nav-open {
    display: flex;
  }

  .site-header-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: none;
  }

  /* Hero */
  .hero-section {
    min-height: 85vh;
  }

  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 5rem 1rem 2.5rem;
  }

  .hero-feature-image-wrapper {
    display: none;
  }

  .hero-text-content {
    text-align: center;
  }

  .hero-heading {
    font-size: 1.6rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subtext {
    font-size: 0.92rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-phone-link {
    font-size: 1.15rem;
  }

  /* About */
  .about-box {
    margin: 0;
    padding: 2rem 1rem;
  }

  .about-box-content {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-heading {
    font-size: 1.4rem;
  }

  /* Services */
  .services-showcase-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-showcase-card {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .services-showcase-image {
    aspect-ratio: 16 / 9;
  }

  .services-showcase-intro-heading {
    font-size: 1.8rem;
  }

  /* Mosaic / Gallery */
  .mosaic-section {
    padding: 3rem 1rem 2rem;
  }

  .mosaic-container {
    grid-template-columns: 1fr;
  }

  .mosaic-image-primary,
  .mosaic-image-secondary,
  .mosaic-image-tertiary,
  .mosaic-text-tile {
    grid-column: auto;
    grid-row: auto;
    min-height: 0;
  }

  .mosaic-image-primary {
    max-height: 300px;
  }

  .mosaic-image-secondary,
  .mosaic-image-tertiary {
    max-height: 220px;
  }

  /* Service areas */
  .service-areas-map-section {
    padding: 3rem 1rem 0;
  }

  .service-areas-map-container {
    grid-template-columns: 1fr;
  }

  .service-map-panel,
  .service-map-embed {
    min-height: 250px;
  }

  /* Contact */
  .footer-contact-section {
    padding: 3rem 1rem;
  }

  .footer-contact-box {
    padding: 1.25rem 1rem;
  }

  .footer-contact-field-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact-heading {
    font-size: 1.4rem;
  }

  /* Footer */
  .site-footer {
    padding: 2.5rem 1rem 2rem;
  }

  .site-footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }

  .site-footer-services-column,
  .site-footer-brand-column,
  .site-footer-contact-column {
    grid-column: auto;
  }

  /* Sticky Call Now bar */
  .mobile-call-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #0a4ea1;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    padding: 0.9rem 1rem;
    border-top: 2px solid #083d7c;
  }

  body {
    padding-bottom: 3.2rem;
  }
}
