:root {
  --black: #0b0b0b;
  --charcoal: #151515;
  --charcoal-2: #202020;
  --gold: #d7a429;
  --gold-light: #f4c44f;
  --white: #ffffff;
  --muted: #c9c9c9;
  --light: #f5f5f5;
  --border: #2f2f2f;
  --shadow: 0 20px 50px rgba(0, 0, 0, .18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--white);
  color: #161616;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11, 11, 11, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.navbar {
  height: 115px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  height: 95px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
}

.nav-links a {
  opacity: .88;
  transition: .25s ease;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--gold-light);
  opacity: 1;
}

.nav-call {
  background: #d7a429;
  color: #111 !important;
  padding: 12px 18px;
  border-radius: 999px;
  opacity: 1 !important;
}

.nav-call:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  margin: 5px;
  border-radius: 3px;
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .56)), radial-gradient(circle at 75% 25%, rgba(215, 164, 41, .35), transparent 32%), linear-gradient(135deg, #111, #2b2b2b);
  color: var(--white);
  overflow: hidden;
}

.hero:after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border: 90px solid rgba(215, 164, 41, .16);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-left: 70px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 1rem;
  font-weight: 900;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.eyebrow.dark {
  color: var(--gold-light);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: .96;
  font-weight: 900;
  letter-spacing: -.06em;
  margin-bottom: 22px;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.hero-text {
  font-size: 1.12rem;
  color: #e5e5e5;
  max-width: 680px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: .25s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: #d7a429;
  color: #111;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(215, 164, 41, .25);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, .65);
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #111;
  transform: translateY(-2px);
}

.trust-bar {
  background: #0f0f0f;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid strong {
  display: block;
  font-size: 1.35rem;
  color: var(--gold-light);
  font-weight: 900;
}

.trust-grid span {
  display: block;
  color: #dcdcdc;
  font-size: .92rem;
}

.section {
  padding: 70px 0;
}

.section-heading {
  max-width: 820px;
  text-align: center;
  margin: 0 auto 38px;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading h2,
.split-section h2,
.cta-box h2,
.content-narrow h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin-bottom: 18px;
  font-weight: 900;
}

.section-heading p {
  color: #555;
  font-size: 1.05rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .06);
  transition: .25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.card-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  border-radius: 18px;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-card p {
  color: #585858;
  font-size: 0.95rem;
  line-height: 1.5;
}

.dark-section {
  background: var(--charcoal);
  color: #fff;
}

.split-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}

.split-grid p {
  color: #d6d6d6;
  margin-bottom: 16px;
}

.image-placeholder {
  min-height: 420px;
  border-radius: 32px;
  background: linear-gradient(135deg, #2c2c2c, #111);
  border: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.service-area {
  background: var(--light);
}

.cta-section {
  padding: 40px 0 70px;
  background: #101010;
  color: #fff;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  background: linear-gradient(135deg, #1b1b1b, #111);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 32px;
  padding: 42px;

  box-shadow:
      0 0 35px rgba(215, 164, 41, .08),
      0 20px 60px rgba(0, 0, 0, .35);
}

.cta-box p {
  color: #d5d5d5;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.page-hero {
  padding: 55px 0 45px;
  background: linear-gradient(135deg, #111, #222);
  color: #fff;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.05em;
  max-width: 850px;
}

.page-hero p {
  max-width: 720px;
  color: #ddd;
  font-size: 1.1rem;
  margin-top: 14px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-list article,
.contact-card,
.quote-form,
.highlight-box {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 26px;
  padding: 32px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .06);
}

.service-list h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.service-list p,
.content-narrow p {
  color: #555;
}

.content-narrow {
  max-width: 820px;
}

.content-narrow p {
  margin-bottom: 18px;
}

.highlight-box {
  margin-top: 24px;
  background: #111;
  color: #fff;
  display: grid;
  gap: 6px;
}

.highlight-box strong {
  color: var(--gold-light);
  font-size: 1.2rem;
}

.highlight-box span {
  color: #ddd;
}

.contact-card h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-card {
  align-self: stretch;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.contact-card h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: var(--gold);
  margin-top: 12px;
  border-radius: 999px;
}

.contact-card p {
  margin-bottom: 12px;
}

.contact-card a {
  color: #91670d;
  font-weight: 800;
}

.contact-mini-cta {
  margin-top: 28px;
  background: #111;
  color: #fff;
  border-radius: 18px;
  padding: 20px;
}

.contact-mini-cta strong {
  display: block;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.contact-mini-cta span {
  color: #ddd;
  font-size: .95rem;
}

.quote-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  margin-bottom: 18px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: 2px solid rgba(215, 164, 41, .35);
  border-color: var(--gold);
}

.quote-form .btn {
  border: 0;
  cursor: pointer;
  width: 100%;
}

.form-note {
  font-size: .85rem;
  color: #666;
  margin-top: 12px;
}

@media(max-width:860px) {
  .navbar {
    height: 78px;
  }

  .brand img {
    height: 60px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #0b0b0b;
    display: none;
    flex-direction: column;
    padding: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-call {
    width: 92%;
    text-align: center;
    justify-content: center;
  }

  .hero {
    min-height: 720px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid div {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .cards-grid,
  .split-grid,
  .service-list,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cta-box {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .section {
    padding: 72px 0;
  }
}

@media(max-width:520px) {
  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-buttons .btn,
  .cta-actions .btn {
    width: 100%;
  }

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

  .service-card,
  .cta-box,
  .contact-card,
  .quote-form,
  .service-list article {
    padding: 28px;
  }

  .section-heading {
    text-align: left;
  }
}

.services-premium {
  background: #111;
  padding: 60px 0 35px;
}

.service-category-banner {
  background: 
    radial-gradient(circle at top right,
      rgba(215, 164, 41, .10),
      transparent 35%),
    linear-gradient(135deg, #111, #1d1d1d);
  color: #fff;
  border: 1px solid rgba(215, 164, 41, 0.35);
  border-radius: 30px;
  padding: 42px 48px;
  margin-bottom: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-category-banner h2 {
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  line-height: 1;
  margin: 10px 0 22px;
  max-width: 100%;
}

.service-category-banner p {
  max-width: 100%;
  font-size: 1.08rem;
  line-height: 1.75;
  color: #d8d8d8;
}

.roofing-banner {
  margin-top: 50px;
}

.premium-service-grid {
  margin-bottom: 0;
}

.premium-service-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  padding: 28px;
  transition: .25s ease;
}

.roofing-dark-section {
  background: #111;
  color: #fff;
  margin-top: 25px;
  padding: 0;
}

.roofing-dark-section .service-category-banner {
  margin-top: 0;
}

.process-section {
  background: #111;
  padding: 30px 0 50px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid div {
  background: #181818;
  border: 1px solid rgba(215, 164, 41, 0.25);
  border-radius: 22px;
  padding: 26px;
  color: #fff;
  transition: .25s ease;
}

.process-grid div:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow:
    0 0 0 3px rgba(215, 164, 41, 0.18),
    0 0 28px rgba(215, 164, 41, 0.20),
    0 20px 45px rgba(0, 0, 0, 0.35);
}

.process-grid span {
  color: var(--gold-light);
  font-weight: 900;
  letter-spacing: .12em;
}

.process-grid h3 {
  margin: 12px 0 8px;
  font-size: 1.2rem;
}

.process-grid p {
  color: #d6d6d6;
}

.who-we-work-with {
  padding: 45px 0 40px;
  background: #0a0a0a;
  color: #fff;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.work-card {
  background: #111;
  border: 1px solid rgba(215,164,41,.25);
  border-radius: 24px;
  padding: 28px;
  transition: .25s ease;
}

.work-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.work-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.work-card h3 {
  margin-bottom: 10px;
}

.work-card p {
  color: #cfcfcf;
}

@media (max-width: 992px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
}

.who-we-work-with .section-heading .eyebrow {
  color: var(--gold-light);
  font-size: 1rem;
}

.who-we-work-with .section-heading h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  line-height: 1.15;
}

.who-we-work-with .section-heading p {
  color: #d6d6d6;
  font-size: 1.05rem;
}

.service-category-banner .eyebrow,
.section-heading .eyebrow {
  color: var(--gold-light);
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.site-footer {
  background: #050505;
  color: #fff;
  padding: 28px 0 12px;
  border-top: 2px solid rgba(215,164,41,.35);
  box-shadow:
    0 -1px 0 rgba(215, 164, 41, .15),
    0 -15px 40px rgba(215, 164, 41, .04);
}

.footer-grid-new {
  display: grid;
  grid-template-columns: 240px 240px 240px;
  justify-content: center;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto 14px;
}

.footer-column {
  position: relative;
  text-align: center;
}

.footer-column:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -30px;
  width: 1px;
  height: 125px;
  background: rgba(255,255,255,.10);
}

.footer-column h3 {
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 10px;
}

.footer-column a,
.footer-column p {
  display: block;
  color: #d6d6d6;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.45;
}

.footer-column a:hover {
  color: var(--gold-light);
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 9px;
  margin-bottom: 10px;
}

.footer-contact span {
  width: 18px;
  flex-shrink: 0;
  color: var(--gold-light);
}

.footer-contact a {
  word-break: break-word;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  text-align: center;
  padding-top: 13px;
  color: #888;
  font-size: .78rem;
}

@media (max-width: 900px) {

  .footer-grid-new {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    max-width: 92%;
  }

  .footer-column::after {
    display: none;
  }

  .footer-column:first-child {
    display: none;
  }

}

.about-section {
  background: #f7f7f7;
  padding: 48px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 90px;
  align-items: center;
  max-width: 1050px;
}

.about-content h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 900;
  margin-bottom: 24px;
  color: #111;
}

.about-content p { 
  color: #444; 
  font-size: 1.02rem; 
  margin-bottom: 18px; }

.about-panel {
  background: #111;
  color: white;
  border-radius: 28px;
  padding: 40px;
  width: 360px;
  min-height: 340px;
  margin: auto;
  border: 1px solid rgba(215,164,41,.25);
  box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

.panel-label {
  font-size: .72rem;
  margin-bottom: 12px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
}

.about-panel strong{
  display:block;
  margin-top:18px;
  color:var(--gold-light);
  font-weight:800;
}

.about-panel h3 {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 14px;
}

.about-panel p {
  font-size: .92rem;
  line-height: 1.55;
  color: #d6d6d6;
}

@media(max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-dark-section {
  background: #111;
  color: #fff;
  padding: 55px 0;
}

.about-story {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.about-story h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 900;
  margin-bottom: 16px;
}

.about-story p {
  color: #d6d6d6;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.about-values-section {
  background: #f7f7f7;
  padding: 45px 0 85px;
}

.about-values-grid,
.about-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.about-values-grid div,
.about-process-grid div {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 14px 35px rgba(0,0,0,.06);
  transition: .25s ease;
}

.about-values-grid div:hover,
.about-process-grid div:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.about-values-grid span,
.about-process-grid span {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .12em;
}

.about-values-grid h3,
.about-process-grid h3 {
  margin: 12px 0 10px;
  font-size: 1.25rem;
}

.about-values-grid p,
.about-process-grid p {
  color: #555;
}

.about-process-section {
  background: #0a0a0a;
  color: #fff;
  padding: 85px 0;
}

.about-process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.about-process-grid div {
  background: #181818;
  color: #fff;
  border-color: rgba(215,164,41,.25);
}

.about-process-grid p {
  color: #d6d6d6;
}

@media(max-width: 900px) {
  .about-values-grid,
  .about-process-grid {
    grid-template-columns: 1fr;
  }

  .about-promise-box {
    padding: 34px;
  }
}

.contact-trust-strip {
  background: #111;
  padding: 28px 0;
  border-top: 1px solid rgba(215,164,41,.25);
}

.contact-trust-grid div {
  color: #fff;
  text-align: center;
  font-weight: 900;
  border: 1px solid rgba(215,164,41,.3);
  border-radius: 18px;
  padding: 18px;
  background: #181818;
}

.contact-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contact-info-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid #eeeeee;
  border-radius: 16px;
  background: #fafafa;
}

.contact-info-row span {
  width: 42px;
  height: 42px;
  background: #111;
  color: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-row strong {
  display: block;
  margin-bottom: 3px;
  color: #111;
}

.contact-info-row p {
  margin: 0;
  color: #444;
}

.contact-info-row a {
  color: #91670d;
  font-weight: 800;
  word-break: break-word;
}

.contact-page .section {
  padding-top: 45px;
  padding-bottom: 10px;
}

.contact-page .page-hero {
  padding: 55px 0 45px;
}

@media (max-width: 520px) {
  .contact-page .page-hero {
    padding: 28px 0 30px;
  }
}

.center-button {
  text-align: center;
  margin-top: 34px;
}

@media(max-width: 760px) {
  .contact-trust-grid {
    grid-template-columns: 1fr;
  }
}

.services-preview {
    text-align: center;
    padding: 40px 0;
}

.services-preview .section-heading {
    max-width: 1250px;
    margin: 0 auto;
    text-align: center;
}

.services-preview .section-heading .eyebrow {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: .18em;
    margin-bottom: 16px;
}

.services-preview .section-heading h2 {
    max-width: 1250px;
    margin: 0 auto 18px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: -.04em;
    font-weight: 900;
    white-space: nowrap;
}

.services-preview .section-heading p {
    max-width: 850px;
    margin: 0 auto 22px;
    font-size: 1.04rem;
    line-height: 1.8;
    color: #555;
}

.services-preview .center-button {
    margin-top: -2px;
}

@media (max-width: 860px) {
  .hero-content {
    margin-left: 0;
    padding: 0 24px;
    padding-top: 30px;
  }

  .hero-buttons {
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

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

  .process-grid div {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .hero h1 {
    font-size: 3.4rem;
  }
}

@media (max-width: 900px) {
  .footer-grid-new .footer-column:nth-of-type(2) {
    display: none !important;
  }
}

.gallery-section {
  background: #f7f7f7;
  padding: 50px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid #e7e7e7;
  box-shadow: 0 14px 35px rgba(0,0,0,.08);
  transition: .25s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}

.gallery-heading-gap {
  margin-top: 70px;
}

@media(max-width: 860px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid img {
    height: 220px;
  }
}

@media(max-width: 520px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 240px;
  }
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.95);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 12px;
}

.close-lightbox {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 50px;
  color: #fff;
  cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none;
  color: white;
  font-size: 50px;
  width: 70px;
  height: 70px;
  cursor: pointer;
  border-radius: 50%;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.home-about-section {
  text-align: center;
  padding: 40px 0 40px;
}

.home-about-section .home-about-grid {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.home-about-section .home-about-grid > div {
  max-width: 980px;
  margin: 0 auto;
}

.home-about-section .eyebrow {
  color: var(--gold-light);
  margin-bottom: 16px;
}

.home-about-section h2 {
  letter-spacing: -.04em;
  margin-bottom: 18px;
  font-weight: 900;
}

.home-about-section p {
  max-width: 850px;
  margin: 0 auto 22px;
  font-size: 1.04rem;
  line-height: 1.8;
  color: #f1f1f1;
}

.home-about-section .btn {
  display: inline-flex;
  margin: 8px auto 0;
}

@media (max-width: 520px) {
  .gallery-section {
    padding: 38px 0 50px;
  }

  .gallery-section .section-heading {
    margin-bottom: 24px;
  }

  .gallery-section .section-heading h2 {
    font-size: 2.2rem;
    line-height: 1.05;
  }

  .gallery-heading-gap {
    margin-top: 45px;
  }

  .gallery-grid {
    gap: 16px;
  }
}

@media (max-width: 520px) {
  .page-hero {
    padding: 28px 0 30px;
  }

  .page-hero .eyebrow {
    margin-bottom: 10px;
  }

  .page-hero h1 {
    font-size: 2.2rem;
    line-height: 1.05;
  }

  .page-hero p {
    margin-top: 10px;
    font-size: 1rem;
  }
}

.about-section {
  padding-top: 35px;
}

.about-dark-section .eyebrow {
  color: var(--gold-light) !important;
}

.contact-page .about-process-section .eyebrow {
  color: var(--gold-light) !important;
}

.gallery-section {
  padding-top: 30px;
}

@media (max-width: 860px) {

  .cta-section {
    padding-bottom: 28px;
  }

  .about-section {
    padding-top: 32px;
    padding-bottom: 42px;
  }

  .about-grid {
    gap: 30px;
  }

  .about-values-section {
    padding-bottom: 42px;
  }

  .contact-page .about-process-section {
    padding-bottom: 55px;
  }

}

.contact-page .about-process-section {
  padding-top: 42px;
}

.services-preview .center-button .btn-primary {
  background: var(--gold-light);
}

.home-about-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  line-height: 1.05;
}

@media (max-width: 860px) {
  .hero-content {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }
}

/* Hide all extra gallery images initially */
.gallery-extra {
  display: none;
}

/* Show the extra images once the gallery is expanded */
.expandable-gallery.is-expanded .gallery-extra {
  display: block;
}

.expandable-gallery.is-expanded .gallery-more {
  height: auto;
  min-height: 60px;
  background: #111;
  border-radius: 999px;
  max-width: 220px;
}

.expandable-gallery.is-expanded .gallery-more span {
  position: static;
  padding: 14px 24px;
  font-size: 1rem;
  letter-spacing: 0;
}

/* The dark clickable tile */
.gallery-more {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  border: 1px solid rgba(215, 164, 41, 0.45);
  border-radius: 22px;
  cursor: pointer;
  background-position: center;
  background-size: cover;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

/* Plumbing third-image background */
.plumbing-more {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.67), rgba(0, 0, 0, 0.67)),
    url("../images/gallery/plumbing-3.jpg");
}

/* Roofing third-image background */
.roofing-more {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.67), rgba(0, 0, 0, 0.67)),
    url("../images/gallery/roofing-3.jpg");
}

/* +19 and +6 text */
.gallery-more span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: inherit;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
}

/* Laptop hover effect */
.gallery-more:hover {
  transform: translateY(-5px);
  border-color: var(--gold-light);
  box-shadow:
    0 0 0 3px rgba(215, 164, 41, 0.15),
    0 20px 45px rgba(0, 0, 0, 0.2);
}

/* Tablet */
@media (max-width: 860px) {
  .gallery-more {
    height: 220px;
  }
}

/* Mobile */
@media (max-width: 520px) {
  .gallery-more {
    height: 240px;
  }

  .gallery-more span {
    font-size: 2.7rem;
  }
}

/* Put Show Less underneath all revealed photos */
.expandable-gallery.is-expanded .gallery-more {
  order: 999;
  grid-column: 1 / -1;
  justify-self: center;
  width: 220px;
  margin: 22px auto 0;
}

/* Keep gallery headings centred on mobile */
@media (max-width: 520px) {
  .gallery-section .section-heading {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-section .section-heading .eyebrow {
    text-align: center;
  }

  .expandable-gallery.is-expanded .gallery-more {
    width: 190px;
    margin: 20px auto 0;
  }
}

/* Fix Home Services and About sections on phones */
@media (max-width: 520px) {

  .services-preview {
    padding: 42px 0 40px;
    overflow: hidden;
  }

  .services-preview .section-heading {
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
  }

  .services-preview .section-heading h2 {
    width: 100%;
    max-width: 100%;
    font-size: 2rem;
    line-height: 1.08;
    letter-spacing: -.04em;
    white-space: normal;
    overflow-wrap: normal;
    margin: 0 auto 18px;
  }

  .services-preview .section-heading p {
    width: 100%;
    max-width: 370px;
    margin: 0 auto 22px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .services-preview .center-button {
    margin-top: 6px;
  }

  .home-about-section {
    padding: 42px 0;
  }

  .home-about-section .home-about-grid {
    width: 100%;
    max-width: 100%;
    padding: 0 28px;
  }

  .home-about-section h2 {
    font-size: 2rem !important;
    line-height: 1.1;
    letter-spacing: -.04em;
    margin-bottom: 18px;
  }

  .home-about-section p {
    max-width: 100%;
    width: 100%;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 auto 22px;
}

  .services-preview .btn,
  .home-about-section .btn {
    min-height: 52px;
    padding: 14px 26px;
  }
}

/* Responsive About Us standard box */
@media (max-width: 860px) {

  .about-grid {
    width: 100%;
    max-width: 100%;
    gap: 30px;
  }

  .about-panel {
    width: 100%;
    max-width: 520px;
    min-height: auto;
    margin: 0 auto;
    padding: 36px;
  }
}

@media (max-width: 520px) {

  .about-section .container {
    width: 100%;
    padding: 0 18px;
  }

  .about-panel {
    width: 100%;
    max-width: none;
    min-height: auto;
    padding: 32px 28px;
    border-radius: 24px;
  }

  .about-panel h3 {
    font-size: 1.85rem;
    line-height: 1.12;
    margin-bottom: 16px;
  }

  .about-panel p {
    font-size: .95rem;
    line-height: 1.55;
  }

  .about-panel strong {
    font-size: .95rem;
    line-height: 1.55;
    margin-top: 20px;
  }
}

@media (max-width: 380px) {

  .about-section .container {
    padding: 0 16px;
  }

  .about-panel {
    padding: 28px 24px;
  }

  .about-panel h3 {
    font-size: 1.7rem;
  }
}

/* Restore premium dark service cards */
.premium-service-card,
.roofing-dark-section .service-card {
  background: #181818;
  color: #fff;
  border: 1px solid rgba(215, 164, 41, 0.25);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.premium-service-card h3,
.roofing-dark-section .service-card h3 {
  color: #fff;
}

.premium-service-card p,
.roofing-dark-section .service-card p {
  color: #d6d6d6;
}

.premium-service-card:hover,
.roofing-dark-section .service-card:hover {
  transform: translateY(-7px);
  border-color: var(--gold);
  box-shadow:
    0 0 0 3px rgba(215, 164, 41, 0.16),
    0 20px 45px rgba(0, 0, 0, 0.22);
}