@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400;1,500&family=Nunito:wght@300;400;500;600&display=swap');

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal: #3a8fa3;
  --teal-dark: #2a6e80;
  --teal-light: #7ecfe0;
  --teal-pale: #e0f4f8;
  --teal-mist: #f4f8f9;
  --teal-border: #cde2e8;
  --navy: #1e2d35;
  --navy-mid: #26383f;
  --navy-light: #5a7a85;
  --text: #1e2d35;
  --text-muted: #5a7a85;
  --white: #ffffff;
  --serif: 'Playfair Display', serif;
  --sans: 'Nunito', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 0.5px solid var(--teal-border);
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--navy);
}

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

.nav-links a {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-book {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--teal);
  padding: 10px 22px;
  border-radius: 40px;
  transition: background 0.2s;
}

.nav-book:hover { background: var(--teal-dark); }

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── Page Wrapper ─── */
.page { padding-top: 61px; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../images/mullencanyon.webp');
  background-size: cover;
  background-position: center 55%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(20,40,50,0.88) 0%, rgba(20,40,50,0.6) 50%, rgba(20,40,50,0.2) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 80px 52px;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-light);
  font-weight: 600;
}

.hero-headline {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
}

.hero-headline em {
  font-style: italic;
  color: var(--teal-light);
}

.hero-sub {
  font-size: 16px;
  color: #c8e8f0;
  line-height: 1.75;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.btn-primary {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--white);
  padding: 15px 30px;
  border-radius: 40px;
  transition: all 0.2s;
  display: inline-block;
  position: relative;
  z-index: 10;
}

.btn-primary:hover {
  background: var(--teal-pale);
  color: var(--teal-dark);
}

.btn-ghost {
  font-size: 13px;
  color: #a8dde8;
  font-weight: 500;
  border-bottom: 1px solid rgba(168,221,232,0.4);
  padding-bottom: 2px;
  transition: color 0.2s;
  position: relative;
  z-index: 10;
}

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

/* ─── Trust Bar ─── */
.trust-bar {
  background: var(--teal);
  padding: 15px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a8dde8;
  flex-shrink: 0;
}

.trust-text {
  font-size: 13px;
  color: var(--teal-pale);
  font-weight: 400;
}

/* ─── Section Styles ─── */
.section-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-title em { font-style: italic; color: var(--teal); }

.section-body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.text-link {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  border-bottom: 1.5px solid var(--teal-border);
  padding-bottom: 2px;
  display: inline-block;
  margin-top: 8px;
  transition: border-color 0.2s;
}

.text-link:hover { border-color: var(--teal); }

/* ─── About Section ─── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-img {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.about-img::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--teal);
  z-index: 2;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  position: absolute;
  inset: 0;
}

.about-content {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--teal-mist);
}

/* ─── PSYCH-K Section ─── */
.psychk {
  background: var(--navy);
  padding: 80px 48px;
}

.psychk-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: end;
}

.psychk-title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  color: var(--teal-mist);
  line-height: 1.2;
}

.psychk-title em { font-style: italic; color: var(--teal-light); }

.psychk-intro {
  font-size: 15px;
  color: #7a9da8;
  line-height: 1.85;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit {
  background: var(--navy-mid);
  border: 0.5px solid #2e4550;
  border-radius: 12px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit-num {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--teal);
  opacity: 0.5;
  line-height: 1;
}

.benefit-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-pale);
}

.benefit-desc {
  font-size: 13px;
  color: #5a8090;
  line-height: 1.65;
}

/* ─── Booking Section ─── */
.booking {
  padding: 80px 48px;
  background: var(--teal-mist);
}

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

.booking-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.booking-card {
  background: var(--white);
  border: 0.5px solid var(--teal-border);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  transition: box-shadow 0.2s;
}

.booking-card:hover { box-shadow: 0 4px 24px rgba(58,143,163,0.12); }

.booking-card.featured {
  border: 2px solid var(--teal);
  position: relative;
}

.booking-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.booking-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
}

.booking-card-price {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--teal);
  font-weight: 400;
}

.booking-card-price span {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text-muted);
}

.booking-card-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.btn-teal {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--teal);
  padding: 14px 28px;
  border-radius: 40px;
  transition: background 0.2s;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.btn-teal:hover { background: var(--teal-dark); }

.btn-outline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: transparent;
  border: 1.5px solid var(--teal);
  padding: 14px 28px;
  border-radius: 40px;
  transition: all 0.2s;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.btn-outline:hover { background: var(--teal); color: var(--white); }

/* ─── Testimonials ─── */
.testimonials {
  background: var(--white);
  padding: 80px 48px;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 40px;
}

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

.testimonial-card {
  background: var(--teal-mist);
  border: 0.5px solid var(--teal-border);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.testimonial-card.featured { border-top: 3px solid var(--teal); }

.testimonial-quote {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  color: #2e4a55;
  line-height: 1.8;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #b0d8e3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: #1e6478;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
}

/* ─── CTA Banner ─── */
.cta-banner {
  background: linear-gradient(135deg, #2a6e80 0%, #3a8fa3 50%, #4ab0c4 100%);
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.cta-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #a8dde8;
  font-weight: 600;
  margin-bottom: 12px;
}

.cta-title {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-title em { font-style: italic; }

.cta-body {
  font-size: 15px;
  color: #c8eaf2;
  line-height: 1.8;
  margin-bottom: 24px;
}

.btn-white {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--white);
  padding: 16px 32px;
  border-radius: 40px;
  transition: all 0.2s;
  display: inline-block;
}

.btn-white:hover { background: var(--teal-pale); }

.cta-features {
  background: rgba(255,255,255,0.12);
  border: 0.5px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-feature-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a8dde8;
  flex-shrink: 0;
}

.cta-feature-text {
  font-size: 14px;
  color: #e0f4f8;
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  background: var(--navy);
  padding: 80px 48px 60px;
  text-align: center;
}

.page-hero-title {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
}

.page-hero-title em { font-style: italic; color: var(--teal-light); }

.page-hero-sub {
  font-size: 16px;
  color: #7a9da8;
  margin-top: 16px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* ─── About Page ─── */
.about-page {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 0;
}

.about-page-img {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.about-page-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  position: absolute;
  inset: 0;
}

.about-page-content {
  padding: 72px 56px;
  background: var(--white);
}

.about-page-content .section-body + .section-body { margin-top: 0; }

/* ─── PSYCH-K Page ─── */
.psychk-page {
  padding: 72px 48px;
  max-width: 860px;
  margin: 0 auto;
}

.psychk-page .section-body { max-width: 720px; }

.psychk-benefits-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.psychk-benefit-full {
  background: var(--teal-mist);
  border: 0.5px solid var(--teal-border);
  border-radius: 12px;
  padding: 28px 24px;
}

.psychk-benefit-full h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
}

.psychk-benefit-full p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── Testimonials Page ─── */
.testimonials-page {
  padding: 72px 48px;
}

.testimonials-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.testimonial-card-lg {
  background: var(--teal-mist);
  border: 0.5px solid var(--teal-border);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card-lg.featured { border-top: 3px solid var(--teal); }

.testimonial-card-lg .testimonial-quote {
  font-size: 15px;
}

/* ─── Contact Page ─── */
.contact-page {
  padding: 72px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 960px;
  margin: 0 auto;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--navy);
  background: var(--teal-mist);
  border: 0.5px solid var(--teal-border);
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--teal); }

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

.btn-submit {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--teal);
  border: none;
  padding: 16px 32px;
  border-radius: 40px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.btn-submit:hover { background: var(--teal-dark); }

/* ─── Appointments Page ─── */
.appointments-page {
  padding: 72px 48px;
  max-width: 900px;
  margin: 0 auto;
}

.cal-embed {
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  border: 0.5px solid var(--teal-border);
  min-height: 600px;
}

/* ─── Footer ─── */
.footer {
  background: var(--navy);
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 15px;
  color: #5a8090;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  font-size: 12px;
  color: #3a5560;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 12px;
  color: #3a5560;
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 61px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 0.5px solid var(--teal-border);
    padding: 24px;
    gap: 20px;
  }

  .hero-content { padding: 60px 24px; }
  .hero-headline { font-size: 36px; }
  .hero-overlay { background: rgba(20,40,50,0.75); }

  .trust-bar { gap: 16px; padding: 14px 24px; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { display: none; }

  .about { grid-template-columns: 1fr; }
  .about-img { min-height: 360px; position: relative; }
  .about-content { padding: 48px 24px; }

  .psychk { padding: 60px 24px; }
  .psychk-top { grid-template-columns: 1fr; gap: 24px; }
  .benefits { grid-template-columns: 1fr 1fr; }

  .booking { padding: 60px 24px; }
  .booking-options { grid-template-columns: 1fr; }

  .testimonials { padding: 60px 24px; }
  .testimonials-header { flex-direction: column; gap: 12px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .cta-banner { grid-template-columns: 1fr; padding: 60px 24px; gap: 32px; }
  .cta-title { font-size: 32px; }

  .page-hero { padding: 60px 24px 48px; }
  .page-hero-title { font-size: 36px; }

  .about-page { grid-template-columns: 1fr; }
  .about-page-img { min-height: 360px; position: relative; }
  .about-page-content { padding: 48px 24px; }

  .psychk-page { padding: 48px 24px; }
  .psychk-benefits-full { grid-template-columns: 1fr; }

  .testimonials-page { padding: 48px 24px; }
  .testimonials-page-grid { grid-template-columns: 1fr; }

  .contact-page { grid-template-columns: 1fr; padding: 48px 24px; gap: 40px; }

  .appointments-page { padding: 48px 24px; }

  .footer { padding: 24px; flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
