:root{
  --bg:#0b0b0d;
  --panel:#121217;
  --panel2:#16161d;
  --text:#f2f2f4;
  --muted:#b7b7c2;
  --line:rgba(255,255,255,.10);
  --accent:#e61d2b;          /* brand red vibe */
  --accent2:#ff3a49;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 20% 0%, rgba(230,29,43,.20), transparent 55%),
              radial-gradient(900px 500px at 80% 10%, rgba(255,58,73,.12), transparent 60%),
              var(--bg);
  color:var(--text);
}

a{ color:inherit; }
img{ max-width:100%; display:block; }

.wrap{
  width:min(1120px, 92vw);
  margin:0 auto;
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(11,11,13,.65);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
}
.brand__logo{
  width:44px; height:44px;
  border-radius:12px;
  object-fit:cover;
  border:1px solid var(--line);
}
.brand__text{ line-height:1.1; }
.brand__name{ font-weight:900; letter-spacing:.5px; display:block; }
.brand__tag{ color:var(--muted); font-size:14px; display:block; }

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
}
.nav a:hover{ color:var(--text); }

.navToggle{
  display:none;
  background:transparent;
  border:1px solid var(--line);
  border-radius:12px;
  padding:10px;
}
.navToggle span{
  display:block;
  width:22px; height:2px;
  background:var(--text);
  margin:4px 0;
  border-radius:2px;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: var(--shadow);
}
.btn--ghost{
  background: rgba(255,255,255,.06);
  box-shadow:none;
}
.btn--small{
  padding:10px 14px;
  font-weight:800;
}

/* Hero */
.hero{
  padding:44px 0 28px;
}

/* ✅ IMPORTANT: grid areas force desktop layout even if markup order is media first */
.hero__inner{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:26px;
  align-items:stretch;
  grid-template-areas: "copy media"; /* desktop: text left, image right */
}
.hero__copy{ grid-area: copy; }
.hero__media{ grid-area: media; }

.pill{
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color:var(--muted);
  font-weight:700;
  width:fit-content;
}
.hero h1{
  font-size: clamp(32px, 3.6vw, 52px);
  margin:14px 0 10px;
  letter-spacing:-.5px;
}
.hero__sub{
  margin:0 0 18px;
  color:var(--muted);
  font-size:18px;
  line-height:1.55;
}
.hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:18px;
}
.hero__trust{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.trustItem{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius:14px;
  padding:12px 12px;
  min-width: 150px;
}
.trustItem strong{ display:block; font-size:16px; }
.trustItem span{ color:var(--muted); font-size:14px; }

.hero__media{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background: linear-gradient(135deg, rgba(230,29,43,.12), rgba(0,0,0,.20));
  box-shadow: var(--shadow);
  min-height: 420px;
}

.hero__img{
  width:100%;
  height:100%;
  object-fit: contain;
  object-position: center;
  background: #0b0b0d;
  padding: 22px;
  filter: none;
}

.hero__badge{
  position:absolute;
  left:14px;
  bottom:14px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.14);
}
.hero__badge img{
  width:48px; height:48px;
  object-fit:contain;
  background: rgba(255,255,255,.90);
  border-radius: 10px;
  padding:6px;
}
.hero__badge span{
  font-weight:800;
  line-height:1.2;
}

/* Sections */
.section{
  padding:56px 0;
}
.section--alt{
  background: rgba(255,255,255,.03);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{
  margin-bottom:22px;
}
.section__head h2{
  font-size: clamp(24px, 2.2vw, 34px);
  margin:0 0 10px;
}
.section__head p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  max-width: 70ch;
}

/* Grids & Cards */
.grid{
  display:grid;
  gap:16px;
}
.services{
  grid-template-columns: repeat(3, 1fr);
}
.card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius: var(--radius);
  padding:18px 18px 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
}
.card h3{ margin:0 0 8px; }
.card p{ color:var(--muted); margin:0 0 10px; line-height:1.55; }
.card ul{
  margin:0; padding-left: 18px;
  color:var(--muted);
}
.card li{ margin:6px 0; }

/* =========================================
   AWARD / CREDIBILITY SECTION
========================================= */

.credibility {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

/* LEFT COLUMN */

.cred__left h2 {
  margin-bottom: 10px;
}

.cred__left p {
  color: var(--muted);
  margin-bottom: 20px;
}

.credReviews {
  display: grid;
  gap: 14px;
}

.credReviewCard {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0,0,0,.22);
  padding: 16px;
  transition: border-color .2s ease, transform .2s ease;
}

.credReviewCard:hover {
  border-color: rgba(255,255,255,.25);
  transform: translateY(-2px);
}

.credReviewTop {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.credReviewName {
  font-size: 16px;
}

.credReviewMeta {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.credReviewText {
  margin: 0;
  line-height: 1.6;
}

.credChip {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  font-weight: 700;
  white-space: nowrap;
}

/* RIGHT COLUMN */

.cred__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.awardCard {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}

.awardCard img {
  width: 90px;
  height: auto;
  object-fit: contain;
  background: rgba(255,255,255,.92);
  border-radius: 14px;
  padding: 10px;
}

.awardCard h3 {
  margin: 0 0 4px;
}

.awardCard p {
  margin: 0;
  color: var(--muted);
}

/* Featured review (James K) */

.featuredAngi {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(
    135deg,
    rgba(230,29,43,.15),
    rgba(255,255,255,.03)
  );
  box-shadow: 0 12px 28px rgba(0,0,0,.25);
}

.featuredAngiTop {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.featuredAngiName {
  font-size: 18px;
  font-weight: 800;
}

.featuredAngiMeta {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.featuredAngiText {
  margin: 0 0 16px;
  line-height: 1.65;
}

.featuredAngiFooter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================================
   MOBILE FIX
========================================= */

@media (max-width: 980px) {
  .credibility {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cred__right {
    order: 2;
  }

  .cred__left {
    order: 1;
  }

  .featuredAngiFooter {
    justify-content: flex-start;
  }
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.shot{
  border:none;
  padding:0;
  background:transparent;
  border-radius: 16px;
  overflow:hidden;
  border:1px solid var(--line);
  cursor:pointer;
}
.shot img{
  width:100%;
  height: 220px;
  object-fit:cover;
  transition: transform .25s ease;
}
.shot:hover img{ transform: scale(1.03); }

.ctaStrip{
  margin-top:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: linear-gradient(135deg, rgba(230,29,43,.18), rgba(255,255,255,.03));
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.ctaStrip h3{ margin:0 0 6px; }
.ctaStrip p{ margin:0; color:var(--muted); }
.ctaStrip__actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* Testimonials */
.testimonials{
  grid-template-columns: repeat(3, 1fr);
}
.quote{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  background: rgba(0,0,0,.20);
}
.quote p{
  margin:0 0 12px;
  color:var(--text);
  line-height:1.6;
  font-size:16px;
}
.quote span{
  color:var(--muted);
  font-weight:700;
}

/* About */
.about{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
}
.about__list{
  display:grid;
  gap:12px;
  margin-top:14px;
}
.aboutItem{
  border:1px solid var(--line);
  border-radius: 16px;
  padding:14px;
  background: rgba(255,255,255,.03);
}
.aboutItem p{ margin:6px 0 0; color:var(--muted); }

.infoCard{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  background: rgba(0,0,0,.22);
}
.infoCard h3{ margin:0 0 6px; }
.infoCard p{ margin:0 0 12px; color:var(--muted); }
.infoCard hr{
  border:0;
  border-top:1px solid var(--line);
  margin:14px 0;
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  align-items:start;
}
.contactButtons{ display:flex; gap:10px; flex-wrap:wrap; margin:14px 0 12px; }
.fineprint p{ margin:8px 0 0; color:var(--muted); }

.contact__form{
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  background: rgba(0,0,0,.22);
}
.contact__form label{
  display:grid;
  gap:6px;
  margin-bottom:12px;
  color:var(--muted);
  font-weight:700;
}
.contact__form input,
.contact__form select,
.contact__form textarea{
  width:100%;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  padding:12px 12px;
  font-size:15px;
  outline:none;
}
.contact__form textarea{ resize: vertical; }
.formNote{
  margin:10px 0 0;
  color:var(--muted);
  font-size:13px;
}

/* ✅ Dropdown text visibility */
.contact__form select{
  appearance: none;
}
.contact__form select option{
  color: #000000;
  background: #ffffff;
}
select{ color-scheme: dark; }

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  background: rgba(0,0,0,.25);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.footer__logo{
  width:44px; height:44px;
  border-radius: 12px;
  border:1px solid var(--line);
  object-fit:cover;
}
.footer__left{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer__left p{
  margin:0;
  color:var(--muted);
  line-height:1.5;
}
.footer__right{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
  color:var(--muted);
}
.footer__right a{
  text-decoration:none;
  font-weight:800;
  color:var(--text);
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,.82);
  z-index:200;
  padding:18px;
  display:none;
}
.lightbox.is-open{ display:flex; }

.lightbox__img{
  max-width:min(1100px, 96vw);
  max-height: 86vh;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: var(--shadow);
}
.lightbox__close{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: var(--text);
  font-size:18px;
  cursor:pointer;
}

/* Angi / review bits (kept for compatibility if you still use them) */
.angiHeader{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin: 10px 0 14px;
  padding: 14px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0,0,0,.18);
}
.ratingPill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  margin-bottom:8px;
}
.stars{ letter-spacing:1px; font-size: 14px; }

.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid var(--line);
  background: rgba(0,0,0,.25);
  color: var(--text);
  font-weight: 800;
  font-size: 13px;
  white-space: nowrap;
}

.muted{ color: var(--muted); }
.small{ font-size: 13px; }


/* Responsive */
@media (max-width: 980px){
  /* ✅ Mobile order: media first, then copy */
  .hero__inner{
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "copy";
  }

  .hero__media{ min-height: 280px; }
  .hero__img{ padding: 14px; }

  .credibility{ grid-template-columns: 1fr; }
  .about{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .services{ grid-template-columns: repeat(2, 1fr); }
  .testimonials{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(2, 1fr); }
  .shot img{ height: 240px; }
}

@media (max-width: 720px){
  .nav{
    position:fixed;
    top:64px;
    right:14px;
    left:14px;
    flex-direction:column;
    gap:12px;
    padding:14px;
    border-radius: 18px;
    border:1px solid var(--line);
    background: rgba(12,12,16,.95);
    display:none;
  }
  .nav.is-open{ display:flex; }
  .navToggle{ display:block; }

  .services{ grid-template-columns: 1fr; }
  .ctaStrip{ flex-direction:column; align-items:flex-start; }

  .mobileBar{ display: flex; }
  body{ padding-bottom: 92px; }
}
/* Award section CTA spacing fix (mobile) */
@media (max-width: 720px){

  .awardSection__actions,
  .credActions,
  .featuredAngiFooter {
    display: flex;
    flex-direction: column;
    gap: 14px;              /* adds clean spacing between buttons */
    margin-top: 18px;
  }

  .awardSection__actions .btn,
  .credActions .btn,
  .featuredAngiFooter .btn {
    width: 100%;            /* full width buttons on mobile */
    justify-content: center;
  }

}
