:root {
  --blush: #f7c6d9;
  --rose: #b76e79;
  --cream: #fff4ec;
  --nude: #d9a7a0;
  --cocoa: #5a3a36;
  --ink: #2f2422;
  --sage: #7e8b74;
  --plum: #7d4b63;
  --coral: #e58a84;
  --champagne: #f4d7a1;
  --mint: #b7d8c5;
  --lilac: #c7a8d8;
  --ivory: #fffaf6;
  --white: #ffffff;
  --line: rgba(90, 58, 54, 0.14);
  --glass: rgba(255, 250, 246, 0.78);
  --glass-strong: rgba(255, 255, 255, 0.9);
  --shadow-soft: 0 22px 70px rgba(90, 58, 54, 0.12);
  --shadow-hover: 0 30px 90px rgba(183, 110, 121, 0.24);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --container: 1180px;
  --display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --body: "Segoe UI", Inter, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body);
  color: var(--cocoa);
  background:
    radial-gradient(circle at 12% 10%, rgba(247, 198, 217, 0.42), transparent 34%),
    radial-gradient(circle at 88% 8%, rgba(126, 139, 116, 0.14), transparent 30%),
    linear-gradient(135deg, #fff8f2 0%, var(--cream) 45%, #ffeaf1 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 78%, rgba(217, 167, 160, 0.2), transparent 26%),
    radial-gradient(circle at 82% 64%, rgba(183, 110, 121, 0.16), transparent 28%);
  animation: backgroundDrift 18s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(90, 58, 54, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 58, 54, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 70%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.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;
}

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

.section {
  position: relative;
  padding: 100px 0;
}

.section.tight {
  padding: 70px 0;
}

.section-band {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(247, 198, 217, 0.22));
  border-top: 1px solid rgba(183, 110, 121, 0.12);
  border-bottom: 1px solid rgba(183, 110, 121, 0.12);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-header.align-left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--rose);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose));
}

.eyebrow::after {
  background: linear-gradient(90deg, var(--rose), transparent);
}

.align-left .eyebrow::before {
  display: none;
}

h1,
h2,
h3,
h4,
.brand-name,
.metric-value,
.stat-number {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  margin: 0;
  font-size: clamp(2.65rem, 5vw, 4.85rem);
  letter-spacing: 0;
  line-height: 1.08;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  line-height: 1.12;
}

h3 {
  margin: 0;
  font-size: clamp(1.22rem, 1.65vw, 1.68rem);
  line-height: 1.18;
}

h4 {
  margin: 0;
  font-size: 1.16rem;
}

p {
  margin: 0;
  color: rgba(90, 58, 54, 0.78);
  line-height: 1.75;
}

.lead {
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
  max-width: 700px;
}

.text-link {
  color: var(--rose);
  font-weight: 800;
  border-bottom: 1px solid rgba(183, 110, 121, 0.34);
}

.mt-18 {
  margin-top: 18px;
}

.mt-24 {
  margin-top: 24px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.site-header.scrolled,
.site-header.nav-open {
  background: rgba(255, 244, 236, 0.9);
  box-shadow: 0 16px 40px rgba(90, 58, 54, 0.08);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1240px, calc(100% - 32px));
  height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(183, 110, 121, 0.4);
  border-radius: 50%;
  color: var(--white);
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.75), transparent 24%),
    linear-gradient(135deg, var(--rose), var(--nude));
  box-shadow: 0 12px 30px rgba(183, 110, 121, 0.26);
  font-family: var(--display);
  font-weight: 800;
}

.brand-copy {
  display: grid;
  gap: 1px;
}

.brand-name {
  font-size: 1.1rem;
}

.brand-kicker {
  color: rgba(90, 58, 54, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 24px);
}

.nav-link {
  position: relative;
  padding: 9px 0;
  color: rgba(90, 58, 54, 0.76);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--blush));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-link:hover,
.nav-link.active,
.nav-link[aria-current="page"] {
  color: var(--rose);
}

.nav-link:hover::after,
.nav-link.active::after,
.nav-link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(183, 110, 121, 0.28);
  border-radius: 50%;
  color: var(--cocoa);
  background: rgba(255, 255, 255, 0.68);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.72) 44%, transparent 58%);
  transform: translateX(-120%);
  transition: transform 540ms ease;
}

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

.btn:hover::before {
  transform: translateX(120%);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), #cc8992);
  box-shadow: 0 18px 38px rgba(183, 110, 121, 0.26);
}

.btn-secondary {
  color: var(--rose);
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(183, 110, 121, 0.22);
  box-shadow: 0 16px 34px rgba(90, 58, 54, 0.08);
}

.btn-ghost {
  color: var(--cocoa);
  background: rgba(255, 244, 236, 0.48);
  border-color: rgba(90, 58, 54, 0.12);
}

.btn-small {
  min-height: 42px;
  padding: 12px 16px;
  font-size: 0.86rem;
}

.btn-wide {
  width: 100%;
}

.btn-icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  font-size: 0.78rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero {
  position: relative;
  min-height: 88vh;
  padding: 122px 0 64px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::before,
.page-hero::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: auto -16% 6% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 198, 217, 0.54), transparent 68%);
  filter: blur(6px);
  pointer-events: none;
  animation: softPulse 6s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: clamp(40px, 7vw, 88px);
}

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

.hero-copy h1 span,
.text-gradient {
  color: transparent;
  background: linear-gradient(110deg, var(--rose), var(--nude), var(--sage));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-subline {
  margin-top: 22px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(183, 110, 121, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: rgba(90, 58, 54, 0.72);
  font-size: 0.84rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(90, 58, 54, 0.07);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 6px rgba(183, 110, 121, 0.14);
}

.creator-composition {
  position: relative;
  min-height: 570px;
}

.portrait-card {
  position: absolute;
  inset: 28px 7% 28px 15%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 42px;
  background:
    radial-gradient(circle at 68% 16%, rgba(255, 255, 255, 0.86), transparent 22%),
    linear-gradient(145deg, rgba(247, 198, 217, 0.74), rgba(255, 244, 236, 0.9) 54%, rgba(217, 167, 160, 0.58));
  box-shadow: 0 34px 90px rgba(90, 58, 54, 0.18);
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(183, 110, 121, 0.18);
  border-radius: 32px;
}

.portrait-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4%;
  width: 78%;
  height: 52%;
  border-radius: 48% 48% 0 0;
  background:
    radial-gradient(circle at 46% 20%, rgba(255, 255, 255, 0.34), transparent 22%),
    linear-gradient(135deg, rgba(90, 58, 54, 0.9), rgba(183, 110, 121, 0.88));
  transform: translateX(-50%);
}

.portrait-face {
  position: absolute;
  left: 50%;
  top: 23%;
  width: 150px;
  height: 182px;
  border-radius: 48% 48% 44% 44%;
  background:
    radial-gradient(circle at 35% 40%, rgba(255, 255, 255, 0.42), transparent 12%),
    linear-gradient(155deg, #efd0c4, var(--nude));
  transform: translateX(-50%);
  box-shadow: 0 24px 42px rgba(90, 58, 54, 0.18);
  z-index: 2;
}

.portrait-face::before {
  content: "";
  position: absolute;
  left: -28px;
  top: -22px;
  width: 206px;
  height: 150px;
  border-radius: 48% 52% 40% 38%;
  background: linear-gradient(145deg, #49302d, #7a4e55 66%, var(--rose));
  z-index: -1;
}

.portrait-neck {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 92px;
  height: 132px;
  border-radius: 0 0 46px 46px;
  background: linear-gradient(150deg, #e7bdb4, #c88d88);
  transform: translateX(-50%);
  z-index: 1;
}

.beauty-shelf {
  position: absolute;
  right: -5%;
  bottom: 42px;
  width: 192px;
  height: 138px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 22px 58px rgba(90, 58, 54, 0.14);
  backdrop-filter: blur(18px);
  animation: floatY 5.8s ease-in-out infinite;
}

.beauty-shelf::before,
.beauty-shelf::after {
  content: "";
  position: absolute;
  bottom: 24px;
  border-radius: 999px 999px 14px 14px;
  box-shadow: inset 0 12px 18px rgba(255, 255, 255, 0.42);
}

.beauty-shelf::before {
  left: 38px;
  width: 38px;
  height: 84px;
  background: linear-gradient(180deg, var(--blush), var(--rose));
}

.beauty-shelf::after {
  right: 38px;
  width: 52px;
  height: 62px;
  background: linear-gradient(180deg, #fff, var(--nude));
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 5px;
  min-width: 154px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 22px 54px rgba(90, 58, 54, 0.13);
  backdrop-filter: blur(18px);
  animation: floatY 6s ease-in-out infinite;
}

.floating-card strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.56rem;
  line-height: 1;
}

.floating-card span {
  color: rgba(90, 58, 54, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.floating-card.one {
  left: 0;
  top: 88px;
}

.floating-card.two {
  right: 0;
  top: 38px;
  animation-delay: -1.3s;
}

.floating-card.three {
  left: 24px;
  bottom: 34px;
  animation-delay: -2.4s;
}

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

.metric-card,
.glass-card,
.service-card,
.package-card,
.testimonial-card,
.blog-card,
.portfolio-card,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(183, 110, 121, 0.16);
  border-radius: var(--radius-lg);
  background: var(--glass);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.metric-card:hover,
.glass-card:hover,
.service-card:hover,
.package-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.portfolio-card:hover,
.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(183, 110, 121, 0.34);
  box-shadow: var(--shadow-hover);
}

.metric-card {
  padding: 24px;
  min-height: 146px;
  display: grid;
  align-content: space-between;
}

.metric-card::before,
.service-card::before,
.package-card::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 45%);
  pointer-events: none;
}

.metric-value {
  display: block;
  color: var(--rose);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

.metric-label {
  color: rgba(90, 58, 54, 0.66);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.logo-pill {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(183, 110, 121, 0.15);
  border-radius: 999px;
  color: rgba(90, 58, 54, 0.68);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: 0 16px 34px rgba(90, 58, 54, 0.07);
  font-family: var(--display);
  font-weight: 800;
  text-align: center;
}

.split-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.glass-card {
  padding: 28px;
}

.glass-card .card-icon,
.service-card .card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--nude));
  box-shadow: 0 16px 34px rgba(183, 110, 121, 0.22);
  font-weight: 900;
}

.glass-card h3,
.service-card h3,
.package-card h3,
.blog-card h3 {
  margin-bottom: 12px;
}

.feature-list,
.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(90, 58, 54, 0.76);
  line-height: 1.6;
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 5px rgba(183, 110, 121, 0.12);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.page-hero {
  position: relative;
  padding: 128px 0 68px;
  overflow: hidden;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.76fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.page-hero h1 {
  max-width: 840px;
}

.page-hero .lead {
  margin-top: 22px;
}

.mini-visual {
  position: relative;
  min-height: 350px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 36px;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.9), transparent 26%),
    linear-gradient(145deg, rgba(247, 198, 217, 0.7), rgba(255, 244, 236, 0.9), rgba(217, 167, 160, 0.48));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.mini-visual::before {
  content: "";
  position: absolute;
  left: 14%;
  bottom: -12%;
  width: 58%;
  height: 74%;
  border-radius: 42% 42% 0 0;
  background: linear-gradient(135deg, rgba(90, 58, 54, 0.88), rgba(183, 110, 121, 0.78));
}

.mini-visual::after {
  content: "";
  position: absolute;
  right: 10%;
  top: 18%;
  width: 132px;
  height: 190px;
  border-radius: 999px 999px 20px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0 18%, transparent 18%),
    linear-gradient(180deg, var(--blush), var(--rose));
  box-shadow: 0 22px 48px rgba(90, 58, 54, 0.13);
  animation: floatY 5.6s ease-in-out infinite;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(var(--rose), transparent);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
}

.timeline-dot {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--nude));
  box-shadow: 0 14px 34px rgba(183, 110, 121, 0.22);
  font-weight: 900;
  z-index: 1;
}

.timeline-card {
  padding: 22px;
  border: 1px solid rgba(183, 110, 121, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 14px 36px rgba(90, 58, 54, 0.07);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-btn {
  min-height: 42px;
  padding: 11px 18px;
  border: 1px solid rgba(183, 110, 121, 0.2);
  border-radius: 999px;
  color: rgba(90, 58, 54, 0.76);
  background: rgba(255, 255, 255, 0.54);
  font-weight: 900;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--nude));
  transform: translateY(-2px);
}

.portfolio-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
}

.portfolio-card.is-hidden {
  display: none;
}

.visual-thumb {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 255, 255, 0.76), transparent 22%),
    linear-gradient(145deg, rgba(247, 198, 217, 0.86), rgba(255, 244, 236, 0.88), rgba(217, 167, 160, 0.54));
}

.visual-thumb::before,
.visual-thumb::after {
  content: "";
  position: absolute;
  transition: transform 420ms ease;
}

.portfolio-card:hover .visual-thumb::before,
.portfolio-card:hover .visual-thumb::after,
.blog-card:hover .visual-thumb::before,
.blog-card:hover .visual-thumb::after {
  transform: scale(1.08) rotate(2deg);
}

.visual-beauty::before {
  left: 22%;
  bottom: 22%;
  width: 92px;
  height: 132px;
  border-radius: 999px 999px 18px 18px;
  background: linear-gradient(180deg, #fff, var(--blush), var(--rose));
  box-shadow: 0 24px 44px rgba(90, 58, 54, 0.16);
}

.visual-beauty::after {
  right: 18%;
  bottom: 18%;
  width: 132px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, var(--nude));
  box-shadow: inset 0 0 0 16px rgba(183, 110, 121, 0.18);
}

.visual-fashion::before {
  left: 20%;
  bottom: 0;
  width: 138px;
  height: 220px;
  border-radius: 72px 72px 12px 12px;
  background: linear-gradient(135deg, var(--cocoa), var(--rose));
}

.visual-fashion::after {
  right: 20%;
  top: 26%;
  width: 122px;
  height: 170px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(217, 167, 160, 0.52));
  transform: rotate(8deg);
}

.visual-skincare::before {
  left: 18%;
  bottom: 15%;
  width: 72px;
  height: 162px;
  border-radius: 999px 999px 16px 16px;
  background: linear-gradient(180deg, #fff, #fce4ec);
  box-shadow: 82px 24px 0 -12px rgba(183, 110, 121, 0.62);
}

.visual-skincare::after {
  right: 16%;
  bottom: 18%;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #fff, var(--blush));
  box-shadow: 0 18px 42px rgba(90, 58, 54, 0.14);
}

.visual-lifestyle::before {
  left: 16%;
  top: 24%;
  width: 168px;
  height: 190px;
  border-radius: 28px;
  background: linear-gradient(145deg, #fff, var(--blush));
  transform: rotate(-7deg);
}

.visual-lifestyle::after {
  right: 16%;
  bottom: 18%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 46% 46%, transparent 28%, rgba(90, 58, 54, 0.84) 29% 36%, transparent 37%),
    linear-gradient(135deg, var(--rose), var(--nude));
}

.visual-ugc::before {
  left: 18%;
  bottom: 14%;
  width: 120px;
  height: 212px;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--ink), var(--cocoa));
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.12);
}

.visual-ugc::after {
  right: 18%;
  top: 20%;
  width: 118px;
  height: 88px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 48px rgba(90, 58, 54, 0.12);
}

.visual-events::before {
  left: 16%;
  bottom: 12%;
  width: 190px;
  height: 116px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(183, 110, 121, 0.48));
  transform: rotate(-4deg);
}

.visual-events::after {
  right: 18%;
  top: 18%;
  width: 112px;
  height: 180px;
  border-radius: 999px 999px 14px 14px;
  background: linear-gradient(180deg, var(--blush), var(--rose));
}

.card-body {
  padding: 24px;
}

.card-meta {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--rose);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.impact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.impact-card {
  padding: 26px;
  border: 1px solid rgba(183, 110, 121, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
  box-shadow: 0 16px 38px rgba(90, 58, 54, 0.08);
}

.package-card {
  padding: 30px;
}

.package-card.popular {
  border-color: rgba(183, 110, 121, 0.42);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(247, 198, 217, 0.34)),
    var(--glass);
  transform: translateY(-12px);
}

.popular-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--nude));
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.package-note {
  color: var(--rose);
  font-weight: 900;
  margin: 16px 0 18px;
}

.testimonial-shell {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 500ms ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 4px;
}

.testimonial-card {
  padding: 32px;
}

.proof-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(183, 110, 121, 0.2);
  border-radius: 999px;
  color: var(--rose);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 26px rgba(90, 58, 54, 0.07);
  font-size: 0.74rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-badge::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 6px rgba(126, 139, 116, 0.14);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--cocoa));
  font-weight: 900;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(183, 110, 121, 0.22);
  border-radius: 50%;
  color: var(--rose);
  background: rgba(255, 255, 255, 0.68);
  font-weight: 900;
}

.video-placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.82), transparent 24%),
    linear-gradient(135deg, rgba(90, 58, 54, 0.78), rgba(183, 110, 121, 0.68));
  box-shadow: var(--shadow-soft);
}

.play-button {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--rose);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(90, 58, 54, 0.22);
  font-weight: 900;
}

.blog-card {
  display: flex;
  flex-direction: column;
}

.blog-card .visual-thumb {
  min-height: 220px;
}

.blog-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.blog-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.lead-panel {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid rgba(183, 110, 121, 0.16);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(247, 198, 217, 0.18)),
    rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

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

.field {
  display: grid;
  gap: 8px;
}

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

.field label {
  color: rgba(90, 58, 54, 0.78);
  font-size: 0.86rem;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(183, 110, 121, 0.18);
  border-radius: 16px;
  color: var(--cocoa);
  background: rgba(255, 255, 255, 0.72);
  outline: none;
  padding: 14px 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.field textarea {
  min-height: 136px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(183, 110, 121, 0.56);
  box-shadow: 0 0 0 5px rgba(247, 198, 217, 0.34);
  background: rgba(255, 255, 255, 0.94);
}

.input-error {
  border-color: #b3261e !important;
}

.error-text {
  min-height: 16px;
  color: #9b221d;
  font-size: 0.76rem;
  font-weight: 800;
}

.form-status {
  display: none;
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(126, 139, 116, 0.24);
  border-radius: 16px;
  color: #46533f;
  background: rgba(126, 139, 116, 0.12);
  font-weight: 800;
}

.form-status.active {
  display: block;
}

.whatsapp-after {
  display: none;
  margin-top: 16px;
}

.whatsapp-after.active {
  display: inline-flex;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
  align-items: start;
}

.contact-card {
  padding: 28px;
}

.quick-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.quick-chip {
  padding: 10px 13px;
  border: 1px solid rgba(183, 110, 121, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(90, 58, 54, 0.78);
  font-size: 0.84rem;
  font-weight: 900;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(38px, 6vw, 68px);
  border: 1px solid rgba(183, 110, 121, 0.18);
  border-radius: 36px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.7), transparent 24%),
    linear-gradient(135deg, rgba(247, 198, 217, 0.62), rgba(255, 244, 236, 0.9), rgba(217, 167, 160, 0.4));
  box-shadow: var(--shadow-soft);
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.site-footer {
  padding: 72px 0 26px;
  background:
    linear-gradient(145deg, rgba(90, 58, 54, 0.96), rgba(73, 48, 45, 0.98)),
    var(--cocoa);
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 0.9fr;
  gap: 34px;
}

.site-footer .brand-name,
.site-footer h3,
.site-footer h4 {
  color: var(--white);
}

.site-footer p,
.site-footer a {
  color: rgba(255, 244, 236, 0.74);
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.footer-links a:hover {
  color: var(--blush);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 244, 236, 0.14);
  color: rgba(255, 244, 236, 0.62);
  font-size: 0.88rem;
}

.wa-launcher {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 244, 236, 0.82);
  border-radius: 50%;
  color: var(--white);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.76), transparent 24%),
    linear-gradient(135deg, #1c9b59 0%, #25d366 48%, var(--rose) 100%);
  box-shadow:
    0 18px 48px rgba(37, 211, 102, 0.25),
    0 0 0 10px rgba(183, 110, 121, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  font-weight: 1000;
  letter-spacing: 0;
  animation: waPulse 2.4s ease-in-out infinite;
}

.wa-launcher-orbit {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(183, 110, 121, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.wa-launcher-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
  font-weight: 1000;
  line-height: 1;
}

.wa-panel {
  position: fixed;
  right: 24px;
  bottom: 108px;
  z-index: 1099;
  width: min(340px, calc(100vw - 32px));
  transform: translateY(18px) scale(0.96);
  transform-origin: bottom right;
  pointer-events: none;
  opacity: 0;
  border: 1px solid rgba(183, 110, 121, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 0%, rgba(247, 198, 217, 0.48), transparent 34%),
    rgba(255, 250, 246, 0.94);
  box-shadow: 0 28px 80px rgba(90, 58, 54, 0.24);
  backdrop-filter: blur(20px);
  transition: opacity 220ms ease, transform 220ms ease;
  overflow: hidden;
}

.wa-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(90, 58, 54, 0.94), rgba(183, 110, 121, 0.9)),
    var(--cocoa);
}

.wa-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.wa-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--rose);
  background: linear-gradient(135deg, var(--white), var(--blush));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8), 0 12px 30px rgba(0, 0, 0, 0.12);
  font-family: var(--display);
  font-size: 1.1rem;
}

.wa-heading {
  display: grid;
  gap: 3px;
}

.wa-heading strong {
  color: var(--white);
  line-height: 1;
}

.wa-heading small {
  color: rgba(255, 244, 236, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
}

.wa-close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
}

.wa-body {
  padding: 15px;
}

.wa-message {
  display: grid;
  gap: 7px;
  padding: 13px;
  border: 1px solid rgba(183, 110, 121, 0.14);
  border-radius: 18px 18px 18px 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(247, 198, 217, 0.3)),
    rgba(255, 255, 255, 0.64);
  color: rgba(90, 58, 54, 0.84);
  font-size: 0.92rem;
  line-height: 1.55;
  box-shadow: 0 14px 34px rgba(90, 58, 54, 0.08);
}

.wa-message strong {
  color: var(--ink);
  line-height: 1.3;
}

.wa-message span {
  color: rgba(90, 58, 54, 0.72);
}

.wa-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 12px;
}

.wa-option {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(183, 110, 121, 0.16);
  border-radius: 16px;
  padding: 10px 12px;
  color: var(--cocoa);
  background: rgba(255, 255, 255, 0.64);
  text-align: left;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.wa-option span,
.wa-option small {
  display: block;
}

.wa-option span {
  color: var(--rose);
  line-height: 1.2;
}

.wa-option small {
  margin-top: 3px;
  color: rgba(90, 58, 54, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
}

.wa-option:hover {
  transform: translateY(-3px);
  border-color: rgba(183, 110, 121, 0.34);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(90, 58, 54, 0.1);
}

.wa-option:nth-child(1) {
  border-left: 4px solid var(--rose);
}

.wa-option:nth-child(2) {
  border-left: 4px solid var(--coral);
}

.wa-option:nth-child(3) {
  border-left: 4px solid var(--champagne);
}

.wa-option:nth-child(4) {
  border-left: 4px solid var(--sage);
}

.wa-option:nth-child(5) {
  border-left: 4px solid var(--lilac);
}

.wa-option:nth-child(6) {
  border-left: 4px solid var(--mint);
}

.wa-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 12px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #1f9f5f, #25d366 54%, var(--rose));
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.22);
  font-weight: 1000;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 100ms;
}

.delay-2 {
  transition-delay: 180ms;
}

.delay-3 {
  transition-delay: 260ms;
}

@keyframes backgroundDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(0, -16px, 0) scale(1.04);
  }
}

@keyframes softPulse {
  0%,
  100% {
    opacity: 0.68;
    transform: scale(1);
  }
  50% {
    opacity: 0.96;
    transform: scale(1.08);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@keyframes waPulse {
  0%,
  100% {
    box-shadow: 0 18px 48px rgba(37, 211, 102, 0.25), 0 0 0 8px rgba(183, 110, 121, 0.1);
  }
  50% {
    box-shadow: 0 18px 54px rgba(37, 211, 102, 0.32), 0 0 0 16px rgba(183, 110, 121, 0.05);
  }
}

body.luxury-ready {
  background:
    radial-gradient(circle at 8% 8%, rgba(247, 198, 217, 0.52), transparent 28%),
    radial-gradient(circle at 78% 4%, rgba(126, 139, 116, 0.18), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(183, 110, 121, 0.2), transparent 34%),
    linear-gradient(135deg, #fffaf6 0%, #fff4ec 43%, #ffe7ef 100%);
}

.hero,
.page-hero {
  isolation: isolate;
}

.hero-grid,
.page-hero-grid {
  perspective: 1400px;
}

.creator-composition {
  perspective: 1400px;
  transform-style: preserve-3d;
}

.editorial-frame,
.mini-photo-card,
.image-visual,
.image-thumb,
.video-image {
  margin: 0;
}

.editorial-frame {
  position: absolute;
  inset: 0 12% 0 7%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 52px;
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 0 36px 110px rgba(90, 58, 54, 0.24);
  transform-style: preserve-3d;
}

.editorial-frame::before,
.image-visual::before,
.image-thumb::before,
.video-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  width: auto;
  height: auto;
  border-radius: 0;
  transform: none;
  box-shadow: none;
  animation: none;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 32%),
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.34), transparent 25%),
    linear-gradient(135deg, rgba(183, 110, 121, 0.08), rgba(90, 58, 54, 0.12));
}

.editorial-frame::after,
.image-visual::after,
.image-thumb::after,
.video-image::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 3;
  width: auto;
  height: auto;
  transform: none;
  box-shadow: none;
  animation: none;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: inherit;
  opacity: 0.72;
}

.editorial-frame img,
.mini-photo-card img,
.image-visual img,
.image-thumb img,
.video-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.018);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 900ms ease;
}

.hero-photo img {
  object-position: center top;
}

.editorial-frame:hover img,
.image-visual:hover img,
.portfolio-card:hover .image-thumb img,
.blog-card:hover .image-thumb img,
.video-image:hover img {
  transform: scale(1.075);
  filter: saturate(1.08) contrast(1.03);
}

.mini-photo-card {
  position: absolute;
  right: -1%;
  bottom: 8px;
  z-index: 5;
  width: 178px;
  height: 232px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 26px 64px rgba(90, 58, 54, 0.22);
  animation: floatY 6.2s ease-in-out infinite;
}

.mini-photo-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 22px;
  pointer-events: none;
}

.creator-composition .beauty-shelf {
  left: -2%;
  right: auto;
  bottom: 76px;
  z-index: 6;
}

.creator-composition .floating-card {
  z-index: 8;
}

.image-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 32px 100px rgba(90, 58, 54, 0.2);
}

.image-visual img {
  object-position: center top;
}

.image-thumb {
  background: #fff0f4;
}

.visual-thumb.image-thumb {
  min-height: 292px;
}

.portfolio-card .image-thumb {
  min-height: 340px;
}

.blog-card .image-thumb {
  min-height: 238px;
}

.portfolio-card,
.blog-card,
.service-card,
.package-card,
.testimonial-card,
.metric-card,
.contact-card,
.lead-panel {
  transform-style: preserve-3d;
  will-change: transform;
}

.portfolio-card::after,
.blog-card::after,
.service-card::after,
.package-card::after,
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.26) 44%, transparent 56%);
  transform: translateX(-130%);
  transition: transform 760ms ease;
}

.portfolio-card:hover::after,
.blog-card:hover::after,
.service-card:hover::after,
.package-card:hover::after,
.testimonial-card:hover::after {
  transform: translateX(130%);
}

.portfolio-card .card-body,
.blog-card .card-body {
  position: relative;
  z-index: 5;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 244, 236, 0.92)),
    rgba(255, 255, 255, 0.78);
}

.video-image {
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.video-image img {
  position: absolute;
  inset: 0;
}

.video-image .play-button {
  position: relative;
  z-index: 5;
}

.btn,
.filter-btn,
.quick-chip,
.wa-option,
.carousel-btn {
  will-change: transform;
}

.btn {
  box-shadow: 0 18px 42px rgba(90, 58, 54, 0.08);
}

.btn-primary {
  box-shadow: 0 22px 46px rgba(183, 110, 121, 0.3);
}

.reveal {
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  filter: blur(12px);
  transition: opacity 860ms ease, transform 860ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 860ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.stagger-ready > * {
  transition-delay: calc(var(--stagger-index, 0) * 70ms);
}

.tilt-card,
.parallax-layer,
.btn,
.filter-btn,
.quick-chip,
.carousel-btn {
  transform:
    perspective(var(--tilt-perspective, 1200px))
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translate3d(var(--magnet-x, 0px), var(--magnet-y, 0px), 0)
    translate3d(0, calc(var(--parallax-y, 0) * 1px), 0);
}

.reveal.is-visible.tilt-card,
.reveal.is-visible.parallax-layer {
  transform:
    perspective(var(--tilt-perspective, 1200px))
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translate3d(var(--magnet-x, 0px), var(--magnet-y, 0px), 0)
    translate3d(0, calc(var(--parallax-y, 0) * 1px), 0);
}

.parallax-layer {
  will-change: transform;
}

.btn:hover {
  transform:
    perspective(var(--tilt-perspective, 1200px))
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translate3d(var(--magnet-x, 0px), var(--magnet-y, 0px), 0)
    translateY(-3px);
}

.filter-btn:hover,
.filter-btn.active {
  transform:
    perspective(var(--tilt-perspective, 1200px))
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translate3d(var(--magnet-x, 0px), var(--magnet-y, 0px), 0)
    translateY(-2px);
}

.metric-card:hover,
.glass-card:hover,
.service-card:hover,
.package-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.portfolio-card:hover,
.contact-card:hover {
  transform:
    perspective(var(--tilt-perspective, 1200px))
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translate3d(var(--magnet-x, 0px), var(--magnet-y, 0px), 0)
    translateY(-8px);
}

.package-card.popular {
  transform:
    perspective(var(--tilt-perspective, 1200px))
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    translate3d(var(--magnet-x, 0px), var(--magnet-y, 0px), 0)
    translateY(-12px);
}

.luxury-ready .wa-launcher {
  animation: waPulse 2.4s ease-in-out infinite, floatY 5.8s ease-in-out infinite;
}

@media (max-width: 1080px) {
  .editorial-frame {
    inset: 0 10% 0 10%;
  }

  .image-visual {
    min-height: 520px;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .editorial-frame {
    inset: 8px 3% 18px 4%;
    border-radius: 34px;
  }

  .mini-photo-card {
    right: 0;
    bottom: 12px;
    width: 128px;
    height: 168px;
    border-radius: 20px;
  }

  .creator-composition .beauty-shelf {
    left: -4%;
    bottom: 44px;
  }

  .image-visual {
    min-height: 360px;
    border-radius: 30px;
  }

  .portfolio-card .image-thumb {
    min-height: 300px;
  }
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 12px;
  }

  .nav-link {
    font-size: 0.86rem;
  }

  .stats-grid,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .creator-composition {
    min-height: 540px;
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 88px;
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid rgba(183, 110, 121, 0.16);
    border-radius: 24px;
    background: rgba(255, 250, 246, 0.94);
    box-shadow: 0 24px 70px rgba(90, 58, 54, 0.16);
    backdrop-filter: blur(20px);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 200ms ease, transform 200ms ease;
  }

  .nav-open .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-link {
    padding: 12px;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .page-hero {
    padding-top: 116px;
  }

  .grid-3,
  .brand-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .section {
    padding: 74px 0;
  }

  .section.tight {
    padding: 54px 0;
  }

  .nav-shell {
    width: min(100% - 24px, 1240px);
    height: 74px;
  }

  .brand-kicker {
    display: none;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.15rem);
    line-height: 1.1;
  }

  h2 {
    font-size: clamp(1.78rem, 8vw, 2.55rem);
    line-height: 1.14;
  }

  .cta-row,
  .service-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-bottom: 54px;
  }

  .creator-composition {
    min-height: 460px;
  }

  .portrait-card {
    inset: 34px 5% 34px 8%;
    border-radius: 32px;
  }

  .floating-card {
    min-width: 128px;
    padding: 13px;
  }

  .floating-card.one {
    left: 0;
    top: 36px;
  }

  .floating-card.two {
    right: 0;
    top: 18px;
  }

  .floating-card.three {
    left: 0;
    bottom: 18px;
  }

  .beauty-shelf {
    right: -2%;
    bottom: 64px;
    width: 150px;
  }

  .stats-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .brand-strip,
  .impact-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-bottom: 48px;
  }

  .mini-visual {
    min-height: 300px;
  }

  .package-card.popular {
    transform: none;
  }

  .contact-card,
  .glass-card,
  .service-card,
  .package-card,
  .testimonial-card {
    padding: 24px;
  }

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

  .footer-bottom {
    display: grid;
  }

  .wa-launcher {
    right: 16px;
    bottom: 16px;
    width: 64px;
    height: 64px;
  }

  .wa-panel {
    right: 16px;
    bottom: 90px;
    width: min(330px, calc(100vw - 32px));
  }

  .wa-options {
    grid-template-columns: 1fr;
  }
}

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

/* Site-wide luxury color enrichment */
body.luxury-ready {
  background:
    linear-gradient(115deg, rgba(255, 244, 236, 0.92) 0%, rgba(247, 198, 217, 0.38) 28%, rgba(244, 215, 161, 0.3) 52%, rgba(183, 216, 197, 0.22) 74%, rgba(255, 244, 236, 0.94) 100%),
    linear-gradient(180deg, #fffaf6 0%, #fff1f5 48%, #fff6e8 100%);
}

.section-band {
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.76), rgba(247, 198, 217, 0.26) 34%, rgba(244, 215, 161, 0.24) 63%, rgba(183, 216, 197, 0.16)),
    rgba(255, 250, 246, 0.68);
}

.page-hero,
.hero {
  background:
    linear-gradient(110deg, rgba(255, 244, 236, 0.2), rgba(247, 198, 217, 0.22) 35%, rgba(244, 215, 161, 0.14) 62%, rgba(199, 168, 216, 0.13)),
    transparent;
}

.eyebrow {
  color: var(--plum);
}

.eyebrow::before,
.eyebrow::after {
  background: linear-gradient(90deg, transparent, var(--coral), var(--champagne));
}

.eyebrow::after {
  background: linear-gradient(90deg, var(--champagne), var(--coral), transparent);
}

.brand-mark,
.avatar {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.78), transparent 24%),
    linear-gradient(135deg, var(--rose), var(--coral) 48%, var(--plum));
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--coral) 52%, var(--plum));
  box-shadow: 0 22px 52px rgba(183, 110, 121, 0.32);
}

.btn-secondary {
  color: var(--plum);
  border-color: rgba(229, 138, 132, 0.26);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(247, 198, 217, 0.2)),
    rgba(255, 255, 255, 0.74);
}

.btn-ghost {
  border-color: rgba(126, 139, 116, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(183, 216, 197, 0.18));
}

.trust-pill,
.logo-pill,
.filter-btn,
.quick-chip {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(247, 198, 217, 0.18), rgba(244, 215, 161, 0.12));
}

.metric-card,
.glass-card,
.service-card,
.package-card,
.testimonial-card,
.blog-card,
.portfolio-card,
.contact-card,
.lead-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 244, 236, 0.7) 45%, rgba(247, 198, 217, 0.18)),
    var(--glass);
}

.metric-card::after,
.glass-card::after,
.service-card::after,
.package-card::after,
.testimonial-card::after,
.blog-card::after,
.portfolio-card::after,
.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(183, 110, 121, 0.38), rgba(244, 215, 161, 0.42), rgba(183, 216, 197, 0.28), rgba(199, 168, 216, 0.28));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}

.service-card:nth-child(4n + 1) .card-icon,
.glass-card:nth-child(4n + 1) .card-icon {
  background: linear-gradient(135deg, var(--rose), var(--coral));
}

.service-card:nth-child(4n + 2) .card-icon,
.glass-card:nth-child(4n + 2) .card-icon {
  background: linear-gradient(135deg, var(--plum), var(--lilac));
}

.service-card:nth-child(4n + 3) .card-icon,
.glass-card:nth-child(4n + 3) .card-icon {
  background: linear-gradient(135deg, var(--sage), var(--mint));
}

.service-card:nth-child(4n) .card-icon,
.glass-card:nth-child(4n) .card-icon {
  background: linear-gradient(135deg, var(--champagne), var(--rose));
}

.metric-value,
.package-note,
.card-meta,
.text-gradient {
  background: linear-gradient(110deg, var(--rose), var(--coral), var(--plum), var(--sage));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.feature-list li::before,
.check-list li::before,
.dot {
  background: linear-gradient(135deg, var(--rose), var(--coral));
}

.image-visual,
.editorial-frame,
.mini-photo-card,
.video-placeholder {
  box-shadow:
    0 32px 100px rgba(90, 58, 54, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.42),
    0 0 70px rgba(247, 198, 217, 0.2);
}

.image-thumb::before,
.editorial-frame::before,
.image-visual::before,
.video-image::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 34%),
    linear-gradient(135deg, rgba(183, 110, 121, 0.08), rgba(244, 215, 161, 0.12) 48%, rgba(126, 139, 116, 0.08));
}

.portfolio-card .card-body,
.blog-card .card-body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 244, 236, 0.92) 58%, rgba(247, 198, 217, 0.16)),
    rgba(255, 255, 255, 0.78);
}

.cta-band {
  background:
    linear-gradient(125deg, rgba(247, 198, 217, 0.64), rgba(255, 244, 236, 0.94) 38%, rgba(244, 215, 161, 0.34) 66%, rgba(183, 216, 197, 0.24)),
    rgba(255, 255, 255, 0.62);
}

.popular-badge,
.proof-badge {
  background: linear-gradient(135deg, var(--rose), var(--coral), var(--plum));
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
}

.proof-badge::before {
  background: var(--champagne);
  box-shadow: 0 0 0 6px rgba(244, 215, 161, 0.2);
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(90, 58, 54, 0.98), rgba(125, 75, 99, 0.92) 45%, rgba(55, 75, 65, 0.92)),
    var(--cocoa);
}

.field input,
.field select,
.field textarea {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 244, 236, 0.78));
}

.wa-panel {
  background:
    linear-gradient(145deg, rgba(255, 250, 246, 0.96), rgba(247, 198, 217, 0.24) 54%, rgba(244, 215, 161, 0.14)),
    rgba(255, 250, 246, 0.96);
}

.wa-head {
  background: linear-gradient(135deg, var(--cocoa), var(--plum) 52%, var(--rose));
}

.wa-primary,
.wa-launcher {
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.76), transparent 24%),
    linear-gradient(135deg, #19a75f 0%, #25d366 42%, var(--coral) 72%, var(--plum) 100%);
}

.service-card,
.package-card,
.testimonial-card,
.blog-card,
.portfolio-card,
.glass-card,
.metric-card {
  border-top-width: 4px;
}

.grid-3 > *:nth-child(6n + 1),
.grid-4 > *:nth-child(6n + 1),
.stats-grid > *:nth-child(6n + 1) {
  border-top-color: rgba(183, 110, 121, 0.62);
}

.grid-3 > *:nth-child(6n + 2),
.grid-4 > *:nth-child(6n + 2),
.stats-grid > *:nth-child(6n + 2) {
  border-top-color: rgba(229, 138, 132, 0.62);
}

.grid-3 > *:nth-child(6n + 3),
.grid-4 > *:nth-child(6n + 3),
.stats-grid > *:nth-child(6n + 3) {
  border-top-color: rgba(244, 215, 161, 0.72);
}

.grid-3 > *:nth-child(6n + 4),
.grid-4 > *:nth-child(6n + 4),
.stats-grid > *:nth-child(6n + 4) {
  border-top-color: rgba(126, 139, 116, 0.52);
}

.grid-3 > *:nth-child(6n + 5),
.grid-4 > *:nth-child(6n + 5),
.stats-grid > *:nth-child(6n + 5) {
  border-top-color: rgba(199, 168, 216, 0.62);
}

.grid-3 > *:nth-child(6n),
.grid-4 > *:nth-child(6n),
.stats-grid > *:nth-child(6n) {
  border-top-color: rgba(183, 216, 197, 0.68);
}

.portfolio-card:hover,
.blog-card:hover,
.service-card:hover,
.package-card:hover,
.testimonial-card:hover,
.glass-card:hover {
  box-shadow:
    0 30px 92px rgba(183, 110, 121, 0.22),
    0 16px 46px rgba(126, 139, 116, 0.08);
}

.filter-btn.active,
.quick-chip:hover {
  background: linear-gradient(135deg, var(--rose), var(--coral), var(--plum));
  color: var(--white);
}

.metric-card::after,
.glass-card::after,
.service-card::after,
.package-card::after,
.testimonial-card::after,
.blog-card::after,
.portfolio-card::after,
.contact-card::after,
.portfolio-card:hover::after,
.blog-card:hover::after,
.service-card:hover::after,
.package-card:hover::after,
.testimonial-card:hover::after {
  transform: none;
  transition: none;
}
