:root{
  /* Brand colors from Kloos Enterprises logo */
  --sage: #379A49;      /* logo green (replaces old sage) */
  --sage-dark: #2D7E3B; /* deeper green for hover/shadows */
  --blue: #003270;      /* logo navy */
  --teal: #1E6D58;      /* optional accent from the ring */

  /* Neutrals */
  --tan: #B8A398;
  --ink: #003270;       /* switch text to logo blue */
  --muted: #33506B;     /* softer blue-gray for secondary text */
  --paper: #fbfaf7;
  --soft: #f2f0ea;
  --white: #ffffff;

  --shadow: 0 14px 40px rgba(0,0,0,.08);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }

body{
  font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

h1,h2,h3{
  font-family: "Playfair Display", Georgia, serif;
  margin: 0 0 10px 0;
  letter-spacing: .2px;
  color: var(--blue);
}
h1{ font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.12; }
h2{ font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3{ font-size: 1.25rem; }

a{ color: var(--sage); text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.muted{ color: var(--muted); }
.tiny{ font-size: .92rem; }

.eyebrow{
  display:inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(55,154,73,.12); /* logo green tint */
  color: var(--sage);
  font-weight: 700;
  margin-bottom: 12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--sage);
  color: var(--white);
  font-weight: 700;
  border: 2px solid var(--sage);
  text-decoration:none;
  box-shadow: 0 10px 24px rgba(55,154,73,.20); /* updated shadow */
}
.btn:hover{ filter: brightness(.98); text-decoration:none; }
.btn-ghost{
  background: transparent;
  color: var(--sage);
  box-shadow: none;
}
.btn-small{ padding: 10px 12px; font-size: .95rem; }

.badge{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid rgba(0,0,0,.06);
  color: var(--muted);
  font-weight: 700;
  font-size: .9rem;
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251,250,247,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  color: var(--ink);
  text-decoration:none;
}
.brand:hover{ text-decoration:none; }

.brand-mark{
  width: 38px; height: 38px;
  border-radius: 12px;
  background: rgba(0,50,112,.10); /* subtle logo-blue tint */
  display:grid;
  place-items:center;
  font-weight: 900;
  color: var(--blue);
}

.brand-name{
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
}

.nav{
  display:flex;
  align-items:center;
  gap: 18px;
}
.nav a{ color: var(--ink); font-weight: 700; }
.nav a.btn{ color: var(--white); }

.nav-toggle{
  display:none;
  background: transparent;
  border: 0;
  font-size: 1.4rem;
  padding: 8px 10px;
  border-radius: 12px;
}

.mobile-nav{
  display:none;
  padding: 10px 0 16px 0;
  border-top: 1px solid rgba(0,0,0,.06);
}
.mobile-nav a{
  display:block;
  padding: 10px 0;
  font-weight: 800;
  color: var(--ink);
}
.mobile-nav a.btn{ margin-top: 8px; }

.hero{
  padding: 58px 0 24px 0;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 26px;
  align-items:start;
}

.subhead{
  font-size: 1.08rem;
  color: var(--muted);
  margin: 0 0 18px 0;
}

.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0 18px 0;
}

.hero-badges{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-card{
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.hero-card-inner{
  padding: 20px;
}

.quick-links{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 12px 0 6px 0;
}

.quick{
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.06);
  background: rgba(242,240,234,.6);
  color: var(--ink);
  font-weight: 800;
}
.quick:hover{ text-decoration:none; border-color: rgba(55,154,73,.35); }

.section{
  padding: 52px 0;
}

.section-soft{
  background: linear-gradient(180deg, rgba(242,240,234,.85), rgba(251,250,247,1));
  border-top: 1px solid rgba(0,0,0,.05);
  border-bottom: 1px solid rgba(0,0,0,.05);
}

.section-head{
  margin-bottom: 18px;
}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card{
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  padding: 18px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height: 170px;
}
.card-top p{ margin: 6px 0 0 0; }

.card-actions{
  display:flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.note{
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(184,163,152,.18);
  border: 1px solid rgba(0,0,0,.06);
}

.featured{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.featured-item{
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}
.featured-item p{ margin: 6px 0 12px 0; }

.contact-box{
  padding: 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.site-footer{
  padding: 20px 0 34px 0;
  border-top: 1px solid rgba(0,0,0,.06);
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .featured{ grid-template-columns: 1fr; }
}

@media (max-width: 740px){
  .nav{ display:none; }
  .nav-toggle{ display:inline-flex; }
  .mobile-nav.open{ display:block; }
  .grid{ grid-template-columns: 1fr; }
}

/* ---- SMS form controls (addon) ---- */
.field { margin-top: 12px; }

label{ font-weight: 800; }

.input{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(242,240,234,.55);
  color: var(--ink);
  outline: none;
}
.input:focus{
  border-color: rgba(55,154,73,.60);
  box-shadow: 0 0 0 4px rgba(55,154,73,.14);
  background: var(--white);
}

.checkline{
  display:flex;
  gap: 10px;
  align-items:flex-start;
  margin-top: 12px;
  font-weight: 700;
}

.checkline input{ margin-top: 4px; }

.form-actions{
  margin-top: 14px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
/* ===== Premium lift + signature blocks (KE upgrades) ===== */

/* Keep header height stable with logo image */
.brand-name img{
  display:block;
  height: 40px;
  width: auto;
  max-width: 260px;
}

/* Button lift (consistent with your preference) */
.btn{
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}
.btn:active{
  transform: translateY(-1px);
}

/* Ghost button should lift too (subtle) */
.btn-ghost:hover{
  background: rgba(55,154,73,.10);
  border-color: rgba(55,154,73,.35);
}

/* Cards + featured items get a subtle lift for premium feel */
.card, .featured-item, .hero-card{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover, .featured-item:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0,0,0,.10);
  border-color: rgba(55,154,73,.22);
}

/* Quick links: give them a slight lift and nicer hover */
.quick{
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.quick:hover{
  transform: translateY(-2px);
  background: rgba(55,154,73,.08);
  border-color: rgba(55,154,73,.30);
}

/* Signature “Start Here” section styling without new markup changes */
#start-here .featured-item{
  position: relative;
  overflow: hidden;
}
#start-here .featured-item::before{
  content:"";
  position:absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 10%, rgba(55,154,73,.10), transparent 55%);
  pointer-events:none;
}

/* Mission blocks look a bit more “anchored” */
#mission .featured-item{
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(242,240,234,.45));
}

/* Smooth anchor scrolling */
html{
  scroll-behavior: smooth;
}

/* ===== Start Here badge line ===== */
.start-note{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 10px;
}

.start-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(55,154,73,.10);
  border: 1px solid rgba(55,154,73,.18);
  color: var(--sage-dark);
  font-weight: 800;
  font-size: .92rem;
}
/* Make Begin Again feel like the signature card */
.featured-primary{
  border-color: rgba(55,154,73,.28);
  box-shadow: 0 16px 36px rgba(55,154,73,.14);
}

