/* ============================================================
   CoreFlow · Sedona — design system
   Palette drawn from the client's own logos:
     indigo   #201050  (Breathe & Flow logo depth)
     violet   #5b21c9  (CoreFlow logo)
     teal     #12a5a5  (CoreFlow logo)
     lavender #d8c9f2  (Breathe & Flow logo)
     blush    #f2cfc6  (Breathe & Flow logo)
     terra    #c08a64  (Shamanic Breathwork logo / Sedona rock)
     cream    #faf7f2
   ============================================================ */

:root {
  --indigo: #241457;
  --indigo-deep: #180c3d;
  --violet: #5b21c9;
  --violet-soft: #7a4fd8;
  --teal: #b98a2e;
  --teal-deep: #8a6620;
  --lavender: #d8c9f2;
  --blush: #f2cfc6;
  --terra: #d9a84e;
  --terra-deep: #96613c;
  --cream: #faf7f2;
  --cream-dim: #f3ede3;
  --ink: #2b2440;
  --ink-soft: #554a72;
  --white: #ffffff;
  --gold: #d9a84e;
  --radius: 18px;
  --shadow: 0 10px 40px rgba(36, 20, 87, 0.10);
  --shadow-lift: 0 18px 60px rgba(36, 20, 87, 0.16);
  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Figtree", "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--indigo);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.65rem); }

p { margin-bottom: 1.1em; }

a { color: var(--violet); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--teal-deep); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(36, 20, 87, 0.08);
}
.site-header .bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 10px 20px; max-width: 1200px; margin: 0 auto;
}
@media (min-width: 901px) and (max-width: 1290px) {
  .nav { gap: 14px; }
  .nav a { font-size: 0.88rem; }
  .nav .btn { padding: 10px 16px; font-size: 0.88rem; }
  .brand .brand-sub { display: none; }
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { height: 46px; width: auto; }
.brand .brand-sub {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft); display: block; margin-top: -2px;
}
.nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.nav a {
  text-decoration: none; color: var(--ink); font-weight: 500; font-size: 0.95rem;
  padding: 4px 0; border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--violet); border-bottom-color: var(--violet); }
.nav .btn { border-bottom: none; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--indigo); margin: 5px 0; border-radius: 2px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: 13px 28px; border-radius: 999px;
  font-weight: 600; font-size: 0.98rem; text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease; cursor: pointer; border: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(120deg, var(--violet), var(--teal-deep));
  color: var(--white); box-shadow: 0 6px 24px rgba(91, 33, 201, 0.35);
}
.btn-primary:hover { color: var(--white); box-shadow: 0 10px 30px rgba(91, 33, 201, 0.45); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--indigo);
  border: 1.5px solid var(--indigo); box-shadow: none;
}
.btn-outline:hover { background: var(--indigo); color: var(--cream); }
.btn-light { background: var(--cream); color: var(--indigo); }
.btn-light:hover { background: var(--white); color: var(--violet); }

/* ---------- hero ---------- */
.hero {
  position: relative; color: var(--cream); overflow: hidden;
  background: linear-gradient(165deg, var(--indigo-deep) 0%, var(--indigo) 34%, var(--violet) 72%, var(--terra) 125%);
}
.hero .hero-art { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.hero .hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(24,12,61,0.85) 0%, rgba(24,12,61,0.55) 52%, rgba(24,12,61,0.18) 100%);
}
.hero .hero-inner {
  position: relative; z-index: 2; max-width: 1120px; margin: 0 auto;
  padding: clamp(70px, 12vw, 130px) 24px;
}
.hero h1 { color: var(--white); max-width: 15ch; text-wrap: balance; }
.hero .kicker {
  letter-spacing: 0.28em; text-transform: uppercase; font-size: 0.8rem;
  color: var(--lavender); margin-bottom: 18px; font-weight: 600;
}
.hero .lede { font-size: 1.18rem; max-width: 54ch; margin: 22px 0 34px; color: #efe9fb; }
.hero .cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero .hero-phone { color: var(--lavender); font-size: 0.95rem; }
.hero .hero-phone a { color: var(--white); font-weight: 700; text-decoration: none; }

.hero-page { text-align: left; }
.hero-page .hero-inner { padding: clamp(56px, 9vw, 96px) 24px; }

/* ---------- sections ---------- */
section { padding: clamp(56px, 9vw, 96px) 0; }
.section-tint { background: var(--cream-dim); }
.section-indigo { background: linear-gradient(150deg, var(--indigo-deep), var(--indigo) 60%, #3a1e7e); color: var(--cream); }
.section-indigo h2, .section-indigo h3 { color: var(--white); }
.section-indigo p { color: #e8e2f6; }

.kicker {
  letter-spacing: 0.26em; text-transform: uppercase; font-size: 0.78rem;
  color: var(--teal-deep); font-weight: 700; margin-bottom: 12px;
}
.section-head { max-width: 760px; margin-bottom: 40px; }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; }

/* ---------- cards ---------- */
.card-grid { display: grid; gap: 26px; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card .card-art { height: 190px; position: relative; overflow: hidden; }
.card .card-art img, .card .card-art svg { width: 100%; height: 100%; object-fit: cover; }
.card .card-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: 0.98rem; flex: 1; }
.card .price-line { font-weight: 700; color: var(--indigo); margin: 8px 0 16px; font-size: 1.05rem; }
.card .btn { align-self: flex-start; }

/* ---------- split layout ---------- */
.split { display: grid; gap: 48px; grid-template-columns: 1fr 1fr; align-items: center; }
.split .split-art img { border-radius: var(--radius); box-shadow: var(--shadow-lift); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }

/* ---------- pricing ---------- */
.price-panel {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 34px; margin: 30px 0;
}
.price-panel .price-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 18px;
  padding: 14px 0; border-bottom: 1px solid rgba(36,20,87,0.09); flex-wrap: wrap;
}
.price-panel .price-row:last-child { border-bottom: none; }
.price-panel .price-name { font-weight: 600; }
.price-panel .price-note { color: var(--ink-soft); font-size: 0.9rem; display: block; font-weight: 400; }
.price-panel .price-amt { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--violet); white-space: nowrap; }

/* ---------- checklist / benefits ---------- */
.check-list { list-style: none; margin: 18px 0 26px; }
.check-list li { padding-left: 34px; position: relative; margin-bottom: 12px; color: var(--ink-soft); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px;
  border-radius: 50%; background: linear-gradient(130deg, var(--teal), var(--violet));
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/contain no-repeat;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z"/></svg>') center/contain no-repeat;
}

/* ---------- quote / testimonial ---------- */
.quote {
  background: var(--white); border-left: 4px solid var(--violet);
  border-radius: 0 var(--radius) var(--radius) 0; box-shadow: var(--shadow);
  padding: 30px 34px; margin: 26px 0; font-size: 1.05rem; color: var(--ink-soft);
}
.quote .attrib { margin-top: 14px; font-weight: 600; color: var(--indigo); font-size: 0.92rem; margin-bottom: 0; }

/* ---------- faq ---------- */
.faq details {
  background: var(--white); border-radius: 14px; box-shadow: var(--shadow);
  padding: 20px 26px; margin-bottom: 14px;
}
.faq summary {
  font-weight: 600; color: var(--indigo); cursor: pointer; font-size: 1.04rem;
  list-style: none; position: relative; padding-right: 30px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--violet); font-weight: 400;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 14px 0 4px; color: var(--ink-soft); }

/* ---------- notice / disclaimer ---------- */
.notice {
  background: var(--cream-dim); border: 1px solid rgba(36,20,87,0.12);
  border-radius: 14px; padding: 22px 26px; font-size: 0.92rem; color: var(--ink-soft); margin: 30px 0;
}
.notice strong { color: var(--indigo); }

/* ---------- pay row ---------- */
.pay-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin: 18px 0; }
.pay-meta { font-size: 0.88rem; color: var(--ink-soft); }

/* ---------- book banner ---------- */
.book-banner {
  background: linear-gradient(130deg, var(--violet), var(--teal-deep));
  border-radius: var(--radius); color: var(--white);
  padding: clamp(34px, 6vw, 56px); text-align: center; box-shadow: var(--shadow-lift);
}
.book-banner h2 { color: var(--white); margin-bottom: 10px; }
.book-banner p { color: #eef4f4; max-width: 56ch; margin: 0 auto 24px; }
.book-banner .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--indigo-deep); color: #cfc4e8;
  padding: 60px 0 30px; font-size: 0.93rem;
}
.site-footer a { color: var(--lavender); }
.site-footer a:hover { color: var(--white); }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1.3fr 1fr 1fr; margin-bottom: 40px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--white); font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px;
  font-size: 0.8rem; color: #9d8fc4; line-height: 1.8;
}
address { font-style: normal; }

/* ---------- responsive nav ---------- */
@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; align-items: flex-start;
    padding: 18px 24px 26px; gap: 14px; border-bottom: 1px solid rgba(36,20,87,0.1);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
}

/* ---------- utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.small { font-size: 0.88rem; color: var(--ink-soft); }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--indigo); color: var(--white);
  padding: 10px 18px; z-index: 100; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
