/* Healing Tourist — shared stylesheet v1.0 | DRAFT, pending counsel review */
:root {
  --teal: #0E7C86;
  --teal-dk: #0A5F67;
  --ink: #1B3A40;
  --mint: #2EC4B6;
  --saff: #E8A33D;
  --muted: #5E7B80;
  --cloud: #F0F6F6;
  --line: #D6E4E4;
  --white: #fff;
  --warn: #8A5A00;
  --warn-bg: #FFF6E5;
  --display: Georgia, 'Times New Roman', serif;
  --body: Calibri, 'Segoe UI', system-ui, -apple-system, sans-serif;
  --wrap: 1120px;
  --narrow: 760px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased
}

img {
  max-width: 100%;
  display: block
}

a {
  color: var(--teal)
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line)
}

.nav-in {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px
}

.nav-in img {
  height: 64px
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600
}

.nav-links a:hover,
.nav-links a[aria-current] {
  color: var(--teal)
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-family: var(--body);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  will-change: transform;
}

.btn-p {
  background: var(--teal);
  color: #fff
}

.btn-p:hover {
  background: var(--teal-dk);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(14, 124, 134, 0.35)
}

.btn-p:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(14, 124, 134, 0.2)
}

.btn-o {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal)
}

.btn-o:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(14, 124, 134, 0.2)
}

.btn-o:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(14, 124, 134, 0.15)
}

.btn-sm {
  padding: 9px 18px;
  font-size: 14px
}

/* HAMBURGER */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  gap: 5px;
  border-radius: 6px;
  transition: .18s
}

.nav-toggle:hover {
  background: var(--cloud)
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* LAYOUT */
section {
  padding: 76px 24px
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto
}

.narrow {
  max-width: var(--narrow);
  margin: 0 auto
}

.cloud {
  background: var(--cloud)
}

.dark {
  background: var(--ink);
  color: #fff
}

.dark h2,
.dark h3 {
  color: #fff
}

.dark p,
.dark li {
  color: rgba(255, 255, 255, .82)
}

h1 {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -.4px
}

h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.22;
  font-weight: 700;
  margin-bottom: 18px
}

h3 {
  font-family: var(--display);
  font-size: 21px;
  line-height: 1.3;
  margin-bottom: 8px
}

.lead {
  font-size: 20px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 640px
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px
}

.dark .eyebrow {
  color: var(--mint)
}

p+p {
  margin-top: 14px
}

/* HERO */
.hero {
  padding: 88px 24px 72px;
  background: linear-gradient(170deg, var(--cloud) 0%, #fff 70%)
}

/* DOORS */
.doors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 44px
}

.door {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 34px 30px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
  will-change: transform, box-shadow;
}

.door:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 14px 32px -4px rgba(14, 124, 134, 0.15)
}

.door-flag {
  font-size: 30px;
  margin-bottom: 14px
}

.door h3 {
  font-size: 25px;
  margin-bottom: 10px
}

.door p {
  color: var(--muted);
  font-size: 16px;
  flex: 1
}

.door .price {
  font-family: var(--display);
  font-size: 26px;
  color: var(--teal);
  font-weight: 700;
  margin: 18px 0 6px
}

.door .go {
  color: var(--teal);
  font-weight: 700;
  margin-top: 16px
}

/* CARDS / GRIDS */
.grid {
  display: grid;
  gap: 20px
}

.g2 {
  grid-template-columns: repeat(2, 1fr)
}

.g3 {
  grid-template-columns: repeat(3, 1fr)
}

.g4 {
  grid-template-columns: repeat(4, 1fr)
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px
}

.card p {
  font-size: 16px;
  color: var(--muted)
}

/* HONESTY BLOCK — the signature element */
.honesty {
  background: var(--ink);
  border-radius: 14px;
  padding: 52px 46px;
  color: #fff;
  text-align: center
}

.honesty .stat {
  font-family: var(--display);
  font-size: clamp(56px, 9vw, 92px);
  font-weight: 700;
  color: var(--mint);
  line-height: 1
}

.honesty h2 {
  margin: 14px 0 12px
}

.honesty p {
  max-width: 600px;
  margin: 0 auto;
  color: rgba(255, 255, 255, .8)
}

.honesty .asof {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  margin-top: 22px;
  letter-spacing: .5px
}

/* WILL NOT PROMISE */
.wont {
  border-left: 4px solid var(--saff);
  padding-left: 26px
}

.wont li {
  list-style: none;
  font-size: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line)
}

.wont li:last-child {
  border-bottom: none
}

.wont li b {
  font-family: var(--display)
}

/* IS / IS NOT */
.isnot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px
}

.isnot>div {
  border-radius: 10px;
  padding: 28px
}

.is {
  background: #EAF6F5;
  border: 1px solid var(--mint)
}

.not {
  background: #FBF3F3;
  border: 1px solid #E5C4C4
}

.isnot h3 {
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--body);
  font-weight: 700
}

.is h3 {
  color: var(--teal-dk)
}

.not h3 {
  color: #9B3B36
}

.isnot ul {
  margin-top: 12px;
  padding-left: 20px
}

.isnot li {
  margin-bottom: 9px;
  font-size: 16px
}

/* STEPS */
.steps {
  counter-reset: s;
  margin-top: 34px
}

.step {
  display: flex;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line)
}

.step:last-child {
  border-bottom: none
}

.step-n {
  flex: 0 0 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px
}

.step-b h3 {
  font-size: 19px;
  margin-bottom: 4px
}

.step-b p {
  color: var(--muted);
  font-size: 16px
}

/* PRICE TIERS */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px
}

.tier {
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  background: #fff
}

.tier.feat {
  border-color: var(--teal)
}

.tier .amt {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 700;
  color: var(--ink);
  margin: 8px 0
}

.tier ul {
  list-style: none;
  margin-top: 16px
}

.tier li {
  padding: 7px 0;
  font-size: 15.5px;
  border-bottom: 1px dashed var(--line)
}

.tier li:before {
  content: "— ";
  color: var(--teal);
  font-weight: 700
}

/* TABLE */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  font-size: 16px
}

th {
  background: var(--ink);
  color: #fff;
  text-align: left;
  padding: 13px 16px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase
}

td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top
}

tr:nth-child(even) td {
  background: var(--cloud)
}

/* NOTE BOXES */
.note {
  background: var(--cloud);
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  padding: 22px 26px;
  margin: 26px 0
}

.note.warn {
  background: var(--warn-bg);
  border-left-color: var(--saff)
}

.note p {
  font-size: 16px
}

/* FAQ — GEO structured, answer-first */
.faq {
  border-top: 1px solid var(--line);
  padding: 24px 0
}

.faq h3 {
  font-size: 20px;
  margin-bottom: 8px
}

.faq .ans {
  font-weight: 700;
  color: var(--ink)
}

.faq p+p {
  color: var(--muted)
}

/* FORM */
form {
  margin-top: 28px
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.f {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px
}

label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink)
}

input,
select,
textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  font-size: 16px;
  font-family: var(--body);
  color: var(--ink);
  background: #fff;
  width: 100%
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--teal)
}

textarea {
  min-height: 110px;
  resize: vertical
}

.f-note {
  font-size: 13.5px;
  color: var(--muted);
  margin-top: 10px
}

/* FOOTER */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .62);
  padding: 56px 24px 28px;
  font-size: 15px
}

.f-grid {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 38px
}

footer img {
  height: 32px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: .85
}

footer h4 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-family: var(--body)
}

footer a {
  display: block;
  color: rgba(255, 255, 255, .62);
  text-decoration: none;
  margin-bottom: 9px
}

footer a:hover {
  color: #fff
}

.f-bottom {
  max-width: var(--wrap);
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: 13px;
  color: rgba(255, 255, 255, .4)
}

.draft {
  background: var(--warn-bg);
  color: var(--warn);
  text-align: center;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .3px
}

@media(max-width:880px) {
  .nav-toggle {
    display: flex
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    z-index: 99;
    padding: 8px 0;
  }

  .nav-links.open {
    display: flex
  }

  .nav-links a {
    padding: 14px 24px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: none
  }

  nav {
    position: sticky
  }

  .doors,
  .g2,
  .g3,
  .g4,
  .isnot,
  .tiers,
  .f-row {
    grid-template-columns: 1fr
  }

  .f-grid {
    grid-template-columns: 1fr 1fr
  }

  section {
    padding: 56px 20px
  }

  .honesty {
    padding: 36px 24px
  }

  body {
    font-size: 16.5px
  }
}

@media(max-width:560px) {
  .f-grid {
    grid-template-columns: 1fr
  }
}

/* ── BLOG ── */
.blog-hero {
  padding: 72px 24px 48px;
  background: var(--cloud);
  border-bottom: 1px solid var(--line)
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px
}

.post {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
  will-change: transform, box-shadow;
}

.post:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px -4px rgba(14, 124, 134, 0.15)
}

.post-bar {
  height: 5px;
  background: var(--teal)
}

.post-bar.dom {
  background: var(--saff)
}

.post-bar.mvt {
  background: var(--mint)
}

.post-in {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.post-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px
}

.post h3 {
  font-size: 19px;
  line-height: 1.32;
  margin-bottom: 9px
}

.post p {
  font-size: 15px;
  color: var(--muted);
  flex: 1
}

.post-meta {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line)
}

.article {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 80px
}

.crumb {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 18px
}

.crumb a {
  text-decoration: none
}

.article h1 {
  font-size: clamp(30px, 4.2vw, 44px);
  margin-bottom: 16px
}

.byline {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--muted);
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 34px
}

.article h2 {
  font-size: 27px;
  margin: 40px 0 14px
}

.article h3 {
  font-size: 20px;
  margin: 28px 0 8px
}

.article p {
  margin-bottom: 16px;
  font-size: 17.5px;
  line-height: 1.75
}

.article ul,
.article ol {
  margin: 0 0 20px 24px
}

.article li {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.7
}

.article .answer {
  background: var(--cloud);
  border-left: 4px solid var(--teal);
  padding: 18px 24px;
  border-radius: 0 8px 8px 0;
  margin: 0 0 22px;
  font-weight: 700;
  font-size: 18px
}

.src {
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  margin-top: 44px;
  padding-top: 20px
}

.src li {
  font-size: 14px;
  margin-bottom: 8px
}

.cta-strip {
  background: var(--ink);
  border-radius: 12px;
  padding: 32px;
  margin: 40px 0;
  color: #fff
}

.cta-strip h3 {
  color: #fff;
  margin-bottom: 8px
}

.cta-strip p {
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  margin-bottom: 18px
}

@media(max-width:880px) {
  .post-grid {
    grid-template-columns: 1fr
  }

  .article {
    padding: 36px 20px 60px
  }
}

/* ── CONSENT ── */
#ht-cc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--ink);
  color: #fff;
  padding: 18px 24px;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, .2)
}

.cc-in {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap
}

.cc-in p {
  flex: 1;
  min-width: 280px;
  font-size: 15px;
  color: rgba(255, 255, 255, .85);
  margin: 0
}

.cc-in a {
  color: var(--mint);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.cc-in a:hover {
  color: #fff;
}

.cc-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

#ht-cc .btn-o {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: transparent;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

#ht-cc .btn-o:hover {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(46, 196, 182, 0.4);
}

#ht-cc .btn-o:active {
  transform: translateY(0);
  box-shadow: none;
}

#ht-cc .btn-p {
  background: var(--mint);
  color: var(--ink);
  font-weight: 700;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s ease, box-shadow 0.2s ease;
}

#ht-cc .btn-p:hover {
  background: #25b5a7;
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(46, 196, 182, 0.4);
}

#ht-cc .btn-p:active {
  transform: translateY(0);
  box-shadow: none;
}

#ht-cp {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(27, 58, 64, .6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px
}

.cp-box {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow: auto
}

.cp-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px
}

.cp-row input {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0
}

@media(max-width:600px) {
  .cc-in {
    flex-direction: column;
    align-items: stretch
  }

  .cc-btns {
    justify-content: stretch
  }

  .cc-btns .btn {
    flex: 1;
    text-align: center
  }
}