:root {
  --bg: #f4efe7;
  --surface: rgba(255, 252, 247, 0.78);
  --surface-strong: #fffaf2;
  --text: #2a312d;
  --muted: #5c685f;
  --line: rgba(42, 49, 45, 0.12);
  --accent: #6f8f7a;
  --accent-deep: #4f6a59;
  --shadow: 0 18px 45px rgba(63, 60, 50, 0.08);
  --radius: 24px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(164, 189, 164, 0.35), transparent 32%),
    radial-gradient(circle at 85% 18%, rgba(210, 177, 149, 0.2), transparent 24%),
    linear-gradient(180deg, #f8f3eb 0%, #f1eadf 100%);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  overflow: clip;
}

.site-art {
  position: absolute;
  width: min(28rem, 38vw);
  color: rgba(88, 112, 98, 0.28);
  pointer-events: none;
  z-index: 0;
}

.site-art svg {
  display: block;
  width: 100%;
  height: auto;
}

.site-art path {
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
}

.site-art-top {
  top: 4.5rem;
  right: -4rem;
  transform: rotate(8deg);
}

.site-art-bottom {
  bottom: 3rem;
  left: -5rem;
  transform: rotate(-10deg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(248, 243, 235, 0.88);
  border-bottom: 1px solid var(--line);
}

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

.site-brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(111, 143, 122, 0.12);
  color: var(--text);
}

.site-nav .nav-cta {
  background: var(--accent-deep);
  color: #f8f6f1;
}

.site-main {
  padding: 3.5rem 0 5rem;
  position: relative;
  z-index: 1;
}

.hero,
.page-intro,
.section-block,
.card,
.booking-panel {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 2rem;
  align-items: center;
  background: var(--surface);
  border-radius: calc(var(--radius) + 8px);
  padding: 2rem;
}

.hero-alt {
  align-items: stretch;
}

.hero-copy h1,
.page-intro h1,
.section-block h2 {
  margin: 0 0 1rem;
  line-height: 1.1;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 500;
}

.lead {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.1rem;
}

.eyebrow,
.section-label {
  margin: 0 0 0.8rem;
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
}

.button-primary {
  background: var(--accent-deep);
  color: #fcfaf6;
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 250, 242, 0.7);
}

.hero-image-wrap {
  justify-self: center;
}

.hero-image {
  width: min(100%, 420px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
}

.breathwork-image {
  width: min(100%, 460px);
  aspect-ratio: auto;
  max-height: 520px;
}

.therapy-image {
  width: min(100%, 460px);
  aspect-ratio: auto;
  max-height: 520px;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

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

.card,
.page-intro,
.section-block,
.booking-panel {
  background: var(--surface-strong);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.card h2,
.booking-panel h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
  font-weight: 500;
}

.page-intro {
  margin-bottom: 1.5rem;
}

.section-block {
  margin-top: 1.5rem;
}

.button-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.text-link {
  color: var(--accent-deep);
  font-weight: 600;
}

.clean-list {
  margin: 0;
  padding-left: 1.2rem;
}

.clean-list li + li {
  margin-top: 0.8rem;
}

.email-output {
  margin-top: 1rem;
  margin-bottom: 0;
  min-height: 1.5rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.55);
  position: relative;
  z-index: 1;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 820px) {
  .header-inner,
  .footer-inner,
  .hero,
  .section-grid,
  .section-grid-two {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .site-main {
    padding-top: 2rem;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .hero-copy h1,
  .page-intro h1,
  .section-block h2 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .site-nav a {
    padding-left: 0;
    padding-right: 0.7rem;
  }

  .site-nav .nav-cta {
    padding: 0.7rem 0.95rem;
  }

  .site-art {
    width: min(18rem, 52vw);
    opacity: 0.85;
  }

  .site-art-top {
    right: -3rem;
    top: 6.5rem;
  }

  .site-art-bottom {
    left: -4rem;
    bottom: 5rem;
  }
}
