/* ============================================
   DPL Cleaning Services — shared styles
   Palette: navy #0A1E42 · gold #C9A24A
   Type: Plus Jakarta Sans
   ============================================ */
:root{
  --navy:#0A1E42;
  --navy-soft:#1C3560;
  --gold:#C9A24A;
  --gold-deep:#A9832F;
  --gold-light:#E9D9B0;
  --gold-faint:#F7F1E3;
  --blue-swoosh:#A9C2E8;
  --bg:#FFFFFF;
  --bg-tint:#F8F9FB;
  --ink-muted:#5B6472;
  --ink-faint:#9AA3AF;
  --line:#E8EBEF;
  --font:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --font-display:'Playfair Display',Georgia,'Times New Roman',serif;
  --max:1080px;
}
*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family:var(--font); color:var(--navy); background:var(--bg);
  -webkit-font-smoothing:antialiased; line-height:1.6;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }

/* ---------- nav ---------- */
.nav{
  position:sticky; top:0; z-index:100;
  background:linear-gradient(92deg,
    #ffffff 0%, #ffffff 24%,
    rgba(255,255,255,.85) 34%,
    rgba(60,80,115,.55) 44%,
    var(--navy) 58%, var(--navy) 100%);
  border-bottom:1px solid rgba(201,162,74,.32);
}
.nav-inner{
  max-width:var(--max); margin:0 auto; padding:0 24px;
  display:flex; align-items:center; justify-content:space-between; height:68px;
}
.nav-logo img{ height:44px; width:auto; }
.nav-toggle{ display:none; }
.nav-burger{ display:none; cursor:pointer; padding:8px; }
.nav-burger span{ display:block; width:22px; height:2px; background:var(--gold-light); margin:5px 0; border-radius:2px; transition:.25s; }
.nav-links{ display:flex; align-items:center; gap:28px; list-style:none; }
.nav-links a{
  text-decoration:none; font-size:14px; font-weight:500; color:rgba(255,255,255,.82);
  padding-bottom:3px; border-bottom:2px solid transparent;
  transition:color .2s,border-color .2s; letter-spacing:.2px;
}
.nav-links a:hover{ color:var(--gold-light); }
.nav-links a.active{ color:#fff; border-color:var(--gold); }
.nav-links .nav-cta{
  color:var(--gold-light); padding:9px 20px; border-radius:26px;
  border:1.5px solid rgba(201,162,74,.65); border-bottom:1.5px solid rgba(201,162,74,.65);
  font-weight:600; letter-spacing:.3px;
  transition:background .25s, color .25s, border-color .25s;
}
.nav-links .nav-cta:hover{
  background:var(--gold); color:var(--navy); border-color:var(--gold);
}

@media (max-width:820px){
  .nav-burger{ display:block; }
  .nav-links{
    position:absolute; top:68px; left:0; right:0;
    flex-direction:column; gap:0; background:var(--navy);
    border-bottom:1px solid rgba(201,162,74,.28);
    max-height:0; overflow:hidden; transition:max-height .3s ease;
  }
  .nav-links li{ width:100%; text-align:center; }
  .nav-links a{ display:block; padding:15px; border-bottom:1px solid rgba(255,255,255,.08); }
  .nav-links .nav-cta{ margin:14px 24px; border-radius:26px; }
  .nav-toggle:checked ~ .nav-links{ max-height:420px; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2){ opacity:0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }
}

/* ---------- shared blocks ---------- */
.wrap{ max-width:var(--max); margin:0 auto; padding:0 24px; }
.section{ padding:72px 0; }
.section.tint{ background:var(--bg-tint); }
.eyebrow{
  font-size:12px; letter-spacing:3px; text-transform:uppercase;
  color:var(--gold-deep); font-weight:600; margin-bottom:12px;
}
h1{ font-size:clamp(30px,5vw,44px); font-weight:600; line-height:1.2; letter-spacing:-.4px; }
h2{ font-size:clamp(24px,3.6vw,32px); font-weight:600; line-height:1.25; letter-spacing:-.3px; margin-bottom:14px; }
h3{ font-size:18px; font-weight:600; }
.lead{ font-size:17px; font-weight:300; color:var(--ink-muted); max-width:560px; }
.center{ text-align:center; }
.center .lead{ margin-left:auto; margin-right:auto; }

.star{
  display:inline-block; width:13px; height:13px; background:var(--gold);
  clip-path:polygon(50% 0%,61% 39%,100% 50%,61% 61%,50% 100%,39% 61%,0% 50%,39% 39%);
}
.divider-star{
  display:flex; align-items:center; gap:14px; justify-content:center; margin:26px auto;
}
.divider-star::before,.divider-star::after{
  content:''; width:52px; height:1px; background:var(--gold-light);
}

.btn{
  display:inline-block; text-decoration:none; font-weight:600; font-size:15px;
  padding:15px 32px; border-radius:32px; cursor:pointer;
  font-family:var(--font); letter-spacing:.3px;
  transition:transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s, background .25s, color .25s, border-color .25s;
  border:1.5px solid transparent;
}

/* filled navy, gold lettering */
.btn-primary{
  background:linear-gradient(135deg, #16305C 0%, #0A1E42 100%);
  color:var(--gold-light);
  border-color:rgba(201,162,74,.45);
  box-shadow:0 4px 16px rgba(10,30,66,.18);
}
.btn-primary:hover{
  color:#F3E7C8;
  border-color:var(--gold);
  box-shadow:0 8px 26px rgba(10,30,66,.28), 0 0 0 1px rgba(201,162,74,.25);
  transform:translateY(-2px);
}

/* outlined gold on light backgrounds */
.btn-ghost{
  background:transparent; color:var(--gold-deep);
  border-color:rgba(201,162,74,.55);
}
.btn-ghost:hover{
  background:var(--gold-faint); color:var(--gold-deep);
  border-color:var(--gold);
  box-shadow:0 6px 20px rgba(201,162,74,.16);
  transform:translateY(-2px);
}

/* on navy backgrounds: gold outline, gold text */
.btn-gold{
  background:transparent; color:var(--gold-light);
  border-color:rgba(201,162,74,.7);
}
.btn-gold:hover{
  background:var(--gold); color:var(--navy);
  border-color:var(--gold);
  box-shadow:0 8px 26px rgba(201,162,74,.3);
  transform:translateY(-2px);
}
.btn-row{ display:flex; gap:14px; flex-wrap:wrap; }

/* ---------- hero ---------- */
.hero{
  position:relative; overflow:hidden; padding:88px 0 80px; text-align:center;
}
.hero .swoosh{
  position:absolute; top:50%; left:50%; width:1300px; height:1300px;
  transform:translate(-50%,-50%);
  background:radial-gradient(circle at 50% 45%, rgba(169,194,232,.12) 0%, rgba(255,255,255,0) 60%);
  pointer-events:none;
}
.hero .wrap{ position:relative; }
.hero h1{ max-width:640px; margin:0 auto 18px; }
.hero .lead{ margin:0 auto 32px; }
.hero .btn-row{ justify-content:center; }
/* photo hero: copy left, full room photo fit to height on the right,
   fading into the page along its own edge — no seam, no crop-zoom */
.hero-photo{
  position:relative; text-align:left;
  padding:0; overflow:hidden;
  min-height:min(660px, 82vh);
  display:flex; align-items:center;
  /* matches the photo's own wall tone at the fade line, then eases
     back to the site's white so the seam is invisible */
  background:linear-gradient(100deg,
    #FFFFFF 0%, #FFFFFF 20%,
    #F4EFE9 32%, #DCD3CC 46%,
    #DCD3CC 100%);
}
.hero-img{
  position:absolute; right:0; top:-2%; height:104%; width:auto; max-width:none;
  z-index:0;
  -webkit-mask-image:linear-gradient(100deg,
    rgba(0,0,0,0) 0%, rgba(0,0,0,0) 6%,
    rgba(0,0,0,.12) 16%, rgba(0,0,0,.32) 26%,
    rgba(0,0,0,.58) 36%, rgba(0,0,0,.82) 46%,
    #000 60%);
  mask-image:linear-gradient(100deg,
    rgba(0,0,0,0) 0%, rgba(0,0,0,0) 6%,
    rgba(0,0,0,.12) 16%, rgba(0,0,0,.32) 26%,
    rgba(0,0,0,.58) 36%, rgba(0,0,0,.82) 46%,
    #000 60%);
}
.hero-photo .wrap{ position:relative; z-index:2; width:100%; }
.hero-photo .hero-copy{ max-width:520px; padding:88px 0; }
.hero-photo h1{
  font-family:var(--font-display);
  font-weight:500; letter-spacing:-.5px; line-height:1.12;
  font-size:clamp(36px,4.6vw,56px);
  margin-bottom:20px;
}
.hero-photo .lead{ margin:0 0 30px; max-width:470px; }
.hero-photo .btn-row{ justify-content:flex-start; }
.hero-photo .trust-strip{ justify-content:flex-start; margin-top:34px; max-width:470px; }

@media (max-width:900px){
  .hero-photo{
    min-height:auto; display:block;
    background:linear-gradient(to bottom,
      #DCD3CC 0%, #DCD3CC 40%,
      #E9E0D5 56%, #FFFFFF 78%, #FFFFFF 100%);
  }
  .hero-img{
    position:relative; top:auto; right:auto;
    width:100%; height:auto; display:block;
    margin-bottom:-56px;
    -webkit-mask-image:linear-gradient(to bottom,
      #000 46%, rgba(0,0,0,.82) 58%, rgba(0,0,0,.5) 70%,
      rgba(0,0,0,.2) 84%, rgba(0,0,0,0) 98%);
    mask-image:linear-gradient(to bottom,
      #000 46%, rgba(0,0,0,.82) 58%, rgba(0,0,0,.5) 70%,
      rgba(0,0,0,.2) 84%, rgba(0,0,0,0) 98%);
  }
  .hero-photo .hero-copy{
    max-width:none; padding:0 0 56px; text-align:center;
  }
  .hero-photo .lead{ margin-left:auto; margin-right:auto; }
  .hero-photo .btn-row, .hero-photo .trust-strip{ justify-content:center; margin-left:auto; margin-right:auto; }
}

/* ---------- cards ---------- */
.grid{ display:grid; gap:22px; }
.grid.cols-3{ grid-template-columns:repeat(3,1fr); }
.grid.cols-2{ grid-template-columns:repeat(2,1fr); }
@media (max-width:860px){ .grid.cols-3{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .grid.cols-3,.grid.cols-2{ grid-template-columns:1fr; } }

.card{
  background:#fff; border:1px solid var(--line); border-radius:16px; padding:28px;
  transition:box-shadow .25s, transform .25s;
}
.card:hover{ box-shadow:0 10px 30px rgba(10,30,66,.08); transform:translateY(-2px); }
.card h3{ margin:14px 0 8px; }
.card p{ font-size:14.5px; font-weight:300; color:var(--ink-muted); }
.card-icon{
  width:44px; height:44px; border-radius:12px; background:var(--gold-faint);
  display:flex; align-items:center; justify-content:center; font-size:20px;
}

/* ---------- review cards ---------- */
.review-card{
  background:#fff; border:1px solid var(--line); border-radius:16px; padding:26px;
  display:flex; flex-direction:column; gap:12px;
}
.review-stars{ display:flex; gap:3px; }
.review-text{ font-size:15px; font-weight:300; color:var(--navy-soft); line-height:1.65; flex:1; }
.review-meta{ display:flex; align-items:center; justify-content:space-between; gap:10px; }
.review-name{ font-weight:600; font-size:14px; }
.review-source{
  font-size:11px; letter-spacing:1px; text-transform:uppercase; font-weight:600;
  color:var(--gold-deep); background:var(--gold-faint); padding:4px 10px; border-radius:12px;
}

/* ---------- platform badges ---------- */
.platform-card{
  background:#fff; border:1px solid var(--line); border-radius:16px; padding:26px;
  text-align:center; text-decoration:none; display:block;
  transition:box-shadow .25s, transform .25s;
}
.platform-card:hover{ box-shadow:0 10px 30px rgba(10,30,66,.08); transform:translateY(-2px); }
.platform-score{ font-size:34px; font-weight:600; letter-spacing:-1px; }
.platform-name{ font-size:15px; font-weight:600; margin-top:6px; }
.platform-sub{ font-size:13px; font-weight:300; color:var(--ink-muted); margin-top:2px; }
.platform-link{ margin-top:14px; display:inline-block; font-size:13.5px; font-weight:600; color:var(--gold-deep); }

/* ---------- forms ---------- */
.field{ margin-bottom:18px; text-align:left; }
.field label{ display:block; font-size:13.5px; font-weight:600; margin-bottom:6px; }
.field input,.field select,.field textarea{
  width:100%; padding:13px 14px; border:1.5px solid var(--line); border-radius:12px;
  font-family:var(--font); font-size:15px; color:var(--navy); background:#fff;
  transition:border-color .2s;
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none; border-color:var(--gold);
}
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:14px; }
@media (max-width:560px){ .field-row{ grid-template-columns:1fr; } }

/* ---------- footer ---------- */
footer{
  background:var(--navy); color:rgba(255,255,255,.85); padding:52px 0 30px; margin-top:0;
}
.footer-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:36px; margin-bottom:36px;
}
@media (max-width:720px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-grid h4{
  font-size:12px; letter-spacing:2px; text-transform:uppercase;
  color:var(--gold-light); margin-bottom:14px; font-weight:600;
}
.footer-grid p, .footer-grid a{ font-size:14px; font-weight:300; color:rgba(255,255,255,.8); }
.footer-grid a{ text-decoration:none; display:block; margin-bottom:9px; transition:color .2s; }
.footer-grid a:hover{ color:var(--gold-light); }
.footer-logo{ height:52px; width:auto; margin-bottom:14px; filter:brightness(0) invert(1); opacity:.95; }
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.14); padding-top:22px; text-align:center;
  font-size:12.5px; font-weight:300; color:rgba(255,255,255,.5);
}

/* ---------- misc ---------- */
.trust-strip{
  display:flex; gap:14px 30px; justify-content:center; flex-wrap:wrap;
  margin-top:40px; font-size:14px; font-weight:400; color:var(--navy-soft);
}
.trust-strip span{ display:flex; align-items:center; gap:9px; }
.check{
  flex:none; width:17px; height:17px; border-radius:50%;
  border:1.5px solid var(--gold); position:relative;
}
.check::after{
  content:''; position:absolute; left:4.5px; top:3px;
  width:4px; height:8px; border:solid var(--gold);
  border-width:0 1.6px 1.6px 0; transform:rotate(42deg);
}
.cta-band{
  background:linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color:#fff; text-align:center; padding:64px 24px; border-radius:0;
}
.cta-band h2{ color:#fff; }
.cta-band p{ color:rgba(255,255,255,.8); font-weight:300; margin-bottom:28px; }
.city-list{
  display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-top:24px;
}
.city-list span{
  font-size:13.5px; font-weight:500; color:var(--navy-soft);
  background:#fff; border:1px solid var(--line); padding:7px 16px; border-radius:20px;
}
@media (prefers-reduced-motion:reduce){
  *{ transition:none !important; animation:none !important; }
}
