:root {
  --bg: #f9ded7;
  --text: #4b3325;
  --text-muted: #7d5a48;
  --accent: #c7967b;
  --accent-dark: #a7745e;
  --neutral: #fff8f4;
  --neutral-strong: #f2d1c6;
}

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

body {
  margin: 0;
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: var(--bg);
}

.container {
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 1.5rem;
}

.site-header {
  background: var(--neutral);
  border-bottom: 1px solid rgba(167, 116, 94, 0.14);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
}

.brand {
  font-family: "Playfair Display", serif;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-mark {
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.25rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-link--active,
.nav-link:hover {
  color: var(--accent);
}

.hero {
  padding: 5rem 0 3rem;
  text-align: center;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.cta-btn {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 2.6rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease;
  display: inline-block;
}

.cta-btn:hover {
  background: var(--accent-dark);
}

.sections {
  padding: 3rem 0;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.lotus-card {
  background: var(--neutral);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: rgba(167, 116, 94, 0.1) 0px 18px 40px;
  max-width: 820px;
  margin: 0 auto;
}

.lotus-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  line-height: 1.8;
  font-size: 1.05rem;
  text-align: left;
  color: var(--text-muted);
}

.lotus-copy p {
  margin: 0;
}

.lotus-copy p:first-child::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 2rem;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}

.treatment-card {
  background: var(--neutral);
  padding: 2rem;
  border-radius: 18px;
  box-shadow: rgba(167, 116, 94, 0.12) 0px 14px 34px;
}

.treatment-card h3 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.treatment-card p {
  margin: 0 0 1.25rem;
  line-height: 1.65;
}

.treatment-card .pill {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(199, 150, 123, 0.18);
  color: var(--accent-dark);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.treatment-steps {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.treatment-steps li {
  background: rgba(199, 150, 123, 0.12);
  border-radius: 16px;
  padding: 1rem 1.25rem;
}

.treatment-steps .step-title {
  font-weight: 600;
  color: var(--text);
}

.treatment-steps .step-duration {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
  margin-left: 0.5rem;
}

.treatment-steps p {
  margin: 0.4rem 0 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.reviews {
  margin-top: 3rem;
  background: var(--neutral);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: rgba(167, 116, 94, 0.1) 0px 16px 42px;
}

.reviews blockquote {
  margin: 0;
  font-style: italic;
  line-height: 1.8;
}

.reviews cite {
  display: block;
  margin-top: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.calendly {
  margin-top: 3rem;
  text-align: center;
}

.site-footer {
  background: var(--neutral-strong);
  color: var(--text);
  padding: 2rem 0;
  margin-top: 4rem;
}

.site-footer .footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

.site-footer a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 720px) {
  .site-header .container {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
  }

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

  .hero {
    padding: 3.5rem 0 2rem;
  }

  .sections {
    padding: 2rem 0;
  }
}

.content {
  min-height: calc(100vh - 260px);
}

.page-wrapper {
  background: var(--neutral);
  padding: 4rem 0;
}

.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-content h1 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-content p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.page-content ul {
  padding-left: 1.25rem;
  line-height: 1.7;
}

@media (max-width: 540px) {
  .site-header .container {
    align-items: flex-start;
  }

  .brand-mark {
    font-size: 1.15rem;
  }

  .brand-sub {
    font-size: 0.75rem;
  }

  .hero p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

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

  .treatment-card {
    padding: 1.75rem;
  }

  .treatment-steps li {
    padding: 0.9rem 1rem;
  }

  .lotus-card {
    padding: 2.2rem 1.75rem;
  }

  .reviews {
    padding: 2rem;
  }

  .page-wrapper {
    padding: 3rem 0;
  }
}
