:root {
  --ink: #241713;
  --muted: #5f4c43;
  --line: #e4c6b7;
  --paper: #fff1e6;
  --white: #fffaf5;
  --sage: #f2d2c0;
  --sage-dark: #7d5140;
  --blue: #f7dfd0;
  --rose: #efbfaf;
  --gold: #b66f3c;
  --shadow: 0 24px 60px rgba(86, 48, 32, 0.15);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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;
  padding: 18px clamp(18px, 5vw, 70px);
  border-bottom: 1px solid rgba(228, 198, 183, 0.9);
  background: rgba(255, 241, 230, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 248px;
}

.brand-mark {
  display: block;
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(46px, 7vw, 92px) clamp(18px, 5vw, 70px) 44px;
  background:
    linear-gradient(90deg, rgba(24, 36, 34, 0.82) 0%, rgba(24, 36, 34, 0.58) 42%, rgba(24, 36, 34, 0.12) 74%),
    url("assets/hero-prp-injection.png") center / cover no-repeat;
  color: #ffffff;
}

.hero .eyebrow,
.hero-text {
  color: rgba(255, 255, 255, 0.9);
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.38);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  line-height: 1.05;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 6vw, 5.2rem);
}

h2 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3.6vw, 3.25rem);
}

h3 {
  line-height: 1.25;
}

.hero-text {
  max-width: 680px;
  font-size: clamp(1rem, 1.6vw, 1.17rem);
}

.hero-actions,
.button {
  display: inline-flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 14px 0 34px;
}

.button {
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--ink);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(24, 36, 34, 0.18);
}

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.hero .button.secondary,
.offer-band .button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.94);
  color: #241713;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.full-width {
  width: 100%;
}

.offer-band {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: center;
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 70px);
  background: var(--ink);
  color: #ffffff;
}

.offer-band .eyebrow {
  color: var(--gold);
}

.offer-band h2 {
  max-width: 820px;
  margin-bottom: 14px;
  color: #ffffff;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
}

.offer-band p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
}

.offer-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.offer-card span,
.offer-card strong {
  display: block;
}

.offer-card span {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.offer-card strong {
  color: #ffffff;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.12;
}

.offer-card p {
  margin-top: 12px;
}

.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.section {
  padding: clamp(50px, 6.5vw, 86px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.about .section-heading {
  max-width: 1120px;
}

.about .section-heading h2 {
  max-width: 1080px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  text-wrap: balance;
}

.treatment-section .section-heading h2 {
  max-width: 980px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.treatment-section .section-heading h2 span {
  display: block;
  white-space: nowrap;
}

.about-grid,
.booking-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

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

.doctor-panel,
.copy-panel,
.booking-panel,
.booking-reminder,
.price-category,
.service-card,
.treatment-card,
.steps-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.doctor-panel {
  padding: 28px;
  background: linear-gradient(150deg, var(--white), var(--sage));
}

.copy-panel {
  padding: 30px;
  color: var(--muted);
}

.copy-panel p:last-child,
.doctor-panel p:last-child,
.service-card p:last-child,
.treatment-card p:last-child,
.steps-grid p:last-child,
.booking-copy p:last-child {
  margin-bottom: 0;
}

.treatment-section {
  background:
    linear-gradient(90deg, rgba(239, 191, 175, 0.34), transparent 54%),
    var(--paper);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.treatment-grid .treatment-card:only-child {
  grid-column: 1 / -1;
  max-width: none;
}

.treatment-card {
  padding: 24px;
}

.treatment-card p,
.steps-grid p,
.booking-copy p {
  color: var(--muted);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.steps-grid article {
  padding: 24px;
}

.steps-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--ink);
  font-weight: 800;
}

.prices {
  background: #f8dfd0;
  color: var(--ink);
}

.prices .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

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

.price-offers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 0 24px;
}

.price-offers div {
  padding: 20px;
  border: 1px solid rgba(182, 111, 60, 0.34);
  border-radius: var(--radius);
  background: #fffaf5;
}

.price-offers span,
.price-offers strong {
  display: block;
}

.price-offers span {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-offers strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  line-height: 1.12;
}

.price-offers p {
  margin: 10px 0 0;
  color: var(--muted);
}

.price-category {
  padding: 24px;
  border-color: rgba(182, 111, 60, 0.26);
  background: #fffaf5;
  box-shadow: 0 18px 42px rgba(86, 48, 32, 0.12);
}

.price-category h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.25rem;
}

.price-tagline {
  margin: 0 0 18px;
  padding-left: 12px;
  border-left: 2px solid var(--gold);
  color: #7d5140;
  font-family: var(--serif);
  font-size: 0.98rem;
  font-style: italic;
  line-height: 1.42;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(182, 111, 60, 0.18);
}

.price-row h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
}

.price-row p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.price-duration {
  display: inline-flex;
  margin-top: 5px;
  color: #8a6758;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.price-row strong {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
  white-space: nowrap;
}

.price-pair {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.price-pair s {
  color: #8a6758;
  font-weight: 700;
}

.price-pair span {
  color: #ff6b4a;
  font-size: 1.12rem;
  font-weight: 900;
}

.price-row.featured {
  margin-top: 8px;
  padding: 16px;
  border: 1px solid rgba(182, 111, 60, 0.32);
  border-radius: var(--radius);
  background: #ffe7d8;
}

.course-pricing {
  grid-column: 1 / -1;
}

.course-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.course-heading .price-tagline {
  margin-bottom: 18px;
}

.course-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(182, 111, 60, 0.3);
  border-radius: var(--radius);
  background: #ffe7d8;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.course-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.course-group {
  padding: 18px;
  border: 1px solid rgba(182, 111, 60, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 231, 216, 0.45);
}

.course-group h4 {
  margin: 0 0 6px;
  color: var(--sage-dark);
  font-family: var(--serif);
  font-size: 1.12rem;
}

.course-group h5 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
}

.course-note {
  max-width: 920px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-includes {
  display: grid;
  gap: 5px;
  margin: 10px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
  list-style: none;
}

.price-includes li {
  position: relative;
  padding-left: 20px;
}

.price-includes li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✓";
  font-weight: 900;
}

.price-label {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 8px;
  border: 1px solid rgba(184, 144, 91, 0.48);
  border-radius: 999px;
  background: rgba(184, 144, 91, 0.14);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.prices .button.primary {
  background: var(--gold);
  color: #182422;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.prices .button.secondary {
  border-color: rgba(182, 111, 60, 0.32);
  background: rgba(255, 250, 245, 0.78);
  color: var(--ink);
}

.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  padding: 24px;
  background: linear-gradient(150deg, var(--white), #ffe7d8);
}

.service-group {
  margin-top: 26px;
}

.service-group:first-of-type {
  margin-top: 0;
}

.service-group h3 {
  margin-bottom: 16px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.55rem;
}

.service-card h4 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.25;
}

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

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid rgba(182, 111, 60, 0.26);
  border-radius: var(--radius);
  background: rgba(255, 241, 230, 0.72);
  color: var(--sage-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

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

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

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

.service-note {
  max-width: 900px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.booking-section {
  align-items: stretch;
}

.booking-copy {
  align-self: center;
  max-width: 620px;
}

.booking-reminder {
  margin-top: 24px;
  padding: 18px;
  background: var(--rose);
  color: #644a42;
  font-weight: 700;
}

.booking-panel {
  align-self: center;
  padding: clamp(24px, 4vw, 36px);
  background: linear-gradient(150deg, var(--white), #ffe7d8);
  box-shadow: var(--shadow);
}

.booking-panel span,
.booking-panel strong {
  display: block;
}

.booking-panel span {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.booking-panel strong {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.booking-panel p {
  color: var(--muted);
}

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

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 1120px) {
  .service-grid,
  .treatment-grid,
  .pricing-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 18px;
  }

  .hero,
  .offer-band,
  .about-grid,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(24, 36, 34, 0.88) 0%, rgba(24, 36, 34, 0.7) 58%, rgba(24, 36, 34, 0.28) 100%),
      url("assets/hero-prp-injection.png") center / cover no-repeat;
  }

}

@media (max-width: 620px) {
  .site-header {
    position: static;
  }

  .brand {
    min-width: 0;
  }

  h1 {
    font-size: 2.55rem;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .treatment-grid,
  .service-grid,
  .price-offers,
  .course-list,
  .pricing-menu,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .course-heading {
    flex-direction: column;
    gap: 10px;
  }

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