:root {
  --ink: #3f2b31;
  --text: #6e5b61;
  --muted: #9b8790;
  --rose: #c8798e;
  --rose-dark: #a55a70;
  --rose-deep: #7e4353;
  --rose-soft: #f3ccd6;
  --blush: #fff5f6;
  --blush-2: #f8e8ec;
  --cream: #fffaf8;
  --white: #ffffff;
  --champagne: #f2c2a5;
  --line: rgba(200, 121, 142, 0.18);
  --shadow: 0 28px 80px rgba(126, 67, 83, 0.15);
  --max: 1120px;
  --content: 1120px;
  --text-content: 920px;
  --section-min: 520px;
  --section-min-soft: 460px;
  --section-min-compact: 360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "Montserrat", sans-serif;
  line-height: 1.55;
}

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

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

.floating-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 0.55rem max(1rem, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(200, 121, 142, 0.2);
  background: rgba(255, 250, 248, 0.94);
  box-shadow: 0 8px 22px rgba(126, 67, 83, 0.06);
  backdrop-filter: blur(18px);
}

.floating-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--rose-deep);
  white-space: nowrap;
}

.floating-brand img {
  width: 54px;
  height: 40px;
  object-fit: contain;
  object-position: center;
  padding: 0.18rem;
  border: 1px solid rgba(126, 67, 83, 0.28);
  border-radius: 4px;
}

.floating-brand span {
  display: grid;
  gap: 0.08rem;
}

.floating-brand strong {
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.1;
}

.floating-brand small {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  line-height: 1.1;
}

.floating-header nav {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
}

.floating-header nav a:hover {
  color: var(--rose-dark);
}

.floating-cta {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.75rem;
  color: var(--white);
  border-radius: 4px;
  background: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(243, 204, 214, 0.62), transparent 28rem),
    linear-gradient(135deg, #fffafa 0%, var(--blush) 48%, #f6e4e9 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: stretch;
  width: min(var(--max), calc(100% - 2rem));
  min-height: 660px;
  margin: 0 auto;
  padding: clamp(1.8rem, 4.5vw, 4rem) 0 clamp(3rem, 7vw, 6rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-kicker {
  margin-bottom: 0.8rem;
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  color: var(--ink);
  font-family: "Lora", serif;
  font-size: clamp(2.45rem, 5vw, 4.55rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.04;
}

h1 em,
h2 em {
  color: var(--rose-dark);
  font-style: italic;
  font-weight: 700;
}

.hero-copy > p:not(.hero-kicker) {
  max-width: 610px;
  margin-top: 1.35rem;
  color: var(--text);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.86rem 1.28rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.sticky-cta:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--rose-deep);
  box-shadow: 0 16px 34px rgba(126, 67, 83, 0.24);
}

.btn-secondary {
  color: var(--rose-deep);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.trust-row span {
  padding: 0.48rem 0.72rem;
  color: var(--rose-deep);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-photo {
  position: relative;
  align-self: stretch;
  min-height: 640px;
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 2% 1% 0 7%;
  border: 1px solid rgba(200, 121, 142, 0.28);
  border-radius: 220px 220px 10px 10px;
  background: rgba(255, 255, 255, 0.36);
}

.hero-photo::after {
  content: "";
  position: absolute;
  right: 7%;
  bottom: 0;
  width: 74%;
  height: 94%;
  border-radius: 210px 210px 8px 8px;
  background: linear-gradient(180deg, rgba(200, 121, 142, 0.2), rgba(126, 67, 83, 0.08));
}

.hero-photo img {
  position: absolute;
  right: 11%;
  bottom: 0;
  z-index: 1;
  width: 72%;
  height: 96%;
  object-fit: cover;
  object-position: 51% 32%;
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-bottom: 0;
  border-radius: 210px 210px 8px 8px;
  box-shadow: var(--shadow);
}

.treatments,
.reference,
.exam-section,
.process,
.about,
.faq {
  min-block-size: var(--section-min-soft);
  padding: clamp(3.8rem, 6vw, 5.8rem) 1rem;
}

.treatments,
.reference,
.process,
.about {
  min-block-size: var(--section-min);
}

.intent-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--max), calc(100% - 2rem));
  margin: -2.2rem auto 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(200, 121, 142, 0.16);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(126, 67, 83, 0.06);
}

.intent-bar a {
  display: grid;
  gap: 0.3rem;
  padding: 1.1rem;
  border-right: 1px solid rgba(200, 121, 142, 0.16);
}

.intent-bar a:last-child {
  border-right: 0;
}

.intent-bar strong {
  color: var(--rose-deep);
  font-size: 0.95rem;
}

.intent-bar span {
  color: var(--text);
  font-size: 0.82rem;
}

.section-title {
  text-align: center;
}

.section-title h2,
.inline-title h2 {
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  font-style: italic;
  font-weight: 500;
}

.section-title h2 {
  color: var(--rose-dark);
  font-weight: 800;
}

.inline-title {
  align-self: start;
  text-align: left;
}

.inline-title em,
.section-title em {
  color: var(--rose-dark);
  font-style: italic;
  font-weight: 800;
}

.microcopy {
  max-width: 560px;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.exam-section h2,
.final-cta h2 {
  color: var(--ink);
  font-family: "Lora", serif;
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.15;
}

.treatments {
  background: #fff8f4;
}

.intent-bar + .treatments {
  margin-top: -2.2rem;
  padding-top: calc(clamp(3.8rem, 6vw, 5.8rem) + 2.2rem);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  width: min(var(--max), calc(100% - 2rem));
  margin: 2.1rem auto 0;
}

.card-grid article {
  display: grid;
  justify-items: center;
  min-height: 240px;
  padding: 1.3rem 1.1rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom: 3px solid var(--rose);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 24px rgba(126, 67, 83, 0.06);
}

.card-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-bottom: 0.6rem;
  color: var(--rose-dark);
  border: 1px solid var(--rose-soft);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
}

.card-grid h3 {
  margin-bottom: 0.5rem;
  color: var(--rose-dark);
  font-size: 1rem;
  font-style: italic;
  font-weight: 800;
}

.card-grid p {
  color: var(--text);
  font-size: 0.84rem;
}

.card-list {
  display: grid;
  justify-items: start;
  gap: 0.45rem;
  margin-top: 0.2rem;
  padding: 0;
  list-style: none;
  text-align: left;
}

.card-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1.45;
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
}


.center-btn {
  display: flex;
  width: fit-content;
  margin: 2.1rem auto 0;
}

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

.reference {
  padding-right: max(1rem, calc((100vw - var(--max)) / 2));
  padding-left: max(1rem, calc((100vw - var(--max)) / 2));
  width: 100%;
  background: var(--blush);
}

.text-feature {
  margin-top: 3rem;
}

.narrow {
  max-width: 580px;
  margin-right: auto;
  margin-left: auto;
}

.text-feature h3,
.media-row h3 {
  margin-bottom: 0.9rem;
  color: var(--rose-dark);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 800;
}

.text-feature p,
.media-row p,
.about-copy p,
.faq-list p {
  color: var(--text);
  font-size: 0.94rem;
}

.text-feature p + p,
.about-copy p + p {
  margin-top: 0.85rem;
}

.media-row {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 2.2rem;
  align-items: center;
  margin-top: 3.6rem;
}

.media-row.reassurance {
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--rose-dark);
  font-size: 0.9rem;
  font-weight: 800;
  border-bottom: 2px solid currentColor;
}

.exam-section {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 2rem;
  align-items: center;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding-right: clamp(1rem, 4vw, 2.4rem);
  padding-left: clamp(1rem, 4vw, 2.4rem);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(126, 67, 83, 0.08);
}

.exam-section p {
  margin-top: 0.85rem;
  color: var(--text);
}

.exam-section ul {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  list-style: none;
}

.exam-section li {
  position: relative;
  padding-left: 1.35rem;
}

.exam-section li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
}

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

.process {
  width: 100%;
  padding-right: max(1rem, calc((100vw - var(--max)) / 2));
  padding-left: max(1rem, calc((100vw - var(--max)) / 2));
  background: #fff8f4;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-top: 2rem;
}

.steps article {
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}

.steps span {
  color: var(--rose);
  font-family: "Lora", serif;
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 700;
}

.steps h3 {
  margin: 0.35rem 0 0.45rem;
}

.steps p {
  font-size: 0.86rem;
}

.soft-media {
  display: grid;
  min-height: 240px;
  place-items: center;
  margin: 0;
  overflow: hidden;
  background: var(--blush);
}

.soft-media img {
  width: 70%;
  max-width: 245px;
  opacity: 0.42;
  mix-blend-mode: multiply;
}

.about {
  background: var(--blush);
}

.about-inner {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.about-photo {
  overflow: hidden;
  border-radius: 190px 190px 8px 8px;
  background: var(--rose-soft);
  box-shadow: 0 20px 50px rgba(126, 67, 83, 0.1);
}

.about-photo img {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: 50% 31%;
}

.about-copy h2 {
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.35rem, 2.25vw, 1.85rem);
  font-style: italic;
  font-weight: 500;
}

.about-copy h2 em {
  color: var(--rose-dark);
  font-weight: 800;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem 1rem;
  margin: 1.35rem 0 1.5rem;
  padding: 0;
  list-style: none;
  color: var(--rose-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.credentials li::before {
  content: "• ";
  color: var(--rose);
}

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

.final-cta {
  width: min(var(--max), calc(100% - 2rem));
  min-block-size: var(--section-min-compact);
  margin: 0 auto 4rem;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 0%, rgba(243, 204, 214, 0.85), transparent 20rem),
    linear-gradient(180deg, var(--white), var(--blush));
}

.final-cta p {
  max-width: 620px;
  margin: 0.85rem auto 0;
}

.final-cta .btn {
  margin-top: 1.45rem;
}

.contact-summary {
  display: grid;
  gap: 0.35rem;
  max-width: 620px;
  margin: 1.4rem auto 0;
  color: var(--text);
  font-size: 0.9rem;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  color: inherit;
  font-weight: 800;
}

.instagram-icon {
  display: block;
  width: 19px;
  height: 19px;
  flex: 0 0 18px;
  object-fit: contain;
}

.footer .instagram-icon {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.faq-list {
  max-width: var(--text-content);
  margin-right: auto;
  margin-left: auto;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  padding: 1rem 0;
  color: var(--rose-dark);
  font-weight: 800;
}

.faq-list p {
  padding-bottom: 1rem;
}

.footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem max(1rem, calc((100vw - var(--max)) / 2));
  color: rgba(255, 255, 255, 0.84);
  background: var(--rose-dark);
}

.footer h2 {
  color: var(--white);
  font-family: "Montserrat", sans-serif;
  font-size: 1.22rem;
  font-style: italic;
  font-weight: 800;
}

.footer p,
.footer span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.86rem;
}

.footer address {
  font-style: normal;
}

.footer strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.disclaimer {
  grid-column: 1 / -1;
  max-width: 720px;
  opacity: 0.78;
}

.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 10;
  display: none;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--rose-deep);
  border-radius: 4px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  font-weight: 900;
}

@media (max-width: 900px) {
  :root {
    --section-min: 460px;
    --section-min-soft: 400px;
    --section-min-compact: 320px;
  }

  .floating-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .floating-header nav {
    display: none;
  }

  .hero-inner,
  .intent-bar,
  .media-row,
  .exam-section,
  .about-inner,
  .footer {
    grid-template-columns: 1fr;
  }

  .intent-bar {
    margin-top: 0;
  }

  .intent-bar a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intent-bar a:last-child {
    border-bottom: 0;
  }

  .hero-inner {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero-photo {
    min-height: 520px;
  }

  .hero-photo img {
    right: 15%;
    width: 68%;
  }

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

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

@media (max-width: 620px) {
  :root {
    --section-min: auto;
    --section-min-soft: auto;
    --section-min-compact: auto;
  }

  body {
    padding-bottom: 70px;
  }

  .hero-inner {
    width: min(100% - 1.4rem, var(--max));
    padding-top: 2.5rem;
  }

  .floating-header {
    padding: 0.55rem 1rem;
  }

  .floating-brand span {
    gap: 0;
  }

  .floating-brand img {
    width: 44px;
    height: 34px;
  }

  .floating-brand small {
    display: none;
  }

  .floating-brand strong {
    font-size: 0.78rem;
  }

  h1 {
    font-size: clamp(2.1rem, 11vw, 3.05rem);
  }

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

  .trust-row span {
    flex: 1 1 auto;
    text-align: center;
  }

  .hero-photo {
    min-height: 430px;
  }

  .hero-photo img {
    right: 9%;
    width: 82%;
  }

  .treatments,
  .reference,
  .exam-section,
  .process,
  .about,
  .faq {
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
  }

  .card-grid,
  .steps,
  .credentials {
    grid-template-columns: 1fr;
  }

  .exam-section .btn,
  .final-cta .btn {
    width: 100%;
  }

  .card-grid article {
    min-height: auto;
  }

  .about-photo img {
    height: 380px;
  }

  .footer {
    padding-right: 1rem;
    padding-bottom: 5.5rem;
    padding-left: 1rem;
  }

  .sticky-cta {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    display: inline-flex;
  }
}
