
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

:root{
  --charcoal:#333332;
  --text:#66635f;
  --heading:#4c4946;
  --line:#d7d3ce;
  --offwhite:#fbfaf8;
  --white:#ffffff;
  --max:1140px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Montserrat',Arial,sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.72;
  font-weight:500;
}
a{color:inherit}
img{max-width:100%;display:block}
.wrap{width:min(var(--max),calc(100% - 42px));margin:auto}

/* Header mirrors the original GoDaddy layout: simple dark bar, centered text navigation, no invented logo. */
.site-header{background:var(--charcoal);position:relative;z-index:10}
.nav{height:54px;display:flex;align-items:center;justify-content:center}
.brand{display:none}
nav ul{display:flex;list-style:none;margin:0;padding:0;gap:52px}
nav a{
  color:#d7d4d0;text-decoration:none;text-transform:uppercase;
  font-size:13px;letter-spacing:.18em;font-weight:500;
}
nav a:hover{color:#fff}
.menu-btn{display:none}

/* Original full-width project hero with minimal overlaid UI. */
.hero-original{
  height:min(65vw,620px);
  min-height:460px;
  background:url('/assets/hero-original.jpg') center 47%/cover no-repeat;
}
.hero-cta{
  background:var(--offwhite);
  text-align:center;
  padding:40px 20px 44px;
}
.outline-btn{
  display:inline-block;
  text-decoration:none;
  color:#34312f;
  border:1px solid #8a8580;
  padding:13px 25px;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  background:transparent;
}
.outline-btn:hover{background:#f1eee9}

/* Intro section closely follows the original centered, airy composition. */
.intro{
  background:#fff;
  padding:78px 0 76px;
  text-align:left;
}
.intro-inner{max-width:790px;margin:auto}
.section-label{
  color:#4c4946;
  font-size:17px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:600;
  margin-bottom:20px;
}
.intro p{font-size:17px;margin:0 0 28px;color:#65615d}
.intro strong{font-weight:600;color:#56524f}

/* Original circular service cards. */
.services-section{background:#fff;padding:54px 0 74px;text-align:center}
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:36px;
  margin-top:34px;
}
.service img{
  width:330px;height:330px;max-width:100%;
  aspect-ratio:1/1;object-fit:cover;border-radius:50%;margin:0 auto 28px;
  box-shadow:0 18px 34px rgba(74,58,46,.18),0 4px 10px rgba(74,58,46,.10);
}
.service h3{
  font-size:17px;letter-spacing:.17em;text-transform:uppercase;
  color:#56514d;font-weight:600;margin:0 0 19px;
}
.service p{
  margin:0 auto;color:#706b66;font-size:15px;max-width:320px;line-height:1.8
}

/* Yelp/review section recreates the original photographic band and white review cards. */
.reviews{
  position:relative;
  background:
    linear-gradient(rgba(44,44,44,.30),rgba(44,44,44,.30)),
    url('/assets/reviews-background.jpg') center 50%/cover no-repeat;
  padding:60px 0 70px;
  color:#fff;
}
.reviews h2{
  text-align:center;
  font-size:38px;
  font-weight:400;
  letter-spacing:.09em;
  margin:0 0 28px;
}
.yelp-summary{
  display:flex;align-items:center;justify-content:center;gap:14px;
  margin-bottom:28px;font-size:18px
}
.rating{font-size:36px;font-weight:300}.stars{color:#f4c40e;letter-spacing:.03em}
.review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.review-card{
  background:#fff;color:#5e5a56;
  padding:28px 26px;min-height:300px;
  display:flex;flex-direction:column;justify-content:space-between;
}
.review-card .stars{font-size:20px;text-align:center}
.review-card p{font-size:14px;line-height:1.7}
.review-card small{font-size:11px;color:#777}
.review-card a{text-decoration:none;color:#65615d;border-top:1px solid #eee;padding-top:15px}

/* Other pages: keep understated and consistent with original theme. */
.page-hero{
  background:#fff;
  padding:72px 0 52px;text-align:center;border-bottom:1px solid #eee
}
.page-hero h1{
  font-weight:500;color:#4e4a47;letter-spacing:.08em;
  text-transform:uppercase;font-size:34px;margin:0 0 12px
}
.page-hero p{max-width:760px;margin:auto;color:#777}
.section{padding:70px 0;background:#fff}
.section.alt{background:var(--offwhite)}
.gallery-grid{columns:3 260px;column-gap:10px}
.gallery-grid a{display:block;margin:0 0 10px;break-inside:avoid}
.gallery-grid img{width:100%}
.contact-grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:46px}
.contact-box{background:#faf9f7;padding:30px}
.contact-list{list-style:none;padding:0}.contact-list li{margin:12px 0}
form{display:grid;gap:14px}
input,textarea{width:100%;border:1px solid #d4d0cc;padding:14px;font:inherit;background:white}
textarea{min-height:150px;resize:vertical}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:13px 22px;border:1px solid #827d77;background:transparent;
  color:#4d4945;text-decoration:none;text-transform:uppercase;
  font-size:11px;letter-spacing:.17em;font-weight:400
}
.btn:hover{background:#f1eee9}
.note{font-size:12px;color:#777}

.blog-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:30px}
.card{border:1px solid #e2ded9;background:#fff}
.card-body{padding:23px}
.post-card img{aspect-ratio:16/9;object-fit:cover}
.post-card .meta,.article .meta{font-size:12px;color:#777}
.post-card h2{font-size:22px;font-weight:500;color:#4c4946;margin:8px 0}
.post-card a{text-decoration:none}
.article{max-width:800px;margin:auto}
.article h1{font-weight:500;color:#4d4945;font-size:40px;line-height:1.25}
.article h2{font-weight:400;color:#4d4945;font-size:26px;margin-top:36px}
.article h3{font-weight:400;color:#4d4945;font-size:20px;margin-top:28px}
.article p{font-size:16px}
.article .hero-img{margin:28px 0;max-height:560px;width:100%;object-fit:cover}
.disclosure,.notice{background:#faf8f4;border:1px solid #ded8d0;padding:14px 16px;margin:20px 0;font-size:13px}
.affiliate-cta{margin:28px 0;padding:22px;border:1px solid #ddd7d0;background:#faf8f4}

/* Original-style footer. */
.footer{background:var(--charcoal);color:#cfcac4;padding:35px 0}
.footer-grid{display:none}
.legal{
  margin:0;border:0;padding:0;
  font-size:10px;letter-spacing:.18em;text-transform:uppercase;
  color:#c8c3bd;text-align:left;
}

@media(max-width:820px){
  nav ul{gap:20px}
  .hero-original{height:62vw;min-height:350px}
  .services-grid,.review-grid,.blog-grid,.contact-grid{grid-template-columns:1fr}
  .service img{width:290px;height:290px}
  .field-row{grid-template-columns:1fr}
  .gallery-grid{columns:2 150px}
}
@media(max-width:600px){
  .nav{height:50px}
  nav ul{gap:14px}
  nav a{font-size:9px;letter-spacing:.12em}
  .intro{padding:55px 0}
  .reviews h2{font-size:29px}
}


.hero-original{
  position:relative;
  display:flex;
  align-items:flex-end;
}
.hero-original::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top,rgba(36,33,30,.50) 0%,rgba(36,33,30,.18) 42%,rgba(36,33,30,0) 72%);
}
.hero-overlay{
  position:relative;
  z-index:1;
  width:min(var(--max),calc(100% - 42px));
  margin:0 auto;
  padding:0 0 46px;
  color:#fff;
  text-align:left;
}
.hero-overlay h1{
  margin:0 0 8px;
  font-size:clamp(31px,4vw,52px);
  line-height:1.12;
  font-weight:500;
  letter-spacing:.02em;
  text-shadow:0 2px 18px rgba(0,0,0,.28);
}
.hero-overlay p{
  margin:0;
  font-size:15px;
  letter-spacing:.10em;
  text-transform:uppercase;
  font-weight:500;
  color:#f4f0eb;
  text-shadow:0 2px 14px rgba(0,0,0,.28);
}
.intro p strong{
  font-weight:400;
  color:inherit;
}
.intro p a.yelp-link{
  font-weight:600;
  text-decoration:underline;
  text-underline-offset:2px;
  color:#4d4945;
}


@media(max-width:820px){
  .nav{position:relative;justify-content:center}
  nav ul{display:none}
  .menu-btn{
    display:block;
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    background:transparent;
    border:0;
    color:#f4f0eb;
    font-size:25px;
    line-height:1;
    padding:8px;
    cursor:pointer;
  }
  nav ul.open{
    display:flex;
    position:absolute;
    top:54px;
    right:14px;
    flex-direction:column;
    gap:0;
    min-width:190px;
    background:#333332;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 12px 30px rgba(0,0,0,.22);
    padding:8px 0;
    z-index:40;
  }
  nav ul.open li{width:100%}
  nav ul.open a{
    display:block;
    padding:12px 18px;
    font-size:12px;
    letter-spacing:.16em;
  }
}

.intro p a.yelp-link strong{
  font-weight:700;
  color:#403c39;
}

.outline-btn,
.btn{
  font-size:13px;
  font-weight:600;
  letter-spacing:.14em;
  padding:16px 30px;
  min-height:52px;
  box-shadow:0 2px 5px rgba(50,45,40,.08);
  transition:background .18s ease,border-color .18s ease,box-shadow .18s ease,transform .18s ease;
}
.outline-btn:hover,
.btn:hover{
  background:#eeeae4;
  border-color:#6f6963;
  box-shadow:0 5px 12px rgba(50,45,40,.12);
  transform:translateY(-1px);
}
button.btn{
  cursor:pointer;
}

.review-card{
  min-height:0;
  justify-content:flex-start;
  padding:30px 28px 24px;
}
.review-card > div{
  display:block;
}
.review-card p{
  margin:18px 0 24px;
  font-size:15px;
  line-height:1.75;
}
.review-card a{
  margin-top:auto;
  padding-top:16px;
}
.review-grid{
  align-items:stretch;
}

.blog-grid .post-card{
  box-shadow:0 10px 24px rgba(48,43,39,.11),0 2px 6px rgba(48,43,39,.07);
  transition:transform .18s ease,box-shadow .18s ease;
}
.blog-grid .post-card:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(48,43,39,.14),0 4px 8px rgba(48,43,39,.08);
}

.form-status{
  margin-top:12px;
  min-height:24px;
  font-size:14px;
  line-height:1.5;
  color:#6d6761;
}
.form-status.success{
  color:#315f3d;
  font-weight:500;
}
.form-status.error{
  color:#8b3f35;
  font-weight:500;
}
.form-status a{
  text-decoration:underline;
}
#quote-form button[disabled]{
  opacity:.7;
  cursor:wait;
}
