/* ==========================================================================
   Dra. Paola Melo — Harmonização Facial
   ========================================================================== */

:root {
  /* Paleta oficial */
  --cream:      #f5f0e8;
  --taupe:      #cfc4b2;
  --camel:      #b19977;
  --terracotta: #9b634c;
  --sage:       #8c8e76;

  --ink:        #211c17;
  --ink-soft:   #3a322b;
  --white:      #fffdfa;

  --terracotta-dark: #7e4f3d;
  --sage-dark: #74765f;

  --font-display: "Bodoni Moda", "Times New Roman", serif;
  --font-body: "Geist", "Helvetica Neue", Arial, sans-serif;

  --container-w: 1200px;
  --radius: 2px;
  --transition: 0.5s cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 .5em;
  color: var(--ink);
}

em { font-style: italic; color: var(--terracotta); }

p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin: 0 0 18px;
}
.eyebrow.center { text-align: center; }

.center { text-align: center; }

.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,253,250,.45);
  color: var(--white);
}
.btn-outline:hover { background: rgba(255,253,250,.1); border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-outline-dark:hover { background: var(--ink); color: var(--white); }

.btn-block { width: 100%; justify-content: center; }

.icon-wa { width: 17px; height: 17px; fill: currentColor; }
.icon-sm { width: 20px; height: 20px; flex-shrink: 0; }

/* ---------- reveal on scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- grain overlay ---------- */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 20px 0;
  transition: var(--transition);
  background: rgba(33, 28, 23, .96);
  backdrop-filter: blur(10px);
}
.site-header.scrolled {
  padding: 14px 0;
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-inner--center { justify-content: center; }

.brand-logo { height: 34px; width: auto; }

/* ---- Header variant: sem menu, sem fixação (usado na página /links) ---- */
.site-header--minimal,
.site-header--minimal.scrolled {
  position: static;
  padding: 34px 0;
  background: var(--ink);
  backdrop-filter: none;
  box-shadow: none;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav a {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .85;
  position: relative;
  padding-bottom: 4px;
  transition: opacity .3s;
}
.main-nav a:hover { opacity: 1; }
.main-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 0;
  background: var(--terracotta);
  transition: width .3s;
}
.main-nav a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  border: 1px solid var(--terracotta);
  padding: 10px 22px;
  border-radius: var(--radius);
  opacity: 1 !important;
  background: var(--terracotta);
}
.nav-cta:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: var(--transition);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background: var(--taupe);
  overflow: hidden;
  padding-top: 130px;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(64vw, 880px);
  transform: translate(-42%, -50%);
  opacity: .035;
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  min-height: calc(100vh - 130px);
}

.hero-copy {
  max-width: 540px;
  align-self: center;
  padding-bottom: 50px;
}
.hero-copy .eyebrow { color: var(--terracotta); }

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  color: var(--ink);
  margin-bottom: 26px;
}
.hero-title em { font-style: italic; color: var(--camel); }
.hero-title .accent-text { color: var(--terracotta); font-style: italic; }

.hero-subtitle {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-media {
  align-self: flex-end;
  flex-shrink: 0;
  height: min(88vh, 1260px);
  width: min(41.6vw, 624px);
  overflow: hidden;
  position: relative;
}
.hero-media img {
  position: absolute;
  top: 0;
  left: 0;
  height: 130%;
  width: 100%;
  object-fit: contain;
  display: block;
}

.scroll-cue {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  z-index: 3;
}
.scroll-cue span {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 40%;
  background: var(--terracotta);
  animation: scrollCue 1.8s ease-in-out infinite;
}
.scroll-cue::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(33,28,23,.18);
}
@keyframes scrollCue {
  0% { top: -40%; }
  100% { top: 100%; }
}

/* ---- Hero variant: framed photo (no cutout/crop), used on secondary pages ---- */
.hero--framed .hero-media {
  align-self: flex-end;
  flex-shrink: 0;
  height: min(80vh, 760px);
  width: auto;
  aspect-ratio: 1100 / 1957;
  overflow: visible;
  position: relative;
}
.hero--framed .hero-framed-photo {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(33, 28, 23, .35);
}
.hero--framed .hero-framed-photo img {
  position: static;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   LINKS HERO (texto apenas, usado na página /links)
   ========================================================================== */
.links-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--ink);
  overflow: hidden;
  padding: 40px 0 90px;
}
.links-hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(60vw, 760px);
  transform: translate(-50%, -50%);
  opacity: .05;
  z-index: 0;
  pointer-events: none;
}
.links-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.links-hero-copy .eyebrow { color: var(--camel); }
.links-hero-title {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  color: var(--white);
  margin-bottom: 22px;
}
.links-hero-title em { font-style: italic; color: var(--terracotta); }
.links-hero-subtitle {
  color: rgba(245, 240, 232, .8);
  font-size: 1.08rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ---- Cards de link (usado na página /links) ---- */
.link-cards { padding: 30px 0 140px; background: var(--cream); }

.link-cards-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.link-card {
  display: flex;
  align-items: stretch;
  text-align: left;
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border-top: 4px solid var(--terracotta);
  box-shadow: 0 24px 55px -24px rgba(33, 28, 23, .3);
  transition: var(--transition);
}
.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 32px 65px -24px rgba(33, 28, 23, .4);
}
.link-card--pros { border-top-color: var(--sage); }

.link-card-media { position: relative; flex: 0 0 42%; overflow: hidden; }
.link-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.link-card-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 44px;
}
.link-card-body .eyebrow { margin-bottom: 14px; }
.link-card-body h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 16px;
}
.link-card-body .lead {
  font-size: 1.02rem;
  margin-bottom: 28px;
}
.link-card-body .btn { pointer-events: none; align-self: flex-start; }

@media (max-width: 700px) {
  .link-card { flex-direction: column; }
  .link-card-media { flex: none; width: 100%; aspect-ratio: 4 / 5; order: -1; }
  .link-card-body { padding: 32px 28px 36px; }
}

/* ==========================================================================
   PHILOSOPHY STRIP
   ========================================================================== */
.philosophy {
  padding: 130px 0 110px;
  text-align: center;
  background: var(--cream);
}
.philosophy-statement {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  max-width: 900px;
  margin: 0 auto 26px;
}
.philosophy-sub {
  max-width: 560px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ==========================================================================
   IDENTIFY (checklist "para quem é")
   ========================================================================== */
.identify { padding: 20px 0 140px; background: var(--cream); }

.identify-list {
  list-style: none;
  margin: 60px auto 0;
  padding: 0;
  max-width: 820px;
  display: flex;
  flex-direction: column;
}
.identify-list li {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 30px 0;
  border-bottom: 1px solid var(--taupe);
}
.identify-list li:first-child { border-top: 1px solid var(--taupe); }
.identify-number {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--terracotta);
  flex-shrink: 0;
  width: 44px;
}
.identify-list p {
  margin: 0;
  font-size: 1.08rem;
  color: var(--ink);
}

/* ==========================================================================
   CONCEITO
   ========================================================================== */
.concept { padding: 40px 0 140px; background: var(--cream); }

.concept-inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.concept-media { position: relative; }
.concept-media-frame {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(33,28,23,.35);
}
.concept-media-frame img { width: 100%; height: 100%; object-fit: cover; }

.concept-media-caption {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--terracotta);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.25;
  padding: 20px 24px;
  border-radius: 3px;
  box-shadow: 0 20px 40px -10px rgba(155,99,76,.5);
}

.concept-copy h2 { font-size: clamp(2.1rem, 3.4vw, 2.9rem); }

.pillars {
  list-style: none;
  margin: 44px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 36px;
}
.pillars li { display: flex; gap: 16px; }
.pillar-number {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--taupe);
  font-weight: 500;
  padding-top: 2px;
}
.pillars h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--terracotta);
}
.pillars p { font-size: .93rem; color: var(--ink-soft); margin: 0; }

/* ==========================================================================
   STATEMENT BREAK
   ========================================================================== */
.statement {
  padding: 160px 0;
  background-size: cover;
  background-position: center;
  text-align: center;
}
.statement-text {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--white);
  font-size: clamp(1.7rem, 3.4vw, 2.9rem);
  max-width: 920px;
  margin: 0 auto 28px;
  line-height: 1.35;
}
.statement-author {
  color: var(--camel);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 13px;
}

/* ==========================================================================
   TREATMENTS
   ========================================================================== */
.treatments { padding: 140px 0; background: var(--white); }

.section-head { max-width: 640px; margin: 0 auto 70px; }
.section-sub { color: var(--ink-soft); margin-top: 14px; }

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--taupe);
  border: 1px solid var(--taupe);
}
.treatment-card {
  background: var(--white);
  padding: 46px 38px;
  transition: var(--transition);
}
.treatment-card:hover {
  background: var(--cream);
}
.treatment-index {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--terracotta);
  display: block;
  margin-bottom: 20px;
}
.treatment-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.treatment-card p {
  color: var(--ink-soft);
  font-size: .95rem;
  margin: 0;
}

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about { padding: 140px 0; background: var(--cream); }
.about.mentoria-invite { background: var(--cream); padding: 100px 0; }

.mentoria-invite .about-inner {
  background: var(--taupe);
  border-radius: 28px;
  padding: 70px 60px;
  box-shadow: 0 50px 80px -35px rgba(33, 28, 23, .45);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 80px;
  align-items: center;
}

.about h2 { font-size: clamp(2.1rem, 3.4vw, 2.9rem); }

.pull-quote {
  margin: 34px 0;
  padding: 28px 32px;
  border-left: 3px solid var(--terracotta);
  background: var(--white);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
}

.about-media { position: relative; order: 2; }
.about-media-frame {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 60px -20px rgba(33,28,23,.35);
}
.about-media-frame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.about-badge {
  position: absolute;
  top: -30px; right: -30px;
  width: 110px; height: 110px;
  background: var(--sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  box-shadow: 0 20px 40px -10px rgba(140,142,118,.55);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials { padding: 140px 0; background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: var(--cream);
  padding: 42px 36px;
  border-radius: 4px;
  border-top: 3px solid var(--terracotta);
}
.stars { color: var(--terracotta); letter-spacing: 3px; margin-bottom: 18px; font-size: .95rem; }
.testimonial-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.testimonial-name {
  font-size: 12.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--terracotta);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding: 140px 0; background: var(--cream); }

.faq-inner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
}
.faq-head p { color: var(--ink-soft); margin-bottom: 28px; }

.faq-item {
  border-bottom: 1px solid var(--taupe);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  padding: 26px 0;
  cursor: pointer;
}
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 18px; height: 18px;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--terracotta);
  transition: var(--transition);
}
.faq-icon::before { width: 100%; height: 1px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-icon::after { width: 1px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.faq-item.open .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer p { padding-bottom: 24px; color: var(--ink-soft); margin: 0; max-width: 60ch; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  padding: 140px 0;
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.contact-inner {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: start;
}
.contact-copy .eyebrow { color: var(--camel); }
.contact-copy h2 { color: var(--white); font-size: clamp(2rem, 3.2vw, 2.7rem); }
.contact-copy p { color: rgba(245,240,232,.8); }

.contact-info {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(245,240,232,.85);
  font-size: .95rem;
}
.contact-info a:hover { color: var(--camel); }

.contact-form {
  background: rgba(245, 240, 232, .06);
  border: 1px solid rgba(245,240,232,.18);
  backdrop-filter: blur(6px);
  border-radius: 6px;
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--camel);
}
.contact-form label[hidden] { display: none; }
.contact-form .optional { text-transform: none; letter-spacing: 0; color: rgba(245,240,232,.5); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(245,240,232,.25);
  border-radius: 3px;
  padding: 13px 15px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 300;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(245,240,232,.4); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}
.contact-form select option { color: var(--ink); }
.form-note {
  font-size: 12px;
  color: rgba(245,240,232,.55);
  text-align: center;
  margin: 0;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--ink); color: rgba(245,240,232,.7); padding: 70px 0 0; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(245,240,232,.12);
}
.container.footer-inner { padding-bottom: 50px; }

.footer-logo { height: 30px; margin-bottom: 14px; }
.footer-brand p { color: rgba(245,240,232,.55); font-size: .9rem; margin: 0; }

.footer-inner--center { justify-content: center; align-items: center; text-align: center; }
.site-footer--minimal .footer-logo { margin-bottom: 0; }

.footer-nav { display: flex; flex-wrap: wrap; gap: 26px; }
.footer-nav a { font-size: .88rem; letter-spacing: .04em; opacity: .8; }
.footer-nav a:hover { opacity: 1; color: var(--camel); }

.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(245,240,232,.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--terracotta); border-color: var(--terracotta); }

.footer-bottom { padding: 26px 0 30px; }
.footer-bottom p { margin: 0; font-size: .82rem; color: rgba(245,240,232,.45); text-align: center; }

/* ==========================================================================
   WHATSAPP FAB
   ========================================================================== */
.whatsapp-fab {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,.4);
  z-index: 400;
  transition: var(--transition);
}
.whatsapp-fab svg { width: 28px; height: 28px; fill: var(--white); }
.whatsapp-fab:hover { transform: scale(1.08); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero { align-items: center; min-height: auto; padding-top: 94px; padding-bottom: 70px; }
  .scroll-cue { display: none; }
  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: auto;
    gap: 0;
  }
  .hero-copy {
    align-self: center;
    text-align: center;
    padding-bottom: 0;
    max-width: 560px;
    margin-top: -90px;
    position: relative;
    z-index: 2;
  }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-media {
    order: -1;
    align-self: center;
    height: min(70vh, 700px);
    aspect-ratio: 772 / 1800;
    width: auto;
    overflow: hidden;
    position: relative;
    display: block;
  }
  .hero-media img {
    position: absolute;
    top: 0;
    left: 0;
    height: 125%;
    width: 125%;
    object-fit: contain;
    -webkit-mask-image: linear-gradient(to top, transparent 0%, transparent 20%, #000 72%, #000 100%);
    mask-image: linear-gradient(to top, transparent 0%, transparent 20%, #000 72%, #000 100%);
  }
  .hero-watermark { width: min(90vw, 640px); top: 40%; transform: translate(-50%, -50%); }

  .hero--framed { padding-top: 78px; }
  .hero--framed .hero-inner { gap: 0; }
  .hero--framed .hero-copy {
    margin-top: calc(min(65vh, 620px) - 120px);
    position: relative;
    z-index: 2;
  }
  .hero--framed .hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: min(65vh, 620px);
    aspect-ratio: auto;
    overflow: hidden;
    z-index: 1;
  }
  .hero--framed .hero-framed-photo {
    position: static;
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
  }
  .hero--framed .hero-framed-photo img {
    object-position: center 20%;
    -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 45%, #000 100%);
    mask-image: linear-gradient(to top, transparent 0%, #000 45%, #000 100%);
  }

  .concept-inner,
  .about-inner,
  .faq-inner,
  .contact-inner { grid-template-columns: 1fr; }
  .about-media { order: -1; max-width: 420px; }
  .mentoria-invite .about-inner { padding: 44px 28px; border-radius: 20px; margin-left: 14px; margin-right: 14px; }
  .concept-media { max-width: 420px; }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 340px);
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.22,.61,.36,1);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 16px; opacity: 1; }
  .nav-toggle { display: flex; z-index: 600; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
}

@media (max-width: 640px) {
  .container { padding: 0 22px; }
  .hero { padding-top: 94px; padding-bottom: 50px; }
  .hero-copy { margin-top: -63px; }
  .hero-media { height: min(80.5vh, 735px); }
  .hero-watermark { width: min(120vw, 520px); }
  .hero--framed { padding-top: 78px; }
  .hero--framed .hero-copy { margin-top: calc(min(52vh, 460px) - 90px); }
  .hero--framed .hero-media { height: min(52vh, 460px); }
  .philosophy { padding: 90px 0 70px; }
  .concept { padding: 20px 0 90px; }
  .pillars { grid-template-columns: 1fr; }
  .statement { padding: 100px 0; }
  .treatments,
  .about,
  .testimonials,
  .faq,
  .contact { padding: 90px 0; }
  .treatments-grid { grid-template-columns: 1fr; }
  .concept-media-caption { left: 0; bottom: -18px; font-size: .9rem; padding: 14px 18px; }
  .about-badge { width: 82px; height: 82px; padding: 16px; top: -18px; right: -12px; }
  .contact-form { padding: 30px 24px; }
  .footer-inner { flex-direction: column; }
}
