/* ============================================================
   HealOneSelf Homepage Styles
   Scoped under .hos-wrap to avoid theme conflicts
   ============================================================ */

/* --- CSS Variables --- */
.hos-wrap {
  --cream: #F5EDE4;
  --cream2: #FAF6F2;
  --oat: #E8D5C0;
  --terra: #C4825A;
  --terra-light: #D4966E;
  --gold: #C9956A;
  --text: #2C1A0E;
  --text-mid: #6B4C35;
  --text-light: #9B7355;
  --border: rgba(196,130,90,0.15);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
  --max: 1160px;
  line-height: 1.5;
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
.hos-wrap *, .hos-wrap *::before, .hos-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- Keyframe Animations --- */
@keyframes hos-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes hos-float0 { 0%,100% { transform: rotate(-7deg) translateY(0); } 50% { transform: rotate(-7deg) translateY(-16px); } }
@keyframes hos-float1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes hos-float2 { 0%,100% { transform: rotate(7deg) translateY(0); } 50% { transform: rotate(7deg) translateY(-14px); } }
@keyframes hos-pulse { 0%,100% { opacity: .5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.18); } }
@keyframes hos-drift { 0%,100% { transform: translateY(0) rotate(0deg); opacity: .18; } 50% { transform: translateY(-10px) rotate(6deg); opacity: .32; } }
@keyframes hos-fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hos-orbBreathe { 0%,100% { transform: scale(1); opacity: .06; } 50% { transform: scale(1.08); opacity: .11; } }
@keyframes hos-cardGlow { 0%,100% { box-shadow: 0 24px 60px rgba(44,26,14,.18); } 50% { box-shadow: 0 28px 70px rgba(196,130,90,.22); } }

/* --- TICKER --- */
.hos-wrap .ticker {
  background: var(--cream2);
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}
.hos-wrap .t-track {
  display: inline-flex;
  gap: 48px;
  animation: hos-ticker 36s linear infinite;
}
.hos-wrap .t-item {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: .12em;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hos-wrap .t-stars { color: var(--terra); }
.hos-wrap .t-div { color: rgba(196,130,90,.28); }

/* --- HERO --- */
.hos-wrap .hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  overflow: hidden;
}
.hos-wrap .hero-photo-col {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 60px 44px;
}
.hos-wrap .hero-photo-col::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(196,130,90,.06);
  top: -100px;
  left: -100px;
  animation: hos-orbBreathe 6s ease-in-out infinite;
}
.hos-wrap .hero-photo-col::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(196,130,90,.05);
  bottom: -60px;
  right: -60px;
  animation: hos-orbBreathe 7s 2s ease-in-out infinite;
}
.hos-wrap .scatter {
  position: absolute;
  font-family: var(--serif);
  color: var(--terra);
  pointer-events: none;
  animation: hos-drift ease-in-out infinite;
}
.hos-wrap .photo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hos-wrap .photo-circle {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 1px rgba(196,130,90,.18), 0 0 0 10px rgba(245,237,228,.92), 0 0 0 11px rgba(196,130,90,.12), 0 32px 72px rgba(44,26,14,.18);
}
.hos-wrap .photo-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hos-wrap .arc-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  height: 520px;
  pointer-events: none;
}
.hos-wrap .photo-gem {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream2);
  border: .5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--terra);
  animation: hos-pulse 3s ease-in-out infinite;
  margin-top: -17px;
  position: relative;
  z-index: 3;
  box-shadow: 0 4px 16px rgba(196,130,90,.18);
}
.hos-wrap .photo-caption {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--text-light);
  margin-top: 14px;
  text-align: center;
  opacity: .7;
  max-width: 300px;
  line-height: 1.7;
}
.hos-wrap .hero-copy {
  background: var(--cream2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 48px;
  position: relative;
  animation: hos-fadeUp 1s .15s both;
}
.hos-wrap .hero-copy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 100% 100%, rgba(196,130,90,.04) 0%, transparent 55%);
  pointer-events: none;
}
.hos-wrap .hero-name {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 5px;
  font-weight: 400;
}
.hos-wrap .hero-creds {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 24px;
  opacity: .85;
  line-height: 1.8;
}
.hos-wrap .hero-rule {
  width: 38px;
  height: 1.5px;
  background: var(--terra);
  margin-bottom: 26px;
  opacity: .65;
}
.hos-wrap .hero-h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 26px;
  letter-spacing: -.3px;
}
.hos-wrap .hero-h1 em {
  font-style: italic;
  color: var(--terra);
}
.hos-wrap .hero-sub {
  font-family: var(--serif);
  font-size: clamp(15px, 1.4vw, 17px);
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 4px;
}
.hos-wrap .hero-sees {
  font-family: var(--serif);
  font-size: clamp(15px, 1.4vw, 17px);
  font-style: italic;
  color: var(--terra);
  line-height: 1.7;
  margin-bottom: 30px;
  margin-top: 8px;
}
.hos-wrap .cta-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.hos-wrap .btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terra);
  color: #fff;
  border-radius: 40px;
  padding: 16px 40px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 38px rgba(196,130,90,.32);
  transition: all .35s;
}
.hos-wrap .btn-main:hover {
  background: var(--terra-light);
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(196,130,90,.42);
}

/* Clinic Card */
.hos-wrap .clinic-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: 12px;
  border: .5px solid var(--border);
  margin-bottom: 26px;
  box-shadow: 0 4px 16px rgba(196,130,90,.06);
}
.hos-wrap .clinic-pin-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(196,130,90,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  margin-top: 2px;
}
.hos-wrap .clinic-business {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hos-wrap .clinic-name {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .01em;
}
.hos-wrap .clinic-addr {
  font-family: var(--sans);
  font-size: 10px;
  color: var(--text-mid);
  letter-spacing: .06em;
  line-height: 1.6;
}
.hos-wrap .clinic-also {
  font-family: var(--sans);
  font-size: 9.5px;
  color: var(--text-light);
  letter-spacing: .06em;
  margin-top: 2px;
}

/* Trust Row */
.hos-wrap .trust-row {
  display: flex;
  gap: 20px;
  padding-top: 24px;
  border-top: .5px solid var(--border);
  flex-wrap: wrap;
}
.hos-wrap .trust-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hos-wrap .trust-num {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--terra);
  line-height: 1;
}
.hos-wrap .trust-label {
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* --- GEM DIVIDER --- */
.hos-wrap .gem-div-wrap { padding: 36px 0; }
.hos-wrap .gem-div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 64px;
  max-width: 840px;
  margin: 0 auto;
}
.hos-wrap .gem-div-line {
  flex: 1;
  height: .5px;
  background: rgba(196,130,90,.18);
}
.hos-wrap .gem-div-icon {
  color: var(--terra);
  font-size: 14px;
  opacity: .55;
  flex-shrink: 0;
}

/* --- SHARED --- */
.hos-wrap .eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  opacity: .85;
}
.hos-wrap .section-h {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
}
.hos-wrap .section-h em {
  font-style: italic;
  color: var(--terra);
}

/* --- FOR YOU --- */
.hos-wrap .for-you {
  background: var(--cream);
  padding: 96px 24px;
}
.hos-wrap .for-you-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.hos-wrap .for-you-h {
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 44px;
}
.hos-wrap .for-you-h em {
  font-style: italic;
  color: var(--terra);
}
.hos-wrap .for-you-list {
  list-style: none;
  text-align: left;
  margin-bottom: 40px;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
}
.hos-wrap .for-you-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 0;
  border-bottom: .5px solid var(--border);
  font-family: var(--serif);
  font-size: clamp(16px, 1.9vw, 19px);
  color: var(--text);
  font-style: italic;
  line-height: 1.55;
}
.hos-wrap .for-you-item:first-child {
  border-top: .5px solid var(--border);
}
.hos-wrap .for-you-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
  margin-top: 10px;
}
.hos-wrap .for-you-close {
  font-family: var(--serif);
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.9;
  margin-bottom: 36px;
}

/* --- STATS --- */
.hos-wrap .stats-strip {
  background: var(--oat);
  padding: 52px 24px;
}
.hos-wrap .stats-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  text-align: center;
}
.hos-wrap .stat-item {
  padding: 24px 32px;
  border-right: .5px solid rgba(196,130,90,.2);
}
.hos-wrap .stat-item:last-child { border-right: none; }
.hos-wrap .stat-num {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 8px;
}
.hos-wrap .stat-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-mid);
  line-height: 1.55;
}

/* --- PILLARS --- */
.hos-wrap .pillars {
  background: var(--cream2);
  padding: 96px 24px;
}
.hos-wrap .pillars-inner {
  max-width: 880px;
  margin: 0 auto;
}
.hos-wrap .pillars-statement {
  font-family: var(--serif);
  font-size: clamp(26px, 3.8vw, 50px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 40px;
  letter-spacing: -.2px;
  text-align: center;
}
.hos-wrap .pillars-statement em {
  font-style: italic;
  color: var(--terra);
}
.hos-wrap .pillars-thin-rule {
  width: 38px;
  height: 1px;
  background: var(--terra);
  opacity: .5;
  margin: 0 auto 48px;
  display: block;
}
.hos-wrap .pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.hos-wrap .pillar {
  border-top: 1px solid rgba(196,130,90,.3);
  padding: 32px 28px 0;
  position: relative;
}
.hos-wrap .pillar-num {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--terra);
  opacity: .65;
  margin-bottom: 16px;
  display: block;
}
.hos-wrap .pillar-title {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.25;
}
.hos-wrap .pillar-body {
  font-family: var(--serif);
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--text-mid);
  line-height: 1.85;
  font-style: italic;
}

/* --- TESTIMONIALS --- */
.hos-wrap .testimonials {
  background: var(--cream);
  padding: 96px 24px;
}
.hos-wrap .test-inner {
  max-width: 920px;
  margin: 0 auto;
}
.hos-wrap .test-h {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 40px;
}
.hos-wrap .test-h em {
  font-style: italic;
  color: var(--terra);
}
.hos-wrap .test-featured {
  background: var(--oat);
  border-radius: 22px;
  padding: 40px 44px;
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}
.hos-wrap .test-featured::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 130px;
  color: var(--terra);
  opacity: .1;
  position: absolute;
  top: -10px;
  left: 18px;
  line-height: 1;
  pointer-events: none;
}
.hos-wrap .test-text {
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 18px;
  position: relative;
}
.hos-wrap .test-attr {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--text-light);
}
.hos-wrap .test-attr .stars { color: var(--terra); }
.hos-wrap .test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.hos-wrap .test-card {
  background: var(--cream2);
  border-radius: 18px;
  padding: 24px;
  border: .5px solid var(--border);
  transition: box-shadow .3s;
}
.hos-wrap .test-card:hover {
  box-shadow: 0 10px 32px rgba(196,130,90,.08);
}
.hos-wrap .test-card-text {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 14px;
}
.hos-wrap .test-card-attr {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: .08em;
  color: var(--text-light);
}
.hos-wrap .test-card-attr .stars { color: var(--terra); }
.hos-wrap .test-link { text-align: center; }
.hos-wrap .test-link a {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terra);
  text-decoration: none;
}

/* --- ABOUT --- */
.hos-wrap .about {
  background: var(--oat);
  padding: 96px 0;
}
.hos-wrap .about-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.hos-wrap .about-h {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 22px;
}
.hos-wrap .about-h em {
  font-style: italic;
  color: var(--terra);
}
.hos-wrap .about-body {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 18px;
}
.hos-wrap .about-bq {
  padding: 22px 24px;
  border-left: 3px solid var(--terra);
  margin-bottom: 22px;
  background: rgba(196,130,90,.07);
  border-radius: 0 12px 12px 0;
}
.hos-wrap .about-bq p {
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 22px);
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  font-weight: 300;
}
.hos-wrap .about-intuitive {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 22px;
}
.hos-wrap .about-link {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terra);
  text-decoration: none;
}

/* Credential Strip */
.hos-wrap .cred-strip {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}
.hos-wrap .cred-divider {
  height: .5px;
  background: var(--border);
  margin: 0;
}
.hos-wrap .cred-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
}
.hos-wrap .cred-gem {
  color: var(--terra);
  font-size: 11px;
  flex-shrink: 0;
  opacity: .7;
}
.hos-wrap .cred-content { flex: 1; }
.hos-wrap .cred-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 3px;
}
.hos-wrap .cred-label {
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--terra);
  opacity: .8;
}

/* Address Card */
.hos-wrap .address-card {
  background: var(--cream2);
  border-radius: 14px;
  padding: 20px 24px;
  border: .5px solid var(--border);
  margin-top: 4px;
  box-shadow: 0 4px 20px rgba(196,130,90,.07);
}
.hos-wrap .address-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: .5px solid var(--border);
}
.hos-wrap .address-pin-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(196,130,90,.1);
  border: .5px solid rgba(196,130,90,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.hos-wrap .address-biz-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 3px;
}
.hos-wrap .address-street {
  font-family: var(--sans);
  font-size: 10.5px;
  color: var(--text-mid);
  letter-spacing: .04em;
  line-height: 1.6;
}
.hos-wrap .address-suburb {
  font-family: var(--sans);
  font-size: 10.5px;
  color: var(--text-mid);
  letter-spacing: .04em;
}
.hos-wrap .address-bottom {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hos-wrap .address-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.hos-wrap .address-tag-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}

/* --- PROCESS --- */
.hos-wrap .process {
  background: var(--cream2);
  padding: 96px 24px;
}
.hos-wrap .process-inner {
  max-width: 900px;
  margin: 0 auto;
}
.hos-wrap .steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-bottom: 64px;
}
.hos-wrap .step {
  border-top: 1.5px solid var(--terra);
  padding-top: 26px;
}
.hos-wrap .step-num {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--terra);
  margin-bottom: 12px;
  opacity: .7;
}
.hos-wrap .step-title {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: .16em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}
.hos-wrap .step-body {
  font-family: var(--serif);
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.85;
  font-style: italic;
}

/* --- TAROT / CARD READING --- */
.hos-wrap .tarot-transform {
  background: var(--oat);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.hos-wrap .tarot-transform::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(196,130,90,.09) 0%, transparent 65%);
  pointer-events: none;
}
.hos-wrap .tarot-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.hos-wrap .tarot-header {
  text-align: center;
  margin-bottom: 60px;
}
.hos-wrap .tarot-eyebrow {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  opacity: .85;
}
.hos-wrap .tarot-h {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 12px;
}
.hos-wrap .tarot-h em {
  font-style: italic;
  color: var(--terra);
}
.hos-wrap .tarot-sub {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
}

/* Tarot Cards */
.hos-wrap .tarot-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.hos-wrap .tarot-card-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hos-wrap .tarot-card-num {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--terra);
  opacity: .7;
}
.hos-wrap .vis-card {
  width: 120px;
  height: 194px;
  border-radius: 14px;
  box-shadow: 0 24px 56px rgba(44,26,14,.2);
  overflow: hidden;
  position: relative;
}
.hos-wrap .tarot-card-wrap:nth-child(1) .vis-card { animation: hos-float0 3.5s 0s ease-in-out infinite; }
.hos-wrap .tarot-card-wrap:nth-child(2) .vis-card { animation: hos-float1 4s .3s ease-in-out infinite; box-shadow: 0 28px 64px rgba(196,130,90,.22); }
.hos-wrap .tarot-card-wrap:nth-child(3) .vis-card { animation: hos-float2 3.3s .6s ease-in-out infinite; }
.hos-wrap .card-face {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 14px 10px 12px;
  position: relative;
}
.hos-wrap .c-moon { background: linear-gradient(165deg, #EDD9C4 0%, #E0C8B0 100%); }
.hos-wrap .c-star { background: linear-gradient(165deg, #F2E4D6 0%, #E8D0BC 100%); }
.hos-wrap .c-sun  { background: linear-gradient(165deg, #EBD8C8 0%, #DFC8B0 100%); }
.hos-wrap .card-border-inset {
  position: absolute;
  inset: 6px;
  border-radius: 9px;
  border: .5px solid rgba(196,130,90,.22);
}
.hos-wrap .card-corner {
  position: absolute;
  font-size: 7px;
  letter-spacing: .1em;
  color: var(--text-light);
  opacity: .55;
  font-family: var(--sans);
}
.hos-wrap .card-corner.tl { top: 9px; left: 9px; }
.hos-wrap .card-corner.br { bottom: 9px; right: 9px; transform: rotate(180deg); }
.hos-wrap .card-symbol {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--terra);
  opacity: .72;
  line-height: 1;
}
.hos-wrap .card-lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.hos-wrap .card-line { width: 44px; height: .5px; background: rgba(196,130,90,.4); }
.hos-wrap .card-line2 { width: 30px; height: .5px; background: rgba(196,130,90,.25); }
.hos-wrap .card-name-foot {
  font-family: var(--serif);
  font-size: 9.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-mid);
  opacity: .65;
  text-align: center;
}
.hos-wrap .card-transform-label {
  text-align: center;
  max-width: 200px;
}
.hos-wrap .ctl-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.25;
}
.hos-wrap .ctl-body {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.75;
}

/* Path / Experience Preview */
.hos-wrap .path-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.hos-wrap .path-h {
  font-family: var(--serif);
  font-size: clamp(28px, 3.8vw, 44px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 22px;
}
.hos-wrap .path-h em { font-style: italic; color: var(--terra); }
.hos-wrap .path-body {
  font-family: var(--serif);
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 14px;
}
.hos-wrap .path-note {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--text-light);
  margin-bottom: 28px;
  opacity: .8;
}
.hos-wrap .exp-preview {
  background: var(--cream2);
  border-radius: 22px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(196,130,90,.07);
}
.hos-wrap .exp-theme {
  font-family: var(--sans);
  font-size: 8.5px;
  letter-spacing: .18em;
  color: var(--terra);
  margin-bottom: 8px;
  opacity: .8;
  text-transform: uppercase;
}
.hos-wrap .exp-card {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: .5px solid var(--border);
}
.hos-wrap .exp-text {
  font-family: var(--serif);
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 12px;
  font-style: italic;
}
.hos-wrap .exp-sit {
  font-family: var(--serif);
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.75;
  margin-top: 18px;
  padding-top: 18px;
  border-top: .5px solid var(--border);
}

/* --- QUIZ STRIP --- */
.hos-wrap .quiz-strip {
  background: var(--cream2);
  padding: 40px 24px;
  border-top: 1px solid rgba(196,130,90,.14);
  border-bottom: 1px solid rgba(196,130,90,.14);
  text-align: center;
}
.hos-wrap .quiz-strip-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
  opacity: .8;
}
.hos-wrap .quiz-strip-links {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.hos-wrap .quiz-strip-link {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--terra);
  text-decoration: none;
  transition: opacity .3s;
  letter-spacing: .01em;
}
.hos-wrap .quiz-strip-link:hover { opacity: .65; }

/* --- FAQ --- */
.hos-wrap .faq {
  background: var(--cream);
  padding: 96px 24px;
}
.hos-wrap .faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.hos-wrap .faq-h {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 52px;
}
.hos-wrap .faq-h em { font-style: italic; color: var(--terra); }
.hos-wrap .faq-item {
  border-top: .5px solid var(--border);
  padding: 22px 0;
}
.hos-wrap .faq-item:last-child {
  border-bottom: .5px solid var(--border);
}
.hos-wrap .faq-q {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.4;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.hos-wrap .faq-gem {
  color: var(--terra);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 5px;
  opacity: .6;
}
.hos-wrap .faq-a {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  font-style: italic;
}
.hos-wrap .faq-a strong {
  font-weight: 500;
  font-style: normal;
  color: var(--text);
}

/* --- FINAL CTA --- */
.hos-wrap .final-cta {
  background: var(--oat);
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hos-wrap .final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(196,130,90,.1) 0%, transparent 62%);
  pointer-events: none;
}
.hos-wrap .f-scatter {
  position: absolute;
  font-family: var(--serif);
  color: var(--terra);
  pointer-events: none;
  animation: hos-drift ease-in-out infinite;
}
.hos-wrap .final-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.hos-wrap .final-ey {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: .85;
}
.hos-wrap .final-h {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  color: var(--text);
  line-height: 1.06;
  font-weight: 300;
  margin-bottom: 18px;
  letter-spacing: -.5px;
}
.hos-wrap .final-h em {
  color: var(--terra);
  font-style: italic;
  display: block;
}
.hos-wrap .final-sub {
  font-family: var(--serif);
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hos-wrap .final-note {
  display: block;
  font-family: var(--sans);
  font-size: 10.5px;
  color: var(--text-light);
  letter-spacing: .06em;
  margin-top: 18px;
  margin-bottom: 16px;
}
.hos-wrap .final-promise {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: var(--text-mid);
}

/* --- REVEAL ANIMATION --- */
.hos-wrap .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(.34,1.1,.64,1), transform .9s cubic-bezier(.34,1.1,.64,1);
}
.hos-wrap .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .hos-wrap .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hos-wrap .hero-photo-col {
    padding: 52px 24px 36px;
    min-height: auto;
  }
  .hos-wrap .photo-circle { width: 260px; height: 260px; }
  .hos-wrap .arc-svg { width: 340px; height: 340px; }
  .hos-wrap .photo-caption { font-size: 12px; max-width: 240px; }
  .hos-wrap .hero-copy {
    padding: 40px 24px 56px;
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hos-wrap .hero-h1 { font-size: clamp(30px, 9vw, 42px); }
  .hos-wrap .clinic-card { padding: 12px 14px; }
  .hos-wrap .trust-row { gap: 14px; }
  .hos-wrap .for-you { padding: 72px 20px; }
  .hos-wrap .gem-div { padding: 0 24px; }
  .hos-wrap .stats-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hos-wrap .stat-item {
    border-right: none;
    border-bottom: .5px solid rgba(196,130,90,.2);
    padding: 20px 16px;
  }
  .hos-wrap .stat-item:last-child { border-bottom: none; }
  .hos-wrap .pillars { padding: 64px 20px; }
  .hos-wrap .pillars-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hos-wrap .pillar {
    border-top: none;
    border-left: 1.5px solid rgba(196,130,90,.35);
    padding: 0 0 28px 20px;
    margin-bottom: 8px;
  }
  .hos-wrap .testimonials { padding: 72px 20px; }
  .hos-wrap .test-featured { padding: 28px 24px; }
  .hos-wrap .test-text { font-size: 15px; }
  .hos-wrap .test-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hos-wrap .about { padding: 72px 0; }
  .hos-wrap .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px;
  }
  .hos-wrap .process { padding: 72px 20px; }
  .hos-wrap .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
  .hos-wrap .tarot-transform { padding: 60px 20px; }
  .hos-wrap .tarot-cards-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hos-wrap .path-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hos-wrap .faq { padding: 72px 20px; }
  .hos-wrap .faq-q { font-size: 16px; }
  .hos-wrap .final-cta { padding: 80px 20px; }
}

/* ============================================================
   RESPONSIVE — TABLET (769px–1024px)
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
  .hos-wrap .hero-copy { padding: 60px 40px 60px 36px; }
  .hos-wrap .photo-circle { width: 320px; height: 320px; }
  .hos-wrap .arc-svg { width: 420px; height: 420px; }
  .hos-wrap .steps-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hos-wrap .about-inner { gap: 44px; padding: 0 32px; }
  .hos-wrap .tarot-cards-grid { gap: 20px; }
}
