:root{
  --bg:#ffffff;
  --surface:#ffffff;
  --soft:#f6f7f8;
  --text:#0f172a;
  --muted:#475569;
  --line:rgba(15,23,42,.12);
  --shadow:0 12px 28px rgba(2,6,23,.10);

	/* warm neutral (boutique spa) */
	--accent:#3f3a36;      /* warm charcoal */
	--accent2:#d6d3d1;     /* stone highlight */
	--accent-ink:#ffffff;  /* text on accent buttons */

	/* warm neutral supporting colors */
	--accent-soft: rgba(63,58,54,.10);
	--accent-soft-2: rgba(214,211,209,.45);
	
	/* CTA lilac (buttons only) */
	--cta:#5b21b6;        
	--cta-hover:#4c1d95;  
	--cta-ink:#ffffff;     
	
	/*CTA Blue (buttons only) */
	/*--cta:#3b82f6;        
	--cta-hover:#2563eb;  
	--cta-ink:#ffffff;*/




  --radius:18px;
  --radius-sm:12px;
  --max:1120px;

  --focus: 0 0 0 4px rgba(20,184,166,.25);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.45;
}

img{max-width:100%;height:auto}
a{color:inherit;text-decoration:none}
a:hover{text-decoration:underline}
.muted{color:var(--muted)}
.container{max-width:var(--max);margin:0 auto;padding:0 18px}

.skip{
  position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip:focus{left:18px;top:12px;width:auto;height:auto;background:var(--surface);padding:10px 12px;border-radius:10px;box-shadow:var(--shadow);z-index:9999}

.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.88);
  backdrop-filter:saturate(1.3) blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:14px; padding:12px 0;
}
.brand{display:flex;align-items:center;gap:12px}
.brand-mark{
  width:40px;height:40px;border-radius:14px;
  display:grid;place-items:center;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:var(--accent-ink); font-weight:800;
  letter-spacing:.5px;
}
.brand-text{display:flex;flex-direction:column; text-align:left; line-height:1.05}
.brand-name{font-weight:800}
.brand-tag{font-size:12px;text-align:left;color:var(--muted)}

/* Real logo image */
.logo{
  height: 72px;          /* desktop size */
  width: auto;
  max-width: 280px;
}

.nav{display:none;gap:14px;align-items:center}
.nav-link{padding:10px 10px;border-radius:12px;color:var(--muted);font-weight:600;font-size:14px}
.nav-link.active{
  color:var(--text);
  background:rgba(214,211,209,.55);
  border:1px solid rgba(63,58,54,.10);
}
.nav-link:hover{
  text-decoration:none;
  background:rgba(214,211,209,.35);
  color:var(--text);
}

.header-ctas{display:flex;align-items:center;gap:10px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:8px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:700;
  cursor:pointer;
  text-decoration:none !important;
}
.btn:focus{outline:none;box-shadow:var(--focus)}
.btn-sm{padding:10px 12px;border-radius:12px;font-size:14px}
.btn-primary{
  background:var(--cta);
  color:var(--cta-ink);
  border-color:var(--cta);
}
.btn-primary:hover{
  background:var(--cta-hover);
  border-color:var(--cta-hover);
}

.btn-ghost{
  background:transparent;
  border-color:var(--line);
  color:var(--text);
}
.btn-ghost:hover{
  background:rgba(63,58,54,.06); /* warm hover */
  border-color:rgba(63,58,54,.18);
}

.btn-soft{
  background:rgba(214,211,209,.55); /* warm stone */
  color:var(--text);
  border-color:rgba(63,58,54,.12);
}
.btn-soft:hover{
  background:rgba(214,211,209,.75);
  border-color:rgba(63,58,54,.18);
}


.nav-toggle{
  width:44px;height:44px;border-radius:14px;border:1px solid var(--line);
  background:transparent;display:inline-grid;place-content:center;gap:4px;
}
.nav-toggle span{display:block;width:18px;height:2px;background:var(--text);border-radius:2px}

.mobile-nav{border-top:1px solid var(--line);background:rgba(255,255,255,.96)}
.mobile-nav-inner{padding:12px 0 16px;display:grid;gap:6px}
.mobile-nav .nav-link{display:block}
.mobile-cta-row{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:10px}

main{display:block}

.hero{
  padding:34px 0 18px;
  /* background:
	radial-gradient(900px 420px at 15% 5%, rgba(191,219,254,.65), transparent 55%),
    radial-gradient(800px 380px at 95% 15%, rgba(59,130,246,.16), transparent 50%); BLUE */
  background:
    radial-gradient(900px 420px at 15% 5%, rgba(196,181,253,.55), transparent 55%),
    radial-gradient(800px 380px at 95% 15%, rgba(91,33,182,.14), transparent 50%); /*LILAC */
}

.hero-grid{display:grid;gap:18px;align-items:center}
.kicker{
  display:inline-flex;gap:5px;align-items:center;
  color:var(--muted);font-weight:600;font-size:11px; /* Mobile default */
}
.kicker .dot{width:6px;height:6px;border-radius:999px;background:var(--accent2)}
h1{margin:10px 0 10px;font-size:24px;line-height:1.05;letter-spacing:-.02em}
h2{font-size:19px;}
h3{font-size:16px;}
h5{font-size:12px;}

.lead{margin:0;color:var(--muted);font-size:16px;max-width:60ch}
.hero-actions{margin-top:16px;display:flex;gap:10px;flex-wrap:wrap}
.hero-card{
  background:var(--surface); border:1px solid var(--line);
  border-radius:var(--radius); box-shadow:var(--shadow);
  padding:16px;
}
.hero-points{display:grid;gap:10px;margin-top:12px}
.point{display:flex;gap:10px}
.icon{
  width:34px;height:34px;border-radius:12px;
  background:rgba(214,211,209,.55); /* stone */
  color:var(--accent);
  display:grid;place-items:center;
  font-weight:900;
}

.section{padding:28px 0}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;margin-bottom:14px}
.section h2{margin:0;font-size:22px;letter-spacing:-.01em}
.section p{margin:0;color:var(--muted)}
.grid{display:grid;gap:14px}
.grid-2{grid-template-columns:1fr}
.grid-3{grid-template-columns:1fr}
.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:16px;
}
.card h3{margin:0 0 8px;font-size:16px}



.pills{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px}
.pill{
  font-size:12px;
  font-weight:700;
  color:var(--accent);
  background: #5b21b6;
  color: #ffffff;
  /*background:rgba(214,211,209,.55);     /* stone */
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(63,58,54,.16);  /* warm outline */
}

.prices{
  margin-top:12px;
  border-top:1px solid var(--line);
  padding-top:12px;
  display:grid;gap:8px;
}
.price-row{display:flex;justify-content:space-between;gap:10px;color:var(--muted);font-weight:600}
.price-row strong{color:var(--text)}

.feature{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:14px;
  background:var(--soft);
  border:1px solid var(--line);
  border-radius:var(--radius);
}
.feature h3{margin:0;font-size:16px}
.feature p{margin:0;color:var(--muted);font-size:14px}

.cta{
  display:grid;gap:12px;align-items:center;
  background:linear-gradient(135deg, rgba(214,211,209,.70), rgba(63,58,54,.08));
  border:1px solid rgba(63,58,54,.14);
  border-radius:var(--radius);
  padding:18px;
}
.cta h2{margin:0;font-size:20px}
.cta p{margin:4px 0 0;color:var(--muted)}
.cta .cta-actions{display:flex;gap:10px;flex-wrap:wrap}

/* Services hub tabs (mobile-first) */
.tabs{
  margin-top:16px;
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:10px;
  background:rgba(255,255,255,.55);
  border:1px solid var(--line);
  padding:6px;
  border-radius:999px;
  width:100%;
  max-width:520px;
}

.tab{
  border:none;
  background:transparent;
  padding:10px 12px;
  border-radius:999px;
  font-weight:800;
  color:var(--muted);
  cursor:pointer;
}

.tab.is-active{
  background:rgba(214,211,209,.55);          /* warm neutral pill */
  border:1px solid rgba(63,58,54,.12);
  color:var(--text);
}

.tab:focus{
  outline:none;
  box-shadow:var(--focus);
}

.tab-panel{animation:fadeIn .12s ease-out}
@keyframes fadeIn{from{opacity:.0;transform:translateY(2px)}to{opacity:1;transform:translateY(0)}}


.site-footer{
  margin-top:28px;
  border-top:1px solid var(--line);
  background:var(--soft);
}
.footer-grid{padding:22px 0;display:grid;gap:14px;grid-template-columns: 1fr; padding-left:20px; /*mobile default*/}
.footer-brand{font-weight:900}
.footer-title{font-weight:800;margin-bottom:6px}

.footer-bottom{padding:12px 0;border-top:1px solid var(--line)}

.notice{
  padding:12px 14px;border-radius:14px;
  border:1px solid var(--line);
  background:rgba(2,6,23,.02);
  color:var(--muted);
  font-size:14px;
}

/* Desktop */
@media (min-width: 860px){
  .nav{display:flex}
  .nav-toggle{display:none}
  .hero-grid{grid-template-columns: 1.2fr .8fr}
  .grid-2{grid-template-columns: 1fr 1fr}
  .grid-3{grid-template-columns: repeat(3, 1fr)}
  .cta{grid-template-columns: 1.2fr .8fr}
  .kicker{
	  display:inline-flex;gap:10px;align-items:center;
	  color:var(--muted);font-weight:600;font-size:13px;
	}
  .footer-grid{ grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid p{ margin:0; }
  h1{font-size:32px;}
  h2{font-size:24px;}
  h3{font-size:19px;}
  h5{font-size:16px;}
}
