/* Nervous System Reiki — minimal, calm, breathable */

:root{
  --bg: #F6F1E7;
  --surface: #F2ECE1;
  --text: #2E2F2C;
  --muted: #5B5E57;

  --accent: #5A694D;
  --accent-2: rgba(90,105,77,0.22);

  --border: rgba(46,47,44,0.14);
  --shadow: 0 10px 30px rgba(46,47,44,0.06);
  --radius: 18px;
  --radius-sm: 14px;

  --serif: "Libre Baskerville", Georgia, serif;
  --sans: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a{
  color: var(--accent);
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
  text-underline-offset: 3px;
}

.container{
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}

.narrow{
  width: min(760px, 100%);
}

/* Header */
.site-header{
  position: sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(246,241,231,0.75);
  border-bottom: 1px solid var(--border);
}

.site-header .container{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 16px 20px; /* ← horizontal padding restored */
}


.brand__name{
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
}
.brand__sub{
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

.nav{
  display:flex;
  gap: 16px;
}

.nav a{
  font-size: 13px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
}

.nav a:hover{
  background: rgba(46,47,44,0.06);
  text-decoration: none;
}

.nav__cta{
  color: var(--accent) !important;
  border: 1px solid var(--accent-2);
  background: rgba(246,241,231,0.6);
}

/* Hero */
.hero{
  position: relative;
  padding: 72px 0 44px;
  background:
    linear-gradient(
      rgba(246,241,231,0.1),
      rgba(246,241,231,0.3)
    ),
    url("hero-bg.png");
  background-size: cover;
  background-position: right;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(
    60% 40% at 50% 20%,
    rgba(90,105,77,0.10),
    transparent 72%
  );
  pointer-events:none;
}

.kicker{
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

h1{
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.2;
  margin-bottom: 14px;
}

.lead{
  color: var(--muted);
  font-size: 18px;
  max-width: 62ch;
  margin-bottom: 22px;
}

/* HERO BUTTONS (restored, elegant) */
.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap: wrap;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent-2);
  background: rgba(246,241,231,0.65);
  color: var(--accent);
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(46,47,44,0.05);
}

.button:hover{
  background: rgba(90,105,77,0.10);
  text-decoration: none;
}

.button--ghost{
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.hero__note{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding:12px 14px;
  border:1px solid var(--border);
  border-radius:999px;
  background: rgba(242,236,225,0.7);
  color: var(--muted);
  font-size:13px;
  margin-top: 18px;
}

/* Sections */
.section{
  padding: 56px 0;
}

.section--soft{
  background: rgba(242,236,225,0.55);
  border-top: 1px solid var(--accent-2);
  border-bottom: 1px solid var(--accent-2);
}

h2{
  font-family: var(--serif);
  font-size: 26px;
  margin-bottom: 14px;
}

h3{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.body{
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 14px;
}

.muted{ color: var(--muted); }

.bullets{
  padding-left: 18px;
  color: var(--muted);
}

/* SESSION CARDS — more internal padding */
.card-grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:16px;
  margin-top:22px;
}

.card{
  background: rgba(246,241,231,0.72);
  border:1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 20px; /* ← added breathing room */
  box-shadow: var(--shadow);
}

/* PRICING — more internal padding */
.price-box{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(246,241,231,0.75);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.price-box__top{
  display:flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 22px; /* ← more space */
  border-bottom:1px solid var(--border);
}

.price-box__details{
  padding: 22px; /* ← more space */
}

.price{
  font-family: var(--serif);
  font-size:28px;
}

/* Footer */
.site-footer{
  padding:24px 0 36px;
}

.site-footer .container{
  display:flex;
  justify-content: space-between;
  border-top:1px solid var(--border);
  padding-top:18px;
}

/* Mobile */
@media (max-width:820px){
  .nav{ display:none; }
  .hero{ padding:56px 0 34px; }
  .card-grid{ grid-template-columns: 1fr; }
}
