:root {
  --ink: #111;
  --ink-soft: #4a4a4a;
  --paper: #fff;
  --bg: #f3f5ee;
  --line: #d4dac6;
  --green: #6b8f3a;
  --green-bar: #7aa33f;
  --green-dark: #3d5c22;
  --green-deep: #1b3310;
  --green-soft: #e5efd4;
  --red: #c62828;
  --shadow: 0 16px 40px rgba(27, 51, 16, 0.1);
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

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

a {
  color: var(--green-dark);
}

.wrap {
  width: min(1120px, calc(100% - 2.2rem));
  margin-inline: auto;
}

.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 var(--line);
}

.header-bar {
  background: var(--green-bar);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
}

.header-bar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  flex-wrap: wrap;
}

.header-bar a {
  color: #fff;
  text-decoration: none;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 52px;
}

.brand strong {
  display: block;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.brand strong i {
  font-style: normal;
  color: var(--green);
}

.brand em {
  display: block;
  font-style: normal;
  color: var(--ink-soft);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  font: inherit;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.main-nav a {
  padding: 0.5rem 0.7rem;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  border-radius: 8px;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--green-soft);
}

.btn,
.btn-ghost,
.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  border: 0;
}

.btn,
.btn-nav {
  background: var(--green) !important;
  color: #fff !important;
}

.btn:hover,
.btn-nav:hover {
  background: var(--green-dark) !important;
}

.btn-ghost {
  background: #fff;
  color: var(--green-deep);
  border: 2px solid var(--green-deep);
}

.banner {
  background: #fff;
  border-bottom: 10px solid var(--green-bar);
}

.banner-top {
  height: 14px;
  background: linear-gradient(90deg, #3d5c22 0 28%, #7aa33f 28% 72%, #3d5c22 72%);
}

.banner-inner {
  padding: 1.6rem 0 0;
  text-align: center;
}

.opening-flag {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  font-size: clamp(0.95rem, 2.4vw, 1.35rem);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18);
}

.wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  margin: 1.6rem 0 0.4rem;
  flex-wrap: wrap;
}

.wordmark img {
  width: 110px;
}

.wordmark-text {
  text-align: left;
}

.wordmark-text strong {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}

.wordmark-text strong i {
  font-style: normal;
  color: var(--green);
}

.wordmark-text em {
  display: block;
  margin-top: 0.45rem;
  font-style: normal;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  border-top: 2px solid #111;
  padding-top: 0.35rem;
}

.banner h1 {
  margin: 1.4rem 0 0.7rem;
  font-size: clamp(2rem, 6vw, 3.6rem);
  color: var(--green-deep);
  line-height: 1.05;
}

.banner .sub {
  margin: 0 auto 1.1rem;
  max-width: 46rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 0 1.6rem;
}

.pills span {
  background: var(--green-soft);
  color: var(--green-deep);
  font-weight: 800;
  font-size: 0.86rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.4rem 0 0;
}

.spec-list li {
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: var(--shadow);
}

.spec-list {
  padding: 0;
}

.avail {
  display: inline-block;
  background: #fff1c2;
  color: #7a4b00;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  margin: 0 0 0.7rem;
}

.phone-bar {
  background: var(--green-bar);
  color: #fff;
  padding: 1.1rem 0;
}

.phone-bar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.phone-bar strong {
  font-size: clamp(1.25rem, 2.6vw, 1.85rem);
  letter-spacing: 0.02em;
  display: block;
}

.phone-bar a {
  color: #fff;
  text-decoration: none;
}

.phone-bar .mail {
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 0.2rem;
}

.section {
  padding: 3.4rem 0;
}

.section.white {
  background: #fff;
}

.section-title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  color: var(--green-deep);
}

.section-intro {
  color: var(--ink-soft);
  max-width: 40rem;
  margin: 0 0 1.6rem;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 1.15rem;
}

.grid-2 {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.team-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.team-row .therapist-card {
  border-radius: 12px;
}

.team-row .therapist-card img,
.team-row .ph {
  height: 118px;
}

.team-row .copy {
  padding: 0.6rem 0.65rem 0.75rem;
}

.team-row h3 {
  font-size: 0.9rem;
  margin: 0 0 0.2rem;
  line-height: 1.25;
}

.team-row .muted {
  font-size: 0.76rem;
  line-height: 1.35;
}

.team-row .badge {
  font-size: 0.62rem;
  margin-bottom: 0.25rem;
}

.person-stack {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.person-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 260px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.person-row img,
.person-row .ph {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center 28%;
}

.person-row .copy {
  padding: 1.4rem 1.5rem 1.5rem;
}

.person-row p {
  margin: 0 0 0.75rem;
}

.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.3rem 1.25rem 1.4rem;
  box-shadow: var(--shadow);
}

.feature .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-soft);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.feature h3 {
  margin: 0 0 0.35rem;
}

.muted {
  color: var(--ink-soft);
  margin: 0;
}

.therapist-card,
.room-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.therapist-card img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  object-position: center 22%;
}

.grid-4 .therapist-card .copy {
  padding: 0.85rem 0.9rem 1rem;
}

.grid-4 .therapist-card h3 {
  font-size: 1.02rem;
}

.grid-4 .ph {
  height: 168px;
  font-size: 0.92rem;
}

.ph {
  height: 190px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  font-weight: 800;
  color: var(--green-deep);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(27, 51, 16, 0.08)),
    repeating-linear-gradient(
      45deg,
      #dce6c8,
      #dce6c8 12px,
      #e8efd8 12px,
      #e8efd8 24px
    );
}

.room-card .ph {
  height: 170px;
}

.copy {
  padding: 1.05rem 1.15rem 1.25rem;
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--green-soft);
  color: var(--green-deep);
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  margin-bottom: 0.4rem;
}

.badge.free {
  background: #fff1c2;
  color: #7a4b00;
}

.page-hero {
  background: var(--green-deep);
  color: #fff;
  padding: 2.6rem 0;
}

.page-hero h1 {
  margin: 0 0 0.35rem;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.page-hero .lead {
  margin: 0;
  opacity: 0.9;
}

.prose h2 {
  color: var(--green-deep);
}

.note-box {
  background: var(--green-deep);
  color: #fff;
  border-radius: 18px;
  padding: 1.5rem 1.4rem;
}

.note-box a {
  color: #fff;
}

.cta-band {
  background: var(--green-soft);
  padding: 2.4rem 0;
}

.site-footer {
  background: var(--green-deep);
  color: #e7eed9;
  padding: 2.2rem 0 1.4rem;
}

.site-footer a {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.4rem;
}

.legal-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.86rem;
}

@media (max-width: 700px) {
  .team-row {
    grid-template-columns: 1fr;
  }

  .team-row .therapist-card img,
  .team-row .ph {
    height: 180px;
  }
}

.plan-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 1.3rem;
  align-items: start;
}

.plan-frame-wide {
  margin-bottom: 1.15rem;
}

.unit-list-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.unit-list-row li {
  border-bottom: 0;
  border-right: 1px solid var(--line);
}

.unit-list-row li:last-child {
  border-right: 0;
}

.plan-frame {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.75rem 0.75rem 0.4rem;
  box-shadow: var(--shadow);
}

.plan-frame img,
.plan-frame object {
  width: 100%;
  height: auto;
}

.plan-frame figcaption {
  font-size: 0.82rem;
  color: var(--ink-soft);
  padding: 0.35rem 0.25rem 0.45rem;
}

.plan-side {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.unit-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.unit-list li {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--line);
}

.unit-list li:last-child {
  border-bottom: 0;
}

.unit-list li.is-free {
  background: #f4f8ea;
}

.unit-list strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  font-size: 0.95rem;
}

.unit-list .muted,
.unit-list .size {
  display: block;
  font-size: 0.78rem;
  margin-top: 0.12rem;
}

.unit-list .size {
  font-weight: 700;
  color: var(--ink);
}

.st-free,
.st-taken {
  display: inline-block;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
}

.st-free {
  background: #c8e39a;
  color: #2f4a14;
}

.st-taken {
  background: #d8d8d8;
  color: #555;
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .person-row,
  .spec-list,
  .plan-layout,
  .unit-list-row {
    grid-template-columns: 1fr;
  }

  .unit-list-row li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .unit-list-row li:last-child {
    border-bottom: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-main {
    position: relative;
  }

  .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 0.7rem 1rem 1rem;
  }

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

  .wordmark-text {
    text-align: center;
  }
}
