:root{
  --bg:#0b1220;
  --panel:#0f1a30;
  --text:#eef2ff;
  --muted:#aab4d6;
  --border:rgba(255,255,255,.12);
  --accent:#ff4d6d;
  --accent2:#4dd4ff;
  --shadow: 0 10px 30px rgba(0,0,0,.25);
  --radius: 16px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(77,212,255,.18), transparent),
    radial-gradient(900px 500px at 85% 0%, rgba(255,77,109,.15), transparent),
    var(--bg);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit}
code{background:rgba(255,255,255,.06); padding:2px 6px; border-radius:8px; border:1px solid var(--border)}
.container{width:min(1100px, 92%); margin:0 auto}

.skip-link{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:12px; top:12px; width:auto; height:auto; padding:10px 12px;
  background:#111a2e; border:1px solid var(--border); border-radius:10px; z-index:999;
}

.site-header{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.78);
  border-bottom:1px solid var(--border);
}

.logo-img{
  height:100px;
  width:auto;
  display:block;
}

.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:18px;
}

.brand{display:flex; align-items:center; gap:12px}
.logo{
  width:44px;height:44px;border-radius:12px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#08101e;
  font-weight:900;
  box-shadow: var(--shadow);
}
.brand h1{font-size:20px;margin:0}
.tagline{margin:0;color:var(--muted);font-size:12px}

.nav{display:flex; gap:10px; flex-wrap:wrap}
.nav a{
  padding:8px 12px; border:1px solid transparent; border-radius:999px;
  color:var(--muted); text-decoration:none;
}
.nav a:hover{border-color:var(--border); color:var(--text)}

.hero{padding:44px 0 26px}
.hero-inner{
  background: linear-gradient(135deg, rgba(255,77,109,.16), rgba(77,212,255,.12));
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:26px;
  box-shadow: var(--shadow);
}
.hero h2{margin:0 0 8px; font-size:28px}
.hero p{margin:0 0 14px; color:var(--muted)}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap}

.hero-logo{
  height:70px;
  margin-bottom:18px;
  opacity:0.95;
}


.section{padding:34px 0}
.section.alt{
  background: rgba(255,255,255,.03);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section h3{margin:0 0 6px; font-size:22px}
.section-sub{margin:0 0 18px; color:var(--muted)}

.panel{
  padding:16px;
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(15,26,48,.55);
  box-shadow: var(--shadow);
}
.panel ul{margin:10px 0 0; padding-left:18px; color:var(--muted)}
.panel p{color:var(--muted)}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:14px;
}
.card{
  padding:16px;
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(15,26,48,.55);
  box-shadow: var(--shadow);
}
.card h4{margin:0 0 8px}
.card p{margin:0;color:var(--muted)}

.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.step{
  padding:16px;
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(15,26,48,.55);
  box-shadow: var(--shadow);
}
.badge{
  width:34px; height:34px; border-radius:999px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.08);
  border:1px solid var(--border);
  margin-bottom:10px;
  font-weight:800;
}

.form{
  display:grid;
  gap:14px;
  padding:16px;
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(15,26,48,.55);
  box-shadow: var(--shadow);
}
.row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
label{display:grid; gap:6px; font-size:14px}
input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border:1px solid var(--border);
  background: rgba(11,18,32,.65);
  color: var(--text);
  outline:none;
}
input:focus, select:focus, textarea:focus{border-color: rgba(77,212,255,.6)}
.checkbox{display:flex; align-items:flex-start; gap:10px; color:var(--muted)}
.checkbox input{width:18px; height:18px; margin-top:2px}

.btn{
  display:inline-block;
  padding:11px 14px;
  border-radius: 999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color: var(--text);
  cursor:pointer;
  width: fit-content;
  text-decoration:none;
}
.btn.primary{
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#07101f;
  font-weight:800;
}
.btn.ghost{background: transparent}
.btn:hover{transform: translateY(-1px)}

.notice{
  margin-top:14px;
  padding:12px 14px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.18);
  background: rgba(11,18,32,.55);
  color: var(--text);
}
.notice.small{margin-top:12px; font-size:13px; color:var(--muted)}

.callout{
  margin-top:14px;
  padding:14px;
  border:1px dashed rgba(255,255,255,.25);
  border-radius: var(--radius);
  background: rgba(11,18,32,.4);
}
.callout.soft{border-style:solid; border-color: rgba(255,255,255,.12)}
.callout h4{margin:0 0 8px}
.callout p{margin:0;color:var(--muted)}

.divider{border:0;border-top:1px solid var(--border); margin:18px 0}
.msg{margin:0; color: var(--muted)}
.micro{font-size:12px; color:var(--muted); margin:10px 0 0}

.faq details{
  border:1px solid var(--border);
  border-radius: 14px;
  background: rgba(15,26,48,.55);
  padding:12px 14px;
  box-shadow: var(--shadow);
  margin-bottom:10px;
}
.faq summary{cursor:pointer; font-weight:700}
.faq p{color:var(--muted); margin:10px 0 0}

.site-footer{
  border-top:1px solid var(--border);
  padding:18px 0;
  background: rgba(11,18,32,.78);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  flex-wrap:wrap;
}
.footer-title{margin:0; font-weight:900}
.footer-links{display:flex; gap:12px; flex-wrap:wrap}
.footer-links a{color:var(--muted); text-decoration:none; border-bottom:1px dashed transparent}
.footer-links a:hover{color:var(--text); border-bottom-color: var(--border)}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  padding-top:10px;
}

@media (max-width: 980px){
  .cards{grid-template-columns: 1fr}
  .grid-2{grid-template-columns: 1fr}
  .grid-3{grid-template-columns: 1fr}
  .steps{grid-template-columns: 1fr}
  .row{grid-template-columns: 1fr}
  .hero h2{font-size:24px}
}


/* =========================================================
   SereniPath SOFT THEME OVERRIDES (NO GRADIENT)
   Paste this at the VERY BOTTOM of styles.css
   ========================================================= */

/* 1) Brand palette (soft + inviting) */
:root{
  --bg:#f6f7f2;            /* warm cream */
  --panel:#ffffff;         /* clean white */
  --text:#2f3a2f;          /* deep sage text */
  --muted:#5f6f5a;         /* readable muted sage */
  --border:rgba(47,58,47,.14);

  --accent:#cbb26a;        /* gentle gold */
  --accent2:#9fb89a;       /* soft sage */

  --shadow:0 10px 24px rgba(0,0,0,.08);
  --radius:16px;
}

/* 2) Remove gradients everywhere */
body{
  background: var(--bg) !important;
  color: var(--text) !important;
  line-height: 1.65;
}

/* 3) Header should feel airy, not heavy */
.site-header{
  background: #ffffff !important;
  border-bottom: 1px solid var(--border) !important;
  backdrop-filter: none !important;
}

.nav a{
  color: var(--muted) !important;
  border-color: transparent !important;
}
.nav a:hover{
  color: var(--text) !important;
  border-color: rgba(47,58,47,.20) !important;
}

/* 4) Hero: solid white card, no color haze */
.hero-inner{
  background: #ffffff !important;
  border: 1px solid var(--border) !important;
  border-radius: 20px !important;
  padding: 34px !important;
  box-shadow: var(--shadow) !important;
}
.hero h2{ color: var(--text) !important; }
.hero p{ color: var(--muted) !important; }

/* 5) All cards/panels/forms should be white (yours look gray/disabled now) */
.panel,
.card,
.form,
.faq details,
.step{
  background: #ffffff !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow) !important;
  color: var(--text) !important;
}

.panel p,
.card p,
.step p,
.faq p,
.panel li{
  color: var(--muted) !important;
}

/* 6) Remove the gray "alt" section wash */
.section.alt{
  background: #f3f5ef !important; /* very light sage */
  border-top: 1px solid var(--border) !important;
  border-bottom: 1px solid var(--border) !important;
}

/* 7) Softer notice (your current one is too dark) */
.notice{
  background: #eef3ec !important; /* soft sage */
  border: 1px solid rgba(47,58,47,.18) !important;
  color: var(--text) !important;
}
.notice.small{ color: var(--muted) !important; }

/* 8) Buttons: clean + warm (no gray blobs) */
.btn{
  background: #ffffff !important;
  color: var(--text) !important;
  border: 1px solid rgba(47,58,47,.20) !important;
  box-shadow: none !important;
}

.btn.primary{
  background: var(--accent) !important;
  color: #2f3a2f !important;
  border: none !important;
  font-weight: 800 !important;
}

.btn.ghost{
  background: transparent !important;
}

/* 9) Inputs: clean, readable */
input, select, textarea{
  background: #fbfcfa !important;
  color: var(--text) !important;
  border: 1px solid rgba(47,58,47,.20) !important;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(159,184,154,.85) !important; /* sage focus */
  outline: none !important;
}

/* 10) Footer: soften it */
.site-footer{
  background: #ffffff !important;
  border-top: 1px solid var(--border) !important;
}
.footer-links a{ color: var(--muted) !important; }
.footer-links a:hover{ color: var(--text) !important; }

/* =========================================================
   Center Navigation Menu
   ========================================================= */

.header-inner{
  display: grid !important;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

/* Center the nav */
.nav{
  justify-self: center;
}

/* Keep logo on the left */
.brand{
  justify-self: start;
}

html{
  scroll-padding-top: 90px; /* adjust if your header is taller/shorter */
  scroll-behavior: smooth;
}

.section{
  scroll-margin-top: 90px; /* same number as scroll-padding-top */
}

/* =========================================================
   Navigation Hover & Active States
   ========================================================= */

/* Default nav links */
.nav a{
  position: relative;
  color: #5f6f5a;
  font-weight: 500;
  transition: color 0.2s ease, background-color 0.2s ease;
}

/* Hover state */
.nav a:hover{
  color: #2f3a2f;                 /* deeper sage */
  background-color: #eef3ec;      /* soft sage wash */
}

/* Active (when clicked) */
.nav a:active{
  color: #2f3a2f;
  background-color: #cbb26a;      /* gentle gold */
}

/* Optional: rounded pill effect */
.nav a{
  padding: 8px 14px;
  border-radius: 999px;
}

/* Highlight active anchor if browser supports :target */
section:target ~ .site-header .nav a[href^="#"]{
  opacity: 0.6;
}

/* Active navigation link */
.nav a.active{
  color:#2f3a2f;
  background-color:#eef3ec; /* soft sage */
  font-weight:600;
}

.founder-note{
  max-width: 820px;
  margin: 30px auto 0;
}

.founder-note h4{
  text-align: center;
  margin-bottom: 14px;
}

.founder-note p{
  margin-bottom: 12px;
}

.intake-actions{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin: 18px 0 8px;
}

.intake-note{
  text-align:center;
  max-width: 760px;
  margin: 0 auto;
}

/* =========================
   APPOINTMENT / SCHEDULING
   ========================= */

#appointment {
  padding: 4rem 0;
}

#appointment .section-sub {
  max-width: 640px;
  margin: 0 auto 1.25rem;
  text-align: center;
  opacity: 0.9;
}

/* CTA buttons row */
.cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 1rem 0;
}

/* Primary Book Now button */
.btn.primary {
  padding: 14px 28px;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg,#cbb26a,#5f6f5a);
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(30, 144, 255, 0.35);
}

/* Secondary link button */
.btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Small trust / privacy text */
#appointment .micro {
  margin-top: 10px;
  font-size: 0.75rem;
  text-align: center;
  opacity: 0.7;
}

/* =========================
   CAL.COM EMBED STYLES
   ========================= */

.cal-embed-wrap {
  margin-top: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.15);
}

/* Desktop height */
.cal-embed {
  width: 100%;
  height: 900px;
  border: none;
  display: block;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .cta-row {
    flex-direction: column;
  }

  .btn.primary,
  .btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .cal-embed {
    height: 1100px;
  }
}

/* =========================
   FLOATING BOOK NOW BUTTON
   ========================= */

.floating-book-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;

  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;

  color: #ffffff;
  background: linear-gradient(135deg, #cbb26a, #848d88);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

/* Slightly smaller on very small phones */
@media (max-width: 420px) {
  .floating-book-btn {
    right: 12px;
    bottom: 12px;
    padding: 11px 16px;
    font-size: 0.9rem;
  }
}

/* OPTIONAL: hide on desktop (remove if you want it everywhere) */
@media (min-width: 980px) {
  .floating-book-btn {
    display: none;
  }
}

/* Keep heading left-aligned */
#appointment h2 {
  text-align: left;
}

/* Center the description text */
#appointment .lead {
  text-align: center;
}

/* Center the button */
#appointment .appointment-actions {
  display: flex;
  justify-content: center;
}

/* Optional: center the small note under the button */
#appointment .micro {
  text-align: center;
}


.nav a.active {
  color: var(--accent);
  font-weight: 600;
}


/* === Legal Pages Header === */
.legal-header {
  display: flex;
  justify-content: center;
  padding: 24px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-logo {
  max-width: 180px;
  height: auto;
}
