/* ============================================================
   Blisspoint Wellness — Design System
   Fonts: Fraunces (display) + Work Sans (body/UI)
   Palette: moss / clay / linen — grounded, warm, unhurried
   ============================================================ */

:root{
  --ink:        #12181F;
  --ink-soft:   #3E4A55;
  --bg:         #F1F3F2;
  --card:       #FBFCFB;
  --sage:       #2E7A96;
  --sage-dark:  #17475C;
  --clay:       #4FA9C9;
  --clay-dark:  #327E9B;
  --line:       #CFD8D6;
  --line-soft:  #E4E9E8;
  --max: 1080px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4{
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1{ font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 480; letter-spacing: -0.01em; }
h2{ font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3{ font-size: 1.3rem; }

p{ margin: 0 0 1em; max-width: 62ch; color: var(--ink-soft); }

a{ color: var(--clay); text-decoration: none; }
a:hover{ color: var(--clay-dark); }

a:focus-visible, button:focus-visible{
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

img{ max-width: 100%; display: block; }

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header / Nav ---------- */
header.site{
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg);
}
header.site .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand{
  display: flex;
  align-items: center;
  font-family: "Fraunces", serif;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.brand img{
  height: 58px;
  width: 58px;
  border-radius: 50%;
  display: block;
}
.brand span{ color: var(--sage); }

nav.main{
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
nav.main a{
  color: var(--ink-soft);
  font-size: 0.96rem;
}
nav.main a.active, nav.main a:hover{ color: var(--clay); }

.nav-toggle{ display: none; }

@media (max-width: 760px){
  header.site .wrap{ flex-direction: column; align-items: flex-start; }
  nav.main{ gap: 16px 22px; }
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-block;
  padding: 13px 26px;
  border-radius: 2px;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary{
  background: var(--sage);
  color: #FBF9F3;
}
.btn-primary:hover{ background: var(--sage-dark); color: #FBF9F3; }

.btn-outline{
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline:hover{ border-color: var(--clay); color: var(--clay); }

/* ---------- Hero ---------- */
.hero{
  padding: 72px 0 88px;
}
.hero .wrap{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.hero .eyebrow{
  color: var(--clay);
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.hero-art{
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #0E141B 0%, #14374A 55%, var(--sage) 100%);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.hero-art::after{
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.35), transparent 55%);
}
@media (max-width: 820px){
  .hero .wrap{ grid-template-columns: 1fr; }
  .hero-art{ aspect-ratio: 16/9; order: -1; }
}

/* ---------- Section rhythm ---------- */
section{ padding: 64px 0; }
section.alt{ background: var(--line-soft); }
.section-head{ max-width: 640px; margin-bottom: 40px; }
.section-head .eyebrow{ color: var(--clay); font-size: 0.92rem; margin-bottom: 10px; display:block; }

/* organic divider */
.divider{
  height: 34px;
  background: var(--bg);
}
.divider svg{ width: 100%; height: 34px; display: block; }
section.alt + .divider, .divider + section.alt{ background: var(--line-soft); }

/* ---------- Cards / grids ---------- */
.grid{
  display: grid;
  gap: 26px;
}
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
@media (max-width: 820px){
  .grid-3, .grid-2{ grid-template-columns: 1fr; }
}

.card{
  background: var(--card);
  border: 1px solid var(--line);
  padding: 30px 28px;
  border-radius: 3px;
}
.card h3{ margin-bottom: 10px; }
.card p{ margin-bottom: 0.6em; }
.card .price{ color: var(--clay); font-family: "Fraunces", serif; font-size: 1.05rem; }

/* ---------- Shop links ---------- */
.shop-link{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 3px;
  margin-bottom: 14px;
}
.shop-link .platform{
  font-size: 0.82rem;
  color: var(--sage);
  text-transform: none;
  letter-spacing: 0.02em;
}
.shop-link h3{ margin: 2px 0 0; font-size: 1.1rem; }
.shop-link .btn{ flex-shrink: 0; }

/* ---------- Steps (real sequence: how a session works) ---------- */
.steps{ counter-reset: step; display: grid; gap: 22px; }
.step{ display: flex; gap: 18px; align-items: flex-start; }
.step::before{
  counter-increment: step;
  content: counter(step);
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  color: var(--clay);
  border: 1px solid var(--line);
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--card);
}

/* ---------- Blog ---------- */
.post-list{ display: grid; gap: 0; }
.post-item{
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
}
.post-item .date{ color: var(--sage); font-size: 0.9rem; }
.post-item h3{ margin-bottom: 8px; }
@media (max-width: 600px){
  .post-item{ grid-template-columns: 1fr; }
}

/* ---------- Downloads ---------- */
.download-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.download-row:last-child{ border-bottom: none; }
.download-row .meta{ font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- Quote / testimonial ---------- */
.quote{
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--ink);
  max-width: 640px;
  line-height: 1.4;
}
.quote cite{ display: block; margin-top: 16px; font-family: "Work Sans", sans-serif; font-style: normal; font-size: 0.9rem; color: var(--sage); }

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--sage-dark);
  color: #F2EEE3;
  padding: 64px 0;
  text-align: left;
}
.cta-band h2{ color: #F2EEE3; }
.cta-band p{ color: #D8DECB; }
.cta-band .btn-primary{ background: var(--clay); }
.cta-band .btn-primary:hover{ background: var(--clay-dark); }

/* ---------- Contact ---------- */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 760px){ .contact-grid{ grid-template-columns: 1fr; } }

form.contact-form{ display: grid; gap: 16px; }
form.contact-form label{ font-size: 0.9rem; color: var(--ink-soft); display: block; margin-bottom: 6px; }
form.contact-form input, form.contact-form textarea{
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 2px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
}
form.contact-form textarea{ min-height: 120px; resize: vertical; }

/* ---------- Footer ---------- */
footer.site{
  border-top: 1px solid var(--line);
  padding: 44px 0;
  margin-top: 40px;
}
footer.site .wrap{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
footer.site .fbrand{ font-family: "Fraunces", serif; font-size: 1.1rem; }
footer.site p{ font-size: 0.88rem; margin: 4px 0; }
footer .flinks{ display: flex; gap: 22px; flex-wrap: wrap; }
footer .flinks a{ color: var(--ink-soft); font-size: 0.9rem; }
