:root {
  --bg: #fbf4f7;
  --card: #ffffff;

  --primary: #2a111b;
  --primaryText: #ffffff;

  --text: #24121a;
  --muted: #7a5f6b;

  --accent: #be185d;
  --accentDark: #9d174d;
  --accentSoft: #fce7f3;

  --rose: #fff1f2;
  --soft: #f8edf2;
  --line: rgba(42, 17, 27, 0.12);

  --shadow: 0 26px 80px rgba(42, 17, 27, 0.16);
  --focusRing: rgba(190, 24, 93, 0.42);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  overflow-x: hidden;
}

body {
  min-height: 100dvh;
  background: var(--card);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a,
button {
  color: inherit;
  cursor: pointer;
}

a {
  text-decoration: none;
}

button {
  font-family: inherit;
}

img {
  max-width: 100%;
}

.beautyPage {
  width: 100%;
  min-height: 100dvh;
  background: var(--card);
}

.beautyCard {
  width: 100%;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--card);
}

@media (min-width: 768px) {
  body {
    background:
      radial-gradient(circle at top, rgba(190, 24, 93, 0.16), transparent 34rem),
      var(--bg);
  }

  .beautyPage {
    display: grid;
    place-items: center;
    padding: 2rem 1rem;
    background:
      radial-gradient(circle at top, rgba(190, 24, 93, 0.16), transparent 34rem),
      var(--bg);
  }

  .beautyCard {
    max-width: 430px;
    min-height: auto;
    border: 1px solid rgba(42, 17, 27, 0.08);
    border-radius: 2rem;
    box-shadow: var(--shadow);
  }
}

/* HERO */
.beautyHero {
  position: relative;
  height: 285px;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--primary);
}

@media (min-width: 768px) {
  .beautyHero {
    height: 310px;
  }
}

.beautyHero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--heroPosition, center center);
}

.heroOverlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(42, 17, 27, 0.9), rgba(42, 17, 27, 0.28), rgba(42, 17, 27, 0.05)),
    radial-gradient(circle at 84% 20%, rgba(190, 24, 93, 0.45), transparent 34%);
}

.shareBtn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
  transition: transform 0.18s ease, background 0.18s ease;
}

.shareBtn:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.shareBtn svg {
  width: 1.15rem;
  height: 1.15rem;
}

.heroText {
  position: absolute;
  left: 1.1rem;
  right: 5rem;
  bottom: 4.8rem;
  z-index: 2;
  color: #ffffff;
}

.heroText p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.heroText h1 {
  margin: 0.4rem 0 0;
  color: #ffffff;
  font-size: clamp(2rem, 10vw, 3rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: -0.07em;
  overflow-wrap: anywhere;
}

/* CONTENT */
.beautyContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  padding-bottom: calc(1rem + env(safe-area-inset-bottom));
}

/* BRAND */
.brandPanel {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.95rem;
  align-items: center;
  margin-top: -4rem;
  border: 1px solid var(--line);
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.85rem;
  box-shadow: 0 18px 44px rgba(42, 17, 27, 0.14);
  backdrop-filter: blur(14px);
}

.brandMark {
  display: grid;
  width: 4.8rem;
  height: 4.8rem;
  place-items: center;
  border-radius: 1.35rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(244, 114, 182, 0.9), transparent 55%),
    var(--primary);
  color: var(--primaryText);
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.brandInfo {
  min-width: 0;
}

.status {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  background: var(--accentSoft);
  color: var(--accentDark);
  padding: 0.38rem 0.62rem;
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brandInfo h2 {
  margin: 0.45rem 0 0;
  color: var(--text);
  font-size: 1.48rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
}

.brandInfo p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 720;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.description {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 620;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

/* BUTTONS */
.mainActions {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

@media (min-width: 380px) {
  .mainActions {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.btn,
.finalCta a,
.serviceBtn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 950;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.btn:hover,
.finalCta a:hover,
.serviceBtn:hover,
.quickLink:hover,
.socialLink:hover {
  transform: translateY(-2px);
}

.btn svg {
  width: 1.05rem;
  height: 1.05rem;
}

.btnPrimary {
  background: var(--accent);
  color: #ffffff;
}

.btnSecondary {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btnSecondary:hover {
  background: var(--primary);
  color: var(--primaryText);
}

/* QUICK */
.quickLinks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.quickLink {
  display: grid;
  gap: 0.42rem;
  place-items: center;
  min-height: 76px;
  border: 0;
  border-radius: 1.25rem;
  background: var(--rose);
  color: var(--text);
  padding: 0.7rem 0.4rem;
  text-align: center;
  transition: transform 0.18s ease, background 0.18s ease;
}

.quickLink:hover {
  background: var(--soft);
}

.quickIcon {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primaryText);
}

.quickIcon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.quickLink span:last-child {
  font-size: 0.7rem;
  font-weight: 900;
}

/* SOCIAL LINKS */
.socialSection {
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.socialSection p {
  margin: 0;
  color: var(--accentDark);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.socialLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.socialLink {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  border-radius: 999px;
  background: var(--rose);
  color: var(--text);
  padding: 0.65rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 900;
  transition: transform 0.18s ease, background 0.18s ease;
}

.socialLink:hover {
  background: var(--soft);
}

.socialLink svg {
  width: 1rem;
  height: 1rem;
}

/* SERVICES */
.servicesSection {
  margin-top: 1.25rem;
  border-top: 1px solid var(--line);
  padding-top: 1.15rem;
}

.sectionTitle p {
  margin: 0;
  color: var(--accentDark);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sectionTitle h2 {
  margin: 0.3rem 0 0;
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.servicesList {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.serviceCard {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.85rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  background: #ffffff;
  padding: 0.9rem;
}

.serviceInfo h3 {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.15;
}

.serviceInfo p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 620;
  line-height: 1.35;
}

.serviceMeta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.55rem;
}

.serviceMeta span {
  display: inline-flex;
  border-radius: 999px;
  background: var(--accentSoft);
  color: var(--accentDark);
  padding: 0.36rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 950;
}

.serviceBtn {
  min-height: 42px;
  border: 0;
  background: var(--primary);
  color: var(--primaryText);
  padding: 0 0.85rem;
  white-space: nowrap;
}

/* INFO */
.infoPanel {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.15rem;
}

.infoPanel > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
  border-radius: 1.25rem;
  background: var(--rose);
  padding: 0.9rem;
}

.infoPanel > div > span {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
}

.infoPanel svg {
  width: 1.12rem;
  height: 1.12rem;
}

.infoPanel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.infoPanel strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.3;
}

/* CTA */
.finalCta {
  margin-top: 1.15rem;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(244, 114, 182, 0.55), transparent 34%),
    var(--primary);
  color: var(--primaryText);
  padding: 1.15rem;
}

.finalCta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.finalCta h2 {
  margin: 0.35rem 0 0;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.045em;
}

.finalCta span {
  display: block;
  margin-top: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
}

.finalCta a {
  width: 100%;
  margin-top: 1rem;
  background: var(--accent);
  color: #ffffff;
}

.footer {
  margin-top: auto;
  padding-top: 1rem;
  padding-bottom: 0.25rem;
  text-align: center;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

/* ACCESSIBILITY */
a:focus-visible,
button:focus-visible {
  outline: 4px solid var(--focusRing);
  outline-offset: 4px;
}

@media (max-width: 370px) {
  .quickLinks {
    grid-template-columns: repeat(2, 1fr);
  }

  .serviceCard {
    grid-template-columns: 1fr;
  }

  .serviceBtn {
    width: 100%;
  }

  .heroText {
    right: 1rem;
  }
}