:root {
  --ink: #2b2326;
  --muted: #6d6066;
  --blush: #b76e7d;
  --blush-deep: #8f4f5d;
  --mist: #f6eef1;
  --mist-2: #efe4e8;
  --paper: #fffafb;
  --line: rgba(43, 35, 38, 0.12);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Avenir Next", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.55;
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(183, 110, 125, 0.12), transparent 55%),
    linear-gradient(180deg, var(--paper), var(--mist));
}

a {
  color: inherit;
}

.topbar {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  padding: 1.25rem 1.5rem;
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--paper);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.15rem;
  transition: border-color 200ms var(--ease);
}

.topbar-nav a:hover,
.topbar-call:hover {
  border-color: var(--paper);
}

.topbar-call {
  border-bottom-color: rgba(255, 250, 251, 0.45);
}

.site-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.site-bar-brand {
  display: block;
  line-height: 0;
  text-decoration: none;
}

.site-bar-brand img {
  display: block;
  width: min(11rem, 42vw);
  height: auto;
}

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

.site-bar-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.1rem;
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}

.site-bar-nav a:hover,
.site-bar-nav a[aria-current="page"] {
  border-bottom-color: var(--blush-deep);
  color: var(--blush-deep);
}

.site-bar-call {
  color: var(--blush-deep) !important;
}

.page-intro {
  padding: clamp(2.75rem, 7vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem) 0.5rem;
}

.page-intro h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
}

.eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blush-deep);
}

.prose {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 40rem;
}

.prose:last-child {
  margin-bottom: 0;
}

.detail-list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.detail-list li {
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 400;
}

.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: step;
  border-top: 1px solid var(--line);
}

.steps-list li {
  counter-increment: step;
  padding: 1.35rem 0 1.35rem 3.25rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.steps-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--blush-deep);
  border: 1px solid rgba(143, 79, 93, 0.35);
}

.steps-list h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.steps-list p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}

.section-more {
  margin: 1.75rem 0 0;
}

.section-more a {
  color: var(--blush-deep);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(143, 79, 93, 0.35);
  transition: border-color 200ms var(--ease);
}

.section-more a:hover {
  border-bottom-color: var(--blush-deep);
}

.contact-meta a {
  color: var(--blush-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.contact-meta a:hover {
  border-bottom-color: var(--blush-deep);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 45%;
  transform: scale(1.04);
  animation: hero-drift 18s var(--ease) infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(43, 35, 38, 0.72) 0%,
      rgba(43, 35, 38, 0.38) 42%,
      rgba(43, 35, 38, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(43, 35, 38, 0.2) 0%,
      rgba(43, 35, 38, 0.55) 100%
    );
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  max-width: 40rem;
}

.brand {
  margin: 0 0 0.85rem;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: min(100%, 22rem);
  height: auto;
  filter: drop-shadow(0 10px 28px rgba(20, 12, 16, 0.35));
}

.hero-headline {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  font-weight: 500;
  line-height: 1.2;
  max-width: 18ch;
}

.lede {
  margin: 0 0 1.5rem;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 250, 251, 0.9);
  max-width: 32ch;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.85rem;
  padding: 0.7rem 1.25rem;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease),
    border-color 200ms var(--ease);
}

.btn-primary {
  background: var(--paper);
  color: var(--ink);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #fff;
}

.btn-secondary {
  color: var(--paper);
  border: 1px solid rgba(255, 250, 251, 0.55);
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--paper);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 900ms var(--ease) forwards;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 240ms;
}

.delay-3 {
  animation-delay: 360ms;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(-1.2%, -1%, 0);
  }
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.5rem, 4vw, 3.5rem);
}

.section.will-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

.section.will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-alt {
  background:
    linear-gradient(135deg, rgba(183, 110, 125, 0.08), transparent 55%),
    var(--mist-2);
}

.section-inner {
  max-width: 64rem;
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 38rem;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 22rem) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

.about-portrait {
  margin: 0;
}

.about-portrait img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

.about-copy .section-lede {
  margin-bottom: 1.25rem;
}

.about-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--blush-deep);
  letter-spacing: 0.02em;
}

@media (max-width: 800px) {
  .about-layout {
    grid-template-columns: 1fr;
    max-width: 28rem;
  }

  .about-portrait img {
    max-height: 28rem;
  }
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 600;
  line-height: 1.1;
}

.section-lede {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 300;
  max-width: 40rem;
}

.treatment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.treatment-list li {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.35rem;
}

.treatment-list h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
}

.treatment-list p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}

.contact-line {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 600;
}

.contact-line a {
  text-decoration: none;
  color: var(--blush-deep);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease);
}

.contact-line a:hover {
  border-color: var(--blush-deep);
}

.contact-meta {
  margin: 0;
  color: var(--muted);
}

.footer {
  padding: 2rem clamp(1.5rem, 4vw, 3.5rem) 2.75rem;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-brand {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
}

.footer-note {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .topbar {
    padding: 1rem;
  }

  .topbar-nav {
    gap: 0.85rem;
  }

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

  .site-bar-nav {
    justify-content: flex-start;
  }

  .hero-copy {
    padding-right: 1.25rem;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-media {
    animation: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-media {
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
