/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --sage: #2d5a4e;
  --sage-light: #e0ebe7;
  --sage-dark: #1e4238;
  --cream: #faf9f7;
  --text-dark: #1a2520;
  --text-muted: #3d4f48;
  --accent: #1a3d32;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  font-size: 1.125rem;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  background: rgba(26, 61, 50, 0.95);
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity 0.3s;
  max-width: 100%;
  overflow: hidden;
}

.nav-logo img {
  height: 50px;
  width: auto;
  flex-shrink: 0;
}

.nav-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: white;
  transition: color 0.3s;
  white-space: nowrap;
}

.navbar.scrolled .nav-logo span {
  color: var(--sage);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.navbar.scrolled .nav-link {
  color: var(--text-dark);
}

.btn-referral {
  background: white;
  color: var(--sage);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s;
}

.btn-referral:hover {
  background: var(--sage-light);
  color: var(--sage-dark);
}

.navbar.scrolled .btn-referral {
  background: var(--sage);
  color: white;
}

.navbar.scrolled .btn-referral:hover {
  background: var(--sage-dark);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: white;
  transition: all 0.3s;
}

.navbar.scrolled .menu-toggle span {
  background: var(--text-dark);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1545205597-3d9d02c29597?w=1920&q=80') center/cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 61, 50, 0.8), rgba(26, 37, 32, 0.9));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.75rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  font-size: 1.1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.5rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.scroll-indicator a {
  color: white;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.scroll-indicator a:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* Sections */
section {
  padding: 7rem 2rem;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  color: var(--sage);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3.25rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: var(--sage);
  margin: 1.5rem auto;
}

/* About Section */
.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about-image-accent {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--sage);
  border-radius: 8px;
  z-index: -1;
}

.about-content h2 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.9;
  font-size: 1.15rem;
}

/* Psychotherapy Section */
.psychotherapy {
  background: var(--sage-light);
}

.psychotherapy-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.psychotherapy-content p {
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 2;
  margin-bottom: 1.5rem;
}

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

/* Services Section */
.services {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
  background: var(--cream);
  padding: 3rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(45, 90, 78, 0.1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.service-card h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Approach Section */
.approach {
  background: var(--sage-light);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.approach-list {
  list-style: none;
}

.approach-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.approach-check {
  width: 32px;
  height: 32px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1rem;
}

.approach-list h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.approach-list p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.approach-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contact {
  background: var(--sage);
  color: white;
}

.contact .section-label {
  color: rgba(255, 255, 255, 0.8);
}

.contact .section-title {
  color: white;
}

.contact .section-divider {
  background: rgba(255, 255, 255, 0.4);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  text-align: center;
}

.contact-item h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.contact-item p {
  opacity: 0.95;
  font-size: 1.15rem;
  line-height: 1.7;
}

.contact-item a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
  font-size: 1.15rem;
}

.contact-item a:hover {
  opacity: 0.8;
}

.btn-contact {
  display: inline-block;
  margin-top: 3rem;
  padding: 1.25rem 3rem;
  background: white;
  color: var(--sage);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1.15rem;
  transition: all 0.3s;
}

.btn-contact:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--accent);
  color: white;
  padding: 3rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 2.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive ≥ tablet */
@media (max-width: 968px) {
  .about-grid,
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero p {
    font-size: 1.25rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  body {
    font-size: 1rem;
  }

  /* NAVBAR MOBILE */
  .navbar {
    padding: 0.75rem 1rem;
  }

  .nav-logo img {
    height: 32px;
  }

  .nav-logo span {
    font-size: 1.4rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 1.5rem 1.5rem;
    background: rgba(26, 61, 50, 0.98);
    flex-direction: column;
    gap: 1.25rem;
    z-index: 999;
    box-sizing: border-box;
  }

  .navbar.scrolled .nav-links {
    background: rgba(255, 255, 255, 0.98);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    font-size: 1.05rem;
    color: white;
  }

  .navbar.scrolled .nav-link {
    color: var(--text-dark);
  }

  .btn-referral {
    /* align-self: flex-start; */
  }

  .menu-toggle {
    display: flex;
    flex-shrink: 0;
  }

  /* HERO MOBILE */
  .hero {
    min-height: 100vh;
    height: auto;
    width: 100%;
    padding: 6rem 1.5rem 4rem;
    text-align: center;
  }

  .hero-content {
    padding: 0;
    max-width: 100%;
  }

  .hero-badge {
    padding: 0.45rem 1.4rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
  }

  .hero h1 {
    font-size: 2.4rem;
    line-height: 1.15;
    margin-bottom: 1.25rem;
  }

  .hero p {
    font-size: 1.02rem;
    line-height: 1.7;
  }

  .scroll-indicator {
    bottom: 1.5rem;
  }

  /* GRIDS */
  .about-grid,
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .psychotherapy-content p {
    font-size: 1.1rem;
  }
}
