/* De Leon Brothers Construction — brand: royal #2050a0, sky #10a0f0, slate #505050 */
:root {
  --royal: #2050a0;
  --royal-dark: #173c7a;
  --sky: #10a0f0;
  --slate: #4b4c50;
  --ink: #22242a;
  --paper: #ffffff;
  --mist: #f2f6fb;
  --line: #dde5f0;
  --serif: "Cinzel", "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: var(--royal); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */
.topbar {
  background: var(--royal-dark);
  color: #fff;
  font-size: 14.5px;
  letter-spacing: .02em;
}
.topbar .wrap {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 7px; padding-bottom: 7px; gap: 16px;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 600; }
.topbar a:hover { color: #9fd7fa; }
.topbar .est { color: #9fd7fa; }

header.site {
  background: #fff;
  border-bottom: 3px solid var(--sky);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 1px 8px rgba(23, 60, 122, .08);
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 12px; padding-bottom: 12px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 54px; width: auto; }
.brand .name {
  font-family: var(--serif); font-weight: 700; color: var(--royal);
  font-size: 19px; line-height: 1.15; letter-spacing: .03em;
}
.brand .name small {
  display: block; font-family: var(--sans); font-weight: 600;
  font-size: 11px; letter-spacing: .22em; color: var(--slate); text-transform: uppercase;
}
nav.main { display: flex; align-items: center; gap: 26px; }
nav.main a {
  text-decoration: none; color: var(--ink); font-weight: 600;
  font-size: 15.5px; letter-spacing: .04em; text-transform: uppercase;
}
nav.main a:hover, nav.main a[aria-current="page"] { color: var(--sky); }
nav.main a.cta {
  background: var(--royal); color: #fff; padding: 10px 20px; border-radius: 6px;
}
nav.main a.cta:hover { background: var(--sky); color: #fff; }

/* ---------- hero ---------- */
.hero {
  background:
    linear-gradient(160deg, rgba(23,60,122,.97) 0%, rgba(32,80,160,.94) 55%, rgba(16,120,200,.92) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero .roofline {
  position: absolute; inset: auto 0 0 0; height: 90px; width: 100%;
  color: var(--paper); display: block;
}
.hero .wrap {
  position: relative; z-index: 1;
  padding-top: 84px; padding-bottom: 150px;
  max-width: 860px; text-align: center;
}
.hero .kicker {
  font-size: 14px; letter-spacing: .3em; text-transform: uppercase;
  color: #9fd7fa; font-weight: 600; margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(34px, 5.4vw, 56px); line-height: 1.14; letter-spacing: .01em;
  margin-bottom: 22px;
}
.hero p.lede { font-size: 19.5px; max-width: 620px; margin: 0 auto 34px; color: #e8f2fd; }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  padding: 14px 30px; border-radius: 7px; font-size: 16.5px; letter-spacing: .03em;
}
.btn.solid { background: var(--sky); color: #fff; }
.btn.solid:hover { background: #0b8cd4; }
.btn.ghost { border: 2px solid rgba(255,255,255,.75); color: #fff; }
.btn.ghost:hover { background: rgba(255,255,255,.12); }
.btn.royal { background: var(--royal); color: #fff; }
.btn.royal:hover { background: var(--sky); }

/* ---------- sections ---------- */
section.block { padding: 72px 0; }
section.block.tint { background: var(--mist); }
.eyebrow {
  font-size: 13.5px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--sky); font-weight: 700; margin-bottom: 10px;
}
h2.title {
  font-family: var(--serif); font-weight: 700; color: var(--royal-dark);
  font-size: clamp(27px, 3.6vw, 38px); line-height: 1.2; margin-bottom: 18px;
}
.lead { font-size: 18.5px; max-width: 700px; color: #3a3d45; }

/* service cards */
.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px; margin-top: 40px;
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 28px 24px 26px; box-shadow: 0 2px 10px rgba(23,60,122,.05);
  border-top: 4px solid var(--sky);
}
.card .ico {
  width: 46px; height: 46px; color: var(--royal); margin-bottom: 14px;
}
.card h3 {
  font-family: var(--serif); color: var(--royal-dark); font-size: 20px;
  margin-bottom: 8px; letter-spacing: .02em;
}
.card p { font-size: 15.5px; color: #4a4d55; }

/* checklist / why us */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-top: 8px; }
ul.checks { list-style: none; margin-top: 22px; }
ul.checks li {
  padding-left: 36px; position: relative; margin-bottom: 15px; font-size: 17px;
}
ul.checks li strong { color: var(--royal-dark); }
ul.checks li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 22px; height: 22px;
  background: var(--sky); border-radius: 50%;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12L20.1 5.6z"/></svg>') center/16px no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M9.5 16.2 5.3 12l-1.4 1.4 5.6 5.6 12-12L20.1 5.6z"/></svg>') center/16px no-repeat;
}

/* photo gallery */
.gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px; margin-top: 38px;
}
.gallery figure {
  border-radius: 10px; overflow: hidden; border: 1px solid var(--line);
  background: var(--mist); aspect-ratio: 4 / 3;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; }

/* google reviews */
.gbadge {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid var(--line); border-radius: 50px;
  padding: 10px 22px; margin: 6px 0 8px; box-shadow: 0 2px 10px rgba(23,60,122,.07);
}
.gbadge .stars { display: flex; gap: 2px; }
.gbadge .stars svg { width: 20px; height: 20px; fill: #f6b921; }
.gbadge .score { font-weight: 700; font-size: 18px; color: var(--ink); }
.gbadge .count { font-size: 14.5px; color: var(--slate); }
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 32px; }
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 26px 26px 22px; box-shadow: 0 2px 10px rgba(23,60,122,.05);
  border-left: 5px solid #f6b921;
}
.quote .stars { display: flex; gap: 2px; margin-bottom: 12px; }
.quote .stars svg { width: 17px; height: 17px; fill: #f6b921; }
.quote p { font-size: 17px; color: #3a3d45; margin-bottom: 12px; }
.quote cite { font-style: normal; font-weight: 600; color: var(--royal-dark); font-size: 15px; }
.quote cite small { display: block; font-weight: 400; color: var(--slate); font-size: 13px; }
.glink { font-size: 15.5px; }
@media (max-width: 860px) { .quotes { grid-template-columns: 1fr; } }

/* call band */
.callband {
  background: linear-gradient(120deg, var(--royal-dark), var(--royal) 60%, #0b6fb8);
  color: #fff; text-align: center; padding: 60px 0;
}
.callband h2 {
  font-family: var(--serif); font-size: clamp(25px, 3.4vw, 34px); margin-bottom: 10px;
}
.callband p { color: #dcecfb; margin-bottom: 26px; font-size: 18px; }
.callband .phone {
  font-size: clamp(26px, 4vw, 38px); font-weight: 700; letter-spacing: .02em;
  color: #fff; text-decoration: none; display: inline-block; margin-bottom: 18px;
}
.callband .phone:hover { color: #9fd7fa; }

/* contact page */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 54px; margin-top: 34px; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-left: 5px solid var(--sky);
  border-radius: 10px; padding: 26px 26px 22px; margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(23,60,122,.05);
}
.contact-card h3 {
  font-family: var(--serif); color: var(--royal-dark); font-size: 19px; margin-bottom: 6px;
}
.contact-card a.big {
  font-size: 24px; font-weight: 700; text-decoration: none; color: var(--royal);
  overflow-wrap: anywhere;
}
.contact-card a.big:hover { color: var(--sky); }
.contact-card p { color: #4a4d55; font-size: 15.5px; }

/* footer */
footer.site {
  background: var(--royal-dark); color: #c9d8ee; padding: 46px 0 30px; font-size: 15px;
}
footer.site .cols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 32px;
}
footer.site h4 {
  color: #fff; font-family: var(--serif); font-size: 17px; letter-spacing: .05em; margin-bottom: 12px;
}
footer.site a { color: #c9d8ee; text-decoration: none; }
footer.site a:hover { color: #9fd7fa; }
footer.site ul { list-style: none; }
footer.site li { margin-bottom: 8px; }
footer.site .legal {
  border-top: 1px solid rgba(255,255,255,.16); padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13.5px; color: #9fb4d6;
}

/* mobile nav */
.nav-toggle { display: none; }
.mnav { display: none; }

/* mobile sticky call bar */
.mobile-call {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: var(--sky); color: #fff; text-align: center; text-decoration: none;
  font-weight: 700; font-size: 17px; padding: 15px 10px; letter-spacing: .03em;
  box-shadow: 0 -3px 12px rgba(0,0,0,.18);
}

/* page hero (interior pages) */
.page-hero {
  background: linear-gradient(150deg, var(--royal-dark), var(--royal));
  color: #fff; padding: 54px 0 58px; text-align: center;
}
.page-hero h1 {
  font-family: var(--serif); font-size: clamp(30px, 4.4vw, 44px); letter-spacing: .01em;
}
.page-hero p { color: #cfe4f9; max-width: 640px; margin: 12px auto 0; font-size: 18px; }

@media (max-width: 860px) {
  .split, .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  footer.site .cols { grid-template-columns: 1fr; gap: 26px; }
  nav.main { gap: 12px; }
  nav.main a:not(.cta) { display: none; }
  nav.main a.cta { padding: 9px 14px; font-size: 14px; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    background: none; border: 0; padding: 10px 8px; cursor: pointer;
  }
  .nav-toggle span {
    display: block; width: 25px; height: 3px; background: var(--royal); border-radius: 2px;
    transition: transform .18s ease, opacity .18s ease;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .mnav.open { display: block; background: #fff; border-top: 1px solid var(--line); }
  .mnav a {
    display: block; padding: 15px 24px; text-decoration: none; font-weight: 600;
    font-size: 16px; letter-spacing: .05em; text-transform: uppercase;
    color: var(--ink); border-bottom: 1px solid var(--line);
  }
  .mnav a[aria-current="page"] { color: var(--sky); }
  .mnav a:last-child { border-bottom: 0; }
  .mobile-call { display: block; font-size: 15.5px; padding: 13px 8px; }
  body { padding-bottom: 48px; }
  .topbar .est { display: none; }
  .brand img { height: 46px; }
  .brand .name { font-size: 16px; }
  .brand .name small { font-size: 9.5px; letter-spacing: .18em; }
}

@media (max-width: 520px) {
  .brand .name { display: none; }
  .brand img { height: 52px; }
}
