:root {
  --bg-page: #f5efe7;
  --bg-soft: #faf5ef;
  --bg-white: #ffffff;
  --surface: rgba(255, 255, 255, 0.96);
  --surface-dark: rgba(255, 255, 255, 0.04);
  --ink: #2e231b;
  --ink-soft: #6d5c4c;
  --ink-muted: #8c7a67;
  --line-soft: rgba(96, 72, 44, 0.12);
  --line-strong: rgba(188, 151, 102, 0.28);
  --gold-1: #f2ddba;
  --gold-2: #ddb983;
  --gold-3: #c89356;
  --gold-4: #8d6848;
  --dark-1: #080606;
  --dark-2: #120d0d;
  --dark-3: #1a1313;
  --red-soft: #c1444b;
  --shadow-soft: 0 24px 54px rgba(56, 39, 22, 0.08);
  --shadow-card: 0 18px 42px rgba(56, 39, 22, 0.07);
  --shadow-dark: 0 22px 48px rgba(0, 0, 0, 0.24);
  --font-body: "Montserrat", sans-serif;
  --font-display: "Playfair Display", serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(237, 223, 201, 0.55), transparent 28%),
    linear-gradient(180deg, #fbf8f3 0%, var(--bg-page) 100%);
}

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

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

button,
a {
  font: inherit;
}

.top-bar-premium {
  width: 100%;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 20;
  background: linear-gradient(90deg, #ecdac0 0%, #e5cfb1 100%);
  border-bottom: 1px solid rgba(96, 72, 44, 0.08);
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  color: #5b4632;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: marqueeMove 22s linear infinite;
}

.marina-page {
  position: relative;
  z-index: 1;
}

.container {
  width: min(100% - 48px, 1180px);
  margin: 0 auto;
}

.section-stack {
  padding: clamp(88px, 9vw, 124px) 0;
  display: grid;
  gap: clamp(36px, 4vw, 52px);
}

.section-heading {
  display: grid;
  gap: 16px;
}

.section-heading-centered {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

.section-eyebrow,
.section-kicker {
  color: var(--gold-3);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-heading h2,
.philosophy-card h2,
.about-copy h2,
.final-cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4.2vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.section-heading p,
.hero-subtitle,
.procedures-lead,
.pain-lead,
.procedure-card p,
.philosophy-body p,
.about-copy p,
.testimonials-heading p,
.final-cta-card p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.78;
}

.section-light {
  background: var(--bg-soft);
}

.section-white {
  background: var(--bg-white);
}

.section-dark {
  background:
    radial-gradient(circle at top center, rgba(176, 56, 63, 0.16), transparent 28%),
    linear-gradient(180deg, var(--dark-1) 0%, var(--dark-2) 100%);
  color: #f7f1ea;
}

.hero-section {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-page);
  background-image: url("../img/principalpc.webp");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: calc(100% + 500px) top;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: clamp(44px, 7vw, 72px);
  background: linear-gradient(180deg, rgba(8, 6, 6, 0), rgba(8, 6, 6, 0.38));
  pointer-events: none;
}

.hero-grid {
  min-height: clamp(620px, 47vw, 760px);
  display: grid;
  grid-template-columns: minmax(280px, 400px) 1fr;
  align-items: center;
  padding: clamp(78px, 8vw, 110px) 0 clamp(84px, 8vw, 112px);
}

.hero-copy {
  width: 100%;
  max-width: 388px;
  display: grid;
  gap: 14px;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(1.72rem, 2.56vw, 2.92rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
  display: grid;
  gap: 0.04em;
  max-width: 7.4ch;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-subtitle {
  max-width: 34ch;
  font-size: 0.85rem;
  line-height: 1.56;
}

.hero-actions,
.testimonial-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 8px;
}

.btn-gold-premium,
.btn-gold-inline,
.btn-outline-premium {
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background-position 0.3s ease;
}

.btn-gold-premium,
.btn-gold-inline {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold-1) 0%, var(--gold-2) 52%, var(--gold-3) 100%);
  background-size: 180% 180%;
  background-position: 0% 50%;
  border: 1px solid rgba(200, 147, 86, 0.34);
  color: #39291d;
  box-shadow: 0 16px 34px rgba(132, 94, 48, 0.12);
}

.btn-gold-premium::before,
.btn-gold-inline::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.btn-outline-premium {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f7f1ea;
}

.btn-gold-premium:hover,
.btn-gold-inline:hover,
.btn-outline-premium:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-gold-premium:hover,
.btn-gold-inline:hover {
  background-position: 100% 50%;
  box-shadow: 0 20px 40px rgba(132, 94, 48, 0.16);
}

.btn-outline-premium:hover {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.btn-gold-premium:active,
.btn-gold-inline:active,
.btn-outline-premium:active {
  transform: scale(0.985);
}

.floating-force {
  animation: none;
}

.hero-visual,
.hero-mobile-image {
  display: none;
}

.pain-section {
  margin-top: -1px;
}

.pain-stack {
  padding-top: clamp(72px, 8vw, 102px);
  padding-bottom: clamp(80px, 9vw, 112px);
}

.pain-heading {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

.pain-section .section-kicker,
.testimonials-section .section-kicker {
  color: rgba(245, 235, 224, 0.66);
}

.pain-title {
  max-width: none;
  display: grid;
  gap: 0.04em;
}

.pain-heading h2 {
  color: #fffaf4;
  font-size: clamp(2.3rem, 3.45vw, 3.55rem);
  line-height: 0.94;
}

.pain-title-line {
  display: block;
  white-space: nowrap;
}

.pain-title-gradient {
  background: linear-gradient(90deg, #fff4e7 0%, #ebc98d 34%, #fff2e4 68%, #987154 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 9s ease-in-out infinite;
}

.pain-lead {
  max-width: 58ch;
  color: rgba(247, 241, 234, 0.74);
  font-size: 0.96rem;
  line-height: 1.68;
}

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

.pain-card {
  min-height: 138px;
  padding: 28px 30px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: auto minmax(56px, 70px) 1fr;
  align-items: center;
  gap: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
}

.pain-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(193, 68, 75, 0.14);
  border: 1px solid rgba(193, 68, 75, 0.42);
  color: #ff6b72;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1;
}

.pain-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(193, 68, 75, 0.85), rgba(233, 201, 145, 0.2));
}

.pain-card p {
  color: rgba(247, 241, 234, 0.92);
  font-size: 1rem;
  line-height: 1.58;
}

.procedures-stack {
  padding-top: clamp(82px, 8vw, 108px);
  padding-bottom: clamp(92px, 9vw, 116px);
  gap: clamp(34px, 4vw, 46px);
}

.procedures-heading h2 {
  max-width: 740px;
  font-size: clamp(1.94rem, 2.56vw, 2.78rem);
  line-height: 0.98;
  text-wrap: balance;
}

.procedures-lead {
  max-width: 58ch;
  font-size: 0.9rem;
  line-height: 1.62;
}

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

.procedure-card {
  min-height: 210px;
  padding: 18px 18px 22px;
  border-radius: 30px;
  display: grid;
  align-content: start;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.procedure-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 46px rgba(56, 39, 22, 0.1);
}

.procedure-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.procedure-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(243, 226, 199, 0.55), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(200, 147, 86, 0.18);
}

.procedure-icon svg {
  width: 19px;
  height: 19px;
  stroke: #c08a4f;
  stroke-width: 1.65;
  fill: none;
}

.procedure-index {
  color: var(--gold-3);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.procedure-card h3 {
  font-family: var(--font-display);
  font-size: 0.96rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
  max-width: 10ch;
}

.procedure-card p {
  font-size: 0.85rem;
  line-height: 1.56;
}

.results-stack {
  padding-top: clamp(76px, 7vw, 94px);
  padding-bottom: clamp(84px, 8vw, 104px);
  gap: clamp(34px, 4vw, 46px);
}

.results-heading h2 {
  max-width: 760px;
  font-size: clamp(1.98rem, 2.62vw, 2.9rem);
  line-height: 0.96;
  text-wrap: balance;
}

.results-carousel {
  --results-gap: 22px;
  overflow: hidden;
  width: min(100% + 56px, 1280px);
  margin-inline: auto;
  padding: 8px 28px 12px;
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.results-track {
  display: flex;
  gap: var(--results-gap);
  width: max-content;
  animation: resultsMarquee 34s linear infinite;
}

.results-carousel:hover .results-track {
  animation-play-state: paused;
}

.result-slide {
  flex: 0 0 clamp(248px, 24vw, 332px);
  aspect-ratio: 0.68 / 1;
  overflow: hidden;
  border-radius: 32px;
  background: var(--surface);
  border: 1px solid rgba(96, 72, 44, 0.1);
  box-shadow: var(--shadow-card);
}

.result-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-section {
  padding: 0 0 clamp(88px, 9vw, 120px);
}

.philosophy-card {
  padding: clamp(30px, 4vw, 40px);
  border-radius: 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 3vw, 48px);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}

.philosophy-heading {
  display: grid;
  gap: 14px;
}

.philosophy-heading::before {
  content: "";
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(200, 147, 86, 0.88), rgba(200, 147, 86, 0.14));
}

.philosophy-heading h2 {
  max-width: 520px;
  font-size: clamp(1.88rem, 2.24vw, 2.48rem);
  line-height: 0.98;
  text-wrap: balance;
}

.philosophy-body {
  display: grid;
  gap: 16px;
  align-content: center;
}

.philosophy-body p {
  max-width: 42ch;
  font-size: 0.95rem;
  line-height: 1.72;
}

.about-section {
  padding: clamp(112px, 11vw, 154px) 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
  gap: clamp(56px, 6vw, 118px);
  align-items: center;
}

.about-image-frame {
  min-height: clamp(450px, 44vw, 600px);
  border-radius: 40px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 240, 231, 0.88), rgba(239, 228, 213, 0.96)),
    linear-gradient(135deg, #f8efe3, #eed9bb);
  border: 1px solid rgba(200, 147, 86, 0.16);
  box-shadow: var(--shadow-soft);
}

.about-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-copy {
  display: grid;
  gap: 24px;
  align-content: center;
}

.about-copy h2 {
  max-width: 620px;
  font-size: clamp(1.92rem, 2.34vw, 2.58rem);
  line-height: 0.98;
  text-wrap: balance;
}

.about-copy p {
  max-width: 42ch;
  font-size: 0.98rem;
  line-height: 1.72;
}

.about-copy .btn-gold-inline {
  min-height: 48px;
  padding: 0 22px;
  font-size: 0.74rem;
  width: auto;
  justify-self: start;
}

.testimonials-stack {
  gap: 20px;
}

.testimonials-heading {
  max-width: 980px;
}

.testimonials-heading h2 {
  max-width: 780px;
  color: #fffaf4;
  font-size: clamp(1.98rem, 2.48vw, 2.72rem);
  line-height: 0.98;
  text-wrap: balance;
}

.testimonials-heading p {
  max-width: 56ch;
  color: rgba(247, 241, 234, 0.72);
  font-size: 0.95rem;
  line-height: 1.7;
}

.testimonials-stack .btn-gold-inline,
.testimonials-stack .btn-outline-premium {
  min-height: 48px;
  padding: 0 24px;
  font-size: 0.74rem;
}

.testimonial-buttons-centered {
  justify-content: center;
}

.video-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 32px;
  display: grid;
  gap: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-dark);
}

.video-embed-shell {
  width: min(100%, 820px);
  margin: 0 auto;
  padding: 14px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(121, 83, 48, 0.76), rgba(26, 19, 19, 0.96)),
    radial-gradient(circle at top center, rgba(227, 197, 145, 0.18), transparent 55%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 34px rgba(0, 0, 0, 0.18);
}

.video-embed-shell iframe {
  width: min(100%, 430px);
  aspect-ratio: 9 / 16;
  border: 0;
  display: block;
  margin: 0 auto;
  border-radius: 24px;
  background:
    #000 url("https://i.ytimg.com/vi/FY8RoiJ2_Zk/hqdefault.jpg")
    center / cover no-repeat;
}

.final-cta-section {
  padding: 0 0 84px;
  background: var(--bg-soft);
}

.final-cta-card {
  padding: clamp(34px, 4vw, 52px);
  border-radius: 34px;
  display: grid;
  gap: 18px;
  justify-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-soft);
}

.final-cta-card h2 {
  max-width: 760px;
  font-size: clamp(2rem, 2.5vw, 2.78rem);
  text-wrap: balance;
}

.final-cta-card p {
  max-width: 54ch;
}

.site-footer {
  padding: 0 0 30px;
}

.footer-row {
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink-muted);
  font-size: 0.88rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  z-index: 30;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(200, 147, 86, 0.22);
  color: #9b7548;
  box-shadow: 0 18px 32px rgba(56, 39, 22, 0.14);
}

.floating-whatsapp svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

body.is-enhanced [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}

body.is-enhanced [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marqueeMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes resultsMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-50% - (var(--results-gap) / 2)));
  }
}

@keyframes heroTitleBreath {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.024);
  }
}

@media (max-width: 1260px) {
  .hero-section {
    background-position: calc(100% + 430px) top;
  }

  .hero-grid {
    grid-template-columns: minmax(260px, 360px) 1fr;
  }

  .hero-copy {
    max-width: 344px;
  }

  .hero-copy h1 {
    font-size: clamp(1.64rem, 2.36vw, 2.6rem);
    max-width: 7.25ch;
  }

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

@media (max-width: 1080px) {
  .hero-section {
    background-position: calc(100% + 340px) top;
  }

  .hero-grid {
    min-height: clamp(560px, 48vw, 680px);
    grid-template-columns: minmax(240px, 320px) 1fr;
  }

  .hero-copy {
    max-width: 308px;
  }

  .hero-copy h1 {
    max-width: 7.1ch;
    font-size: clamp(1.5rem, 2.06vw, 2.22rem);
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .philosophy-card {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
    gap: 40px;
  }
}

@media (max-width: 920px) {
  .hero-section {
    background-image: none;
  }

  .hero-section::after {
    display: none;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 0 0 34px;
    gap: 28px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    gap: 18px;
    justify-items: center;
    text-align: center;
    margin-inline: auto;
    padding-inline: 18px;
  }

  .hero-copy h1 {
    display: block;
    width: 100%;
    max-width: 380px;
    font-size: clamp(1.88rem, 6vw, 2.62rem);
    line-height: 0.93;
    text-wrap: balance;
  }

  .hero-title-line {
    display: inline;
    white-space: normal;
  }

  .hero-subtitle {
    max-width: 31ch;
    font-size: 0.96rem;
  }

  .hero-visual {
    display: block;
    order: -1;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  .hero-mobile-image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5.1;
    position: relative;
    overflow: hidden;
    background-image: url("../img/principalmobile.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }

  .hero-mobile-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(245, 239, 231, 0) 56%, rgba(245, 239, 231, 0.14) 68%, rgba(245, 239, 231, 0.72) 86%, var(--bg-page) 100%),
      linear-gradient(90deg, rgba(245, 239, 231, 0.22) 0%, rgba(245, 239, 231, 0) 18%, rgba(245, 239, 231, 0) 82%, rgba(245, 239, 231, 0.18) 100%);
    pointer-events: none;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .section-heading h2,
  .philosophy-card h2,
  .about-copy h2,
  .final-cta-card h2 {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .pain-title {
    max-width: none;
  }

  .pain-heading h2 {
    font-size: clamp(2.2rem, 7.4vw, 3.8rem);
  }

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

  .procedures-heading h2 {
    max-width: none;
    font-size: clamp(2rem, 6.6vw, 3rem);
  }

  .philosophy-heading h2,
  .about-copy h2,
  .testimonials-heading h2 {
    font-size: clamp(2rem, 7vw, 3rem);
  }

  .philosophy-heading h2,
  .about-copy h2,
  .testimonials-heading h2,
  .final-cta-card h2 {
    max-width: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image-frame {
    min-height: 360px;
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section-stack {
    padding: 72px 0;
    gap: 32px;
  }

  .hero-grid {
    padding-bottom: 40px;
    gap: 18px;
  }

  .hero-copy h1 {
    width: 100%;
    max-width: 360px;
    font-size: clamp(1.54rem, 5.8vw, 1.88rem);
    line-height: 0.97;
    animation: heroTitleBreath 7s ease-in-out infinite;
    transform-origin: center top;
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 0;
    padding-inline: 18px;
  }

  .hero-actions,
  .testimonial-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-gold-premium,
  .btn-gold-inline,
  .btn-outline-premium {
    width: 100%;
  }

  .hero-actions .btn-gold-premium {
    width: min(100%, 300px);
    margin-inline: auto;
  }

  .pain-stack,
  .testimonials-stack {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .procedures-stack {
    padding-top: 72px;
    padding-bottom: 82px;
    gap: 28px;
  }

  .pain-card {
    min-height: 0;
    padding: 22px 20px;
    grid-template-columns: auto minmax(36px, 48px) 1fr;
    gap: 14px;
    border-radius: 26px;
  }

  .pain-mark {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }

  .pain-card p {
    font-size: 0.96rem;
  }

  .pain-heading h2 {
    font-size: clamp(1.78rem, 7.6vw, 2.28rem);
  }

  .procedure-grid {
    grid-template-columns: 1fr;
  }

  .procedure-card {
    min-height: 0;
    padding: 20px 18px 22px;
    border-radius: 26px;
  }

  .procedures-heading h2,
  .results-heading h2 {
    max-width: 13.6ch;
  }

  .procedures-heading h2 {
    font-size: clamp(1.84rem, 10.2vw, 2.68rem);
  }

  .results-heading h2,
  .philosophy-heading h2,
  .about-copy h2,
  .testimonials-heading h2,
  .final-cta-card h2 {
    max-width: none;
  }

  .results-carousel {
    --results-gap: 16px;
    width: 100%;
    padding: 8px 10px 12px;
    overflow-x: auto;
    overflow-y: hidden;
    margin-inline: 0;
    -webkit-overflow-scrolling: touch;
    mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
    scroll-snap-type: x mandatory;
  }

  .results-track {
    width: max-content;
    min-width: 100%;
    animation: none;
    padding-inline: 2px;
  }

  .result-slide {
    flex: 0 0 min(76vw, 250px);
    border-radius: 24px;
    scroll-snap-align: start;
  }

  .philosophy-section {
    padding-bottom: 72px;
  }

  .philosophy-card {
    padding: 26px 22px;
    border-radius: 26px;
  }

  .philosophy-heading h2 {
    font-size: clamp(1.86rem, 9.6vw, 2.7rem);
  }

  .philosophy-body p {
    max-width: 100%;
  }

  .about-section {
    padding: 76px 0 92px;
  }

  .about-image-frame {
    min-height: 420px;
    border-radius: 28px;
  }

  .about-copy {
    gap: 16px;
    max-width: 480px;
    margin-inline: auto;
  }

  .about-copy h2 {
    font-size: clamp(1.72rem, 8.8vw, 2.42rem);
    line-height: 1;
  }

  .about-copy p {
    font-size: 0.92rem;
    line-height: 1.76;
  }

  .about-copy .btn-gold-inline {
    width: auto;
    min-width: min(100%, 248px);
    min-height: 44px;
    padding-inline: 20px;
    font-size: 0.7rem;
    box-shadow: 0 14px 28px rgba(132, 94, 48, 0.1);
  }

  .testimonials-heading {
    max-width: 100%;
  }

  .testimonials-heading h2 {
    font-size: clamp(1.92rem, 10vw, 2.86rem);
  }

  .testimonials-heading p {
    max-width: 31ch;
    font-size: 0.92rem;
  }

  .testimonial-buttons-centered {
    align-items: center;
  }

  .testimonials-stack .btn-gold-inline,
  .testimonials-stack .btn-outline-premium {
    width: auto;
    min-width: min(100%, 320px);
  }

  .video-card {
    max-width: 100%;
    padding: 8px;
    border-radius: 24px;
  }

  .video-embed-shell {
    width: 100%;
    padding: 8px;
    border-radius: 22px;
  }

  .final-cta-section {
    padding: 8px 0 74px;
  }

  .final-cta-card {
    padding: 24px 20px 26px;
    gap: 12px;
    border-radius: 28px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95)),
      radial-gradient(circle at top center, rgba(229, 205, 166, 0.22), transparent 48%);
  }

  .final-cta-card .section-kicker {
    max-width: none;
    font-size: 0.76rem;
    line-height: 1.4;
    letter-spacing: 0.18em;
  }

  .final-cta-card h2 {
    max-width: 10.2ch;
    font-size: clamp(1.74rem, 8.1vw, 2.28rem);
    line-height: 0.99;
  }

  .final-cta-card p {
    max-width: 28ch;
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .final-cta-card .btn-gold-premium {
    width: min(100%, 310px);
    min-height: 48px;
    font-size: 0.72rem;
  }

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

@media (max-width: 520px) {
  .marquee span {
    font-size: 0.62rem;
  }

  .section-eyebrow,
  .section-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
  }

  .hero-mobile-image {
    aspect-ratio: 4 / 4.68;
  }

  .hero-copy h1 {
    width: 100%;
    max-width: 340px;
    font-size: clamp(1.42rem, 5.7vw, 1.68rem);
  }

  .hero-copy {
    max-width: 100%;
    gap: 12px;
    margin-top: 0;
    padding-inline: 18px;
  }

  .hero-subtitle {
    max-width: 29ch;
    font-size: 0.86rem;
  }

  .hero-actions .btn-gold-premium {
    min-height: 50px;
    font-size: 0.74rem;
    width: min(100%, 292px);
  }

  .hero-subtitle,
  .section-heading p,
  .procedures-lead,
  .pain-lead,
  .procedure-card p,
  .philosophy-body p,
  .about-copy p,
  .testimonials-heading p,
  .final-cta-card p {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .pain-heading h2 {
    max-width: none;
    font-size: clamp(1.54rem, 7.8vw, 1.94rem);
  }

  .pain-title-line {
    display: inline;
    white-space: normal;
  }

  .pain-title {
    max-width: 10ch;
  }

  .pain-card {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "mark text"
      "line text";
    align-items: start;
  }

  .pain-mark {
    grid-area: mark;
  }

  .pain-divider {
    grid-area: line;
    width: 1px;
    min-height: 38px;
    height: 100%;
    margin-inline: auto;
    background: linear-gradient(180deg, rgba(193, 68, 75, 0.85), rgba(233, 201, 145, 0.2));
  }

  .pain-card p {
    grid-area: text;
  }

  .about-image-frame {
    min-height: 330px;
  }

  .video-embed-shell {
    padding: 10px;
  }

  .video-embed-shell iframe {
    width: min(100%, 360px);
  }

  .about-copy .btn-gold-inline,
  .testimonials-stack .btn-gold-inline,
  .testimonials-stack .btn-outline-premium {
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.7rem;
  }

  .final-cta-card {
    padding: 22px 16px 24px;
  }

  .final-cta-card h2 {
    max-width: 10.6ch;
    font-size: clamp(1.66rem, 8.8vw, 2.12rem);
  }

  .final-cta-card p {
    max-width: 24ch;
  }

  .final-cta-card .btn-gold-premium {
    width: 100%;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
