@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Lora:ital,wght@1,600&display=swap');

/* ---------- Base ---------- */
:root{
  --kw-red:#c40000;
  --kw-dark:#111;
  --kw-black:#0b0b0b;
  --kw-white:#fff;
}

*{box-sizing:border-box}
html,body{height:100%; min-height:100%;}
body{
  margin:0;
  font-family:'Montserrat',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--kw-white);

  /* GLOBAL BACKGROUND IMAGE */
  background-image:url('assets/bg.svg');
  background-position: top center;
  background-repeat: repeat-y;   /* continue down the page */
  background-size: cover;        /* cover width, keep proportions */
  background-attachment: fixed;  /* fixed while scrolling */

  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

.container{width:min(1100px,92vw);margin:0 auto}

/* ---------- Links (kill default blue) ---------- */
a{
  color:var(--kw-red);
  text-decoration:none;
  font-weight:600;
}
a:hover{ text-decoration:underline; }

/* ---------- HEADER / HERO ---------- */
.header{
  position:relative;
  background:transparent;       /* let body bg show through */
  padding:42px 0 28px;
  overflow:hidden;
}
header.header{ padding-top:160px; } /* lower the headline + sub slightly */

.wrap{display:flex;flex-direction:column;align-items:center;text-align:center}

.kicker{
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:700;
  font-size:.85rem;
  opacity:.9;
  margin-bottom:6px;
}

.h1{
  font-weight:900;
  font-size:clamp(28px,5.6vw,56px);
  line-height:1.05;
  margin:0 0 10px;
  text-shadow:0 8px 24px rgba(0,0,0,.35);
}

.sub{
  font-family:'Lora',serif;
  font-style:italic;
  font-size:clamp(18px,2.8vw,26px);
  margin:0 0 8px; /* tight to the buttons */
}

/* ---------- CTA ROW ---------- */
.ctaRow{
  display:grid;
  grid-template-columns:0.6fr auto 0.6fr; /* bring heads inward */
  align-items:end;                          /* keep bottoms aligned */
  column-gap:16px;
  width:100%;
  margin-top:6px;
}

/* Equalized hero faces (big) */
.heroFace{
  height:325px;
  width:auto;
  object-fit:contain;
  align-self:end;
  filter:drop-shadow(0 18px 28px rgba(0,0,0,.45));
  user-select:none;
  pointer-events:none;
  justify-self:center;
}

/* Buttons + badges move TOGETHER */
.ctaCluster{
  display:flex;
  flex-direction:column;
  align-items:center;
  transform: translateY(-60px);   /* raise whole block (buttons + badges) */
  will-change: transform;
}

/* Buttons row */
.buttons{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  transform: none;                /* no independent lift */
  z-index:1;
}

.buttons .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 26px;
  border-radius:8px;
  background:var(--kw-red);
  color:#fff;
  font-weight:800;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.02em;
  box-shadow:0 10px 22px rgba(0,0,0,.35);
  transition:transform .06s ease, filter .2s ease, background .2s ease;
}
.buttons .btn:hover{background:#a30000; transform:translateY(-1px)}
.buttons .btn:active{transform:translateY(0)}

/* Badges row (keeps the nice spacing under buttons) */
.badges{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
  margin-top:12px;
}
.badge{
  background:rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.16);
  padding:6px 12px;
  border-radius:20px;
  font-size:.92rem;
  font-weight:600;
  white-space:nowrap;
  color:#fff;
  text-decoration:none;
}

/* ---------- TRUST PANEL (no big black divider) ---------- */
.trust{ 
  background:transparent !important;  /* remove divider bar */
  padding:28px 0;
}
.panel{
  border:1px solid rgba(255,255,255,.12);
  background:#0b0b0b !important;     /* keep the panel itself black */
  border-radius:14px;
  padding:18px 22px;
  text-align:center;
}
.panel h3{margin:0 0 6px;font-size:1.25rem}
.panel p{margin:0;opacity:.9}

/* ---------- AGENTS ---------- */
.agents{padding:26px 0 6px}
.cards{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}
.card{
  display:flex;
  gap:12px;
  align-items:center;
  background:#0b0b0b !important;     /* solid black cards */
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  padding:12px;
}
/* equalize bottom headshots (Greg/Tonya) */
.card img{
  height:120px;        /* consistent portrait height */
  width:auto;
  border-radius:8px;
  object-fit:contain;
}
.card .meta h4{margin:.1rem 0;font-size:1.05rem}
.card .role{opacity:.8;font-size:.92rem;margin-bottom:6px}
.card .phone a{margin-right:10px;}

/* logos row */
.logoRow{
  display:flex;flex-wrap:wrap;justify-content:center;gap:12px;
  margin:14px 0 0; opacity:.9;
}
.logo{
  padding:6px 10px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:8px;
  background:#0b0b0b !important;     /* keep logo chips black */
  font-size:.92rem
}

/* ---------- FORM ---------- */
.formwrap{
  margin:22px auto 28px;
  padding:16px;
  background:#0b0b0b !important;     /* black form container */
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
}
form label{display:block;font-size:.9rem;margin:0 0 6px}

/* Inputs WHITE with black text */
input,select,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.18);
  background:#fff !important;
  color:#000 !important;
}
textarea{min-height:110px;resize:vertical}
.consent{display:block;margin:10px 0;font-size:.85rem;opacity:.9;color:#fff;}
.small{font-size:.9rem;opacity:.9;color:#fff;}

/* ---------- Footer ---------- */
footer{
  padding:26px 0 40px;
  background:#0b0b0b !important;     /* solid black footer */
  opacity:.95;
}

/* ---------- Responsive (your original) ---------- */
@media (max-width:980px){
  header.header{ padding-top:100px; }

  .ctaRow{
    grid-template-columns:1fr;
    align-items:center;
    column-gap:12px;
    gap:12px;
  }

  .heroFace{ height:240px; }
  .ctaCluster{ transform:translateY(-26px); }

  .buttons .btn{padding:13px 18px;font-size:.92rem}
  .badge{font-size:.88rem}
  .cards{grid-template-columns:1fr}
  .card img{height:110px}
}

/* ---------- MOBILE-ONLY ADDITIONS (show per-photo call buttons + top CTA) ---------- */
.cta-top-mobile,
.call-tonya-mobile,
.call-greg-mobile{ display:none; } /* keep hidden on desktop */

@media (max-width:980px){
  /* Show mobile top Get Started */
  .cta-top-mobile{
    display:block;
    text-align:center;
    margin:18px 0 4px;
  }
  .btn-get-started-mobile{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 26px;
    border-radius:8px;
    background:var(--kw-red);
    color:#fff;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.02em;
    box-shadow:0 10px 22px rgba(0,0,0,.35);
    border:0;
  }

  /* Hide the center cluster's call buttons on mobile only */
  .buttons .btn-call-tonya,
  .buttons .btn-call-greg,
  .buttons .btn-get-started{ display:none; }

  /* Show per-photo call buttons on mobile */
  .call-tonya-mobile,
  .call-greg-mobile{
    display:inline-flex;
    margin:6px auto 0;
    padding:14px 26px;
    border-radius:8px;
    background:var(--kw-red);
    color:#fff;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.02em;
    box-shadow:0 10px 22px rgba(0,0,0,.35);
    border:0;
  }

  /* Optional: keep the hero cluster from overlapping after stack */
  .ctaCluster{ transform:none; }
}

/* ---------- DESKTOP: push agents below the fold ---------- */
@media (min-width:1100px){
  .trust{
    /* Increase bottom padding so the first screen ends after the black bar */
    padding-bottom: clamp(120px, 22vh, 280px);
  }
}