:root {
  --bg: #f7f2eb;
  --sage: #9ba07c;
  --olive: #5d6246;
  --tan: #e8ded1;
  --text: #333333;
  --muted: #8c8479;
  --line: rgba(93, 98, 70, 0.18);
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(56, 50, 40, 0.12);
  --radius-lg: 36px;
  --radius-md: 24px;
  --container: min(1180px, 92vw);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(
      1200px 500px at 90% -10%,
      rgba(155, 160, 124, 0.2),
      transparent 60%
    ),
    radial-gradient(
      950px 450px at -8% 30%,
      rgba(232, 222, 209, 0.9),
      transparent 60%
    ),
    var(--bg);
  line-height: 1.6;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.eyebrow {
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.05;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  color: var(--olive);
}

.italic {
  font-style: italic;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 242, 235, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px 24px;
  flex-wrap: wrap;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 2.4vw, 34px);
  letter-spacing: 0.05em;
  color: var(--olive);
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px 26px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.nav a {
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--olive);
  border-bottom-color: var(--sage);
  outline: none;
}

.language-picker {
  display: inline-flex;
  align-items: center;
  margin-inline-start: 8px;
}

.language-picker .language-select {
  width: auto;
  min-width: 140px;
  border: 1px solid rgba(93, 98, 70, 0.22);
  border-radius: 999px;
  padding: 10px 38px 10px 14px;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  color: var(--olive);
  text-transform: none;
  letter-spacing: normal;
  background-color: rgba(255, 255, 255, 0.84);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%235d6246' d='M1.4 1.3 6 5.9l4.6-4.6 1.4 1.4L6 8 0 2.7z'/%3E%3C/svg%3E");
  background-position: right 14px center;
  background-repeat: no-repeat;
  background-size: 10px;
  appearance: none;
  cursor: pointer;
}

.language-picker .language-select:focus-visible {
  outline: 1px solid var(--sage);
  border-color: var(--sage);
}

.hero {
  padding: 78px 0 96px;
  position: relative;
  overflow: clip;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.hero-copy {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin-top: 16px;
  font-size: clamp(46px, 7vw, 88px);
}

.hero-copy p {
  margin: 22px 0 0;
  font-size: clamp(17px, 2.1vw, 24px);
  color: #4f4b43;
  max-width: 58ch;
}

.support-line {
  margin-top: 20px;
  color: var(--muted);
  font-size: 15px;
  max-width: 58ch;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12px;
  font-weight: 700;
  padding: 15px 24px;
  border: 1px solid var(--olive);
  background: var(--olive);
  color: var(--bg);
  transition: 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
  outline: none;
}

.text-link {
  font-size: 15px;
  color: var(--olive);
  font-style: italic;
  border-bottom: 1px solid transparent;
  transition: 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--sage);
  border-bottom-color: var(--sage);
  outline: none;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  right: -6%;
  top: 4%;
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(155, 160, 124, 0.45),
    rgba(93, 98, 70, 0)
  );
  filter: blur(6px);
  z-index: 0;
}

.portrait-card {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(480px, 100%);
  background: var(--tan);
  border: 1px solid rgba(93, 98, 70, 0.2);
  border-radius: 52% 48% 44% 56% / 44% 55% 45% 56%;
  padding: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 1;
}

.portrait-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 52% 48% 44% 56% / 44% 55% 45% 56%;
  filter: saturate(0.88) contrast(1.04);
}

.hero-note {
  position: absolute;
  inset-inline-start: 0;
  bottom: 34px;
  max-width: 270px;
  background: rgba(247, 242, 235, 0.94);
  border: 1px solid var(--line);
  padding: 14px 16px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 3;
}

.wave {
  line-height: 0;
  height: 92px;
  overflow: hidden;
}

.wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

section {
  padding: 98px 0;
  position: relative;
}

.section-tan {
  background: linear-gradient(
    180deg,
    rgba(232, 222, 209, 0.74),
    rgba(232, 222, 209, 0.56)
  );
}

.section-header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-header h2 {
  margin-top: 14px;
  font-size: clamp(38px, 5.8vw, 68px);
}

.section-header p {
  color: #544f46;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.8;
  margin-top: 18px;
}

.therapy-grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.therapy-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 18px 40px rgba(56, 50, 40, 0.08);
}

.therapy-card .mark {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--sage);
  margin-bottom: 16px;
  position: relative;
}

.therapy-card .mark::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage);
  inset: 0;
  margin: auto;
}

.therapy-card h3 {
  font-size: clamp(28px, 3vw, 38px);
  margin-bottom: 10px;
}

.therapy-card p {
  margin: 0;
  color: #5d5750;
  font-size: 15px;
  line-height: 1.72;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.about-image-wrap {
  position: relative;
  padding: 12px;
  isolation: isolate;
}

.about-image-wrap::before {
  content: "";
  position: absolute;
  inset: auto 10% -22px 4%;
  height: 26%;
  background: rgba(93, 98, 70, 0.14);
  filter: blur(20px);
  z-index: -1;
}

.about-image-frame {
  border: 1px solid var(--line);
  border-radius: 62% 38% 47% 53% / 43% 51% 49% 57%;
  overflow: hidden;
  background: var(--tan);
  box-shadow: var(--shadow);
  padding: 14px;
}

.about-image-frame img {
  border-radius: 62% 38% 47% 53% / 43% 51% 49% 57%;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.87);
}

.about-copy h2 {
  font-size: clamp(44px, 5.3vw, 74px);
  margin-bottom: 20px;
}

.about-copy p {
  margin: 0 0 16px;
  color: #4d4941;
  font-size: 17px;
  line-height: 1.82;
}

.notable {
  margin-top: 14px;
  border-inline-start: 1px solid var(--sage);
  padding: 10px 0;
  padding-inline-start: 16px;
  color: #4f4b43;
  font-style: italic;
}

.offerings {
  display: grid;
  gap: 28px;
  margin-top: 46px;
}

.offering-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3.7vw, 44px);
  display: grid;
  gap: 16px;
  box-shadow: 0 20px 46px rgba(56, 50, 40, 0.08);
}

.offering-card h3 {
  font-size: clamp(36px, 4.2vw, 58px);
}

.meta {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
}

.offering-card p {
  margin: 0;
  font-size: 17px;
  color: #4d4941;
  line-height: 1.74;
}

.detail-list {
  list-style: none;
  margin: 2px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.detail-list li {
  padding-inline-start: 18px;
  position: relative;
  color: #514c44;
  font-size: 15px;
  line-height: 1.65;
}

.detail-list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 10px;
  width: 9px;
  height: 1px;
  background: var(--sage);
}

.performance {
  background: radial-gradient(
      600px 300px at 12% 18%,
      rgba(155, 160, 124, 0.24),
      transparent 60%
    ),
    var(--olive);
  color: var(--bg);
}

.performance-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
}

.performance h2 {
  color: var(--bg);
  font-size: clamp(42px, 5.4vw, 74px);
  margin: 14px 0 20px;
}

.performance p {
  font-size: 17px;
  color: rgba(247, 242, 235, 0.84);
  line-height: 1.78;
  margin: 0 0 14px;
}

.performance .eyebrow {
  color: rgba(247, 242, 235, 0.72);
}

.performance .btn {
  margin-top: 8px;
  background: var(--bg);
  color: var(--olive);
  border-color: var(--bg);
}

.performance .btn:hover,
.performance .btn:focus-visible {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
}

.performance-image {
  border-radius: 46% 54% 42% 58% / 53% 45% 55% 47%;
  overflow: hidden;
  border: 1px solid rgba(247, 242, 235, 0.34);
  background: rgba(247, 242, 235, 0.08);
  padding: 14px;
  box-shadow: 0 24px 56px rgba(26, 27, 20, 0.34);
}

.performance-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 46% 54% 42% 58% / 53% 45% 55% 47%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.9);
}

.listen {
  text-align: center;
}

.social-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.social-grid a {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 11px;
  color: var(--olive);
  transition: 180ms ease;
  font-weight: 700;
}

.social-grid a:hover,
.social-grid a:focus-visible {
  background: var(--sage);
  border-color: var(--sage);
  color: var(--white);
  outline: none;
}

.social-grid svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 30px;
  align-items: start;
  margin-top: 42px;
}

form {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  padding: clamp(22px, 2.8vw, 36px);
  box-shadow: 0 22px 48px rgba(56, 50, 40, 0.08);
}

.contact-success {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  padding: clamp(22px, 2.8vw, 36px);
  box-shadow: 0 22px 48px rgba(56, 50, 40, 0.08);
}

.contact-success h3 {
  font-size: clamp(34px, 4vw, 52px);
  margin-bottom: 12px;
}

.contact-success p {
  margin: 0;
  color: #4f4b43;
  max-width: 42ch;
}

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

.form-status.is-error {
  color: #9a4b43;
}

.btn[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.field {
  margin-bottom: 16px;
}

label {
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--muted);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(93, 98, 70, 0.22);
  border-radius: 14px;
  padding: 12px 13px;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: #fdfbf8;
}

input:focus,
select:focus,
textarea:focus {
  outline: 1px solid var(--sage);
  border-color: var(--sage);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-info {
  display: grid;
  gap: 14px;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(232, 222, 209, 0.6);
  padding: 20px;
}

.info-card h4 {
  font-size: 30px;
  margin-bottom: 6px;
}

.info-card p {
  margin: 0;
  color: #4f4b43;
  line-height: 1.72;
  font-size: 15px;
}

footer {
  background: var(--olive);
  color: rgba(247, 242, 235, 0.84);
  text-align: center;
  padding: 38px 0 48px;
  border-top: 1px solid rgba(247, 242, 235, 0.16);
}

footer .name {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  color: var(--bg);
  line-height: 1;
  margin-bottom: 8px;
}

footer p {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1040px) {
  .therapy-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 860px) {
  .topbar-inner {
    align-items: flex-start;
    padding: 16px 0 18px;
  }

  .nav {
    flex-basis: 100%;
    justify-content: flex-start;
    gap: 12px 18px;
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .language-picker {
    margin-inline-start: 0;
  }

  .hero {
    padding-top: 62px;
  }

  .hero-layout,
  .about-layout,
  .performance-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .portrait-card {
    position: static;
  }

  .hero-note {
    position: static;
    margin-top: 14px;
  }

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

@media (max-width: 620px) {
  section {
    padding: 74px 0;
  }

  .hero-actions {
    align-items: stretch;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .therapy-grid,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .text-link {
    padding-inline-start: 1px;
  }

  .language-picker {
    width: 100%;
  }

  .language-picker .language-select {
    width: 100%;
  }
}
