
:root {
  --ink: #1d1417;
  --muted: #6f6264;
  --pink: #d81b71;
  --pink-dark: #b60e59;
  --pink-soft: #fbe7ef;
  --gold: #b67a2d;
  --cream: #fbf7f2;
  --beige: #efe2d4;
  --white: #ffffff;
  --line: rgba(29, 20, 23, .12);
  --shadow: 0 24px 70px rgba(58, 33, 40, .13);
  --radius-lg: 34px;
  --radius-md: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button, a { -webkit-tap-highlight-color: transparent; }

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
}

.skip-link:focus { top: 16px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  min-height: 36px;
  padding: 8px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.topbar-dot { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 247, 242, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(29, 20, 23, .07);
  border-color: var(--line);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand span { display: grid; }

.brand strong {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--pink);
  font-size: 21px;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--pink);
  transition: right .25s ease;
}

.main-nav > a:not(.nav-cta):hover::after { right: 0; }

.nav-cta {
  padding: 11px 18px;
  color: white;
  background: var(--pink);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 3px;
}

.hero {
  position: relative;
  min-height: 700px;
  display: grid;
  align-items: center;
  padding: 72px 0 92px;
  background:
    radial-gradient(circle at 12% 15%, rgba(216, 27, 113, .10), transparent 33%),
    linear-gradient(135deg, #fbf7f2 0%, #f8eee5 100%);
  isolation: isolate;
}

.hero-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(6px);
  opacity: .55;
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  right: -160px;
  top: 30px;
  background: rgba(216, 27, 113, .17);
}

.hero-glow-two {
  width: 260px;
  height: 260px;
  left: -110px;
  bottom: 40px;
  background: rgba(182, 122, 45, .12);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.promo-copy h2,
.salon-copy h2,
.brushes-copy h2,
.faq-intro h2,
.contact-card h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(48px, 6.2vw, 82px);
  letter-spacing: -.035em;
}

.hero h1 em {
  color: var(--pink);
  font-weight: 600;
}

.hero-lead {
  max-width: 610px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

.btn {
  min-height: 50px;
  padding: 13px 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--pink), #ef3b8a);
  box-shadow: 0 13px 30px rgba(216, 27, 113, .24);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(216, 27, 113, .32);
}

.btn-ghost {
  border-color: rgba(29, 20, 23, .24);
  background: rgba(255, 255, 255, .48);
}

.btn-dark {
  color: white;
  background: var(--ink);
}

.hero-trust {
  margin-top: 31px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust span {
  padding: 8px 13px;
  color: #55484b;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(29, 20, 23, .08);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 180px 180px 34px 34px;
  box-shadow: var(--shadow);
  background: #8b6a5a;
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22);
  border-radius: inherit;
  pointer-events: none;
}

.hero-image-frame img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: center;
}

.floating-note {
  position: absolute;
  left: -34px;
  bottom: 38px;
  width: 245px;
  padding: 18px 20px;
  display: grid;
  gap: 3px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(29, 20, 23, .08);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(29, 20, 23, .13);
  backdrop-filter: blur(12px);
}

.floating-note strong {
  color: var(--pink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 19px;
}

.floating-note span {
  color: var(--muted);
  font-size: 12px;
}

.section { padding: 110px 0; }

.promo-section {
  background: #fff;
}

.promo-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.promo-image {
  position: relative;
  min-height: 670px;
  overflow: hidden;
}

.promo-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 58%, rgba(29, 20, 23, .48));
}

.promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-tag {
  position: absolute;
  z-index: 2;
  left: 24px;
  top: 24px;
  padding: 8px 13px;
  color: var(--ink);
  background: white;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.promo-copy {
  padding: 70px 62px;
  color: white;
}

.promo-copy .eyebrow { color: #ffc6de; }

.promo-copy h2 {
  font-size: clamp(40px, 4vw, 58px);
}

.promo-copy h2 span { color: #ff80b8; }

.promo-subtitle {
  margin: 22px 0 30px;
  color: rgba(255,255,255,.70);
}

.price-panel {
  margin: 0 0 28px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.price-panel > div {
  display: grid;
  align-content: center;
}

.price-kicker,
.minimum span {
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.price-panel strong {
  color: white;
  line-height: 1;
}

.price-panel > div:first-child strong {
  margin: 4px 0 3px;
  color: #ff80b8;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 78px;
}

.price-panel sup {
  font-size: 30px;
  vertical-align: super;
}

.price-panel > div:first-child > span:last-child {
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

.minimum {
  padding-left: 26px;
  border-left: 1px solid rgba(255,255,255,.16);
}

.minimum strong {
  margin: 10px 0 5px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 29px;
}

.minimum small { color: rgba(255,255,255,.66); }

.check-list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 9px 0;
  padding-left: 26px;
  color: rgba(255,255,255,.83);
  font-size: 14px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #ff80b8;
  font-weight: 700;
}

.promo-copy .btn-primary {
  box-shadow: 0 13px 32px rgba(216, 27, 113, .34);
}

.promo-copy .btn-dark {
  border-color: rgba(255,255,255,.28);
  background: transparent;
}

.products-section {
  background: var(--cream);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(38px, 5vw, 58px);
}

.section-heading > p:last-child {
  margin: 16px auto 0;
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 13px 42px rgba(45, 25, 31, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 48px rgba(45, 25, 31, .11);
}

.product-image {
  position: relative;
  height: 390px;
  overflow: hidden;
  background: var(--beige);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.product-image > span {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 7px 11px;
  background: rgba(255,255,255,.92);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-body { padding: 26px; }

.product-label {
  margin: 0 0 7px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 0 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
}

.product-body > p:not(.product-label) {
  min-height: 52px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink);
  font-weight: 700;
  font-size: 13px;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span { transform: translateX(4px); }

.salon-section {
  color: white;
  background:
    radial-gradient(circle at 85% 20%, rgba(216, 27, 113, .25), transparent 35%),
    var(--ink);
}

.salon-grid {
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  gap: 70px;
  align-items: center;
}

.salon-copy .eyebrow { color: #ff9ac5; }

.salon-copy h2,
.brushes-copy h2,
.faq-intro h2 {
  font-size: clamp(40px, 4.5vw, 58px);
}

.salon-copy > p:not(.eyebrow) {
  color: rgba(255,255,255,.72);
}

.benefit-grid {
  margin: 31px 0 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.benefit-grid > div {
  padding: 22px 12px;
  display: grid;
}

.benefit-grid > div + div {
  border-left: 1px solid rgba(255,255,255,.14);
}

.benefit-grid strong {
  color: #ff80b8;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
}

.benefit-grid span {
  color: rgba(255,255,255,.67);
  font-size: 11px;
  text-transform: uppercase;
}

.salon-image {
  overflow: hidden;
  min-height: 590px;
  border-radius: 150px 24px 24px 24px;
  box-shadow: 0 25px 80px rgba(0,0,0,.27);
}

.salon-image img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.choice-section { background: white; }

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.choice-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, white, #fff8fb);
}

.choice-number {
  display: inline-block;
  color: var(--pink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
}

.choice-card h3 {
  margin: 26px 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 31px;
}

.choice-card p {
  margin: 0;
  color: var(--muted);
}

.brushes-section {
  background: #eadacb;
}

.brushes-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 68px;
  align-items: center;
}

.brushes-image {
  overflow: hidden;
  border-radius: 30px 130px 30px 30px;
  box-shadow: var(--shadow);
}

.brushes-image img {
  width: 100%;
  height: 570px;
  object-fit: cover;
}

.brushes-copy p:not(.eyebrow) {
  margin: 22px 0 30px;
  color: #615356;
}

.why-section { background: var(--cream); }

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

.why-card {
  padding: 30px 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.why-card > span {
  color: var(--gold);
  font-size: 22px;
}

.why-card h3 {
  margin: 17px 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.faq-section { background: white; }

.faq-grid {
  display: grid;
  grid-template-columns: .74fr 1.26fr;
  gap: 80px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 18px;
  color: var(--pink);
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 400;
}

.faq-list details[open] summary::after { content: "−"; }

.faq-list details p {
  margin: -4px 0 24px;
  padding-right: 36px;
  color: var(--muted);
}

.contact-section {
  padding: 50px 0 110px;
  background: white;
}

.contact-card {
  padding: 34px 42px;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  gap: 34px;
  align-items: center;
  background: linear-gradient(135deg, #fff7fb 0%, #f4e4d6 100%);
  border: 1px solid rgba(216, 27, 113, .13);
  border-radius: var(--radius-lg);
}

.contact-card img {
  width: 165px;
  max-height: 150px;
  object-fit: contain;
}

.contact-card h2 {
  max-width: 620px;
  font-size: clamp(30px, 3.4vw, 44px);
}

.site-footer {
  padding: 70px 0 24px;
  color: rgba(255,255,255,.74);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 42px;
}

.footer-grid > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-brand {
  color: #ff83b9;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 31px;
}

.footer-grid p {
  margin: 6px 0 0;
  font-size: 13px;
}

.footer-grid h3 {
  margin: 5px 0 8px;
  color: white;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  font-size: 13px;
}

.footer-grid a:hover { color: white; }

.footer-bottom {
  margin-top: 48px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 11px;
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: white;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 13px 35px rgba(0,0,0,.22);
  transition: transform .22s ease, box-shadow .22s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 17px 42px rgba(0,0,0,.28);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .product-image img, .btn, .text-link span { transition: none; }
}

@media (max-width: 980px) {
  .main-nav { gap: 18px; }
  .hero-grid,
  .salon-grid,
  .brushes-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 55px;
  }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { width: min(100%, 700px); margin-inline: auto; }
  .promo-card { grid-template-columns: 1fr; }
  .promo-image { min-height: 520px; }
  .promo-image::after {
    background: linear-gradient(to bottom, transparent 60%, rgba(29,20,23,.42));
  }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-card:last-child { grid-column: 1 / -1; max-width: calc(50% - 12px); justify-self: center; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-intro { position: static; }
  .contact-card {
    grid-template-columns: 130px 1fr;
  }
  .contact-card .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .topbar-dot, .topbar span:nth-of-type(3), .topbar span:nth-of-type(4), .topbar span:nth-of-type(5) {
    display: none;
  }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 42px; height: 42px; }
  .brand strong { font-size: 19px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    padding: 18px;
    display: none;
    align-items: stretch;
    gap: 4px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: 10px 12px; }
  .main-nav .nav-cta { text-align: center; }
  .hero {
    min-height: auto;
    padding: 50px 0 72px;
  }
  .hero-grid { gap: 45px; }
  .hero h1 { font-size: clamp(44px, 13vw, 64px); }
  .hero-image-frame { border-radius: 110px 110px 24px 24px; }
  .hero-image-frame img { height: 480px; }
  .floating-note {
    left: 14px;
    right: 14px;
    bottom: 18px;
    width: auto;
  }
  .section { padding: 78px 0; }
  .promo-image { min-height: 430px; }
  .promo-copy { padding: 45px 28px; }
  .price-panel { grid-template-columns: 1fr; }
  .minimum {
    padding: 20px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.16);
  }
  .product-grid,
  .choice-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
  .product-card:last-child {
    grid-column: auto;
    max-width: none;
  }
  .product-image { height: 420px; }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .benefit-grid > div + div {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.14);
  }
  .salon-image,
  .salon-image img { min-height: 450px; }
  .brushes-image img { height: 460px; }
  .contact-card {
    grid-template-columns: 1fr;
    padding: 32px 26px;
    text-align: center;
  }
  .contact-card img { margin-inline: auto; }
  .contact-card .btn { justify-self: stretch; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 520px) {
  .container { width: min(calc(100% - 26px), var(--container)); }
  .brand small { display: none; }
  .hero-actions .btn, .button-row .btn { width: 100%; }
  .hero-image-frame img { height: 410px; }
  .promo-image { min-height: 350px; }
  .promo-copy h2 { font-size: 39px; }
  .price-panel > div:first-child strong { font-size: 66px; }
  .product-image { height: 360px; }
  .footer-grid { grid-template-columns: 1fr; }
}
