:root {
  --purple: #7c3aed;
  --purple-dark: #32125b;
  --rose: #db2777;
  --gold: #f59e0b;
  --ink: #140f1f;
  --muted: #75687f;
  --line: rgba(124, 58, 237, 0.18);
  --paper: #fff9fc;
  --panel: rgba(255, 255, 255, 0.88);
  --shadow: 0 24px 70px rgba(38, 16, 67, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(219, 39, 119, 0.18), transparent 24rem),
    radial-gradient(circle at 92% 12%, rgba(245, 158, 11, 0.18), transparent 20rem),
    linear-gradient(140deg, #fff7fb 0%, #f8f1ff 48%, #fff8ea 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(124, 58, 237, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 58, 237, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

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

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

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

.site-header,
.section-shell,
.page-hero,
.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(44, 18, 72, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--rose));
  box-shadow: 0 12px 26px rgba(124, 58, 237, 0.32);
  font-weight: 900;
}

.brand__mark--image {
  overflow: hidden;
  background: #fff;
}

.brand__mark--image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 1.12rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.site-nav summary {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 9px 12px;
  color: #3b2656;
  font-size: 0.9rem;
  font-weight: 750;
  cursor: pointer;
}

.site-nav > a,
.site-nav > .nav-dropdown > summary {
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 72px;
  min-height: 50px;
  padding: 7px 11px;
  line-height: 1.08;
}

.site-nav > a span,
.site-nav > .nav-dropdown > summary span {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.site-nav > a strong,
.site-nav > .nav-dropdown > summary strong {
  font-size: 0.8rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.site-nav summary:hover,
.site-nav summary[aria-current="page"] {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--rose));
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 6px;
  width: min(420px, 90vw);
  max-height: 60vh;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown[open] .nav-dropdown__menu,
.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown__menu a {
  flex-direction: row;
  justify-content: flex-start;
  gap: 8px;
  border-radius: 12px;
  padding: 10px 12px;
  background: #fbf7ff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #f3eaff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--purple-dark);
}

.hero {
  display: grid;
  justify-items: center;
  min-height: 0;
  padding: 42px clamp(18px, 4vw, 54px) 44px;
  text-align: center;
}

.section-shell,
.page-hero {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero__copy {
  display: grid;
  justify-items: center;
  max-width: 1120px;
  margin-inline: auto;
}

.hero .eyebrow {
  white-space: nowrap;
}

.hero__visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background:
    linear-gradient(155deg, rgba(20, 15, 31, 0.18), rgba(20, 15, 31, 0.72)),
    linear-gradient(135deg, rgba(124, 58, 237, 0.8), rgba(219, 39, 119, 0.62) 48%, rgba(245, 158, 11, 0.64));
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  transform: rotate(-18deg);
}

.visual-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.visual-card--main {
  left: 28px;
  right: 28px;
  bottom: 32px;
}

.visual-card--mini {
  top: 30px;
  right: 28px;
  max-width: 190px;
}

.visual-card span,
.visual-card small,
.visual-card strong {
  display: block;
}

.visual-card span {
  color: #ffe7aa;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-card strong {
  font-size: 2rem;
  line-height: 1.1;
}

.visual-card small {
  color: rgba(255, 255, 255, 0.82);
}

.hero-photo-rotator {
  position: relative;
  width: min(360px, 78vw);
  aspect-ratio: 9 / 16;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(124, 58, 237, 0.2), rgba(219, 39, 119, 0.16), rgba(245, 158, 11, 0.2)),
    #140f1f;
  box-shadow: 0 28px 70px rgba(38, 16, 67, 0.26);
}

.hero-photo-rotator__frame {
  position: absolute;
  inset: 0;
}

.hero-photo-rotator__frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(245, 158, 11, 0.5);
  border-radius: 18px;
}

.hero-photo-rotator img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.32s ease;
}

.hero-photo-rotator img.is-active {
  opacity: 1;
}

.hero-carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  color: #fff;
  background: rgba(20, 15, 31, 0.62);
  box-shadow: 0 12px 28px rgba(20, 15, 31, 0.24);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(12px);
}

.hero-carousel-btn--prev {
  left: 12px;
}

.hero-carousel-btn--next {
  right: 12px;
}

.hero-carousel-btn svg {
  width: 22px;
  height: 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 14px;
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-radius: 999px;
  padding: 5px 11px;
  color: #7a4b00;
  background: rgba(255, 248, 232, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 1120px;
  font-size: clamp(2.1rem, 4.8vw, 4.65rem);
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.65rem);
}

h3 {
  font-size: 1.08rem;
}

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

.hero p,
.page-hero p,
.section-heading p {
  max-width: 760px;
  margin-top: 18px;
  font-size: 1.06rem;
}

.hero__actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.hero > .hero__actions {
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 850;
  cursor: pointer;
}

.whatsapp-logo {
  display: inline-grid;
  flex: 0 0 auto;
  width: 1.18em;
  height: 1.18em;
  place-items: center;
  background: url("/assets/img/icons/whatsapp.svg") center / contain no-repeat;
}

.whatsapp-logo::before {
  content: none;
}

.btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

.btn--gold {
  color: #241505;
  background: linear-gradient(135deg, #fbbf24, var(--gold));
  box-shadow: 0 16px 30px rgba(245, 158, 11, 0.28);
}

.btn--purple {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--rose));
  box-shadow: 0 16px 30px rgba(124, 58, 237, 0.22);
}

.btn--ghost {
  border-color: var(--line);
  color: #38214d;
  background: rgba(255, 255, 255, 0.72);
}

.btn--whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 16px 30px rgba(18, 140, 126, 0.24);
}

.trust-row,
.profile-meta,
.filters,
.feature-list,
.area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-row {
  margin-top: 24px;
}

.trust-row span,
.profile-meta span,
.feature-list > span,
.area-cloud span,
.area-cloud a,
.filter-chip,
.status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 999px;
  padding: 5px 10px;
  color: #4d2875;
  background: rgba(246, 239, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.status {
  flex: 0 0 auto;
  min-width: max-content;
  white-space: nowrap;
}

.section-shell,
.page-hero {
  margin-top: 24px;
  padding: clamp(22px, 3.4vw, 42px);
}

.page-hero {
  margin-top: 32px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.page-hero h1 {
  max-width: 1080px;
  font-size: clamp(2.05rem, 4.5vw, 4.8rem);
  text-wrap: balance;
}

.page-hero p {
  max-width: 920px;
  margin-inline: auto;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
}

.split--centered {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.split--centered > div {
  max-width: 880px;
}

.split--centered .area-cloud {
  justify-content: center;
}

.section-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 22px;
  text-align: center;
}

.section-heading h2 {
  max-width: 1100px;
}

.section-heading p {
  max-width: 1020px;
  margin-inline: auto;
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

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

.stats-strip div,
.benefit-grid article,
.safety-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
}

.stats-strip strong {
  display: block;
  color: var(--purple-dark);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.stats-strip span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.benefit-grid h3 {
  margin-bottom: 10px;
}

.benefit-grid article,
.safety-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 12px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--rose));
  box-shadow: 0 14px 26px rgba(124, 58, 237, 0.22);
}

.benefit-icon svg {
  width: 21px;
  height: 21px;
}

.feature-list > span {
  gap: 7px;
}

.feature-list > span > svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
}

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

.trust-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 250px;
  border: 1px solid rgba(124, 58, 237, 0.12);
  border-radius: 16px;
  padding: 34px 24px;
  text-align: center;
  background: #fff;
}

.trust-card > svg {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 999px;
  padding: 16px;
  color: #fff;
  box-shadow: 0 18px 36px rgba(20, 15, 31, 0.16);
}

.trust-card--blue {
  background: #eff7ff;
}

.trust-card--blue > svg {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
}

.trust-card--green {
  background: #eefdf4;
}

.trust-card--green > svg {
  background: linear-gradient(135deg, #10b981, #059669);
}

.trust-card--rose {
  background: #fff3fd;
}

.trust-card--rose > svg {
  background: linear-gradient(135deg, #a855f7, #db2777);
}

.trust-card h3 {
  margin-bottom: 10px;
}

.profile-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.profile-toolbar label {
  display: grid;
  gap: 7px;
  color: #2e1b44;
  font-size: 0.86rem;
  font-weight: 850;
}

.profile-toolbar input,
.profile-toolbar select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
}

.result-summary,
.form-note {
  margin: 8px 0 16px;
  color: #5e4d6e;
  font-weight: 750;
}

.result-summary--page {
  margin-top: -8px;
  font-size: 0.95rem;
  font-weight: 650;
}

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

.profile-card,
.area-card,
.contact-card,
.legal-copy,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.profile-card {
  overflow: hidden;
}

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

.profile-card__image {
  position: relative;
  aspect-ratio: 9 / 16;
  min-height: 300px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(20, 15, 31, 0.08), rgba(20, 15, 31, 0.54)),
    linear-gradient(145deg, rgba(124, 58, 237, 0.75), rgba(219, 39, 119, 0.5) 48%, rgba(245, 158, 11, 0.42));
}

.profile-card__image--1 {
  background:
    linear-gradient(180deg, rgba(20, 15, 31, 0.07), rgba(20, 15, 31, 0.5)),
    linear-gradient(145deg, #8b5cf6, #db2777 50%, #8b6f4a);
}

.profile-card__image--2 {
  background:
    linear-gradient(180deg, rgba(20, 15, 31, 0.07), rgba(20, 15, 31, 0.5)),
    linear-gradient(145deg, #7c3aed, #c084fc 48%, #9f6b54);
}

.profile-card__image--3 {
  background:
    linear-gradient(180deg, rgba(20, 15, 31, 0.07), rgba(20, 15, 31, 0.5)),
    linear-gradient(145deg, #a855f7, #f472b6 46%, #7f5f42);
}

.profile-card__image--4 {
  background:
    linear-gradient(180deg, rgba(20, 15, 31, 0.07), rgba(20, 15, 31, 0.5)),
    linear-gradient(145deg, #6d28d9, #db2777 42%, #a16207);
}

.profile-card__image--5 {
  background:
    linear-gradient(180deg, rgba(20, 15, 31, 0.07), rgba(20, 15, 31, 0.5)),
    linear-gradient(145deg, #9333ea, #e879f9 46%, #76513d);
}

.profile-card__image--6 {
  background:
    linear-gradient(180deg, rgba(20, 15, 31, 0.07), rgba(20, 15, 31, 0.5)),
    linear-gradient(145deg, #7e22ce, #ec4899 46%, #915f3d);
}

.profile-card__image--7 {
  background:
    linear-gradient(180deg, rgba(20, 15, 31, 0.07), rgba(20, 15, 31, 0.5)),
    linear-gradient(145deg, #4c1d95, #d946ef 46%, #b7791f);
}

.profile-card__image--8 {
  background:
    linear-gradient(180deg, rgba(20, 15, 31, 0.07), rgba(20, 15, 31, 0.5)),
    linear-gradient(145deg, #581c87, #be185d 46%, #7c5b38);
}

.profile-card__image span {
  position: absolute;
  z-index: 2;
  left: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #2b1700;
  background: #f8c75a;
  font-size: 0.78rem;
  font-weight: 900;
}

.profile-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #140f1f;
}

.profile-card__body {
  padding: 16px;
}

.profile-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.profile-card__top > div {
  min-width: 0;
}

.profile-card h3 {
  font-size: 1.25rem;
}

.profile-bio {
  margin-top: 12px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.profile-meta {
  margin-top: 12px;
}

.profile-actions {
  display: grid;
  gap: 9px;
  margin-top: 14px;
}

.profile-actions__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 999px;
  color: #241505;
  background: linear-gradient(135deg, #fbbf24, var(--gold));
  box-shadow: 0 14px 26px rgba(245, 158, 11, 0.24);
  font-size: 0.95rem;
  font-weight: 900;
}

.profile-actions__primary svg {
  width: 18px;
  height: 18px;
}

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

.profile-mini-action {
  display: inline-flex;
  min-width: 0;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(31, 12, 50, 0.15);
}

.profile-mini-action svg {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  stroke-width: 2.8;
}

.profile-mini-action em {
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-mini-action--call {
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
}

.profile-mini-action--whatsapp {
  background: linear-gradient(135deg, #22c55e, #34d399);
}

.profile-mini-action--telegram {
  background: linear-gradient(135deg, #0088cc, #61c6f5);
}

.filters {
  margin-bottom: 18px;
}

.filter-chip {
  border: 0;
  cursor: pointer;
  text-decoration: none;
}

.filter-chip.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--rose));
}

.profile-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.profile-pagination span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 999px;
  padding: 8px 14px;
  color: #4d2875;
  background: rgba(246, 239, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 850;
}

.home-category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -4px 0 18px;
}

.home-category-tabs button {
  min-height: 40px;
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 999px;
  padding: 9px 18px;
  color: #3f1e5f;
  background: #fbf7ff;
  font-weight: 900;
  cursor: pointer;
}

.home-category-tabs button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--rose));
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.2);
}

.profile-detail-hero {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding-top: 34px;
}

.profile-detail-hero.has-gallery {
  grid-template-columns: minmax(260px, 430px) minmax(260px, 430px);
  grid-template-areas:
    "media gallery"
    "copy copy";
  justify-content: center;
  align-items: start;
}

.profile-detail-hero.has-gallery .profile-detail-media {
  grid-area: media;
  width: 100%;
}

.profile-detail-hero.has-gallery .profile-detail-copy {
  grid-area: copy;
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 960px;
  margin: 8px auto 0;
  text-align: center;
}

.profile-detail-hero.has-gallery .profile-detail-status,
.profile-detail-hero.has-gallery .profile-detail-actions {
  justify-content: center;
}

.profile-detail-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(124, 58, 237, 0.78), rgba(219, 39, 119, 0.42), rgba(245, 158, 11, 0.32));
  box-shadow: var(--shadow);
}

.profile-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #140f1f;
}

.profile-detail-media span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  border-radius: 999px;
  padding: 8px 13px;
  color: #2b1700;
  background: #f8c75a;
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 14px 24px rgba(20, 15, 31, 0.2);
}

.profile-detail-copy h1 {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--purple-dark);
  font-size: clamp(2.1rem, 6vw, 4.7rem);
  line-height: 0.95;
}

.profile-detail-copy p {
  max-width: 760px;
  margin-top: 18px;
  color: #4a365d;
  font-size: 1.08rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: #563177;
  font-size: 0.88rem;
  font-weight: 850;
}

.back-link svg {
  width: 17px;
  height: 17px;
}

.profile-detail-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.profile-detail-status span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: #3e245b;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 900;
  white-space: nowrap;
}

.profile-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.profile-gallery-card {
  position: relative;
  grid-area: gallery;
  align-self: stretch;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 0;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 40px rgba(38, 16, 67, 0.12);
}

.profile-gallery-card__frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(145deg, #21122f, #5d174c);
}

.profile-gallery-card__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.34s ease;
}

.profile-gallery-card__frame img.is-active {
  opacity: 1;
}

.profile-gallery-btn {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #fff;
  background: rgba(20, 15, 31, 0.62);
  box-shadow: 0 12px 26px rgba(20, 15, 31, 0.22);
  cursor: pointer;
  transform: translateY(-50%);
}

.profile-gallery-btn--prev {
  left: 18px;
}

.profile-gallery-btn--next {
  right: 18px;
}

.profile-gallery-btn svg {
  width: 20px;
  height: 20px;
}

.profile-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: start;
  margin-top: 28px;
}

.profile-detail-panel,
.profile-contact-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(38, 16, 67, 0.1);
}

.profile-detail-panel h2,
.profile-contact-panel h2 {
  margin: 4px 0 14px;
  color: var(--purple-dark);
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.profile-facts div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  background: #fbf7ff;
}

.profile-facts dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.profile-facts dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 900;
}

.profile-contact-panel {
  display: grid;
  gap: 12px;
}

.profile-contact-panel p {
  margin: 0;
  color: #5d4b6e;
}

.internal-seo-links .section-heading {
  max-width: 900px;
}

.internal-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.link-card {
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #fbf7ff 100%);
  color: var(--purple-dark);
  box-shadow: 0 16px 34px rgba(38, 16, 67, 0.08);
}

.link-card svg {
  width: 34px;
  height: 34px;
  color: var(--rose);
}

.link-card strong {
  font-size: 1rem;
  line-height: 1.2;
}

.link-card small {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
}

.seo-page-hero .section-heading {
  max-width: 980px;
}

.seo-keyword-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.seo-keyword-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fbf7ff;
  color: var(--purple-dark);
  font-size: 0.84rem;
  font-weight: 900;
  white-space: nowrap;
}

.seo-keyword-row--compact {
  justify-content: flex-start;
  margin-top: 10px;
}

.seo-visual-context {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 24px;
  align-items: center;
}

.seo-visual-context h2 {
  margin: 12px 0 12px;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.08;
}

.seo-visual-context p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.seo-visual-context figure {
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 178, 24, 0.7);
  border-radius: 18px;
  box-shadow: 0 20px 44px rgba(38, 16, 67, 0.12);
  aspect-ratio: 16 / 9;
  background: #fff;
}

.seo-visual-context img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seo-intent-path .link-card {
  min-height: 152px;
}

.seo-profile-bridge {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}

.seo-profile-preview--city-keyword .seo-profile-bridge {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seo-profile-bridge__card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 8px;
  min-height: 132px;
  padding: 16px 12px;
  border: 1px solid rgba(210, 182, 255, 0.9);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #fbf7ff 100%);
  color: var(--purple-dark);
  text-align: center;
  box-shadow: 0 14px 30px rgba(38, 16, 67, 0.08);
}

.seo-profile-bridge__card svg {
  width: 30px;
  height: 30px;
  justify-self: center;
  color: var(--rose);
  stroke-width: 2.6;
}

.seo-profile-bridge__card strong {
  font-size: 0.96rem;
  line-height: 1.18;
}

.seo-profile-bridge__card small {
  align-self: start;
  color: var(--muted);
  font-weight: 750;
  font-size: 0.78rem;
  line-height: 1.38;
}

.html-sitemap-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.html-sitemap-summary article {
  display: grid;
  gap: 4px;
  min-height: 110px;
  align-content: center;
  border: 1px solid rgba(210, 182, 255, 0.85);
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(180deg, #fff 0%, #fbf7ff 100%);
  box-shadow: 0 16px 34px rgba(38, 16, 67, 0.08);
}

.html-sitemap-summary strong {
  color: var(--purple-dark);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.html-sitemap-summary span {
  color: var(--muted);
  font-weight: 900;
}

.html-sitemap-section {
  display: grid;
  gap: 20px;
}

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

.html-sitemap-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 8px;
  min-height: 122px;
  padding: 14px;
  border: 1px solid rgba(210, 182, 255, 0.86);
  border-radius: 14px;
  background: #fff;
  color: var(--purple-dark);
  box-shadow: 0 12px 28px rgba(38, 16, 67, 0.07);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.html-sitemap-card:hover {
  border-color: rgba(203, 26, 164, 0.38);
  box-shadow: 0 18px 34px rgba(38, 16, 67, 0.11);
  transform: translateY(-2px);
}

.html-sitemap-card svg {
  width: 28px;
  height: 28px;
  color: var(--rose);
  stroke-width: 2.6;
}

.html-sitemap-card strong {
  font-size: 0.96rem;
  line-height: 1.2;
}

.html-sitemap-card small {
  color: var(--muted);
  font-weight: 750;
  font-size: 0.78rem;
  line-height: 1.42;
}

.seo-direct-answer {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(270px, 0.85fr);
  gap: 20px;
  align-items: center;
  border-color: rgba(255, 178, 24, 0.44);
  background:
    linear-gradient(135deg, rgba(255, 251, 235, 0.92), rgba(255, 255, 255, 0.96) 44%, rgba(248, 247, 255, 0.94)),
    #fff;
}

.seo-direct-answer--inline {
  margin: 24px auto 0;
  border: 1px solid rgba(255, 178, 24, 0.44);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 34px rgba(38, 16, 67, 0.08);
}

.seo-direct-answer__copy h2 {
  margin: 10px 0 10px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.6vw, 2.45rem);
  line-height: 1.1;
}

.seo-direct-answer__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.seo-answer-list {
  display: grid;
  gap: 10px;
}

.seo-answer-list div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  border: 1px solid rgba(210, 182, 255, 0.84);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.82);
}

.seo-answer-list svg {
  width: 26px;
  height: 26px;
  justify-self: center;
  color: var(--rose);
  stroke-width: 2.7;
}

.seo-answer-list strong {
  color: var(--purple-dark);
  font-size: 0.94rem;
  line-height: 1.35;
}

.seo-answer-list small {
  display: block;
  grid-column: 2;
  color: var(--muted);
  font-weight: 750;
  font-size: 0.82rem;
  line-height: 1.45;
}

.seo-direct-answer--city-keyword {
  grid-template-columns: 1fr;
  text-align: center;
}

.seo-direct-answer--city-keyword .seo-direct-answer__copy {
  display: grid;
  justify-items: center;
}

.seo-direct-answer--city-keyword .seo-direct-answer__copy p {
  max-width: 980px;
}

.seo-direct-answer--city-keyword .seo-answer-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-direct-answer--city-keyword .seo-answer-list div {
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: start;
  min-height: 150px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7ff 100%);
  box-shadow: 0 14px 30px rgba(38, 16, 67, 0.07);
}

.seo-direct-answer--city-keyword .seo-answer-list svg {
  width: 34px;
  height: 34px;
  color: var(--rose);
}

.seo-direct-answer--area-keyword {
  grid-template-columns: 1fr;
  text-align: center;
}

.seo-direct-answer--area-keyword .seo-direct-answer__copy {
  display: grid;
  justify-items: center;
}

.seo-direct-answer--area-keyword .seo-direct-answer__copy p {
  max-width: 940px;
}

.seo-direct-answer--area-keyword .seo-answer-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-direct-answer--area-keyword .seo-answer-list div {
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: start;
  min-height: 150px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7ff 100%);
  box-shadow: 0 14px 30px rgba(38, 16, 67, 0.07);
}

.seo-direct-answer--area-keyword .seo-answer-list svg {
  width: 34px;
  height: 34px;
}

.seo-direct-answer--city-keyword .seo-answer-list small,
.seo-direct-answer--area-keyword .seo-answer-list small {
  grid-column: auto;
}

.seo-direct-answer--blog.seo-direct-answer--inline,
.seo-direct-answer--blog-guide.seo-direct-answer--inline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  text-align: center;
  padding: 26px;
}

.seo-direct-answer--blog.seo-direct-answer--inline .seo-direct-answer__copy,
.seo-direct-answer--blog-guide.seo-direct-answer--inline .seo-direct-answer__copy {
  display: grid;
  justify-items: center;
}

.seo-direct-answer--blog.seo-direct-answer--inline .seo-direct-answer__copy p,
.seo-direct-answer--blog-guide.seo-direct-answer--inline .seo-direct-answer__copy p {
  max-width: 920px;
}

.seo-direct-answer--blog.seo-direct-answer--inline .seo-answer-list,
.seo-direct-answer--blog-guide.seo-direct-answer--inline .seo-answer-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.seo-direct-answer--blog.seo-direct-answer--inline .seo-answer-list div,
.seo-direct-answer--blog-guide.seo-direct-answer--inline .seo-answer-list div {
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: start;
  min-height: 176px;
  padding: 18px;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7ff 100%);
  box-shadow: 0 14px 30px rgba(38, 16, 67, 0.07);
}

.seo-direct-answer--blog.seo-direct-answer--inline .seo-answer-list svg,
.seo-direct-answer--blog-guide.seo-direct-answer--inline .seo-answer-list svg {
  width: 34px;
  height: 34px;
}

.seo-direct-answer--blog.seo-direct-answer--inline .seo-answer-list small,
.seo-direct-answer--blog-guide.seo-direct-answer--inline .seo-answer-list small {
  grid-column: auto;
  max-width: 260px;
}

.seo-decision-section--city-keyword .seo-decision-card:nth-child(1) .icon-badge,
.seo-confidence-section--city-keyword .seo-decision-card:nth-child(1) .icon-badge {
  background: linear-gradient(135deg, #2563eb, #9333ea);
}

.seo-decision-section--city-keyword .seo-decision-card:nth-child(2) .icon-badge,
.seo-confidence-section--city-keyword .seo-decision-card:nth-child(2) .icon-badge {
  background: linear-gradient(135deg, #059669, #22c55e);
}

.seo-decision-section--city-keyword .seo-decision-card:nth-child(3) .icon-badge,
.seo-confidence-section--city-keyword .seo-decision-card:nth-child(3) .icon-badge {
  background: linear-gradient(135deg, #db2777, #f97316);
}

.seo-decision-section--city-keyword .seo-decision-card:nth-child(4) .icon-badge,
.seo-confidence-section--city-keyword .seo-decision-card:nth-child(4) .icon-badge {
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
}

.seo-section-grid--area-keyword {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seo-section-grid--category-keyword .seo-info-card:nth-child(1),
.seo-section-grid--city-keyword .seo-info-card:nth-child(1) {
  align-content: center;
}

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

.seo-section-grid.seo-section-grid--area-keyword {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seo-info-card {
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf7ff 100%);
  box-shadow: 0 18px 40px rgba(38, 16, 67, 0.08);
}

.seo-info-card h2,
.seo-blog-body h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.2;
}

.seo-info-card p,
.seo-blog-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.seo-decision-section .section-heading {
  max-width: 960px;
}

.seo-decision-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.seo-decision-card {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 12px;
  min-height: 238px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 16px 36px rgba(38, 16, 67, 0.08);
  text-align: center;
}

.seo-decision-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff 0%, #f6fff9 100%);
}

.seo-decision-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff 0%, #fff8fb 100%);
}

.seo-decision-card:nth-child(4) {
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
}

.seo-decision-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.22;
}

.seo-decision-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--rose));
  color: #fff;
  box-shadow: 0 16px 34px rgba(179, 38, 188, 0.2);
}

.icon-badge svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.7;
}

.seo-blog-article .section-heading {
  max-width: 980px;
}

.seo-blog-body {
  display: grid;
  gap: 18px;
  max-width: 940px;
  margin: 28px auto 0;
}

.seo-blog-longform {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin: 28px auto 0;
  padding: 26px;
  border: 1px solid rgba(218, 194, 255, 0.94);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 247, 255, 0.98)),
    #fff;
  box-shadow: 0 18px 42px rgba(38, 16, 67, 0.08);
}

.seo-blog-longform .eyebrow {
  justify-self: start;
}

.seo-blog-longform p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.82;
}

.seo-blog-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.seo-blog-inline-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid rgba(124, 58, 237, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(250, 245, 255, 0.9);
  color: var(--purple-dark);
  font-weight: 900;
  line-height: 1.15;
}

.seo-blog-body section {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.seo-blog-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.seo-blog-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #fbf7ff 100%);
  color: var(--ink);
  box-shadow: 0 16px 34px rgba(38, 16, 67, 0.08);
}

.seo-blog-card .icon-badge {
  grid-row: span 2;
}

.seo-blog-card strong {
  font-size: 1.04rem;
  line-height: 1.25;
}

.seo-blog-card small {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
}

.blog-empty-shell {
  display: none;
}

.blog-index-shell {
  padding: 30px;
}

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

.blog-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 38px rgba(38, 16, 67, 0.09);
}

.blog-card__media {
  display: block;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(219, 39, 119, 0.1));
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.blog-card__body small,
.blog-meta-row,
.blog-featured-image figcaption {
  color: var(--muted);
  font-weight: 800;
}

.blog-card__body strong {
  color: var(--purple-dark);
  font-size: 1.12rem;
  line-height: 1.24;
}

.blog-card__body em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.blog-meta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.blog-meta-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.72);
}

.blog-featured-image {
  overflow: hidden;
  width: min(1040px, calc(100% - 32px));
  padding: clamp(8px, 1.5vw, 16px);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(50, 18, 91, 0.16), rgba(219, 39, 119, 0.08)),
    rgba(255, 255, 255, 0.72);
}

.blog-featured-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 18px 42px rgba(38, 16, 67, 0.16);
}

.blog-featured-image figcaption {
  padding: 12px 18px 16px;
  text-align: center;
}

.blog-article-shell {
  display: grid;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.blog-toc {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: linear-gradient(180deg, #fff 0%, #fbf7ff 100%);
  box-shadow: 0 18px 38px rgba(38, 16, 67, 0.08);
}

.blog-toc strong {
  color: var(--purple-dark);
}

.blog-toc a {
  border-radius: 10px;
  padding: 8px 10px;
  color: var(--muted);
  font-weight: 850;
  line-height: 1.25;
}

.blog-toc a:hover {
  background: rgba(124, 58, 237, 0.08);
  color: var(--purple-dark);
}

.blog-article-body {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.blog-summary-box,
.blog-content-section,
.blog-profile-preview,
.blog-cta-box {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(38, 16, 67, 0.07);
}

.blog-summary-box p,
.blog-content-section p,
.blog-cta-box p {
  color: var(--muted);
  line-height: 1.78;
}

.blog-content-section h2,
.blog-cta-box h2 {
  margin-top: 0;
  color: var(--ink);
  line-height: 1.18;
}

.blog-content-section ul,
.blog-content-section ol {
  margin: 12px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.72;
}

.blog-callout {
  margin-top: 16px;
  border-left: 4px solid var(--gold);
  border-radius: 12px;
  padding: 14px 16px;
  background: rgba(245, 158, 11, 0.1);
  color: var(--purple-dark);
  font-weight: 850;
}

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

.blog-link-list a,
.blog-related-grid a {
  display: grid;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: linear-gradient(180deg, #fff 0%, #fbf7ff 100%);
  color: var(--purple-dark);
  font-weight: 900;
}

.blog-related-grid small {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
}

.blog-profile-preview .profile-grid {
  margin-top: 20px;
}

.blog-cta-box {
  text-align: center;
}

.area-cloud--center {
  justify-content: center;
  text-align: center;
}

.contact-option {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 12px;
  align-items: center;
  border-radius: 14px;
  min-height: 58px;
  padding: 12px 14px;
  color: #fff;
  box-shadow: 0 14px 26px rgba(31, 12, 50, 0.16);
}

.contact-option svg {
  width: 22px;
  height: 22px;
  align-self: center;
  justify-self: center;
  stroke-width: 2.8;
}

.contact-option strong,
.contact-option small {
  display: block;
  min-width: 0;
}

.contact-option strong {
  font-size: 1rem;
}

.contact-option small {
  opacity: 0.9;
  font-size: 0.78rem;
}

.contact-option--call {
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
}

.contact-option--whatsapp {
  background: linear-gradient(135deg, #128c7e, #25d366);
}

.contact-option--telegram {
  background: linear-gradient(135deg, #0088cc, #61c6f5);
}

.contact-option--email {
  background: linear-gradient(135deg, var(--rose), var(--purple));
}

.profile-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.profile-story-card {
  display: grid;
  justify-items: center;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  background: #fff;
  box-shadow: 0 18px 40px rgba(38, 16, 67, 0.1);
}

.profile-story-card--wide {
  grid-column: 1 / -1;
}

.profile-story-card .benefit-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

.profile-story-card--blue {
  background: #f0f7ff;
}

.profile-story-card--green {
  background: #eefcf4;
}

.profile-story-card--gold {
  background: #fff8e8;
}

.profile-story-card--rose {
  background: #fff2fb;
}

.profile-story-card h2,
.profile-story-card h3 {
  margin: 10px 0 8px;
  color: var(--purple-dark);
}

.profile-story-card p {
  margin: 0;
  color: #4d3b5f;
}

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

.area-card,
.contact-card,
.legal-copy {
  padding: 20px;
}

.area-card h2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
}

.area-card h2 svg {
  width: 20px;
  height: 20px;
  color: var(--rose);
  stroke-width: 2.6;
}

.area-card p {
  margin-top: 10px;
}

.area-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  color: var(--rose);
  font-weight: 850;
}

.area-seo-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 20px;
  align-items: start;
  margin-top: 26px;
}

.area-seo-panel > div,
.area-highlights {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(38, 16, 67, 0.1);
}

.area-seo-panel h2 {
  margin: 4px 0 12px;
  color: var(--purple-dark);
}

.area-seo-panel p + p {
  margin-top: 12px;
}

.area-highlights {
  display: grid;
  gap: 10px;
}

.area-highlights span {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: #3f2a54;
  font-weight: 780;
}

.area-highlights svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--rose);
  stroke-width: 2.8;
}

.area-faq-mini .faq-list {
  max-width: 900px;
}

.page-faq-section .faq-list {
  width: min(900px, 100%);
  margin-inline: auto;
}

.no-results {
  border: 1px dashed rgba(124, 58, 237, 0.35);
  border-radius: 14px;
  padding: 18px;
  color: #56346f;
  background: #fbf7ff;
  font-weight: 850;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 16px 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-top: 10px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: start;
}

.page-media {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.page-media__frame {
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 3px solid rgba(245, 158, 11, 0.38);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 48px rgba(31, 12, 50, 0.15);
}

.page-media__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 18px;
}

.page-media__copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.page-media__copy h2 {
  max-width: 800px;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.page-media__copy p {
  max-width: 720px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-alert {
  margin: 0;
  border: 1px solid rgba(16, 185, 129, 0.28);
  border-radius: 12px;
  padding: 12px 14px;
  color: #065f46;
  background: #ecfdf5;
  font-weight: 850;
}

.screen-reader-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #2e1b44;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
}

.contact-card {
  display: grid;
  gap: 12px;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  color: #402262;
  background: #fbf7ff;
  font-weight: 850;
}

.contact-card a svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.6;
}

.contact-card__call svg {
  color: #2563eb;
}

.contact-card__email svg {
  color: var(--rose);
}

.contact-card__telegram svg {
  color: #0ea5e9;
}

.legal-copy h2 {
  margin-top: 22px;
  font-size: 1.2rem;
}

.legal-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.legal-highlight {
  display: grid;
  justify-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 18px;
  text-align: center;
}

.legal-highlight--blue {
  background: #eef6ff;
}

.legal-highlight--green {
  background: #ecfdf3;
}

.legal-highlight--rose {
  background: #fff1fb;
}

.legal-highlight h3 {
  color: var(--ink);
}

.legal-highlight p {
  max-width: 380px;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p {
  margin-top: 8px;
}

.legal-copy {
  display: grid;
  justify-items: center;
  text-align: center;
}

.legal-copy h2,
.legal-copy p {
  max-width: 900px;
}

.legal-copy--adult {
  display: grid;
  justify-items: center;
  text-align: center;
}

.adult-notice-mark {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.24);
}

.adult-notice-mark svg {
  width: 36px;
  height: 36px;
  stroke-width: 2.6;
}

.adult-notice-list {
  display: grid;
  gap: 10px;
  width: min(720px, 100%);
  margin: 20px auto 8px;
  border-top: 1px solid rgba(29, 78, 216, 0.18);
  border-bottom: 1px solid rgba(29, 78, 216, 0.18);
  padding: 18px 0;
  color: #1f2937;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 700;
}

.floating-actions {
  position: fixed;
  right: 16px;
  top: 50%;
  z-index: 60;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
}

.float-btn {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 18px 36px rgba(31, 12, 50, 0.24);
  animation: floatPulse 2.4s ease-in-out infinite;
}

.float-btn svg {
  width: 23px;
  height: 23px;
  stroke-width: 2.5;
}

.float-btn--call {
  background: linear-gradient(135deg, #1d4ed8, #60a5fa);
}

.float-btn--whatsapp {
  border: 0;
  background: transparent;
  box-shadow: none;
  animation-name: whatsappFloatPulse;
  animation-delay: 0.18s;
}

.float-btn--telegram {
  background: linear-gradient(135deg, #0088cc, #61c6f5);
  animation-delay: 0.36s;
}

.float-btn--whatsapp svg {
  display: none;
}

.float-btn--whatsapp .whatsapp-logo,
.profile-mini-action--whatsapp .whatsapp-logo,
.contact-option--whatsapp .whatsapp-logo,
.contact-card__whatsapp .whatsapp-logo,
.btn--whatsapp .whatsapp-logo {
  font-size: 23px;
}

.float-btn--whatsapp .whatsapp-logo {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 16px 24px rgba(18, 140, 126, 0.34));
}

.profile-mini-action--whatsapp .whatsapp-logo {
  font-size: 18px;
}

.contact-option--whatsapp .whatsapp-logo,
.contact-card__whatsapp .whatsapp-logo {
  font-size: 24px;
}

@keyframes floatPulse {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 18px 36px rgba(31, 12, 50, 0.24), 0 0 0 0 rgba(124, 58, 237, 0.24);
  }
  50% {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(31, 12, 50, 0.3), 0 0 0 10px rgba(124, 58, 237, 0.08);
  }
}

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

@keyframes whatsappFloatPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 14px 24px rgba(18, 140, 126, 0.28));
  }
  50% {
    transform: translateY(-4px) scale(1.08);
    filter: drop-shadow(0 22px 36px rgba(18, 140, 126, 0.52));
  }
}

.site-footer {
  margin-top: 42px;
  padding: 34px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  padding: 26px;
  background: rgba(20, 15, 31, 0.94);
  box-shadow: var(--shadow);
}

.footer-grid,
.footer-grid p,
.footer-grid a,
.footer-grid small {
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid h3,
.footer-grid strong {
  color: #fff;
}

.footer-grid h3 {
  display: inline-block;
  width: max-content;
  margin-bottom: 6px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.78);
  padding-bottom: 6px;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
  max-width: 100%;
  margin-top: 0;
}

.footer-grid a svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}

.footer-grid .brand {
  display: inline-flex;
}

.brand--footer {
  margin-bottom: 14px;
}

.brand--footer .brand__mark {
  width: 88px;
  height: 88px;
}

.footer-note {
  margin-top: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 18% 16%, rgba(245, 158, 11, 0.26), transparent 18rem),
    radial-gradient(circle at 88% 20%, rgba(219, 39, 119, 0.24), transparent 20rem),
    rgba(20, 15, 31, 0.84);
  backdrop-filter: blur(16px);
}

.age-gate[hidden] {
  display: none;
}

.age-gate__panel {
  display: grid;
  grid-template-columns: minmax(150px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px 24px;
  align-items: stretch;
  width: min(860px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 22px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 253, 0.98)),
    #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.age-gate__visual {
  grid-row: 1 / span 5;
  position: relative;
  align-self: stretch;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: transparent;
}

.age-gate__visual img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 330px;
  object-fit: contain;
  background: transparent;
}

.age-gate__panel h2 {
  color: var(--purple-dark);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-style: normal;
  text-align: center;
  white-space: nowrap;
}

.age-gate__panel .eyebrow {
  justify-self: center;
  border-color: rgba(220, 38, 38, 0.24);
  color: #b91c1c;
  background: rgba(254, 242, 242, 0.88);
}

.age-gate__panel p {
  margin-top: 10px;
  font-size: 0.98rem;
  text-align: center;
}

.age-gate__checks {
  display: grid;
  gap: 8px;
  margin-top: 4px;
  color: #24182f;
  font-size: 0.98rem;
  font-style: normal;
  font-weight: 700;
  text-align: center;
}

.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.admin-login-logo {
  width: 108px;
  height: 108px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.settings-group {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  background: #fff9f0;
}

.settings-group h2 {
  margin-bottom: 6px;
  font-size: 1.25rem;
}

@keyframes floatSpark {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translateY(-10px) scale(1.18);
    opacity: 1;
  }
}

.admin-body {
  min-height: 100svh;
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.18), transparent 24rem),
    linear-gradient(135deg, #fff8fc, #f7f0ff 52%, #fff7e9);
}

.admin-shell {
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 42px;
}

.admin-header,
.admin-card,
.admin-alert {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 16px;
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.admin-nav a,
.admin-actions a,
.admin-actions button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 11px;
  color: #47256a;
  background: #fbf7ff;
  font-size: 0.86rem;
  font-weight: 850;
  cursor: pointer;
}

.admin-nav a.is-active,
.admin-nav a[aria-current="page"] {
  border-color: #dc2626;
  color: #fff !important;
  background: linear-gradient(135deg, #ef4444, #b91c1c) !important;
  box-shadow: 0 14px 28px rgba(220, 38, 38, 0.28);
}

.admin-card {
  margin-top: 18px;
  padding: clamp(20px, 3vw, 34px);
}

.admin-card--narrow {
  max-width: 560px;
  margin-inline: auto;
}

.admin-card--login {
  margin-top: clamp(38px, 10svh, 96px);
  text-align: center;
}

.admin-card--login .eyebrow {
  margin-inline: auto;
}

.admin-card--login .admin-form,
.admin-card--login label {
  text-align: left;
}

.admin-card h1 {
  max-width: 820px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.admin-card p {
  margin-top: 12px;
}

.admin-alert {
  margin-top: 16px;
  padding: 12px 14px;
  font-weight: 850;
}

.admin-alert--success {
  color: #14532d;
  background: #ecfdf5;
}

.admin-alert--warning {
  color: #7a4b00;
  background: #fff8e8;
}

.admin-alert--danger {
  color: #7f1d1d;
  background: #fff1f2;
}

.admin-code {
  overflow: auto;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #160f22;
}

.admin-code pre {
  margin: 0;
  padding: 16px;
  color: #fef7ff;
  font-size: 0.86rem;
}

.admin-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

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

.admin-form label {
  display: grid;
  gap: 7px;
  color: #2e1b44;
  font-weight: 850;
}

.admin-form input,
.admin-form select,
.admin-form textarea,
.admin-search input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
}

.password-field {
  position: relative;
  display: block;
}

.password-field input {
  padding-right: 78px;
}

.password-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  min-height: 34px;
  border: 1px solid rgba(174, 120, 255, 0.34);
  border-radius: 999px;
  padding: 7px 13px;
  color: #47256a;
  background: #fbf7ff;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  transform: translateY(-50%);
}

.admin-form__wide {
  grid-column: 1 / -1;
}

.admin-form small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

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

.settings-contact-grid--areas {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.settings-contact-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.settings-contact-card h3 {
  margin: 0;
  color: #2e1b44;
  font-size: 1rem;
}

.gallery-manager {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.gallery-manager__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.gallery-manager__head span,
.gallery-manager__upload span {
  display: block;
  color: #2e1b44;
  font-weight: 950;
}

.gallery-manager__head strong {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 6px 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--purple), var(--rose));
  font-size: 0.8rem;
}

.gallery-manager__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.gallery-manager__item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.gallery-manager__item img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center;
}

.gallery-manager__item span {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  color: #3b2656;
  font-size: 0.76rem;
  font-weight: 850;
}

.gallery-manager__item input {
  width: auto;
  min-height: auto;
}

.gallery-manager__empty {
  margin: 0 0 12px;
  color: var(--muted);
  font-weight: 760;
}

.gallery-manager__upload {
  display: grid;
  gap: 8px;
}

.admin-advanced {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.76);
}

.admin-advanced summary {
  cursor: pointer;
  color: var(--purple-dark);
  font-weight: 950;
}

.admin-advanced label {
  display: grid;
  gap: 7px;
  margin-top: 14px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.admin-stats div {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: #fff;
}

.admin-stats strong {
  display: block;
  color: var(--purple-dark);
  font-size: 2.3rem;
  line-height: 1;
}

.admin-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 850;
}

.admin-title-row,
.admin-search {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.admin-search {
  margin-top: 18px;
  flex-wrap: wrap;
}

.admin-search input,
.admin-search select {
  flex: 1;
}

.admin-search--filters input {
  min-width: 220px;
}

.admin-search select {
  width: min(260px, 100%);
  min-width: 170px;
}

.analytics-periods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.analytics-periods button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  color: #47256a;
  background: #fbf7ff;
  font-weight: 900;
  cursor: pointer;
}

.analytics-periods button.is-active {
  border-color: #dc2626;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  box-shadow: 0 12px 24px rgba(220, 38, 38, 0.24);
}

.analytics-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 12px;
}

.admin-split-tables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.admin-table-wrap {
  overflow-x: auto;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.admin-table {
  min-width: 960px;
  margin: 0;
  border-collapse: collapse;
}

.admin-table__serial {
  width: 64px;
  text-align: center;
  color: var(--muted);
  font-weight: 950;
}

.admin-table th,
.admin-table td {
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px;
  background: #fff;
  vertical-align: middle;
}

.admin-table th {
  color: #32125b;
  background: #f7efff;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.admin-pages-card h1 {
  max-width: none;
}

.admin-pages-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.admin-pages-summary article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
  background: #fbf7ff;
}

.admin-pages-summary strong {
  display: block;
  color: #32115f;
  font-size: 1.7rem;
  line-height: 1;
}

.admin-pages-summary span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 850;
}

.admin-pages-section,
.admin-page-group {
  margin-top: 24px;
}

.admin-pages-section h2,
.admin-page-group h3 {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.admin-page-group h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.admin-page-group h3 span {
  min-width: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  color: #47256a;
  background: #fbf7ff;
  font-size: 0.84rem;
  text-align: center;
}

.admin-pages-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.admin-page-group--compact {
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.admin-page-group--compact h3 {
  font-size: 1.05rem;
}

.admin-page-links {
  display: grid;
  gap: 10px;
}

.admin-page-links a {
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  color: #321753;
  background: #fff;
  overflow-wrap: anywhere;
}

.admin-page-links a:hover,
.admin-page-links a:focus-visible {
  border-color: #ec4899;
  color: #231035;
  background: #fff7fc;
  box-shadow: 0 12px 24px rgba(236, 72, 153, 0.14);
}

.admin-page-links strong {
  font-size: 0.95rem;
  line-height: 1.25;
}

.admin-page-links small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

@media (max-width: 860px) {
  .admin-pages-summary,
  .admin-pages-columns {
    grid-template-columns: 1fr;
  }
}

.admin-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.admin-actions form {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    border-radius: 22px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    grid-template-columns: 1fr;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a,
  .site-nav summary {
    border-radius: 12px;
    padding: 12px;
  }

  .site-nav > a,
  .site-nav > .nav-dropdown > summary {
    min-width: 0;
    min-height: 44px;
    flex-direction: row;
    justify-content: flex-start;
  }

  .nav-dropdown__menu {
    position: static;
    width: 100%;
    max-height: 320px;
    margin-top: 8px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
  }

  .hero,
  .split,
  .contact-layout,
  .page-media,
  .seo-visual-context,
  .seo-direct-answer,
  .profile-detail-hero,
  .profile-detail-hero.has-gallery,
  .profile-detail-layout,
  .area-seo-panel {
    grid-template-columns: 1fr;
  }

  .profile-detail-hero.has-gallery {
    grid-template-areas:
      "media"
      "gallery"
      "copy";
  }

  .hero {
    min-height: 0;
    padding-top: 34px;
  }

  .hero__visual {
    min-height: 420px;
  }

  .profile-grid,
  .area-grid,
  .benefit-grid,
  .internal-link-grid,
  .html-sitemap-summary,
  .html-sitemap-grid,
  .seo-profile-bridge,
  .seo-section-grid,
  .seo-decision-grid,
  .seo-blog-card-grid,
  .blog-index-grid,
  .blog-link-list,
  .blog-related-grid,
  .safety-grid,
  .trust-card-grid,
  .legal-highlight-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .admin-header,
  .admin-title-row,
  .admin-search {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-nav {
    justify-content: flex-start;
  }

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

  .admin-split-tables {
    grid-template-columns: 1fr;
  }

  .blog-article-shell {
    grid-template-columns: 1fr;
  }

  .blog-toc {
    position: static;
  }

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

@media (max-width: 640px) {
  .site-header,
  .section-shell,
  .page-hero,
  .site-footer {
    width: min(100% - 22px, 1160px);
  }

  .site-header {
    top: 8px;
  }

  .brand strong {
    font-size: 1.02rem;
  }

  .brand__mark {
    width: 52px;
    height: 52px;
  }

  .brand--footer .brand__mark {
    width: 78px;
    height: 78px;
  }

  .brand small {
    display: block;
    font-size: 0.7rem;
  }

  .hero {
    padding-top: 18px;
  }

  .hero .eyebrow {
    min-height: 28px;
    padding-inline: 10px;
    font-size: 0.62rem;
    letter-spacing: 0.05em;
  }

  .hero h1 {
    max-width: 330px;
    font-size: clamp(1.85rem, 8.4vw, 2.18rem);
  }

  .hero p {
    max-width: 310px;
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .page-hero h1 {
    max-width: 340px;
    font-size: clamp(1.85rem, 8.2vw, 2.45rem);
  }

  .hero__visual {
    min-height: 340px;
  }

  .profile-grid,
  .area-grid,
  .benefit-grid,
  .internal-link-grid,
  .html-sitemap-summary,
  .html-sitemap-grid,
  .seo-profile-bridge,
  .seo-section-grid,
  .seo-decision-grid,
  .seo-blog-card-grid,
  .blog-index-grid,
  .blog-link-list,
  .blog-related-grid,
  .safety-grid,
  .trust-card-grid,
  .legal-highlight-grid,
  .page-media,
  .profile-story-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .seo-keyword-row--compact {
    justify-content: center;
  }

  .seo-direct-answer {
    gap: 16px;
  }

  .seo-direct-answer--city-keyword .seo-answer-list,
  .seo-direct-answer--area-keyword .seo-answer-list,
  .seo-direct-answer--blog.seo-direct-answer--inline .seo-answer-list,
  .seo-direct-answer--blog-guide.seo-direct-answer--inline .seo-answer-list {
    grid-template-columns: 1fr;
  }

  .seo-decision-card {
    min-height: 0;
  }

  .blog-index-shell,
  .blog-summary-box,
  .blog-content-section,
  .blog-profile-preview,
  .blog-cta-box,
  .blog-toc {
    padding: 18px;
  }

  .blog-meta-row {
    justify-content: flex-start;
  }

  .stats-strip,
  .profile-toolbar,
  .profile-facts,
  .admin-form--grid,
  .settings-contact-grid,
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .gallery-manager__head {
    display: grid;
  }

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

  .profile-detail-hero {
    padding-top: 22px;
  }

  .profile-detail-media {
    max-width: 430px;
    margin-inline: auto;
  }

  .profile-gallery-card {
    width: 100%;
    max-width: 430px;
    margin-inline: auto;
  }

  .profile-detail-actions {
    display: grid;
  }

  .profile-actions__quick {
    gap: 6px;
  }

  .profile-mini-action {
    min-height: 34px;
    padding-inline: 4px;
    font-size: 0.68rem;
  }

  .profile-card__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 10px;
  }

  .status {
    min-height: 28px;
    padding: 5px 9px;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  .floating-actions {
    right: 10px;
    top: auto;
    bottom: 18px;
    gap: 8px;
    transform: none;
  }

  .float-btn {
    width: 44px;
    height: 44px;
  }

  .float-btn--whatsapp .whatsapp-logo {
    width: 44px;
    height: 44px;
  }

  .float-btn svg {
    width: 20px;
    height: 20px;
  }

  .page-profiles .profile-toolbar,
  .page-contact .contact-form {
    padding-right: 58px;
  }

  .footer-bottom {
    display: grid;
  }

  .form-actions,
  .hero__actions,
  .age-gate__actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .age-gate__panel {
    grid-template-columns: minmax(92px, 0.7fr) minmax(0, 1.3fr);
    gap: 10px;
    max-height: calc(100svh - 28px);
    overflow: auto;
    padding: 12px;
  }

  .age-gate__visual {
    grid-row: 1 / span 5;
    align-self: center;
    background: transparent;
  }

  .age-gate__visual img {
    width: 100%;
    height: auto;
    min-height: 0;
  }

  .age-gate__panel .eyebrow {
    min-height: 24px;
    padding: 4px 8px;
    font-size: 0.62rem;
  }

  .age-gate__panel h2 {
    font-size: clamp(1.12rem, 5.4vw, 1.52rem);
    white-space: nowrap;
  }

  .age-gate__panel p {
    font-size: 0.73rem;
    line-height: 1.5;
  }

  .age-gate__checks {
    gap: 4px;
    font-size: 0.68rem;
  }

  .age-gate__actions {
    gap: 6px;
    margin-top: 8px;
  }

  .age-gate__actions .btn {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 0.7rem;
  }
}
