@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600&display=swap');

/* ========================================
   Design Tokens
======================================== */

:root {
  --cream: #f5f3e8;
  --sage: #293625;
  --sage-light: #4a5945;
  --gold: #c98a63;
  --sand: #ede4d5;
  --line: #cbbda8;
  --text: #293625;
  --white: #ffffff;
}

/* ========================================
   Base Resets & Typography
======================================== */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  color: var(--sage);
  margin-top: 0;
}

a,
a:link,
a:visited,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  text-decoration: none;
}

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

/* ========================================
   Header & Navigation
======================================== */

.top-banner {
  background: #abc1ac;
  color: var(--sage);
  border-bottom: 1px solid var(--sage);
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5vw;
  background: var(--cream);
  border-bottom: 1px solid var(--sage);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-decoration: none;
  color: inherit;
}

.logo p {
  margin: 0;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.logo small {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--sage-light);
}

.nav-links {
  display: flex;
  gap: 1.35rem;
  align-items: center;
  font-weight: 500;
  font-family: 'Open Sans', 'Source Sans 3', sans-serif;
}

.nav-links a {
  color: var(--sage);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0;
  white-space: nowrap;
}

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

.nav-links .button {
  border: 1px solid var(--sage);
  background: transparent;
  color: var(--sage);
  border-radius: 0;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  padding: 0.55rem 1.35rem;
  text-transform: uppercase;
}

.nav-links .button:hover {
  background: var(--sage);
  color: var(--cream);
  border-color: var(--sage);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--sage);
}

/* ========================================
   Layout & Sections
======================================== */

main {
  padding-bottom: 0;
}

section {
  padding: 4rem 5vw;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
  align-items: center;
  background: var(--cream);
  padding: 0;
}

.hero-text {
  padding: clamp(2.5rem, 6vw, 4rem) 5vw;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  color: var(--sage);
  line-height: 1.1;
  font-weight: 400;
}

.hero-text .lead {
  font-size: 1.15rem;
  font-weight: 500;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.button {
  background: transparent;
  color: var(--sage);
  padding: 0.85rem 1.85rem;
  border-radius: 0;
  font-weight: 600;
  border: 1px solid var(--sage);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  font-family: 'Open Sans', 'Source Sans 3', sans-serif;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover {
  background: var(--sage);
  color: var(--cream);
  border-color: var(--sage);
}

.link {
  color: var(--sage-light);
  font-weight: 600;
}

.hero-primary {
  background: var(--cream);
  border-bottom: 1px solid rgba(41, 54, 37, 0.35);
}

.page-hero {
  padding-bottom: 3rem;
}

.page-hero .hero-text {
  max-width: 640px;
}

.hero-media {
  display: flex;
  margin: 0;
  align-self: stretch;
}

.hero-media img {
  width: 100%;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
  border: none;
  margin: 0;
  height: 100%;
}

.hero-media img.portrait {
  aspect-ratio: 3 / 4;
  max-width: 320px;
  justify-self: center;
  width: 100%;
}

.hero-media img.landscape {
  aspect-ratio: 4 / 3;
}

/* ========================================
   Intro / About Blocks
======================================== */

.intro {
  background: var(--white);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.intro-media .contact-photo {
  max-width: 260px;
  margin: 0 auto;
}

.intro h2 {
  font-family: 'Playfair Display', serif;
  color: var(--sage);
  margin-top: 0;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
}

.intro p {
  margin-bottom: 1rem;
}

.intro .button {
  margin-top: 1rem;
}

/* ========================================
   Anchor Navigation
======================================== */

.anchor-tabs {
  background: var(--cream);
  text-align: center;
  padding: 1.35rem 5vw;
  border-bottom: 1px solid rgba(41, 54, 37, 0.35);
}

.anchor-tabs .tab-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Open Sans', 'Source Sans 3', sans-serif;
}

.anchor-tabs .tab-links a {
  color: var(--sage);
  padding: 0 0.2rem;
  display: inline-flex;
  align-items: center;
}

.anchor-tabs .tab-links a + a::before {
  content: '/';
  margin: 0 1.25rem;
  color: var(--sage);
  font-weight: 500;
  letter-spacing: normal;
  font-size: 0.75rem;
}

.contact-photo {
  width: 100%;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
  border: 1px solid var(--sage);
}

/* ========================================
   Typographic Helpers
======================================== */

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.85rem;
  color: var(--sage-light);
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
  color: var(--sage);
}

.page-intro,
.page-panel {
  padding: 0;
}

.page-intro {
  background: var(--cream);
  padding: 4rem 5vw;
  border-bottom: 1px solid rgba(41, 54, 37, 0.25);
}

.page-intro.narrow {
  max-width: 820px;
  margin: 0 auto;
}

.page-intro p {
  max-width: 720px;
}

.page-panel {
  max-width: 820px;
  margin: 0 auto 3rem;
  background: var(--cream);
  border: 1px solid rgba(41, 54, 37, 0.25);
  padding: 2.5rem 3rem;
}

.page-panel:last-of-type {
  margin-bottom: 0;
}

/* ========================================
   Cards & Content Blocks
======================================== */

.content-card {
  background: var(--cream);
  border-radius: 0;
  padding: 2.5rem;
  border: 1px solid rgba(41, 54, 37, 0.25);
  box-shadow: none;
}

.content-card h2,
.content-card h3 {
  font-family: 'Playfair Display', serif;
  color: var(--sage);
  margin-top: 0;
}

.content-columns {
  columns: 1;
  column-gap: 2rem;
}

@media (min-width: 900px) {
  .content-columns,
  .approach-content {
    columns: 2;
  }
}

.focus {
  background: var(--sand);
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.focus-grid ul {
  margin: 0;
  padding-left: 1rem;
  list-style: none;
}

.focus-grid li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  background: var(--white);
}

.section-content h3 {
  margin-top: 2rem;
  color: var(--sage-light);
}

.checklist {
  list-style: none;
  padding-left: 0;
}

.checklist li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.checklist li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

/* ========================================
   Therapy Sections
======================================== */

.therapy {
  background: var(--white);
}

.therapy-card {
  background: var(--white);
}

.next-steps {
  background: var(--white);
  margin-top: 2rem;
}

.approach {
  background: var(--white);
}

.approach-content {
  columns: 1;
  column-gap: 2rem;
}

/* ========================================
   Fees
======================================== */

.fees {
  background: var(--sand);
}

.fees-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.fees-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid var(--line);
}

.info-card {
  background: var(--cream);
  border-radius: 0;
  border: 1px solid rgba(41, 54, 37, 0.25);
  padding: 1.5rem 2rem;
  margin-top: 1.5rem;
}

.info-card h2 {
  margin-top: 0;
}

.faqs {
  background: var(--white);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.accordion-item {
  background: transparent;
  border-bottom: 1px solid rgba(41, 54, 37, 0.25);
}

.accordion-item button {
  border: none;
  background: transparent;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 1rem 0;
  text-align: left;
  font-weight: 600;
  font-family: 'Open Sans', 'Source Sans 3', sans-serif;
  letter-spacing: 0.05em;
}

.accordion-item button .icon {
  width: 1.2rem;
  font-size: 1.2rem;
  text-align: center;
  color: var(--sage);
}

.accordion-item .panel {
  display: none;
  padding: 0 0 1rem;
  color: var(--sage);
}

.accordion-item button[aria-expanded='true'] + .panel {
  display: block;
}

/* ========================================
   Contact & Forms
======================================== */

.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-grid form {
  background: var(--cream);
  padding: 2rem;
  border-radius: 0;
  border: 1px solid rgba(41, 54, 37, 0.25);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-grid form button {
  cursor: pointer;
}

label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  gap: 0.35rem;
}

input,
textarea {
  border: 1px solid rgba(41, 54, 37, 0.25);
  border-radius: 0;
  padding: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
}

.form-note {
  font-size: 0.9rem;
  color: #6a6a6a;
}

.map-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding-top: 0;
}

.map-embed iframe {
  width: 100%;
  height: 450px;
  border: 0;
  filter: grayscale(1);
}

.map-info {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.map-info .info-group p {
  margin: 0.35rem 0 0;
}

/* ========================================
   Global CTA
======================================== */

.global-cta {
  background: var(--sage);
  color: var(--white);
  text-align: center;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.global-cta .button {
  border-color: var(--white);
  color: var(--white);
}

.global-cta .button:hover {
  background: var(--white);
  color: var(--sage);
  border-color: var(--white);
}

/* ========================================
   Footer
======================================== */

footer {
  background: var(--sand);
  color: var(--sage);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 2rem 5vw;
  border-top: 1px solid rgba(41, 54, 37, 0.35);
  font-family: 'Open Sans', 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  line-height: 1.4;
}

.footer-heading {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  margin-bottom: 0.35rem;
  color: var(--sage);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a {
  color: var(--sage);
  font-size: 0.85rem;
}

footer p {
  margin: 0.25rem 0;
}

footer strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

/* ========================================
   Responsive Navigation
======================================== */

@media (max-width: 1050px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 5vw;
    background: var(--cream);
    flex-direction: column;
    padding: 1rem;
    border-radius: 0;
    border: 1px solid var(--sage);
    display: none;
  }

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

  .nav-toggle {
    display: flex;
  }
}
