:root{
  --navy:#0f1e2b;
  --red:#b21f2d;
  --gold:#d8b45a;
  --ink:#111827;
  --muted:#6b7280;
  --bg:#f6f3ee;
  --card:#ffffff;
  --border:#e5e7eb;
  --shadow:0 12px 30px rgba(0,0,0,.12);
  --stickyH:150px;
  --sticky-bottom-h:92px;
}

/* =============================
   GLOBAL / BASE STYLES
============================= */

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:var(--bg);
}

html{
  scroll-padding-top:140px;
}

img{max-width:100%;height:auto;border-radius:12px}
a{text-decoration:none;color:inherit}
.container{width:min(1100px,92%);margin:0 auto}

/* Reserve space so content never sits under the fixed bottom bar on mobile */
body{
  padding-bottom:calc(var(--sticky-bottom-h) + env(safe-area-inset-bottom));
}

@media (min-width:769px){
  body{padding-bottom:0;}
}

section[id],
[id]{
  scroll-margin-top:140px;
}

/* =============================
   GLOBAL LAYOUT SPACING
============================= */

main{
  padding-top:var(--stickyH) !important;
  padding-bottom:80px;
}

/* =============================
   BUTTON SYSTEM
============================= */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:10px;
  font-weight:900;
  cursor:pointer;
  border:none;
}

.btn-red{
  background:var(--red);
  color:#fff;
}

.btn-gold{
  background:var(--gold);
  color:#111;
}

.btn-outline{
  background:transparent;
  border:2px solid #fff;
  color:#fff;
}

.btn-outline-dark{
  border:2px solid #222;
  color:#222;
  font-weight:700;
}

.btn-full{
  width:100%;
}

/* =============================
   GENERIC SECTIONS / LAYOUT
============================= */

.section{padding:50px 0}

.split{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
  align-items:center;
}

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

/* =============================
   FEATURE / CHECKLIST BLOCKS
============================= */

.checks{
  list-style:none;
  padding:0;
  margin-top:20px;
  display:grid;
  gap:16px;
}

.checks li{
  background:#fff;
  border-left:6px solid var(--red);
  padding:16px 18px;
  border-radius:12px;
  font-weight:700;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}

/* =============================
   STICKY HEADER SYSTEM
============================= */

.sticky-top{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:transparent !important;
  border-bottom:none !important;
  box-shadow:0 10px 26px rgba(0,0,0,.14);
}

.topbar-main{
  background:#ffffff;
  border-bottom:1px solid rgba(17,24,39,.08);
}

.topbar-main-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
}

.brand-inline{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:240px;
}

.brand-mark{
  width:40px;
  height:40px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-weight:1000;
  letter-spacing:.5px;
  color:#fff;
  background:linear-gradient(135deg,var(--red) 0%, #7f1220 100%);
  box-shadow:0 10px 18px rgba(178,31,45,.25);
  flex:0 0 auto;
}

.brand-text .brand-name{
  color:#0f1e2b;
  font-weight:900;
  line-height:1.1;
}

.brand-text .brand-sub{
  color:#6b7280;
  font-size:12px;
  font-weight:700;
  margin-top:2px;
}

.promo-pill{
  display:flex;
  align-items:baseline;
  gap:10px;
  padding:10px 16px;
  border-radius:14px;
  background:linear-gradient(135deg,#b21f2d 0%, #8f1823 100%);
  color:#fff;
  box-shadow:0 12px 26px rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.22);
  white-space:nowrap;
}

.promo-kicker{
  font-size:12px;
  font-weight:900;
  opacity:.92;
  letter-spacing:.35px;
}

.promo-amount{
  font-size:30px;
  font-weight:1000;
  line-height:1;
  letter-spacing:.2px;
}

.promo-line{
  font-size:12px;
  font-weight:800;
  opacity:.95;
}

.top-ctas{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
  min-width:280px;
}

.btn-phone{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  background:linear-gradient(135deg,#2563eb 0%, #1d4ed8 100%);
  color:#fff;
  font-weight:1000;
  box-shadow:0 12px 22px rgba(37,99,235,.25);
  border:1px solid rgba(255,255,255,.18);
}

.btn-phone-icon{
  width:28px;
  height:28px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.16);
  font-size:14px;
  line-height:1;
}

.btn-schedule{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  background:#0f1e2b;
  color:#fff;
  font-weight:1000;
  border:1px solid rgba(15,30,43,.25);
  box-shadow:0 12px 22px rgba(0,0,0,.18);
}

.btn-phone:hover,
.btn-schedule:hover{
  transform:translateY(-1px);
  filter:brightness(.98);
}

.topbar-sub{
  background:var(--red);
  letter-spacing:.2px;
}

.topbar-sub-inner{
  color:#fff;
  font-weight:800;
  text-align:center;
  padding:6px 0;
  font-size:14px;
  line-height:1.2;
}

.desktop-section-menu{
  background:#ffffff;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.desktop-section-menu-inner{
  display:flex;
  justify-content:center;
  gap:18px;
  padding:2px 0;
  font-size:13px;
  font-weight:600;
  line-height:1.2;
}

.desktop-section-menu a{
  color:#1f2937;
  opacity:.85;
  transition:.2s;
}

.desktop-section-menu a:hover{
  opacity:1;
  color:var(--red);
}

/* =============================
   MOBILE NAV MENU
============================= */

.mobile-menu-toggle{
  display:none;
  width:42px;
  height:42px;
  border:none;
  border-radius:10px;
  background:#0f1e2b;
  padding:0;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  box-shadow:0 8px 18px rgba(0,0,0,.18);
}

.mobile-menu-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:#fff;
  border-radius:999px;
}

.mobile-section-menu{
  display:none;
  position:fixed;
  top:118px;
  left:0;
  right:0;
  z-index:999;
  background:#ffffff;
  border-top:1px solid rgba(15,30,43,.08);
  border-bottom:1px solid rgba(15,30,43,.08);
  box-shadow:0 12px 24px rgba(0,0,0,.12);
  padding:14px 18px 14px;
}

.mobile-section-menu.is-open{
  display:block;
}

.mobile-section-menu a{
  display:block;
  padding:12px 0;
  font-size:15px;
  font-weight:700;
  color:#1f2937;
  text-align:right;
  border-bottom:1px solid rgba(15,30,43,.08);
}

.mobile-section-menu a:last-child{
  border-bottom:none;
}

/* =============================
   HERO SECTION
============================= */

.hero{
  position:relative;
  min-height:680px;
  display:flex;
  align-items:center;
  margin-top:calc(var(--stickyH) * -1);
  margin-bottom:32px;
  padding-top:var(--stickyH);
  padding-bottom:10px;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:url("assets/kitchen-hero.webp") center/cover no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(10,22,45,.68);
}

.hero-grid{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr;
  gap:30px;
  align-items:center;
}

.hero-copy{
  color:#fff;
  max-width:1200px;
  margin:0 auto;
  text-align:center;
}

.hero-h1{
  font-size:46px;
  font-weight:900;
  line-height:1.08;
  letter-spacing:-1px;
  margin:0 0 18px;
}

.hero-copy p{
  max-width:900px;
  margin-left:auto !important;
  margin-right:auto !important;
}

.hero-accent-wrap{
  display:inline-block;
  position:relative;
}

.hero-accent{
  color:#f4b223;
  position:relative;
  display:inline-block;
  padding-bottom:8px;
}

.hero-accent::after{
  content:"";
  position:absolute;
  left:6%;
  bottom:0;
  width:88%;
  height:8px;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 18' preserveAspectRatio='none'%3E%3Cpath d='M4 14 C 70 4, 140 4, 296 14' stroke='%23f4b223' stroke-width='6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center/100% 100%;
  transform:scaleX(0);
  transform-origin:left center;
  animation:heroUnderline .8s ease-out .2s forwards;
  pointer-events:none;
}

@keyframes heroUnderline{
  to{transform:scaleX(1);}
}

/* =============================
   TRUST PILLS
============================= */

.trust-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:20px 0;
  justify-content:center;
}

.trust-row span{
  background:rgba(255,255,255,.22);
  color:#fff;
  font-weight:800;
  font-size:14px;
  padding:9px 18px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.45);
}

.bullets{
  display:inline-block;
  text-align:left;
  margin:10px auto 0;
  padding-left:20px;
}

.hero .bullets li{
  font-weight:800;
  text-shadow:0 1px 3px rgba(0,0,0,.45);
}

.hero-cta-row{
  display:flex;
  justify-content:center;
  margin-top:28px;
}

.hero-call-note{
  text-align:center;
}

.hero-nowrap{
  white-space:normal;
}

@media (min-width:769px){
  .hero-nowrap{
    white-space:nowrap;
  }
}

/* =============================
   OFFER
============================= */

.offer{
  background:linear-gradient(135deg,#b21f2d 0%,#8f1823 100%);
  border-radius:16px;
  padding:18px 22px;
  margin:28px auto 26px;
  border:2px solid rgba(255,255,255,.3);
  position:relative;
  max-width:760px;
  text-align:left;
}

.offer::before{
  content:"LIMITED TIME";
  position:absolute;
  top:-12px;
  left:20px;
  background:var(--gold);
  color:#1b1b1b;
  font-size:11px;
  font-weight:900;
  padding:4px 10px;
  border-radius:999px;
}

.offer-title{
  font-size:24px;
  font-weight:900;
  color:#fff;
}

.offer-sub{
  font-size:14px;
  margin-top:6px;
  color:rgba(255,255,255,.95);
}

/* =============================
   FORM SECTION / FORM CARD
============================= */

.form-section{
  padding:0 0;
}

.card{
  background:#ffffff;
  border-radius:16px;
  box-shadow:0 15px 40px rgba(0,0,0,.25);
  padding:14px;
}

.card-head{
  margin-bottom:12px;
}

.card-title{
  font-size:20px;
  font-weight:900;
  text-align:center;
}

.card-sub{
  font-size:14.5px;
  color:var(--muted);
  margin-top:4px;
  text-align:center;
  font-weight:600;
  letter-spacing:.3px;
}

.form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.form input{
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid var(--border);
  font-size:15px;
}

.form input:focus{
  outline:none;
  border-color:var(--red);
  box-shadow:0 0 0 3px rgba(178,31,45,.15);
}

/* Anchor offset so form header isn't hidden under sticky header */
#estimate{
  max-width:520px;
  margin:40px auto;
  scroll-margin-top:240px;
}

/* =============================
   WHY CHOOSE SECTION
============================= */

.why-choose-section{
  background:#f3f3f3;
  padding:50px 0 70px;
}

.why-choose-title{
  text-align:center;
  font-size:46px;
  line-height:1.15;
  font-weight:400;
  max-width:900px;
  margin:0 auto 50px;
  color:#222;
}

.why-choose-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  max-width:1040px;
  margin:0 auto;
}

.why-choose-card{
  background:transparent;
  border:1.5px solid #8ea0bc;
  border-radius:24px;
  min-height:230px;
  padding:34px 28px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.why-choose-icon{
  width:74px;
  height:74px;
  object-fit:contain;
  margin-bottom:24px;
}

.why-choose-card p{
  margin:0;
  font-size:16px;
  line-height:1.55;
  color:#222;
}

/* =============================
   BATHROOM SERVICES SECTION
============================= */

.bathroom-services-section{
  background:#1b2940;
  padding:72px 0 64px;
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
}

.bathroom-services-header{
  text-align:center;
  max-width:920px;
  margin:0 auto 44px;
}

.bathroom-services-header h2{
  margin:0 0 18px;
  color:#ffffff;
  font-size:46px;
  line-height:1.15;
  font-weight:400;
}

.bathroom-services-header p{
  margin:0 auto;
  max-width:860px;
  color:rgba(255,255,255,.88);
  font-size:16px;
  line-height:1.7;
}

.bathroom-services-grid{
  max-width:1040px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(12, 1fr);
  gap:18px;
}

.bathroom-service-card{
  grid-column:span 3;
  min-height:185px;
  border:1.5px solid rgba(142,160,188,.55);
  border-radius:24px;
  padding:28px 22px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:transparent;
}

.bathroom-service-card-wide{
  grid-column:span 4;
  min-height:160px;
}

.bathroom-service-icon{
  width:62px;
  height:62px;
  object-fit:contain;
  margin-bottom:18px;
  filter:brightness(0) invert(1);
  opacity:.96;
  border-radius:0;
}

.bathroom-service-text{
  color:#ffffff;
  font-size:16px;
  line-height:1.5;
  font-weight:500;
  max-width:230px;
}

/* =============================
   REVIEWS CAROUSEL SECTION
============================= */

.reviews-carousel-section{
  background:#1b2940;
  padding:82px 0 72px;
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
  overflow:hidden;
}

.reviews-carousel-header{
  text-align:center;
  margin-bottom:42px;
}

.reviews-carousel-header h2{
  margin:0;
  color:#ffffff;
  font-size:46px;
  line-height:1.15;
  font-weight:400;
}

.reviews-carousel-shell{
  position:relative;
  max-width:1180px;
  margin:0 auto;
  padding:0 56px;
}

.reviews-carousel-viewport{
  overflow:hidden;
}

.reviews-carousel-track{
  display:flex;
  transition:transform .45s ease;
  will-change:transform;
}

.reviews-carousel-card{
  flex:0 0 25%;
  padding:0 18px;
  color:#ffffff;
}

.reviews-carousel-card p{
  margin:0 0 18px;
  font-size:16px;
  line-height:1.55;
  color:rgba(255,255,255,.95);
  min-height:150px;
}

.reviews-carousel-name{
  font-size:15px;
  line-height:1.4;
  font-weight:700;
  color:#ffffff;
}

.reviews-carousel-arrow{
  position:absolute;
  top:42%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border:none;
  background:transparent;
  color:#ffffff;
  font-size:40px;
  line-height:1;
  cursor:pointer;
  opacity:.92;
  z-index:2;
}

.reviews-carousel-arrow-prev{left:0;}
.reviews-carousel-arrow-next{right:0;}

.reviews-carousel-arrow:hover{opacity:1;}

.reviews-carousel-dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:34px;
  margin-bottom:26px;
}

.reviews-carousel-dot{
  width:7px;
  height:7px;
  border-radius:999px;
  background:rgba(0,0,0,.38);
  border:none;
  padding:0;
  cursor:pointer;
}

.reviews-carousel-dot.active{
  background:#000000;
}

.reviews-carousel-logos{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:26px;
}

.reviews-carousel-logo-google{
  height:54px;
  width:auto;
  object-fit:contain;
  border-radius:0;
}

.reviews-carousel-logo-yelp{
  height:44px;
  width:auto;
  object-fit:contain;
  border-radius:0;
}

.reviews-carousel-stars{
  display:flex;
  gap:6px;
  margin-bottom:16px;
}

.reviews-carousel-stars img{
  width:22px;
  height:22px;
  display:block;
}

/* =============================
   INLINE QUOTE FORM (UNDER REVIEWS)
============================= */

.reviews-inline-form{
  margin-top:38px;
  text-align:center;
}

.reviews-inline-title{
  font-size:34px;
  color:#fff;
  margin-bottom:26px;
  font-weight:400;
}

.reviews-inline-form-row{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.reviews-inline-form-row input{
  background:#e5e7eb;
  border:none;
  border-radius:999px;
  padding:14px 18px;
  font-size:15px;
  min-width:220px;
  outline:none;
}

.reviews-inline-form-row input:focus{
  box-shadow:0 0 0 3px rgba(255,255,255,.25);
}

.reviews-inline-btn{
  background:#f59e0b;
  color:#fff;
  border:none;
  border-radius:999px;
  padding:14px 26px;
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  white-space:nowrap;
}

.reviews-inline-btn:hover{
  filter:brightness(.95);
}

.reviews-inline-sub{
  margin-top:16px;
  font-size:14px;
  color:rgba(255,255,255,.85);
}

/* =============================
   WE HANDLE EVERYTHING SECTION
============================= */

.handle-everything-section{
  background:#f3f3f3;
  padding:70px 0 40px;
}

.handle-everything-header{
  text-align:center;
  max-width:980px;
  margin:0 auto 40px;
}

.handle-everything-header h2{
  margin:0 0 48px;
  font-size:46px;
  line-height:1.15;
  font-weight:400;
  color:#222;
}

.handle-everything-header p{
  margin:0;
  font-size:16px;
  line-height:1.7;
  color:#111;
}

.handle-everything-grid{
  max-width:1120px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.handle-everything-card{
  background:transparent;
  border:1.5px solid #8ea0bc;
  border-radius:24px;
  min-height:244px;
  padding:34px 28px 30px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.handle-everything-icon{
  width:88px;
  height:88px;
  object-fit:contain;
  margin-bottom:18px;
  border-radius:0;
}

.handle-everything-card h3{
  margin:0 0 16px;
  font-size:20px;
  line-height:1.3;
  font-weight:800;
  color:#1f2a44;
}

.handle-everything-card p{
  margin:0;
  font-size:16px;
  line-height:1.65;
  color:#111;
}

/* =============================
   BEFORE / AFTER SECTION
============================= */

.before-after-section{
  background:#fff;
  padding:50px 0 40px;
}

.before-after-header{
  text-align:center;
  margin-bottom:30px;
}

.before-after-header h2{
  font-size:38px;
  font-weight:500;
  color:#1f2a44;
  margin:0;
}

.before-after-header p{
  max-width:1100px;
  margin:18px auto 0;
  font-size:16px;
  line-height:1.65;
  color:#222;
  text-align:center;
}

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

.before-after-item{
  border-radius:14px;
  overflow:hidden;
}

.before-after-images{
  display:flex;
  gap:6px;
}

.before-img,
.after-img{
  position:relative;
  width:50%;
}

.before-img img,
.after-img img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.before-img span,
.after-img span{
  position:absolute;
  bottom:10px;
  left:10px;
  background:#000;
  color:#fff;
  font-size:12px;
  padding:4px 8px;
  border-radius:4px;
}

/* =============================
   SERVICE AREAS + CTA SECTION
============================= */

.service-areas-cta-section{
  background:#1b2940;
  padding:0;
  color:#fff;
}

.service-areas-top{
  padding:54px 0 30px;
  text-align:center;
}

.service-areas-top h2{
  margin:0 0 22px;
  font-size:46px;
  line-height:1.15;
  font-weight:400;
  color:#fff;
}

.service-areas-sub{
  max-width:980px;
  margin:0 auto 26px;
  font-size:16px;
  line-height:1.6;
  color:rgba(255,255,255,.92);
}

.service-areas-list{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:18px 30px;
  max-width:1100px;
  margin:0 auto;
}

.service-area-pill{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  font-size:16px;
  line-height:1.3;
}

.service-area-icon{
  width:44px;
  height:44px;
  border-radius:999px;
  background:#f4aa0a;
  color:#1b2940;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  font-weight:700;
  flex:0 0 44px;
}

.service-areas-mid{
  background:#111d2f;
  padding:34px 0 38px;
  text-align:center;
}

.service-areas-mid h3{
  margin:0 0 28px;
  font-size:28px;
  line-height:1.25;
  font-weight:400;
  color:#fff;
}

.service-areas-form{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  max-width:1100px;
  margin:0 auto;
}

.service-areas-form input{
  background:#f3f4f6;
  border:none;
  border-radius:999px;
  padding:14px 18px;
  min-width:220px;
  font-size:15px;
  outline:none;
}

.service-areas-form input:focus{
  box-shadow:0 0 0 3px rgba(255,255,255,.18);
}

.service-areas-btn{
  background:#f4aa0a;
  color:#fff;
  border:none;
  border-radius:999px;
  padding:14px 22px;
  font-size:14px;
  font-weight:800;
  cursor:pointer;
  white-space:nowrap;
}

.service-areas-btn:hover{
  filter:brightness(.96);
}

.service-areas-note{
  margin-top:14px;
  font-size:14px;
  color:rgba(255,255,255,.95);
}

.service-areas-bottom{
  padding:52px 0 58px;
  text-align:center;
}

.service-areas-close-strong{
  max-width:980px;
  margin:0 auto 22px;
  font-size:24px;
  line-height:1.45;
  font-weight:700;
  color:#fff;
}

.service-areas-close{
  max-width:1120px;
  margin:0 auto 18px;
  font-size:16px;
  line-height:1.7;
  color:rgba(255,255,255,.92);
}

.service-areas-close-last{
  margin:0;
  font-size:16px;
  line-height:1.6;
  color:#fff;
}

/* =============================
   URGENCY BOX / CTA
============================= */

.dhr-urgency-box{
  background:linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(248,250,252,0.96) 100%);
  border:1px solid rgba(15, 23, 42, .10);
  border-radius:18px;
  padding:26px 26px 22px;
  box-shadow:0 18px 46px rgba(2, 6, 23, .10);
  position:relative;
  overflow:hidden;
  max-width:560px;
  margin:0 auto;
}

.dhr-urgency-box:before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:6px;
  background:linear-gradient(180deg, var(--gold) 0%, rgba(214,174,93,.35) 100%);
}

.dhr-urgency-box .why-cta-title{
  font-size:22px;
  font-weight:900;
  letter-spacing:.2px;
  margin-bottom:8px;
}

.dhr-urgency-box .why-cta-sub{
  color:rgba(15, 23, 42, .72);
  font-size:15px;
  line-height:1.5;
  margin-bottom:18px;
}

.dhr-urgency-box .btn-full{
  margin-bottom:10px;
}

.dhr-urgency-box .btn-full:last-child{
  margin-bottom:0;
}

.dhr-urgency-box .dhr-accent{
  color:var(--gold);
  font-weight:900;
}

/* =============================
   TRUST STRIP / REVIEWS CARD LEGACY
============================= */

.trust-strip{
  background:#fff;
  color:#0b1a2a;
  padding:14px 0;
  border-top:1px solid rgba(15, 23, 42, .10);
  border-bottom:1px solid rgba(15, 23, 42, .10);
}

.trust-strip-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:22px;
  flex-wrap:wrap;
}

.trust-item{
  flex:1 1 220px;
  display:flex;
  justify-content:center;
}

.trust-brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.trust-meta{
  display:flex;
  flex-direction:column;
  gap:4px;
}

.trust-stars{
  letter-spacing:2px;
  font-size:16px;
  line-height:1;
  color:var(--gold);
}

.trust-stars .star.dim{
  color:rgba(216,180,90,.35);
}

.trust-stars .star.half{
  color:rgba(216,180,90,.75);
}

.trust-rating{
  font-weight:900;
  font-size:13px;
  letter-spacing:.6px;
  color:#0b1a2a;
}

.hero-trust-spacer{
  height:56px;
  background:var(--bg);
}

.trust-logo-img{
  width:44px;
  height:44px;
  display:block;
  flex:0 0 44px;
}

.reviews-wrap .reviews.reviews-cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
  margin-top:18px;
  margin-bottom:22px;
}

.reviews-wrap .review.review-card{
  background:var(--card);
  border:1px solid rgba(15, 23, 42, .10);
  border-radius:12px !important;
  padding:22px 22px 18px;
  box-shadow:0 6px 18px rgba(0, 0, 0, 0.08) !important;
  position:relative;
  min-height:220px;
  display:flex;
  flex-direction:column;
}

.reviews-wrap .review-quote{
  position:absolute;
  top:14px;
  left:16px;
  font-size:42px;
  font-weight:900;
  color:rgba(178, 31, 45, .92);
  line-height:1;
}

.reviews-wrap .review.review-card p{
  margin:34px 0 18px;
  color:var(--ink);
  font-size:15px;
  line-height:1.55;
}

.reviews-wrap .review-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  border-top:1px solid rgba(15, 23, 42, .08);
  padding-top:14px;
  margin-top:auto;
}

.reviews-wrap .review-person{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.reviews-wrap .review-avatar{
  width:34px;
  height:34px;
  border-radius:999px;
  border:1px solid rgba(15, 23, 42, .10);
  background:#fff;
  object-fit:contain;
  padding:4px;
  flex:0 0 34px;
  display:block;
}

.reviews-wrap .review-name{
  font-weight:900;
  color:var(--ink);
  line-height:1.1;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.reviews-wrap .review-loc{
  font-size:12px;
  color:rgba(17, 24, 39, .65);
  margin-top:2px;
}

.reviews-wrap .review-stars{
  color:#f4b400 !important;
  font-size:22px !important;
  letter-spacing:2px !important;
  white-space:nowrap;
}

.reviews-wrap .reviews-cta{
  text-align:left;
  margin-top:10px;
}

/* =============================
   MISC SECTION HELPERS
============================= */

.gallery-sub{
  margin-top:4px;
  margin-bottom:16px;
  font-size:14px;
  color:#777;
  font-weight:400;
  text-align:left;
}

.value-micro{
  margin-top:16px;
  margin-bottom:20px;
  font-size:15px;
  color:#222;
  font-weight:600;
  line-height:1.5;
  border-left:4px solid #d4af37;
  padding-left:12px;
}

.process-steps{
  margin-top:20px;
}

.process-step{
  margin-bottom:18px;
}

.process-step strong{
  display:block;
  font-size:16px;
  margin-bottom:4px;
}

.process-section{
  padding-top:10px;
  padding-bottom:10px;
}

.reviews-tight{
  padding-top:30px;
}

.why{
  margin-top:100px;
}

.hero .btn + .btn{
  margin-left:16px;
}

.hero .btn-primary{
  margin-top:18px;
}

.mini-cta{
  margin-top:36px;
}

.section-alt .btn-gold{
  margin-top:36px;
  display:inline-block;
}

/* =============================
   FOOTER / LEGAL / THANK YOU
============================= */

.trust-footer{
  background:#f7f7f7;
  border-top:1px solid rgba(0,0,0,.08);
  border-bottom:1px solid rgba(0,0,0,.08);
  padding:18px 0;
  margin-bottom:0;
}

.trust-footer-inner{
  display:grid;
  grid-template-columns:1.4fr 1fr .7fr 1fr;
  gap:18px;
  align-items:center;
}

.tf-title{
  font-size:13px;
  font-weight:700;
  color:#111;
  margin-bottom:4px;
}

.tf-text{
  font-size:13px;
  color:#444;
  line-height:1.35;
}

.tf-col-cta{text-align:right;}

.tf-call{
  display:inline-block;
  padding:10px 14px;
  border:2px solid #111;
  border-radius:10px;
  color:#111;
  font-weight:700;
  text-decoration:none;
  white-space:nowrap;
}

.tf-call:hover{opacity:.9;}

.low-key-text{
  font-size:12px;
  color:#777;
  opacity:.9;
  line-height:1.6;
  max-width:700px;
  margin:20px auto;
  padding:0 15px;
  text-align:center;
}

.thankyou-main{
  padding-top:140px;
  padding-bottom:40px;
}

.thankyou-card{
  padding:24px;
}

.thankyou-title{
  margin:0 0 8px;
}

.thankyou-sub{
  margin:0 0 16px;
  color:var(--muted);
}

.thankyou-next-title{
  font-weight:800;
  margin:10px 0 8px;
}

.thankyou-cta{
  margin-top:14px;
}

.thankyou-rating{
  margin-top:20px;
  font-weight:700;
  font-size:16px;
  text-align:center;
  color:#c8a64d;
}

.thankyou-rating span{
  color:#111;
  margin-left:6px;
}

/* =============================
   STICKY BOTTOM
============================= */

.sticky-bottom{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:9999;
  background:rgba(15,30,43,.95);
  padding:12px 0;
  padding-bottom:env(safe-area-inset-bottom);
}

.bottombar{
  display:flex;
  justify-content:center;
  gap:12px;
}

/* =============================
   RESPONSIVE
============================= */

@media (max-width:1200px){
  .hero-h1{
    font-size:56px;
  }
}

@media (max-width:1100px){
  .reviews-carousel-card{
    flex:0 0 50%;
  }

  .reviews-carousel-card p{
    min-height:unset;
  }
}

@media (max-width:980px){
  .why-choose-grid{
    grid-template-columns:1fr 1fr;
  }

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

  .bathroom-service-card,
  .bathroom-service-card-wide{
    grid-column:auto;
    min-height:170px;
  }

  .handle-everything-grid{
    grid-template-columns:1fr;
    max-width:720px;
  }

  .before-after-grid{
    grid-template-columns:1fr;
  }

  .before-img img,
  .after-img img{
    height:220px;
  }

  .reviews-wrap .reviews.reviews-cards{
    grid-template-columns:1fr;
    gap:16px;
  }

  .reviews-wrap .review.review-card{
    min-height:auto;
  }
}

@media (max-width:940px){
  :root{
    --stickyH:158px;
  }

  .hero-grid{grid-template-columns:1fr;}
  .split{grid-template-columns:1fr;}
  .gallery{grid-template-columns:1fr;}

  .topbar-main-inner{
    flex-wrap:wrap;
    justify-content:center;
  }

  .brand-inline{
    min-width:auto;
    justify-content:center;
    width:100%;
  }

  .promo-pill{
    width:100%;
    justify-content:center;
  }

  .top-ctas{
    width:100%;
    justify-content:center;
  }

  .topbar-sub-inner{
    font-size:13px;
    padding:9px 0;
  }
}

@media (max-width:900px){
  .trust-footer-inner{
    grid-template-columns:1fr 1fr;
  }

  .tf-col-cta{
    text-align:left;
  }
}

@media (max-width:768px){
  .hero-bg{
    background-image:url("assets/kitchen-hero-mobile.webp");
  }

  .desktop-section-menu{
    display:none;
  }

  .promo-pill{
    display:none !important;
  }

  .btn-schedule{
    display:none !important;
  }

  .topbar-sub{
    display:block !important;
  }

  .topbar-main-inner{
    display:flex !important;
    flex-direction:row !important;
    flex-wrap:nowrap !important;
    justify-content:space-between !important;
    align-items:center !important;
    gap:12px;
  }

  .brand-inline{
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    flex:0 0 auto !important;
    width:auto !important;
  }

  .brand-text{
    display:none !important;
  }

  .top-ctas{
    min-width:auto !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap:8px !important;
    flex-wrap:nowrap !important;
    width:auto !important;
  }

  .mobile-menu-toggle{
    display:inline-flex !important;
    flex:0 0 auto !important;
  }

  .btn-phone{
    display:flex !important;
    align-items:center !important;
    white-space:nowrap;
    padding:8px 12px !important;
    font-size:13px !important;
    flex:0 0 auto !important;
    width:auto !important;
    margin-left:auto !important;
  }

  .mobile-section-menu{
    top:115px;
  }

  .hero-h1{
    font-size:30px;
    line-height:1.18;
    letter-spacing:-0.5px;
    margin-bottom:32px !important;
  }

  .offer{
    max-width:100%;
    margin-top:8px !important;
  }

  .hero-copy{
    margin-top:8px;
  }

  .why-choose-section{
    padding:35px 0 45px;
  }

  .why-choose-title{
    font-size:32px;
    margin-bottom:30px;
  }

  .why-choose-grid{
    grid-template-columns:1fr;
    gap:18px;
  }

  .why-choose-card{
    min-height:auto;
    padding:28px 20px;
  }

  .why-choose-icon{
    width:60px;
    height:60px;
    margin-bottom:18px;
  }

  .bathroom-services-section{
    padding:46px 0 42px;
  }

  .bathroom-services-header{
    margin-bottom:28px;
  }

  .bathroom-services-header h2{
    font-size:32px;
    margin-bottom:14px;
  }

  .bathroom-services-header p{
    font-size:15px;
    line-height:1.65;
  }

  .bathroom-services-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .bathroom-service-card,
  .bathroom-service-card-wide{
    min-height:auto;
    padding:24px 18px;
  }

  .bathroom-service-icon{
    width:54px;
    height:54px;
    margin-bottom:16px;
  }

  .bathroom-service-text{
    font-size:15px;
  }

  .reviews-carousel-section{
    padding:48px 0 42px;
  }

  .reviews-carousel-header{
    margin-bottom:26px;
  }

  .reviews-carousel-header h2{
    font-size:32px;
  }

  .reviews-carousel-shell{
    padding:0 34px;
  }

  .reviews-carousel-card{
    flex:0 0 100%;
    padding:0 10px;
  }

  .reviews-carousel-card p{
    font-size:15px;
    margin-bottom:14px;
  }

  .reviews-carousel-name{
    font-size:14px;
  }

  .reviews-carousel-arrow{
    width:30px;
    height:30px;
    font-size:28px;
    top:44%;
  }

  .reviews-carousel-logo-google{
    height:42px;
  }

  .reviews-carousel-logo-yelp{
    height:34px;
  }

  .reviews-inline-title{
    font-size:24px;
    margin-bottom:20px;
  }

  .reviews-inline-form-row{
    flex-direction:column;
    align-items:center;
  }

  .reviews-inline-form-row input,
  .reviews-inline-btn{
    width:100%;
    max-width:340px;
  }

  .handle-everything-section{
    padding:42px 0 26px;
  }

  .handle-everything-header{
    margin-bottom:28px;
  }

  .handle-everything-header h2{
    font-size:32px;
    margin-bottom:22px;
  }

  .handle-everything-header p{
    font-size:15px;
    line-height:1.6;
  }

  .handle-everything-card{
    min-height:auto;
    padding:28px 20px 24px;
  }

  .handle-everything-icon{
    width:72px;
    height:72px;
    margin-bottom:16px;
  }

  .handle-everything-card h3{
    font-size:18px;
    margin-bottom:12px;
  }

  .handle-everything-card p{
    font-size:15px;
  }

  .service-areas-top{
    padding:40px 0 24px;
  }

  .service-areas-top h2{
    font-size:32px;
    margin-bottom:18px;
  }

  .service-areas-sub{
    font-size:15px;
    margin-bottom:22px;
  }

  .service-areas-list{
    display:flex;
    flex-direction:column;
    gap:12px;
    max-width:260px;
    margin:0 auto;
  }

  .service-area-pill{
    width:100%;
    display:flex;
    align-items:center;
    gap:12px;
    font-size:15px;
  }

  .service-area-icon{
    width:40px;
    height:40px;
    flex:0 0 40px;
    font-size:20px;
  }

  .service-areas-mid{
    padding:28px 0 30px;
  }

  .service-areas-mid h3{
    font-size:22px;
    margin-bottom:20px;
  }

  .service-areas-form{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
  }

  .service-areas-form input,
  .service-areas-btn{
    width:100%;
    max-width:340px;
  }

  .service-areas-bottom{
    padding:38px 0 42px;
  }

  .service-areas-close-strong{
    font-size:18px;
    line-height:1.5;
  }

  .service-areas-close,
  .service-areas-close-last{
    font-size:15px;
    line-height:1.65;
  }

  .dhr-urgency-box{
    padding:22px 20px 18px;
    border-radius:16px;
  }

  .why{
    margin-top:50px;
  }

  .thankyou-main{
    padding-top:160px;
  }

  .thankyou-cta a{
    display:block;
    width:100%;
  }

  .thankyou-cta a + a{
    margin-left:0 !important;
    margin-top:10px;
  }
}

@media (max-width:640px){
  .trust-strip-inner{
    justify-content:center;
  }

  .trust-item{
    flex:1 1 100%;
  }

  .hero-trust-spacer{
    height:36px;
  }
}

@media (max-width:560px){
  .trust-footer-inner{
    grid-template-columns:1fr;
  }

  .tf-call{
    width:100%;
    text-align:center;
  }
}

/* =============================
   SHORT SCREEN HEIGHT FIXES
============================= */

@media (min-width:769px) and (max-height:800px){
  .hero .card{
    padding:6px !important;
  }

  .hero .card-head{
    padding:0 !important;
    margin-bottom:8px !important;
  }

  .hero .card-title{
    font-size:15px !important;
    line-height:1.15 !important;
    margin-bottom:2px !important;
  }

  .hero .card-sub{
    font-size:11px !important;
    padding:3px 6px !important;
    margin-top:3px !important;
  }

  .hero .form{
    gap:5px !important;
    padding:0 !important;
  }

  .hero .label{
    margin:6px 0 4px !important;
  }

  .hero .form input{
    padding:6px 8px !important;
    font-size:12.5px !important;
    border-radius:10px !important;
  }

  .hero .btn{
    padding:6px 8px !important;
    font-size:13px !important;
    border-radius:10px !important;
  }

  .hero .fineprint{
    margin-top:4px !important;
    font-size:10.5px !important;
  }

  .hero .card-call{
    margin-top:6px !important;
    padding-top:6px !important;
    font-size:11px !important;
  }

  .hero{
    padding-bottom:0 !important;
  }
}

/* =============================
   TIMED POPUP
============================= */

.dhr-popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(3, 10, 22, .78);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  z-index:12000;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .28s ease, visibility .28s ease;
}

.dhr-popup-overlay.is-visible{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.dhr-popup{
  position:relative;
  width:min(820px, 94vw);
  max-height:90vh;
  display:grid;
  grid-template-columns:44% 56%;
  background:#ffffff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 26px 70px rgba(0,0,0,.32);
  transform:translateY(14px) scale(.98);
  transition:transform .28s ease;
  align-items:stretch;
}

.dhr-popup-overlay.is-visible .dhr-popup{
  transform:translateY(0) scale(1);
}

.dhr-popup-close{
  position:absolute;
  top:14px;
  right:16px;
  width:42px;
  height:42px;
  border:none;
  background:transparent;
  color:#111827;
  font-size:36px;
  line-height:1;
  cursor:pointer;
  z-index:2;
}

.dhr-popup-media{
  min-height:420px;
  background:#dfe5ec;
}

.dhr-popup-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:0;
}

.dhr-popup-content{
  padding:26px 24px 20px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  background:#ffffff;
  overflow-y:auto;
  max-height:90vh;
  min-height:0;
  scrollbar-width:thin;
  scrollbar-color:rgba(15,30,43,.35) transparent;
}

.dhr-popup-content::-webkit-scrollbar{
  width:10px;
}

.dhr-popup-content::-webkit-scrollbar-track{
  background:transparent;
}

.dhr-popup-content::-webkit-scrollbar-thumb{
  background:rgba(15,30,43,.28);
  border-radius:999px;
  border:2px solid transparent;
  background-clip:padding-box;
}

.dhr-popup-kicker{
  font-size:11px;
  font-weight:900;
  letter-spacing:.3px;
  text-transform:uppercase;
  color:var(--red);
  margin-bottom:8px;
}

.dhr-popup-title{
  margin:0 0 10px;
  font-size:32px;
  line-height:1.02;
  font-weight:900;
  color:#172033;
}

.dhr-popup-title span{
  color:#f0a61a;
}

.dhr-popup-title strong{
  color:var(--red);
  font-weight:900;
}

.dhr-popup-text{
  margin:0 0 14px;
  font-size:14px;
  line-height:1.45;
  color:#4b5563;
  max-width:420px;
}

.dhr-popup-form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.dhr-popup-form input{
  width:100%;
  height:46px;
  border:1.5px solid #d1d5db;
  border-radius:999px;
  padding:0 16px;
  font-size:14px;
  outline:none;
  background:#fff;
}

.dhr-popup-form input:focus{
  border-color:var(--red);
  box-shadow:0 0 0 3px rgba(178,31,45,.12);
}

.dhr-popup-submit{
  height:48px;
  border:none;
  border-radius:999px;
  background:#15233a;
  color:#fff;
  font-size:13px;
  font-weight:900;
  cursor:pointer;
  margin-top:4px;
}

.dhr-popup-submit:hover{
  filter:brightness(.97);
}

.dhr-popup-note{
  margin-top:14px;
  font-size:13px;
  color:#6b7280;
  text-align:center;
  font-weight:600;
}

body.dhr-popup-open{
  overflow:hidden;
}

@media (max-width: 900px){
  .dhr-popup{
    grid-template-columns:1fr;
    width:min(420px, 92vw);
    max-height:88vh;
  }

  .dhr-popup-media{
    display:none;
  }

  .dhr-popup-content{
    padding:18px 16px 16px;
  }

  .dhr-popup-title{
    font-size:24px;
    line-height:1.08;
    margin:0 0 8px;
  }

  .dhr-popup-text{
    font-size:13px;
    line-height:1.4;
    max-width:none;
    margin:0 0 10px;
  }

  .dhr-popup-form{
    gap:8px;
  }

  .dhr-popup-form input{
    height:42px;
    font-size:13px;
  }

  .dhr-popup-submit{
    height:46px;
    font-size:12px;
  }

  .dhr-popup-call{
    height:46px;
    font-size:13px;
  }

  .dhr-popup-note{
    margin-top:10px;
    font-size:11px;
  }
}

@media (max-width: 560px){
  .dhr-popup-overlay{
    padding:12px;
  }

  .dhr-popup{
    border-radius:16px;
    width:92vw;
  }

  .dhr-popup-title{
    font-size:22px;
  }

  .dhr-popup-close{
    top:8px;
    right:8px;
    width:34px;
    height:34px;
    font-size:28px;
  }
}

.dhr-popup-call{
  display:flex;
  align-items:center;
  justify-content:center;
  height:50px;
  border-radius:999px;
  background:var(--red);
  color:#fff;
  font-weight:900;
  font-size:14px;
  text-decoration:none;
  margin-top:10px;
  transition:.2s;
}

.dhr-popup-call:hover{
  filter:brightness(.95);
  transform:translateY(-1px);
}
