/* ============ J.V. Construction, LLC ============ */
:root {
  --red: #c11b22;
  --red-dark: #9e141a;
  --black: #141414;
  --gray: #58595b;
  --gray-light: #f5f5f4;
  --white: #ffffff;
  --font-head: "Montserrat", "Arial Black", sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
}
section[id] { scroll-margin-top: 80px; }
img { max-width: 100%; display: block; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-head); line-height: 1.15; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; }
.center { text-align: center; }

.eyebrow {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .12em;
  color: var(--red);
  margin-bottom: .5rem;
}
.eyebrow.light { color: #ff8a8f; }
.section-note { color: var(--gray); max-width: 640px; margin: .75rem auto 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .06em;
  text-decoration: none;
  border-radius: 999px;
  padding: .85rem 1.9rem;
  transition: all .18s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-red { background: var(--red); color: #fff; border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline:hover { background: var(--red); color: #fff; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 8px rgba(0,0,0,.08);
}
.header-inner {
  display: flex; align-items: center; gap: 28px;
  padding-top: 14px; padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark { width: 74px; height: 37px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-head); font-weight: 900;
  font-size: 1.02rem; color: var(--black); letter-spacing: .01em;
  white-space: nowrap;
}
.brand-tag {
  font-family: var(--font-head); font-weight: 700;
  font-size: .72rem; color: var(--red); letter-spacing: .04em;
}
.site-nav { display: flex; gap: 26px; margin-left: auto; }
.site-nav a {
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .05em; text-decoration: none; color: var(--black);
  padding: 6px 0; border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a.active { color: var(--red); border-bottom-color: var(--red); }
.btn-phone { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.btn-phone svg { width: 16px; height: 16px; }

/* Mobile nav */
.nav-toggle { display: none; }
.nav-toggle-label { display: none; cursor: pointer; margin-left: auto; }
.nav-toggle-label span {
  display: block; width: 26px; height: 3px; background: var(--black);
  margin: 5px 0; border-radius: 2px; transition: all .2s;
}

/* ---------- Hero ---------- */
.hero { background: var(--white); overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 5fr 6fr; gap: 42px;
  align-items: center; padding-top: 56px; padding-bottom: 64px;
}
.hero h1 {
  font-size: clamp(2.1rem, 9vw, 4.1rem);
  font-weight: 900; letter-spacing: .01em;
}
.line-black { color: var(--black); }
.line-red { color: var(--red); }
.red-dash { width: 64px; height: 5px; background: var(--red); margin: 18px 0; }
.hero-sub {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1rem, 1.8vw, 1.25rem); color: var(--black);
  line-height: 1.35; margin-bottom: 14px;
}
.hero-sub strong { color: var(--black); }
.hero-body { color: var(--gray); max-width: 430px; margin-bottom: 26px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%; height: 430px; object-fit: cover;
  border-radius: 6px;
}
.licensed-badge {
  position: absolute; top: 18px; right: 18px;
  font-family: var(--font-head); text-align: left;
  box-shadow: 0 6px 22px rgba(0,0,0,.35);
  border-radius: 4px; overflow: hidden; min-width: 250px;
}
.badge-top {
  background: var(--black); color: #fff;
  display: flex; align-items: center; gap: 9px;
  font-weight: 800; font-size: .95rem; letter-spacing: .03em;
  padding: 11px 16px;
}
.badge-top svg { width: 21px; height: 21px; color: #fff; }
.badge-bottom {
  background: var(--red); color: #fff;
  font-weight: 700; font-size: .68rem; letter-spacing: .1em;
  padding: 7px 16px;
}

/* ---------- Feature bar ---------- */
.feature-bar { background: var(--red); color: #fff; }
.feature-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-top: 34px; padding-bottom: 34px; gap: 28px;
}
.feature { display: flex; gap: 14px; align-items: flex-start; }
.feature:not(:first-child) { border-left: 1px solid rgba(255,255,255,.35); padding-left: 28px; }
.feature svg { width: 44px; height: 44px; flex-shrink: 0; color: #fff; }
.feature h3 { font-size: .92rem; font-weight: 800; letter-spacing: .04em; margin-bottom: 4px; }
.feature p { font-size: .85rem; opacity: .95; line-height: 1.45; }

/* ---------- What we do ---------- */
.what-we-do { padding: 72px 0; }
.wwd-inner { display: grid; grid-template-columns: 4fr 7fr; gap: 48px; align-items: center; }
.wwd-copy h2 { margin-bottom: 16px; }
.wwd-copy p:not(.eyebrow) { color: var(--gray); margin-bottom: 24px; }
.wwd-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.wwd-card { position: relative; border-radius: 6px; overflow: hidden; box-shadow: 0 8px 26px rgba(0,0,0,.14); }
.wwd-card img { height: 330px; width: 100%; object-fit: cover; }
.wwd-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,.86); color: #fff; padding: 16px 18px;
}
.wwd-card figcaption h3 { font-size: .95rem; font-weight: 800; letter-spacing: .04em; margin-bottom: 5px; }
.wwd-card figcaption p { font-size: .83rem; opacity: .92; line-height: 1.45; }

/* ---------- Services detail ---------- */
.services-detail { background: var(--gray-light); padding: 72px 0; }
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-top: 40px;
}
.service-card {
  background: #fff; border-radius: 6px; padding: 28px 22px;
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
  border-top: 4px solid var(--red);
}
.service-card svg { width: 42px; height: 42px; color: var(--red); margin-bottom: 14px; }
.service-card h3 { font-size: 1.02rem; font-weight: 800; margin-bottom: 10px; }
.service-card p { font-size: .88rem; color: var(--gray); }

/* ---------- About ---------- */
.about { padding: 72px 0; }
.about-inner { display: grid; grid-template-columns: 5fr 6fr; gap: 48px; align-items: center; }
.about-photo img { border-radius: 6px; height: 480px; width: 100%; object-fit: cover; }
.about-copy h2 { margin-bottom: 16px; }
.about-copy > p { color: var(--gray); margin-bottom: 14px; }
.about-facts { list-style: none; margin: 18px 0 26px; }
.about-facts li { padding-left: 26px; position: relative; margin-bottom: 10px; color: var(--gray); }
.about-facts li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 12px; height: 12px; background: var(--red);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transform: rotate(45deg); border-radius: 2px;
}
.about-facts strong { color: var(--black); }
.about-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-head); font-weight: 900; font-size: 1.7rem; color: var(--red); }
.stat-label { font-size: .8rem; color: var(--gray); letter-spacing: .03em; }

/* ---------- Work ---------- */
.work { background: var(--gray-light); padding: 72px 0; }
.work-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
.work-grid img {
  width: 100%; height: 260px; object-fit: cover; border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0,0,0,.10);
  transition: transform .2s ease;
}
.work-grid img:hover { transform: scale(1.02); }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--black); color: #fff; padding: 72px 0; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 40px; }
.testimonial {
  background: #1f1f1f; border-radius: 6px; padding: 28px 24px;
  border-left: 4px solid var(--red);
}
.testimonial p { font-size: .95rem; line-height: 1.65; opacity: .95; }
.testimonial footer {
  margin-top: 16px; font-family: var(--font-head);
  font-weight: 700; font-size: .8rem; color: #ff8a8f; letter-spacing: .04em;
}

/* ---------- Contact ---------- */
.contact { padding: 72px 0; }
.contact-inner { display: grid; grid-template-columns: 5fr 6fr; gap: 48px; align-items: start; }
.contact-copy h2 { margin-bottom: 14px; }
.contact-copy > p { color: var(--gray); margin-bottom: 24px; }
.contact-list { list-style: none; }
.contact-list li { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.contact-list svg { width: 21px; height: 21px; color: var(--red); flex-shrink: 0; }
.contact-list a { color: var(--black); font-weight: 600; text-decoration: none; }
.contact-list a:hover { color: var(--red); }

.contact-form {
  background: var(--gray-light); border-radius: 8px; padding: 32px;
  border-top: 5px solid var(--red);
}
.contact-form label {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: .78rem; letter-spacing: .05em; color: var(--black);
  margin-bottom: 16px;
}
.contact-form input, .contact-form select, .contact-form textarea {
  display: block; width: 100%; margin-top: 6px;
  font-family: var(--font-body); font-size: .95rem;
  padding: 11px 13px; border: 1px solid #d8d8d6; border-radius: 5px;
  background: #fff; color: var(--black);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: 2px solid var(--red); outline-offset: 0; border-color: var(--red);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hidden-field { display: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: #fff; }
.footer-grid {
  display: grid; grid-template-columns: repeat(4, auto);
  justify-content: space-between; gap: 22px;
  padding-top: 26px; padding-bottom: 26px;
}
.footer-item { display: flex; align-items: center; gap: 10px; font-size: .9rem; font-weight: 600; }
.footer-item svg { width: 20px; height: 20px; color: #fff; }
.footer-item a { color: #fff; text-decoration: none; }
.footer-item a:hover { color: #ff8a8f; }
.footer-strip {
  background: var(--red); color: #fff; text-align: center;
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem;
  padding: 13px 20px; letter-spacing: .02em;
}
.footer-legal {
  text-align: center; font-size: .78rem; color: #9a9a9a;
  padding-top: 14px; padding-bottom: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner, .wwd-inner, .about-inner, .contact-inner { grid-template-columns: 1fr; }
  .hero-photo img { height: 340px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature:not(:first-child) { border-left: none; padding-left: 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .about-photo img { height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; justify-content: start; }
}

@media (max-width: 820px) {
  .site-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; gap: 0;
    box-shadow: 0 10px 20px rgba(0,0,0,.12);
  }
  .site-nav a { padding: 14px 24px; border-bottom: 1px solid #eee; }
  .nav-toggle:checked ~ .site-nav { display: flex; }
  .nav-toggle-label { display: block; order: 3; }
  .btn-phone { margin-left: auto; order: 2; padding: .7rem 1.2rem; }
  .header-inner { flex-wrap: nowrap; gap: 14px; position: relative; }
  .brand-name { font-size: .88rem; }
}

@media (max-width: 640px) {
  .header-inner { gap: 10px; padding-top: 10px; padding-bottom: 10px; }
  .brand-mark { width: 48px; height: 24px; }
  .brand-name { font-size: .78rem; }
  .brand-tag { display: none; }
  .btn-phone .phone-num { display: none; }
  .btn-phone { padding: .7rem .8rem; }
  .btn-phone svg { width: 18px; height: 18px; }
}

@media (max-width: 560px) {
  .work-grid, .services-grid, .feature-grid, .form-row { grid-template-columns: 1fr; }
  .wwd-cards { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 36px; padding-bottom: 44px; }
  .licensed-badge { min-width: 0; right: 12px; top: 12px; }
  .badge-top { font-size: .8rem; padding: 9px 12px; }
  .badge-bottom { font-size: .6rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 14px; }
  .footer-item { font-size: .85rem; }
  .footer-item a { word-break: break-all; }
  .contact-form { padding: 22px 18px; }
}
