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

:root {
  --navy:   #091B3F;
  --navy2:  #0d2454;
  --gold:   #B68737;
  --gold2:  #9A7230;
  --white:  #ffffff;
  --light:  #F7F8FA;
  --text:   #1a2640;
  --muted:  #64748b;
  --border: #e2e8f0;
  --green:  #16a34a;
  --r:      10px;
  --wrap-max: 1520px;
}

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* Accessibility: visible keyboard focus */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 1000;
  background: var(--navy); color: #fff; font-weight: 700; font-size: .85rem;
  padding: 10px 18px; border-radius: 8px;
}
.skip-link:focus { left: 8px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .badges-track { animation: none; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff;
  font-weight: 700; font-size: .9rem;
  padding: 12px 24px; border-radius: var(--r);
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  font-weight: 700; font-size: .9rem;
  padding: 12px 24px; border-radius: var(--r);
  border: 2px solid rgba(255,255,255,.45);
  transition: background .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-google {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); color: var(--navy);
  font-weight: 700; font-size: .9rem;
  padding: 12px 24px; border-radius: var(--r);
  border: 1.5px solid var(--border);
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.btn-google i { color: #4285F4; font-size: 1rem; }
.btn-google:hover { border-color: #4285F4; box-shadow: 0 6px 18px rgba(66,133,244,.15); transform: translateY(-1px); }

/* Layout */
.wrap { max-width: var(--wrap-max); margin: 0 auto; padding: 0 32px; }

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.logo img { height: 42px; filter: brightness(0) invert(1); }
.nav { display: flex; gap: 24px; flex: 1; justify-content: center; }
.nav a { font-size: .85rem; font-weight: 600; color: rgba(255,255,255,.75); transition: color .2s; }
.nav a:hover { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; margin-left: auto; }
.hdr-phone { font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 6px; }
.hdr-phone:hover { color: var(--gold); }
.burger { display: none; background: none; border: none; color: #fff; font-size: 1.3rem; cursor: pointer; margin-left: auto; padding: 4px; }
.mobile-nav { display: none; flex-direction: column; gap: 2px; padding: 12px 24px 20px; border-top: 1px solid rgba(255,255,255,.08); }
.mobile-nav a { padding: 10px 0; font-size: .95rem; font-weight: 600; color: rgba(255,255,255,.75); border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-nav a:last-child { border: none; }
.mobile-nav.open { display: flex; }

/* ── HERO ── */
.hero { position: relative; background: var(--navy); padding: 52px 0 44px; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(9,27,63,.90) 0%, rgba(9,27,63,.72) 48%, rgba(9,27,63,.42) 100%),
    url('hero-bath.jpg') center/cover no-repeat;
}
.hero-left h1, .hero-left p { text-shadow: 0 2px 14px rgba(0,0,0,.45); }
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 468px; gap: 40px; align-items: center;
}
.hero-left { padding-top: 0; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.8);
  font-size: .75rem; font-weight: 600; letter-spacing: .04em;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 20px;
}
.hero-tag i { color: var(--gold); }
.hero-left h1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 800; color: #fff; line-height: 1.05;
  letter-spacing: -1.5px; margin-bottom: 22px;
}
.hero-left h1 span { color: var(--gold); }
.hero-left p { font-size: 1.12rem; color: rgba(255,255,255,.82); max-width: 540px; line-height: 1.65; margin-bottom: 24px; }
.hero-left strong { color: #fff; }
.hero-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 22px; }
.hero-list li { display: flex; align-items: center; gap: 12px; font-size: 1.02rem; font-weight: 500; color: rgba(255,255,255,.9); }
.hero-list li i { color: var(--gold); font-size: .9rem; width: 16px; }
.hero-pills { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.12); }
.hero-pills span { display: flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.65); }
.hero-pills i { color: var(--gold); }

/* Form tagline */
.form-tagline {
  font-size: .95rem;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  margin-bottom: 12px;
  text-align: center;
}
.form-tagline strong {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 800;
}

/* Form card */
.hero-right { scroll-margin-top: 84px; }
.form-card { background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.45); }
.form-card-head { background: var(--navy2); padding: 13px 20px; text-align: center; border-bottom: 1px solid rgba(255,255,255,.08); }
.form-card-head h3 { font-size: 1rem; font-weight: 800; color: #fff; margin-bottom: 2px; }
.form-card-head p { font-size: .72rem; color: rgba(255,255,255,.6); }
.form-card-foot { padding: 10px 20px; background: var(--light); text-align: center; font-size: .7rem; color: var(--muted); border-top: 1px solid var(--border); }
.form-card-foot i { color: var(--green); margin-right: 4px; }

/* ── BADGES BAR (static trust strip) ── */
.badges-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.badges-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 44px;
}
.badge-img { height: 60px; width: auto; object-fit: contain; transition: transform .2s; }
.badge-round { height: 70px; }
.badge-img:hover { transform: translateY(-3px); }

@media (max-width: 768px) {
  .badges-row { gap: 26px; }
  .badge-img { height: 42px; }
  .badge-round { height: 48px; }
}

/* ── SECTIONS ── */
.section { padding: 56px 0; }
.bg-light { background: var(--light); }
.sec-head { text-align: center; margin-bottom: 34px; }
.tag {
  display: inline-block;
  background: rgba(182,135,55,.1); color: var(--gold);
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px; margin-bottom: 12px;
}
.sec-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--navy); letter-spacing: -.4px; line-height: 1.2; margin-bottom: 10px; }
.sec-head p { font-size: .95rem; color: var(--muted); max-width: 500px; margin: 0 auto; }
.sec-cta { text-align: center; margin-top: 36px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.sec-cta p { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.sec-cta p i { color: var(--green); }
.sec-cta .btn-primary i { color: #fff; }

/* ── PHOTO SERVICE CARDS (real imagery, editorial) ── */
.svc-photo-grid { display: grid; gap: 18px; }
.svc-photo-grid.two { grid-template-columns: 1fr 1fr; margin-bottom: 18px; }
.svc-photo-grid.three { grid-template-columns: repeat(3, 1fr); }
.svc-photo { position: relative; border-radius: var(--r); overflow: hidden; display: block; }
.svc-photo.tall { aspect-ratio: 16/11; }
.svc-photo.short { aspect-ratio: 4/3; }
.svc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.svc-photo:hover img { transform: scale(1.06); }
.svc-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,27,63,.88) 0%, rgba(9,27,63,.35) 45%, rgba(9,27,63,0) 75%); }
.svc-photo-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 24px; z-index: 2; }
.svc-photo-cap h3 { color: #fff; font-size: 1.3rem; font-weight: 800; letter-spacing: -.3px; margin-bottom: 4px; }
.svc-photo-grid.three .svc-photo-cap h3 { font-size: 1.12rem; }
.svc-photo-cap p { color: rgba(255,255,255,.82); font-size: .86rem; line-height: 1.5; margin-bottom: 10px; max-width: 380px; }
.svc-photo-grid.three .svc-photo-cap p { display: none; }
.svc-photo-link { display: inline-flex; align-items: center; gap: 7px; color: var(--gold); font-size: .82rem; font-weight: 700; }
.svc-photo:hover .svc-photo-link { gap: 11px; }
@media (max-width: 800px) { .svc-photo-grid.two, .svc-photo-grid.three { grid-template-columns: 1fr; } }

/* Plain photo inside feature-media */
.feature-media img.plain { border-radius: var(--r); box-shadow: 0 16px 40px rgba(9,27,63,.16); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

/* Left-aligned editorial section head */
.sec-head.left { text-align: left; margin: 0 0 30px; max-width: none; }
.sec-head.left h2, .sec-head.left p { margin-left: 0; margin-right: 0; }
.sec-head.left p { max-width: 560px; }
.sec-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 30px; }
.sec-head-row .sec-head { margin-bottom: 0; }
.sec-head-row .btn-primary { flex-shrink: 0; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.svc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: transform .2s, box-shadow .2s; position: relative; }
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.svc-img { height: 180px; background-size: cover; background-position: center; }
.svc-badge { position: absolute; top: 10px; right: 10px; background: var(--gold); color: #fff; font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; z-index: 1; }
.svc-featured { border-color: var(--gold); border-width: 2px; }
.svc-info { padding: 20px; }
.svc-info i { font-size: 1.2rem; color: var(--gold); margin-bottom: 8px; }
.svc-info h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.svc-info p { font-size: .84rem; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
/* ── EDITORIAL FEATURE ROWS ── */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.feature-row + .feature-row { margin-top: 52px; }
.feature-row.reverse .feature-media { order: 2; }
.feature-media .ba-wrap { box-shadow: 0 14px 36px rgba(9,27,63,.12); }
.feature-media .ba-hint { text-align: center; font-size: .72rem; font-weight: 600; color: var(--muted); margin-top: 10px; }
.feature-eyebrow { display: inline-block; color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.feature-text h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); font-weight: 800; color: var(--navy); line-height: 1.18; letter-spacing: -.4px; margin-bottom: 12px; }
.feature-text > p { font-size: .95rem; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.feature-text .svc-feats { margin-bottom: 16px; }
.feature-text .svc-feats li { font-size: .9rem; }
.feature-meta { display: block; width: fit-content; background: rgba(182,135,55,.1); color: var(--gold2); font-size: .78rem; font-weight: 700; padding: 7px 14px; border-radius: 100px; margin-bottom: 22px; }
.feature-foot { text-align: center; margin-top: 44px; font-size: .95rem; color: var(--muted); }
.feature-foot a { color: var(--gold); font-weight: 700; }
.feature-foot a:hover { text-decoration: underline; }
@media (max-width: 768px) {
  .feature-row { grid-template-columns: 1fr; gap: 18px; }
  .feature-row.reverse .feature-media { order: 0; }
  .feature-row + .feature-row { margin-top: 36px; }
}

/* Before/after slider inside service cards */
.svc-card .ba-wrap { border: none; border-radius: 0; aspect-ratio: 4/3; }
.svc-tag { display: inline-block; align-self: flex-start; background: rgba(182,135,55,.12); color: var(--gold); font-size: .64rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; margin-bottom: 10px; }
.ba-hint { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: .7rem; font-weight: 600; color: var(--muted); margin: -2px 0 12px; }
.ba-hint i { color: var(--gold); }
.svc-feats { list-style: none; display: flex; flex-direction: column; gap: 6px; margin: 0 0 14px; }
.svc-feats li { display: flex; align-items: flex-start; gap: 8px; font-size: .82rem; color: var(--text); }
.svc-feats i { color: var(--gold); font-size: .7rem; margin-top: 5px; flex-shrink: 0; }
.svc-info a { font-size: .84rem; font-weight: 700; color: var(--gold); transition: letter-spacing .15s; }
.svc-info a:hover { letter-spacing: .02em; }
.svc-cta { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 36px 28px; background: var(--navy); border-color: var(--navy); }
.svc-cta i { font-size: 2rem; color: var(--gold); margin-bottom: 14px; }
.svc-cta h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.svc-cta p { font-size: .84rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ── BEFORE / AFTER ── */
.ba-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.ba-item {
  margin: 0; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; transition: transform .2s, box-shadow .2s;
}
.ba-item:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.ba-item img { width: 100%; height: auto; display: block; }
.ba-item figcaption {
  text-align: center; font-size: .8rem; font-weight: 700; color: var(--navy);
  padding: 12px 14px; letter-spacing: .03em;
}
.ba-wrap { position: relative; aspect-ratio: 4/3; border-radius: var(--r); overflow: hidden; user-select: none; border: 1px solid var(--border); }
.ba-back { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-front { position: absolute; inset: 0; overflow: hidden; }
.ba-front img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-pill { position: absolute; top: 10px; border-radius: 100px; font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 4px 10px; z-index: 5; pointer-events: none; }
.ba-before-pill { left: 10px; background: rgba(0,0,0,.55); color: #fff; }
.ba-after-pill { right: 10px; background: var(--gold); color: #fff; }
.ba-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; background: #fff; transform: translateX(-50%); pointer-events: none; box-shadow: 0 2px 8px rgba(0,0,0,.2); }
.ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 38px; height: 38px; background: #fff; border-radius: 50%; border: 2px solid var(--navy); display: flex; align-items: center; justify-content: center; pointer-events: none; z-index: 10; font-weight: 700; color: var(--navy); font-size: .9rem; box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 20; -webkit-appearance: none; }
.ba-caption { text-align: center; font-size: .75rem; font-weight: 600; color: var(--muted); margin-top: 8px; text-transform: uppercase; letter-spacing: .04em; }

/* ── PROCESS ── */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.process-step { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 16px 14px; text-align: center; position: relative; }
.step-n { font-size: 1.6rem; font-weight: 900; color: rgba(182,135,55,.15); line-height: 1; margin-bottom: 6px; letter-spacing: -1px; }
.step-icon { font-size: 1.1rem; color: var(--gold); margin-bottom: 6px; }
.process-step h4 { font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.process-step p { font-size: .78rem; color: var(--muted); line-height: 1.55; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; grid-auto-rows: 1fr; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; border-top: 3px solid var(--gold); display: flex; flex-direction: column; }
.review-stars { color: #f59e0b; font-size: .9rem; margin-bottom: 10px; letter-spacing: 1px; }
.review-card p { font-size: .85rem; color: var(--text); line-height: 1.72; margin-bottom: 8px; font-style: italic; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; line-clamp: 4; overflow: hidden; }
.review-card.open p { -webkit-line-clamp: unset; line-clamp: unset; overflow: visible; }
.review-see-more { align-self: flex-start; margin-bottom: 14px; padding: 0; background: none; border: none; color: var(--gold); font-family: inherit; font-size: .8rem; font-weight: 700; cursor: pointer; }
.review-see-more:hover { text-decoration: underline; }
.review-author { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.review-av { width: 36px; height: 36px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 700; font-size: .78rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-author strong { display: block; font-size: .84rem; color: var(--text); }
.review-author small { font-size: .72rem; color: var(--muted); }
.verified { color: var(--green); font-weight: 600; }

/* ── FAQ ── */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 16px 20px; background: none; border: none; font-family: inherit; font-size: .93rem; font-weight: 700; color: var(--navy); cursor: pointer; text-align: left; }
.faq-q i { color: var(--gold); font-size: .75rem; flex-shrink: 0; transition: transform .25s; }
.faq-a { max-height: 0; overflow: hidden; padding: 0 20px; font-size: .88rem; color: var(--muted); line-height: 1.7; transition: max-height .3s, padding .3s; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-item.open .faq-a { max-height: 900px; padding: 0 20px 16px; }

/* ── FINANCING (bold promo banner) ── */
.finance-section {
  background: #ffffff;
  padding: 60px 0; position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.finance-section::before {
  content: "%"; position: absolute; right: -30px; top: -60px;
  font-size: 22rem; font-weight: 900; line-height: 1;
  color: rgba(182,135,55,.10); pointer-events: none; z-index: 0;
}
.finance-promo { max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.finance-eyebrow {
  display: inline-block; background: var(--gold); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 18px;
}
.finance-headline { font-size: clamp(2rem, 5.5vw, 3.3rem); font-weight: 900; color: var(--navy); line-height: 1.05; letter-spacing: -1.5px; margin-bottom: 2px; }
.finance-zero { color: var(--gold); }
.finance-months { font-size: clamp(1.15rem, 2.6vw, 1.6rem); font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.finance-months strong { color: var(--gold); }
.finance-promo-sub { font-size: .98rem; color: #55606f; line-height: 1.65; max-width: 560px; margin: 0 auto 26px; }
.finance-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.finance-cta-row .btn-primary { font-size: 1rem; padding: 14px 30px; }
.finance-cta-row .btn-outline { font-size: 1rem; padding: 14px 30px; }
.finance-logo-chip { display: inline-flex; background: #fff; border-radius: 12px; padding: 12px 22px; box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.finance-logo-chip img { height: 50px; width: auto; display: block; }
.finance-promo-disc { font-size: .66rem; color: rgba(9,27,63,.42); line-height: 1.55; max-width: 600px; margin: 22px auto 0; }
.finance-section .btn-outline { color: var(--navy); border-color: rgba(9,27,63,.32); }
.finance-section .btn-outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
@media (max-width: 768px) {
  .finance-section { padding: 44px 0; }
  .finance-section::before { font-size: 6.5rem; right: 8px; top: -6px; opacity: .5; }
  .finance-cta-row .btn-primary, .finance-cta-row .btn-outline { width: 100%; justify-content: center; }
}

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 340px; gap: 36px; align-items: start; }
.contact-form { background: var(--white); border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.cinfo-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 22px; }
.cinfo-card h4 { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.cinfo-row { display: flex; gap: 12px; margin-bottom: 14px; }
.cinfo-row:last-child { margin-bottom: 0; }
.cinfo-row > i { color: var(--gold); font-size: .9rem; flex-shrink: 0; margin-top: 3px; }
.cinfo-row div { display: flex; flex-direction: column; gap: 2px; }
.cinfo-row strong { font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }
.cinfo-row a, .cinfo-row span { font-size: .88rem; color: var(--text); transition: color .2s; }
.cinfo-row a:hover { color: var(--gold); }
/* Social cards */
.social-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.social-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); padding: 20px 22px;
  transition: box-shadow .2s, transform .2s;
}
.social-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.1); transform: translateY(-2px); }
.social-card-icon {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.3rem;
}
.social-card-text { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.social-card-text strong { font-size: .95rem; font-weight: 700; color: var(--navy); }
.social-card-text span { font-size: .8rem; color: var(--muted); }
.social-card-arrow { color: var(--border); font-size: .85rem; flex-shrink: 0; transition: color .2s; }
.social-card:hover .social-card-arrow { color: var(--gold); }
.google-stars { color: #f59e0b; font-size: .82rem; }
.google-stars em { font-style: normal; color: var(--muted); }
/* Social logos row (logos only, no links) */
.social-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.social-logo {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--c, var(--navy));
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.social-logo:hover { transform: translateY(-3px); box-shadow: 0 8px 22px rgba(0,0,0,.12); border-color: var(--c, var(--gold)); }
.section-sm { padding: 40px 0; }
@media (max-width: 600px) { .social-cards { grid-template-columns: 1fr; } }

.call-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--navy); border-radius: var(--r);
  padding: 20px 24px; transition: background .2s;
}
.call-card:hover { background: var(--navy2); }
.call-card i { font-size: 1.4rem; color: var(--gold); flex-shrink: 0; }
.call-card div { display: flex; flex-direction: column; gap: 2px; }
.call-card strong { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); font-weight: 700; }
.call-card span { font-size: 1.2rem; font-weight: 800; color: #fff; }

.social-row { display: flex; flex-wrap: wrap; gap: 8px; }
.social-row a { display: flex; align-items: center; gap: 6px; padding: 7px 12px; border: 1px solid var(--border); border-radius: 8px; font-size: .8rem; font-weight: 600; color: var(--text); transition: all .2s; }
.social-row a:hover { border-color: var(--gold); color: var(--gold); }
.guarantee { display: flex; align-items: center; gap: 12px; background: rgba(22,163,74,.06); border: 1px solid rgba(22,163,74,.2); border-radius: var(--r); padding: 14px 16px; }
.guarantee i { color: var(--green); font-size: 1.4rem; flex-shrink: 0; }
.guarantee div { display: flex; flex-direction: column; gap: 3px; }
.guarantee strong { font-size: .84rem; color: var(--navy); }
.guarantee span { font-size: .78rem; color: var(--muted); line-height: 1.5; }

/* ── FOOTER AREAS (SEO) ── */
.footer-areas { padding-bottom: 16px; margin-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.08); text-align: center; }
.footer-areas strong { display: block; font-size: .74rem; font-weight: 700; color: rgba(255,255,255,.55); letter-spacing: .04em; margin-bottom: 6px; }
.footer-areas span { font-size: .68rem; color: rgba(255,255,255,.32); line-height: 1.7; }

/* ── CTA BANNER ── */
.cta-banner { background: var(--navy); padding: 44px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 800; color: #fff; margin-bottom: 6px; letter-spacing: -.3px; }
.cta-banner p { color: rgba(255,255,255,.65); font-size: .93rem; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 12px 0; }
.footer-inner { display: none; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom span { font-size: .72rem; color: rgba(255,255,255,.35); }
.footer-bottom a { font-size: .72rem; color: rgba(255,255,255,.4); text-decoration: underline; }

/* Multi-column footer */
.footer-cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 30px; padding: 22px 0 14px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 10px; }
.footer-col h4 { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 9px; }
.footer-col a, .footer-col span { display: block; font-size: .84rem; color: rgba(255,255,255,.6); margin-bottom: 5px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-col a i, .footer-col span i { color: var(--gold); width: 16px; margin-right: 4px; }
.footer-brand p { font-size: .84rem; color: rgba(255,255,255,.55); line-height: 1.5; margin: 8px 0 10px; max-width: 300px; }
.footer-logo { height: 40px; filter: brightness(0) invert(1); }
.footer-addr { line-height: 1.6; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08); color: rgba(255,255,255,.75); margin: 0; }
.footer-social a:hover { background: var(--gold); color: #fff; }
.footer-social a i { color: inherit; width: auto; margin: 0; }
@media (max-width: 860px) { .footer-cols { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 500px) { .footer-cols { grid-template-columns: 1fr 1fr; gap: 18px 16px; padding: 18px 0 10px; } .footer-col a, .footer-col span { font-size: .8rem; margin-bottom: 4px; } .footer-brand { grid-column: 1 / -1; } }

/* ── STICKY MOBILE CTA ── */
.sticky { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--navy); border-top: 2px solid var(--gold); padding: 10px 16px; gap: 10px; align-items: center; }
.sticky-est { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; padding: 11px; border-radius: 8px; font-weight: 700; font-size: .85rem; background: var(--gold); color: #fff; }
.sticky-call { flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px; padding: 11px; border-radius: 8px; font-weight: 700; font-size: .85rem; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); color: #fff; }

/* Mobile-only elements (hidden on desktop) */
.hero-mobile-btn { display: none; }
.hero-form-cta { display: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 40px 0; }
  .sec-head { margin-bottom: 26px; }
  .nav { display: none; }
  .header-actions { display: none; }
  .logo { flex-shrink: 0; }
  .burger { display: inline-flex; align-items: center; }
  .sticky { display: flex; }
  body { padding-bottom: 62px; }
  .ba-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .review-card { padding: 14px; border-top-width: 2px; }
  .review-card p { font-size: .74rem; line-height: 1.55; margin-bottom: 10px; }
  .review-stars { font-size: .78rem; margin-bottom: 7px; }
  .review-av { width: 28px; height: 28px; font-size: .66rem; }
  .review-author { gap: 7px; }
  .review-author strong { font-size: .72rem; }
  .review-author small { font-size: .62rem; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }

  /* Mobile hero: cleaner, no clutter */
  .hero { padding: 18px 0 24px; }
  .hero-inner { gap: 20px; }
  .hero-left { padding-top: 0; }
  .hero-left h1 { font-size: clamp(2.5rem, 9.5vw, 3.4rem); margin-bottom: 14px; }
  .hero-left p { font-size: 1rem; margin-bottom: 16px; }
  .hero-list { display: none; }
  .hero-pills { display: none; }
  .hero-tag { margin-bottom: 14px; }

  /* Call button (mobile) — sits under the hero intro, above the form */
  .hero-mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-align: center;
    padding: 15px;
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px;
    margin-top: 20px;
    transition: background .2s;
  }
  .hero-mobile-btn:hover { background: var(--gold2); }

  /* Get a Free Estimate below form */
  .hero-form-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    background: var(--gold);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 10px;
    margin-bottom: 12px;
    transition: background .2s;
  }
  .hero-form-cta:hover { background: var(--gold2); }

  /* Form card on mobile — tighter */
  .form-card-head { padding: 14px 20px; }
  .form-card-head h3 { font-size: 1rem; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-sep { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: left; align-items: flex-start; }
  .ba-grid { grid-template-columns: 1fr; }
}

/* ── MULTI-STEP FORM ── */
.ms-form { padding: 14px 18px 16px; }

/* Progress bar */
.ms-bar-wrap { height: 3px; background: var(--border); border-radius: 3px; margin-bottom: 8px; }
.ms-bar { height: 3px; background: var(--gold); border-radius: 3px; transition: width .4s ease; }
.ms-step-label { font-size: .68rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }

/* Panels */
.ms-panel { display: none; }
.ms-panel.active { display: block; }
.ms-q { font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; display: flex; flex-direction: column; gap: 2px; }
.ms-hint { font-size: .68rem; font-weight: 500; color: var(--muted); text-transform: none; letter-spacing: 0; }
.ms-opt.selected { border-color: var(--navy); background: var(--navy); color: #fff; }
.ms-opt.selected::after { content: ' ✓'; font-size: .8rem; opacity: .8; }

/* Options grid */
.ms-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; margin-bottom: 10px; }
.ms-opt {
  padding: 8px 10px; text-align: left;
  border: 1.5px solid var(--border); border-radius: 8px;
  background: var(--white); cursor: pointer;
  font-family: inherit; font-size: .82rem; font-weight: 600; color: var(--text);
  transition: all .18s;
}
.ms-opt:hover { border-color: var(--gold); color: var(--gold); }
.ms-opt.selected { border-color: var(--navy); background: var(--navy); color: #fff; }

/* Fields */
.ms-fields { display: flex; flex-direction: column; gap: 9px; margin-bottom: 14px; }
.ms-row { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.ms-fields input {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: .88rem; color: var(--text);
  outline: none; background: var(--white); transition: border-color .2s;
}
.ms-fields input:focus { border-color: var(--navy); }
.ms-fields input::placeholder { color: #aab; }
.ms-fields select {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: .88rem; color: var(--text);
  outline: none; background: var(--white); transition: border-color .2s; cursor: pointer;
}
.ms-fields select:focus { border-color: var(--navy); }
.ms-fields select:invalid { color: #aab; }
/* Honeypot — hidden from humans, visible to bots */
.ms-hp { position: absolute !important; left: -9999px !important; top: 0; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

/* Button row */
.ms-btn-row { display: flex; gap: 8px; margin-top: 4px; }
.ms-next-btn, .ms-submit-btn {
  flex: 1; padding: 10px; border-radius: 8px; border: none;
  background: var(--gold); color: #fff;
  font-family: inherit; font-size: .9rem; font-weight: 700;
  cursor: pointer; transition: background .2s, transform .15s;
}
.ms-next-btn:hover:not(:disabled),
.ms-submit-btn:hover:not(:disabled) { background: var(--gold2); transform: translateY(-1px); }
.ms-next-btn:disabled { opacity: .4; cursor: not-allowed; transform: none; }
.ms-back-btn {
  padding: 12px 16px; border-radius: 8px;
  border: 1.5px solid var(--border); background: var(--white);
  font-family: inherit; font-size: .85rem; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: border-color .2s, color .2s; white-space: nowrap;
}
.ms-back-btn:hover { border-color: var(--navy); color: var(--navy); }

/* Error & privacy */
.ms-error { font-size: .75rem; color: #dc2626; margin-bottom: 8px; display: none; }
.ms-privacy { text-align: center; font-size: .6rem; color: var(--muted); margin-top: 9px; line-height: 1.45; }
.ms-privacy a { color: var(--gold); font-weight: 600; text-decoration: underline; }

/* Thank you */
.ms-thanks { text-align: center; padding: 12px 0 8px; }
.ms-check {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.ms-thanks h3 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.ms-thanks p { font-size: .84rem; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.ms-call-btn {
  display: inline-block; padding: 11px 28px;
  background: var(--navy); color: #fff;
  font-weight: 700; font-size: .9rem; border-radius: 8px;
  transition: background .2s;
}
.ms-call-btn:hover { background: var(--navy2); }

/* Contact section wrapper */
.contact-form .ms-form-container { background: var(--white); border-radius: var(--r); border: 1px solid var(--border); }

@media (max-width: 480px) {
  .ms-row { grid-template-columns: 1fr; }
}

/* ── Multi-step form (quiz style) ── */
.ms-progress { height: 5px; background: var(--border); border-radius: 100px; overflow: hidden; margin-bottom: 16px; }
.ms-progress-bar { display: block; height: 100%; width: 25%; background: var(--gold); border-radius: 100px; transition: width .3s ease; }
.ms-step { display: none; }
.ms-step.active { display: block; animation: msFade .25s ease; }
@keyframes msFade { from { opacity: 0; transform: translateX(8px); } to { opacity: 1; transform: none; } }
.ms-step-title { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; text-align: center; line-height: 1.35; }
.ms-step-hint { font-size: .74rem; color: var(--muted); text-align: center; margin: -6px 0 14px; line-height: 1.4; }
.ms-step-hint + .ms-error { margin-top: 2px; }
.ms-step input[type=text], .ms-step input[type=tel], .ms-step input[type=email], .ms-other-input {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: inherit; font-size: .92rem; color: var(--text);
  outline: none; background: var(--white); transition: border-color .2s;
}
.ms-step input:focus, .ms-other-input:focus { border-color: var(--navy); }
.ms-step input::placeholder, .ms-other-input::placeholder { color: #aab; }
.ms-step .ms-row { margin-bottom: 10px; }
.ms-step input[type=tel] { margin-bottom: 10px; }
.ms-other-input { margin-top: 10px; }
.ms-step .ms-submit-btn, .ms-step .ms-next { width: 100%; padding: 13px; font-size: .95rem; margin-top: 4px; }
.ms-options { display: flex; flex-direction: column; gap: 9px; }
.ms-option {
  width: 100%; text-align: left; padding: 14px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  background: var(--white); color: var(--navy);
  font-family: inherit; font-size: .92rem; font-weight: 600;
  cursor: pointer; transition: border-color .15s, background .15s, transform .1s;
}
.ms-option:hover { border-color: var(--gold); transform: translateY(-1px); }
.ms-option.selected { border-color: var(--gold); background: rgba(182,135,55,.08); }
.ms-back {
  display: block; margin: 12px auto 0; padding: 6px;
  background: none; border: none; color: var(--muted);
  font-family: inherit; font-size: .82rem; font-weight: 600; cursor: pointer;
}
.ms-back:hover { color: var(--navy); }
/* "Working on your estimate" loading screen */
.ms-loading-step { text-align: center; padding: 22px 0 10px; }
.ms-spinner { width: 46px; height: 46px; margin: 6px auto 18px; border: 4px solid var(--border); border-top-color: var(--gold); border-radius: 50%; animation: msSpin .8s linear infinite; }
@keyframes msSpin { to { transform: rotate(360deg); } }
.ms-loading-text { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.ms-loading-sub { font-size: .82rem; color: var(--muted); }

/* ══════════ RESTORED / SHARED COMPONENTS (full-service site) ══════════ */
.nav a.active { color: var(--gold); }

/* Page hero (interior pages) */
.page-hero { position: relative; background: var(--navy); padding: 58px 0; text-align: center; overflow: hidden; }
.page-hero .hero-bg { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,27,63,.82) 0%, rgba(9,27,63,.9) 100%), url('hero-bath.jpg') center/cover no-repeat; }
.page-hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; color: #fff; letter-spacing: -.6px; line-height: 1.14; margin-bottom: 14px; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,.8); max-width: 600px; margin: 0 auto 22px; line-height: 1.65; }
.page-hero .btn-primary { font-size: .95rem; padding: 13px 28px; }
.crumbs { font-size: .78rem; color: rgba(255,255,255,.55); margin-bottom: 16px; }
.crumbs a { color: rgba(255,255,255,.75); }
.crumbs a:hover { color: var(--gold); }

/* Stats band */
.stats-band { background: var(--navy2); border-top: 1px solid rgba(255,255,255,.08); padding: 34px 0; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-num { font-size: clamp(1.8rem, 3.4vw, 2.4rem); font-weight: 900; color: var(--gold); line-height: 1; letter-spacing: -1px; }
.stat-label { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.7); margin-top: 8px; }
@media (max-width: 600px) { .stats-row { grid-template-columns: repeat(2, 1fr); gap: 26px; } }

/* Value / why-us grid */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 26px 22px; transition: transform .2s, box-shadow .2s, border-color .2s; }
.value-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.08); border-color: rgba(182,135,55,.4); }
.value-ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(182,135,55,.12); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 14px; }
.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.value-card p { font-size: .86rem; color: var(--muted); line-height: 1.65; }
.svc-cat-link { display: inline-flex; align-items: center; gap: 7px; font-size: .84rem; font-weight: 700; color: var(--gold); margin-top: 12px; }
.value-card:hover .svc-cat-link { gap: 11px; }
@media (max-width: 900px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .value-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; } .value-card { padding: 13px 6px; text-align: center; } .value-card p { display: none; } .value-card h3 { font-size: .72rem; line-height: 1.2; margin: 0; } .value-ico { margin: 0 auto 7px; } }

/* Area / city chips */
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 1120px; margin: 0 auto; }
.area-chip { display: flex; align-items: center; gap: 8px; background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; font-size: .86rem; font-weight: 600; color: var(--text); transition: border-color .2s, color .2s; }
.area-chip:hover { border-color: var(--gold); color: var(--gold); }
.area-chip i { color: var(--gold); font-size: .8rem; }
@media (max-width: 700px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }

/* Prose */
.prose { max-width: 720px; margin: 0 auto; }
.prose p { font-size: .98rem; color: var(--text); line-height: 1.8; margin-bottom: 18px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--navy); }

/* ── UNIFORM BEFORE/AFTER SLIDER GRID (gallery) ── */
.ba-slider-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ba-slider-grid .ba-tile { display: flex; flex-direction: column; }
.ba-slider-grid .ba-wrap { aspect-ratio: 4/3; width: 100%; box-shadow: 0 10px 26px rgba(9,27,63,.10); }
.ba-cap { text-align: center; font-size: .82rem; font-weight: 700; color: var(--navy); margin-top: 12px; letter-spacing: .01em; }
.ba-cap i { color: var(--gold); margin-right: 6px; font-size: .72rem; }
@media (max-width: 900px) { .ba-slider-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ba-slider-grid { grid-template-columns: 1fr; } }

/* Uniform static gallery tiles (service pages) */
.ba-item img { aspect-ratio: 4/3; object-fit: cover; height: auto; }

/* ══════════ REFINEMENTS: smaller headings + project albums ══════════ */
/* Toned-down headings — less template/AI, more like a real site */
.page-hero h1 { font-size: clamp(1.5rem, 2.7vw, 2rem); font-weight: 700; letter-spacing: -.4px; }
.sec-head h2, .sec-head.left h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 700; }
.hero-left h1 { font-size: clamp(3rem, 6vw, 5.2rem); font-weight: 800; line-height: 1.05; letter-spacing: -1.5px; }
.feature-text h3 { font-size: clamp(1.15rem, 1.9vw, 1.4rem); font-weight: 700; }
.svc-photo-cap h3 { font-size: 1.1rem; }
.svc-photo-grid.three .svc-photo-cap h3 { font-size: 1rem; }
.cta-banner h2 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
.finance-headline { font-size: clamp(1.7rem, 4vw, 2.4rem); }
.finance-months { font-size: clamp(1.05rem, 2.2vw, 1.4rem); }
.page-hero p, .sec-head p { font-size: .93rem; }
.value-card h3 { font-size: .98rem; }

/* Project albums grid */
.albums-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.album-card { position: relative; border: none; padding: 0; cursor: pointer; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; background: var(--navy); font-family: inherit; text-align: left; display: block; }
.album-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.album-card:hover img { transform: scale(1.05); }
.album-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(9,27,63,.9) 0%, rgba(9,27,63,.15) 55%, rgba(9,27,63,0) 82%); }
.album-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px 18px; z-index: 2; }
.album-cap h3 { color: #fff; font-size: 1.08rem; font-weight: 700; margin-bottom: 3px; }
.album-cap span { color: rgba(255,255,255,.82); font-size: .77rem; display: inline-flex; align-items: center; gap: 6px; }
.album-cap span i { color: var(--gold); }
.album-badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(9,27,63,.72); color: #fff; font-size: .66rem; font-weight: 700; padding: 5px 11px; border-radius: 100px; display: inline-flex; align-items: center; gap: 6px; }
.album-badge i { color: var(--gold); }
@media (max-width: 860px) { .albums-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .albums-grid { grid-template-columns: 1fr; } }

/* Lightbox modal */
.album-modal { position: fixed; inset: 0; z-index: 2000; background: rgba(9,27,63,.78); display: flex; align-items: flex-start; justify-content: center; padding: 40px 16px; overflow-y: auto; }
.album-modal[hidden] { display: none; }
.album-modal-inner { background: #fff; border-radius: 14px; max-width: 920px; width: 100%; padding: 30px 32px 34px; position: relative; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.album-close { position: absolute; top: 14px; right: 16px; width: 38px; height: 38px; border-radius: 50%; border: none; background: var(--light); color: var(--navy); font-size: 1.4rem; cursor: pointer; line-height: 1; transition: background .2s; }
.album-close:hover { background: var(--border); }
.album-modal-inner h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; padding-right: 40px; }
.album-blurb { font-size: .92rem; color: var(--muted); line-height: 1.65; margin-bottom: 22px; max-width: 660px; }
.ba-side { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.ba-side figure { margin: 0; position: relative; border-radius: var(--r); overflow: hidden; }
.ba-side img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.ba-side figcaption { position: absolute; top: 10px; left: 10px; font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 4px 11px; border-radius: 100px; }
.ba-side .before figcaption { background: rgba(0,0,0,.6); color: #fff; }
.ba-side .after figcaption { background: var(--gold); color: #fff; }
.album-photos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 6px; }
.album-photos img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--r); }
.album-modal-cta { margin-top: 24px; text-align: center; }
@media (max-width: 560px) { .ba-side { grid-template-columns: 1fr; } .album-photos { grid-template-columns: 1fr 1fr; } .album-modal-inner { padding: 24px 18px 28px; } }

/* ══════════ MODERN TYPE REFRESH — editorial serif headings ══════════ */
:root { --font-head: 'Fraunces', Georgia, 'Times New Roman', serif; }
.hero-left h1, .page-hero h1, .sec-head h2, .sec-head.left h2, .feature-text h3,
.cta-banner h2, .finance-headline, .svc-photo-cap h3, .album-cap h3,
.album-modal-inner h3, .value-card h3, .stat-num {
  font-family: var(--font-head); font-optical-sizing: auto;
}
.hero-left h1, .page-hero h1 { font-weight: 600; letter-spacing: -.015em; line-height: 1.1; }
.sec-head h2, .sec-head.left h2, .cta-banner h2 { font-weight: 600; letter-spacing: -.01em; }
.feature-text h3, .svc-photo-cap h3, .album-cap h3, .album-modal-inner h3, .value-card h3 { font-weight: 600; letter-spacing: -.005em; }
.finance-headline { font-weight: 600; letter-spacing: -.01em; }
.stat-num { font-weight: 600; }
/* reviews read as clean quotes, not italic template blurbs */
.review-card p { font-style: normal; }

/* Cleaner iconography — drop the "tinted rounded square" template look */
.value-ico, .svc-cat-ico { background: none; width: auto; height: auto; font-size: 1.55rem; color: var(--gold); margin-bottom: 12px; justify-content: flex-start; }

/* A touch more breathing room */
.section { padding: 62px 0; }

/* ── SEO checklist grid (service pages) ── */
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 40px; max-width: 1200px; margin: 0 auto; }
.check-item { display: flex; gap: 12px; }
.check-item > i { color: var(--gold); margin-top: 5px; flex-shrink: 0; font-size: .8rem; }
.check-item strong { color: var(--navy); font-weight: 700; display: block; font-size: .94rem; margin-bottom: 1px; }
.check-item span { color: var(--muted); font-size: .87rem; line-height: 1.5; }
.check-intro { text-align: center; max-width: 620px; margin: -14px auto 28px; color: var(--muted); font-size: .95rem; }
@media (max-width: 700px) { .check-grid { grid-template-columns: 1fr; } }

/* Schedule page: what-to-expect */
.expect-list { display: flex; flex-direction: column; gap: 18px; }
.expect-item { display: flex; gap: 14px; }
.expect-num { width: 34px; height: 34px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 700; font-size: .9rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.expect-item strong { display: block; color: var(--navy); font-size: .98rem; margin-bottom: 2px; }
.expect-item p { color: var(--muted); font-size: .9rem; line-height: 1.55; margin: 0; }

/* Comfortable nav spacing (roomier header) */
.header-inner { gap: 24px; }
.nav { gap: 24px; }
.nav a { font-size: .85rem; white-space: nowrap; }
.header-actions { gap: 14px; }

/* ── SERVICES DROPDOWN ── */
.nav { align-items: stretch; }
.nav > a, .nav-item { display: flex; align-items: center; height: 68px; }
.nav-item { position: relative; }
.has-drop > a { cursor: pointer; }
.has-drop > a::after { content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: .5rem; margin-left: 6px; opacity: .65; transition: transform .2s; }
.nav-item:hover .has-drop > a::after, .has-drop:hover > a::after { transform: rotate(180deg); }
.drop { position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px); min-width: 220px; background: #fff; border: 1px solid var(--border); border-radius: 12px; box-shadow: 0 18px 46px rgba(9,27,63,.20); padding: 8px; opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .16s, transform .16s; z-index: 300; }
.nav-item:hover .drop { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.drop a { display: block; padding: 10px 14px; border-radius: 8px; font-size: .85rem; font-weight: 600; color: var(--text); white-space: nowrap; }
.drop a:hover { background: var(--light); color: var(--gold); }
/* mobile sub-links under Services */
.mobile-sub { padding-left: 18px !important; font-size: .88rem !important; color: rgba(255,255,255,.6) !important; }
.mobile-sub::before { content: "– "; color: var(--gold); }

/* Cleaner look: hide section sub-headline lines under H2s */
.sec-head p { display: none; }
.sec-head { margin-bottom: 28px; }

/* HighLevel calendar embed */
.cal-embed { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; min-height: 760px; box-shadow: 0 18px 46px rgba(9,27,63,.10); padding: 6px; }
.cal-embed iframe { display: block; width: 100%; border-radius: 12px; min-height: 620px; }

/* Shorter calendar */
.cal-embed { min-height: 0; }
@media (max-width: 600px) { .cal-embed iframe { min-height: 500px; } }

/* Break up the all-navy bottom stack (finance / CTA / footer):
   make the closing CTA a light warm band so it separates navy sections. */
.cta-banner {
  position: relative;
  background: #f3eee6;
  border-top: 3px solid var(--gold);
}
.cta-banner .cta-inner { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--navy); }
.cta-banner p { color: #5c6472; }
.cta-banner .btn-outline { color: var(--navy); border-color: rgba(9,27,63,.35); }
.cta-banner .btn-outline:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.footer { border-top: 1px solid rgba(255,255,255,.08); }

/* Synchrony financing banner (photo + wordmark strip, not clickable) */
.finance-banner { display: block; background: #fff; padding: 0; border-radius: 14px; overflow: hidden; box-shadow: 0 14px 34px rgba(0,0,0,.28); }
.finance-banner img { display: block; width: 100%; height: auto; }
.finance-banner-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 11px 16px; }
.synchrony-mark { font-weight: 700; font-size: 1.05rem; letter-spacing: -.4px; color: #2a2a33; display: inline-flex; align-items: center; gap: 5px; }
.syn-dot { width: 9px; height: 9px; background: #FDB913; border-radius: 2px; transform: rotate(45deg); display: inline-block; }
.fin-apply { font-size: .8rem; font-weight: 700; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap; transition: gap .2s ease; }
.fin-apply:hover { gap: 10px; }

/* Financing: banner beside the promo (single row) */
.finance-row { display: grid; grid-template-columns: 1fr 560px; gap: 48px; align-items: center; max-width: 1080px; margin: 0 auto; position: relative; z-index: 1; }
.finance-section .finance-promo { max-width: none; margin: 0; text-align: left; }
.finance-section .finance-headline, .finance-section .finance-months { text-align: left; }
.finance-section .finance-promo-sub { max-width: 480px; margin: 0 0 22px; }
.finance-section .finance-cta-row { justify-content: flex-start; margin-bottom: 18px; }
.finance-section .finance-promo-disc { max-width: 500px; margin: 0; text-align: left; }
.finance-banner { width: 560px; max-width: 100%; margin: 0; }
@media (max-width: 860px) {
  .finance-row { grid-template-columns: 1fr; gap: 30px; }
  .finance-section .finance-promo, .finance-section .finance-headline, .finance-section .finance-months,
  .finance-section .finance-promo-disc { text-align: center; }
  .finance-section .finance-promo-sub { margin: 0 auto 22px; }
  .finance-section .finance-cta-row { justify-content: center; }
  .finance-banner { margin: 0 auto; }
}

/* ── FINANCING PAGE (light, Lowe's-style, brand colors) ── */
.fin-hero { display: grid; grid-template-columns: 1fr 440px; gap: 50px; align-items: center; }
.fin-syn-logo { height: 30px; width: auto; margin-bottom: 18px; }
.fin-hero-text h2 { font-family: var(--font-head); font-size: clamp(1.4rem,2.6vw,1.95rem); font-weight: 600; color: var(--navy); margin-bottom: 14px; line-height: 1.15; letter-spacing: -.01em; }
.fin-hero-text > p { color: var(--muted); font-size: .98rem; line-height: 1.7; margin-bottom: 18px; max-width: 520px; }
.fin-hero-text > p strong { color: var(--navy); }
.fin-points { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.fin-points li { display: flex; align-items: center; gap: 10px; font-size: .92rem; font-weight: 600; color: var(--text); }
.fin-points i { color: var(--gold); }
.fin-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.fin-disc { font-size: .6rem; color: var(--muted); line-height: 1.45; max-width: 520px; }
.fin-hero-banner { display: block; width: 440px; max-width: 100%; border-radius: 14px; overflow: hidden; box-shadow: 0 16px 40px rgba(0,0,0,.28); }
.fin-hero-banner img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.btn-navy { display: inline-flex; align-items: center; gap: 8px; background: var(--navy); color: #fff; font-weight: 700; font-size: .9rem; padding: 12px 24px; border-radius: var(--r); transition: background .2s, transform .15s; }
.btn-navy:hover { background: var(--navy2); transform: translateY(-1px); }
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: none; margin: 0 auto; }
.step-card { text-align: center; padding: 0 6px; }
.step-circle { width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: var(--font-head); font-weight: 600; font-size: 1.25rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.step-card p { font-size: .9rem; color: var(--text); line-height: 1.55; }
@media (max-width: 860px) {
  .fin-hero { grid-template-columns: 1fr; gap: 28px; }
  .fin-hero-banner { margin: 0 auto; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 26px; }
}
@media (max-width: 480px) { .steps-row { grid-template-columns: 1fr; } }

/* Financing: "Put time on your side" image */
.fin-time-img { width: 340px; max-width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 12px; box-shadow: 0 16px 40px rgba(9,27,63,.16); }
@media (max-width: 860px) { .fin-time-img { margin: 0 auto; width: 100%; max-width: 460px; aspect-ratio: 16/10; } }

/* Financing hero band (navy) — "Buy now, pay over time" */
.fin-hero-band { position: relative; overflow: hidden; padding: 60px 0; background: radial-gradient(120% 150% at 85% 0%, var(--navy2) 0%, var(--navy) 58%); }
.fin-hero-band::before { content: "%"; position: absolute; right: -20px; top: -70px; font-size: 20rem; font-weight: 900; line-height: 1; color: rgba(182,135,55,.06); pointer-events: none; }
.fin-hero-band .wrap { position: relative; z-index: 1; }
.fin-hero-band .fin-hero-text h2 { color: #fff; }
.fin-hero-band .fin-hero-text > p { color: rgba(255,255,255,.8); }
.fin-hero-band .fin-hero-text > p strong { color: #fff; }
.fin-hero-band .fin-points li { color: rgba(255,255,255,.92); }
.fin-hero-band .fin-disc { color: rgba(255,255,255,.5); }

/* ── SERVICE PAGE: two-column with sticky Google-reviews sidebar ── */
.svc-layout { display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; }
.svc-main > * + * { margin-top: 36px; }
.svc-main h2 { font-family: var(--font-head); font-size: clamp(1.35rem,2.2vw,1.7rem); font-weight: 600; color: var(--navy); margin-bottom: 12px; letter-spacing: -.01em; }
.svc-main p { color: var(--muted); line-height: 1.75; }
.svc-main .prose-block p + p { margin-top: 14px; }
.svc-aside { position: sticky; top: 86px; display: flex; flex-direction: column; gap: 18px; }
@media (max-width: 900px) { .svc-layout { grid-template-columns: 1fr; gap: 30px; } .svc-aside { position: static; } }

/* Google reviews card */
.greviews { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 22px; box-shadow: 0 10px 30px rgba(9,27,63,.07); }
.greviews-head { display: flex; align-items: center; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--border); margin-bottom: 4px; }
.greviews-head .g-logo { font-size: 1.7rem; color: #4285F4; }
.greviews-rating { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; color: var(--navy); line-height: 1; }
.greviews-rating .greviews-stars { font-family: 'DM Sans', sans-serif; color: #f59e0b; font-size: .85rem; margin-left: 5px; }
.greviews-sub { font-size: .76rem; color: var(--muted); margin-top: 4px; }
.greview { padding: 14px 0; border-bottom: 1px solid var(--border); }
.greview:last-of-type { border-bottom: none; padding-bottom: 4px; }
.greview .greview-stars { color: #f59e0b; font-size: .8rem; letter-spacing: 1px; margin-bottom: 6px; }
.greview p { font-size: .85rem; color: var(--text); line-height: 1.6; margin-bottom: 9px; }
.greview-author { display: flex; align-items: center; gap: 9px; }
.greview-author .review-av { width: 30px; height: 30px; font-size: .68rem; }
.greview-author strong { font-size: .8rem; color: var(--text); display: block; line-height: 1.2; }
.greview-author small { font-size: .7rem; color: var(--muted); }
.greviews .btn-google { width: 100%; justify-content: center; margin-top: 12px; font-size: .82rem; padding: 10px; }

/* Sidebar CTA card */
.aside-cta { background: radial-gradient(120% 140% at 80% 0%, var(--navy2), var(--navy)); color: #fff; border-radius: 14px; padding: 24px 22px; text-align: center; }
.aside-cta h3 { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: #fff; margin-bottom: 6px; }
.aside-cta p { font-size: .84rem; color: rgba(255,255,255,.75); line-height: 1.55; margin-bottom: 16px; }
.aside-cta .btn-primary { width: 100%; justify-content: center; }
.aside-cta .aside-phone { display: block; margin-top: 12px; color: #fff; font-weight: 700; font-size: 1.05rem; }

/* Cost & timeline facts */
.facts-strip { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.fact { background: var(--light); border: 1px solid var(--border); border-radius: var(--r); padding: 18px 14px; text-align: center; }
.fact i { font-size: 1.25rem; color: var(--gold); margin-bottom: 8px; }
.fact strong { display: block; font-size: .92rem; color: var(--navy); margin-bottom: 2px; }
.fact span { font-size: .78rem; color: var(--muted); }
@media (max-width: 560px) { .facts-strip { grid-template-columns: repeat(3, 1fr); gap: 8px; } .fact { padding: 12px 6px; } .fact strong { font-size: .92rem; } .fact span { font-size: .64rem; } }
.svc-main .ba-wrap { box-shadow: 0 12px 32px rgba(9,27,63,.12); }

/* Page hero banner: taller + text readable over the service photo */
.page-hero { padding: 66px 0; }
.page-hero h1, .page-hero-inner > p { text-shadow: 0 2px 18px rgba(0,0,0,.45); }

/* Cleaner UI — remove decorative icons (no-emoji / no icon clutter preference) */
.btn-primary i, .btn-navy i, .sticky-est i { display: none; }
.btn-primary, .btn-navy { gap: 0; }
.fact i { display: none; }
.fact { padding-top: 22px; }
.fact strong { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; }
.step-icon { display: none; }
.process-step { padding-top: 20px; }

/* ── Before/After composite gallery ── */
.ba-photos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ba-photo { display: block; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; cursor: zoom-in; box-shadow: 0 8px 24px rgba(9,27,63,.08); background: #fff; padding: 0; width: 100%; transition: transform .2s, box-shadow .2s; }
.ba-photo:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(9,27,63,.14); }
.ba-photo img { width: 100%; display: block; aspect-ratio: 1600/1236; object-fit: cover; }
@media (max-width: 860px) { .ba-photos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ba-photos-grid { grid-template-columns: 1fr; } }

/* Simple image lightbox */
.img-lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(9,27,63,.9); display: flex; align-items: center; justify-content: center; padding: 28px; cursor: zoom-out; }
.img-lightbox[hidden] { display: none; }
.img-lightbox img { max-width: 96%; max-height: 92%; border-radius: 10px; box-shadow: 0 24px 70px rgba(0,0,0,.55); }
.img-lightbox .album-close { position: absolute; top: 18px; right: 22px; }

/* ══════════ HEADINGS: Sora (bold, modern, DFW-style) + clean banners ══════════ */
:root { --font-head: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
.hero-left h1, .page-hero h1, .sec-head h2, .sec-head.left h2, .feature-text h3,
.cta-banner h2, .finance-headline, .svc-photo-cap h3, .album-cap h3,
.album-modal-inner h3, .value-card h3, .svc-main h2, .fin-hero-text h2, .step-circle {
  font-family: var(--font-head); font-weight: 700; letter-spacing: -.02em;
}
.hero-left h1, .page-hero h1, .finance-headline { font-weight: 800; letter-spacing: -.03em; line-height: 1.1; }
@media (max-width: 768px) {
  .hero-left h1 { font-size: clamp(2.5rem, 9.5vw, 3.4rem); letter-spacing: -.5px; }
  .hero-left p { font-size: 1rem; }
  .hero-list li { font-size: .95rem; }
}
/* Clean banner: single-colour title (no gold accent) */
.page-hero h1 span { color: #fff; }

/* ── Kitchen photo carousel ── */
.sec-title { font-family: var(--font-head); font-size: clamp(1.5rem,2.8vw,2rem); font-weight: 800; color: var(--navy); letter-spacing: -.02em; line-height: 1.12; margin-bottom: 16px; }
.kcarousel { position: relative; }
.kcarousel-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 4px 2px; scrollbar-width: none; -ms-overflow-style: none; }
.kcarousel-track::-webkit-scrollbar { display: none; }
.kcarousel-track img { flex: 0 0 46%; min-width: 0; width: 46%; scroll-snap-align: center; border-radius: var(--r); aspect-ratio: 4/3; object-fit: cover; box-shadow: 0 12px 34px rgba(9,27,63,.14); }
.kc-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 46px; height: 46px; border-radius: 50%; border: none; background: #fff; color: var(--navy); font-size: 1.5rem; cursor: pointer; box-shadow: 0 6px 20px rgba(9,27,63,.22); display: flex; align-items: center; justify-content: center; line-height: 1; transition: background .2s, color .2s; }
.kc-prev { left: 8px; } .kc-next { right: 8px; }
.kc-arrow:hover { background: var(--navy); color: #fff; }
.kc-badge { position: absolute; left: 18px; bottom: 18px; z-index: 3; background: #fff; border-radius: 12px; padding: 12px 18px; box-shadow: 0 12px 30px rgba(9,27,63,.22); }
.kc-badge .kc-stars { color: #f59e0b; font-size: .9rem; letter-spacing: 1px; display: block; }
.kc-badge strong { color: var(--navy); font-size: .92rem; display: block; }
.kc-badge small { color: var(--muted); font-size: .74rem; }
@media (max-width: 700px) { .kcarousel-track img { flex: 0 0 86%; width: 86%; } .kc-badge { left: 10px; bottom: 10px; padding: 10px 14px; } }

/* ── Split section (reviews+badges / service area+map) ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.split-copy { color: var(--muted); font-size: .98rem; line-height: 1.75; margin-bottom: 14px; }
.split-copy:last-child { margin-bottom: 0; }
.split-copy strong { color: var(--navy); }
.split-copy a { color: var(--gold); font-weight: 600; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 22px 30px; align-items: center; justify-content: center; }
.trust-badges img { height: 76px; width: auto; object-fit: contain; }
.trust-badges .badge-round { height: 88px; }
.map-embed { border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 12px 30px rgba(9,27,63,.1); }
.map-embed iframe { width: 100%; height: 380px; border: 0; display: block; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 26px; } .map-embed iframe { height: 300px; } }

/* ── Proof strip (single clean row of 4 stats) ── */
.proof { background: #fff; border-bottom: 1px solid var(--border); }
.proof-row { display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; padding: 30px 0; }
.proof-item { text-align: center; position: relative; padding: 4px 10px; }
.proof-item + .proof-item::before { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 54px; width: 1px; background: var(--border); }
.proof-google-word { font-size: clamp(1.2rem, 2.2vw, 1.55rem); font-weight: 700; letter-spacing: -.5px; line-height: 1; }
.proof-reviews-word { color: var(--navy); }
.proof-stars { color: var(--gold); letter-spacing: 3px; font-size: 1rem; margin-top: 8px; }
.proof-num { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 900; color: var(--navy); letter-spacing: -1px; line-height: 1; }
.proof-label { font-size: .76rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); margin-top: 9px; }
@media (max-width: 700px) { .proof-row { grid-template-columns: repeat(4, 1fr); gap: 2px; padding: 18px 0; } .proof-item { padding: 4px 3px; } .proof-item + .proof-item::before { display: none; } .proof-num { font-size: 1.4rem; letter-spacing: -.5px; } .proof-label { font-size: .58rem; line-height: 1.2; } .proof-google-word { font-size: .7rem; } .proof-stars { font-size: .7rem; } }

/* ── Service cards: square photo + white label box with an arrow (all in one row) ── */
.scard-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.scard { flex: 0 0 calc((100% - 64px) / 5); display: block; background: #fff; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; box-shadow: 0 8px 24px rgba(9,27,63,.08); transition: transform .25s ease, box-shadow .25s ease; }
.scard:hover { transform: translateY(-4px); box-shadow: 0 16px 38px rgba(9,27,63,.14); }
.scard-media { overflow: hidden; aspect-ratio: 1 / 1; }
.scard-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.scard:hover .scard-media img { transform: scale(1.06); }
.scard-label { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 13px 15px; }
.scard-label span { color: var(--navy); font-size: .92rem; font-weight: 700; letter-spacing: -.2px; line-height: 1.2; }
.scard-label i { color: var(--gold); font-size: .85rem; flex-shrink: 0; transition: transform .2s ease; }
.scard:hover .scard-label i { transform: translateX(4px); }
@media (max-width: 1000px) { .scard { flex: 0 0 calc((100% - 32px) / 3); } }
@media (max-width: 640px) { .scard-grid { gap: 8px; } .scard { flex: 0 0 calc((100% - 16px) / 3); } .scard-label { padding: 8px 6px; justify-content: center; } .scard-label span { font-size: .7rem; text-align: center; line-height: 1.15; } .scard-label i { display: none; } }

/* ── Reviews: top stars + trust logos row (Re-Bath style) ── */
.reviews-top-stars { color: var(--gold); letter-spacing: 5px; font-size: 1.15rem; margin-bottom: 12px; }
.reviews-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 46px; margin: 36px 0 4px; }
.reviews-logos img { height: 48px; width: auto; object-fit: contain; }
.reviews-logos img.badge-round { height: 62px; }
@media (max-width: 600px) { .reviews-logos { gap: 28px; } .reviews-logos img { height: 38px; } .reviews-logos img.badge-round { height: 48px; } }

/* Kitchen page main before/after: portrait to fit the two saved photos */
.ba-portrait .ba-wrap { aspect-ratio: 1/1; max-width: 440px; margin: 0 auto; }

/* Kitchen "you don't have to replace everything" options */
.kopt-lead { text-align: center; max-width: 680px; margin: 0 auto 30px; color: #55606f; font-size: 1rem; line-height: 1.6; }
.kopt-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; max-width: none; margin: 0 auto; }
.kopt { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 22px 24px; }
.kopt h3 { color: var(--navy); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.kopt p { color: #55606f; font-size: .92rem; line-height: 1.55; margin: 0; }
@media (max-width: 700px) { .kopt-grid { grid-template-columns: 1fr 1fr; gap: 12px; } .kopt { padding: 15px 13px; } .kopt h3 { font-size: .95rem; } .kopt p { font-size: .8rem; line-height: 1.5; } }

/* "Proudly serving the Dallas metro" as a navy band */
.area-band { background: var(--navy); }
.area-band .sec-head h2 { color: #fff; }
.area-band .area-chip { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.9); }
.area-band .area-chip:hover { border-color: var(--gold); color: var(--gold); background: rgba(255,255,255,.09); }

/* ── FAQ in two columns (4 + 4) on desktop ── */
.faq-wide { max-width: none; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 40px; align-items: start; }
@media (max-width: 760px) { .faq-wide { max-width: 720px; } .faq-grid { grid-template-columns: 1fr 1fr; gap: 8px 8px; } }

/* ── Full-bleed project carousel: title + photos start at the left edge and run to the right edge ── */
.kc-title { padding-left: 32px; }
.kcarousel { margin: 0; }
.kcarousel-track { padding-left: 32px; padding-right: 0; }
.kcarousel-track img { flex: 0 0 480px; width: 480px; cursor: zoom-in; }
.kc-badge { left: 32px; }
.kc-prev { left: 32px; }
.kc-next { right: 16px; }
@media (max-width: 900px) { .kcarousel-track img { flex-basis: 60%; width: 60%; } }
@media (max-width: 640px) { .kcarousel-track img { flex-basis: 84%; width: 84%; } }

/* ── Before / After shown side by side (clearer than a drag slider) ── */
.ba-sidebyside { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 4px 0; }
.ba-sidebyside figure { position: relative; margin: 0; border-radius: var(--r); overflow: hidden; box-shadow: 0 12px 30px rgba(9,27,63,.12); }
.ba-sidebyside img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.ba-sidebyside .ba-pill { left: 12px; right: auto; top: 12px; }
.ba-sidebyside .ba-before { background: rgba(0,0,0,.6); color: #fff; }
.ba-sidebyside .ba-after { background: var(--gold); color: #fff; }
@media (max-width: 520px) { .ba-sidebyside { grid-template-columns: 1fr; gap: 10px; } }

/* Lightbox prev/next navigation */
.lb-nav { position: fixed; top: 50%; transform: translateY(-50%); z-index: 2001; width: 52px; height: 52px; border-radius: 50%; border: none; background: rgba(255,255,255,.92); color: var(--navy); font-size: 1.9rem; cursor: pointer; display: flex; align-items: center; justify-content: center; line-height: 1; box-shadow: 0 6px 20px rgba(0,0,0,.4); transition: background .2s; }
.lb-nav:hover { background: #fff; }
.lb-prev { left: 22px; }
.lb-next { right: 22px; }
.img-lightbox[hidden] .lb-nav { display: none; }
@media (max-width: 600px) { .lb-nav { width: 42px; height: 42px; font-size: 1.5rem; } .lb-prev { left: 8px; } .lb-next { right: 8px; } }

/* "7 Years Experience" seal on the hero form */
.hero-right { position: relative; }
.year-seal { position: absolute; top: -26px; right: -18px; z-index: 6; width: 96px; height: 96px; border-radius: 50%; background: var(--navy); border: 3px solid var(--gold); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: 0 12px 28px rgba(9,27,63,.4); }
.year-seal b { color: var(--gold); font-size: 2rem; font-weight: 900; line-height: 1; }
.year-seal span { color: #fff; font-size: .56rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; line-height: 1.2; margin-top: 3px; }
@media (max-width: 900px) { .year-seal { top: -22px; right: 6px; width: 80px; height: 80px; } .year-seal b { font-size: 1.65rem; } }

/* "Drag" hint under the home before/after sliders */
.ba-hint { text-align: center; font-size: .82rem; font-weight: 600; color: var(--muted); margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.ba-hint i { color: var(--gold); }

/* Gallery teaser (end of every page except home & gallery) */
.gteaser-lead { text-align: center; max-width: 640px; margin: -6px auto 26px; color: var(--muted); font-size: 1rem; line-height: 1.6; }
.gteaser-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gteaser-photo { display: block; border-radius: var(--r); overflow: hidden; box-shadow: 0 8px 24px rgba(9,27,63,.1); }
.gteaser-photo img { width: 100%; aspect-ratio: 1600 / 1236; object-fit: cover; display: block; transition: transform .5s ease; }
.gteaser-photo:hover img { transform: scale(1.05); }
@media (max-width: 700px) { .gteaser-grid { grid-template-columns: 1fr 1fr; } }

/* ═══════════ HERO — proportional headline (brand Sora) + white form ═══════════ */
.hero-left h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.2vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -.6px;
  color: #fff;
  margin-bottom: 12px;
}
.hero-left h1 span { color: var(--gold); font-style: normal; font-weight: 700; }
.hero-left p { font-size: 1rem; line-height: 1.55; color: rgba(255,255,255,.82); max-width: 440px; margin-bottom: 0; }

/* Compact trust row (2 columns) */
.hero-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px; margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.14); }
.hero-list li { font-size: .92rem; color: rgba(255,255,255,.85); }
.hero-list li i { color: var(--gold); }

@media (max-width: 768px) {
  .hero-left h1 { font-size: clamp(2rem, 8.5vw, 2.7rem); letter-spacing: -.4px; margin-bottom: 12px; }
  .hero-left p { font-size: 1rem; }
  .hero-list { display: none; }
}



/* ── Multi-step lead form: option grid + navy-card skin ── */
.ms-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ms-opt { text-align: center; }





/* ═══════════ BLOG ═══════════ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(9,27,63,.07); transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(9,27,63,.14); }
.blog-card-img { aspect-ratio: 16 / 10; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.blog-date { font-size: .74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); }
.blog-card-body h3 { font-size: 1.18rem; font-weight: 800; color: var(--navy); line-height: 1.3; }
.blog-card-body p { font-size: .9rem; color: var(--muted); line-height: 1.6; flex: 1; }
.blog-more { font-size: .85rem; font-weight: 700; color: var(--navy); margin-top: 4px; }
.blog-more i { font-size: .72rem; transition: transform .2s; }
.blog-card:hover .blog-more i { transform: translateX(4px); }
.blog-empty { color: var(--muted); font-size: 1rem; }

/* Single post */
.post { max-width: 760px; margin: 0 auto; }
.post-back { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 700; color: var(--muted); margin-bottom: 18px; }
.post-back:hover { color: var(--gold); }
.post-back i { font-size: .74rem; }
.post-title { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; color: var(--navy); line-height: 1.18; margin: 8px 0 20px; letter-spacing: -.5px; }
.post-cover { border-radius: 14px; overflow: hidden; margin-bottom: 28px; box-shadow: 0 14px 36px rgba(9,27,63,.12); }
.post-cover img { width: 100%; display: block; object-fit: cover; max-height: 440px; }
.post-body { font-size: 1.05rem; line-height: 1.75; color: #35404f; }
.post-body h2 { font-size: 1.4rem; font-weight: 800; color: var(--navy); margin: 34px 0 12px; letter-spacing: -.3px; }
.post-body p { margin-bottom: 18px; }
.post-body ul, .post-body ol { margin: 0 0 18px 22px; display: flex; flex-direction: column; gap: 8px; }
.post-body li { line-height: 1.65; }
.post-body a { color: var(--gold); font-weight: 600; text-decoration: underline; }
.post-body strong { color: var(--navy); }
.post-cta { margin-top: 40px; padding: 30px 32px; background: var(--light); border: 1px solid var(--border); border-radius: 16px; text-align: center; }
.post-cta h3 { font-size: 1.35rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.post-cta p { font-size: .96rem; color: var(--muted); line-height: 1.6; margin-bottom: 18px; max-width: 460px; margin-left: auto; margin-right: auto; }

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr 1fr; gap: 10px; } .blog-card-body { padding: 11px 11px 13px; gap: 5px; } .blog-card-body p { display: none; } .blog-card-body h3 { font-size: .88rem; line-height: 1.25; } .blog-date { font-size: .64rem; } .blog-more { display: none; } .blog-cat { font-size: .58rem; padding: 3px 7px; top: 8px; left: 8px; } .blog-filters { gap: 6px; margin-bottom: 20px; } .blog-filter { padding: 6px 12px; font-size: .76rem; } }

/* ── Blog post: two-column layout with sidebar ── */
.post-layout { max-width: 1120px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 48px; align-items: start; }
.post { max-width: none; margin: 0; }
.post-byline { font-size: .86rem; color: var(--muted); margin: -8px 0 22px; }
.post-byline strong { color: var(--navy); font-weight: 700; }

.post-aside { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 20px; }
.aside-card, .aside-block { background: var(--white); border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
.aside-cta { background: var(--navy); border-color: var(--navy); text-align: center; }
.aside-cta h4 { color: #fff; font-size: 1.05rem; font-weight: 800; margin-bottom: 4px; }
.aside-cta p { color: rgba(255,255,255,.7); font-size: .82rem; margin-bottom: 14px; }
.aside-cta .btn-primary { width: 100%; justify-content: center; }
.aside-block h4 { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); font-weight: 700; margin-bottom: 10px; }
.aside-topics { list-style: none; }
.aside-topics li { border-bottom: 1px solid var(--border); }
.aside-topics li:last-child { border-bottom: none; }
.aside-topics a { display: block; padding: 9px 0; font-size: .9rem; font-weight: 600; color: var(--navy); }
.aside-topics a:hover { color: var(--gold); }
.aside-related { display: flex; flex-direction: column; gap: 14px; }
.aside-rel { display: flex; gap: 11px; align-items: center; }
.aside-rel img { width: 66px; height: 56px; flex: 0 0 66px; object-fit: cover; border-radius: 8px; }
.aside-rel span { font-size: .84rem; font-weight: 700; color: var(--navy); line-height: 1.35; }
.aside-rel:hover span { color: var(--gold); }

/* Expert / pull quote inside articles */
.post-body blockquote { border-left: 3px solid var(--gold); background: var(--light); margin: 26px 0; padding: 18px 22px; border-radius: 0 10px 10px 0; color: #3a4557; }
.post-body blockquote p { margin-bottom: 8px; font-style: italic; }
.post-body blockquote p:last-child { margin-bottom: 0; }
.post-body blockquote strong { font-style: normal; color: var(--navy); }

@media (max-width: 900px) {
  .post-layout { grid-template-columns: 1fr; gap: 30px; }
  .post-aside { position: static; }
}

/* ── Blog index: category filters + badges ── */
.blog-filters { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; margin-bottom: 30px; }
.blog-filter { padding: 8px 18px; border: 1.5px solid var(--border); background: var(--white); border-radius: 100px; font-family: inherit; font-size: .85rem; font-weight: 600; color: var(--navy); cursor: pointer; transition: all .18s; }
.blog-filter:hover { border-color: var(--gold); color: var(--gold); }
.blog-filter.active { background: var(--navy); border-color: var(--navy); color: #fff; }
.blog-card-img { position: relative; }
.blog-cat { position: absolute; top: 12px; left: 12px; background: rgba(9,27,63,.85); color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 5px 11px; border-radius: 100px; backdrop-filter: blur(4px); }


/* ── Mobile refinements (phone) ── */
@media (max-width: 600px) {
  .hero-mobile-btn { width: 100%; justify-content: center; margin-top: 14px; }
  .faq-q { padding: 13px 14px; font-size: .85rem; gap: 8px; }
  .faq-q i { font-size: .7rem; }
  .faq-a { padding: 0 14px; font-size: .83rem; line-height: 1.6; }
  .faq-item.open .faq-a { padding: 0 14px 13px; }
  .faq-grid { gap: 8px; }
  .finance-section { padding: 34px 0; }
  .finance-headline { font-size: 1.9rem; }
  .finance-banner img { max-height: none; height: auto; width: 100%; }
  .finance-promo-sub { font-size: .9rem; }
  .finance-promo-disc { font-size: .62rem; }
}


/* ── Mobile: hide non-essential sections + condense footer ── */
@media (max-width: 600px) {
  .proc-section { display: none; }
  .area-band { display: none; }
  .footer { padding: 6px 0; }
  .footer-bottom { flex-direction: column; gap: 4px; font-size: .68rem; text-align: left; align-items: flex-start; padding-top: 10px; }
}


/* ── Mobile: force finance single-column + hide service-area map section ── */
@media (max-width: 768px) {
  .finance-section .finance-row { grid-template-columns: 1fr !important; gap: 24px; }
  .finance-section .finance-banner { width: 100% !important; max-width: 100% !important; }
  .finance-section .finance-headline { font-size: 1.9rem; }
}
@media (max-width: 600px) {
  .svc-area { display: none; }
}



/* Wide screens: center the title + form together as one symmetric block */
@media (min-width: 1120px) {
  .hero-inner { grid-template-columns: auto 468px; justify-content: center; }
  .hero-left { min-width: 0; }
}

/* ── Mobile: force financing-page hero to stack (banner over photo), no clipping ── */
@media (max-width: 860px) {
  .fin-hero { grid-template-columns: 1fr !important; gap: 26px; }
  .fin-hero-banner { width: 100% !important; max-width: 100% !important; margin: 0 auto; }
  .fin-hero-band::before { font-size: 8rem; right: 4px; top: -10px; }
  .fin-hero-band { padding: 40px 0; }
}


/* Financing hero without photo: centered single-column banner */
.fin-hero-solo { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; }
.fin-hero-solo .fin-hero-text { text-align: center; }
.fin-hero-solo .fin-hero-text > p { max-width: 600px; margin: 0 auto 18px; }
.fin-hero-solo .fin-points { align-items: center; }
.fin-hero-solo .fin-cta-row { justify-content: center; }
.fin-hero-solo .fin-disc { max-width: 600px; margin: 6px auto 0; }
.fin-hero-band .fin-hero-solo .fin-disc { color: rgba(255,255,255,.55); }

/* Disclaimer really small (beat .fin-hero-text > p specificity) */
.fin-hero-text p.fin-disc { font-size: .62rem; line-height: 1.4; color: rgba(255,255,255,.5); }

/* Mobile footer: only logo + social icons (hide Services/Company/Get in Touch) */
@media (max-width: 600px) {
  .footer-col:not(.footer-brand) { display: none; }
  .footer-cols { grid-template-columns: 1fr; gap: 0; padding: 22px 32px 12px; }
  .footer-brand { grid-column: 1 / -1; text-align: left; }
  .footer-brand p { margin: 10px 0 14px; max-width: 320px; }
  .footer-social { justify-content: flex-start; }
}

/* Mobile: cap the booking calendar height (scrolls inside the box) */
@media (max-width: 600px) {
  .cal-embed { overflow: hidden; padding: 0; }
  .cal-embed iframe { transform-origin: top left; }
}
