/* Mark Beck Hypnosis
   Deep slate/indigo + warm cream + quiet gold.
   Not spa-woo, not HVAC teal, not rust-paper. */

:root {
  --ink: #141c2c;
  --slate: #1b2744;
  --slate-mid: #243356;
  --cream: #f6f1e6;
  --cream-2: #ebe4d2;
  --paper: #fffaf0;
  --gold: #c4a574;
  --gold-deep: #8f6e3a;
  --gold-btn: #d4b47c;
  --text: #1a2130;
  --muted: #3d475c;
  --line: rgba(27, 39, 68, 0.14);
  --focus: #8f6e3a;
  --header-h: 4.25rem;
  --callbar-h: 3.5rem;
  --max: 70rem;
  --measure: 40rem;
  --radius: 0.75rem;
  --shadow: 0 1px 0 rgba(20, 28, 44, 0.06), 0 12px 32px rgba(20, 28, 44, 0.08);
  --font-ui: "Outfit", system-ui, sans-serif;
  --font-body: "Source Serif 4", "Iowan Old Style", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  padding-top: var(--header-h);
  padding-bottom: calc(var(--callbar-h) + 0.75rem);
}

@media (min-width: 48rem) {
  body {
    padding-bottom: 0;
  }
}

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

a {
  color: var(--gold-deep);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--slate);
}

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

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 100;
  background: var(--gold-btn);
  color: var(--ink);
  padding: 0.4rem 0.8rem;
  font-family: var(--font-ui);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  top: 0.35rem;
}

/* Sticky header: name + click-to-call */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: var(--slate);
  color: var(--cream);
  border-bottom: 1px solid rgba(196, 165, 116, 0.28);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.1rem;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  flex: 1;
  min-width: 0;
}

.brand:hover {
  color: var(--gold);
}

.brand img {
  width: 2.35rem;
  height: 2.35rem;
  flex-shrink: 0;
  border-radius: 0.45rem;
}

.brand span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(246, 241, 230, 0.28);
  background: transparent;
  color: var(--cream);
  border-radius: 0.45rem;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-toggle:hover,
.nav-toggle[aria-expanded="true"] {
  background: var(--slate-mid);
  border-color: var(--gold);
  color: var(--gold-btn);
}

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--slate-mid);
  border-bottom: 1px solid rgba(196, 165, 116, 0.28);
  padding: 0.5rem 1.1rem 1rem;
  flex-direction: column;
  gap: 0.15rem;
}

.site-nav.is-open {
  display: flex;
}

.site-nav a {
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 1rem;
  padding: 0.55rem 0.35rem;
  border-radius: 0.4rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold-btn);
  background: rgba(196, 165, 116, 0.1);
}

.btn-call-header {
  display: none;
  font-family: var(--font-ui);
  font-weight: 650;
  font-size: 0.92rem;
  background: var(--gold-btn);
  color: var(--ink);
  text-decoration: none;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  white-space: nowrap;
  border: 1px solid #e6d0a0;
}

.btn-call-header:hover {
  background: #e2c792;
  color: var(--ink);
}

@media (min-width: 48rem) {
  .btn-call-header {
    display: inline-flex;
  }
}

/* Six-item nav: keep hamburger until there is room to wrap cleanly */
@media (min-width: 72rem) {
  .nav-toggle {
    display: none;
  }

  .site-header .header-inner {
    position: relative;
  }

  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    background: transparent;
    border: 0;
    padding: 0;
    gap: 0.1rem;
    margin-left: auto;
    margin-right: 0.65rem;
    justify-content: flex-end;
  }

  .site-nav a {
    font-size: 0.86rem;
    padding: 0.4rem 0.55rem;
  }
}

/* Sticky mobile call bar */
.call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  min-height: var(--callbar-h);
  background: var(--ink);
  border-top: 2px solid var(--gold);
}

.call-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-ui);
  font-weight: 650;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.call-bar a:hover {
  background: var(--slate);
  color: var(--gold-btn);
}

.call-bar .dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #c8e0b4;
  box-shadow: 0 0 0 4px rgba(200, 224, 180, 0.18);
}

@media (min-width: 48rem) {
  .call-bar {
    display: none;
  }
}

/* Layout */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.15rem;
}

main {
  display: block;
}

.hero {
  padding: 2.4rem 0 2.2rem;
}

.kicker {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 0.7rem;
}

h1,
h2,
h3 {
  font-family: var(--font-ui);
  font-weight: 650;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(1.85rem, 4.6vw, 3.05rem);
  max-width: 18ch;
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 0 0 0.85rem;
}

h3 {
  font-size: 1.15rem;
  margin: 0 0 0.4rem;
}

.lead {
  font-size: clamp(1.15rem, 2vw, 1.3rem);
  max-width: 38rem;
  margin: 0 0 1.4rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 650;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1.2;
}

.btn-primary {
  background: var(--gold-btn);
  color: var(--ink);
  border-color: #e0c792;
}

.btn-primary:hover {
  background: #e2c792;
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(20, 28, 44, 0.28);
}

.btn-ghost:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--gold-deep);
}

.btn-dark {
  background: var(--slate);
  color: var(--cream);
  border-color: var(--slate);
}

.btn-on-dark {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246, 241, 230, 0.45);
}

.btn-on-dark:hover {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}

.btn-dark:hover {
  background: var(--slate-mid);
  color: var(--gold-btn);
}

section {
  padding: 2.4rem 0;
}

.band {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.band-slate {
  background: var(--slate);
  color: var(--cream);
  border: 0;
}

.band-slate h2,
.band-slate h3 {
  color: var(--cream);
}

.band-slate p {
  color: rgba(246, 241, 230, 0.88);
}

.band-slate a {
  color: var(--gold-btn);
}

.band-slate a:hover {
  color: #f0dfb8;
}

/* Service chips / cards */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chips a,
.chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 550;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.42rem 0.85rem;
  text-decoration: none;
}

.chips a:hover {
  border-color: var(--gold-deep);
  color: var(--ink);
  background: #fff;
}

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 36rem) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 64rem) {
  .cards.cards-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.2rem 1.3rem;
  box-shadow: var(--shadow);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.card-mark {
  width: 2rem;
  height: 0.2rem;
  background: var(--gold);
  margin-bottom: 0.85rem;
  border-radius: 99px;
}

/* How it works steps */
.steps {
  display: grid;
  gap: 1.15rem;
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 48rem) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

.step {
  padding: 0;
}

.step-num {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 0.35rem;
}

.step p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 52rem) {
  .split {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
    gap: 3rem;
  }
}

.prose p {
  margin: 0 0 1rem;
  max-width: var(--measure);
}

.prose p:last-child {
  margin-bottom: 0;
}

.cred-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.cred-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.15rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.cred-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 1px;
  background: var(--gold);
  transform: rotate(45deg);
}

.note {
  font-size: 0.98rem;
  color: var(--muted);
  max-width: var(--measure);
}

/* Contact — full-width cards, no form */
.contact-grid {
  max-width: 48rem;
}

.contact-list {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 40rem) {
  .contact-list {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-list li {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow);
}

.contact-list strong {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  display: block;
  line-height: 1.4;
}

.contact-list span {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.15rem;
}

.contact-list a {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--ink);
  text-decoration: none;
}

.contact-list a:hover {
  color: var(--gold-deep);
  text-decoration: underline;
}

form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  margin: 0 0 0.3rem;
}

.field {
  margin-bottom: 0.9rem;
}

input,
textarea,
select {
  width: 100%;
  font: inherit;
  font-size: 1.05rem;
  padding: 0.6rem 0.7rem;
  border: 1px solid rgba(20, 28, 44, 0.22);
  border-radius: 0.45rem;
  background: #fff;
  color: var(--ink);
}

input:focus,
textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--gold-deep);
}

textarea {
  min-height: 8rem;
  resize: vertical;
}

.form-note {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
}

.form-status {
  display: none;
  margin-top: 0.85rem;
  padding: 0.75rem 0.85rem;
  background: #eef4e6;
  border: 1px solid #c5d4ae;
  color: #243018;
  border-radius: 0.45rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
}

.form-status.is-visible {
  display: block;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(246, 241, 230, 0.82);
  padding: 2.2rem 0 2.6rem;
  font-size: 0.98rem;
  margin-top: 0.5rem;
}

.site-footer h2 {
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.site-footer a {
  color: var(--gold-btn);
}

.site-footer a:hover {
  color: #f0dfb8;
}

.disclaimer {
  max-width: 46rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(246, 241, 230, 0.7);
}

.foot-meta {
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(246, 241, 230, 0.12);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
}

.page-hero {
  padding-bottom: 0.4rem;
}

.page-hero h1 {
  max-width: 16ch;
}


/* ---------- Rebuild: essays, fees, misconceptions, iceberg ---------- */

:target {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.page-hero h1.title-wide,
h1.title-wide {
  max-width: 28ch;
}

.essay {
  max-width: 42.5rem;
}

.essay > p {
  margin: 0 0 1.15rem;
}

.essay > p:last-child {
  margin-bottom: 0;
}

.scale-note {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  margin: 0 0 1.5rem;
  max-width: 44rem;
  box-shadow: var(--shadow);
}

.scale-note p {
  margin: 0 0 0.65rem;
  color: var(--muted);
}

.scale-note p:last-child {
  margin-bottom: 0;
}

.cards.fee-cards {
  grid-template-columns: 1fr;
}

@media (min-width: 48rem) {
  .cards.fee-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.fee-card h2 {
  font-size: 1.22rem;
  margin-bottom: 0.55rem;
}

.fee-card .card-mark {
  margin-bottom: 0.7rem;
}

.fee-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.15rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-ui);
}

.fee-line .fee-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.fee-line .fee-amount {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.warning {
  margin: 0.9rem 0 0;
  padding: 0.75rem 0.9rem;
  background: #f3ead4;
  border-left: 3px solid var(--gold-deep);
  color: var(--ink);
  font-size: 0.92rem;
  font-family: var(--font-ui);
  font-weight: 650;
  line-height: 1.45;
}

.misconceptions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
  max-width: 46rem;
}

.misconception {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.25rem 1.3rem;
  box-shadow: var(--shadow);
}

.misconception .num {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 0.35rem;
}

.misconception h2 {
  font-size: 1.12rem;
  margin: 0 0 0.55rem;
  max-width: none;
  letter-spacing: -0.015em;
}

.misconception p {
  margin: 0 0 0.7rem;
  color: var(--muted);
}

.misconception p:last-child {
  margin-bottom: 0;
}

.figure-iceberg {
  margin: 1.5rem 0 2rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.7rem 0.7rem 1rem;
  box-shadow: var(--shadow);
  max-width: 26rem;
}

.figure-iceberg svg,
.figure-iceberg img {
  width: 100%;
  height: auto;
  border-radius: 0.35rem;
}

.figure-iceberg figcaption {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0.7rem 0.35rem 0;
  line-height: 1.45;
}

.referral {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.3rem 1.35rem;
  box-shadow: var(--shadow);
  max-width: 34rem;
}

.referral p {
  margin: 0 0 0.85rem;
}

.referral .who {
  font-family: var(--font-ui);
  font-weight: 650;
  font-size: 1.12rem;
  color: var(--ink);
  margin: 0.2rem 0 0.15rem;
}

.referral .creds {
  color: var(--muted);
  margin: 0 0 0.35rem;
}

.referral .phone-lg {
  font-family: var(--font-ui);
  font-weight: 650;
  font-size: 1.28rem;
  color: var(--ink);
  text-decoration: none;
  display: inline-block;
  margin: 0.35rem 0 0.55rem;
}

.referral .phone-lg:hover {
  color: var(--gold-deep);
}

.referral .offerings {
  margin: 0.4rem 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: var(--muted);
}

.referral .offerings li {
  padding: 0.2rem 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.05rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  font-family: var(--font-ui);
  font-size: 0.88rem;
}

.footer-nav a {
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.come-line {
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.75rem;
}

.band-slate .come-line {
  color: var(--cream);
}
