:root {
  --bordeaux: #3b1518;
  --bordeaux-2: #5a2328;
  --rose: #c9a093;
  --rose-soft: #e6d2cb;
  --cream: #faf5f3;
  --warm: #f0ebe8;
  --white: #fff;
  --text: #2a1012;
  --muted: #73575b;
  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'Montserrat', system-ui, sans-serif;
  --shadow: 0 26px 70px rgba(59, 21, 24, .13);
  --soft-shadow: 0 14px 38px rgba(59, 21, 24, .09);
  --radius: 22px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--body);
  overflow-x: hidden;
  max-width: 100vw;
}

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

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

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 20;
  height: 86px;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 16px 0 22px;
  border: 1px solid rgba(201, 160, 147, .3);
  border-radius: 999px;
  background: rgba(250, 245, 243, .72);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 50px rgba(59, 21, 24, .08);
  transition: transform .28s ease, background .28s ease, box-shadow .28s ease;
}

.site-header.is-scrolled {
  background: rgba(250, 245, 243, .92);
  box-shadow: 0 18px 55px rgba(59, 21, 24, .13);
}

.brand {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand img {
  width: auto;
  height: 58px;
  max-width: 180px;
  filter: drop-shadow(0 8px 18px rgba(59, 21, 24, .1));
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--bordeaux);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--bordeaux), var(--rose));
  transition: transform .25s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.header-cta {
  padding: 0 20px;
  min-height: 40px;
  font-size: .68rem;
  color: var(--cream);
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-2) 58%, var(--rose));
  box-shadow: 0 10px 28px rgba(59, 21, 24, .22);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-3px);
}

.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  align-items: center;
  gap: clamp(32px, 5vw, 76px);
  padding: 132px clamp(24px, 6vw, 86px) 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(250,245,243,.96), rgba(250,245,243,.76) 52%, rgba(230,210,203,.48)),
    radial-gradient(circle at 80% 20%, rgba(201,160,147,.28), transparent 38%);
  z-index: -2;
}

.hero::after {
  content: '';
  position: absolute;
  right: -8%;
  top: 12%;
  width: 44vw;
  aspect-ratio: 1;
  border: 1px solid rgba(201, 160, 147, .24);
  border-radius: 50%;
  z-index: -1;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--rose);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--bordeaux);
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: .91;
}

h2 {
  font-size: clamp(2.35rem, 4vw, 4.6rem);
  line-height: .98;
}

h3 {
  font-family: var(--display);
  color: var(--bordeaux);
  font-size: 1.65rem;
  font-weight: 500;
}

.hero-lead,
.section-head p,
.about-copy p,
.contact-panel p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.hero-lead {
  max-width: 620px;
  margin: 24px 0 24px;
}

.procedure-ticker {
  max-width: 650px;
  overflow: hidden;
  padding: 12px 0;
  border-top: 1px solid rgba(201, 160, 147, .38);
  border-bottom: 1px solid rgba(201, 160, 147, .38);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 18px;
  animation: ticker 28s linear infinite;
}

.ticker-track span {
  color: var(--bordeaux);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track span::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--rose);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  padding: 0 28px;
}

.btn-primary {
  color: var(--cream);
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-2) 56%, var(--rose));
  box-shadow: 0 16px 36px rgba(59, 21, 24, .22);
}

.btn-secondary {
  color: var(--bordeaux);
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(59, 21, 24, .18);
}

.btn-light {
  color: var(--bordeaux);
  background: var(--cream);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .12);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 690px;
  margin-top: 36px;
}

.trust-row div {
  padding: 16px;
  border: 1px solid rgba(201, 160, 147, .32);
  border-radius: 16px;
  background: rgba(255,255,255,.42);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  color: var(--bordeaux);
  font-family: var(--display);
  font-size: 1.12rem;
  font-weight: 500;
}

.trust-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .75rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  min-height: 680px;
  box-shadow: var(--shadow);
  background: var(--rose-soft);
}

.hero-card img {
  height: 680px;
  object-fit: cover;
  object-position: center;
}

.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(59,21,24,.62));
}

.hero-card-note {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 20px;
  background: rgba(59, 21, 24, .42);
  backdrop-filter: blur(18px);
  color: var(--cream);
}

.hero-card-note span,
.hero-card-note strong {
  display: block;
}

.hero-card-note span {
  margin-bottom: 8px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose-soft);
}

.hero-card-note strong {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.15;
}

.floating-badge {
  position: absolute;
  left: -34px;
  top: 18%;
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-2));
  color: var(--cream);
  box-shadow: 0 22px 44px rgba(59,21,24,.24);
}

.floating-badge strong,
.floating-badge span {
  display: block;
}

.floating-badge strong {
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: .8;
}

.floating-badge span {
  margin-top: 8px;
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 9vw, 132px) clamp(24px, 6vw, 86px);
}

.section-head {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-head p {
  max-width: 660px;
  margin-top: 16px;
}

.procedures {
  background: var(--white);
}

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

.procedure-card {
  overflow: hidden;
  border: 1px solid rgba(201, 160, 147, .3);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: var(--soft-shadow);
  transition: transform .28s ease, box-shadow .28s ease;
}

.procedure-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.procedure-card img {
  height: 238px;
  object-fit: cover;
}

.card-body {
  padding: 22px;
}

.tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: var(--bordeaux);
  background: rgba(201, 160, 147, .22);
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.procedure-card p {
  min-height: 116px;
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.72;
}

.procedure-card a {
  color: var(--bordeaux);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.featured-procedure {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.featured-procedure img {
  height: 100%;
  min-height: 340px;
}

/* ── Lead form card ──────────────────────── */
.lead-card {
  margin-top: 30px;
  padding: clamp(26px, 4vw, 48px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f5ebe8, #fff);
  border: 1px solid rgba(201, 160, 147, .34);
  box-shadow: var(--soft-shadow);
}

.lead-card-head {
  max-width: 560px;
  margin-bottom: 32px;
}

.lead-card-head h3 {
  margin: 6px 0 10px;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.lead-card-head p {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.7;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 28px;
}

.field {
  display: flex;
  flex-direction: column;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: 8px 2px;
  border: none;
  border-bottom: 1px solid rgba(59, 21, 24, .22);
  background: transparent;
  color: var(--text);
  font-family: var(--body);
  font-size: 1.05rem;
  transition: border-color .22s ease;
}

.field textarea {
  resize: vertical;
  min-height: 64px;
  line-height: 1.6;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(115, 87, 91, .6);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--bordeaux);
}

.lead-form-foot {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  margin-top: 10px;
}

.lead-form-foot .btn {
  cursor: pointer;
  border: none;
  font-family: var(--body);
}

.lead-form-note {
  flex: 1;
  min-width: 220px;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.55;
}

/* ── Site footer ─────────────────────────── */
.site-footer {
  padding: 28px 24px;
  text-align: center;
  background: var(--bordeaux);
  border-top: 1px solid rgba(230, 210, 203, .14);
}

.site-footer p {
  color: rgba(250, 245, 243, .72);
  font-size: .74rem;
  letter-spacing: .06em;
}

.results {
  background:
    linear-gradient(180deg, rgba(250,245,243,.95), rgba(240,235,232,.86)),
    var(--warm);
}

.results-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 26px;
  align-items: stretch;
}

.before-after-card,
.testimonial,
.result-note {
  border: 1px solid rgba(201, 160, 147, .34);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  box-shadow: var(--soft-shadow);
}

.before-after-card {
  padding: 18px;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ba-panel {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
  border-radius: 18px;
  overflow: hidden;
  color: var(--cream);
  position: relative;
  background: url('assets/hero_beauty.png') center/cover;
}

.ba-panel.after {
  background-image: url('assets/shara_portrait.png');
}

.ba-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(59,21,24,.05), rgba(59,21,24,.62)),
    rgba(59,21,24,.12);
}

.ba-panel span,
.ba-panel p {
  position: relative;
  z-index: 1;
}

.ba-panel span {
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.ba-panel p {
  margin-top: 6px;
  color: rgba(250,245,243,.82);
  font-size: .82rem;
}

.ba-footer {
  padding: 18px 4px 4px;
}

.ba-footer strong,
.ba-footer span {
  display: block;
}

.ba-footer strong {
  color: var(--bordeaux);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
}

.ba-footer span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .84rem;
}

/* ── Before/After Carousel ───────────────── */
.ba-carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.ba-carousel-track {
  display: flex;
  transition: transform .7s cubic-bezier(.25,1,.5,1);
  will-change: transform;
}

.ba-slide {
  flex: 0 0 100%;
  min-width: 0;
}

.ba-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
}

.ba-arrow {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 160, 147, .38);
  border-radius: 50%;
  background: var(--white);
  color: var(--bordeaux);
  font-size: 1.4rem;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
  line-height: 1;
}

.ba-arrow:hover {
  background: var(--rose-soft);
  transform: scale(1.08);
}

.ba-dots {
  display: flex;
  gap: 8px;
}

.ba-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201, 160, 147, .4);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.ba-dot.active {
  background: var(--bordeaux);
  transform: scale(1.25);
}

.proof-stack {
  display: grid;
  gap: 16px;
}

.testimonial,
.result-note {
  padding: 26px;
}

.stars {
  margin-bottom: 12px;
  color: var(--rose);
  letter-spacing: .16em;
}

.testimonial p {
  color: var(--bordeaux);
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 1.32;
}

.testimonial strong {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.result-note {
  color: var(--cream);
  background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-2));
}

.result-note span {
  color: var(--rose-soft);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.result-note p {
  margin-top: 12px;
  color: rgba(250,245,243,.82);
  line-height: 1.65;
}

.about {
  display: grid;
  grid-template-columns: minmax(340px, .86fr) minmax(0, 1.14fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  background: var(--white);
}

.about-image {
  position: relative;
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 24px -22px -24px 22px;
  border: 1px solid rgba(201,160,147,.4);
  border-radius: 34px;
}

.about-image img {
  position: relative;
  height: 640px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.about-copy p {
  max-width: 700px;
  margin-top: 18px;
}

.differentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.differentials span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--bordeaux);
  background: rgba(201,160,147,.18);
  border: 1px solid rgba(201,160,147,.3);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── FAQ ─────────────────────────────────── */
.faq {
  background: var(--white);
}

.faq-list {
  max-width: 820px;
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(201, 160, 147, .32);
  border-radius: 16px;
  background: var(--cream);
  overflow: hidden;
  transition: box-shadow .22s ease;
}

.faq-item[open] {
  box-shadow: var(--soft-shadow);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  color: var(--bordeaux);
  font-family: var(--display);
  font-size: 1.22rem;
  font-weight: 500;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(201,160,147,.18);
  color: var(--rose);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform .22s ease;
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.faq-item[open] summary ~ * {
  animation: faq-sweep .35s ease-out;
}

@keyframes faq-sweep {
  0% { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.faq-item p {
  padding: 0 22px 20px;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.75;
}

/* ── Contact ─────────────────────────────── */
.contact {
  background:
    linear-gradient(135deg, rgba(59,21,24,.96), rgba(90,35,40,.94)),
    var(--bordeaux);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
  gap: 42px;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid rgba(230,210,203,.22);
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 0%, rgba(201,160,147,.22), transparent 34%),
    rgba(255,255,255,.05);
  color: var(--cream);
}

.contact h2,
.contact .eyebrow {
  color: var(--cream);
}

.contact-panel p {
  max-width: 640px;
  margin: 18px 0 26px;
  color: rgba(250,245,243,.76);
}

.contact-list {
  display: grid;
  gap: 12px;
  font-style: normal;
}

.contact-list div {
  padding: 16px 18px;
  border: 1px solid rgba(230,210,203,.18);
  border-radius: 16px;
  background: rgba(255,255,255,.07);
}

.contact-list span,
.contact-list strong {
  display: block;
}

.contact-list span {
  margin-bottom: 4px;
  color: var(--rose-soft);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-list strong {
  color: var(--cream);
  font-size: .92rem;
  line-height: 1.45;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--cream);
  background: linear-gradient(135deg, #335c3f, #4f8a5f);
  box-shadow: 0 18px 38px rgba(38, 88, 51, .28);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.mobile-sticky {
  display: none;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 150px 1fr;
  }

  .header-cta {
    display: none;
  }

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

  .hero-card,
  .hero-card img {
    min-height: 520px;
    height: 520px;
  }

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

  .results-layout,
  .about,
  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    inset: 10px 12px auto;
    height: 70px;
    grid-template-columns: 1fr auto;
    padding: 0 14px;
  }

  .brand img {
    height: 48px;
    max-width: 150px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    padding: 94px 18px 48px;
    overflow-x: hidden;
    max-width: 100%;
  }

  .hero-copy {
    max-width: 100%;
    overflow-x: hidden;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
    max-width: 100%;
    word-break: break-word;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .hero-lead,
  .section-head p,
  .about-copy p,
  .contact-panel p {
    font-size: .94rem;
    line-height: 1.75;
    max-width: 100%;
  }

  .hero-actions {
    display: grid;
    gap: 8px;
  }
  
  .hero-actions .btn-primary {
    box-shadow: none;
  }

  .trust-row {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-card,
  .hero-card img {
    min-height: 420px;
    height: 420px;
    border-radius: 26px;
  }

  .section {
    padding: 56px 18px;
    overflow-x: hidden;
  }

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

  .featured-procedure {
    display: block;
    grid-column: 1 / -1;
  }

  .featured-procedure img {
    height: 238px;
    min-height: 0;
  }

  .procedure-card p {
    min-height: 0 !important;
    margin-bottom: 12px;
  }

  .card-body {
    padding: 16px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .lead-form-foot .btn {
    width: 100%;
  }

  .ba-panel {
    min-height: 280px;
  }

  .ba-carousel {
    max-width: 100%;
    overflow: hidden;
  }

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

  .about-image::before {
    inset: 14px -10px -14px 10px;
  }

  .contact-panel {
    padding: 28px 18px;
    border-radius: 24px;
  }

  /* Float icon is kept visible on mobile */
  .mobile-sticky {
    position: fixed;
    inset: auto 0 0;
    z-index: 35;
    display: block;
    padding: 10px 14px 14px;
    background: rgba(250, 245, 243, .88);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(201, 160, 147, .34);
  }

  .mobile-sticky a {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--cream);
    background: linear-gradient(135deg, var(--bordeaux), var(--bordeaux-2) 64%, var(--rose));
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
}
