html{
    scroll-behavior:smooth;
}
:root{
 --black:#111111;
 --charcoal:#1d1d1d;
 --gold:#c9a34a;
 --white:#ffffff;
 --light:#f5f5f5;
 --max:1200px;
}
*{margin:0;padding:0;box-sizing:border-box}
body{
 font-family:Arial,Helvetica,sans-serif;
 color:var(--black);
 background:#fff;
 line-height:1.6;
}
.container{
 width:min(92%,var(--max));
 margin:auto;
}
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(10,10,10,.97);
  padding:12px 0;
  border-bottom:1px solid rgba(201,163,74,.45);
}
.site-header .container{
 display:flex;
 justify-content:space-between;
 align-items:center;
}
.logo{
  display:flex;
  align-items:center;
  flex-shrink:0;
  text-decoration:none;
}
.logo img{
  display:block;
  width:230px;
  max-width:100%;
  height:auto;
  filter:drop-shadow(0 4px 10px rgba(0,0,0,.35));
}
nav{
 display:flex;
 gap:22px;
 align-items:center;
 flex-wrap:wrap;
}
nav a{
 color:#fff;
 text-decoration:none;
 font-size:.95rem;
}
.btn{
 display:inline-block;
 text-decoration:none;
 padding:14px 26px;
 border-radius:4px;
 font-weight:bold;
 transition:.25s;
}
.btn-gold,
nav .btn{
 background:var(--gold);
 color:#111;
}
.btn-gold:hover,
nav .btn:hover{
 filter:brightness(1.08);
}
.btn-outline{
 border:2px solid #fff;
 color:#fff;
}
.hero{
    min-height:100vh;
    background:
        linear-gradient(
            rgba(0,0,0,.58),
            rgba(0,0,0,.58)
        ),
        url("../images/hero-background.png") center center/cover no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    position:relative;
}
.overlay{
 width:100%;
 padding:80px 20px;
}
.hero-logo{

    width:420px;
    max-width:90%;

    margin-bottom:35px;

    filter:
        drop-shadow(0 10px 25px rgba(0,0,0,.45));
}
.badge{
 width:110px;
 margin-bottom:20px;
}
.eyebrow{
 color:var(--gold);
 text-transform:uppercase;
 letter-spacing:2px;
 margin-bottom:18px;
}
.hero h1{
 font-size:clamp(2.6rem,6vw,4.8rem);
 line-height:1.05;
 margin-bottom:24px;
}
.lead{

    max-width:680px;

    margin:0 auto 45px;

    font-size:1.18rem;

    line-height:1.8;
}
.hero-buttons{

    display:flex;

    justify-content:center;

    gap:24px;

    flex-wrap:wrap;

    margin-top:25px;
}
.intro{
    padding:110px 20px;
}
.intro p{
    max-width:900px;
    margin:0 auto;
    text-align:center;
    line-height:1.9;
    font-size:1.1rem;
    color:#555;
}
.cta{
 background:var(--black);
 color:#fff;
 text-align:center;
}
footer{
 background:#0b0b0b;
 color:#aaa;
 text-align:center;
 padding:30px 15px;
}
/* SERVICES SECTION */

.services-section{
  padding:100px 0;
  background:
    linear-gradient(
      135deg,
      #0b0b0b 0%,
      #171717 55%,
      #0d0d0d 100%
    );
  color:#fff;
  position:relative;
  overflow:hidden;
}

.services-section::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  top:-240px;
  right:-180px;
  border:1px solid rgba(201,163,74,.18);
  border-radius:50%;
}

.section-eyebrow{
  color:var(--gold);
  text-align:center;
  text-transform:uppercase;
  letter-spacing:3px;
  font-size:.85rem;
  font-weight:700;
  margin-bottom:14px;
}

.section-title{
  text-align:center;
  font-size:clamp(2.2rem,4vw,3.5rem);
  line-height:1.1;
  margin-bottom:20px;
  color:#fff;
}

.section-intro{
  max-width:780px;
  margin:0 auto 55px;
  text-align:center;
  color:#c9c9c9;
  font-size:1.08rem;
  line-height:1.8;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:24px;
}

.service-card{
  position:relative;
  min-height:285px;
  padding:34px 30px;
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.055),
      rgba(255,255,255,.018)
    );
  border:1px solid rgba(201,163,74,.30);
  border-radius:10px;
  overflow:hidden;
  transition:
    transform .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}

.service-card::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:4px;
  background:linear-gradient(
    90deg,
    transparent,
    var(--gold),
    transparent
  );
  opacity:.65;
}

.service-card:hover{
  transform:translateY(-8px);
  border-color:rgba(201,163,74,.75);
  box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.service-icon{
  width:52px;
  height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:24px;
  border:1px solid var(--gold);
  border-radius:50%;
  color:var(--gold);
  font-family:Georgia,serif;
  font-size:1rem;
  font-weight:700;
}

.service-card h3{
  margin-bottom:14px;
  color:#fff;
  font-size:1.35rem;
  line-height:1.25;
}

.service-card p{
  color:#c6c6c6;
  font-size:.98rem;
  line-height:1.75;
}

.services-cta{
  margin-top:52px;
  text-align:center;
}

.services-cta p{
  color:#d1d1d1;
  margin-bottom:20px;
  font-size:1.05rem;
}
@media(max-width:768px){

  .logo img{
    width:190px;
  .services-section{
    padding:75px 0;
  }

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

  .service-card{
    min-height:auto;
  }

  .section-intro{
    margin-bottom:38px;
  }
 }
 nav{
  justify-content:center;
 }
 .hero{
  min-height:75vh;
 }
 .hero h1{
  font-size:2.6rem;
 }
}/* CENTER THE OUR PROMISE SECTION */

.intro{
  width:100%;
  padding:100px 20px;
  text-align:center !important;
}

.intro h2{
  display:block;
  width:100%;
  max-width:100%;
  margin:0 auto 24px;
  text-align:center !important;
  font-size:clamp(2rem, 4vw, 2.8rem);
  line-height:1.2;
}

.intro p{
  max-width:900px;
  margin:0 auto;
  text-align:center !important;
  font-size:1.1rem;
  line-height:1.9;
  color:#555;
}
/* ==========================
   MEET WEST
========================== */

.about-owner {
    padding: 120px 20px;
    background: #0d0d0d;
    color: #ffffff;
}

.about-owner-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    gap: 70px;
    align-items: center;
}

.about-owner-photo {
    position: relative;
}

.about-owner-photo::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 22px;
    width: 100%;
    height: 100%;
    border: 2px solid #c9a34a;
    z-index: 0;
}

.about-owner-photo img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 650px;
    object-fit: cover;
    object-position: center center;
}

.about-owner-content .section-label {
    margin-bottom: 18px;
}

.about-owner-content h2 {
    margin: 0 0 28px;
    font-size: clamp(2.3rem, 4vw, 3.8rem);
    line-height: 1.08;
    color: #ffffff;
}

.about-owner-content h2 span {
    display: block;
    margin-top: 12px;
    color: #c9a34a;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-owner-content p {
    margin: 0 0 20px;
    color: #d7d7d7;
    font-size: 1.08rem;
    line-height: 1.85;
}

.about-owner-content blockquote {
    margin: 32px 0;
    padding: 20px 0 20px 28px;
    border-left: 3px solid #c9a34a;
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 1.7;
    font-style: italic;
}

.owner-values{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
    margin-top:35px;
}

.owner-values span{
    min-width:220px;
    text-align:center;
    padding:14px 18px;
    border:1px solid rgba(201,163,74,.75);
    letter-spacing:1px;
}

@media (max-width: 850px) {
    .about-owner {
        padding: 85px 20px;
    }

    .about-owner-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-owner-photo {
        max-width: 580px;
        margin: 0 auto;
    }
}

@media (max-width: 520px) {
    .about-owner-photo::before {
        top: 12px;
        left: 12px;
    }

    .owner-values {
        flex-direction: column;
    }

    .owner-values span {
        text-align: center;
    }
}
/* ==========================
   WHY HOMEOWNERS CHOOSE ELITE
========================== */

.why-elite {
    padding: 110px 20px;
    background: #f7f5f0;
    text-align: center;
}

.why-elite h2{

    margin:0 auto 30px;

    max-width:900px;

    font-size:clamp(2.4rem,4vw,4rem);

    line-height:1.1;

    color:#111;

}

.why-elite h2 span{

    display:block;

    margin-top:8px;

}

.why-elite-intro {
    max-width: 820px;
    margin: 0 auto 55px;
    color: #555555;
    font-size: 1.12rem;
    line-height: 1.8;
}

.why-elite-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.why-card{
    background:#fff;
    border:1px solid #e9e3d7;
    border-radius:8px;
    box-shadow:0 12px 30px rgba(0,0,0,.05);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.why-number{
    margin:0 auto 24px;
    color:#C9A34A;
    font-size:.9rem;
    font-weight:700;
    letter-spacing:3px;
    text-align:center;
}

.why-card h3{
    margin:0 0 18px;
    text-align:center;
}

.why-card p{
    margin:0 auto;
    max-width:220px;
    text-align:center;
    line-height:1.8;
}

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

@media (max-width: 560px) {
    .why-elite {
        padding: 80px 20px;
    }

    .why-elite-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        text-align: center;
    }
}
/*==========================
FREE ESTIMATE
==========================*/

.estimate-section{

    background:#111;

    color:white;

    padding:120px 20px;

    text-align:center;

}

.estimate-section h2{

    font-size:clamp(2.6rem,4vw,4rem);

    margin:20px auto;

}

.estimate-intro{

    max-width:850px;

    margin:auto;

    font-size:1.2rem;

    line-height:1.9;

    color:#ddd;

}
.contact-options{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    max-width:1000px;

    margin:60px auto;

}

.contact-card{

    background:#1c1c1c;

    border:1px solid rgba(201,163,74,.45);

    padding:35px;

    border-radius:8px;

}

.contact-card h3{

    color:#C9A34A;

    margin-bottom:15px;

}

.contact-card p{

    color:#fff;

}
.trust-message{

    margin:70px auto;

    max-width:900px;

}

.trust-message h3{

    color:#C9A34A;

    font-size:2rem;

    margin-bottom:25px;

}

.trust-message p{

    color:#ddd;

    line-height:2;

}
/* ==================================================
   REQUEST YOUR FREE ESTIMATE
================================================== */

.estimate-section {
    position: relative;
    overflow: hidden;
    padding: 120px 20px;
    background:
        linear-gradient(rgba(8, 8, 8, 0.94), rgba(8, 8, 8, 0.96)),
        url("../images/estimate-background.jpg") center/cover no-repeat;
    color: #ffffff;
    text-align: center;
}

.estimate-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at center top,
            rgba(201, 163, 74, 0.12),
            transparent 42%
        );
    pointer-events: none;
}

.estimate-wrapper {
    position: relative;
    z-index: 1;
}

.estimate-section .section-label {
    color: #c9a34a;
}

.estimate-section h2 {
    max-width: 950px;
    margin: 18px auto 25px;
    color: #ffffff;
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: 1.08;
}

.estimate-section h2 span {
    color: #c9a34a;
}

.estimate-intro {
    max-width: 850px;
    margin: 0 auto;
    color: #d7d7d7;
    font-size: 1.16rem;
    line-height: 1.85;
}


/* Contact cards */

.contact-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 60px auto;
}

.contact-card {
    display: block;
    padding: 35px 24px;
    background: rgba(25, 25, 25, 0.9);
    border: 1px solid rgba(201, 163, 74, 0.55);
    color: #ffffff;
    text-decoration: none;
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    border-color: #c9a34a;
    background: rgba(34, 34, 34, 0.98);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin: 0 auto 20px;
    border: 1px solid rgba(201, 163, 74, 0.8);
    border-radius: 50%;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    fill: #c9a34a;
}

.contact-card h3 {
    margin: 0 0 10px;
    color: #c9a34a;
    font-size: 1.3rem;
}

.contact-card p {
    margin: 0;
    color: #ffffff;
    line-height: 1.6;
    overflow-wrap: anywhere;
}


/* Trust statement */

.trust-message {
    max-width: 900px;
    margin: 70px auto;
}

.trust-message h3 {
    margin: 0 0 22px;
    color: #c9a34a;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.3;
}

.trust-message p {
    margin: 0;
    color: #dddddd;
    font-size: 1.08rem;
    line-height: 1.8;
}


/* Estimate form panel */

.estimate-form-panel {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    max-width: 1120px;
    margin: 0 auto;
    background: #ffffff;
    color: #111111;
    text-align: left;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.form-heading {
    padding: 55px 45px;
    background: #c9a34a;
    color: #111111;
}

.form-label {
    margin: 0 0 20px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 3px;
}

.form-heading h3 {
    margin: 0 0 24px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.15;
}

.form-heading p:last-child {
    margin: 0;
    font-size: 1.06rem;
    line-height: 1.75;
}

.estimate-form {
    position: relative;
    padding: 50px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    margin-bottom: 9px;
    color: #222222;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #d6d1c7;
    border-radius: 0;
    background: #ffffff;
    color: #111111;
    font: inherit;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c9a34a;
    box-shadow: 0 0 0 3px rgba(201, 163, 74, 0.16);
}

.estimate-submit {
    display: block;
    width: 100%;
    margin-top: 28px;
    padding: 17px 24px;
    border: 1px solid #c9a34a;
    background: #111111;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.estimate-submit:hover {
    transform: translateY(-2px);
    background: #c9a34a;
    color: #111111;
}

.form-note {
    margin: 16px 0 0;
    color: #666666;
    font-size: 0.82rem;
    line-height: 1.6;
    text-align: center;
}

.website-field {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}


/* West sign-off */

.west-signoff {
    margin: 65px auto 0;
}

.west-signoff p {
    margin: 0 0 14px;
    color: #ffffff;
    font-size: 1.35rem;
    font-style: italic;
}

.west-signoff strong,
.west-signoff span {
    display: block;
}

.west-signoff strong {
    color: #c9a34a;
    font-size: 1.15rem;
}

.west-signoff span {
    margin-top: 6px;
    color: #bdbdbd;
    font-size: 0.88rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* Mobile estimate section */

@media (max-width: 900px) {
    .contact-options {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .estimate-form-panel {
        grid-template-columns: 1fr;
    }

    .form-heading {
        text-align: center;
    }
}

@media (max-width: 620px) {
    .estimate-section {
        padding: 85px 16px;
    }

    .estimate-form {
        padding: 35px 22px;
    }

    .form-heading {
        padding: 40px 25px;
    }

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

    .form-group-full {
        grid-column: auto;
    }
}
/* ==================================================
   STICKY ESTIMATE BUTTON
================================================== */

.sticky-estimate-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    padding: 15px 22px;
    border: 1px solid #111111;
    background: #c9a34a;
    color: #111111;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.sticky-estimate-button:hover {
    transform: translateY(-3px);
    background: #ffffff;
}

@media (max-width: 600px) {
    .sticky-estimate-button {
        right: 12px;
        bottom: 12px;
        left: 12px;
        text-align: center;
    }
}
/* Hero estimate button */

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 340px;
    min-height: 102px;
    padding: 22px 34px;
    border: 2px solid #c9a34a;
    border-radius: 5px;
    background: #c9a34a;
    color: #111111;
    font-size: 1.25rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.hero-button:visited {
    color: #111111;
}

.hero-button:hover {
    transform: translateY(-3px);
    background: #ffffff;
    border-color: #ffffff;
    color: #111111;
}

@media (max-width: 600px) {
    .hero-button {
        width: 100%;
        min-width: 0;
        min-height: 76px;
        padding: 18px 24px;
        font-size: 1.05rem;
    }
}
