/* ===========================================================
   Divine Flow Healing — shared styles
   Palette + type pulled from the brand's Instagram carousel:
   cream #F5EFE6 / #EDE0D4 / #FDF6EE
   dark brown #3D2B1F / #2C1F17
   terracotta/tan #C9956A / #A0714F / #8B6650
   Fonts: Cormorant Garamond (serif) + Jost (sans)
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --cream: #F5EFE6;
  --cream-alt: #EDE0D4;
  --cream-light: #FDF6EE;
  --brown-deep: #2C1F17;
  --brown: #3D2B1F;
  --tan: #C9956A;
  --tan-deep: #A0714F;
  --tan-muted: #8B6650;
  --line: rgba(61, 43, 31, 0.12);
  --shadow: 0 8px 40px rgba(60, 30, 10, 0.12);
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Jost', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

.narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Type ---------- */

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--tan-deep);
  font-weight: 500;
  margin: 0 0 18px 0;
}

.eyebrow.on-dark { color: var(--tan); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--brown);
  margin: 0 0 0.5em 0;
  line-height: 1.18;
}

h1 { font-size: clamp(38px, 6vw, 62px); font-weight: 400; }
h2 { font-size: clamp(30px, 4.4vw, 42px); }
h3 { font-size: clamp(22px, 3vw, 27px); font-weight: 500; }

p { margin: 0 0 1.2em 0; }

.lede {
  font-size: clamp(19px, 2.4vw, 23px);
  font-weight: 300;
  line-height: 1.65;
  color: var(--brown);
  opacity: 0.92;
}

.accent-line {
  width: 44px;
  height: 2px;
  background: var(--tan);
  border-radius: 2px;
  margin: 0 0 22px 0;
}
.accent-line.center { margin-left: auto; margin-right: auto; }

.italic { font-style: italic; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--brown);
  color: var(--cream-light);
}
.btn-primary:hover { background: var(--brown-deep); transform: translateY(-1px); }

.btn-accent {
  background: var(--tan);
  color: var(--brown-deep);
}
.btn-accent:hover { background: var(--tan-deep); color: var(--cream-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--brown);
  border-color: var(--brown);
}
.btn-outline:hover { background: var(--brown); color: var(--cream-light); }

.btn-outline.on-dark {
  color: var(--cream-light);
  border-color: rgba(253,246,238,0.5);
}
.btn-outline.on-dark:hover { background: rgba(253,246,238,0.12); }

/* ---------- Nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 230, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  max-width: 1080px;
  margin: 0 auto;
}

.brand {
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: var(--brown);
}
.brand strong { font-weight: 600; }
.brand span { color: var(--tan-deep); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--brown);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--tan-deep); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--brown);
  cursor: pointer;
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 16px 28px; width: 100%; border-top: 1px solid var(--line); }
}

/* ---------- Sections ---------- */

section { padding: 88px 0; }
@media (max-width: 760px) { section { padding: 60px 0; } }

.section-dark {
  background: var(--brown);
  color: var(--cream-light);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--cream-light); }
.section-dark p { color: var(--cream-light); }

.section-tan {
  background: var(--tan);
  color: var(--brown-deep);
}
.section-tan h1, .section-tan h2, .section-tan h3 { color: var(--brown-deep); }

.section-alt { background: var(--cream-alt); }

.center { text-align: center; }

.hero {
  padding: 130px 0 100px;
  text-align: center;
}

/* ---------- Cards / Grids ---------- */

.grid {
  display: grid;
  gap: 32px;
}
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

.card {
  background: var(--cream-light);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px 32px;
  box-shadow: var(--shadow);
}

.offer-card {
  background: var(--cream-light);
  border-radius: 6px;
  padding: 48px 40px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.offer-card .btn { margin-top: auto; align-self: flex-start; }

ul.check-list {
  list-style: none;
  margin: 0 0 1.4em 0;
  padding: 0;
}
ul.check-list li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  font-weight: 300;
}
ul.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tan);
}

/* Curriculum list */
.curriculum {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: lesson;
}
.curriculum li {
  counter-increment: lesson;
  display: flex;
  gap: 22px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.curriculum li::before {
  content: counter(lesson, decimal-leading-zero);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--tan-deep);
  min-width: 32px;
}
.curriculum li span { font-family: var(--serif); font-size: 20px; }

/* Quote / story block */
.quote-block {
  border-left: 3px solid var(--tan);
  padding-left: 28px;
  font-style: italic;
  font-size: 22px;
  font-weight: 300;
  margin: 0;
}

/* Footer */
.site-footer {
  background: var(--brown-deep);
  color: rgba(253,246,238,0.75);
  padding: 56px 0 32px;
  font-family: var(--sans);
  font-size: 13px;
}
.site-footer a { text-decoration: none; color: rgba(253,246,238,0.75); }
.site-footer a:hover { color: var(--tan); }
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-grid h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tan);
  margin: 0 0 14px 0;
  font-weight: 500;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(253,246,238,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  letter-spacing: 0.5px;
  opacity: 0.6;
}

/* Decorative corner (echoes carousel) */
.corner-deco {
  position: absolute;
  top: 0; right: 0;
  width: 160px; height: 160px;
  background: rgba(201,149,106,0.08);
  border-bottom-left-radius: 160px;
  pointer-events: none;
}
.relative { position: relative; overflow: hidden; }

/* Note / placeholder banner */
.todo-banner {
  background: #FCE9D6;
  border: 1px dashed var(--tan-deep);
  color: var(--brown);
  font-family: var(--sans);
  font-size: 13px;
  padding: 12px 20px;
  border-radius: 4px;
  margin-bottom: 24px;
}
