/* =========================================================
   Guidance Consulting LLC — Premium Teal Theme (Cleaned)
   Cards: transparent-on-teal (premium look)
   ========================================================= */

/* =========================================================
   Guidance Consulting LLC
   Corporate Executive Theme
   Premium Transparent-on-Teal Design
   ========================================================= */

:root{
  --bg: #0F4C5C;
  --bg2:#0B3E46;
  --card: rgba(255,255,255,.10);
  --card-soft: rgba(255,255,255,.06);
  --text:#ffffff;
  --muted: rgba(255,255,255,.82);
  --border: rgba(255,255,255,.18);
  --shadow: 0 12px 32px rgba(0,0,0,.25);

  --btn-bg:#000000;
  --btn-text:#ffffff;
}

/* ===== Base ===== */

*{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0.2px;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg), var(--bg2));
}

a{ text-decoration:none; color:inherit; }

.container{
  width:min(1100px, 92%);
  margin:0 auto;
}

/* ===== Header ===== */

.site-header{
  position:sticky;
  top:0;
  z-index:10;
  background: rgba(15,76,92,.90);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
}

.brand{
  display:flex;
  align-items:center;
}

.brand-text{
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text);
}

/* ===== Navigation ===== */

.nav{
  display:flex;
  gap:14px;
  align-items:center;
}

.nav .btn{
  padding:8px 14px;
  font-size:14px;
  border-radius:10px;
}

/* ===== Hero ===== */

.hero{
  padding:80px 0 40px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:32px;
  align-items:start;
}

h1{
  font-size: clamp(40px, 5vw, 56px);
  line-height:1.15;
  font-weight:700;
  margin:0 0 20px;
}

.lead{
  font-size:18px;
  color:var(--muted);
  line-height:1.7;
  margin:0 0 22px;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin:22px 0;
}

/* ===== Trust Row ===== */

.trust-row{
  list-style:none;
  padding:0;
  margin:22px 0 0;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.trust-row li{
  border:1px solid var(--border);
  padding:8px 14px;
  border-radius:999px;
  color: var(--muted);
  background: rgba(255,255,255,.05);
}

/* ===== Sections ===== */

.section{
  padding:70px 0;
}

.section-alt{
  background: rgba(255,255,255,.04);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

.section-head h2{
  font-size: clamp(28px, 3vw, 36px);
  font-weight:700;
  margin:0 0 8px;
}

.section-head p{
  color:var(--muted);
  max-width:70ch;
  line-height:1.7;
  margin:0 0 28px;
}

/* ===== Layout Grids ===== */

.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
}

.grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:20px;
}

/* ===== Cards ===== */

.card{
  background: var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-card{
  background: var(--card-soft);
}

/* ===== Checklist ===== */

.checklist{
  list-style:none;
  padding:0;
  margin:0;
}

.checklist li{
  position:relative;
  padding-left:26px;
  margin:12px 0;
  color:var(--muted);
}

.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:#ffffff;
  font-weight:bold;
}

/* ===== Buttons ===== */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.25);
  background: var(--btn-bg);
  color: var(--btn-text);
  font-weight:700;
  cursor:pointer;
  transition: all .15s ease;
}

.btn:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn:active{
  transform: translateY(0);
}

.btn-ghost{
  background: transparent;
  color: var(--text);
  border:1px solid rgba(255,255,255,.8);
}

.btn-ghost:hover{
  background: rgba(255,255,255,.08);
}

/* ===== Contact ===== */

.muted{
  color:var(--muted);
}

.contact-list{
  display:grid;
  gap:1rem;
  margin-top:1rem;
}

.contact-item{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  padding:0.8rem 0;
  border-bottom:1px solid var(--border);
}

.contact-item:last-child{
  border-bottom:none;
}

.contact-label{
  font-weight:600;
}

.contact-link:hover{
  text-decoration:underline;
}

.tiny{
  font-size:0.9rem;
  color:rgba(255,255,255,.75);
}

/* ===== Footer ===== */

.site-footer{
  border-top:1px solid var(--border);
  padding:28px 0;
  background: rgba(0,0,0,.18);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
}

.footer-links{
  display:flex;
  gap:14px;
}

.footer-links a{
  color:rgba(255,255,255,.75);
}

.footer-links a:hover{
  color:#ffffff;
}

/* ===== Responsive ===== */

@media (max-width: 900px){

  .hero-grid,
  .two-col,
  .grid{
    grid-template-columns:1fr;
  }

  h1{
    font-size: clamp(34px, 6vw, 44px);
  }

  .brand-text{
    font-size: clamp(24px, 5vw, 30px);
  }
}
