:root {
  --bg-cream: #FAF4EE;
  --bg-white: #FFFFFF;
  --accent-salmon: #619294;
  --accent-salmon-hover: #527C7E;
  --text-dark: #1F2421;
  --text-muted: #5C6260;
  --border-color: #E2DACF;
  --card-bg: #FAF6F0;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Navigation Bar --- */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.75rem 5%;
  background-color: var(--bg-cream);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.brand-name {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text-dark);
}

.brand-icon {
  height: 58px;
  width: auto;
  display: block;
  flex-shrink: 0;
  position: relative;
  top: 0px;
}

.brand-name-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  gap: 0.3rem;
}

.brand-name-primary {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-name-secondary {
  font-size: 1.035rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

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

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
  white-space: nowrap;
}

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

.nav-links a.active {
  color: var(--accent-salmon);
}

.btn-pill {
  background-color: var(--accent-salmon);
  color: #FFFFFF !important;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-weight: 500;
  transition: background-color 0.2s ease;
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
}

.btn-pill:hover {
  background-color: var(--accent-salmon-hover);
}

.btn-outline {
  border: 1px solid var(--text-dark);
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-block;
  white-space: nowrap;
}

.btn-outline:hover {
  background-color: var(--text-dark);
  color: var(--bg-cream);
}

/* --- Hero Section --- */
.hero {
  padding: 4rem 5% 5rem;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.hero-content h1 {
  font-size: 2rem;
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 500px;
}

.hero-content p a {
  color: var(--accent-salmon);
  text-decoration: underline;
}

.hero-content p a:hover {
  color: var(--accent-salmon-hover);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
}

.hero-image-container {
  width: 100%;
  aspect-ratio: 1600 / 1460;
  border-radius: 12px;
  overflow: hidden;
  clip-path: inset(0 round 12px);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  background-color: transparent;
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* --- Featured Services Grid --- */
.services-section {
  padding: 5rem 5%;
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}

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

.service-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.service-card-image {
  height: 260px;
  width: 100%;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  clip-path: inset(0 round 12px 12px 0 0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.25;
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.service-card-price {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: auto;
  padding-top: 1rem;
  font-weight: 500;
}

.service-card-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-salmon);
  text-decoration: none;
}

.service-card-link:hover {
  color: var(--accent-salmon-hover);
}

/* --- Clinical Expertise / Teaser Section --- */
.expertise-section {
  padding: 5rem 5%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-teaser-section {
  padding: 5rem 5%;
  max-width: 800px;
  margin: 0 auto;
}

.expertise-image-container {
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  clip-path: inset(0 round 12px);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.expertise-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.expertise-content h2 {
  font-size: 1.4rem;
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.expertise-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.credentials-list {
  list-style: none;
  margin-bottom: 2rem;
}

.credentials-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.credentials-list li::before {
  content: "•";
  color: var(--accent-salmon);
  font-size: 1.5rem;
  position: absolute;
  left: 0;
  top: -0.2rem;
}

/* --- Contact Form Section --- */
.contact-section {
  padding: 5rem 5%;
  max-width: 1280px;
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.4rem;
  line-height: 1.15;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.location-box {
  background-color: var(--card-bg);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.location-box h4 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

input, textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  background-color: transparent;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}

textarea {
  border-radius: 12px;
  resize: vertical;
  min-height: 140px;
}

input:focus, textarea:focus {
  border-color: var(--accent-salmon);
}

/* --- Generic Content Pages (About, EMDR, Intensive EMDR, Fees, Confidentiality, Links, Contact) --- */
.page-header {
  padding: 4rem 5% 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.page-header .lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
}

.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 5% 5rem;
}

.content-page h2 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
  letter-spacing: -0.01em;
}

.content-page h2:first-child {
  margin-top: 0;
}

.content-page h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
}

.content-page p {
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.content-page ul, .content-page ol {
  margin: 0 0 1.25rem 1.25rem;
}

.content-page li {
  margin-bottom: 0.5rem;
}

.content-page a {
  color: var(--accent-salmon);
  text-decoration: underline;
}

.content-page a:hover {
  color: var(--accent-salmon-hover);
}

.content-page .content-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  clip-path: inset(0 round 12px);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  margin: 1rem 0 2rem;
}

.content-page .content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-page .content-image.illustration {
  aspect-ratio: 740 / 560;
  background-color: transparent;
  border: none;
  width: 60%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.content-page .content-image.chairs-talk {
  aspect-ratio: 572 / 291;
  background-color: transparent;
  border: none;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}

.content-page .content-image.chairs-talk img {
  object-fit: contain;
}

.content-page .content-image.illustration img {
  object-fit: contain;
}

/* --- About page intro with portrait --- */
.about-intro {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem 5% 1rem;
}

.about-intro p {
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.about-intro a {
  color: var(--accent-salmon);
  text-decoration: underline;
}

.about-intro a:hover {
  color: var(--accent-salmon-hover);
}

.about-portrait {
  width: 75%;
  margin: 0 auto;
  aspect-ratio: 1032 / 1384;
  border-radius: 12px;
  overflow: hidden;
  clip-path: inset(0 round 12px);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.callout-box {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  margin: 1.5rem 0 2rem;
}

.callout-box h4 {
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 2rem;
}

.fee-table th, .fee-table td {
  text-align: left;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border-color);
}

.fee-table th {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  font-weight: 600;
}

.page-cta {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin-top: 2.5rem;
}

.page-cta p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

/* --- Footer --- */
footer {
  border-top: 1px solid var(--border-color);
  padding: 2.5rem 5%;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: underline;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-salmon);
  text-decoration: none;
}

/* --- Mobile nav toggle (hamburger) --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background-color: var(--text-dark);
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 900px) {
  .hero, .expertise-section, .contact-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .about-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-portrait {
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 860px) {
  .nav-container {
    position: relative;
    flex-wrap: nowrap;
  }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    background-color: var(--bg-cream);
    padding: 1.5rem 5% 2rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.06);
  }
  .nav-links.open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .nav-container {
    padding: 1.25rem 5%;
  }
  .brand-name-primary {
    font-size: 1.35rem;
  }
  .brand-name-secondary {
    font-size: 0.81rem;
  }
  .brand-icon {
    height: 46px;
  }
  .page-header h1 {
    font-size: 1.35rem;
  }
  .hero {
    padding-bottom: 2.5rem;
  }
  .services-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .about-teaser-section {
    padding-top: 2.5rem;
  }
}
