:root{
  --dark:#2E3F44;
  --sand:#C7B7A3;
  --sand-2:#bfae95; /* slightly deeper sand for accents */
  --ink: rgba(46,63,68,0.12);
  --ink-2: rgba(46,63,68,0.22);
  --font:'Manrope',sans-serif;
}

body{
  margin:0;
  font-family:var(--font);
  color:var(--dark);
  line-height:1.6;
  background:#fff;
}

/* ---------------------------
   Sticky Header (stronger)
---------------------------- */
.headerWrap{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,0.92);
  backdrop-filter:saturate(140%) blur(8px);
  border-bottom:1px solid var(--ink);
}

.headerInner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:14px 24px;
}

/* Container */
.container{
  max-width:1140px;
  margin:0 auto;
  padding:24px;
}

/* Space between header and boxed page */
.pageBox{
  margin-top:30px;
}

/* Navigation */
.toplinks a{
  margin-left:20px;
  text-decoration:none;
  font-weight:600;
  letter-spacing:0.02em;
  color:var(--dark);
  white-space:nowrap;
  opacity:0.92;
}
.toplinks a:hover{
  opacity:1;
  text-decoration:underline;
  text-underline-offset:6px;
  text-decoration-thickness:2px;
}

/* Logos */
.brandLogo--full{ height:36px; width:auto; }
.brandLogo--icon{ height:46px; width:auto; display:none; }

/* ---------------------------
   Typography & Text Flow
---------------------------- */
h1,h2,h3,h4{
  letter-spacing:-0.02em;
  margin:0 0 12px;
}


/* Explicit heading sizes (premium hierarchy) */
h2{
  font-size:22px;
  line-height:1.25;
}
h4{
  font-size:16px;
  line-height:1.35;
}
p{
  margin:0 0 14px;
}
.textNarrow{
  max-width:66ch;
  margin-left:auto;
  margin-right:auto;
}
/* Checkmark lists */
.checklist{
  list-style: none;
  margin: 16px 0 0;
  padding-left: 0;
}

.checklist li{
  position: relative;
  padding-left: 1.6em;
  margin-bottom: 4px;
}

.checklist li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 0.9em;
}
/* ---------------------------
   Hero
---------------------------- */
.hero{
  padding:72px 0 56px;
}
.hero h1{
  font-size: 40px;
  line-height:1.18;
}
.subtitle{
  font-size:18px;
  max-width:60ch;
  color:rgba(46,63,68,0.92);
}
.micro{
  margin-top:12px;
  font-size:13px;
  color:rgba(46,63,68,0.65);
}

/* ---------------------------
   Sections & rhythm
---------------------------- */
.section{
  padding:54px 0;
}
.section h3{
  font-size: 20px;
  margin-bottom:14px;
}

/* ---------------------------
   Cards (stronger presence)
---------------------------- */
.grid2{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:24px;
}

.card{
  border:1px solid var(--ink-2);
  background:linear-gradient(180deg, rgba(255,255,255,0.70), rgba(199,183,163,0.12));
  padding:26px;
  border-radius:14px;
  box-shadow:0 10px 26px rgba(0,0,0,0.06);
}
.card h4{
  margin-bottom:10px;
  font-size:16px;
  line-height:1.35;
}
.card p{
  margin:0 0 14px;
  color:rgba(46,63,68,0.90);
}
.card p:last-child{
  margin-bottom:0;
}

/* ---------------------------
   Buttons (clearer contrast)
---------------------------- */
.btn{
  padding:12px 22px;
  border-radius:10px;
  font-weight:650;
  text-decoration:none;
  cursor:pointer;
  display:inline-block;
  transition:transform .08s ease, box-shadow .12s ease, opacity .12s ease;
}
.btnPrimary{
  background:var(--dark);
  color:#fff;
  box-shadow:0 10px 20px rgba(46,63,68,0.22);
}
.btnPrimary:hover{
  transform:translateY(-1px);
  box-shadow:0 14px 28px rgba(46,63,68,0.26);
}
.btnGhost{
  border:2px solid rgba(46,63,68,0.60);
  color:var(--dark);
  background:rgba(255,255,255,0.65);
}
.btnGhost:hover{
  transform:translateY(-1px);
}

.ctaRow{
  display:flex;
  gap:12px;
  margin-top:22px;
  flex-wrap:wrap;
}

/* ---------------------------
   Forms
---------------------------- */
form{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}
input[type="email"]{
  flex:1 1 260px;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid var(--ink-2);
  outline:none;
  font-family:var(--font);
}
input[type="email"]:focus{
  border-color:rgba(46,63,68,0.55);
  box-shadow:0 0 0 4px rgba(199,183,163,0.28);
}

/* ---------------------------
   Footer
---------------------------- */
.footer{
  padding-top:44px;
  font-size:14px;
  text-align:center;
  color:rgba(46,63,68,0.62);
}
.footer a{
  color:rgba(46,63,68,0.78);
  text-decoration:none;
}
.footer a:hover{
  text-decoration:underline;
  text-underline-offset:5px;
}

/* ---------------------------
   Responsive
---------------------------- */
@media (max-width:720px){
  .brandLogo--full{ display:none; }
  .brandLogo--icon{ display:block; }

  .toplinks{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
  }
  .toplinks a{ margin-left:0; }
  .hero h1{ font-size:32px; }
  .section{ padding:46px 0; }
}

/* ---------------------------
   Boxed Layout (stronger, visible)
---------------------------- */
@media (min-width:1280px){
  body{
    background:
      radial-gradient(1300px 760px at 18% 0%, rgba(199,183,163,0.42), transparent 62%),
      radial-gradient(1100px 640px at 100% 10%, rgba(46,63,68,0.18), transparent 58%),
      #f3f0ea;
  }

  .pageBox{
    background:rgba(255,255,255,0.88);
    border:1px solid rgba(46,63,68,0.16);
    border-radius:26px;
    padding:58px 58px 76px;
    box-shadow:0 22px 70px rgba(0,0,0,0.10);
  }
}

/* --- Ritual lines: subtle visual break (quiet premium) --- */
#rituals{
  position: relative;
  padding: 72px 0;
  margin: 10px 0;
}

#rituals::before{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  top: 8px;
  width: min(1140px, 92vw);
  height: 1px;
  background: rgba(46,63,68,0.18);
}

#rituals::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom: 8px;
  width: min(1140px, 92vw);
  height: 1px;
  background: rgba(46,63,68,0.18);
}

#rituals .sectionTitle{
  text-align:center;
  justify-content:center;
  margin-bottom: 10px;
}

#rituals .sectionTitle h3,
#rituals .sectionTitle span{
  margin-left:auto;
  margin-right:auto;
}

#rituals .sectionTitle span{
  max-width: 62ch;
}

#rituals .sectionKicker{
  text-align:center;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(46,63,68,0.70);
  margin: 10px auto 26px;
}

#rituals .grid2{
  align-items: stretch;
}

#rituals .card{
  background: rgba(255,255,255,0.86);
  border-color: rgba(46,63,68,0.20);
  box-shadow: 0 14px 32px rgba(0,0,0,0.06);
}

#rituals .card:hover{
  box-shadow: 0 18px 40px rgba(0,0,0,0.075);
}

@media (max-width:820px){
  #rituals{
    padding: 58px 0;
  }
  #rituals .sectionKicker{
    margin-bottom: 18px;
  }
}

/* Ritual lines header centering (fallback for direct heading structure) */
#rituals > h3{
  text-align:center;
}
#rituals .sectionIntro{
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}
