:root {
  --bg: #fbfaff;
  --white: #ffffff;
  --text: #151515;
  --muted: #2f3036;
  --muted-soft: #3f4048;

  --blue: #1f6fb2;
  --purple: #b7a3db;
  --soft-purple: #f3eefb;

  --line: rgba(21, 21, 21, 0.1);
  --shadow: 0 28px 90px rgba(60, 45, 90, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  opacity: 0;
  animation: pageFadeIn 0.9s ease forwards;
}

body.modal-open {
  overflow: hidden;
}

body.modal-open .site-shell {
  filter: blur(12px);
  transform: scale(0.985);
  pointer-events: none;
}

.site-shell {
  transition: filter 0.35s ease, transform 0.35s ease;
}

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

/* =========================
   HEADER / NAVIGATION
========================= */

.site-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 14px;
  right: 14px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.06);
}

.brand {
  color: var(--text);
  text-decoration: none;
  line-height: 1;
}

.brand span {
  display: block;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav {
  display: none;
}

.header-button {
  color: var(--white);
  background: var(--text);
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
}

/* =========================
   SHARED SECTION STYLES
========================= */

.page-section {
  position: relative;
}

.section-marker {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 42px;
}

.section-marker span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.section-marker div {
  height: 1px;
  background: var(--line);
}

.section-marker p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-marker.light span,
.section-marker.light p {
  color: rgba(255, 255, 255, 0.82);
}

.section-marker.light div {
  background: rgba(255, 255, 255, 0.18);
}

.eyebrow {
  position: relative;
  z-index: 2;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.055em;
}

h1 {
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
  font-size: clamp(64px, 18vw, 118px);
  line-height: 0.82;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(44px, 12vw, 82px);
  line-height: 0.9;
}

h3 {
  margin-bottom: 0;
  font-size: 20px;
  letter-spacing: -0.04em;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading p,
.about-content p,
.price-card p,
.contact-section p,
.faq-item p,
.hero-text,
.hero-note,
.review-card small,
.reviews-modal-header span,
.reviews-modal-content article span {
  color: var(--muted);
}

.section-heading p,
.about-content p,
.price-card p,
.contact-section p,
.faq-item p {
  line-height: 1.75;
  font-size: 16px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--text);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

/* =========================
   HERO
========================= */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 138px 24px 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 24px 30px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(31, 111, 178, 0.25),
    rgba(183, 163, 219, 0.45),
    transparent
  );
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.55;
  pointer-events: none;
  --parallax-y: 0px;
  will-change: transform;
}

.orb-one {
  width: 360px;
  height: 360px;
  right: -180px;
  top: 120px;
  background: var(--purple);
  animation: drift 12s ease-in-out infinite;
}

.orb-two {
  width: 260px;
  height: 260px;
  left: -140px;
  bottom: 90px;
  background: rgba(31, 111, 178, 0.22);
  animation: drift 15s ease-in-out infinite reverse;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 610px;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions .facebook-button {
  border: 1px solid #d9d4e8;
  background: rgba(177, 160, 214, 0.1);
  color: #493b70;
}

.hero-actions .facebook-button:hover {
  background: #b5a2dd;
  color: #fff;
  border-color: #b5a2dd;
}

.hero-note {
  position: relative;
  z-index: 2;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 650;
}

/* =========================
   TRUST STRIP
========================= */

.trust-strip {
  display: grid;
  gap: 12px;
  padding: 24px;
  background: var(--text);
  color: var(--white);
}

.trust-strip span {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

/* =========================
   MAIN SECTIONS
========================= */

.about-section,
.video-section,
.clinic-section,
.sessions-section,
.reviews-section,
.faq-section,
.contact-section {
  padding: 86px 24px;
}

.about-section {
  display: grid;
  gap: 34px;
  background: var(--white);
}

.video-section {
  background: linear-gradient(180deg, var(--white), var(--bg));
}

.clinic-section,
.faq-section {
  background: var(--white);
}

.sessions-section {
  background: var(--bg);
}

/* =========================
   ABOUT
========================= */

.portrait-card {
  overflow: hidden;
  border-radius: 38px;
  box-shadow: var(--shadow);
}

.portrait-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.credentials {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.credentials span {
  padding: 16px;
  border-radius: 18px;
  background: var(--soft-purple);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.text-button {
  margin-top: 16px;
  border: 0;
  background: transparent;
  color: var(--blue);
  padding: 0;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: opacity .25s ease;
}

.text-button:hover {
  opacity: .7;
}

/* Expandable Bio */

.full-bio {
  display: none;
  margin-top: 30px;
}

.full-bio.open {
  display: block;
  animation: bioFade .4s ease;
}

.full-bio h3 {
  margin: 42px 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
}

.full-bio p {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.8;
}

@keyframes bioFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   VIDEO
========================= */

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #000;
  box-shadow: var(--shadow);
}

.video-card video {
  width: 100%;
}

/* =========================
   CLINIC
========================= */

.clinic-gallery {
  display: grid;
  gap: 14px;
}

.clinic-gallery img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease;
}

.clinic-gallery img:hover {
  transform: scale(1.025);
}

.clinic-address {
  width: 100%;
  max-width: 440px;
  margin-top: 30px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.clinic-address > span {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.clinic-address address {
  color: var(--text);
  font-style: normal;
  font-size: 16px;
  line-height: 1.75;
}

.clinic-address address strong {
  font-weight: 850;
}

.clinic-map-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-top: 20px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.clinic-map-link:hover {
  transform: translateY(-2px);
  background: var(--blue);
  color: var(--white);
}
/* =========================
   SESSIONS / PRICES
========================= */

.price-grid {
  display: grid;
  gap: 14px;
}

.price-card,
.review-card,
.faq-list {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.price-card {
  padding: 28px;
}

.price-card span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Previous Price */

.old-price {
  display: block;
  margin-top: 18px;
  margin-bottom: 8px;
  color: #777780;
  font-size: 13px;
  font-weight: 700;
  text-decoration: line-through;
}

/* Current Price */

.price-card strong {
  display: block;
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: var(--text);
}

.price-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.price-card.featured {
  background: linear-gradient(145deg, var(--soft-purple), var(--white));
}

/* =========================
   REVIEWS
========================= */

.reviews-section {
  text-align: center;
  background: var(--text);
  color: var(--white);
}

.review-stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 96px;
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.review-stat span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.review-card {
  margin-top: 44px;
  padding: 30px;
  text-align: left;
  color: var(--text);
}

.stars {
  margin-bottom: 18px;
  color: var(--blue);
  letter-spacing: 0.15em;
}

.review-card p {
  font-size: 21px;
  line-height: 1.55;
  color: var(--text);
}

.review-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  margin-top: 24px;
  padding: 0 22px;
  border-radius: 999px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.24);
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.review-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}

/* =========================
   FAQ
========================= */

.faq-section {
  background:
    radial-gradient(circle at top right, rgba(183, 163, 219, 0.3), transparent 35%),
    var(--white);
}

.faq-list {
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px;
  color: var(--text);
  font: inherit;
  font-size: 16px;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-size: 20px;
}

.faq-item.open button::after {
  content: "–";
}

.faq-item p {
  display: none;
  padding: 0 22px 24px;
  margin: 0;
}

.faq-item.open p {
  display: block;
}

/* =========================
   CONSULTATION FORM
========================= */

.contact-section {
  min-height: 90vh;
  text-align: center;
  background:
    radial-gradient(circle at 20% 15%, rgba(183, 163, 219, 0.28), transparent 36%),
    radial-gradient(circle at 85% 70%, rgba(31, 111, 178, 0.12), transparent 34%),
    var(--bg);
}

.contact-intro {
  max-width: 760px;
  margin: 0 auto 32px;
}

.contact-form {
  display: grid;
  gap: 18px;
  width: 100%;
  max-width: 720px;
  margin: 34px auto 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
  text-align: left;
  backdrop-filter: blur(18px);
}

.form-grid {
  display: grid;
  gap: 18px;
}

.floating-field {
  position: relative;
  display: block;
}

.floating-field input,
.floating-field select,
.floating-field textarea {
  width: 100%;
  min-height: 60px;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px 16px 10px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  outline: none;
}

.floating-field textarea {
  min-height: 140px;
  resize: vertical;
}

.floating-field span {
  position: absolute;
  left: 16px;
  top: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  pointer-events: none;
  transition: transform 0.2s ease, font-size 0.2s ease, color 0.2s ease;
}

.floating-field input:focus,
.floating-field select:focus,
.floating-field textarea:focus {
  border-color: rgba(31, 111, 178, 0.45);
  box-shadow: 0 0 0 4px rgba(31, 111, 178, 0.08);
}

.floating-field input:focus + span,
.floating-field input:not(:placeholder-shown) + span,
.floating-field select:focus + span,
.floating-field select:valid + span,
.floating-field textarea:focus + span,
.floating-field textarea:not(:placeholder-shown) + span {
  transform: translateY(-11px);
  font-size: 10px;
  color: var(--blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
}

.facebook-text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

/* =========================
   REVIEWS MODAL / FULL PAGE OVERLAY
========================= */

.reviews-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  padding: 18px;
}

.reviews-modal.open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, 0.42);
}

.reviews-modal-panel {
  position: relative;
  z-index: 2;
  height: calc(100vh - 36px);
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 34px;
  background: var(--bg);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
}

.reviews-modal-header {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--line);
}

.reviews-modal-header strong {
  display: block;
  font-size: 18px;
}

.reviews-modal-header span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
}

.reviews-modal-header button {
  border: 0;
  background: var(--text);
  color: var(--white);
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 800;
  cursor: pointer;
}

.reviews-modal-content {
  display: grid;
  gap: 16px;
  padding: 24px;
  overflow-y: auto;
}

.reviews-modal-content article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.reviews-modal-content article div {
  margin-bottom: 14px;
  color: var(--blue);
  letter-spacing: 0.15em;
}

.reviews-modal-content article p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.55;
}

.reviews-modal-content article span {
  font-size: 13px;
}

/* =========================
   ANIMATIONS
========================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%, 100% {
    transform: translate3d(0, var(--parallax-y), 0) scale(1);
  }

  50% {
    transform: translate3d(-18px, calc(20px + var(--parallax-y)), 0) scale(1.08);
  }
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* =========================
   TABLET
========================= */

@media (min-width: 760px) {
  .site-header {
    left: 28px;
    right: 28px;
    padding: 0 24px;
  }

  .nav {
    display: flex;
    gap: 24px;
  }

  .nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 750;
  }

  .hero,
  .about-section,
  .video-section,
  .clinic-section,
  .sessions-section,
  .reviews-section,
  .faq-section,
  .contact-section {
    padding-left: 56px;
    padding-right: 56px;
  }

  .hero-actions {
    display: flex;
  }

  .trust-strip {
    grid-template-columns: repeat(4, 1fr);
    padding: 26px 56px;
  }

  .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .clinic-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   DESKTOP
========================= */

@media (min-width: 1100px) {
  .site-header {
    left: 50px;
    right: 50px;
  }

  .hero {
    max-width: 1500px;
    margin: 0 auto;
    padding: 160px 90px 90px;
  }

  .hero-actions {
    max-width: 700px;
  }

  .hero-note {
    margin-top: 28px;
  }

  .about-section,
  .clinic-section,
  .sessions-section,
  .faq-section,
  .contact-section,
  .video-section {
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 90px;
    padding-right: 90px;
  }

  .about-section {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 70px;
  }

  .section-heading {
    max-width: 900px;
  }

  .video-card {
    width: 58%;
    max-width: 680px;
    margin: 60px auto 0;
    border-radius: 40px;
  }

  .clinic-gallery {
    grid-template-columns: 1.1fr 0.9fr 0.9fr 1.1fr;
  }

  .clinic-address {
    margin-top: 34px;
  }

  .review-card,
  .faq-list {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 70px;
    text-align: left;
  }

  .contact-section .section-marker {
    grid-column: 1 / -1;
  }

  .contact-intro {
    margin: 0;
  }

  .contact-form {
    margin: 0;
  }

  .facebook-text-link {
    grid-column: 2;
    justify-self: start;
  }
}

/* =========================
   UNDERSTANDING HYPNOTHERAPY / MYTHS
========================= */

.myths-section {
  background: var(--bg);
  padding: 86px 24px;
}

.myths-hero {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
  background: var(--text);
}

.myths-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.myths-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.08)),
    linear-gradient(to right, rgba(0, 0, 0, 0.38), transparent);
}

.myths-hero-content {
  position: relative;
  z-index: 2;
  padding: 34px;
  max-width: 760px;
  color: var(--white);
}

.myths-hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.myths-hero-content h2 {
  margin-bottom: 18px;
  color: var(--white);
}

.myths-hero-content p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.75;
}

.myths-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.myth-card {
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.myth-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.myth-card h3 {
  margin-bottom: 14px;
  color: var(--text);
  font-size: 24px;
}

.myth-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.truth-card {
  background: linear-gradient(145deg, var(--soft-purple), var(--white));
}

@media (min-width: 760px) {
  .myths-section {
    padding-left: 56px;
    padding-right: 56px;
  }

  .myths-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .truth-card {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1100px) {
  .myths-section {
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 90px;
    padding-right: 90px;
  }

  .myths-hero {
    min-height: 620px;
  }

  .myths-hero-content {
    padding: 56px;
  }

  .myths-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 22px;
  }

  .truth-card {
    grid-column: span 2;
  }
}