:root {
  --ivory: #f5f0e9;
  --paper: #fbf8f3;
  --sand: #dcc0a4;
  --sand-dark: #b98968;
  --ink: #1e1b18;
  --muted: #6f655c;
  --line: rgba(30, 27, 24, .14);
  --sage: #6b765f;
  --deep: #171714;
  --wine: #9a2a4e;
  --wine-dark: #7f1f3f;
  --white: #fff;
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 24px 70px rgba(37, 28, 21, .10);
  --container: 1180px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link { position: fixed; left: 12px; top: -100px; background: #fff; color: #000; padding: 10px 14px; z-index: 9999; }
.skip-link:focus { top: 12px; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section-pad { padding: 112px 0; }
.eyebrow { margin: 0 0 20px; text-transform: uppercase; letter-spacing: .18em; font-size: 12px; font-weight: 700; color: var(--sand-dark); }
.eyebrow.light { color: #d9c5b1; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; line-height: .98; }
h1 em, h2 em { font-weight: 400; font-style: italic; }
h2 { font-size: clamp(44px, 6vw, 78px); }
p { color: var(--muted); }

.site-header { position: absolute; top: 0; left: 0; width: 100%; z-index: 20; padding: 20px 0; }
.header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px; }
.brand { width: 62px; height: 62px; overflow: hidden; display: grid; place-items: center; text-decoration: none; }
.brand img { width: 72px; height: 72px; object-fit: contain; }
.header-location { justify-self: center; font-size: 13px; letter-spacing: .05em; color: #4c443d; }
.header-location span { margin: 0 8px; color: var(--sand-dark); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 54px; padding: 0 24px; border-radius: 999px; text-decoration: none; font-weight: 700; font-size: 14px; letter-spacing: -.01em; border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-sm { min-height: 46px; padding-inline: 20px; font-size: 13px; background: var(--ink); color: #fff; }
.btn-primary { background: var(--ink); color: #fff; box-shadow: 0 12px 24px rgba(31, 27, 24, .14); }
.btn-primary:hover, .btn-sm:hover { background: #000; box-shadow: 0 16px 34px rgba(31, 27, 24, .20); }
.btn-wine { background: var(--wine); color: #fff; box-shadow: 0 12px 24px rgba(154, 42, 78, .22); }
.btn-wine:hover, .btn-sm.btn-wine:hover { background: var(--wine-dark); box-shadow: 0 16px 34px rgba(154, 42, 78, .30); }
.btn-outline { border-color: var(--line); background: transparent; }
.btn-outline:hover { background: var(--ink); color: white; }
.btn-light { background: #f4eadf; color: #171714; }
.btn-dark { background: var(--deep); color: #fff; }
.text-link, .google-link { font-weight: 700; font-size: 13px; text-decoration: none; border-bottom: 1px solid currentColor; padding-bottom: 3px; }

.hero { position: relative; min-height: 920px; padding: 150px 0 0; background: var(--ivory); overflow: hidden; }
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(.2px); }
.hero-orb-a { width: 560px; height: 560px; background: rgba(220, 192, 164, .40); right: -160px; top: 60px; }
.hero-orb-b { width: 290px; height: 290px; border: 1px solid rgba(30, 27, 24, .09); left: -100px; bottom: 90px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .85fr; gap: 72px; align-items: center; min-height: 650px; position: relative; z-index: 2; }
.hero-copy { max-width: 680px; padding-bottom: 28px; }
.hero h1 { margin: 0 0 30px; font-size: clamp(62px, 7vw, 104px); max-width: 760px; }
.hero-lead { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.45; max-width: 620px; color: #504940; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; margin-bottom: 42px; }
.hero-notes { display: flex; gap: 8px 24px; flex-wrap: wrap; color: #60564c; font-size: 12px; }
.hero-notes span { position: relative; padding-left: 15px; }
.hero-notes span::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--sage); position: absolute; left: 0; top: .58em; }
.hero-visual { position: relative; align-self: end; padding-top: 30px; }
.hero-stamp { position: absolute; left: 8px; bottom: 130px; width: 132px; height: 132px; border-radius: 50%; background: #1e1b18; color: white; display: grid; place-items: center; text-align: center; box-shadow: 0 18px 36px rgba(0,0,0,.2); }
.hero-stamp span { font-family: var(--serif); font-size: 42px; line-height: 1; margin-bottom: -30px; }
.hero-stamp small { font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.hero-caption { display: flex; justify-content: space-between; gap: 16px; margin-left: auto; width: min(100%, 480px); padding-top: 14px; font-size: 12px; }
.hero-caption span { color: var(--muted); text-align: right; }
.hero-trust { margin-top: 52px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 32px; padding: 26px 0; position: relative; z-index: 2; }
.hero-trust p { margin: 0; max-width: 760px; font-size: 14px; }
.hero-trust a { font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 220px 1fr; gap: 80px; }
.section-kicker { display: flex; gap: 12px; align-items: baseline; color: var(--sand-dark); }
.section-kicker span { font-family: var(--serif); font-size: 42px; font-style: italic; }
.section-kicker p { text-transform: uppercase; letter-spacing: .15em; font-size: 10px; margin: 0; color: inherit; }
.intro-copy { max-width: 820px; }
.intro-copy h2 { margin-bottom: 34px; }
.intro-copy .lead { font-size: 24px; color: #3f3933; max-width: 760px; }
.intro-copy > p:not(.lead) { max-width: 680px; font-size: 17px; }
.intro-copy .btn { margin-top: 18px; }

.treatments { background: var(--ivory); padding: 100px 0 90px; }
.treatments-head { display: grid; grid-template-columns: 280px 1fr; gap: 48px; margin-bottom: 56px; align-items: start; }
.treatments-head h2 { font-size: clamp(42px, 5.2vw, 72px); max-width: 800px; margin: 0; }
.treatment-list { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.treatment-list div { min-height: 72px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 22px; display: flex; flex-direction: row; align-items: center; gap: 12px; font-size: 16px; }
.treatment-list span { font-family: var(--serif); color: var(--sand-dark); font-style: italic; flex: none; }

.results { background: #f0e4d8; }
.results-head { display: grid; grid-template-columns: 220px 1fr; gap: 80px; margin-bottom: 72px; }
.results-title { max-width: 820px; }
.results-title h2 { margin-bottom: 28px; }
.results-title > p:last-child { max-width: 640px; font-size: 16px; }
.featured-case { display: grid; grid-template-columns: .55fr 1.45fr; gap: 46px; align-items: end; border-top: 1px solid rgba(30,27,24,.18); padding-top: 48px; }
.case-copy { padding-bottom: 32px; }
.case-index, .case-card-copy > span { font-size: 10px; text-transform: uppercase; letter-spacing: .16em; color: var(--sand-dark); font-weight: 700; }
.case-copy h3 { font-family: var(--serif); font-size: 42px; font-weight: 400; margin: 18px 0 16px; }
.case-copy p { font-size: 15px; }
.case-note { font-size: 11px; color: #766c63; margin-top: 22px; }
.before-after-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.result-image { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-lg); background: #cbb09a; }
.result-image button { padding: 0; border: 0; width: 100%; height: 100%; background: transparent; cursor: zoom-in; display: block; }
.result-image img { width: 100%; height: 540px; object-fit: cover; object-position: center; transition: transform .5s ease; }
.result-image:hover img { transform: scale(1.018); }
.result-image figcaption { position: absolute; left: 16px; bottom: 16px; padding: 8px 14px; border-radius: 999px; background: rgba(251,248,243,.92); backdrop-filter: blur(8px); font-family: var(--serif); font-style: italic; font-size: 16px; }
.result-image.compact img { height: 350px; }
.result-image.wide img { height: 420px; object-position: center; }
.result-image .split-caption { left: 0; right: 0; bottom: 0; padding: 0; background: none; backdrop-filter: none; border-radius: 0; display: grid; grid-template-columns: 1fr 1fr; pointer-events: none; }
.result-image .split-caption span { justify-self: start; margin: 0 0 16px 16px; padding: 8px 14px; border-radius: 999px; background: rgba(251,248,243,.92); backdrop-filter: blur(8px); font-family: var(--serif); font-style: italic; font-size: 16px; }
.cases-grid { margin-top: 70px; display: grid; grid-template-columns: 1fr 1fr; gap: 54px 24px; }
.case-card { border-top: 1px solid rgba(30,27,24,.18); padding-top: 18px; }
.case-card.solo { grid-column: 1 / -1; display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: center; }
.case-card-images { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.case-card-copy { padding: 22px 4px 0; }
.case-card-copy h3 { font-family: var(--serif); font-size: 30px; font-weight: 400; margin: 10px 0 8px; }
.case-card-copy p { margin-bottom: 0; }
.results-cta { margin-top: 72px; padding-top: 34px; border-top: 1px solid rgba(30,27,24,.18); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.results-cta p { margin: 0; font-family: var(--serif); font-size: 28px; color: var(--ink); }

.process { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.process-intro { position: sticky; top: 40px; align-self: start; }
.process-intro h2 { font-size: clamp(44px, 5.1vw, 68px); margin-bottom: 28px; }
.process-intro > p:last-child { max-width: 500px; font-size: 17px; }
.process-steps { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-steps li { display: grid; grid-template-columns: 90px 1fr; gap: 22px; padding: 42px 0; border-bottom: 1px solid var(--line); }
.process-steps > li > span { font-family: var(--serif); font-size: 28px; font-style: italic; color: var(--sand-dark); }
.process-steps h3 { font-family: var(--serif); font-size: 34px; font-weight: 400; margin: 0 0 10px; }
.process-steps p { margin: 0; max-width: 520px; }

.authority { background: var(--wine); color: white; display: grid; grid-template-columns: 1fr 1fr; min-height: 720px; }
.authority-image { min-height: 720px; overflow: hidden; }
.authority-image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 32%; }
.authority-copy { padding: 96px clamp(44px, 7vw, 110px); display: flex; flex-direction: column; justify-content: center; }
.authority-copy h2 { font-size: clamp(44px, 5.2vw, 72px); margin-bottom: 28px; }
.authority-copy > p:not(.eyebrow) { color: #cfc8bf; max-width: 580px; }
.check-list { list-style: none; margin: 28px 0 34px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.check-list li { color: #f3ede6; font-size: 14px; position: relative; padding-left: 22px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: #d6b598; }
.authority-copy .btn { align-self: flex-start; }

.testimonials { background: var(--paper); }
.testimonials-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 56px; }
.testimonials-head h2 { margin: 0; max-width: 760px; }
.testimonial-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; }
.testimonial-layout blockquote { margin: 0; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 34px; background: #fff; }
.testimonial-featured { min-height: 520px; display: flex; flex-direction: column; justify-content: space-between; }
.testimonial-featured p { font-family: var(--serif); font-size: clamp(27px, 3vw, 42px); line-height: 1.22; color: var(--ink); letter-spacing: -.02em; }
.stars { letter-spacing: .15em; color: #b98968; font-size: 14px; }
.testimonial-layout footer { display: flex; flex-direction: column; gap: 3px; font-style: normal; }
.testimonial-layout footer strong { font-size: 14px; }
.testimonial-layout footer span { font-size: 11px; color: var(--muted); }
.testimonial-stack { display: grid; gap: 22px; }
.testimonial-stack blockquote { display: flex; flex-direction: column; justify-content: space-between; }
.testimonial-stack p { font-family: var(--serif); font-size: 20px; line-height: 1.42; color: #3b3530; }

.clinic { background: #e5d5c5; }
.clinic-head { display: grid; grid-template-columns: 220px 1fr; gap: 80px; margin-bottom: 54px; }
.clinic-head > div:last-child { max-width: 850px; }
.clinic-head h2 { margin-bottom: 26px; }
.clinic-head p:last-child { max-width: 650px; }
.clinic-gallery { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 14px; min-height: 610px; }
.clinic-gallery figure { margin: 0; border-radius: var(--radius-lg); overflow: hidden; min-height: 420px; }
.clinic-gallery img { width: 100%; height: 100%; object-fit: cover; }
.clinic-main img { object-position: 50% 58%; }
.clinic-info { display: grid; grid-template-columns: 1fr 1fr auto; gap: 28px; align-items: center; border-top: 1px solid rgba(30,27,24,.18); margin-top: 30px; padding-top: 30px; }
.clinic-info div { display: flex; flex-direction: column; gap: 5px; }
.clinic-info span { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; color: var(--sand-dark); font-weight: 700; }
.clinic-info strong { font-size: 13px; font-weight: 600; }

.faq { background: var(--deep); color: white; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; }
.faq-intro h2 { font-size: clamp(44px, 5vw, 68px); }
.faq-intro > p:not(.eyebrow) { color: #aaa29b; max-width: 460px; }
.faq-list { border-top: 1px solid rgba(255,255,255,.16); }
.faq-list details { border-bottom: 1px solid rgba(255,255,255,.16); }
.faq-list summary { list-style: none; cursor: pointer; padding: 26px 0; display: grid; grid-template-columns: 1fr auto; gap: 24px; font-size: 18px; font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-family: var(--serif); font-size: 30px; font-weight: 400; transition: transform .25s ease; color: #d2b89f; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details div { padding: 0 54px 28px 0; }
.faq-list details p { margin: 0; color: #bbb3ab; font-size: 15px; }
.faq-list details strong { color: #f6efe8; }

.final-cta { position: relative; overflow: hidden; background: var(--sand); min-height: 560px; display: flex; align-items: center; }
.final-mark { position: absolute; right: -180px; top: 50%; transform: translateY(-50%); width: 650px; opacity: .055; pointer-events: none; }
.final-cta-inner { position: relative; z-index: 2; max-width: 860px; margin-left: calc((100% - min(var(--container), calc(100% - 48px))) / 2); margin-right: auto; width: min(860px, calc(100% - 48px)); }
.final-cta h2 { font-size: clamp(58px, 8vw, 110px); margin: 0 0 22px; color: var(--wine); }
.final-cta p { font-size: 19px; color: #504439; max-width: 680px; }
.final-cta .btn { margin-top: 18px; }
.final-cta small { display: block; margin-top: 20px; color: #68594c; }

.site-footer { background: #11110f; color: #fff; padding: 70px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 52px; }
.footer-brand img { width: 92px; height: 92px; object-fit: contain; margin-bottom: 18px; }
.footer-brand p { max-width: 320px; color: #aaa39b; font-size: 13px; }
.footer-label { display: block; color: #c8aa90; text-transform: uppercase; letter-spacing: .14em; font-size: 9px; margin-bottom: 18px; }
.footer-grid a, .footer-grid p, .footer-button { display: block; color: #d5d0ca; font-size: 12px; margin: 0 0 10px; text-decoration: none; }
.footer-grid a:hover { color: white; }
.footer-button { border: 0; padding: 0; background: transparent; cursor: pointer; }
.footer-bottom { display: flex; justify-content: space-between; gap: 32px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 28px; margin-top: 42px; color: #7f7a75; font-size: 10px; }

.mobile-sticky { display: none; }
.lightbox { border: 0; padding: 0; background: rgba(12, 12, 10, .96); width: 100vw; height: 100dvh; max-width: none; max-height: none; }
.lightbox::backdrop { background: rgba(0,0,0,.8); }
.lightbox img { width: 100%; height: 100%; object-fit: contain; padding: 50px; }
.lightbox-close { position: fixed; right: 24px; top: 20px; z-index: 2; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.08); color: white; width: 46px; height: 46px; border-radius: 50%; cursor: pointer; font-size: 26px; }

.cookie-banner { position: fixed; z-index: 100; left: 20px; right: 20px; bottom: 20px; max-width: 900px; margin: auto; background: #fff; border: 1px solid var(--line); box-shadow: 0 20px 80px rgba(0,0,0,.18); border-radius: 18px; padding: 20px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.cookie-banner[hidden] { display: none; }
.cookie-banner strong { font-size: 14px; }
.cookie-banner p { margin: 4px 0 0; font-size: 11px; }
.cookie-actions { display: flex; gap: 8px; }
.cookie-actions button { border-radius: 999px; min-height: 42px; padding: 0 16px; border: 1px solid var(--line); font-weight: 700; font-size: 11px; cursor: pointer; }
.cookie-primary { background: var(--ink); color: white; }
.cookie-secondary { background: white; color: var(--ink); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

@media (max-width: 1020px) {
  .section-pad { padding: 90px 0; }
  .hero { min-height: auto; }
  .hero-grid { gap: 36px; grid-template-columns: 1fr .8fr; }
  .hero h1 { font-size: clamp(54px, 7.8vw, 82px); }
  .hero-stamp { width: 108px; height: 108px; left: -18px; bottom: 110px; }
  .hero-stamp span { font-size: 34px; }
  .intro-grid, .results-head, .clinic-head { grid-template-columns: 160px 1fr; gap: 50px; }
  .treatments-head { grid-template-columns: 190px 1fr; }
  .treatment-list { grid-template-columns: repeat(2, 1fr); }
  .process-grid, .faq-grid { gap: 54px; }
  .authority-copy { padding: 76px 52px; }
  .clinic-gallery { min-height: 520px; }
  .clinic-info { grid-template-columns: 1fr 1fr; }
  .clinic-info .btn { grid-column: 1 / -1; justify-self: start; }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 767px) {
  :root { --radius-xl: 24px; --radius-lg: 18px; }
  body { padding-bottom: calc(82px + env(safe-area-inset-bottom)); }
  .container { width: min(100% - 30px, var(--container)); }
  .section-pad { padding: 72px 0; }
  .site-header { padding: 13px 0; }
  .header-inner { grid-template-columns: auto 1fr; gap: 12px; }
  .brand { width: 50px; height: 50px; }
  .brand img { width: 58px; height: 58px; }
  .header-location { justify-self: end; font-size: 10px; white-space: nowrap; }
  .header-inner > .btn { display: none; }
  h2 { font-size: clamp(42px, 12vw, 58px); }
  .hero { padding-top: 104px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 30px; }
  .hero-copy { max-width: none; padding: 24px 0 0; }
  .hero h1 { font-size: clamp(54px, 15vw, 78px); margin-bottom: 22px; }
  .hero-lead { font-size: 17px; margin-bottom: 26px; }
  .hero-actions { gap: 16px; margin-bottom: 28px; }
  .hero-actions .btn { width: 100%; }
  .text-link { margin-inline: auto; }
  .hero-notes { gap: 10px 16px; }
  .hero-visual { padding: 0; width: 100%; }
  .hero-stamp { left: 2px; bottom: 66px; width: 94px; height: 94px; }
  .hero-caption { width: 100%; max-width: 470px; }
  .hero-trust { margin-top: 34px; flex-direction: column; align-items: flex-start; gap: 12px; padding: 20px 0 26px; }
  .hero-trust a { white-space: normal; }

  .intro-grid, .results-head, .clinic-head { grid-template-columns: 1fr; gap: 28px; }
  .section-kicker { margin-bottom: 4px; }
  .intro-copy .lead { font-size: 21px; }
  .intro-copy .btn { width: 100%; }

  .treatments { padding: 70px 0; }
  .treatments-head { grid-template-columns: 1fr; gap: 8px; }
  .treatments-head h2 { font-size: 44px; }
  .treatment-list { grid-template-columns: 1fr 1fr; }
  .treatment-list div { min-height: 58px; padding: 12px 16px; gap: 10px; font-size: 14px; }

  .results-head { margin-bottom: 44px; }
  .featured-case { grid-template-columns: 1fr; gap: 20px; padding-top: 28px; }
  .case-copy { padding-bottom: 4px; }
  .case-copy h3 { font-size: 34px; }
  .before-after-grid { gap: 7px; }
  .result-image img { height: 360px; }
  .result-image.compact img { height: 250px; }
  .result-image.wide img { height: auto; aspect-ratio: 1; }
  .result-image figcaption { left: 10px; bottom: 10px; padding: 6px 10px; font-size: 13px; }
  .result-image .split-caption span { margin: 0 0 10px 10px; padding: 6px 10px; font-size: 13px; }
  .cases-grid { margin-top: 48px; grid-template-columns: 1fr; gap: 46px; }
  .case-card, .case-card.solo { display: flex; flex-direction: column; align-items: stretch; gap: 0; grid-column: auto; padding-top: 28px; }
  .case-card-copy { order: -1; padding: 0 4px 20px; }
  .results-cta { margin-top: 50px; flex-direction: column; align-items: stretch; }
  .results-cta p { font-size: 24px; }
  .results-cta .btn { width: 100%; }

  .process-grid, .faq-grid { grid-template-columns: 1fr; gap: 42px; }
  .process-intro { position: static; }
  .process-steps li { grid-template-columns: 54px 1fr; padding: 28px 0; }
  .process-steps h3 { font-size: 28px; }

  .authority { grid-template-columns: 1fr; min-height: auto; }
  .authority-image { min-height: 420px; max-height: 520px; }
  .authority-copy { padding: 64px 24px 72px; }
  .check-list { grid-template-columns: 1fr; }
  .authority-copy .btn { width: 100%; }

  .testimonials-head { display: block; }
  .testimonials-head .google-link { display: inline-block; margin-top: 24px; }
  .testimonial-layout { grid-template-columns: 1fr; }
  .testimonial-featured { min-height: auto; }
  .testimonial-layout blockquote { padding: 26px; }
  .testimonial-featured p { font-size: 27px; }

  .clinic-gallery { grid-template-columns: 1fr 1fr; min-height: 0; gap: 8px; }
  .clinic-gallery .clinic-main { grid-column: 1 / -1; min-height: 420px; }
  .clinic-gallery figure:not(.clinic-main) { min-height: 300px; }
  .clinic-info { grid-template-columns: 1fr; gap: 18px; }
  .clinic-info .btn { grid-column: auto; width: 100%; }

  .faq-list summary { font-size: 16px; padding: 22px 0; }
  .faq-list details div { padding-right: 0; }

  .final-cta { min-height: 520px; }
  .final-mark { width: 420px; right: -180px; }
  .final-cta-inner { width: calc(100% - 30px); margin-inline: auto; }
  .final-cta h2 { font-size: 68px; }
  .final-cta p { font-size: 17px; }
  .final-cta .btn { width: 100%; min-height: 64px; }

  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 10px; }

  .mobile-sticky { display: grid; grid-template-columns: 28px 1fr auto; align-items: center; gap: 10px; position: fixed; z-index: 90; left: 10px; right: 10px; bottom: calc(10px + env(safe-area-inset-bottom)); min-height: 62px; padding: 0 18px; background: var(--wine); color: #fff; border-radius: 18px; box-shadow: 0 16px 44px rgba(154, 42, 78, .34); text-decoration: none; font-weight: 700; font-size: 13px; }
  .wa-icon { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: #fff; color: var(--wine); font-size: 11px; }
  .cookie-banner { bottom: calc(84px + env(safe-area-inset-bottom)); left: 10px; right: 10px; grid-template-columns: 1fr; gap: 14px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .lightbox img { padding: 24px 8px 8px; }
}

@media (max-width: 390px) {
  .container { width: calc(100% - 24px); }
  .hero h1 { font-size: 50px; }
  .header-location { font-size: 9px; }
  .treatment-list { grid-template-columns: 1fr; }
  .before-after-grid { grid-template-columns: 1fr 1fr; }
  .result-image img { height: 300px; }
  .clinic-gallery { grid-template-columns: 1fr; }
  .clinic-gallery .clinic-main { grid-column: auto; }
  .clinic-gallery figure, .clinic-gallery .clinic-main { min-height: 340px; }
  .mobile-sticky { font-size: 12px; padding-inline: 14px; }
  .cookie-actions { grid-template-columns: 1fr; }
}

/* 2026-08-10 — refinamento solicitado: logotipo oficial */
.brand {
  width: 112px;
  height: 72px;
  overflow: visible;
  place-items: center start;
}
.brand img {
  width: 108px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
}
.hero-stamp {
  width: 118px;
  height: 118px;
  padding: 12px;
  border-radius: 28px;
  background: rgba(244, 238, 231, .94);
  border: 1px solid rgba(30, 27, 24, .10);
  box-shadow: 0 18px 36px rgba(0,0,0,.16);
  display: grid;
  place-items: center;
}
.hero-stamp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.final-mark img { width: 100%; height: auto; object-fit: contain; }
.footer-brand img {
  width: 128px;
  height: 126px;
  object-fit: contain;
  object-position: left center;
}
.legal-logo { width: 150px; height: auto; object-fit: contain; }

@media (max-width: 767px) {
  .brand { width: 86px; height: 58px; }
  .brand img { width: 84px; height: 56px; }
  .hero-stamp { width: 102px; height: 102px; padding: 10px; left: 4px; bottom: 66px; border-radius: 24px; }
}

/* 2026-08-11 — ajuste mobile solicitado: logo maior e CTA flutuante após o CTA principal sair da tela */
@media (max-width: 767px) {
  .brand {
    width: 172px;
    height: 116px;
  }
  .brand img {
    width: 168px;
    height: 112px;
  }
  .hero {
    padding-top: 150px;
  }
  .mobile-sticky {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }
  .mobile-sticky.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* 2026-08-20 — vídeo Wistia no hero, no lugar do retrato vertical */
.hero-grid { grid-template-columns: 1fr .95fr; }
.hero-visual { align-self: center; padding-top: 0; }
.hero-video {
  position: relative;
  width: min(100%, 560px);
  margin-left: auto;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #e8d7c6;
}
.hero-video wistia-player { display: block; width: 100%; }
.hero-caption { width: min(100%, 560px); }
.hero-stamp { top: -22px; left: -22px; bottom: auto; }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr .9fr; }
  .hero-stamp { top: -18px; left: -18px; bottom: auto; }
}

@media (max-width: 767px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-video { width: 100%; max-width: 520px; margin-inline: auto; border-radius: 22px; }
  .hero-caption { width: 100%; max-width: 520px; margin-inline: auto; }
  .hero-stamp { top: -14px; left: -6px; bottom: auto; width: 88px; height: 88px; }
}

/* 2026-08-20 — formulário de captação (FormSubmit) */
.lead-form { background: var(--ivory); }
.form-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.form-intro h2 { font-size: clamp(40px, 4.6vw, 62px); margin-bottom: 22px; }
.form-intro > p:not(.eyebrow) { font-size: 17px; max-width: 460px; }
.form-notes { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 12px; }
.form-notes li { position: relative; padding-left: 22px; font-size: 14px; color: var(--muted); }
.form-notes li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--sand-dark); }

.lead-form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); display: grid; gap: 18px; align-content: start; }
.field { display: grid; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #4c443d; }
.field label small { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--muted); }
.field input, .field select, .field textarea { width: 100%; font: inherit; font-size: 15px; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 13px 15px; transition: border-color .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 104px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--wine); box-shadow: 0 0 0 3px rgba(154, 42, 78, .12); }
.field input::placeholder, .field textarea::placeholder { color: #a79c92; }

.form-consent { display: flex; gap: 12px; align-items: flex-start; font-size: 12px; color: var(--muted); line-height: 1.5; cursor: pointer; }
.form-consent input { width: 18px; height: 18px; margin: 1px 0 0; flex: none; accent-color: var(--wine); }
.form-consent a { font-weight: 700; color: var(--wine); }
.form-card-footer { display: grid; gap: 12px; margin-top: 4px; }
.form-card-footer .btn { width: 100%; min-height: 58px; }
.form-card-footer small { font-size: 11px; color: #7d7269; text-align: center; }
.honeypot { display: none; }

@media (max-width: 1020px) {
  .form-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 767px) {
  .lead-form-card { padding: 24px 20px; border-radius: 20px; }
  .field-row { grid-template-columns: 1fr; }
  .field input, .field select, .field textarea { font-size: 16px; }
}

/* ==========================================================================
   LP 4 — RESKIN Estrias Zero (curso)
   Ajustes específicos desta página. A base acima é a mesma das LPs 1, 2 e 3.
   Cores iguais às das outras LPs (bordô). A única exceção é o botão verde
   "Quero garantir minha vaga", na seção de investimento.
   ========================================================================== */

:root {
  --green: #15853f;
  --green-dark: #0f6b32;
}

/* --- Botão verde: usado só no CTA do investimento. --- */
.btn-green { background: var(--green); color: #fff; box-shadow: 0 12px 24px rgba(21, 133, 63, .24); }
.btn-green:hover { background: var(--green-dark); box-shadow: 0 16px 34px rgba(21, 133, 63, .32); }

/* Títulos longos: reduz o corpo no desktop, como na LP 3. */
@media (min-width: 768px) {
  .hero h1 { font-size: clamp(56px, 6.2vw, 96px); }
  .intro-copy h2 { font-size: clamp(40px, 4.6vw, 64px); }
  .clinic-head h2 { font-size: clamp(40px, 4.6vw, 64px); }
  .testimonials-head h2 { font-size: clamp(40px, 4.6vw, 64px); }
}
.field-row { align-items: end; }
.check-list { grid-template-columns: 1fr; gap: 12px; }
picture { display: block; }
.authority-image picture { height: 100%; }

/* --- Vídeo do hero: player Wistia (y7pt8ikq6p), igual às outras LPs. As regras de
       .hero-video, .hero-caption e .hero-stamp já vêm do bloco base. --- */
.hero-sound {
  position: absolute; left: 14px; bottom: 14px; z-index: 3;
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 42px; padding: 0 18px; border: 0; border-radius: 999px;
  background: var(--wine); color: #fff;
  font-family: var(--sans); font-weight: 700; font-size: 13px; letter-spacing: -.01em;
  cursor: pointer; box-shadow: 0 10px 26px rgba(154, 42, 78, .38);
  transition: transform .2s ease, background .2s ease;
}
.hero-sound[hidden] { display: none; }
.hero-sound:hover { background: var(--wine-dark); transform: translateY(-2px); }
.hero-sound:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.hero-sound-icon { font-size: 15px; line-height: 1; }

/* --- 01 Para quem é --- */
.quote-list { list-style: none; margin: 0 0 34px; padding: 0; display: grid; gap: 6px; }
.quote-list li { font-family: var(--serif); font-style: italic; font-size: clamp(24px, 2.6vw, 34px); line-height: 1.25; color: var(--ink); letter-spacing: -.02em; }
.recommended-for {
  margin: 30px 0 0; padding: 24px 26px;
  border-left: 3px solid var(--wine); background: var(--ivory);
  border-radius: 0 var(--radius-md) var(--radius-md) 0; max-width: 680px;
}
.recommended-for span { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .16em; color: var(--sand-dark); font-weight: 700; margin-bottom: 8px; }
.recommended-for strong { font-family: var(--serif); font-weight: 400; font-size: 22px; line-height: 1.3; }
.location-line { margin: 24px 0 0; font-weight: 700; color: var(--ink); font-size: 15px; }

/* --- 02 Assistir é diferente de fazer: vídeo vertical da Márcia ao lado do texto. --- */
.procedure { background: var(--paper); padding-top: 0; }
.method-video { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: center; }
.method-video-player { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: #e8d7c6; }
.method-video-player video { display: block; width: 100%; height: auto; aspect-ratio: 480 / 864; object-fit: cover; }
.method-video .intro-copy h2 { margin-bottom: 26px; }
.practice-quote { margin-top: 48px; padding-top: 30px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 20px 48px; }
.practice-quote p { margin: 0; font-family: var(--serif); font-size: 24px; line-height: 1.35; color: var(--ink); }
.practice-quote p:last-child { font-family: var(--sans); font-size: 16px; color: var(--muted); align-self: center; }
.practice-quote strong { color: var(--wine); font-weight: 400; font-style: italic; }

/* --- Como funciona: galeria da prática (vídeo + fotos de alunas). --- */
.process-steps li { padding: 34px 0; }
.practice-gallery { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.practice-gallery figure { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; background: #e8d7c6; height: 520px; }
.practice-gallery img, .practice-gallery video { display: block; width: 100%; height: 100%; object-fit: cover; }
.practice-gallery figure:nth-child(2) img { object-position: 50% 40%; }
.practice-gallery figcaption, .students-gallery figcaption {
  position: absolute; left: 14px; bottom: 14px; padding: 7px 13px; border-radius: 999px;
  background: rgba(251,248,243,.92); backdrop-filter: blur(8px);
  font-family: var(--serif); font-style: italic; font-size: 15px; color: var(--ink);
}

/* --- 03 Medo de atender --- */
.objection { background: var(--ivory); }
.objection .recommended-for { background: var(--paper); }

/* --- O que você vai aprender --- */
.care { background: var(--paper); }
.care-head { max-width: 820px; margin-bottom: 44px; }
.care-head h2 { margin-bottom: 0; }
.learn-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.learn-list div { min-height: 70px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 16px 22px; display: flex; align-items: center; gap: 14px; font-size: 16px; }
.learn-list span { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--wine); color: #fff; font-size: 13px; font-weight: 700; }
.bonus { margin-top: 56px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 40px; align-items: center; background: var(--ivory); border-radius: var(--radius-xl); padding: 40px; }
.bonus-head .eyebrow { margin-bottom: 12px; }
.bonus-head h3 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(30px, 3vw, 42px); line-height: 1.1; letter-spacing: -.03em; color: var(--ink); }
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.bonus-grid article { background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--wine); border-radius: var(--radius-md); padding: 22px 22px 24px; }
.bonus-grid span { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .16em; color: var(--sand-dark); font-weight: 700; margin-bottom: 8px; }
.bonus-grid strong { font-family: var(--serif); font-weight: 400; font-size: 22px; line-height: 1.25; }

/* --- Resultados: caso 01 em três etapas; casos em pé em duas colunas; casos deitados em linha inteira. --- */
.featured-case { grid-template-columns: .5fr 1.5fr; }
.before-after-grid.is-three { grid-template-columns: repeat(3, 1fr); }
.before-after-grid.is-three .result-image img { height: auto; aspect-ratio: 3 / 4; }
.cases-grid .result-image.compact img { height: 380px; }
.case-card.is-wide { grid-column: 1 / -1; display: grid; grid-template-columns: 1.4fr .6fr; gap: 28px; align-items: center; }
.case-card.is-wide .result-image.compact img { height: auto; aspect-ratio: 16 / 9; }
.case-card.is-wide .case-card-copy { padding-top: 0; }

/* --- Depoimentos: alunas formadas + fotos de 2021 com legenda. --- */
.testimonials-head { margin-bottom: 44px; }
.students-gallery { display: grid; grid-template-columns: 1.3fr 1fr 1fr; grid-template-rows: 310px 310px; gap: 14px; }
.students-gallery figure { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; background: #e8d7c6; }
.students-gallery figure.is-tall { grid-row: 1 / 3; }
.students-gallery img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.since-2021 { margin-top: 56px; padding-top: 44px; border-top: 1px solid var(--line); display: grid; grid-template-columns: .7fr 1.3fr; gap: 40px; align-items: center; }
.since-2021-head h3 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(32px, 3.4vw, 48px); line-height: 1.05; letter-spacing: -.035em; color: var(--ink); }
.since-2021-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.since-2021-grid figure { position: relative; margin: 0; border-radius: var(--radius-lg); overflow: hidden; height: 400px; background: #e8d7c6; }
.since-2021-grid img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; }
.since-2021-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 14px 14px;
  background: linear-gradient(to top, rgba(17,17,15,.82), rgba(17,17,15,0));
  color: #fff; font-family: var(--serif); font-style: italic; font-size: 15px; line-height: 1.25;
}

/* --- Sua aula prática: mapa + endereço. --- */
.clinic-map { margin-top: 30px; padding-top: 30px; border-top: 1px solid rgba(30,27,24,.18); display: grid; grid-template-columns: 1.4fr .6fr; gap: 34px; align-items: center; }
.clinic-map-frame { border-radius: var(--radius-lg); overflow: hidden; background: #d9c6b3; height: 360px; }
.clinic-map-frame iframe { display: block; width: 100%; height: 100%; border: 0; }
.clinic-address { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.clinic-address span { font-size: 10px; text-transform: uppercase; letter-spacing: .15em; color: var(--sand-dark); font-weight: 700; }
.clinic-address strong { font-family: var(--serif); font-weight: 400; font-size: 24px; line-height: 1.35; }
.clinic-address .google-link { margin-top: 6px; }

/* --- Investimento --- */
.pricing { background: var(--ivory); }
.pricing-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }
.pricing-intro h2 { margin-bottom: 20px; }
.pricing-intro > p:last-child { font-size: 20px; color: #3f3933; }
.pricing-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-xl); box-shadow: var(--shadow); padding: 40px; display: grid; gap: 24px; }
.pricing-tag { justify-self: start; padding: 8px 14px; border-radius: 999px; background: var(--ivory); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sand-dark); }
.pricing-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.pricing-list li { position: relative; padding-left: 30px; font-size: 15px; color: var(--ink); }
.pricing-list li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; background: var(--wine); color: #fff; font-size: 11px; font-weight: 700; }
.pricing-price { border-top: 1px solid var(--line); padding-top: 22px; display: flex; align-items: baseline; gap: 12px; }
.pricing-price small { font-size: 18px; color: var(--muted); }
.pricing-price strong { font-family: var(--serif); font-weight: 400; font-size: clamp(56px, 6vw, 80px); line-height: 1; letter-spacing: -.04em; color: var(--wine); }
.pricing-card .btn { width: 100%; min-height: 62px; font-size: 15px; }
.pricing-note { margin: 0; font-size: 13px; text-align: center; }

/* --- FAQ com CTA na coluna da esquerda, como na LP 3. --- */
.faq-intro { display: flex; flex-direction: column; align-items: flex-start; }
.faq-intro .btn { margin-top: 30px; }

@media (max-width: 1020px) {
  .method-video { grid-template-columns: 240px 1fr; gap: 34px; }
  .practice-gallery figure { height: 420px; }
  .bonus { grid-template-columns: 1fr; gap: 24px; }
  .students-gallery { grid-template-rows: 260px 260px; }
  .since-2021 { grid-template-columns: 1fr; gap: 24px; }
  .since-2021-grid figure { height: 360px; }
  .clinic-map { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; gap: 36px; }
  .case-card.is-wide { grid-template-columns: 1fr; gap: 0; }
  .case-card.is-wide .case-card-copy { padding-top: 22px; }
}

@media (max-width: 767px) {
  .hero-sound { left: 10px; bottom: 10px; min-height: 38px; padding: 0 14px; font-size: 12px; }
  .quote-list { margin-bottom: 26px; }
  .recommended-for { padding: 20px; margin-top: 26px; }
  .recommended-for strong { font-size: 19px; }
  .intro .btn { width: 100%; }

  .method-video { grid-template-columns: 1fr; gap: 28px; }
  .method-video-player { width: min(100%, 300px); margin-inline: auto; order: 2; }
  .practice-quote { grid-template-columns: 1fr; margin-top: 36px; }
  .practice-quote p { font-size: 21px; }

  /* Galerias com rolagem lateral dentro da própria faixa — a página não rola para o lado. */
  .practice-gallery, .since-2021-grid {
    display: grid; grid-auto-flow: column; grid-template-columns: none; grid-auto-columns: 74%;
    overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; -webkit-overflow-scrolling: touch;
  }
  .practice-gallery { margin-top: 44px; gap: 10px; }
  .practice-gallery figure, .since-2021-grid figure { scroll-snap-align: start; height: 440px; }

  .learn-list { grid-template-columns: 1fr; }
  .learn-list div { min-height: 58px; padding: 12px 16px; font-size: 15px; }
  .bonus { padding: 26px 20px; margin-top: 40px; }
  .bonus-grid { grid-template-columns: 1fr; }
  .bonus-grid strong { font-size: 20px; }

  .featured-case { grid-template-columns: 1fr; }
  .featured-case .before-after-grid.is-three { gap: 6px; }
  .before-after-grid.is-three .result-image figcaption { left: 6px; bottom: 6px; padding: 4px 8px; font-size: 11px; }
  .cases-grid .result-image.compact img { height: auto; aspect-ratio: 3 / 4; }
  .case-card.is-wide .case-card-images { grid-template-columns: 1fr; }
  .case-card.is-wide .result-image.compact img { aspect-ratio: 16 / 9; }

  .students-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 380px 220px 220px; gap: 8px; }
  .students-gallery figure.is-tall { grid-row: auto; grid-column: 1 / -1; }
  .students-gallery figcaption { left: 8px; right: 8px; bottom: 8px; font-size: 12px; padding: 5px 10px; }
  .since-2021 { margin-top: 40px; padding-top: 34px; }

  .clinic-map-frame { height: 300px; }
  .clinic-address strong { font-size: 21px; }

  .pricing-card { padding: 26px 20px; }
  .pricing-list { grid-template-columns: 1fr; }
  .faq-intro .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-sound:hover { transform: none; }
}

/* Ícone de localização (SVG) no lugar do emoji 📍. */
.pin-icon { display: inline-block; width: 1.05em; height: 1.05em; margin-right: .35em; vertical-align: -.15em; color: var(--wine); flex: none; }
.eyebrow .pin-icon { width: 1.3em; height: 1.3em; vertical-align: -.3em; }

/* Nesta LP o FAQ (fundo escuro) fica logo acima do rodapé, que também é escuro. Sem uma
   separação os dois viram um bloco só, então o rodapé ganha um fio bordô no topo. */
.site-footer { border-top: 3px solid var(--wine); padding-top: 64px; }
