/* RESET */
*{margin:0;padding:0;box-sizing:border-box}

/* THEME */
:root{
  --teal:#008080;
  --gold:#b08d57;
  --dove:#f2f2f2;
  --panel:#ffffff;
  --soft:#f7f9fa;
  --ink:#1a1a1a;
  --ink-soft:#3b3b3b;
}

/* BASE */
html{scroll-behavior:smooth;scroll-padding-top:230px}
body{
  font-family:'Atkinson Hyperlegible',system-ui,-apple-system,"Segoe UI",Roboto,Arial,"Noto Sans","Helvetica Neue",sans-serif;
  font-size:18px;line-height:1.75;color:var(--ink);background:var(--dove);-webkit-text-size-adjust:100%;
}
h1,h2,h3{font-family:'Libre Baskerville',Georgia,serif}
h2{font-size:2rem;color:var(--teal);text-align:center;letter-spacing:.2px}
h3{font-size:1.25rem;color:#222}
a{text-decoration:none;color:inherit}
:focus-visible{outline:3px solid var(--teal);outline-offset:4px;border-radius:6px}

/* THIN BAR (BLACK) */
.util-bar{position:fixed;top:0;left:0;right:0;height:46px;background:#000;color:#fff;z-index:2000}
.util-inner{max-width:1240px;margin:0 auto;height:46px;padding:0 12px;display:flex;align-items:center;gap:12px}
.util-phone{margin-right:auto;font-weight:800;color:#fff;font-size:1.05rem;letter-spacing:.2px}
.util-links{display:flex;gap:14px;font-size:1.02rem;color:#fff}
.util-links a{color:#fff}
.util-links a:hover{color:#dcdcdc}
.util-audio{border:1px solid rgba(255,255,255,.35);background:transparent;color:#fff;padding:6px 10px;border-radius:10px;font-weight:700;cursor:pointer}

/* HEADER (MORE TRANSLUCENT) */
.site-header{
  position:fixed;top:46px;left:0;right:0;
  background:rgba(255,255,255,.62);
  -webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);
  box-shadow:0 2px 10px rgba(0,0,0,.10);z-index:5000;
}
.nav-container{max-width:1240px;margin:0 auto;padding:.6rem .75rem;display:grid;grid-template-columns:auto 1fr auto;align-items:center;gap:16px}
.logo a{display:inline-block}
.logo img{height:170px;width:auto;display:block}

.main-nav{justify-self:center}
.top-level{list-style:none;display:flex;align-items:center;gap:.9rem;justify-content:center;flex-wrap:wrap}

/* HEADER LINKS (black + gold hover) */
.site-header .main-nav a{
  color:#000;font-weight:700;font-size:1.04rem;padding:8px 6px;border-radius:8px;
  transition:color .2s,transform .15s,text-shadow .2s,background .2s;
  word-break:normal;overflow-wrap:normal;hyphens:none;
}
.site-header .main-nav a:hover,.site-header .main-nav a:focus{
  color:var(--gold);background:rgba(0,0,0,.06);
  transform:translateY(-1px) scale(1.03);
  text-shadow:0 0 6px rgba(176,141,87,.35);
}

/* PROTEAM PILL */
.top-level>li>a.pill{background:var(--teal);color:#fff!important;border:none;padding:6px 12px;border-radius:999px;font-weight:800}
.top-level>li>a.pill:hover{background:#007272;transform:translateY(-1px) scale(1.05)}

/* DROPDOWNS (desktop; JS toggles .open) */
.has-sub{position:relative}
.has-sub>.dropdown{
  display:none;position:absolute;left:0;top:100%;
  min-width:260px;background:#fff;border:1px solid rgba(0,0,0,.08);
  border-radius:10px;box-shadow:0 12px 28px rgba(0,0,0,.14);padding:8px;z-index:6100;
}
.has-sub.open>.dropdown{display:block}
.dropdown li{list-style:none}
.dropdown a{display:block;padding:10px 12px;border-radius:8px;color:#333;font-weight:700}
.dropdown a:hover{background:#f2f2f2;color:#000}
.dropdown.two-col{grid-template-columns:1fr 1fr;gap:6px 14px;min-width:520px}

/* HAMBURGER */
.nav-toggle{display:none}
.nav-toggle-label{display:none;cursor:pointer}
.nav-toggle-label span,.nav-toggle-label span::before,.nav-toggle-label span::after{
  display:block;background:#111;height:3px;width:28px;border-radius:2px;position:relative
}
.nav-toggle-label span::before,.nav-toggle-label span::after{content:'';position:absolute;left:0}
.nav-toggle-label span::before{top:-8px}.nav-toggle-label span::after{top:8px}

/* HERO */
.hero{background:url('images/kitchen-remodel.jpg') no-repeat center center;background-size:contain;background-color:#eaeaea;height:100vh;width:100%;margin-top:230px;position:relative}

/* SECTIONS */
.section{padding:2.6rem 1rem;background:var(--panel);text-align:center}
.lead{max-width:900px;margin:0 auto;color:var(--ink-soft)}

/* MISSION WRAP */
.mission .mission-inner{max-width:980px;margin:0 auto;background:#fff;border-radius:12px;padding:1.25rem 1.25rem;box-shadow:0 4px 14px rgba(0,0,0,.08)}

/* CARDS */
.snippets-wrap{max-width:1240px;margin:0 auto;display:grid;gap:1.1rem;grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}
.card{background:#f9fbfb;border-radius:12px;padding:1.1rem;box-shadow:0 2px 6px rgba(0,0,0,.06);display:flex;flex-direction:column;gap:.6rem;text-align:center}
.card .thumb{width:100%;height:160px;border-radius:10px;object-fit:cover;background:#eaeaea}
.card p{color:#555}
.card .more{font-weight:800;color:var(--teal)}
.card .more:hover{text-decoration:underline}
.card.emph{border:2px solid #e6f0f0;background:#f4fbfb}

/* DUO */
.duo{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1.1fr .9fr;gap:1.5rem;align-items:center}
.duo img{width:100%;height:auto;border-radius:12px;box-shadow:0 4px 14px rgba(0,0,0,.12)}

/* BANDS */
.band{border-top:1px solid rgba(0,0,0,.06);border-bottom:1px solid rgba(0,0,0,.06)}
.band.financing{background:linear-gradient(135deg, rgba(0,128,128,.08), rgba(0,128,128,.02))}
.band.warranty{background:linear-gradient(135deg, rgba(176,141,87,.10), rgba(176,141,87,.02))}
.band-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:1.15fr .85fr;gap:1.5rem;align-items:center}

/* HOME FIRST SNIPPET */
.homefirst-wrap{max-width:1100px;margin:0 auto;padding:0 1rem}
.hf-img{width:100%;max-width:900px;height:auto;border-radius:12px;box-shadow:0 4px 14px rgba(0,0,0,.12);margin:0 auto 12px auto;display:block}

/* BUTTONS */
.btn{display:inline-block;padding:.85rem 1.6rem;background:var(--gold);color:#111;font-weight:800;border-radius:8px;transition:.2s}
.btn:hover{background:#a07c45;transform:translateY(-1px) scale(1.03)}
.btn.teal{background:var(--teal);color:#fff}
.btn.teal:hover{background:#007272}
.btn.white{background:#fff;color:#111;border:1px solid rgba(0,0,0,.12)}
.btn.gray{background:rgba(0,0,0,.06);color:#222}

/* BADGES */
.badges{display:flex;gap:10px;flex-wrap:wrap;margin-top:8px;justify-content:center}
.badge{background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:999px;padding:6px 10px;font-weight:800;font-size:.95rem}

/* MAP */
.map-wrap{max-width:1100px;margin:0 auto}
.map-box{height:380px;border-radius:12px;overflow:hidden;box-shadow:0 6px 24px rgba(0,0,0,.12)}

/* PROMISE */
.promise{background:var(--dove);padding:3rem 1rem;text-align:center}
.promise h2{margin-bottom:.6rem}
.promise p{max-width:900px;margin:0 auto;color:#444}

/* FOOTER */
.site-footer{background:#fff;border-top:1px solid #e6e6e6}
.footer-inner{max-width:1240px;margin:0 auto;padding:2rem 1rem;display:grid;gap:1.5rem;grid-template-columns:1.1fr 1fr 1fr 1fr}
.footer-logo{height:56px;width:auto;margin-bottom:.5rem}
.site-footer h4{color:#333;margin-bottom:.5rem}
.site-footer ul{list-style:none}
.site-footer li{margin:.35rem 0}
.site-footer a{color:#555}
.site-footer a:hover{text-decoration:underline;color:#222}
.fine{margin-top:.6rem;font-size:.92rem;color:#777}

/* SERVICE-AREA BAR (optional for visible local SEO) */
.footer-geo{background:#000;color:#fff;text-align:center;font-size:.92rem;line-height:1.6;padding:.55rem .75rem}

/* RESPONSIVE */
@media(max-width:1100px){.logo img{height:150px}}
@media(max-width:900px){.dropdown.two-col{min-width:320px}.hero{height:78vh}}
@media(max-width:768px){
  .nav-container{max-width:92%;padding:.4rem 0;gap:.5rem;grid-template-columns:auto 1fr auto}
  .logo img{height:112px}
  .hero{margin-top:190px;height:56vh;background-size:cover;background-position:center center}
  html{scroll-padding-top:190px}
  .util-inner{padding:0 10px}
  .util-phone{font-size:1.08rem}
  .util-links{font-size:1.02rem;gap:10px}
  .nav-toggle-label{display:block;padding:.6rem;justify-self:end}
  .top-level{
    display:none;flex-direction:column;gap:0;width:100%;
    position:fixed;top:calc(46px + 72px);left:0;right:0;bottom:0;background:#fff;overflow:auto;padding:.25rem 0;border-top:1px solid rgba(0,0,0,.08);z-index:7000
  }
  .nav-toggle:checked + .nav-toggle-label + .main-nav .top-level{display:flex}
  .top-level>li>a{display:block;padding:14px 18px;font-size:1.08rem;font-weight:800;border-bottom:1px solid #f0f0f0}
  .has-sub{position:static}
  .has-sub>.dropdown{position:static;display:none;box-shadow:none;border:0;padding:0 0 8px 0;background:#fff;margin:0}
  .has-sub.open>.dropdown{display:block}
  .dropdown a{padding:12px 18px 12px 28px;font-size:1.02rem;font-weight:700;color:#222;border-left:3px solid rgba(0,0,0,.08);margin-left:14px;margin-right:8px;border-radius:0}
  .dropdown a + a{border-top:1px solid #f4f4f4}
  .dropdown.two-col{min-width:auto;grid-template-columns:1fr;gap:0}
}
.dropdown.two-col{display:none!important}
.has-sub.open>.dropdown.two-col{display:grid!important;grid-template-columns:1fr 1fr;gap:6px 14px;min-width:520px}
@media(max-width:900px){.has-sub.open>.dropdown.two-col{grid-template-columns:1fr;min-width:320px}}
