:root {
  --bg: #050708;
  --panel: #071011;
  --panel-soft: #0b1516;
  --ink: #f8efe7;
  --muted: #d9c7bd;
  --pink: #e35f8b;
  --pink-soft: #f09db8;
  --gold: #c89036;
  --gold-soft: #f0c67c;
  --line: rgba(201, 144, 54, 0.72);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  --serif: Didot, "Bodoni 72", Baskerville, Georgia, "Times New Roman", serif;
  --script: "Snell Roundhand", "Brush Script MT", "Segoe Script", cursive;
  --sans: Avenir, "Avenir Next", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 15%, rgba(227, 95, 139, 0.13), transparent 24rem),
    radial-gradient(circle at 88% 11%, rgba(201, 144, 54, 0.16), transparent 29rem),
    linear-gradient(135deg, #030405 0%, #081011 42%, #050607 100%);
  color: var(--ink);
  font-family: var(--serif);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.045), transparent 14%, rgba(255, 255, 255, 0.018) 21%, transparent 35%),
    repeating-linear-gradient(106deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 42px);
  opacity: 0.7;
  filter: blur(0.2px);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at 50% 8%, transparent 0 28rem, rgba(0, 0, 0, 0.36) 55rem);
}

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

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

.top-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

body[data-page="home"] {
  background: #020404;
}

body[data-page="home"] .top-shell::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 4, 4, 0.58), rgba(2, 4, 4, 0.22) 48%, rgba(2, 4, 4, 0.38)),
    linear-gradient(180deg, rgba(2, 4, 4, 0.12), rgba(2, 4, 4, 0.62) 62%, rgba(2, 4, 4, 0.86)),
    url("assets/generated/home-curtain-extension.png") center top / cover no-repeat;
}

body[data-page="home"] .browser-bar,
body[data-page="home"] .site-header,
body[data-page="home"] main,
body[data-page="home"] .footer-strip {
  position: relative;
  z-index: 1;
}

.browser-bar {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  background: rgba(12, 14, 15, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-dots {
  position: absolute;
  left: 20px;
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
}

.window-dots span:nth-child(1) { background: #ee675c; }
.window-dots span:nth-child(2) { background: #f5bd4f; }
.window-dots span:nth-child(3) { background: #61c653; }

.address {
  width: min(600px, 52vw);
  height: 30px;
  border-radius: 8px;
  background: #1b1f21;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  font: 14px var(--sans);
}

.browser-icons {
  position: absolute;
  right: 22px;
  color: rgba(255, 255, 255, 0.62);
  display: flex;
  gap: 16px;
  font: 20px var(--sans);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  column-gap: clamp(18px, 2.4vw, 44px);
  min-height: 68px;
  padding: 0 clamp(18px, 4vw, 86px);
  background: rgba(5, 7, 8, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
  width: clamp(230px, 23vw, 360px);
  height: 53px;
  background: url("assets/generated/logo.png") left center / contain no-repeat;
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 38px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand > span {
  display: none;
}

.brand .amp {
  color: var(--pink);
  font-family: var(--script);
  text-transform: none;
  font-size: 0.96em;
  letter-spacing: 0;
}

.brand .script {
  color: var(--pink);
  font-family: var(--script);
  text-transform: none;
  font-size: 0.95em;
  letter-spacing: 0;
}

.brand .mark {
  color: var(--pink);
  font-family: var(--script);
  font-size: 24px;
  transform: translateY(-8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.7vw, 42px);
  min-width: 0;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a {
  padding: 25px 0 20px;
  border-bottom: 3px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.nav a:hover,
.nav a.active {
  color: var(--pink-soft);
  border-color: var(--pink);
}

.header-action {
  justify-self: end;
  white-space: nowrap;
}

.btn,
.outline-btn,
.text-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  border: 1px solid var(--pink);
  padding: 0 22px;
  background: linear-gradient(180deg, #cf4f77, #a83259);
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(227, 95, 139, 0);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.outline-btn {
  background: rgba(9, 10, 11, 0.72);
  color: var(--pink-soft);
}

.text-btn {
  border-color: transparent;
  background: transparent;
  color: var(--pink);
  padding: 0;
  min-height: auto;
}

.btn:hover,
.outline-btn:hover,
.text-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(227, 95, 139, 0.2);
}

.btn:disabled,
.outline-btn:disabled {
  cursor: wait;
  opacity: 0.62;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.4);
  color: var(--pink-soft);
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, 0.96fr) minmax(340px, 1.04fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  padding: clamp(34px, 6vw, 70px) clamp(24px, 6vw, 126px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(3, 6, 7, 0.94), rgba(3, 6, 7, 0.78) 45%, rgba(3, 6, 7, 0.52)),
    radial-gradient(circle at 74% 30%, rgba(239, 182, 99, 0.28), transparent 25rem),
    radial-gradient(circle at 84% 50%, rgba(227, 95, 139, 0.16), transparent 19rem);
}

body[data-page="home"] .hero {
  --home-hero-row-width: min(840px, 100%);
  min-height: clamp(560px, 72vh, 760px);
  grid-template-columns: minmax(0, 1fr);
  justify-items: start;
  align-items: start;
  gap: 0;
  padding: clamp(74px, 8vw, 116px) clamp(20px, 6vw, 126px) clamp(106px, 13vw, 158px);
  text-align: left;
  background: #020404;
}

.subpage .hero,
body[data-page="home"] .hero {
  background: #020404;
}

.subpage .hero::before,
body[data-page="home"] .hero::before {
  content: "";
  position: absolute;
  inset: -7% 0 -16%;
  z-index: 0;
  background: var(--hero-bg-image, url("assets/generated/hero-integrated-curtain.png")) center top / cover no-repeat;
  transform: translate3d(0, calc(var(--hero-parallax, 0) * 1px), 0) scale(1.03);
  transform-origin: center top;
  will-change: transform;
}

.subpage .hero::after,
body[data-page="home"] .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(2, 4, 4, 0.1) 0%, rgba(2, 4, 4, 0.22) 38%, rgba(2, 4, 4, 0.72) 82%, #020404 100%),
    radial-gradient(ellipse at center, transparent 0 52%, rgba(0, 0, 0, 0.28) 82%, rgba(0, 0, 0, 0.56) 100%);
}

.hero.compact {
  min-height: 320px;
}

.subpage .hero.compact {
  min-height: clamp(390px, 48vh, 560px);
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-items: center;
  padding: clamp(58px, 8vw, 104px) clamp(20px, 6vw, 126px) clamp(74px, 9vw, 118px);
  text-align: center;
}

body[data-page="services"] .hero { --hero-bg-image: url("assets/services-hero.png"); }
body[data-page="packages"] .hero { --hero-bg-image: url("assets/packages-hero.png"); }
body[data-page="privacy"] .hero { --hero-bg-image: url("assets/privacy-hero.png"); }
body[data-page="about"] .hero { --hero-bg-image: url("assets/about-hero.png"); }
body[data-page="contact"] .hero { --hero-bg-image: url("assets/contact-hero.png"); }

.hero-copy {
  position: relative;
  z-index: 2;
}

.butterfly {
  position: absolute;
  color: var(--pink);
  font-family: var(--script);
  font-size: clamp(56px, 8vw, 88px);
  line-height: 1;
  transform: rotate(-14deg);
  text-shadow: 0 0 18px rgba(227, 95, 139, 0.7);
}

.hero .butterfly {
  left: clamp(10px, 2.6vw, 52px);
  top: clamp(22px, 4.2vw, 58px);
  width: clamp(112px, 10vw, 174px);
  height: clamp(210px, 22vw, 328px);
  background: url("assets/generated/home-detail-butterfly-trail-transparent.png") top left / contain no-repeat;
  font-size: 0;
  text-shadow: none;
  transform: none;
  z-index: 1;
}

body[data-page="home"] .hero-copy {
  width: var(--home-hero-row-width);
  margin: 0;
  padding-left: 0;
  text-align: left;
  text-wrap: balance;
}

.subpage .hero-copy {
  width: min(860px, 100%);
  text-align: center;
  text-wrap: balance;
}

body[data-page="home"] .hero-art {
  display: none;
}

.subpage .hero .butterfly,
.subpage .hero-art {
  display: none;
}

body[data-page="home"] .hero .butterfly {
  display: none;
}

.subpage .hero h1,
body[data-page="home"] .hero h1 {
  width: 100%;
  font-size: clamp(56px, 6.6vw, 88px);
  text-shadow:
    0 1px 0 rgba(255, 246, 232, 0.22),
    1px 1px 0 rgba(0, 0, 0, 0.72),
    -1px 1px 0 rgba(0, 0, 0, 0.64),
    2px 3px 0 rgba(0, 0, 0, 0.74),
    -2px 3px 0 rgba(0, 0, 0, 0.58),
    0 6px 12px rgba(0, 0, 0, 0.68),
    0 0 13px rgba(0, 0, 0, 0.58),
    0 12px 28px rgba(0, 0, 0, 0.48),
    0 0 28px rgba(0, 0, 0, 0.34);
}

.subpage .hero .script-line,
body[data-page="home"] .hero .script-line {
  width: min(110%, calc(100vw - 40px));
  text-align: center;
  font-size: clamp(58px, 7.25vw, 96px);
  text-shadow:
    0 1px 0 rgba(255, 220, 232, 0.24),
    1px 1px 0 rgba(0, 0, 0, 0.72),
    -1px 1px 0 rgba(0, 0, 0, 0.6),
    2px 3px 0 rgba(0, 0, 0, 0.74),
    -2px 3px 0 rgba(0, 0, 0, 0.54),
    0 6px 12px rgba(0, 0, 0, 0.68),
    0 0 13px rgba(0, 0, 0, 0.58),
    0 12px 28px rgba(0, 0, 0, 0.48),
    0 0 26px rgba(0, 0, 0, 0.32),
    0 0 10px rgba(227, 95, 139, 0.28);
}

.subpage .hero .lead,
body[data-page="home"] .lead {
  width: 100%;
  margin: 0;
  max-width: 100%;
  text-shadow:
    0 1px 0 rgba(255, 246, 232, 0.16),
    1px 1px 0 rgba(0, 0, 0, 0.72),
    -1px 1px 0 rgba(0, 0, 0, 0.54),
    2px 3px 0 rgba(0, 0, 0, 0.66),
    0 5px 10px rgba(0, 0, 0, 0.66),
    0 10px 22px rgba(0, 0, 0, 0.42),
    0 0 20px rgba(0, 0, 0, 0.28);
}

.subpage .hero .gold-divider,
body[data-page="home"] .gold-divider {
  width: min(640px, 82vw);
  background:
    linear-gradient(90deg,
      transparent 0%,
      var(--gold) 18%,
      var(--gold) calc(50% - 34px),
      transparent calc(50% - 34px),
      transparent calc(50% + 34px),
      var(--gold) calc(50% + 34px),
      var(--gold) 82%,
      transparent 100%);
}

.subpage .hero .gold-divider::after,
body[data-page="home"] .gold-divider::after {
  background: transparent;
}

body[data-page="home"] .hero h1,
body[data-page="home"] .hero .script-line {
  white-space: nowrap;
}

body[data-page="home"] .hero .script-line {
  margin-left: -5%;
}

body[data-page="home"] .lead {
  text-align: left;
}

body[data-page="home"] .gold-divider {
  margin: 22px 0;
}

.subpage .hero .script-line,
.subpage .hero .lead {
  width: 100%;
  text-align: center;
}

.subpage .hero .gold-divider {
  margin: 22px auto;
}

body[data-page="home"] .hero-actions,
body[data-page="home"] .trust-row {
  width: 100%;
  justify-content: flex-start;
}

body[data-page="home"] .hero-actions .btn,
body[data-page="home"] .hero-actions .outline-btn {
  max-width: min(100%, 540px);
  min-height: 48px;
  padding-block: 10px;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  box-shadow:
    0 3px 0 rgba(0, 0, 0, 0.76),
    0 10px 20px rgba(0, 0, 0, 0.58),
    0 16px 34px rgba(0, 0, 0, 0.38),
    0 0 0 2px rgba(0, 0, 0, 0.62),
    0 0 18px rgba(0, 0, 0, 0.28),
    0 0 20px rgba(227, 95, 139, 0.2);
  text-shadow:
    0 1px 0 rgba(255, 246, 232, 0.14),
    1px 1px 0 rgba(0, 0, 0, 0.6),
    2px 2px 0 rgba(0, 0, 0, 0.42);
}

body[data-page="home"] .trust-row {
  width: 100%;
  margin-inline: 0;
}

body[data-page="home"] .trust-item {
  text-shadow:
    0 1px 0 rgba(255, 246, 232, 0.12),
    1px 1px 0 rgba(0, 0, 0, 0.7),
    -1px 1px 0 rgba(0, 0, 0, 0.52),
    2px 3px 0 rgba(0, 0, 0, 0.58),
    0 5px 10px rgba(0, 0, 0, 0.58),
    0 10px 20px rgba(0, 0, 0, 0.34);
}

body[data-page="home"] .trust-item .icon-ring {
  box-shadow:
    0 3px 0 rgba(0, 0, 0, 0.76),
    0 9px 16px rgba(0, 0, 0, 0.58),
    0 14px 28px rgba(0, 0, 0, 0.36),
    0 0 0 2px rgba(0, 0, 0, 0.6),
    0 0 16px rgba(0, 0, 0, 0.25),
    0 0 18px rgba(227, 95, 139, 0.24);
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, 0.64)) drop-shadow(0 10px 16px rgba(0, 0, 0, 0.32));
}

@media (prefers-reduced-motion: reduce) {
  .subpage .hero::before,
  body[data-page="home"] .hero::before {
    transform: scale(1.03);
    will-change: auto;
  }
}

.hero h1,
.page-title {
  margin: 0;
  color: #fbf3ee;
  font-family: var(--serif);
  font-size: clamp(44px, 6.5vw, 74px);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}

.hero .script-line,
.script-line {
  display: block;
  margin-top: -2px;
  color: var(--pink);
  font-family: var(--script);
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 0 10px rgba(227, 95, 139, 0.2);
}

.subpage .script-line {
  font-size: clamp(34px, 5vw, 58px);
}

.gold-divider {
  width: min(520px, 78%);
  height: 1px;
  margin: 18px 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
}

.gold-divider::after {
  content: "♡";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -54%);
  padding: 0 13px;
  background: var(--bg);
  color: var(--gold-soft);
  font-size: 24px;
}

.lead {
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  max-width: 680px;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.trust-row {
  gap: clamp(20px, 4vw, 44px);
  margin-top: 26px;
}

.trust-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font: 13px var(--sans);
}

.trust-item strong {
  display: block;
  color: var(--pink);
  font: 14px var(--serif);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.icon-ring,
.card-icon,
.small-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--pink);
  background: radial-gradient(circle, rgba(227, 95, 139, 0.14), rgba(0, 0, 0, 0.18));
}

.icon-ring {
  width: 44px;
  height: 44px;
  font-size: 24px;
}

.small-icon {
  width: 36px;
  height: 36px;
}

.hero-art {
  position: relative;
  min-height: 310px;
  border-radius: 2px;
  overflow: hidden;
  background: #050708;
}

body[data-page="home"] .hero-art {
  background: transparent;
  box-shadow: 0 0 70px 28px rgba(2, 4, 4, 0.38);
}

body[data-page="home"] .hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  box-shadow:
    inset 34px 0 44px rgba(2, 4, 4, 0.92),
    inset 0 -34px 42px rgba(2, 4, 4, 0.86),
    inset 0 24px 28px rgba(2, 4, 4, 0.18);
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/generated/hero-integrated-curtain.png") center / cover no-repeat;
}

.subpage .hero-art::before {
  background-image: url("assets/generated/subpage-vanity-hero.png");
  background-position: center;
}

.hero-art > * {
  display: none;
}

body[data-page="home"] .hero-art > .neon-heart {
  display: grid;
  left: 78%;
  right: auto;
  top: 24%;
  z-index: 2;
  transform: translate(-50%, -50%) rotate(-2deg);
}

.vanity-scene {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 62% 36%, rgba(255, 222, 151, 0.34), transparent 7rem),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0)),
    linear-gradient(160deg, #21120e 0%, #0b0c0c 42%, #20100d 100%);
}

.mirror {
  position: absolute;
  right: 28%;
  top: 12px;
  width: 185px;
  height: 185px;
  border-radius: 50%;
  border: 8px solid #b87931;
  box-shadow: 0 0 0 2px #ffd08a inset, 0 0 55px rgba(255, 189, 110, 0.28);
}

.mirror::before {
  content: "";
  position: absolute;
  inset: -17px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 0%, #ffd497 0 5px, transparent 6px),
    radial-gradient(circle at 86% 18%, #ffd497 0 5px, transparent 6px),
    radial-gradient(circle at 100% 50%, #ffd497 0 5px, transparent 6px),
    radial-gradient(circle at 86% 82%, #ffd497 0 5px, transparent 6px),
    radial-gradient(circle at 50% 100%, #ffd497 0 5px, transparent 6px),
    radial-gradient(circle at 14% 82%, #ffd497 0 5px, transparent 6px),
    radial-gradient(circle at 0% 50%, #ffd497 0 5px, transparent 6px),
    radial-gradient(circle at 14% 18%, #ffd497 0 5px, transparent 6px);
}

.figure-back {
  position: absolute;
  right: 33%;
  bottom: 0;
  width: 145px;
  height: 240px;
  border-radius: 72px 72px 18px 18px;
  background:
    radial-gradient(ellipse at 50% 11%, #2b1410 0 25px, transparent 27px),
    linear-gradient(90deg, transparent 0 23%, #946040 24% 42%, #b78361 49%, #8e5438 62%, transparent 64%),
    linear-gradient(160deg, transparent 0 45%, #a4486f 46% 100%);
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.38));
  opacity: 0.96;
}

.robe {
  position: absolute;
  right: calc(33% - 28px);
  bottom: 0;
  width: 205px;
  height: 122px;
  border-radius: 48px 48px 0 0;
  background:
    linear-gradient(135deg, rgba(255, 183, 207, 0.4), transparent 24%),
    linear-gradient(55deg, #6a2941, #be5c84 44%, #6e2944);
  transform: skewX(-5deg);
  box-shadow: inset 0 0 28px rgba(255, 202, 219, 0.2);
}

.wardrobe {
  position: absolute;
  right: 14px;
  top: 24px;
  width: 190px;
  height: 245px;
  border-top: 5px solid #a97835;
  border-radius: 2px;
}

.wardrobe span {
  position: absolute;
  top: 0;
  width: 22px;
  height: 148px;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(#d69aa4, #513038);
}

.wardrobe span:nth-child(1) { left: 16px; height: 170px; }
.wardrobe span:nth-child(2) { left: 45px; background: linear-gradient(#e9c5bd, #6e4248); }
.wardrobe span:nth-child(3) { left: 74px; height: 185px; background: linear-gradient(#222, #070707); }
.wardrobe span:nth-child(4) { left: 104px; background: linear-gradient(#c77d91, #4a252f); }
.wardrobe span:nth-child(5) { left: 132px; height: 178px; background: linear-gradient(#e6b5aa, #57313b); }

.vanity-table {
  position: absolute;
  right: 28px;
  bottom: 6px;
  width: 620px;
  height: 72px;
  background: linear-gradient(180deg, rgba(111, 73, 37, 0.55), rgba(28, 15, 10, 0.94));
  border-top: 1px solid rgba(240, 198, 124, 0.45);
}

.roses {
  position: absolute;
  width: 126px;
  height: 86px;
}

.roses.hero-roses {
  right: 48%;
  top: 82px;
}

.rose {
  position: absolute;
  border-radius: 50%;
  background:
    radial-gradient(circle at 48% 48%, #f5b1bf 0 10%, #dc6f89 11% 23%, #b84463 24% 38%, #f0a1b2 39% 47%, #8c2d43 48% 60%, transparent 61%),
    radial-gradient(circle, #e88ba3, #a93655 65%, #3a171c 66%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.rose:nth-child(1) { width: 48px; height: 48px; left: 0; top: 24px; }
.rose:nth-child(2) { width: 58px; height: 58px; left: 35px; top: 4px; }
.rose:nth-child(3) { width: 48px; height: 48px; left: 78px; top: 26px; }

.rose-leaf {
  position: absolute;
  width: 34px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(90deg, #193524, #31543a);
}

.rose-leaf.one { left: 8px; top: 64px; transform: rotate(-28deg); }
.rose-leaf.two { right: 4px; top: 66px; transform: rotate(24deg); }

.perfume-set,
.makeup-set,
.bag {
  position: absolute;
  bottom: 80px;
}

.perfume-set {
  right: 50%;
  width: 128px;
  height: 72px;
}

.perfume-set span {
  position: absolute;
  bottom: 0;
  width: 27px;
  height: 54px;
  border: 1px solid rgba(240, 198, 124, 0.6);
  background: linear-gradient(180deg, rgba(231, 136, 163, 0.35), rgba(85, 41, 45, 0.65));
}

.perfume-set span:nth-child(1) { left: 0; height: 48px; }
.perfume-set span:nth-child(2) { left: 36px; height: 66px; }
.perfume-set span:nth-child(3) { left: 78px; height: 42px; }

.makeup-set {
  right: 160px;
  width: 90px;
  height: 84px;
}

.makeup-set span {
  position: absolute;
  bottom: 0;
  width: 15px;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(#f06f9e 0 28%, #d7b56d 29% 44%, #191010 45%);
}

.makeup-set span:nth-child(1) { left: 5px; height: 74px; }
.makeup-set span:nth-child(2) { left: 31px; height: 62px; }
.makeup-set span:nth-child(3) { left: 57px; height: 82px; }

.bag {
  right: 40px;
  width: 98px;
  height: 88px;
  border-radius: 10px 10px 3px 3px;
  background: linear-gradient(135deg, #070707, #151515);
  border: 1px solid rgba(240, 198, 124, 0.45);
}

.bag::before {
  content: "";
  position: absolute;
  left: 31px;
  top: -18px;
  width: 36px;
  height: 28px;
  border: 3px solid #b98437;
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
}

.bag::after {
  content: "♡";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 34px;
}

.neon-heart {
  position: absolute;
  right: 210px;
  top: 46px;
  width: 104px;
  height: 88px;
  border: 3px solid var(--pink);
  border-radius: 52px 52px 40px 40px;
  color: #ffd4df;
  display: grid;
  place-items: center;
  font: 27px/0.85 var(--script);
  text-align: center;
  text-shadow: 0 0 12px var(--pink);
  box-shadow: 0 0 18px rgba(227, 95, 139, 0.8);
  transform: rotate(-2deg);
}

.neon-heart::after {
  content: "";
  position: absolute;
  inset: 14px 18px 6px;
  border-bottom: 2px solid var(--pink);
  border-radius: 50%;
}

.section {
  position: relative;
  padding: clamp(30px, 5vw, 54px) clamp(18px, 4vw, 48px);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0 auto 20px;
  color: var(--gold-soft);
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.section-title::before,
.section-title::after {
  content: "";
  width: min(190px, 18vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-title::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.grid {
  display: grid;
  gap: 14px;
}

.services-home {
  grid-template-columns: repeat(4, minmax(150px, 1fr)) minmax(440px, 1.9fr);
  align-items: stretch;
}

body[data-page="home"] .services-home {
  gap: 10px;
}

body[data-page="privacy"] .privacy-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="home"] .home-services-section > *,
body[data-page="home"] .home-packages-section > * {
  position: relative;
  z-index: 1;
}

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

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

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

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

.card,
.privacy-panel,
.form-panel,
.compare-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 26%),
    linear-gradient(180deg, rgba(10, 18, 18, 0.95), rgba(3, 6, 7, 0.96));
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.22) inset;
}

.card {
  min-height: 214px;
  padding: 26px 22px 24px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow), 0 0 30px rgba(201, 144, 54, 0.12);
}

.service-card,
.package-card,
.package-detail,
.portal-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

body[data-page="home"] .service-card {
  min-height: 198px;
  padding: 18px 16px 16px;
  gap: 8px;
}

body[data-page="home"] .service-card .card-icon {
  width: 82px;
  height: 82px;
}

body[data-page="home"] .service-card h3 {
  margin-bottom: 6px;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.08;
}

body[data-page="home"] .service-card p {
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.34;
}

body[data-page="home"] .service-card .learn {
  font-size: 12px;
}

.service-card.vertical {
  display: flex;
  text-align: center;
}

.service-card > div,
.package-card > div,
.wide-cta > div {
  width: 100%;
}

.card-icon {
  width: 104px;
  height: 104px;
  font-size: 44px;
  flex: 0 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.card-icon.rose-art {
  background-image: url("assets/generated/rose-single-reference.png");
  border: 0;
  color: transparent;
}

.card-icon.icon-glam {
  background-image: url("assets/generated/icon-grace-glam.png");
  border: 0;
  color: transparent;
}

.card-icon.icon-makeup {
  background-image: url("assets/generated/icon-makeup.png");
  border: 0;
  color: transparent;
}

.card-icon.icon-lock {
  background-image: url("assets/generated/icon-lock.png");
  border: 0;
  color: transparent;
}

.card-icon.icon-bow {
  background-image: url("assets/generated/icon-bow.png");
  border: 0;
  color: transparent;
}

.card-icon.icon-butterfly {
  background-image: url("assets/generated/icon-butterfly.png");
  border: 0;
  color: transparent;
}

.card-icon.icon-crown {
  background-image: url("assets/generated/icon-crown.png");
  border: 0;
  color: transparent;
}

.card-icon.icon-lock-heart {
  background-image: url("assets/generated/icon-lock-heart.png");
  border: 0;
  color: transparent;
}

.card-icon.icon-calendar {
  background-image: url("assets/generated/icon-lock.png");
  border: 0;
  color: transparent;
}

.card-icon.icon-heart {
  background-image: url("assets/generated/icon-lock-heart.png");
  border: 0;
  color: transparent;
}

.card-icon.icon-envelope {
  background-image: url("assets/generated/icon-lock-heart.png");
  border: 0;
  color: transparent;
}

.privacy-card-icon {
  border: 0;
  color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.34));
}

.privacy-icon-lock {
  background-image: url("assets/generated/privacy-icon-lock-v2.png");
}

.privacy-icon-calendar {
  background-image: url("assets/generated/privacy-icon-calendar-v2.png");
}

.privacy-icon-envelope {
  background-image: url("assets/generated/privacy-icon-envelope-v2.png");
}

.privacy-icon-minimal {
  background-image: url("assets/generated/privacy-icon-minimal-v2.png");
}

.card h3,
.privacy-panel h3,
.form-panel h3,
.compare-panel h3 {
  margin: 0 0 10px;
  color: #f7e6df;
  font-size: clamp(20px, 1.75vw, 26px);
  font-weight: 500;
  line-height: 1.14;
  max-width: 100%;
  overflow-wrap: break-word;
}

.card p,
.privacy-panel p,
.form-panel p,
.compare-panel p {
  color: var(--ink);
  font: 15px/1.45 var(--sans);
  margin: 0 0 12px;
  max-width: 100%;
  overflow-wrap: break-word;
}

.card .micro {
  color: var(--pink);
  font: 13px var(--serif);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.learn {
  color: var(--pink);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-panel {
  min-height: 216px;
  padding: 34px 34px 28px clamp(190px, 14vw, 230px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  container-type: inline-size;
}

body[data-page="home"] .privacy-panel {
  min-height: 222px;
  padding: 28px 32px 24px 150px;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

body[data-page="home"] .privacy-panel h3 {
  font-size: clamp(26px, 2.25vw, 36px);
  line-height: 1.05;
  margin-bottom: 10px;
}

body[data-page="home"] .privacy-panel p {
  max-width: 520px;
  font-size: 14px;
  line-height: 1.36;
}

body[data-page="home"] .privacy-panel > div:not(.lock-heart):not(.panel-roses) {
  position: relative;
  z-index: 1;
}

.privacy-panel > div:not(.lock-heart):not(.panel-roses) {
  position: relative;
  z-index: 1;
}

body[data-page="home"] .privacy-panel .panel-roses {
  left: 16px;
  top: 118px;
  bottom: auto;
  width: 124px;
  height: 94px;
}

body[data-page="home"] .privacy-panel .panel-butterfly {
  right: 18px;
  top: 12px;
  width: 72px;
  height: 72px;
}

.privacy-panel h3 {
  color: var(--pink-soft);
  font-size: clamp(30px, 3.2vw, 44px);
}

.privacy-panel .lock-heart {
  display: none;
}

.privacy-panel .panel-roses {
  position: absolute;
  left: clamp(16px, 2.6vw, 34px);
  top: 50%;
  bottom: auto;
  width: clamp(128px, 11vw, 170px);
  height: clamp(104px, 9vw, 140px);
  background: url("assets/generated/privacy-roses-panel-v2.png") center bottom / contain no-repeat;
  transform: translateY(-50%);
  z-index: 0;
}

.privacy-panel .panel-roses > * {
  display: none;
}

.privacy-panel .panel-butterfly {
  position: absolute;
  right: 22px;
  top: 16px;
  width: 78px;
  height: 72px;
  color: transparent;
  font-size: 0;
  background: url("assets/generated/home-detail-privacy-butterfly-v2.png") center / contain no-repeat;
  transform: rotate(12deg);
  z-index: 1;
}

.privacy-policy-section {
  margin-top: 16px;
  padding: clamp(26px, 4vw, 44px);
}

.privacy-policy-section h2 {
  margin: 0 0 14px;
  color: #f7e6df;
  font-size: clamp(30px, 3.4vw, 46px);
  font-weight: 500;
  line-height: 1.08;
}

.privacy-policy-section .policy-note {
  margin: 14px 0 24px;
  padding: 12px 14px;
  border-left: 2px solid var(--gold-soft);
  color: var(--pink-soft);
  background: rgba(201, 144, 54, 0.08);
}

.privacy-policy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.privacy-policy-grid section {
  padding-top: 14px;
  border-top: 1px solid rgba(201, 144, 54, 0.24);
}

.privacy-policy-grid h3 {
  margin-bottom: 10px;
  color: var(--pink-soft);
  font-size: clamp(18px, 1.8vw, 24px);
}

.privacy-policy-grid p {
  font-size: 14px;
  line-height: 1.55;
}

body[data-page="privacy"] .privacy-panel {
  margin-top: 16px;
}

body[data-page="privacy"] .privacy-bottom-grid {
  align-items: stretch;
}

.packages-home {
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(230px, 0.9fr);
  align-items: stretch;
}

.package-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  min-height: 190px;
}

.package-card h3 {
  font-size: clamp(18px, 1.9vw, 24px);
}

.cta-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.about-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.about-cta {
  width: min(560px, 100%);
}

body[data-page="home"] .cta-card::before {
  content: "";
  width: 68px;
  height: 88px;
  margin: 0 auto 4px;
  background: url("assets/generated/home-detail-gold-heart-v2.png") center / contain no-repeat;
  opacity: 0.9;
  filter: drop-shadow(0 0 16px rgba(240, 198, 124, 0.16));
}

.footer-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: center;
  padding: 24px clamp(18px, 5vw, 96px);
  border-top: 1px solid var(--line);
  background: rgba(3, 5, 6, 0.72);
}

.footer-note {
  color: var(--pink);
  font: clamp(26px, 3vw, 40px) var(--script);
  text-align: right;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 20px;
}

.split .cards-4 {
  grid-template-columns: repeat(2, minmax(230px, 1fr));
}

body[data-page="packages"] .package-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="packages"] .package-compare-card {
  margin-top: 20px;
  width: 100%;
}

.detail-list {
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
  color: var(--ink);
  font: 15px/1.45 var(--sans);
}

.detail-list li {
  margin: 8px 0;
  padding-left: 24px;
  position: relative;
}

.detail-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-soft);
}

.never-do-card h3 {
  text-align: center;
}

.never-do-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.never-do-list li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 62px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(201, 144, 54, 0.28);
  border-radius: 7px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.16));
  color: var(--ink);
  font: 600 15px/1.35 var(--sans);
}

.never-do-list li::before {
  content: none;
}

.never-icon {
  width: 50px;
  height: 50px;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.34));
}

.never-public-sharing {
  background-image: url("assets/generated/never-public-sharing.png");
}

.never-outing {
  background-image: url("assets/generated/never-outing.png");
}

.never-pressure {
  background-image: url("assets/generated/never-pressure.png");
}

.never-judgment {
  background-image: url("assets/generated/never-judgment.png");
}

.never-details {
  background-image: url("assets/generated/never-details.png");
}

.wide-cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  margin-top: 16px;
}

.package-detail {
  min-height: 520px;
  text-align: center;
}

.package-detail .detail-list {
  width: 100%;
  text-align: left;
}

.package-detail .micro,
.package-detail .price-placeholder,
.package-detail .outline-btn {
  max-width: 100%;
  white-space: normal;
  overflow-wrap: break-word;
}

.price-placeholder {
  display: inline-block;
  margin: 8px 0 12px;
  padding: 8px 12px;
  border: 1px solid rgba(227, 95, 139, 0.55);
  border-radius: 999px;
  color: var(--pink-soft);
  font: 13px var(--sans);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--ink);
  font: 14px var(--sans);
}

.compare-table th,
.compare-table td {
  padding: 10px 8px;
  border-bottom: 1px solid rgba(201, 144, 54, 0.28);
  text-align: center;
}

.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
}

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

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

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

.field label {
  color: var(--gold-soft);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.3);
  color: var(--ink);
  padding: 12px 14px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(227, 95, 139, 0.14);
}

.check-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: var(--ink);
  font: 14px var(--sans);
  margin: 16px 0;
}

.check-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.check-row input {
  accent-color: var(--pink);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.72);
}

.modal.open {
  display: flex;
}

.modal-card {
  width: min(760px, 94vw);
  max-height: 90vh;
  overflow: auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    radial-gradient(circle at 88% 10%, rgba(227, 95, 139, 0.14), transparent 15rem),
    linear-gradient(180deg, #0d1516, #030505);
  box-shadow: var(--shadow);
}

.modal-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.modal-close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--pink-soft);
  cursor: pointer;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-top: 16px;
}

.calendar span {
  min-height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 144, 54, 0.28);
  border-radius: 6px;
  color: var(--muted);
  font: 13px var(--sans);
}

.calendar .day {
  color: var(--gold-soft);
  background: rgba(201, 144, 54, 0.08);
}

.portal-shell {
  min-height: calc(100vh - 112px);
  display: grid;
  place-items: center;
  padding: 42px 18px;
}

.portal-grid {
  grid-template-columns: repeat(2, minmax(280px, 560px));
  align-items: stretch;
  justify-content: center;
  gap: 22px;
}

.portal-card {
  width: min(560px, 94vw);
  text-align: center;
  align-items: center;
}

.portal-card .field {
  width: 100%;
  text-align: left;
}

.is-hidden {
  display: none !important;
}

.dashboard-shell {
  width: min(1180px, 94vw);
  margin: 0 auto;
  padding: 42px 0 76px;
}

.dashboard-hero,
.admin-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 22px;
}

.eyebrow {
  color: var(--gold-soft);
  font: 13px var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.dashboard-status,
.metric-card {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.24);
  padding: 18px;
  min-width: 190px;
  font-family: var(--sans);
}

.dashboard-status span,
.metric-card span {
  display: block;
  color: var(--gold-soft);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dashboard-status strong,
.metric-card strong {
  display: block;
  color: var(--ink);
  font-size: 32px;
  margin: 6px 0;
}

.dashboard-status small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.dashboard-card {
  font-family: var(--sans);
}

.dashboard-card h2,
.admin-panel h2 {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 28px;
}

.dashboard-card.wide {
  grid-column: span 2;
}

.portal-workspace,
.admin-workspace {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.portal-module {
  align-items: stretch;
  text-align: left;
}

.portal-module p,
.module-form p,
.mini-history p,
.option-item p {
  font-family: var(--sans);
}

.module-form {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0;
}

.option-list,
.mini-history {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.option-item,
.history-item {
  border: 1px solid rgba(201, 144, 54, 0.42);
  border-radius: 7px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.025);
  font-family: var(--sans);
}

.option-item {
  display: grid;
  gap: 6px;
}

.history-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 10px;
}

.history-item p {
  grid-column: 1 / -1;
  margin: 0;
}

.option-item strong,
.history-item strong {
  color: var(--ink);
}

.option-item span,
.history-item span {
  color: var(--pink-soft);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.resource-item {
  border: 1px solid rgba(201, 144, 54, 0.42);
  border-radius: 7px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.resource-item strong {
  color: var(--pink-soft);
}

.resource-item p,
.dashboard-message {
  font-family: var(--sans);
}

.admin-shell {
  width: min(1120px, 94vw);
  margin: 0 auto;
  padding: 42px 0 70px;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.admin-panel {
  padding: 30px;
}

.admin-token-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  align-items: end;
  gap: 14px;
  margin: 24px 0;
}

.admin-requests {
  display: grid;
  gap: 14px;
}

.admin-filters {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, 240px);
  gap: 12px;
  margin: 0 0 18px;
}

.admin-request {
  border: 1px solid rgba(201, 144, 54, 0.5);
  border-radius: 7px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.18);
  font-family: var(--sans);
}

.admin-request > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--gold-soft);
}

.admin-request span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  background: rgba(240, 157, 184, 0.12);
  color: var(--pink-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.status-approved {
  color: #aee8b4 !important;
  background: rgba(97, 198, 83, 0.14) !important;
}

.status-denied {
  color: #f2a6a6 !important;
  background: rgba(238, 103, 92, 0.14) !important;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    row-gap: 8px;
    min-height: 0;
    padding: 12px 18px 14px;
  }

  .portal-grid,
  .admin-token-row,
  .dashboard-hero,
  .admin-heading,
  .admin-filters {
    grid-template-columns: 1fr;
  }

  .dashboard-grid,
  .admin-metrics,
  .resource-grid,
  .portal-workspace,
  .admin-workspace {
    grid-template-columns: 1fr;
  }

  .dashboard-card.wide {
    grid-column: auto;
  }

  .brand {
    justify-self: center;
    width: min(360px, 90vw);
    background-position: center;
  }

  .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px clamp(18px, 4vw, 42px);
    font-size: 14px;
  }

  .nav a {
    padding: 8px 0 6px;
  }

  .header-action {
    justify-self: center;
    min-height: 38px;
    padding: 0 18px;
  }

  .menu-toggle {
    display: none;
  }

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

  body[data-page="home"] .hero {
    min-height: clamp(540px, 72vh, 720px);
    padding-top: clamp(64px, 8vw, 104px);
    background-position: center top;
  }

  body[data-page="home"] .hero::before {
    background-position: center top;
  }

  body[data-page="home"] .hero-copy {
    padding-left: 0;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(50px, 7.3vw, 78px);
  }

  body[data-page="home"] .hero .script-line {
    font-size: clamp(52px, 8vw, 86px);
  }

  .services-home,
  .packages-home,
  .cards-3,
  .cards-4,
  .cards-5,
  .split {
    grid-template-columns: 1fr 1fr;
  }

  body[data-page="services"] .split {
    grid-template-columns: 1fr;
  }

  body[data-page="services"] .split > .cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="privacy"] .privacy-feature-grid,
  .privacy-policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .privacy-panel {
    grid-column: 1 / -1;
    min-height: 260px;
    padding-left: clamp(190px, 22vw, 250px);
    text-align: left;
  }

  .privacy-panel > div:not(.lock-heart):not(.panel-roses) {
    position: relative;
    z-index: 1;
  }

  .privacy-panel .panel-roses {
    left: clamp(18px, 4vw, 48px);
    top: 50%;
    bottom: auto;
    width: clamp(130px, 16vw, 178px);
    height: clamp(106px, 13vw, 146px);
    transform: translateY(-50%);
  }

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

  .split .cards-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .browser-bar {
    display: none;
  }

  .site-header {
    padding: 10px 12px 12px;
    row-gap: 7px;
  }

  .brand {
    width: min(310px, 92vw);
    height: 46px;
  }

  .brand .mark {
    display: none;
  }

  .nav {
    display: flex;
    gap: 5px 14px;
    font-size: 12px;
    line-height: 1.1;
  }

  .nav a {
    padding: 5px 0 4px;
  }

  .header-action {
    display: inline-flex;
    min-height: 36px;
    max-width: 100%;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero {
    padding: 30px 18px;
    min-height: auto;
  }

  body[data-page="home"] .hero {
    min-height: clamp(560px, 76vh, 680px);
    padding: 58px 18px 96px;
  }

  body[data-page="home"] .hero::before {
    background-position: 62% top;
  }

  .subpage .hero.compact {
    min-height: clamp(420px, 62vh, 560px);
    padding: 72px 18px 86px;
  }

  .subpage .hero::before {
    background-position: center top;
  }

  .hero h1,
  .page-title {
    font-size: 42px;
  }

  .hero .script-line,
  .script-line {
    font-size: 42px;
  }

  body[data-page="home"] .hero h1 {
    font-size: clamp(34px, 9.4vw, 46px);
    white-space: nowrap;
  }

  body[data-page="home"] .hero .script-line {
    width: min(110%, calc(100vw - 24px));
    font-size: clamp(32px, 9.1vw, 44px);
    white-space: nowrap;
  }

  .subpage .hero h1 {
    font-size: clamp(36px, 10vw, 50px);
  }

  .subpage .hero .script-line {
    width: 100%;
    font-size: clamp(34px, 10vw, 50px);
  }

  .subpage .hero .lead {
    font-size: 17px;
  }

  body[data-page="home"] .lead {
    font-size: 17px;
  }

  body[data-page="home"] .hero-actions,
  body[data-page="home"] .trust-row {
    gap: 12px;
  }

  body[data-page="home"] .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  body[data-page="home"] .hero-actions .btn,
  body[data-page="home"] .hero-actions .outline-btn {
    width: min(100%, 420px);
  }

  body[data-page="home"] .trust-row {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .hero-art {
    min-height: 260px;
  }

  .figure-back,
  .robe,
  .wardrobe {
    transform: scale(0.82);
    transform-origin: bottom right;
  }

  .vanity-table {
    right: 0;
    width: 100%;
  }

  .neon-heart {
    right: 18px;
    transform: scale(0.8) rotate(-2deg);
  }

  .section {
    padding: 28px 14px;
  }

  .services-home,
  .packages-home,
  .cards-3,
  .cards-4,
  .cards-5,
  .split,
  .form-grid,
  .footer-strip {
    grid-template-columns: 1fr;
  }

  body[data-page="services"] .split > .cards-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body[data-page="services"] .split > .cards-3 .service-card {
    min-height: 0;
    padding: 14px 8px 12px;
    gap: 7px;
  }

  body[data-page="services"] .split > .cards-3 .card-icon {
    width: 68px;
    height: 68px;
  }

  body[data-page="services"] .split > .cards-3 h3 {
    font-size: clamp(15px, 3.7vw, 18px);
  }

  body[data-page="services"] .split > .cards-3 p {
    font-size: 12px;
    line-height: 1.28;
  }

  body[data-page="services"] .split > .cards-3 .learn {
    font-size: 10px;
  }

  body[data-page="privacy"] .privacy-feature-grid,
  .privacy-policy-grid,
  body[data-page="privacy"] .privacy-bottom-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .privacy-panel,
  .form-panel,
  .compare-panel {
    padding: 20px;
  }

  .privacy-panel,
  body[data-page="home"] .privacy-panel {
    min-height: 260px;
    padding: 28px 20px 28px 140px;
    justify-items: start;
    text-align: left;
  }

  .service-card,
  .package-card,
  .privacy-panel,
  .wide-cta {
    grid-template-columns: 1fr;
  }

  .privacy-panel .panel-roses,
  body[data-page="home"] .privacy-panel .panel-roses {
    left: 14px;
    top: 50%;
    bottom: auto;
    width: 112px;
    height: 92px;
    transform: translateY(-50%);
  }

  body[data-page="home"] .privacy-panel .panel-butterfly {
    right: 14px;
    top: 18px;
    width: 58px;
    height: 58px;
  }

  .footer-note {
    text-align: left;
  }
}
