:root {
  --cream: #f7f1ec;
  --paper: #fffaf6;
  --blush: #ead6cc;
  --rose: #b78370;
  --rose-dark: #8c5c4d;
  --brown: #33221e;
  --muted: #7b6963;
  --line: rgba(77, 46, 38, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--brown);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.topbar {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--brown);
  color: #f5e6dc;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.topbarDot { width: 3px; height: 3px; border-radius: 50%; background: var(--rose); }
.siteHeader {
  height: 88px;
  padding: 0 clamp(24px, 6vw, 96px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 246, .94);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brandMark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--rose);
  border-radius: 50%;
  color: var(--rose-dark);
  font: italic 16px Georgia, serif;
}
.brandText { display: flex; flex-direction: column; line-height: 1; }
.brandText strong { font: 24px Georgia, serif; letter-spacing: -.04em; }
.brandText small { margin-top: 5px; color: var(--muted); font-size: 8px; letter-spacing: .19em; text-transform: uppercase; }
nav { display: flex; gap: clamp(24px, 3vw, 46px); }
nav a { position: relative; font-size: 12px; color: #584640; }
nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--rose-dark); transition: .25s; }
nav a:hover::after { right: 0; }
.button {
  min-height: 52px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid var(--rose-dark);
  background: var(--rose-dark);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s, background .2s;
}
.button:hover { transform: translateY(-2px); background: #75483c; }
.buttonSmall { min-height: 42px; padding: 0 20px; font-size: 9px; }

.hero {
  min-height: 700px;
  display: grid;
  grid-template-columns: 51% 49%;
  background: var(--cream);
  overflow: hidden;
}
.heroContent { padding: clamp(70px, 8vw, 125px) 6vw 58px; display: flex; flex-direction: column; justify-content: center; }
.eyebrow { margin: 0 0 24px; display: flex; align-items: center; gap: 12px; color: var(--rose-dark); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 1px; background: currentColor; }
.hero h1, h2 { margin: 0; font: 400 clamp(50px, 6.2vw, 90px)/.96 Georgia, serif; letter-spacing: -.055em; }
.hero h1 em, h2 em { color: var(--rose-dark); font-weight: 400; }
.heroLead { max-width: 520px; margin: 30px 0 34px; color: var(--muted); font: 16px/1.8 Arial, sans-serif; }
.heroActions { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.textLink { display: inline-flex; gap: 16px; padding-bottom: 6px; border-bottom: 1px solid var(--line); color: #55413b; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.textLink span { color: var(--rose-dark); }
.heroProof { margin-top: 72px; display: flex; align-items: center; gap: clamp(14px, 2.3vw, 34px); }
.heroProof div { display: flex; flex-direction: column; }
.heroProof strong { font: 25px Georgia, serif; }
.heroProof span { margin-top: 4px; color: var(--muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.heroProof i { width: 1px; height: 32px; background: var(--line); }
.heroVisual { position: relative; min-height: 700px; background: #d8c4b8; }
.heroImage { position: absolute; inset: 0; background: linear-gradient(130deg, rgba(93, 58, 45, .12), transparent 55%), url('/images/moldabella-hero.png') center/cover no-repeat; }
.heroVisual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(51,34,30,.10), transparent 35%); pointer-events: none; }
.heroBadge { position: absolute; z-index: 2; left: -54px; bottom: 56px; width: 145px; height: 145px; display: grid; place-items: center; text-align: center; border-radius: 50%; background: var(--paper); box-shadow: 0 18px 50px rgba(61,37,30,.17); }
.heroBadge .sparkle { position: absolute; top: 23px; color: var(--rose); }
.heroBadge p { margin: 20px 0 0; color: var(--muted); font: 13px/1.45 Georgia, serif; }
.heroBadge strong { color: var(--brown); font-size: 15px; }
.verticalCopy { position: absolute; z-index: 2; right: 19px; bottom: 38px; margin: 0; writing-mode: vertical-rl; color: rgba(255,255,255,.86); font-size: 8px; letter-spacing: .3em; text-transform: uppercase; }

.sectionLabel { color: var(--rose-dark); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.intro { padding: 110px 6vw; display: grid; grid-template-columns: .55fr 1.3fr .9fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.intro h2 { max-width: 680px; font-size: clamp(40px, 4.5vw, 66px); }
.introCopy > p:not(.eyebrow) { max-width: 570px; margin: 28px 0; color: var(--muted); font: 15px/1.8 Arial, sans-serif; }
.introQuote { border-left: 1px solid var(--line); padding-left: 38px; }
.introQuote > span { color: var(--rose); font: 58px Georgia, serif; line-height: .8; }
.introQuote p { margin: 20px 0; color: #604b44; font: italic 19px/1.55 Georgia, serif; }

.services { padding: 110px 6vw 130px; background: var(--brown); color: #f8eee8; }
.sectionHeading { margin-bottom: 62px; display: flex; justify-content: space-between; align-items: end; gap: 50px; }
.sectionHeading h2, .testimonials h2 { font-size: clamp(42px, 5vw, 70px); }
.sectionHeading > p { max-width: 430px; margin: 0 0 6px; color: #c9b7af; font: 14px/1.8 Arial, sans-serif; }
.eyebrow.light { color: #d2a893; }
.serviceGrid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.serviceCard { min-height: 380px; padding: 28px clamp(20px, 2.2vw, 36px); border-right: 1px solid rgba(255,255,255,.16); transition: background .25s, transform .25s; }
.serviceCard:last-child { border-right: 0; }
.serviceCard:hover { background: rgba(255,255,255,.055); transform: translateY(-5px); }
.serviceNumber { color: #a9958e; font-size: 9px; letter-spacing: .16em; }
.serviceIcon { margin: 58px 0 22px; color: #d6a98f; font-size: 23px; }
.serviceCard h3 { margin: 0; font: 24px/1.2 Georgia, serif; }
.serviceCard > p { min-height: 86px; margin: 18px 0 28px; color: #bfaea7; font-size: 13px; line-height: 1.7; }
.serviceFooter { padding-top: 22px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); }
.serviceFooter span { color: #dec6b8; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.serviceFooter a { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }

.experience { padding: 130px 6vw; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(60px, 9vw, 140px); align-items: center; background: var(--paper); }
.experienceGallery { position: relative; min-height: 650px; }
.experienceImage { position: absolute; background-color: #e0cec4; background-size: cover; background-position: center; }
.experienceImage.large { inset: 0 18% 7% 0; background-image: url('/images/moldabella-facial.png'); }
.experienceImage.small { width: 45%; height: 46%; right: 0; bottom: 0; border: 12px solid var(--paper); background-image: url('/images/moldabella-brows.png'); }
.imageSeal { position: absolute; top: 8%; right: 5%; width: 112px; height: 112px; display: flex; flex-direction: column; justify-content: center; align-items: center; border-radius: 50%; background: var(--brown); color: white; box-shadow: 0 16px 40px rgba(45,29,25,.2); }
.imageSeal span { font: italic 27px Georgia, serif; }
.imageSeal small { margin-top: 5px; color: #d9b8a7; font-size: 7px; letter-spacing: .16em; text-transform: uppercase; }
.experienceCopy h2 { font-size: clamp(52px, 6vw, 82px); }
.experienceLead { max-width: 500px; margin: 30px 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.experienceCopy ol { margin: 36px 0 42px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.experienceCopy li { padding: 22px 0; display: flex; gap: 24px; border-bottom: 1px solid var(--line); }
.experienceCopy li > span { color: var(--rose); font: 12px Georgia, serif; }
.experienceCopy li strong { font: 18px Georgia, serif; }
.experienceCopy li p { margin: 7px 0 0; color: var(--muted); font-size: 12px; }

.professionals { padding: 110px 6vw 130px; display: grid; grid-template-columns: .4fr .9fr 1.1fr; gap: clamp(32px, 6vw, 90px); background: var(--cream); }
.professionalsIntro h2 { font-size: clamp(40px, 4.4vw, 64px); }
.professionalCards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.professionalCards article:nth-child(2) { margin-top: 48px; }
.portrait { aspect-ratio: 4/5; display: grid; place-items: center; overflow: hidden; background: #d9bcb0 center/cover no-repeat; }
.portraitOne { background-image: url('/images/moldabella-professional-ana.png'); }
.portraitTwo { background-image: url('/images/moldabella-professional-larissa.png'); }
.portrait span { display: none; }
.professionalCards h3 { margin: 18px 0 4px; font: 19px Georgia, serif; }
.professionalCards p { margin: 0; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }

.testimonials { padding: 120px 6vw; background: #8b5c4e; color: white; }
.testimonialsHeading { max-width: 760px; margin-bottom: 56px; }
.testimonialsHeading > p:last-child { color: #e5cdc2; font: italic 17px Georgia, serif; }
.testimonialGrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonialGrid article { min-height: 300px; padding: 34px; display: flex; flex-direction: column; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); }
.stars { color: #f0cbbb; font-size: 10px; letter-spacing: .2em; }
.testimonialGrid blockquote { margin: 32px 0; flex: 1; color: #fffaf6; font: italic 18px/1.55 Georgia, serif; }
.testimonialPerson { display: flex; align-items: center; gap: 13px; }
.testimonialPerson > span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: #edcfc1; color: var(--rose-dark); font: 11px Georgia, serif; }
.testimonialPerson div { display: flex; flex-direction: column; }
.testimonialPerson strong { font: 12px Georgia, serif; }
.testimonialPerson small { margin-top: 3px; color: #d9bbb0; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }

.finalCta { position: relative; padding: 130px 24px; text-align: center; overflow: hidden; background: #ead6cc; }
.finalCta .eyebrow { justify-content: center; }
.finalCta h2 { font-size: clamp(48px, 6vw, 82px); }
.finalCta > p:not(.eyebrow) { margin: 27px 0 32px; color: var(--muted); font-size: 14px; }
.ctaDecoration { position: absolute; color: rgba(140,92,77,.18); font-size: 120px; }
.ctaOne { left: 7%; top: 18%; }
.ctaTwo { right: 8%; bottom: 8%; font-size: 70px; }

footer { padding: 75px 6vw 24px; background: var(--brown); color: white; }
.footerMain { padding-bottom: 58px; display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; }
.footerBrand { align-self: start; }
.footerBrand .brandMark { border-color: #c79781; color: #e0b5a0; }
.footerBrand .brandText small { color: #bba8a1; }
.footerMain > div strong { color: #d4aa96; font-size: 9px; letter-spacing: .16em; text-transform: uppercase; }
.footerMain > div p { color: #b9a8a2; font-size: 11px; line-height: 1.8; }
.footerBottom { padding-top: 22px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); color: #95847e; font-size: 9px; }
.footerBottom a { color: #cda490; }
.whatsappFloat { position: fixed; right: 24px; bottom: 24px; z-index: 30; min-width: 105px; height: 48px; padding: 0 16px; display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 28px; background: #2f8f65; color: white; box-shadow: 0 9px 30px rgba(30,80,57,.28); }
.whatsappFloat span { font-size: 20px; }
.whatsappFloat small { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 1050px) {
  nav { display: none; }
  .hero { grid-template-columns: 55% 45%; }
  .hero h1 { font-size: clamp(52px, 7vw, 70px); }
  .serviceGrid { grid-template-columns: 1fr 1fr; }
  .serviceCard:nth-child(2) { border-right: 0; }
  .serviceCard:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .intro { grid-template-columns: .35fr 1.4fr; }
  .introQuote { display: none; }
  .professionals { grid-template-columns: .35fr 1fr; }
  .professionalCards { grid-column: 2; }
}

@media (max-width: 760px) {
  .topbar { gap: 8px; font-size: 7px; }
  .siteHeader { height: 72px; padding: 0 18px; }
  .brandMark { width: 38px; height: 38px; }
  .brandText strong { font-size: 20px; }
  .buttonSmall { min-height: 38px; padding: 0 13px; }
  .hero { min-height: auto; display: flex; flex-direction: column; }
  .heroContent { padding: 70px 22px 58px; }
  .hero h1 { font-size: clamp(50px, 14vw, 68px); }
  .heroLead { margin: 25px 0; }
  .heroActions { align-items: stretch; flex-direction: column; gap: 20px; }
  .heroActions .button { width: 100%; }
  .heroProof { margin-top: 50px; justify-content: space-between; gap: 8px; }
  .heroProof strong { font-size: 20px; }
  .heroProof span { font-size: 7px; }
  .heroVisual { min-height: 540px; }
  .heroBadge { left: 20px; bottom: 20px; width: 120px; height: 120px; }
  .intro, .services, .experience, .professionals, .testimonials { padding: 82px 22px; }
  .intro { display: block; }
  .sectionLabel { margin-bottom: 45px; }
  .intro h2 { font-size: 44px; }
  .sectionHeading { align-items: start; flex-direction: column; }
  .sectionHeading h2, .testimonials h2 { font-size: 45px; }
  .serviceGrid { grid-template-columns: 1fr; }
  .serviceCard { min-height: 330px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .serviceCard:last-child { border-bottom: 0; }
  .experience { grid-template-columns: 1fr; }
  .experienceGallery { min-height: 480px; }
  .experienceCopy h2 { font-size: 57px; }
  .professionals { display: block; }
  .professionalCards { margin-top: 55px; gap: 14px; }
  .professionalCards article:nth-child(2) { margin-top: 30px; }
  .professionalCards h3 { font-size: 15px; }
  .professionalCards p { font-size: 7px; }
  .testimonialGrid { grid-template-columns: 1fr; }
  .finalCta { padding: 90px 22px; }
  .finalCta h2 { font-size: 52px; }
  .ctaDecoration { display: none; }
  footer { padding: 60px 22px 20px; }
  .footerMain { grid-template-columns: 1fr 1fr; }
  .footerBrand { grid-column: 1 / -1; margin-bottom: 20px; }
  .footerBottom { flex-direction: column; gap: 12px; }
  .whatsappFloat { right: 14px; bottom: 14px; min-width: 50px; width: 50px; padding: 0; }
  .whatsappFloat small { display: none; }
}

@media (max-width: 420px) {
  .brandText small { display: none; }
  .buttonSmall { font-size: 8px; }
  .heroProof div:last-child { display: none; }
  .heroProof i:last-of-type { display: none; }
}
