* {
  box-sizing: border-box;
}

:root {
  --bg: #f3eee7;
  --paper: #fffaf2;
  --paper-2: #f8f0e5;
  --ink: #22312d;
  --muted: #68756f;
  --sage: #7f9586;
  --sage-dark: #53675c;
  --copper: #b9765b;
  --copper-dark: #9c604a;
  --dark: #17221f;
  --line: rgba(34, 49, 45, .14);
  --shadow: 0 24px 80px rgba(45, 37, 28, .16);
  --radius: 28px;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 12%, rgba(127, 149, 134, .18), transparent 30%),
    radial-gradient(circle at 88% 8%, rgba(185, 118, 91, .16), transparent 28%),
    var(--bg);
  line-height: 1.7;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: .3s ease;
}

.header-inner {
  margin-top: 16px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  background: rgba(250, 246, 239, .72);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 50px rgba(23, 34, 31, .12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header.is-scrolled .header-inner {
  margin-top: 8px;
  background: rgba(250, 246, 239, .88);
  box-shadow: 0 12px 46px rgba(23, 34, 31, .16);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.logo small {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-size: 10px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--dark);
  color: #fff8ef;
  font-family: var(--font-display);
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(34, 49, 45, .78);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
  transition: .25s;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--copper);
  transition: .25s;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-phone {
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(23, 34, 31, .08);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.02em;
}

.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: var(--dark);
  padding: 14px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #fff8ef;
  border-radius: 2px;
  margin: 5px 0;
  transition: .25s;
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 86px;
  right: 20px;
  width: min(360px, calc(100vw - 40px));
  padding: 22px;
  border-radius: 28px;
  background: rgba(250, 246, 239, .96);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .56);
  display: none;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: .25s;
}

.mobile-menu a {
  padding: 12px 14px;
  border-radius: 16px;
  font-weight: 800;
  color: var(--ink);
}

.mobile-menu a:hover {
  background: rgba(127, 149, 134, .14);
}

.mobile-phone {
  background: rgba(23, 34, 31, .08);
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 15px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

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

.btn-primary {
  color: #fffaf2;
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  box-shadow: 0 16px 34px rgba(156, 96, 74, .28);
}

.btn-primary:hover {
  box-shadow: 0 22px 42px rgba(156, 96, 74, .36);
}

.btn-ghost {
  color: #fffaf2;
  border-color: rgba(255, 250, 242, .42);
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 250, 242, .12);
}

.btn-outline {
  color: var(--ink);
  border-color: rgba(34, 49, 45, .18);
  background: rgba(255, 255, 255, .42);
}

.btn-outline:hover {
  border-color: var(--copper);
  background: #fff;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 126px 0 72px;
  overflow: hidden;
  background-image: url("assets/img/hero.jpg");
  background-size: cover;
  background-position: center;
  color: #fffaf2;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 27, 24, .86), rgba(18, 27, 24, .58) 46%, rgba(18, 27, 24, .28)),
    radial-gradient(circle at 72% 18%, rgba(185, 118, 91, .28), transparent 28%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .7fr);
  gap: 58px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .55;
}

.hero h1,
.section h2 {
  font-family: var(--font-display);
  line-height: .98;
  letter-spacing: -.045em;
  margin: 18px 0 22px;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 8vw, 92px);
}

.hero-lead {
  max-width: 670px;
  color: rgba(255, 250, 242, .84);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-points {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 250, 242, .22);
  background: rgba(255, 250, 242, .08);
  border-radius: 999px;
  color: rgba(255, 250, 242, .82);
  font-weight: 800;
  font-size: 13px;
}

.therapist-card {
  justify-self: end;
  width: min(420px, 100%);
  border-radius: 34px;
  overflow: hidden;
  background: rgba(255, 250, 242, .13);
  border: 1px solid rgba(255, 250, 242, .24);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
}

.therapist-card img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.therapist-card__body {
  padding: 22px;
}

.therapist-card__body strong {
  display: block;
  font-size: 24px;
  font-family: var(--font-display);
  margin-bottom: 6px;
}

.therapist-card__body p {
  margin: 0;
  color: rgba(255, 250, 242, .78);
  font-size: 15px;
}

.section {
  padding: 112px 0;
}

.section h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.section p {
  color: var(--muted);
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head p {
  font-size: 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: .88fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-note {
  position: absolute;
  right: -24px;
  bottom: 34px;
  width: min(310px, calc(100% - 28px));
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 250, 242, .86);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .6);
  box-shadow: 0 18px 50px rgba(45, 37, 28, .18);
}

.media-note span {
  display: block;
  color: var(--copper);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  margin-bottom: 8px;
}

.media-note strong {
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1.1;
}

.about-content > p {
  font-size: 18px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 34px 0;
}

.stats div {
  padding: 22px 18px;
  border-radius: 22px;
  background: rgba(255, 250, 242, .68);
  border: 1px solid var(--line);
}

.stats b {
  display: block;
  font-size: 34px;
  line-height: 1;
  font-family: var(--font-display);
}

.stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 12px;
  height: 12px;
  border: 2px solid var(--sage);
  border-radius: 50%;
}

.requests {
  background: linear-gradient(180deg, rgba(255, 250, 242, .36), rgba(127, 149, 134, .12));
}

.request-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.request-card,
.fear-card,
.process-card,
.price-card {
  border-radius: 26px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, .72);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.request-card:hover,
.fear-card:hover,
.process-card:hover,
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 60px rgba(45, 37, 28, .13);
  border-color: rgba(185, 118, 91, .32);
}

.request-card span,
.process-card span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  border-radius: 999px;
  margin-bottom: 20px;
  background: rgba(127, 149, 134, .16);
  color: var(--sage-dark);
  font-weight: 900;
}

.request-card h3,
.fear-card h3,
.process-card h3,
.price-card h3,
.case-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.request-card p,
.fear-card p,
.process-card p,
.price-card p,
.case-card p {
  margin: 0;
  color: var(--muted);
}

.fears-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.fear-list {
  display: grid;
  gap: 16px;
}

.fear-card {
  background: rgba(34, 49, 45, .95);
  color: #fffaf2;
  border-color: rgba(255, 250, 242, .1);
}

.fear-card p {
  color: rgba(255, 250, 242, .72);
}

.cases {
  background: #efe7dc;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.case-card {
  position: relative;
  min-height: 430px;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  padding: 0;
  background: var(--dark);
  color: #fffaf2;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 18px 60px rgba(45, 37, 28, .12);
}

.case-card:nth-child(1),
.case-card:nth-child(2) {
  grid-column: span 2;
}

.case-card:nth-child(3) {
  grid-column: span 1;
}

.case-card:nth-child(4),
.case-card:nth-child(5) {
  grid-column: span 2;
}

.case-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform .5s ease;
  opacity: .82;
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(17, 26, 23, .92));
}

.case-card div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.case-card p {
  color: rgba(255, 250, 242, .76);
}

.zoom-hint {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 250, 242, .88);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  transform: translateY(-8px);
  opacity: 0;
  transition: .25s;
}

.case-card:hover img {
  transform: scale(1.06);
}

.case-card:hover .zoom-hint {
  opacity: 1;
  transform: translateY(0);
}

.process-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

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

.price-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.price-card strong {
  margin: auto 0 20px;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}

.price-card.featured {
  background: var(--dark);
  color: #fffaf2;
  transform: translateY(-12px);
  box-shadow: var(--shadow);
}

.price-card.featured p {
  color: rgba(255, 250, 242, .72);
}

.badge {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(185, 118, 91, .18);
  color: #f0b19a;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 900;
}

.faq {
  background: rgba(255, 250, 242, .38);
}

.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 54px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 250, 242, .7);
}

.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 22px 58px 22px 22px;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
  position: relative;
}

.faq-item button::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(127, 149, 134, .16);
  transition: .25s;
}

.faq-item.is-open button::after {
  content: "−";
  background: var(--dark);
  color: #fffaf2;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.faq-answer p {
  padding: 0 22px 22px;
  margin: 0;
}

.contact {
  background:
    linear-gradient(135deg, rgba(23, 34, 31, .94), rgba(57, 77, 68, .9)),
    url("assets/img/case-support.jpg") center / cover;
  color: #fffaf2;
}

.contact-wrap {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 42px;
  align-items: center;
}

.contact h2 {
  color: #fffaf2;
}

.contact p,
.contact .section-kicker {
  color: rgba(255, 250, 242, .78);
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: rgba(255, 250, 242, .82);
  font-weight: 800;
}

.contact-lines a:hover {
  color: #fff;
}

.lead-form {
  padding: 34px;
  border-radius: 32px;
  background: rgba(255, 250, 242, .12);
  border: 1px solid rgba(255, 250, 242, .22);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 90px rgba(0, 0, 0, .22);
}

.lead-form label {
  display: block;
  margin-bottom: 16px;
}

.lead-form span {
  display: block;
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 900;
  color: rgba(255, 250, 242, .78);
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 242, .24);
  background: rgba(255, 250, 242, .9);
  color: var(--ink);
  border-radius: 18px;
  padding: 16px;
  outline: none;
  resize: vertical;
  transition: .25s;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: #fff;
  box-shadow: 0 0 0 4px rgba(255, 250, 242, .12);
}

.lead-form button {
  width: 100%;
  margin-top: 6px;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: #fffaf2 !important;
  font-weight: 800;
}

.lead-form small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 250, 242, .62);
}

.site-footer {
  padding: 42px 0;
  background: var(--dark);
  color: rgba(255, 250, 242, .72);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.footer-logo {
  color: #fffaf2;
  margin-bottom: 14px;
}

.footer-logo .logo-mark {
  background: #fffaf2;
  color: var(--dark);
}

.footer-links {
  display: grid;
  gap: 10px;
  text-align: right;
}

.footer-links a {
  color: #fffaf2;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 84px;
  background: rgba(10, 13, 12, .92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: calc(100vh - 120px);
  border-radius: 22px;
  box-shadow: 0 26px 100px rgba(0, 0, 0, .42);
  object-fit: contain;
}

.lightbox button {
  position: absolute;
  border: 0;
  cursor: pointer;
  color: #fffaf2;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
  transition: .25s;
}

.lightbox button:hover {
  background: rgba(255, 255, 255, .2);
}

.lightbox-close {
  top: 22px;
  right: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 58px;
  height: 72px;
  border-radius: 999px;
  font-size: 54px;
  line-height: 1;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.reveal,
.reveal-group > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.is-visible,
.reveal-group > *.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group > *:nth-child(2) { transition-delay: .06s; }
.reveal-group > *:nth-child(3) { transition-delay: .12s; }
.reveal-group > *:nth-child(4) { transition-delay: .18s; }
.reveal-group > *:nth-child(5) { transition-delay: .24s; }
.reveal-group > *:nth-child(6) { transition-delay: .30s; }

@media (max-width: 1100px) {
  .desktop-nav,
  .header-phone {
    display: none;
  }

  .hamburger,
  .mobile-menu {
    display: flex;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-inner,
  .about-grid,
  .fears-grid,
  .faq-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .therapist-card {
    justify-self: start;
    max-width: 520px;
  }

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

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

  .case-card,
  .case-card:nth-child(n) {
    grid-column: span 1;
  }

  .about-media img {
    height: 520px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .header-inner {
    border-radius: 24px;
  }

  .logo span:not(.logo-mark) {
    font-size: 14px;
  }

  .hero {
    padding-top: 108px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .therapist-card img {
    height: 380px;
  }

  .section {
    padding: 78px 0;
  }

  .stats,
  .request-grid,
  .process-grid,
  .pricing-grid,
  .cases-grid {
    grid-template-columns: 1fr;
  }

  .media-note {
    position: relative;
    right: auto;
    bottom: auto;
    margin: -70px 16px 0;
  }

  .about-media img {
    height: 460px;
  }

  .price-card.featured {
    transform: none;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    text-align: left;
  }

  .lightbox {
    padding: 70px 18px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 58px;
    font-size: 42px;
  }
}
