 :root {
  --ink: #241b15;
  --ink-soft: #51443a;
  --ivory: #f7f3ee;
  --pearl: #fffdfa;
  --linen: #ebe5dc;
  --stone: #f1ece5;
  --champagne: #d6c2a3;
  --gold: #9d8362;
  --gold-soft: #c9b59a;
  --mocha: #2F241C;
  --taupe: #7a6d60;
  --muted: #6f655c;
  --line: rgba(157, 131, 98, .22);
  --shadow: 0 26px 64px rgba(47, 36, 28, .06);
  --radius: 24px;
  --font-display: "Prata", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7f3ee, #f3eee7);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: .005em;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
input, select, textarea { font-weight: 400; }

.container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow { width: min(820px, calc(100% - 40px)); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 58px);
  background: rgba(247, 243, 238, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled {
  background: rgba(247, 243, 238, .97);
  box-shadow: 0 16px 45px rgba(27, 23, 19, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 56px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #bca791, #e8ddd0 55%, #8d7359);
  color: #fff;
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1;
  box-shadow: 0 14px 30px rgba(157, 122, 67, .22);
}
.brand-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: .85;
}
.brand-text small {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 12px;
  color: var(--taupe);
  text-transform: uppercase;
  letter-spacing: .12em;
}
.main-nav a {
  transition: color .2s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.55);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn-gold {
  color: #fff;
  background: linear-gradient(135deg, #8f6c3b, #b6945c);
  box-shadow: 0 18px 38px rgba(143, 108, 59, .22);
}
.btn-outline {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255,255,255,.45);
}
.btn-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 12px;
}
.full { width: 100%; }

main {
  padding-top: 80px;
}

.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: clamp(60px, 8vw, 110px) 0;
}
.luxury-home {
  background:
    radial-gradient(circle at 80% 20%, rgba(157,122,67,.15), transparent 22rem),
    linear-gradient(135deg, #fffaf1, #f2e8d8);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .72fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: .98;
}
h1 {
  margin: 0;
  font-size: clamp(48px, 7.4vw, 96px);
}
h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 4.2vw, 64px);
}
h3 {
  margin: 0 0 12px;
  font-size: 30px;
}
.hero-subtitle {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(18px, 2.1vw, 24px);
  color: var(--ink-soft);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.cinematic-card {
  position: relative;
  border-radius: 42px;
  overflow: hidden;
  background: var(--pearl);
  box-shadow: var(--shadow);
  border: 1px solid rgba(157,122,67,.18);
}
.cinematic-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 32px;
  pointer-events: none;
  z-index: 1;
}
.cinematic-card img {
  width: 100%;
  height: min(68vh, 660px);
  object-fit: cover;
}
.cinematic-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 252, 246, .86);
  backdrop-filter: blur(14px);
}
.cinematic-note span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.cinematic-note strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
}

.section {
  padding: clamp(70px, 9vw, 130px) 0;
}
.section.compact {
  padding: clamp(58px, 7vw, 96px) 0;
}
.champagne {
  background: linear-gradient(180deg, rgba(231,218,196,.6), rgba(251,247,239,.9));
}
.section-head {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-head.left {
  text-align: left;
  margin: 0;
}
.section-head p,
.page-hero p {
  color: var(--muted);
  font-size: 17px;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.editorial-card {
  min-height: 310px;
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.44);
  box-shadow: 0 22px 60px rgba(27, 23, 19, .06);
}
.editorial-card span,
.service-line > span,
.result-copy span,
.values-grid article span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.editorial-card h2 {
  font-size: clamp(34px, 3vw, 46px);
}
.editorial-card p {
  color: var(--muted);
}
.editorial-card a {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold);
  font-weight: 500;
}

.signature-strip {
  background: var(--ink);
  color: #fff8ec;
}
.strip-grid {
  width: min(860px, 100%);
  text-align: center;
}
.strip-grid p:last-child {
  color: rgba(255,248,236,.72);
  font-size: 16px;
}

.page-hero {
  padding: clamp(90px, 12vw, 150px) 0 clamp(42px, 7vw, 90px);
  background:
    radial-gradient(circle at 80% 0%, rgba(157,122,67,.12), transparent 28rem),
    linear-gradient(180deg, #fffaf1, rgba(251,247,239,.72));
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(46px, 6.5vw, 84px);
}
.page-hero p {
  margin: 24px auto 0;
  max-width: 720px;
}

.services-flow {
  border-top: 1px solid var(--line);
}
.service-line {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}
.service-line h2 {
  margin-bottom: 12px;
  font-size: clamp(36px, 4vw, 58px);
}
.service-line p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.ritual-grid {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: clamp(36px, 7vw, 90px);
}
.ritual-steps {
  display: grid;
  gap: 18px;
}
.ritual-step {
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.48);
}
.ritual-step strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 400;
}
.ritual-step span {
  color: var(--muted);
}

.clean-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}
.clean-result-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.5);
  box-shadow: 0 28px 80px rgba(27,23,19,.07);
}
.image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #f4f0ea;
  cursor: zoom-in;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.image-button img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center center;
  transition: transform .45s ease;
}
.image-button:hover img {
  transform: scale(1.025);
}
.result-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  flex: 1;
  padding: 24px 28px 30px;
}
.result-copy h2 {
  margin: 0;
  font-size: 32px;
  min-height: 78px;
}
.result-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.lightbox {
  position: fixed;
  z-index: 400;
  inset: 0;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(20,16,12,.84);
}
.lightbox.is-open {
  display: grid;
}
.lightbox img {
  max-width: min(94vw, 920px);
  max-height: 90vh;
  border-radius: 22px;
  box-shadow: 0 24px 100px rgba(0,0,0,.4);
}
.lightbox-close {
  position: fixed;
  top: 22px;
  right: 28px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
  color: white;
  background: rgba(255,255,255,.08);
  font-size: 28px;
  cursor: pointer;
}

.about-grid {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
}
.image-frame {
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--pearl);
}
.image-frame img {
  width: 100%;
  height: min(64vh, 620px);
  object-fit: cover;
}
.lead {
  font-size: 22px;
  color: var(--ink-soft);
}
.about-copy p:not(.eyebrow), .contact-copy p {
  color: var(--muted);
}
.soft-proof {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.44);
}
.soft-proof strong {
  display: block;
  color: var(--gold);
  letter-spacing: .18em;
}
.soft-proof span {
  display: block;
  margin: 4px 0 10px;
  color: var(--muted);
}
.soft-proof a {
  color: var(--gold);
  font-weight: 500;
}

.dark-panel {
  background: var(--ink);
  color: #fff8ec;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.values-grid article {
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}
.values-grid h2 {
  color: #fff8ec;
  font-size: 42px;
}
.values-grid p {
  color: rgba(255,248,236,.68);
}

.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: clamp(34px, 6vw, 84px);
  align-items: start;
}
.contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}
.contact-card {
  display: block;
  padding: 22px 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.48);
}
.contact-card span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.contact-card strong {
  display: block;
  margin-top: 6px;
  font-weight: 400;
  color: var(--ink);
}
.booking-form {
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.58);
  box-shadow: var(--shadow);
}
.booking-form label {
  display: block;
  margin-bottom: 18px;
  color: var(--taupe);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  border: 1px solid rgba(157,122,67,.22);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255,255,255,.78);
  outline: none;
}
.booking-form textarea { resize: vertical; }

.map-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items: stretch;
}
.map-card {
  min-height: 470px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.map-info {
  padding: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.52);
}
.map-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .20em;
  text-transform: uppercase;
}
.map-info h2 {
  margin-top: 18px;
}
.map-note {
  color: var(--muted);
  margin-bottom: 28px;
}


.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-brand .brand-mark {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  text-indent: 1px;
  padding-bottom: 1px;
}
.footer-brand .brand-text strong {
  font-size: 24px;
  line-height: .92;
  letter-spacing: .03em;
}
.footer-brand .brand-text small {
  margin-top: 6px;
  font-size: 10px;
  letter-spacing: .24em;
}

.site-footer {
  padding: 58px 0 0;
  background: #191410;
  color: #fff8ec;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .6fr .9fr;
  gap: 34px;
}
.site-footer p,
.site-footer span,
.site-footer a {
  color: rgba(255,248,236,.68);
}
.site-footer strong {
  display: block;
  margin-bottom: 14px;
  color: #fff8ec;
}
.site-footer a,
.site-footer span {
  display: block;
  margin: 8px 0;
}
.copyright {
  margin-top: 42px;
  padding: 18px;
  text-align: center;
  color: rgba(255,248,236,.52);
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #755a33, #a88752);
  box-shadow: 0 16px 36px rgba(27,23,19,.24);
  font-size: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255,252,246,.98);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a, .main-nav .btn {
    justify-content: flex-start;
    padding: 13px 14px;
  }
  .hero-grid,
  .editorial-grid,
  .ritual-grid,
  .clean-results-grid,
  .about-grid,
  .values-grid,
  .contact-grid,
  .map-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .cinematic-card img { height: 560px; }
  .service-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .map-card { min-height: 360px; }
}

@media (max-width: 620px) {
  .container, .narrow { width: min(100% - 28px, 1140px); }
  .site-header { height: 74px; padding: 0 14px; }
  main { padding-top: 74px; }
  .brand-mark { width: 38px; height: 38px; font-size: 23px; }
  .brand-text strong { font-size: 24px; }
  h1 { font-size: 46px; }
  h2 { font-size: 38px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .cinematic-card { border-radius: 28px; }
  .cinematic-card img { height: 470px; }
  .editorial-card,
  .booking-form,
  .map-info,
  .values-grid article {
    padding: 26px;
  }
  .section { padding: 70px 0; }
  .page-hero { padding: 76px 0 48px; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 48px; height: 48px; }
}

.btn-one-to-one {
  color: var(--ink);
  border-color: rgba(157, 122, 67, .38);
  background: rgba(255,255,255,.55);
}
.btn-one-to-one:hover {
  background: rgba(197,173,123,.14);
}


/* Editorial refinement v2 */
html { scroll-behavior: smooth; }
body {
  background:
    radial-gradient(circle at 8% 8%, rgba(168, 133, 75, .08), transparent 32rem),
    linear-gradient(180deg, var(--ivory), #f3ede4 52%, #eee8de);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
}
body.is-ready { animation: pageIn .55s ease-out both; }
body.page-leave { animation: pageOut .34s ease-in both; }
@keyframes pageIn { from { opacity: 0; filter: blur(4px); } to { opacity: 1; filter: blur(0); } }
@keyframes pageOut { from { opacity: 1; filter: blur(0); } to { opacity: 0; filter: blur(5px); } }

.site-header {
  background: rgba(248, 243, 235, .90);
  border-bottom: 1px solid rgba(168, 133, 75, .16);
}
.site-header.scrolled { background: rgba(248, 243, 235, .98); }
.main-nav a {
  position: relative;
  padding-bottom: 4px;
  font-size: 13px;
}
.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--mocha);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .30s ease-out;
}
.main-nav a:not(.btn):hover::after,
.main-nav a:not(.btn).active::after { transform: scaleX(1); }

.btn {
  border-radius: 2px;
  min-height: 48px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.btn-gold,
.btn-primary-editorial {
  color: #fff7ed;
  background: var(--mocha);
  border-color: var(--mocha);
  box-shadow: none;
}
.btn-gold:hover,
.btn-primary-editorial:hover { background: #2d241b; }
.btn-small { border-radius: 2px; }
.btn-outline,
.btn-one-to-one { border-radius: 2px; }
.text-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mocha);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .02em;
}
.text-link-arrow span { transition: transform .25s ease-out; }
.text-link-arrow:hover span { transform: translateX(4px); }

.luxury-home {
  background:
    linear-gradient(135deg, #f7f3ee, #ede7df);
}
.hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .58fr);
  gap: clamp(44px, 6vw, 86px);
}
.editorial-eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .28em;
  font-weight: 500;
}
.editorial-eyebrow::before,
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.05;
  text-wrap: balance;
  hyphens: manual;
}
.hero-title {
  max-width: 760px;
  font-size: clamp(46px, 5.8vw, 78px);
  letter-spacing: -.02em;
  line-height: 1.05;
  text-wrap: balance;
  hyphens: manual;
}
.hero-subtitle {
  max-width: 620px;
  margin-top: 28px;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.45vw, 20px);
}
.refined-actions {
  align-items: center;
  gap: 26px;
  margin-top: 32px;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(168, 133, 75, .22);
}
.hero-metrics span { display: block; }
.hero-metrics strong {
  display: block;
  color: var(--mocha);
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 400;
  line-height: 1;
}
.hero-metrics small {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cinematic-card,
.editorial-photo {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.cinematic-card::before { display: none; }
.editorial-photo img,
.cinematic-card img {
  width: 100%;
  height: min(72vh, 700px);
  object-fit: cover;
  object-position: center top;
  filter: saturate(.92) contrast(.98) brightness(1.01);
}
.editorial-photo img {
  aspect-ratio: 4 / 5.6;
}
.cinematic-note { display: none; }
.photo-caption {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid rgba(168, 133, 75, .32);
  text-align: left;
}
.photo-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  font-weight: 400;
}
.photo-caption small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .04em;
}

.section:nth-of-type(even) { background: rgba(241, 236, 229, .72); }
.editorial-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
  border-top: 1px solid rgba(168, 133, 75, .26);
  padding: 34px 18px 30px 0;
}
.editorial-card span,
.service-line > span,
.result-copy span,
.values-grid article span {
  color: rgba(168, 133, 75, .22);
  font-family: var(--font-display);
  font-size: clamp(72px, 8vw, 104px);
  font-weight: 300;
  line-height: .78;
  letter-spacing: -.04em;
}
.editorial-card h2 {
  position: relative;
  margin-top: -42px;
  font-size: clamp(28px, 2.8vw, 38px);
  z-index: 1;
}
.editorial-card p { color: var(--muted); }
.editorial-card a { color: var(--mocha); }
.signature-strip { background: var(--mocha); }
.site-footer { background: #17110d; }
.whatsapp-float {
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 42px;
  background: var(--mocha);
  box-shadow: 0 14px 28px rgba(59,46,34,.20);
  font-size: 16px;
}

/* small custom cursor dot for links/buttons */
.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mocha);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.6);
  transition: opacity .18s ease, transform .18s ease;
}
.cursor-dot.is-active { opacity: .42; transform: translate(-50%, -50%) scale(1); }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(46px, 12vw, 76px); }
  .editorial-photo img, .cinematic-card img { height: auto; max-height: none; }
  .hero-metrics { grid-template-columns: 1fr; gap: 18px; }
}
@media (max-width: 620px) {
  .hero-title { font-size: 44px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .text-link-arrow { justify-content: center; padding: 8px 0; }
  .editorial-card h2 { margin-top: -20px; }
}


/* Variant 3 editorial luxury extras */
.hero-copy { position: relative; }
.hero-copy::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 6%;
  width: 1px;
  height: 78%;
  background: linear-gradient(180deg, transparent, rgba(157,131,98,.34), transparent);
}
.main-nav a:not(.btn)::after {
  background: var(--mocha);
}
.results-page .result-copy span { display: none !important; }
.result-copy p { margin: 0; color: var(--muted); font-size: 14px; }
.page-hero { background: linear-gradient(180deg, #f7f3ee, rgba(241,236,229,.8)); }
.page-hero h1 { max-width: 12ch; margin-inline: auto; }
.service-line { grid-template-columns: 100px 1fr; }
.service-line > span {
  color: rgba(157,131,98,.28);
  font-size: clamp(50px, 5vw, 72px);
  line-height: .8;
}
.signature-strip .eyebrow::before { background: rgba(255,255,255,.45); }
@media (max-width: 980px) {
  .hero-copy::after { display: none; }
}
@media (max-width: 620px) {
  .hero-title { font-size: 44px; }
  .main-nav { letter-spacing: .08em; }
}


/* Developed service packages */
.packages-intro {
  max-width: 780px;
  margin-bottom: 44px;
}
.packages-intro p:not(.eyebrow) {
  color: var(--muted);
  max-width: 680px;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.package-card {
  position: relative;
  min-height: 100%;
  padding: 34px 30px 32px;
  border: 1px solid var(--line);
  background: rgba(255,253,248,.46);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.package-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: .5;
}
.package-featured {
  background: rgba(255,253,248,.72);
  border-color: rgba(157, 131, 98, .42);
}
.package-index {
  color: rgba(157,131,98,.22);
  font-family: var(--font-display);
  font-size: clamp(62px, 6vw, 92px);
  line-height: .78;
  letter-spacing: -.04em;
  margin-bottom: -12px;
}
.package-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.package-card h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3vw, 42px);
}
.package-lead {
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.package-card ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.package-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .82em;
  width: 7px;
  height: 1px;
  background: var(--gold);
}
.package-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.package-content .text-link-arrow {
  margin-top: auto;
}
.comparison-layout {
  display: grid;
  grid-template-columns: .65fr 1fr;
  gap: clamp(36px, 6vw, 78px);
  align-items: start;
}
.comparison-table {
  border-top: 1px solid var(--line);
}
.comparison-row {
  display: grid;
  grid-template-columns: 1.4fr .7fr .8fr .7fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}
.comparison-row span:first-child {
  color: var(--ink);
}
.comparison-head {
  color: var(--gold);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.service-cta {
  background: rgba(241, 236, 229, .72);
}
.service-cta-panel {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(44px, 6vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-cta-panel p:not(.eyebrow) {
  max-width: 620px;
  margin: 0 auto 28px;
  color: var(--muted);
}
@media (max-width: 980px) {
  .packages-grid,
  .comparison-layout {
    grid-template-columns: 1fr;
  }
  .comparison-row {
    grid-template-columns: 1.25fr .7fr .8fr .7fr;
    gap: 12px;
    font-size: 13px;
  }
}
@media (max-width: 620px) {
  .package-card { padding: 28px 22px; }
  .comparison-table { overflow-x: auto; }
  .comparison-row { min-width: 620px; }
  .service-cta-panel { padding-inline: 20px; }
}


/* Modern prophylaxis + refined luxury design pass */
:root {
  --ink: #211b16;
  --ink-soft: #4c433b;
  --ivory: #f4efe7;
  --pearl: #fbf8f1;
  --bone: #eee7dc;
  --warm-beige: #e6dccf;
  --stone: #f0ebe3;
  --gold: #9d8362;
  --mocha: #183C3A;
  --deep-accent: #183C3A;
  --line: rgba(24, 60, 58, .14);
  --font-display: "Newsreader", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body {
  background: var(--ivory) !important;
  color: var(--ink);
  letter-spacing: 0;
}
.site-header,
.site-header.scrolled {
  background: rgba(244, 239, 231, .92) !important;
  border-bottom-color: rgba(24, 60, 58, .12);
  box-shadow: none;
}
.brand-mark {
  background: #d3c4b0 !important;
  color: var(--deep-accent);
  box-shadow: none;
}
.brand-text strong { font-family: var(--font-display); }
.brand-text small { color: var(--deep-accent); }
.main-nav { color: #5f574f; }
.main-nav a:not(.btn)::after { background: var(--deep-accent); }
.btn-gold,
.btn-primary-editorial {
  background: var(--deep-accent) !important;
  border-color: var(--deep-accent) !important;
  color: var(--pearl);
  box-shadow: none !important;
}
.btn-gold:hover,
.btn-primary-editorial:hover { background: #102b2a !important; }
.luxury-home,
.page-hero,
.signature-strip,
.champagne {
  background: var(--ivory) !important;
}
.section:nth-of-type(even) { background: var(--bone) !important; }
.hero {
  min-height: calc(100vh - 80px);
  padding: clamp(110px, 12vw, 185px) 0 clamp(100px, 12vw, 170px);
}
.hero-grid {
  grid-template-columns: 1fr !important;
  gap: clamp(64px, 8vw, 120px);
  text-align: center;
  justify-items: center;
}
.hero-copy {
  max-width: 980px;
  margin: 0 auto;
}
.hero-copy::after { display: none !important; }
.hero-title {
  max-width: 12.5ch;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(54px, 8vw, 104px) !important;
  line-height: 1.08 !important;
  letter-spacing: .01em !important;
  font-weight: 300;
  text-wrap: balance;
  hyphens: manual;
}
.hero-subtitle {
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(17px, 1.45vw, 20px) !important;
  line-height: 1.9;
}
.refined-actions,
.hero-actions {
  justify-content: center;
}
.hero-metrics {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.hero-visual {
  width: min(520px, 82vw);
}
.editorial-photo img,
.cinematic-card img {
  height: auto !important;
  aspect-ratio: 4 / 5.3 !important;
  object-fit: cover;
  box-shadow: none !important;
}
.photo-caption { text-align: left; }
.section {
  padding: clamp(110px, 11vw, 175px) 0;
}
.page-hero {
  padding: clamp(130px, 14vw, 190px) 0 clamp(70px, 9vw, 120px);
}
.page-hero .narrow,
.section-head,
.packages-intro {
  max-width: 60ch;
}
.page-hero h1,
.section-head h2,
.service-cta-panel h2 {
  font-family: var(--font-display);
  letter-spacing: .005em;
  line-height: 1.12;
  font-weight: 300;
}
.eyebrow,
.editorial-eyebrow,
.package-kicker {
  color: var(--deep-accent) !important;
  letter-spacing: .28em;
}
.eyebrow::before,
.editorial-eyebrow::before { background: var(--deep-accent) !important; }
.text-link-arrow { color: var(--deep-accent); }
.package-card,
.editorial-card,
.ritual-step,
.values-grid article,
.service-cta-panel,
.comparison-table,
.clean-result-card {
  background: transparent !important;
  box-shadow: none !important;
  border-color: rgba(24, 60, 58, .16) !important;
}
.packages-grid-expanded {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 54px);
}
.package-featured {
  background: rgba(24, 60, 58, .045) !important;
  border-color: rgba(24, 60, 58, .30) !important;
}
.package-index {
  color: rgba(24, 60, 58, .18) !important;
  font-size: clamp(76px, 8vw, 118px) !important;
  line-height: .8;
  font-family: var(--font-display);
  letter-spacing: -.02em;
}
.package-card h2 {
  font-family: var(--font-display);
  font-weight: 300;
  letter-spacing: .005em;
}
.modern-prophylaxis-layout {
  display: grid;
  grid-template-columns: minmax(280px, .70fr) minmax(0, 1fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}
.modern-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}
.modern-pillars article {
  padding-top: 28px;
  border-top: 1px solid rgba(24, 60, 58, .16);
}
.modern-pillars span {
  display: block;
  margin-bottom: 18px;
  color: rgba(24, 60, 58, .28);
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 74px);
  line-height: .8;
}
.modern-pillars h3 {
  max-width: 13ch;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 300;
  line-height: 1.12;
}
.modern-pillars p { color: var(--muted); }
.comparison-table-wide .comparison-row {
  grid-template-columns: 1.3fr repeat(5, .75fr);
}
.signature-strip {
  background: var(--deep-accent) !important;
  color: var(--pearl);
}
.whatsapp-float {
  background: var(--deep-accent) !important;
  width: 40px !important;
  height: 40px !important;
  font-size: 15px !important;
  box-shadow: none !important;
}
@media (max-width: 980px) {
  .modern-prophylaxis-layout,
  .packages-grid-expanded {
    grid-template-columns: 1fr;
  }
  .modern-pillars { grid-template-columns: 1fr; }
  .comparison-table { overflow-x: auto; }
  .comparison-table-wide .comparison-row { min-width: 860px; }
}
@media (max-width: 620px) {
  .hero-title { font-size: 46px !important; max-width: 11ch; }
  .hero { padding-top: 92px; }
  .section { padding: 84px 0; }
  .page-hero { padding: 96px 0 58px; }
}


/* Compact readability + mobile results fix */
body {
  line-height: 1.62 !important;
}
.container {
  width: min(1080px, calc(100% - 36px)) !important;
}
.narrow {
  width: min(760px, calc(100% - 36px)) !important;
}
.hero {
  min-height: auto !important;
  padding: clamp(72px, 8vw, 120px) 0 clamp(58px, 7vw, 96px) !important;
}
.hero-grid {
  gap: clamp(34px, 5vw, 72px) !important;
}
.hero-copy {
  max-width: 840px !important;
}
.hero-title {
  max-width: 14.5ch !important;
  font-size: clamp(40px, 6vw, 74px) !important;
  line-height: 1.03 !important;
  letter-spacing: -0.015em !important;
}
.hero-subtitle {
  max-width: 54ch !important;
  margin-top: 18px !important;
  font-size: clamp(15px, 1.2vw, 18px) !important;
  line-height: 1.7 !important;
}
.refined-actions,
.hero-actions {
  margin-top: 24px !important;
}
.hero-metrics {
  margin-top: 30px !important;
  padding-top: 18px !important;
  gap: 18px !important;
}
.hero-metrics strong {
  font-size: clamp(22px, 2vw, 30px) !important;
}
.hero-metrics small {
  font-size: 10px !important;
  letter-spacing: .10em !important;
}
.hero-visual {
  width: min(430px, 78vw) !important;
}
.editorial-photo img,
.cinematic-card img {
  aspect-ratio: 4 / 4.85 !important;
}
.photo-caption {
  margin-top: 10px !important;
  padding-top: 9px !important;
}
.photo-caption strong {
  font-size: 20px !important;
}
.photo-caption small {
  font-size: 12px !important;
}
.section {
  padding: clamp(58px, 6vw, 92px) 0 !important;
}
.section.compact {
  padding: clamp(48px, 5vw, 78px) 0 !important;
}
.page-hero {
  padding: clamp(82px, 9vw, 122px) 0 clamp(42px, 5vw, 70px) !important;
}
.page-hero h1 {
  font-size: clamp(34px, 4.6vw, 58px) !important;
  max-width: 16ch !important;
}
.page-hero p,
.section-head p,
.packages-intro p:not(.eyebrow) {
  font-size: 15.5px !important;
  line-height: 1.65 !important;
}
h2 {
  font-size: clamp(30px, 3.2vw, 48px) !important;
}
h3 {
  font-size: 24px !important;
}
.eyebrow,
.editorial-eyebrow,
.package-kicker {
  font-size: 10px !important;
  letter-spacing: .18em !important;
  margin-bottom: 12px !important;
}
.eyebrow::before,
.editorial-eyebrow::before {
  width: 34px !important;
}
.editorial-grid {
  gap: 18px !important;
}
.editorial-card {
  min-height: auto !important;
  padding: 28px 20px 26px 0 !important;
}
.editorial-card span,
.service-line > span,
.values-grid article span {
  font-size: clamp(48px, 5vw, 70px) !important;
}
.editorial-card h2 {
  margin-top: -24px !important;
  font-size: clamp(26px, 2.4vw, 34px) !important;
}
.editorial-card p {
  font-size: 14.5px !important;
}
.packages-intro {
  margin-bottom: 28px !important;
}
.packages-grid,
.packages-grid-expanded {
  gap: 20px !important;
}
.package-card {
  padding: 24px 24px 24px !important;
}
.package-index {
  font-size: clamp(48px, 5.5vw, 76px) !important;
  margin-bottom: -8px !important;
}
.package-card h2 {
  font-size: clamp(25px, 2.3vw, 34px) !important;
  margin-bottom: 12px !important;
}
.package-lead {
  font-size: 14.5px !important;
  line-height: 1.6 !important;
  margin-bottom: 16px !important;
}
.package-card ul {
  gap: 8px !important;
  margin-bottom: 18px !important;
}
.package-card li {
  font-size: 13.5px !important;
  line-height: 1.5 !important;
}
.modern-prophylaxis-layout {
  gap: clamp(30px, 4vw, 60px) !important;
}
.modern-pillars {
  gap: 22px !important;
}
.modern-pillars article {
  padding-top: 18px !important;
}
.modern-pillars span {
  margin-bottom: 10px !important;
  font-size: clamp(34px, 4vw, 54px) !important;
}
.modern-pillars h3 {
  font-size: clamp(22px, 2vw, 28px) !important;
  max-width: 18ch !important;
}
.modern-pillars p {
  font-size: 14.5px !important;
  line-height: 1.6 !important;
}
.service-line {
  padding: 28px 0 !important;
}
.service-line h2 {
  font-size: clamp(28px, 3vw, 44px) !important;
}
.service-line p {
  font-size: 15px !important;
  line-height: 1.6 !important;
}
.ritual-step {
  padding: 20px 22px !important;
}
.ritual-step strong {
  font-size: 25px !important;
}
.values-grid article,
.map-info,
.booking-form {
  padding: 24px !important;
}
.comparison-row {
  padding: 12px 0 !important;
  font-size: 13px !important;
}
.service-cta-panel {
  padding: clamp(28px, 4vw, 46px) !important;
}
.clean-results-grid {
  gap: 20px !important;
}
.clean-result-card {
  border-radius: 18px !important;
}
.result-copy {
  padding: 18px 20px 22px !important;
}
.result-copy h2 {
  min-height: auto !important;
  font-size: clamp(24px, 2.3vw, 30px) !important;
}
.result-copy p {
  font-size: 13.5px !important;
  line-height: 1.55 !important;
}

/* WhatsApp must be obvious, but still premium */
.whatsapp-float {
  right: 18px !important;
  bottom: 18px !important;
  width: auto !important;
  height: 44px !important;
  min-width: 132px !important;
  padding: 0 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  border-radius: 999px !important;
  background: var(--deep-accent) !important;
  color: var(--pearl) !important;
  box-shadow: 0 14px 34px rgba(24, 60, 58, .24) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: .02em !important;
}
.whatsapp-float .wa-icon {
  font-size: 15px !important;
  line-height: 1 !important;
}
.whatsapp-float .wa-label {
  display: inline-block !important;
}

@media (max-width: 980px) {
  .hero {
    padding-top: 76px !important;
  }
  .hero-grid,
  .modern-prophylaxis-layout {
    gap: 34px !important;
  }
  .packages-grid-expanded,
  .packages-grid,
  .clean-results-grid {
    grid-template-columns: 1fr !important;
  }
  .package-card {
    padding: 22px 20px !important;
  }
}

@media (max-width: 620px) {
  .container, .narrow {
    width: min(100% - 24px, 1080px) !important;
  }
  .site-header {
    height: 70px !important;
    padding: 0 12px !important;
  }
  main {
    padding-top: 70px !important;
  }
  .brand-mark {
    width: 36px !important;
    height: 36px !important;
    font-size: 20px !important;
  }
  .brand-text strong {
    font-size: 22px !important;
  }
  .brand-text small {
    font-size: 8px !important;
    letter-spacing: .16em !important;
  }
  .hero {
    padding: 54px 0 48px !important;
  }
  .hero-title {
    max-width: 13ch !important;
    font-size: 37px !important;
    line-height: 1.07 !important;
  }
  .hero-subtitle {
    font-size: 14.5px !important;
    line-height: 1.62 !important;
  }
  .hero-actions .btn,
  .refined-actions .btn {
    width: auto !important;
    min-width: 210px !important;
  }
  .hero-metrics {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 10px !important;
    margin-top: 22px !important;
    padding-top: 16px !important;
  }
  .hero-metrics strong {
    font-size: 21px !important;
  }
  .hero-metrics small {
    font-size: 9px !important;
    letter-spacing: .06em !important;
  }
  .hero-visual {
    width: min(330px, 90vw) !important;
  }
  .section {
    padding: 48px 0 !important;
  }
  .page-hero {
    padding: 62px 0 34px !important;
  }
  .page-hero h1 {
    font-size: 32px !important;
    max-width: 15ch !important;
  }
  .page-hero p {
    font-size: 14px !important;
  }
  h2 {
    font-size: 30px !important;
  }
  .editorial-card {
    padding: 22px 0 24px !important;
  }
  .package-index {
    font-size: 48px !important;
  }
  .package-card h2 {
    font-size: 26px !important;
  }
  .modern-pillars {
    gap: 18px !important;
  }
  .modern-pillars span {
    font-size: 36px !important;
  }
  .comparison-table {
    overflow-x: auto !important;
  }
  .comparison-row,
  .comparison-table-wide .comparison-row {
    min-width: 780px !important;
  }

  /* Results mobile fix: show full before/after images, no bad crop */
  .results-page {
    padding-top: 24px !important;
  }
  .clean-results-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }
  .image-button {
    aspect-ratio: auto !important;
    background: transparent !important;
  }
  .image-button img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center !important;
  }
  .result-copy {
    padding: 16px 16px 20px !important;
  }
  .result-copy h2 {
    font-size: 25px !important;
    min-height: auto !important;
  }

  .whatsapp-float {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    width: auto !important;
    height: 48px !important;
    min-width: 0 !important;
    border-radius: 999px !important;
    font-size: 14px !important;
  }
  body {
    padding-bottom: 68px !important;
  }
}


/* Final text + WhatsApp icon update */
.human-note-section,
.results-intro-section {
  padding-top: clamp(36px, 5vw, 58px) !important;
  padding-bottom: clamp(36px, 5vw, 58px) !important;
}
.human-note-grid {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: clamp(26px, 4vw, 42px);
}
.human-note-grid h2 {
  max-width: 12ch;
  font-size: clamp(34px, 4vw, 50px) !important;
  line-height: 1.05 !important;
}
.human-note-copy,
.natural-results-copy {
  max-width: 760px;
  font-size: clamp(15.5px, 1.35vw, 18px) !important;
  line-height: 1.72 !important;
  color: var(--ink-soft);
}
.human-note-copy p,
.natural-results-copy p,
.quiet-text-section p {
  margin-top: 0;
  margin-bottom: 16px;
}
.quiet-text-section {
  padding-top: clamp(28px, 4vw, 46px) !important;
  padding-bottom: clamp(34px, 5vw, 54px) !important;
  background: rgba(255,255,255,.22);
}
.quiet-text-section .narrow {
  border-left: 1px solid var(--line);
  padding-left: clamp(20px, 4vw, 34px);
  color: var(--muted);
  font-size: clamp(15.5px, 1.35vw, 18px) !important;
  line-height: 1.72 !important;
}
.results-intro-section + .results-page {
  padding-top: clamp(18px, 3vw, 32px) !important;
}
.whatsapp-float {
  position: fixed !important;
  right: 18px !important;
  bottom: 18px !important;
  z-index: 999 !important;
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  padding: 0 !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  background: var(--deep-accent) !important;
  color: var(--pearl) !important;
  box-shadow: 0 10px 28px rgba(24, 60, 58, .24) !important;
  text-decoration: none !important;
  transition: transform .22s ease, opacity .22s ease, box-shadow .22s ease !important;
}
.whatsapp-float svg {
  width: 21px !important;
  height: 21px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.55 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}
.whatsapp-float:hover {
  transform: translateY(-2px) !important;
  opacity: .96 !important;
  box-shadow: 0 14px 34px rgba(24, 60, 58, .30) !important;
}
.whatsapp-float .wa-icon,
.whatsapp-float .wa-label { display: none !important; }
@media (max-width: 980px) {
  .human-note-grid { grid-template-columns: 1fr; gap: 18px; }
  .human-note-grid h2 { max-width: 100%; font-size: 34px !important; }
  .human-note-copy,
  .natural-results-copy,
  .quiet-text-section .narrow { font-size: 15.5px !important; line-height: 1.65 !important; }
  .whatsapp-float {
    left: auto !important;
    right: 14px !important;
    bottom: 14px !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 50% !important;
  }
  .whatsapp-float svg { width: 22px !important; height: 22px !important; }
  body { padding-bottom: 0 !important; }
}


/* WhatsApp visibility fix */
.whatsapp-float {
  position: fixed !important;
  right: 22px !important;
  bottom: 22px !important;
  z-index: 2147483647 !important;
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 50% !important;
  background: #183C3A !important;
  color: #FBF8F1 !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  box-shadow: 0 14px 34px rgba(24, 60, 58, .32) !important;
  text-decoration: none !important;
  transform: translateZ(0) !important;
}
.whatsapp-float .wa-svg,
.whatsapp-float svg {
  display: block !important;
  width: 27px !important;
  height: 27px !important;
  fill: currentColor !important;
  stroke: none !important;
  opacity: 1 !important;
}
.whatsapp-float:hover {
  transform: translateY(-2px) translateZ(0) !important;
  box-shadow: 0 18px 42px rgba(24, 60, 58, .40) !important;
}
@media (max-width: 768px) {
  .whatsapp-float {
    right: 16px !important;
    bottom: 18px !important;
    width: 54px !important;
    height: 54px !important;
    min-width: 54px !important;
    min-height: 54px !important;
  }
  .whatsapp-float .wa-svg,
  .whatsapp-float svg {
    width: 28px !important;
    height: 28px !important;
  }
}


/* Hard WhatsApp fallback - visible on all pages */
.wa-fixed-global{display:inline-flex!important;position:fixed!important;right:18px!important;bottom:18px!important;z-index:2147483647!important;visibility:visible!important;opacity:1!important;}


/* Real fixed WhatsApp button override */
#whatsappAlwaysVisible {
  position: fixed !important;
  right: 18px !important;
  bottom: 18px !important;
  z-index: 2147483647 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
@media (max-width: 768px) {
  #whatsappAlwaysVisible {
    right: 14px !important;
    bottom: 14px !important;
    min-width: 112px !important;
    height: 44px !important;
  }
}


/* WhatsApp fix real: legat de ecran, nu de finalul paginii */
#waViewportFixedButton {
  position: fixed !important;
  right: 22px !important;
  bottom: 22px !important;
  left: auto !important;
  top: auto !important;
  z-index: 2147483647 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-width: 128px !important;
  height: 48px !important;
  padding: 0 17px !important;
  border-radius: 999px !important;
  background: #183C3A !important;
  color: #FBF8F1 !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .01em !important;
  text-decoration: none !important;
  line-height: 1 !important;
  box-shadow: 0 16px 42px rgba(24, 60, 58, .42) !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateZ(0) !important;
  isolation: isolate !important;
}
#waViewportFixedButton svg {
  width: 18px !important;
  height: 18px !important;
  fill: currentColor !important;
  stroke: none !important;
  display: block !important;
  flex: 0 0 auto !important;
}
#waViewportFixedButton:hover {
  transform: translateY(-2px) translateZ(0) !important;
  box-shadow: 0 20px 50px rgba(24, 60, 58, .50) !important;
}
@media (max-width: 768px) {
  #waViewportFixedButton {
    right: 14px !important;
    bottom: 16px !important;
    min-width: 124px !important;
    height: 46px !important;
    padding: 0 15px !important;
    font-size: 13px !important;
  }
}

/* FIX FINAL WhatsApp: buton legat de viewport, nu de footer */
body.is-ready,
body.page-leave {
  filter: none !important;
  transform: none !important;
}

@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pageOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

#waViewportFixedButton {
  position: fixed !important;
  right: 22px !important;
  bottom: 22px !important;
  left: auto !important;
  top: auto !important;
  z-index: 2147483647 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-width: 128px !important;
  height: 48px !important;
  padding: 0 17px !important;
  border-radius: 999px !important;
  background: #183C3A !important;
  color: #FBF8F1 !important;
  font-family: Inter, Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .01em !important;
  text-decoration: none !important;
  line-height: 1 !important;
  box-shadow: 0 16px 42px rgba(24, 60, 58, .42) !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  margin: 0 !important;
  transform: none !important;
}

#waViewportFixedButton svg {
  width: 18px !important;
  height: 18px !important;
  fill: currentColor !important;
  display: block !important;
}

@media (max-width: 768px) {
  #waViewportFixedButton {
    right: 14px !important;
    bottom: 14px !important;
    min-width: 118px !important;
    height: 46px !important;
    padding: 0 14px !important;
  }
}

/* WhatsApp final: icon fin, fixat pe ecran */
#waViewportFixedButton {
  position: fixed !important;
  right: 22px !important;
  bottom: 22px !important;
  width: 46px !important;
  min-width: 46px !important;
  height: 46px !important;
  padding: 0 !important;
  border-radius: 999px !important;
  background: #183C3A !important;
  color: #FBF8F1 !important;
  z-index: 2147483647 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
}
#waViewportFixedButton span { display: none !important; }
#waViewportFixedButton svg {
  width: 22px !important;
  height: 22px !important;
  fill: none !important;
  stroke: currentColor !important;
}
@media (max-width: 768px) {
  #waViewportFixedButton {
    right: 16px !important;
    bottom: 18px !important;
    width: 48px !important;
    min-width: 48px !important;
    height: 48px !important;
  }
}


/* Servicii noi: sigilări și albire Zoom */
.additional-services-section {
  background: var(--ivory) !important;
}
.service-extra-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 48px);
}
.service-extra-grid .package-card {
  min-height: auto;
}
.package-featured {
  background: transparent !important;
  border-color: rgba(24, 60, 58, .16) !important;
}
@media (max-width: 980px) {
  .service-extra-grid {
    grid-template-columns: 1fr;
  }
}


/* Informații de specialitate - sigilări și albire */
.specialist-info-section {
  background: var(--bone) !important;
}
.specialist-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 4vw, 48px);
  margin-top: clamp(26px, 4vw, 48px);
}
.specialist-info-card {
  border: 1px solid rgba(24, 60, 58, .16);
  background: rgba(251, 248, 241, .62);
  padding: clamp(26px, 4vw, 42px);
}
.specialist-info-card h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
  letter-spacing: -.015em;
  font-weight: 300;
  color: var(--ink);
}
.specialist-info-card p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
  max-width: 62ch;
}
.specialist-info-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.specialist-info-card li {
  color: var(--ink-soft);
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}
.specialist-info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 7px;
  height: 1px;
  background: var(--gold);
}
@media (max-width: 900px) {
  .specialist-info-grid {
    grid-template-columns: 1fr;
  }
  .specialist-info-card {
    padding: 24px 20px;
  }
  .specialist-info-card h3 {
    font-size: 30px;
  }
}


/* Update final: mobile homepage order + prices/services */
.hero-after {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.hero-after .text-link-arrow {
  justify-content: center;
  margin-bottom: 22px;
}
.hero-primary-action {
  margin-bottom: 0 !important;
}
.package-price {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: -4px 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(24, 60, 58, .20);
  color: var(--deep-accent);
  background: rgba(251, 248, 241, .55);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.package-card-premium {
  background: rgba(24, 60, 58, .045) !important;
  border-color: rgba(24, 60, 58, .28) !important;
}
.package-card-premium::before {
  opacity: 1 !important;
  background: linear-gradient(90deg, var(--deep-accent), rgba(24,60,58,.10)) !important;
}
.service-extra-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}
.comparison-table-wide .comparison-row {
  grid-template-columns: 1.45fr repeat(6, .72fr) !important;
}
.comparison-row span:not(:first-child) {
  text-align: center;
}

@media (max-width: 980px) {
  .service-extra-grid {
    grid-template-columns: 1fr !important;
  }
  .comparison-table-wide .comparison-row {
    min-width: 1040px !important;
  }
}

@media (max-width: 620px) {
  .hero {
    padding: 28px 0 42px !important;
  }
  .hero-grid {
    gap: 20px !important;
  }
  .hero-title {
    max-width: 13ch !important;
    font-size: 36px !important;
    line-height: 1.06 !important;
  }
  .hero-subtitle {
    margin-top: 14px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }
  .refined-actions,
  .hero-actions {
    margin-top: 18px !important;
  }
  .hero-actions .btn,
  .refined-actions .btn {
    width: 100% !important;
    min-width: 0 !important;
  }
  .hero-visual {
    width: min(350px, calc(100vw - 40px)) !important;
    margin-top: 2px !important;
  }
  .editorial-photo img,
  .cinematic-card img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 5 !important;
    object-fit: cover !important;
    object-position: center top !important;
  }
  .photo-caption {
    display: none !important;
  }
  .hero-after .text-link-arrow {
    margin: 2px 0 10px !important;
    padding: 4px 0 !important;
  }
  .hero-metrics {
    grid-template-columns: 1fr 1fr 1fr !important;
    margin-top: 14px !important;
    padding-top: 14px !important;
  }
  .hero-metrics strong {
    font-size: 20px !important;
  }
  .hero-metrics small {
    font-size: 8.5px !important;
  }
  .package-price {
    margin-bottom: 14px !important;
    font-size: 12px !important;
  }
}

/* Pearl mobile polish — 2026-07-28 */
@media (max-width: 620px) {
  .hero {
    padding: 18px 0 34px !important;
  }
  .hero-grid {
    gap: 14px !important;
  }
  .editorial-eyebrow,
  .eyebrow {
    margin-bottom: 10px !important;
    font-size: 10.5px !important;
    gap: 12px !important;
  }
  .editorial-eyebrow::before,
  .eyebrow::before {
    width: 36px !important;
  }
  .hero-title {
    max-width: 14ch !important;
    font-size: 34px !important;
    line-height: 1.035 !important;
  }
  .hero-subtitle {
    max-width: 35ch !important;
    margin-top: 12px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
  }
  .refined-actions,
  .hero-actions {
    margin-top: 16px !important;
  }
  .hero-actions .btn,
  .refined-actions .btn {
    min-height: 50px !important;
  }
  .hero-visual {
    width: min(340px, calc(100vw - 32px)) !important;
    margin-top: 0 !important;
  }
  .hero-visual .editorial-photo,
  .hero-visual .cinematic-card {
    margin: 0 !important;
  }
  .editorial-photo img,
  .cinematic-card img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: auto !important;
    object-fit: contain !important;
    object-position: center top !important;
  }
  .hero-after .text-link-arrow {
    margin: 0 0 8px !important;
  }
  .hero-metrics {
    margin-top: 10px !important;
    padding-top: 12px !important;
  }
  #waViewportFixedButton {
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    right: 10px !important;
    bottom: 10px !important;
  }
  #waViewportFixedButton svg {
    width: 20px !important;
    height: 20px !important;
  }
}

