.serif {
  font-family: "Lora-Variable", "serif";
}

.glass-button {
  padding: 16px 32px;
  border-radius: 14px;
  background: none;
  border: none;
  font-size: 1.2rem;
  box-shadow: inset 15px 15px 20px rgba(124, 111, 156, 0.1), inset -5px -5px 10px rgba(253, 252, 250, 0.5), 10px 15px 20px rgba(106, 92, 138, 0.05);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.glass-button::before {
  content: "";
  position: absolute;
  inset: 10px;
  box-shadow: inset 10px 10px 10px #FFF;
  border-radius: 20px;
  filter: blur(20px);
}

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

.glass-card {
  --border-width: 1px;
  border-radius: 24px;
  position: relative;
  background: radial-gradient(circle at 50% 250%, #f4f0fc, #fefdfa);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.02), 0 2px 2px rgba(0, 0, 0, 0.02), 0 4px 4px rgba(0, 0, 0, 0.02), 0 8px 8px rgba(0, 0, 0, 0.02), 0 16px 16px rgba(0, 0, 0, 0.02);
}

.glass-card p {
  color: #2D2A26;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 3;
}

.navbar {
  transition: all 0.5s ease-in-out;
  background: #FDFCFA;
}

.navbar-sticky {
  background: #FDFCFA;
  opacity: 0.9;
  box-shadow: 0 6px 20px rgba(15, 12, 32, 0.06);
}

.nav-brand {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #4C445B;
  margin-right: 2rem;
}

.navbar-nav .nav-link {
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: #5F5A6B;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--bs-primary);
}

.navbar-nav .nav-link.active {
  color: #7C6F9C;
  font-weight: 500;
}

.hero {
  background: linear-gradient(180deg, #FDFCFA 0%, #F8F6FA 100%);
}

.therapy-link {
  text-decoration: none;
  position: relative;
  margin: 0 0 3rem 3rem;
}

.therapy-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--bs-secondary);
  transition: width 0.3s ease;
}

.therapy-link:hover::after {
  width: 100%;
}

.hesitation-questions {
  margin: 3rem 0;
  padding-left: 3.5rem;
  border-left: 2px solid rgba(124, 111, 156, 0.3);
}

.hesitation-questions li {
  list-style: none;
  margin-bottom: 1.5rem;
  font-style: italic;
  color: #4A4540;
  position: relative;
}

.hesitation-questions li::before {
  content: "?";
  position: absolute;
  left: -2rem;
  color: rgba(124, 111, 156, 0.4);
  font-size: 2rem;
  line-height: 1;
  font-family: Georgia, serif;
}

.hesitation-closing {
  font-size: 1.25rem;
}

.waiting-room {
  background: linear-gradient(180deg, #F8F7FA 0%, #F5F3EF 100%);
}

.room-container {
  padding: 4rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 3rem 0;
}

.principle-card {
  background: #FAF9F7;
  border: none;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02), 0 4px 8px rgba(0, 0, 0, 0.02);
  padding: 2rem 2rem 2rem 2.5rem;
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
  z-index: 1;
}

.principle-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2rem;
  bottom: 2rem;
  width: 3px;
  background: rgba(124, 111, 156, 0.25);
  border-radius: 2px;
}

.principle-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02), 0 8px 16px rgba(0, 0, 0, 0.03);
}

.principle-card h3 {
  font-size: 1.125rem;
  color: #2D2A26;
  margin: 0 0 0.5rem 0;
  font-weight: 500;
  line-height: 1.3;
}

.glass-card .principle-card p {
  font-size: 0.9375rem;
  color: #6B6560;
  line-height: 1.6;
  margin: 0;
}

.microcopy-demo {
  margin: 3rem 0;
  padding: 2.5rem 0;
  border-top: 1px solid #E8E6E3;
  border-bottom: 1px solid #E8E6E3;
  text-align: center;
}

.microcopy-demo p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.therapist {
  background: #F8F7FA;
}

.therapist img {
  max-width: 280px;
  border: none;
  border-radius: 16px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06), 0 6px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.therapist img:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.06), 0 10px 18px rgba(0, 0, 0, 0.07);
}

.therapist .name {
  font-size: 1.5rem;
}

.therapist .title {
  margin-top: -15px !important;
  font-size: 0.875rem;
  letter-spacing: 0.02rem;
}

.therapist .credentials {
  margin: 2rem 0 0 0;
  padding: 2.5rem 0;
  border-top: 1px solid #E8E6E3;
  border-bottom: 1px solid #E8E6E3;
  text-align: center;
  font-size: 1rem;
}

.therapy-subtitle {
  font-size: 1rem;
  margin-bottom: 3rem;
}

.steps-container {
  padding: 0 2rem;
}

.step {
  margin-bottom: 3rem;
  position: relative;
}

.step-number {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
}

.step-line {
  width: 40px;
  height: 2px;
  background: rgba(124, 111, 156, 0.3);
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.375rem;
  color: #2D2A26;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.step p {
  line-height: 1.7;
  margin: 0;
}

.faq-section {
  padding: 0 2rem;
}

.faq-item {
  padding: 2rem 0;
  border-top: 1px solid #E8E6E3;
}

.faq-item:last-child {
  border-bottom: 1px solid #E8E6E3;
}

.faq-question {
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.faq-answer {
  line-height: 1.7;
  margin: 0;
}

.contact {
  background: #F8F7FA;
}

.scheduling-button {
  text-align: center;
  background: linear-gradient(135deg, #7C6F9C 0%, #7C6F9C 100%);
  font-size: 1.25rem;
  z-index: 3;
}

.schedule .scheduling-button:hover {
  transform: translateX(2px);
}

.form-group label {
  display: block;
  color: #2D2A26;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 1.5rem;
  border: 1px solid #E8E6E3;
  border-radius: 8px;
  background: #FDFCFA;
  font-size: 1rem;
  color: #2D2A26;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7C6F9C;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group .message-label {
  font-size: 0.875rem;
  font-weight: normal;
}

.privacy-checkbox {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: start;
  gap: 0.5rem;
}

.privacy-checkbox label {
  font-size: 0.9375rem;
  margin: 0;
}

.privacy-checkbox input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--bs-primary);
  margin: 0.25rem 0 0 0;
}

.form-group button {
  width: 100%;
}

.response-note {
  font-size: 0.94rem;
  margin-top: 2rem;
}

.error {
  font-size: 0.94rem;
  color: rgb(220, 86, 86);
  display: none;
}

.show-error {
  display: block;
}

.modal-backdrop {
  background-color: rgba(45, 42, 38, 0.4);
}

.modal-content {
  background: var(--bs-light);
  border: none;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.modal-body h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.modal-body p {
  line-height: 1.7;
  margin-bottom: 2rem;
}

.modal .scheduling-button {
  width: 100%;
}

.meta {
  background: linear-gradient(180deg, #F5F3EF 0%, #F8F7FA 100%);
}

.meta p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.meta-divider {
  width: 60px;
  height: 2px;
  background: rgba(124, 111, 156, 0.3);
  margin: 3rem auto;
  border-radius: 1px;
}

.meta-concept-statement {
  text-align: center;
  color: #2D2A26;
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 3rem 0;
  padding: 2rem;
  background: rgba(253, 252, 250, 0.6);
  border-radius: 12px;
}

.meta-articles {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid #E8E6E3;
}

.meta-articles h3 {
  font-size: 1.125rem;
  color: #2D2A26;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 500;
}

.article-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-links li {
  margin-bottom: 1rem;
  text-align: center;
}

.article-links a {
  color: var(--bs-primary);
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.article-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--bs-primary);
  transition: width 0.3s ease;
}

.article-links a:hover::after {
  width: 100%;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-tagline {
  color: #2D2A26;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-description {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.footer-divider {
  width: 40px;
  height: 1px;
  background: #E8E6E3;
  margin: 0 auto 2.5rem;
}

.footer-brand {
  max-width: 100%;
  display: flex;
  justify-content: center;
}

.footer-brand img {
  width: 60%;
}

.footer-link {
  text-decoration: none;
  font-size: 0.9375rem;
  position: relative;
}

.footer-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--bs-primary);
  transition: width 0.3s ease;
}

.footer-link:hover::after {
  width: 100%;
}

.footer-copyright {
  font-size: 0.875rem;
  margin-top: 3rem;
  margin-bottom: 0;
  padding-top: 2rem;
  border-top: 1px solid #E8E6E3;
}

.legal-links {
  font-size: 0.875rem;
}

.to-top-btn {
  position: fixed;
  z-index: 20;
  bottom: 20px;
  right: 20px;
  opacity: 0;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  outline: none;
  background-color: var(--bs-primary);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.to-top-btn img {
  margin-bottom: 0.25rem;
  width: 18px;
}

.to-top-btn:hover {
  background-color: var(--bs-secondary);
}

.show {
  opacity: 1;
}

@media (max-width: 640px) {
  h1 {
    text-align: center;
  }
  h2 {
    text-align: center;
    margin-bottom: 3rem;
  }
  p {
    text-align: center;
  }
  .hero {
    padding-top: 0 !important;
  }
  .therapy-link {
    margin: 0;
  }
  .room-container {
    padding: 0.5rem 2.5rem;
    margin: 3rem 1rem;
  }
  .principles-grid {
    grid-template-columns: 1fr;
  }
  .principle-card p, .step p {
    text-align: start;
  }
  .therapist h2 {
    margin-bottom: 0;
  }
  .scheduling-button {
    padding: 16px 22px;
  }
}
