:root {
  --ink: #2d2024;
  --muted: #755f66;
  --line: #ead9dc;
  --rose: #c75b78;
  --coral: #e88272;
  --sage: #6d8c77;
  --cream: #fff9f5;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(70, 39, 48, 0.13);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 249, 245, 0.94);
  border-bottom: 1px solid rgba(199, 91, 120, 0.16);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--sage));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
  background: #f5e5e8;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 249, 245, 0.94), rgba(255, 249, 245, 0.7) 42%, rgba(255, 249, 245, 0.08));
}

.hero-content {
  position: relative;
  width: min(680px, 92vw);
  padding: 7vw 0 10vw clamp(22px, 6vw, 84px);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.35rem, 5.8vw, 5.7rem);
  line-height: 0.96;
}

.hero p,
.page-hero p,
.intro-grid p,
.split-section p,
.info-panel p,
.price-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.7;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
}

.hero-actions,
.panel-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  text-align: center;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: var(--white);
  background: var(--rose);
  box-shadow: 0 14px 28px rgba(199, 91, 120, 0.25);
}

.button.secondary,
.button.light,
.button.small {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button.small {
  min-height: 38px;
  padding: 0 14px;
}

.intro-grid,
.split-section,
.content-grid,
.pricing-grid,
.auth-layout,
.schedule-layout,
.contact-layout,
.intake-layout,
.timeline-section,
.band {
  padding: clamp(54px, 8vw, 92px) clamp(18px, 5vw, 74px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 36px;
  align-items: center;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.05;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stats-row div,
.feature-list div,
.info-panel,
.price-card,
.form-panel,
.appointments-panel,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stats-row div {
  min-height: 116px;
  padding: 20px;
}

.stats-row strong,
.stats-row span,
.feature-list strong,
.feature-list span {
  display: block;
}

.stats-row strong {
  font-size: 1.15rem;
}

.stats-row span,
.feature-list span {
  margin-top: 8px;
  color: var(--muted);
}

.band.rose {
  background: #f6e7e8;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.card-grid,
.content-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 230px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(199, 91, 120, 0.22);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--sage);
  font-weight: 900;
}

.service-card h3 {
  margin: 42px 0 10px;
  font-size: 1.35rem;
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 28px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list div {
  padding: 22px;
}

.text-link {
  color: var(--rose);
  font-weight: 850;
}

.page-hero {
  padding: clamp(58px, 9vw, 104px) clamp(18px, 5vw, 74px);
  background: linear-gradient(135deg, #fff6f4, #edf4ee);
}

.page-hero.compact {
  min-height: 310px;
  display: grid;
  align-content: center;
}

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

.info-panel,
.price-card,
.form-panel,
.appointments-panel,
.contact-card {
  padding: 24px;
}

.info-panel.accent {
  background: #eef5ef;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.timeline div {
  padding: 24px;
  border-left: 4px solid var(--rose);
  background: var(--white);
}

.timeline span {
  color: var(--sage);
  font-weight: 900;
}

.pricing-grid {
  align-items: stretch;
}

.price-card {
  display: grid;
  align-content: start;
  gap: 10px;
}

.price-card.highlighted {
  border-color: var(--rose);
  transform: translateY(-10px);
}

.price {
  margin: 0;
  color: var(--ink) !important;
  font-size: 2.4rem;
  font-weight: 900;
}

.auth-layout,
.schedule-layout,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.intake-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 18px;
  align-items: start;
}

.intake-side {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.consent-row {
  grid-template-columns: 22px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 650;
}

.consent-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.account-status {
  grid-column: 1 / -1;
  padding: 20px;
  border-radius: 8px;
  background: #eef5ef;
  border: 1px solid #cfe2d3;
}

label {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  color: var(--ink);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fffdfb;
  font: inherit;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

textarea {
  resize: vertical;
}

.small-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.appointments-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.appointment {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 8px;
  background: #fff9f5;
  border: 1px solid var(--line);
}

.appointment strong {
  font-size: 1.05rem;
}

.appointment span,
.appointment p {
  margin: 0;
  color: var(--muted);
}

.delete-appointment {
  justify-self: start;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #efc8cf;
  border-radius: 999px;
  color: var(--rose);
  background: var(--white);
  cursor: pointer;
}

.contact-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 26px clamp(18px, 5vw, 74px);
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer > span {
  text-align: right;
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.social-link,
.social-card-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rose);
  font-weight: 850;
}

.social-link img,
.social-card-link img {
  width: 21px;
  height: 21px;
}

.social-card-link {
  margin: 10px 0 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff9f5;
}

@media (max-width: 880px) {
  .site-header {
    min-height: 66px;
    padding: 10px 16px;
  }

  .brand {
    font-size: 0.98rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .main-nav {
    position: absolute;
    top: 66px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    border-radius: 8px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .hero {
    min-height: auto;
    display: block;
    padding: 0 0 28px;
    background: #fff3f1;
  }

  .hero-bg {
    position: relative;
    display: block;
    height: min(72vw, 390px);
    object-position: center top;
  }

  .hero-shade {
    display: none;
  }

  .hero-content {
    width: auto;
    padding: 28px 18px 10px;
  }

  .hero p,
  .page-hero p {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    margin-top: 22px;
  }

  .hero-actions .button {
    flex: 1 1 180px;
  }

  .intro-grid,
  .split-section,
  .auth-layout,
  .schedule-layout,
  .contact-layout,
  .intake-layout,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .stats-row,
  .card-grid,
  .pricing-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .price-card.highlighted {
    transform: none;
  }

  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer > span {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 10px 14px;
  }

  .main-nav {
    left: 10px;
    right: 10px;
  }

  .hero-bg {
    height: 280px;
  }

  .hero-content {
    padding: 24px 16px 6px;
  }

  .stats-row {
    gap: 10px;
  }

  .section-heading {
    display: block;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.05rem;
    line-height: 1.02;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .intro-grid,
  .split-section,
  .content-grid,
  .pricing-grid,
  .auth-layout,
  .schedule-layout,
  .contact-layout,
  .intake-layout,
  .timeline-section,
  .band {
    padding: 38px 16px;
  }

  .page-hero {
    padding: 44px 16px;
  }

  .page-hero.compact {
    min-height: 230px;
  }

  h2 {
    font-size: 1.65rem;
    line-height: 1.12;
  }

  .stats-row div,
  .feature-list div,
  .info-panel,
  .price-card,
  .form-panel,
  .appointments-panel,
  .contact-card,
  .intake-side,
  .service-card {
    padding: 18px;
  }

  .service-card {
    min-height: 0;
  }

  .service-card h3 {
    margin: 24px 0 8px;
  }

  .price {
    font-size: 2rem;
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .contact-layout,
  .intake-layout {
    gap: 14px;
  }

  .social-card-link {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .brand span:last-child {
    max-width: 138px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-bg {
    height: 235px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 1.82rem;
  }
}
