:root{
  /* Steph's Tiny Tots vibe: warm tan + deep brown + dreamy stars */
  --bg: #e7d6ca;
  --panel: rgba(255,255,255,.80);
  --panel2: rgba(255,255,255,.92);
  --text: rgba(37,24,18,.96);
  --muted: rgba(37,24,18,.72);
  --brand: #b28067;   /* tan */
  --brand2: #683822;  /* deep brown */
  --brand3: #d2b49a;  /* sand */
  --warn: #c0834e;
  --danger: #b42318;
  --border: rgba(104,56,34,.20);
  --shadow: 0 18px 55px rgba(60,30,18,.16);
  --radius: 22px;
  --radius2: 16px;
  --max: 1120px;
  --font: "Chilanka", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --font-script: "Satisfy", cursive;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(178,128,103,.20), transparent 60%),
    radial-gradient(920px 540px at 85% 15%, rgba(104,56,34,.14), transparent 62%),
    linear-gradient(180deg, #e7d6ca 0%, #f6eee7 45%, #e7d6ca 100%);
  min-height: 100vh;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

/* subtle sparkle specks */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events:none;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(104,56,34,.14) 0 1.5px, transparent 3px),
    radial-gradient(circle at 35% 62%, rgba(178,128,103,.18) 0 1.5px, transparent 3px),
    radial-gradient(circle at 78% 28%, rgba(104,56,34,.12) 0 1.5px, transparent 3px),
    radial-gradient(circle at 68% 82%, rgba(178,128,103,.14) 0 1.5px, transparent 3px);
  background-size: 320px 260px;
  opacity: .38;
}

/* section background texture (clouds + stars) */
.section,
.page-hero,
.site-footer{
  position: relative;
}
.section::after,
.page-hero::after,
.site-footer::after{
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
  background-image: url("stars-sand.svg");
  background-size: 900px auto;
  background-position: center;
  opacity: .30;
  z-index: 0;
}
.section > .container,
.page-hero > .container,
.site-footer > .container{
  position: relative;
  z-index: 1;
}

/* cloud dividers between sections */
.section{
  padding: 2.2rem 0;
}
.section + .section{
  padding-top: 3.1rem;
}
.section + .section::before{
  content:"";
  position:absolute;
  left:0; right:0; top:-26px;
  height: 60px;
  background:
    radial-gradient(30px 22px at 30px 38px, rgba(221,206,187,.85) 98%, transparent 100%) 0 0/60px 60px repeat-x;
  opacity: .9;
  z-index: 0;
}

.container{ width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }
.skip-link{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left: 1rem; top: 1rem; width:auto; height:auto; padding:.6rem .8rem;
  background: #111827; border: 1px solid rgba(255,255,255,.22); border-radius: 12px;
  z-index: 9999;
}

/* Header */
.site-header{
  position: sticky; top:0; z-index: 50;
  background: rgba(178,128,103,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(104,56,34,.22);
}
.header-inner{
  display:flex; align-items:center; justify-content: space-between;
  padding: .85rem 0;
}
.brand{ display:flex; gap:.7rem; align-items:center; }
/* Header logo: stretches to fill the chip (object-fit: fill). Use a square source file to avoid distortion. */
.logo-wrap{
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  box-shadow: 0 14px 28px rgba(60,30,18,.18);
  isolation: isolate;
}
.logo{
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  object-fit: fill;
  object-position: center;
  background-color: #fff;
}
.brand-text{ display:flex; flex-direction: column; line-height: 1.1; }
.brand-text strong{
  font-size: 1.25rem;
  letter-spacing: .2px;
  color: rgba(255,255,255,.95);
  font-family: var(--font-script);
  font-weight: 400;
}
.brand-text span{ font-size: .85rem; color: rgba(255,255,255,.80); }

.nav{ display:flex; align-items:center; gap: .2rem; }
.nav a{
  display:inline-flex; align-items:center; justify-content:center;
  padding: .55rem .75rem;
  border-radius: 12px;
  color: rgba(255,255,255,.92);
}
.nav a[aria-current="page"]{
  color: rgba(255,255,255,.98);
  background: rgba(104,56,34,.55);
  border: 1px solid rgba(255,255,255,.22);
}
.nav a:hover{ text-decoration: none; color: rgba(255,255,255,.98); background: rgba(104,56,34,.40); }

.header-cta{ display:flex; gap:.55rem; align-items:center; flex-wrap: wrap; }
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  padding: .68rem .95rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.30);
  background: rgba(104,56,34,.28);
  color: var(--text);
  box-shadow: 0 12px 26px rgba(60,30,18,.14);
  font-weight: 700;
}
.btn:hover{ text-decoration:none; background: rgba(104,56,34,.36); transform: translateY(-1px); }
.btn.primary{
  border: 1px solid rgba(255,255,255,.32);
  background: linear-gradient(180deg, rgba(104,56,34,.96), rgba(104,56,34,.86));
  color: rgba(255,255,255,.98);
}
.btn.success{
  border: 1px solid rgba(255,255,255,.32);
  background: linear-gradient(180deg, rgba(178,128,103,.98), rgba(178,128,103,.86));
  color: rgba(255,255,255,.98);
}
.btn.ghost{ background: transparent; box-shadow: none; }

.menu-btn{
  display:none;
  align-items:center;
  justify-content:center;
  width: 44px; height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.30);
  background: rgba(104,56,34,.28);
  color: rgba(255,255,255,.95);
}
.menu-btn:hover{ background: rgba(104,56,34,.36); cursor:pointer; }

/* Hero */
.hero{
  padding: 4.2rem 0 2.4rem;
  position: relative;
  overflow: hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset: 0;
  background-image: url("hero-bg.svg");
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
  transform: scale(1.02);
}
.hero::after{
  content:"";
  position:absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.10) 40%, rgba(0,0,0,.06) 100%);
}
.hero{ border-bottom: 6px solid rgba(178,128,103,.35); }
.hero .container{ position: relative; z-index: 1; }
.hero::after{ z-index: 0; }
.hero::before{ z-index: 0; }
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 2rem;
  align-items: start;
}
.pill-row{ display:flex; flex-wrap: wrap; gap:.6rem; margin-bottom: 1rem; }
.pill{
  display:inline-flex; align-items:center; gap:.45rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(104,56,34,.26);
  color: rgba(255,255,255,.90);
  font-size: .88rem;
}
.pill strong{ color: var(--text); font-weight: 700; }
.hero .pill strong{ color: rgba(255,255,255,.96); }
.hero h1{
  margin: .2rem 0 .7rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.02em;
  font-family: var(--font-script);
  font-weight: 400;
  color: rgba(255,255,255,.96);
  text-shadow: 0 10px 30px rgba(0,0,0,.45);
}
.hero p{
  margin: 0 0 1.2rem;
  color: rgba(255,255,255,.88);
  font-size: 1.05rem;
  line-height: 1.55;
  text-shadow: 0 8px 22px rgba(0,0,0,.35);
}
.hero-actions{ display:flex; gap:.75rem; flex-wrap: wrap; }
.hero-card{
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(104,56,34,.18);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}
.hero-card .help{
  color: rgba(37,24,18,.76);
}
.hero-card a{
  color: rgba(104,56,34,.96);
}
.stat{
  display:flex; justify-content: space-between; gap:1rem;
  padding: .85rem .8rem;
  border-radius: 14px;
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.72);
  margin-bottom: .7rem;
}
.stat:last-child{ margin-bottom:0; }
.stat .k{ color: var(--muted); font-size: .92rem; }
.stat .v{ font-weight: 760; }
.badge{
  display:inline-flex; align-items:center; gap:.45rem;
  padding: .35rem .55rem;
  border-radius: 999px;
  font-size: .88rem;
  border: 1px solid rgba(17,24,39,.12);
  background: rgba(255,255,255,.82);
  color: var(--text);
}
.badge.open{ border-color: rgba(34,197,94,.35); background: rgba(34,197,94,.12); }
.badge.limited{ border-color: rgba(245,158,11,.40); background: rgba(245,158,11,.14); }
.badge.waitlist{ border-color: rgba(124,58,237,.32); background: rgba(124,58,237,.12); }

/* Sections */
.section{ padding: 1.8rem 0; }
.section.alt{
  position: relative;
  padding-top: 2.6rem;
  margin-top: -1.1rem;
}
.section.alt::before{
  content:"";
  position:absolute;
  left:0; right:0; top:-20px;
  height: 44px;
  background-color: rgba(221,206,187,.70);
  -webkit-mask: radial-gradient(22px 22px at 22px 22px, #000 99%, transparent 100%) 0 0/44px 44px repeat-x;
  mask: radial-gradient(22px 22px at 22px 22px, #000 99%, transparent 100%) 0 0/44px 44px repeat-x;
}
.section.alt .container{
  background: rgba(221,206,187,.55);
  border: 1px solid rgba(104,56,34,.12);
  border-radius: var(--radius);
  padding: 1.2rem;
}
.section h2{
  margin: 0 0 .8rem;
  font-size: 1.55rem;
  letter-spacing: -.01em;
  color: var(--brand2);
}
.section p.lead{
  margin: 0 0 1.2rem;
  color: var(--muted);
  line-height: 1.6;
}
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.card{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(104,56,34,.16);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.card::after{
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
  background:
    radial-gradient(circle at 18% 22%, rgba(178,128,103,.18) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 30%, rgba(104,56,34,.14) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 82%, rgba(178,128,103,.12) 0 2px, transparent 3px);
  opacity: .25;
} 
.card h3{ margin:.2rem 0 .4rem; font-size: 1.05rem; }
.card p{ margin:0; color: var(--muted); line-height: 1.55; }
.card .icon{
  width: 52px; height: 52px; border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(221,206,187,.45);
  border: 1px solid rgba(104,56,34,.12);
  flex-shrink: 0;
}
.card .icon svg,
.card .icon img{
  width: 40px; height: 40px; display: block; object-fit: contain;
}
.two-col{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: start;
}
.list{
  margin: .4rem 0 0;
  padding-left: 1.05rem;
  color: var(--muted);
}
.list li{ margin: .35rem 0; line-height: 1.55; }

/* About: headshot — anchor to top of photo + a bit more height to ease center-crop on the head */
.about-headshot{
  width: 180px;
  height: 236px;
  object-fit: cover;
  object-position: 50% 0;
  border-radius: 18px;
  border: 2px solid rgba(104,56,34,.18);
  box-shadow: 0 18px 35px rgba(60,30,18,.18);
  display: block;
}

/* Forms */
form{ display:grid; gap: .75rem; }
label{ font-weight: 650; }
input, select, textarea{
  width: 100%;
  padding: .7rem .75rem;
  border-radius: 14px;
  border: 1px solid rgba(17,24,39,.12);
  background: rgba(255,255,255,.86);
  color: var(--text);
  outline: none;
}
textarea{ min-height: 110px; resize: vertical; }
input::placeholder, textarea::placeholder{ color: rgba(37,24,18,.4); }
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.help{
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.45;
}
.fineprint{
  color: rgba(255,255,255,.55);
  font-size: .86rem;
  line-height: 1.45;
}

/* Footer */
.site-footer{
  margin-top: 2.4rem;
  padding: 1.7rem 0 2.2rem;
  border-top: 1px solid rgba(104,56,34,.18);
  background: rgba(178,128,103,.30);
}
.site-footer::after{
  opacity: .22;
  background-size: 1000px auto;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 1rem;
}
.footer-grid h3{ margin:.2rem 0 .45rem; font-size: 1rem; }
.footer-grid p, .footer-grid a{ color: var(--muted); line-height: 1.55; }
.footer-grid a:hover{ color: var(--text); }
.subfooter{
  margin-top: 1.2rem;
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  display:flex;
  flex-wrap: wrap;
  gap:.75rem;
  justify-content: space-between;
  align-items: center;
}

/* Page header */
.page-hero{ padding: 2.4rem 0 1rem; }
.page-hero h1{ margin:.2rem 0 .6rem; font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.crumbs{ font-size: .92rem; }

/* page hero should match warm theme */
.page-hero{
  padding: 2.4rem 0 1.4rem;
  background:
    radial-gradient(900px 260px at 20% 0%, rgba(221,206,187,.85), transparent 60%),
    linear-gradient(180deg, rgba(178,128,103,.35), rgba(231,214,202,.0));
  border-bottom: 2px solid rgba(104,56,34,.12);
}
.page-hero::after{
  opacity: .22;
  background-size: 980px auto;
}
.page-hero h1{
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--brand2);
}
.crumbs{ color: rgba(104,56,34,.72); }
.crumbs a{ color: rgba(104,56,34,.86); }

/* FAQ */
.faq{ display:grid; gap: .7rem; }
.faq details{
  border-radius: var(--radius);
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.78);
  padding: .85rem 1rem;
}
.faq summary{ cursor: pointer; font-weight: 720; }
.faq p{ margin:.6rem 0 0; color: var(--muted); line-height: 1.6; }

/* Embed */
.embed{
  border-radius: var(--radius);
  border: 1px solid rgba(17,24,39,.10);
  background: rgba(255,255,255,.78);
  overflow:hidden;
  min-height: 520px;
}
.embed iframe{ width:100%; height: 520px; border:0; }

/* Responsive */
@media (max-width: 920px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 780px){
  .header-inner{
    position: relative;
    flex-wrap: wrap;
    row-gap: .55rem;
    align-items: center;
    padding-top: .65rem;
    padding-bottom: .65rem;
    padding-left: max(0px, env(safe-area-inset-left, 0px));
    padding-right: max(0px, env(safe-area-inset-right, 0px));
  }
  .brand{
    order: 1;
    flex: 1 1 0;
    min-width: 0;
    max-width: calc(100% - 58px);
  }
  .menu-btn{
    display: inline-flex;
    order: 2;
    flex: 0 0 auto;
    margin-left: auto;
  }
  .header-cta{
    order: 3;
    width: 100%;
    flex-basis: 100%;
    display: flex;
    gap: .45rem;
    align-items: stretch;
    flex-wrap: nowrap;
  }
  .header-cta .btn{
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    text-align: center;
    font-size: .78rem;
    line-height: 1.2;
    padding: .5rem .5rem;
  }
  .nav{
    position: absolute;
    z-index: 60;
    top: 100%;
    left: 0;
    right: 0;
    margin-top: .4rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: .55rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(104,56,34,.96);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
  }
  .nav a{ justify-content: flex-start; color: rgba(255,255,255,.96); }
  .nav a:hover{ background: rgba(255,255,255,.12); }
  .nav.open{ display:flex; }
  .form-row{ grid-template-columns: 1fr; }
  .logo-wrap{
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }
}

/* Extra-narrow: shorter brand line so the top row doesn’t feel crushed */
@media (max-width: 420px){
  .brand-text strong{ font-size: 1.05rem; }
  .brand-text span{
    display: block;
    font-size: .72rem;
    line-height: 1.2;
  }
}

/* make header CTA text readable on tan header */
.site-header .btn{ color: rgba(255,255,255,.96); }
.site-header .btn.ghost{
  border-color: rgba(255,255,255,.30);
  background: transparent;
  box-shadow: none;
}
.site-header .btn.ghost:hover{ background: rgba(104,56,34,.28); }

