/* =============================
   Nicole Hann Psychology
   Global Styles
   ============================= */

:root {
  --primary: #5a7a6e;
  --secondary: #c4a882;
  --accent: #d4b5a0;
  --dark: #2c3e35;
  --light-bg: #faf8f5;
  --white: #ffffff;
  --section-alt: #f0ece6;
  --shadow: 0 4px 20px rgba(44, 62, 53, 0.1);
  --shadow-hover: 0 8px 30px rgba(44, 62, 53, 0.18);
  --radius: 12px;
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--dark);
  background: var(--light-bg);
  opacity: 0;
  animation: pageLoad 0.6s ease forwards;
}

@keyframes pageLoad {
  to { opacity: 1; }
}

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

p {
  line-height: 1.75;
  color: #4a5e55;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary);
}

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

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: var(--white);
  box-shadow: 0 2px 20px rgba(44, 62, 53, 0.08);
}

.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(44, 62, 53, 0.12);
  padding: 12px 0;
}

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

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  line-height: 1.2;
}

.nav-logo span {
  display: block;
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

.nav.scrolled .nav-logo {
  color: var(--dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.03em;
  transition: var(--transition);
}

.nav.scrolled .nav-links a {
  color: var(--dark);
}

.nav-links a:hover {
  color: var(--secondary);
}

.nav-links .btn-nav {
  background: var(--secondary);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 500;
}

.nav-links .btn-nav:hover {
  background: var(--primary);
  color: var(--white) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.nav.scrolled .hamburger span {
  background: var(--dark);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 20px 24px;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--dark);
  font-size: 1rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--section-alt);
}

.mobile-menu .btn-nav {
  background: var(--secondary);
  color: var(--white) !important;
  padding: 12px 22px;
  border-radius: 50px;
  text-align: center;
  border: none;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  background: var(--light-bg);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  padding: 0;
  margin: 0;
}

.hero-logo {
  width: min(560px, 85vw);
  height: auto;
  margin-bottom: 32px;
  object-fit: contain;
  max-height: 560px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

.hero-divider {
  width: 60px;
  height: 1.5px;
  background: var(--primary);
  opacity: 0.4;
  margin-bottom: 28px;
}

.hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-body {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: #555;
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eef4f0;
  border: 1px solid rgba(90,122,110,0.3);
  color: var(--primary);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-family: 'Inter', sans-serif;
  margin-top: 48px;
  margin-bottom: 36px;
}

.hero-availability strong {
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-ghost {
  padding: 14px 28px;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}

.btn-ghost:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== PAGE HERO (interior pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  padding: 140px 24px 80px;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 24px;
}

.section-alt {
  background: var(--section-alt);
}

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

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 20px;
}

.section-body {
  font-size: 1rem;
  color: #4a5e55;
  max-width: 700px;
}

/* ===== TWO COLUMN ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.two-col.reverse {
  direction: rtl;
}

.two-col.reverse > * {
  direction: ltr;
}

/* ===== ABOUT SECTION ===== */
.about-text {
  max-width: 700px;
}

.about-text p {
  margin-bottom: 18px;
}

.about-img {
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.about-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top;
}

/* ===== FOCUS AREAS ===== */
.focus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.focus-tag {
  background: var(--white);
  border: 1.5px solid var(--accent);
  color: var(--dark);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 400;
  transition: var(--transition);
  opacity: 1;
  transform: translateY(0);
}

.focus-tag.visible {
  opacity: 1;
  transform: translateY(0);
}

.focus-tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.focus-note {
  margin-top: 28px;
  font-size: 0.9rem;
  color: #6a8070;
}

.focus-note a {
  color: var(--primary);
  font-weight: 500;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  padding: 80px 24px;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.cta-banner .btn {
  background: var(--white);
  color: var(--primary);
}

.cta-banner .btn:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 50px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: rgba(90,122,110,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.card h3 {
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.card p {
  font-size: 0.9rem;
}

/* ===== SERVICES ===== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 80px;
}

.service-block:last-of-type {
  margin-bottom: 0;
}

.service-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.modality-list {
  list-style: none;
  margin-top: 20px;
}

.modality-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--section-alt);
  font-size: 0.95rem;
  color: var(--dark);
}

.modality-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
}

.fee-teaser {
  background: var(--light-bg);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 30px;
  font-size: 0.95rem;
  color: var(--dark);
}

.fee-teaser a {
  font-weight: 500;
  display: inline-block;
  margin-top: 10px;
}

/* ===== FEES PAGE ===== */
.fee-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.fee-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.fee-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.fee-card .fee-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.fee-card .fee-duration {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 16px;
}

.fee-card .fee-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--primary);
}

.fee-card .fee-note {
  font-size: 0.78rem;
  color: #888;
  margin-top: 8px;
}

.info-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}

.info-block h3 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}

.info-block p {
  margin-bottom: 12px;
}

.info-block p:last-child {
  margin-bottom: 0;
}

.highlight-box {
  background: rgba(90,122,110,0.08);
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 0.95rem;
}

.highlight-box strong {
  color: var(--primary);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 40px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h2 {
  font-size: 1.9rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-form-wrap .form-note {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--light-bg);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(90,122,110,0.1);
}

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

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  cursor: pointer;
}

.form-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}

.form-checkbox span {
  font-size: 0.88rem;
  color: var(--dark);
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: var(--primary);
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-info h2 {
  font-size: 1.9rem;
  color: var(--dark);
  margin-bottom: 24px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.info-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(90,122,110,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-item-text strong {
  display: block;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 4px;
}

.info-item-text p,
.info-item-text span {
  font-size: 0.9rem;
  color: #6a8070;
}

.hours-list {
  list-style: none;
  font-size: 0.9rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--section-alt);
  color: #4a5e55;
}

.hours-list li strong {
  color: var(--dark);
  font-weight: 500;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 24px;
}

.map-wrap img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 24px 0;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 40px;
}

.footer-brand .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-contact {
  text-align: right;
}

.footer-contact a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  margin-bottom: 6px;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--secondary);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

/* old gradient overlay — removed */

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .two-col,
  .service-block,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .two-col.reverse {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 70px 20px;
  }

  .about-img {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  .about-img img {
    height: 340px;
  }

  .fee-cards {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-wrap {
    padding: 30px 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero-logo {
    width: min(360px, 85vw);
  }
}
