@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Montserrat:wght@500;600;700&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --ink: #23302e;
  --muted: #61706d;
  --paper: #f7f3ed;
  --surface: #ffffff;
  --sage: #6e8573;
  --forest: #35564d;
  --terracotta: #b99555;
  --clay: #e6e1da;
  --sable: #dcc9b2;
  --line: rgba(35, 48, 46, 0.14);
  --shadow: 0 24px 80px rgba(39, 49, 46, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Source Sans 3", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px clamp(16px, 3vw, 42px);
  color: white;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 250, 247, 0.96);
  color: var(--ink);
  box-shadow: 0 10px 36px rgba(35, 48, 46, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.2;
}

.brand small {
  color: currentColor;
  font-size: 12px;
  opacity: 0.78;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(9px, 1.2vw, 16px);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 12px;
}

.main-nav a {
  opacity: 0.9;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  opacity: 1;
}

.nav-action {
  padding: 9px 13px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 31, 29, 0.75), rgba(22, 31, 29, 0.34) 42%, rgba(22, 31, 29, 0.08) 76%),
    linear-gradient(0deg, rgba(22, 31, 29, 0.34), rgba(22, 31, 29, 0.04) 38%);
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 76px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c7ad;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 84px);
  font-weight: 500;
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.05;
}

h3 {
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 500;
}

.hero-copy {
  max-width: 580px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

.button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: white;
}

.button.full {
  width: 100%;
}

.intro-band,
.section,
.approach,
.booking {
  padding: clamp(60px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.intro-band {
  background: var(--forest);
  color: white;
}

.intro-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 6vw, 96px);
}

.intro-grid p {
  margin-bottom: 0;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.22;
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 34px;
}

.section-intro {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.about {
  background: var(--paper);
}

.emdr-section {
  background: #fbfaf7;
}

.expat-section {
  background: var(--clay);
}

.articles-section {
  background: #fbfaf7;
}

.pathways {
  background: var(--paper);
}

.faq-section {
  background: var(--paper);
}

.feature-grid,
.article-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-item,
.article-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(35, 48, 46, 0.06);
}

.feature-item span,
.article-card span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--terracotta);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-item p,
.article-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.article-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--forest);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.article-card a::after {
  margin-left: 8px;
  content: "→";
}

.article-page {
  background: var(--paper);
}

.article-hero {
  padding: 132px clamp(18px, 5vw, 72px) 64px;
  background: var(--forest);
  color: white;
}

.article-hero-inner,
.article-body {
  width: min(860px, 100%);
  margin: 0 auto;
}

.article-hero .eyebrow {
  color: #f0c7ad;
}

.article-hero h1 {
  max-width: 820px;
}

.article-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
}

.article-body {
  padding: clamp(48px, 7vw, 82px) 18px;
}

.article-body h2 {
  margin: 42px 0 16px;
  font-size: clamp(30px, 4vw, 44px);
}

.article-body p,
.article-body li {
  color: var(--muted);
  font-size: 18px;
}

.article-body ul {
  padding-left: 22px;
}

.article-callout,
.sources-box {
  margin: 34px 0;
  padding: 24px;
  border: 1px solid rgba(53, 86, 77, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
}

.article-callout p,
.sources-box p {
  margin-bottom: 0;
}

.sources-box h2 {
  margin-top: 0;
}

.sources-box a {
  color: var(--forest);
  font-weight: 700;
}

.article-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.article-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--forest);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.pathway-list {
  width: min(1120px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.pathway-list div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.pathway-list span {
  color: var(--terracotta);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.pathway-list p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.faq-list {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 10px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.faq-list summary {
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.support-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.support-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(35, 48, 46, 0.07);
}

.support-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.card-number {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 700;
}

.approach {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: clamp(32px, 7vw, 96px);
  background: var(--clay);
}

.approach > * {
  width: min(100%, 560px);
}

.approach-copy {
  justify-self: end;
  color: #3f4a47;
  font-size: 18px;
}

.details {
  background: var(--paper);
}

.details-list {
  width: min(1120px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.detail-item {
  display: grid;
  grid-template-columns: 220px 220px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.detail-item span {
  color: var(--muted);
}

.detail-item strong {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
}

.detail-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.monpsy-note {
  width: min(1120px, 100%);
  margin: 28px auto 0;
  padding: 24px;
  border: 1px solid rgba(53, 86, 77, 0.18);
  border-radius: var(--radius);
  background: rgba(122, 146, 123, 0.12);
}

.monpsy-note h3 {
  margin-bottom: 10px;
}

.monpsy-note p {
  margin-bottom: 0;
  color: var(--muted);
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(360px, 740px);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background: #f4f0ea;
}

.booking-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}

.contact-options {
  margin-top: 28px;
}

.contact-options a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--forest);
  font-weight: 700;
}

.booking-form {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.booking-form.compact {
  padding: 0;
  border: 0;
  box-shadow: none;
}

.booking-panel {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.booking-panel div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.booking-panel div:last-child {
  border-bottom: 0;
}

.booking-panel span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--terracotta);
  font-family: Montserrat, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.booking-panel strong {
  display: block;
  margin-bottom: 7px;
  font-size: 20px;
}

.booking-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.scheduler {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.scheduler-step {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
}

.scheduler-step span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 13px;
  font-weight: 700;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}

.service-option,
.slot {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fdfcf9;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.service-option {
  min-height: 86px;
  padding: 16px;
}

.service-option span,
.service-option small {
  display: block;
}

.service-option span {
  font-weight: 700;
}

.service-option small {
  margin-top: 7px;
  color: var(--muted);
}

.service-option:hover,
.slot:hover {
  transform: translateY(-1px);
  border-color: rgba(53, 86, 77, 0.42);
}

.service-option.is-selected,
.slot.is-selected {
  border-color: var(--forest);
  background: rgba(122, 146, 123, 0.14);
}

.slot-toolbar {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.slot-toolbar p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fdfcf9;
  color: var(--forest);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 28px;
}

.slot {
  min-height: 104px;
  padding: 13px;
}

.slot span,
.slot strong,
.slot small {
  display: block;
}

.slot span {
  color: var(--muted);
  font-size: 13px;
  text-transform: capitalize;
}

.slot strong {
  margin: 3px 0 8px;
  font-size: 15px;
  font-weight: 700;
}

.slot small {
  color: var(--terracotta);
  font-weight: 700;
}

.slot:disabled {
  background: #f0eeea;
  color: #9a9a92;
  cursor: not-allowed;
  opacity: 0.72;
}

.slot:disabled:hover {
  transform: none;
  border-color: var(--line);
}

.summary {
  margin: 8px 0 16px;
  padding: 14px;
  border: 1px solid rgba(53, 86, 77, 0.18);
  border-radius: var(--radius);
  background: rgba(122, 146, 123, 0.12);
  color: var(--forest);
  font-weight: 700;
}

.local-appointments {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.local-appointments h3 {
  font-size: 22px;
}

.appointment-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.appointment-row button {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--forest);
  font-weight: 700;
  cursor: pointer;
}

label {
  display: block;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.mode-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

.mode-choice legend {
  grid-column: 1 / -1;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.mode-choice label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fdfcf9;
}

.mode-choice input,
label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.privacy-note {
  margin: -2px 0 16px;
  color: var(--muted);
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fdfcf9;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(122, 146, 123, 0.35);
  border-color: var(--sage);
}

.form-note {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.site-footer p {
  margin-bottom: 0;
}

@media (max-width: 920px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 78px 14px auto;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: grid;
    gap: 14px;
  }

  .nav-action {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    width: min(640px, calc(100% - 36px));
    margin: 0 auto;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(22, 31, 29, 0.74), rgba(22, 31, 29, 0.42)),
      linear-gradient(0deg, rgba(22, 31, 29, 0.46), rgba(22, 31, 29, 0.1));
  }

  .intro-grid,
  .approach,
  .booking {
    grid-template-columns: 1fr;
  }

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

  .feature-grid,
  .article-grid,
  .feature-grid-two {
    grid-template-columns: 1fr;
  }

  .support-grid-three {
    grid-template-columns: 1fr;
  }

  .slot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .approach-copy {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand strong {
    max-width: 180px;
    overflow-wrap: anywhere;
  }

  h1 {
    font-size: 42px;
  }

  .hero-actions .button,
  .contact-options a {
    width: 100%;
  }

  .intro-grid p {
    font-size: 24px;
  }

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

  .service-list,
  .slot-grid,
  .mode-choice {
    grid-template-columns: 1fr;
  }

  .appointment-row {
    grid-template-columns: 1fr;
  }

  .support-card {
    min-height: 0;
  }

  .card-number {
    margin-bottom: 28px;
  }

  .detail-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pathway-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
