:root {
  --sage: #8a9e84;
  --sage-light: #c5d4c0;
  --sage-pale: #eef2ec;
  --earth: #b08c6e;
  --earth-dark: #7a5c3e;
  --cream: #f7f3ed;
  --warm-white: #faf8f4;
  --charcoal: #2e2e2b;
  --text: #3e3c38;
  --text-light: #7a7670;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.2rem 3rem;
  background: rgba(247,243,237,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(138,158,132,0.2);
  transition: all 0.3s ease;
}
nav .logo {
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  /* letter-spacing: 0.04em; */
  color: var(--charcoal);
  text-decoration: none;
  text-transform: uppercase;
}
nav ul { list-style: none; display: flex; gap: 2.5rem; }
nav ul a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--sage); }

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lang-current { color: var(--sage); font-weight: 400; }
.lang-sep { color: var(--text-light); }
.lang-link { color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.lang-link:hover { color: var(--sage); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ── */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.72) saturate(0.85);
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,40,28,0.15) 0%, rgba(20,30,18,0.5) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 1rem 2rem 0;
  animation: fadeUp 1.2s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-photo-wrap {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 3px solid rgba(255,255,255,0.55);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.hero-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-name {
  font-family: var(--sans);
  /* font-size: clamp(3.46rem, 6.2vw, 5.47rem); */
  font-size: 3.45rem;
  font-weight: 400;
  /* letter-spacing: 0.2em; */
  letter-spacing: 0.08em;
  line-height: 1.05;
  margin-bottom: 0.3rem;
  color: #f5ede0;
  text-shadow: 0 2px 16px rgba(0,0,0,0.45);
  text-transform: uppercase;
}
.hero-sub {
  font-size: 1.45rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8ddd0;
  margin-bottom: 0.8rem;
  font-weight: 400;
  text-shadow: 0 1px 8px rgba(0,0,0,0.35);
}
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.58rem, 3.6vw, 2.16rem);
  font-weight: 300;
  color: #ede3d6;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.hero-wave {
  display: block;
  width: 140px;
  margin: 0.9rem auto 0;
  opacity: 0.75;
}
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.6;
  animation: bounce 2.4s ease infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
.scroll-hint span { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; }
.scroll-hint svg  { width: 20px; height: 20px; stroke: #fff; fill: none; stroke-width: 1.5; }

/* ── SECTION SHARED ── */
section { padding: 7rem 2rem; }
.container { max-width: 860px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
  font-weight: 500;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--charcoal);
  margin-bottom: 2rem;
}
h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 2.5rem 0 1rem;
}
p { margin-bottom: 1.2rem; font-size: 1rem; color: var(--text); }
.divider {
  width: 48px; height: 1px;
  background: var(--sage);
  margin: 0 0 2rem;
}

/* ── SOMATIC SECTION ── */
#somatic { background: var(--warm-white); }
.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 2rem;
  margin: 1.5rem 0;
}
.help-grid li {
  list-style: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(138,158,132,0.25);
  font-size: 0.95rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.help-grid li::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sage);
  margin-top: 0.55rem;
  flex-shrink: 0;
}

/* ── THERAPY SECTION ── */
#therapy { background: var(--sage-pale); }
.statements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
  margin: 3rem 0;
}
.statement-card {
  text-align: center;
  padding: 2rem 1.2rem;
  background: rgba(255,255,255,0.7);
  border-radius: 4px;
  border: 1px solid rgba(138,158,132,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.statement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(90,120,84,0.1);
}
.statement-icon { width: 64px; height: 64px; margin: 0 auto 1.2rem; }
svg.icon { width: 64px; height: 64px; overflow: visible; }
.statement-card p {
  font-size: 0.9rem;
  color: var(--text);
  margin: 0;
  line-height: 1.65;
}

/* ── TIMELINE ── */
.timeline { margin: 3rem 0; }
.tl-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.tl-label {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--earth);
  min-width: 3.5rem;
  padding-top: 0.1rem;
}
.tl-text {
  font-size: 0.95rem;
  color: var(--text);
  border-left: 1px solid var(--sage-light);
  padding-left: 1.5rem;
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

/* ── CTA ── */
.cta-wrap { margin: 3rem 0 0; text-align: center; }
.cta-text {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 1.6rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.btn {
  display: inline-block;
  padding: 0.85rem 2.8rem;
  background: var(--earth);
  color: #fff;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  border-radius: 2px;
}
.btn:hover { background: var(--earth-dark); transform: translateY(-2px); }

/* ── ABOUT ── */
#about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}
.about-photo-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 6px 6px 0 var(--sage-light);
}
.about-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.9);
}
.badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.badge {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--sage);
  color: var(--sage);
  border-radius: 2px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
a.badge:hover { border-color: var(--earth); color: var(--earth); }
.badge--logo {
  padding: 0.2rem 0.6rem;
  display: inline-flex;
  align-items: center;
}
.badge--logo img { height: 30px; width: auto; display: block; }

/* ── CONTACT ── */
#contact { background: var(--charcoal); color: var(--cream); }
#contact h2 { color: var(--cream); }
#contact .section-label { color: var(--sage-light); }
#contact .divider { background: var(--sage); }
#contact p { color: rgba(247,243,237,0.8); }

.contact-info {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(138,158,132,0.25);
  border-radius: 3px;
  padding: 1.6rem 2rem;
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
}
.contact-info p {
  margin: 0;
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  flex: 1 1 220px;
}
.contact-info p svg {
  width: 16px; height: 16px;
  stroke: var(--sage-light);
  flex-shrink: 0;
  margin-top: 0.15rem;
  fill: none;
  stroke-width: 1.5;
}
.contact-invite {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(247,243,237,0.92) !important;
  background: rgba(197,212,192,0.28);
  border: 1px solid rgba(138,158,132,0.35);
  padding: 2rem 2.4rem;
  border-radius: 16px;
  margin-bottom: 2.5rem !important;
  letter-spacing: 0.015em;
  text-align: center;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 0; }
.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(197,212,192,0.8);
  font-weight: 400;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(138,158,132,0.3);
  color: var(--cream);
  padding: 0.75rem 1rem;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 300;
  outline: none;
  border-radius: 2px;
  transition: border-color 0.2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(247,243,237,0.3); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--sage); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { margin-top: 1.2rem; }
.form-message {
  margin-top: 1rem;
  padding: 0.8rem 1rem;
  border-radius: 2px;
  font-size: 0.9rem;
  display: none;
}
.form-message--success {
  background: rgba(138,158,132,0.2);
  border: 1px solid var(--sage);
  color: var(--sage-light);
}
.form-message--error {
  background: rgba(176,80,80,0.15);
  border: 1px solid rgba(200,100,100,0.4);
  color: #e8c0c0;
}

/* ── FOOTER ── */
footer {
  background: #1e2019;
  text-align: center;
  padding: 2rem;
  color: rgba(197,212,192,0.4);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
footer p { color: inherit; margin: 0; }

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── RTL OVERRIDES ── */
[dir="rtl"] .tl-text {
  border-left: none;
  border-right: 1px solid var(--sage-light);
  padding-left: 0;
  padding-right: 1.5rem;
}
[dir="rtl"] .help-grid li::before {
  margin-left: 0;
}
[dir="rtl"] .contact-info p svg {
  margin-right: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    grid-template-columns: 1fr auto;
    padding: 1rem 1.5rem;
  }
  nav ul {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: rgba(247,243,237,0.97);
    backdrop-filter: blur(8px);
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(138,158,132,0.2);
    gap: 0;
  }
  nav ul.open { display: flex; }
  nav ul li { padding: 0.75rem 0; border-bottom: 1px solid rgba(138,158,132,0.1); }
  nav ul li:last-child { border-bottom: none; }
  nav ul a { font-size: 0.85rem; }
  .hamburger { display: flex; }
  .statements-grid { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-photo-wrap { max-width: 260px; margin: 0 auto; }
}
