:root {
  --noir: #171115;
  --ink: #24191f;
  --wine: #5a263f;
  --berry: #b64d78;
  --rose: #f1abc2;
  --blush: #fff2f6;
  --ivory: #fffaf3;
  --champagne: #e4b66b;
  --gold: #ffd989;
  --sage: #9fb7a2;
  --muted: #806b74;
  --line: rgba(90, 38, 63, .16);
  --glass: rgba(255, 250, 243, .72);
  --shadow: 0 26px 90px rgba(75, 25, 49, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Manrope, Inter, Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 0%, rgba(255, 217, 137, .22), transparent 34%), radial-gradient(circle at 88% 8%, rgba(241, 171, 194, .35), transparent 28%), linear-gradient(180deg, #fff7f1 0%, #fffaf6 43%, #fff0f6 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image: linear-gradient(rgba(36, 25, 31, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(36, 25, 31, .03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
  z-index: -1;
}

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

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

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

.site-header {
  z-index: 50;
  padding: 14px 0;
  background: rgba(255, 250, 246, .68);
  border-bottom: 1px solid rgba(90, 38, 63, .1);
  backdrop-filter: blur(22px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.logo {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
}

.brand strong, .brand-text span {
  display: block;
}

.brand strong {
  color: var(--wine);
  font-size: 17px;
  line-height: 1;
}

.brand-text span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(36, 25, 31, .72);
  font-size: 14px;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--champagne);
  transition: transform .35s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(90, 38, 63, .16);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--wine);
  background: rgba(255, 255, 255, .58);
  font-size: 14px;
  font-weight: 700;
  transition: transform .35s ease, border-color .35s ease, background .35s ease, box-shadow .35s ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(180, 75, 125, .28);
  background: rgba(255, 250, 246, .86);
  box-shadow: 0 14px 34px rgba(90, 38, 63, .12);
}

.hero {
  position: relative;
  min-height: calc(100vh - 75px);
  display: grid;
  align-items: center;
  padding: 48px 0 38px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(350px, 0.5fr);
  gap: clamp(18px, 3.5vw, 52px);
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--champagne), var(--berry));
}

h1, h2, h3, p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  margin: 0;
  color: var(--noir);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: 0;
}

.accent {
  color: var(--berry);
  font-style: italic;
}

.hero-lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(36, 25, 31, .72);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 999px;
  padding: 13px 22px;
  border: 1px solid rgba(90, 38, 63, .14);
  font-weight: 700;
  isolation: isolate;
  transition: transform .35s ease, border-color .35s ease, background .35s ease, box-shadow .35s ease, filter .35s ease;
}

.btn.primary {
  color: #fffaf6;
  background: linear-gradient(135deg, var(--wine), var(--berry));
  box-shadow: 0 18px 44px rgba(182, 77, 120, .32);
}

.btn.primary:hover {
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.04);
  box-shadow: 0 24px 58px rgba(182, 77, 120, .42);
}

.btn.secondary {
  color: var(--wine);
  background: rgba(255, 255, 255, .7);
}

.btn.secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(180, 75, 125, .28);
  background: rgba(255, 250, 246, .92);
  box-shadow: 0 16px 42px rgba(90, 38, 63, .12);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(90, 38, 63, .13);
  border-radius: 999px;
  padding: 9px 12px;
  color: rgba(36, 25, 31, .68);
  background: rgba(255, 255, 255, .55);
  font-size: 13px;
  font-weight: 600;
}

.trust-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--champagne);
}

.hero-visual {
  position: relative;
  min-height: 670px;
  transform-style: preserve-3d;
  animation: floatCard 7s ease-in-out infinite;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 34px 12px 44px 22px;
  border-radius: 46% 54% 44% 56% / 52% 42% 58% 48%;
  background: radial-gradient(circle at 54% 36%, rgba(255, 250, 246, .94) 0 26%, rgba(255, 223, 234, .84) 46%, rgba(244, 182, 201, .34) 68%, transparent 78%), linear-gradient(135deg, rgba(255, 217, 137, .22), rgba(182, 77, 120, .18));
  box-shadow: inset 0 0 120px rgba(255, 255, 255, .8), 0 34px 90px rgba(90, 38, 63, .14);
  transform: rotate(-2deg);
}

.hero-visual::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 2%;
  bottom: 26px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(90, 38, 63, .18), rgba(90, 38, 63, .08) 42%, transparent 72%);
  filter: blur(12px);
}

.portrait-card {
  position: absolute;
  inset: -10px -72px 0 -56px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  z-index: 2;
}

.portrait-card::after {
  display: none;
}

.portrait-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(1.04);
  filter: drop-shadow(0 30px 42px rgba(90, 38, 63, .18)) drop-shadow(0 8px 18px rgba(255, 217, 137, .18));
}

.halo {
  position: absolute;
  inset: 18px 10px 54px 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 217, 137, .42), transparent 42%), radial-gradient(circle at 70% 40%, rgba(241, 171, 194, .5), transparent 36%);
  filter: blur(2px);
  transform: translate3d(0, 16px, -1px);
  z-index: 1;
}

.fear-orbit {
  position: absolute;
  top: 0;
  right: 6px;
  left: auto;
  bottom: auto;
  opacity: .7;
  z-index: 4;
  display: grid;
  width: min(250px, 55%);
  min-height: 142px;
  align-content: center;
  justify-items: start;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 34px 34px 12px 34px;
  padding: 24px 26px;
  color: var(--wine);
  background: rgba(255, 250, 246, .82);
  box-shadow: 0 24px 58px rgba(90, 38, 63, .16);
  backdrop-filter: blur(18px);
  transition: opacity .55s ease, transform .55s ease, filter .55s ease;
}

.fear-orbit::before, .fear-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 250, 246, .82);
  box-shadow: 0 14px 34px rgba(90, 38, 63, .12);
}

.fear-orbit::before {
  right: 30px;
  left: auto;
  bottom: -18px;
  width: 24px;
  height: 24px;
}

.fear-orbit::after {
  right: 10px;
  left: auto;
  bottom: -38px;
  width: 13px;
  height: 13px;
}

.fear-word {
  min-height: 36px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.04;
  color: var(--wine);
  text-align: left;
}

.answer-word {
  display: block;
  color: var(--berry);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  justify-self: end;
  text-align: right;
}

.fear-orbit.is-fading {
  opacity: 0;
  transform: translateY(-8px) scale(.98);
  filter: blur(4px);
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

}

@keyframes drift {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(1.2deg);
  }

}

.section {
  padding: 92px 0;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: end;
  margin-bottom: 34px;
}

.section h2 {
  margin: 0;
  color: var(--noir);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.lux-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid rgba(90, 38, 63, .12);
  border-radius: 26px;
  padding: 24px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 18px 56px rgba(90, 38, 63, .08);
  transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
}

.lux-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 217, 137, .28), rgba(241, 171, 194, .28));
  transition: opacity .45s ease;
}

.lux-card:hover {
  transform: translateY(-8px);
  border-color: rgba(228, 182, 107, .48);
  box-shadow: 0 28px 80px rgba(90, 38, 63, .16);
}

.lux-card:hover::before {
  opacity: 1;
}

.lux-card > * {
  position: relative;
}

.icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  color: var(--wine);
  background: linear-gradient(135deg, #fff8e7, #f4c4d3);
}

.lux-card h3 {
  margin: 0 0 10px;
  color: var(--wine);
  font-size: 20px;
  line-height: 1.15;
}

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

.dark-band {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  color: #fffaf6;
  background: radial-gradient(circle at 14% 10%, rgba(255, 217, 137, .16), transparent 30%), radial-gradient(circle at 85% 72%, rgba(241, 171, 194, .18), transparent 32%), linear-gradient(135deg, #171115, #3b1829 54%, #1b1518);
}

.dark-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: linear-gradient(110deg, transparent 0 42%, rgba(255,255,255,.22) 46%, transparent 50% 100%);
  background-size: 220px 100%;
  animation: satin 8s linear infinite;
}

@keyframes satin {
  from {
    background-position: -220px 0;
  }

  to {
    background-position: 220px 0;
  }

}

.dark-band .section-head, .dark-band .vacancy-grid, .dark-band .vacancy-showcase, .dark-band .reviews {
  position: relative;
}

.dark-band h2, .dark-band .kicker {
  color: #fffaf6;
}

.dark-band .section-head p {
  color: rgba(255, 250, 246, .72);
}

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

.vacancy {
  display: grid;
  min-height: 150px;
  align-content: space-between;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  transition: transform .4s ease, background .4s ease;
}

.vacancy:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .13);
}

.vacancy span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.vacancy strong {
  margin-top: 22px;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.15;
}

.vacancies-premium {
  background: linear-gradient(120deg, rgba(255, 250, 246, .05) 0 1px, transparent 1px 120px), linear-gradient(135deg, #171115, #3a1828 52%, #191316);
}

.vacancies-premium .section-head {
  margin-bottom: 34px;
}

.vacancy-showcase {
  display: grid;
  grid-template-columns: minmax(340px, .9fr) 1.1fr;
  gap: 18px;
  align-items: stretch;
}

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

.vacancy-card {
  position: relative;
  display: flex;
  min-height: 192px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 217, 137, .19);
  border-radius: 28px;
  padding: 24px;
  color: #fffaf6;
  background: linear-gradient(155deg, rgba(255, 250, 246, .13), rgba(255, 255, 255, .04)), rgba(255, 255, 255, .035);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
  transition: transform .45s ease, border-color .45s ease, background .45s ease;
}

.vacancy-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .58;
  background: linear-gradient(135deg, rgba(255,255,255,.13), transparent 38%), linear-gradient(90deg, transparent, rgba(255, 217, 137, .08));
  pointer-events: none;
  transition: opacity .45s ease;
}

.vacancy-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: 18px;
  width: 132px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 217, 137, .72));
  transform: rotate(-38deg);
  transform-origin: right center;
  transition: transform .45s ease, opacity .45s ease;
}

.vacancy-card > * {
  position: relative;
}

.vacancy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 217, 137, .42);
  background: linear-gradient(155deg, rgba(255, 250, 246, .18), rgba(255, 255, 255, .065)), rgba(255, 255, 255, .05);
}

.vacancy-card:hover::before {
  opacity: .9;
}

.vacancy-card:hover::after {
  opacity: .95;
  transform: rotate(-34deg) translateX(-10px);
}

.vacancy-card--hero {
  min-height: 420px;
  justify-content: flex-start;
  padding: clamp(28px, 4vw, 42px);
  background: linear-gradient(150deg, rgba(255, 250, 246, .18), rgba(244, 151, 182, .11) 48%, rgba(255, 217, 137, .08)), rgba(255, 255, 255, .04);
}

.vacancy-card--hero .vacancy-topline {
  width: 100%;
  margin-bottom: 20px;
}

.vacancy-media {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  margin-bottom: 28px;
  border-radius: 24px;
  aspect-ratio: 16 / 10;
  background: rgba(255, 250, 246, .08);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .22);
}

.vacancy-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 17, 21, .04), rgba(23, 17, 21, .26)), linear-gradient(120deg, rgba(255, 217, 137, .12), transparent 48%);
  pointer-events: none;
}

.vacancy-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(1.02) contrast(1.03);
  transition: transform .7s ease;
}

.vacancy-card--hero:hover .vacancy-media img {
  transform: scale(1.035);
}

.vacancy-copy {
  display: block;
  margin-top: auto;
}

.vacancy-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
  color: rgba(255, 250, 246, .68);
  font-size: 12px;
  text-transform: uppercase;
}

.vacancy-index {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: .9;
}

.vacancy-label {
  text-align: right;
}

.vacancy-card strong {
  display: block;
  max-width: 520px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.6vw, 38px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: 0;
}

.vacancy-card p {
  max-width: 540px;
  margin: 20px 0 0;
  color: rgba(255, 250, 246, .72);
  font-size: 16px;
}

.vacancy-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 28px;
  color: #ffe3a1;
  font-size: 13px;
  font-style: normal;
  text-transform: uppercase;
}

.vacancy-action::after {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.vacancy-card:not(.vacancy-card--hero) .vacancy-topline {
  margin-bottom: 18px;
}

.vacancy-card:not(.vacancy-card--hero) .vacancy-index {
  font-size: 22px;
}

.vacancy-card:not(.vacancy-card--hero) strong {
  font-size: clamp(21px, 2vw, 27px);
}

.vacancy-card:not(.vacancy-card--hero) p {
  margin-top: 14px;
  font-size: 14px;
}

.story {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 30px;
  align-items: stretch;
}

.story-panel {
  border: 1px solid rgba(90, 38, 63, .13);
  border-radius: 30px;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 255, 255, .62);
  box-shadow: var(--shadow);
}

.story-panel h2 {
  margin-bottom: 18px;
}

.story-panel p {
  color: var(--muted);
  font-size: 18px;
}

.steps {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(90, 38, 63, .12);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, .5);
}

.step b {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 18px;
  color: var(--noir);
  background: linear-gradient(135deg, #fff4d5, #e4b66b);
}

.step h3 {
  margin: 0 0 4px;
  color: var(--wine);
}

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

.safety-premium {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 250, 246, .96), rgba(251, 224, 232, .72) 48%, rgba(255, 250, 246, .92)), var(--blush);
}

.safety-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
  background: linear-gradient(90deg, rgba(90, 38, 63, .06) 1px, transparent 1px), linear-gradient(180deg, rgba(90, 38, 63, .045) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.safety-premium .story {
  position: relative;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
}

.safety-premium .story-panel {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(90, 38, 63, .1);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(255, 250, 246, .46)), rgba(255, 255, 255, .45);
  box-shadow: 0 34px 90px rgba(90, 38, 63, .13);
  backdrop-filter: blur(18px);
}

.safety-premium .story-panel h2 {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--wine);
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 400;
  line-height: .98;
}

.safety-premium .story-panel p {
  max-width: 620px;
  color: rgba(42, 27, 34, .72);
  font-size: 18px;
}

.safety-note {
  display: grid;
  gap: 10px;
  max-width: 440px;
  margin-top: 34px;
  border-top: 1px solid rgba(90, 38, 63, .13);
  padding-top: 22px;
}

.safety-note span {
  color: var(--rose);
  font-size: 12px;
  text-transform: uppercase;
}

.safety-note strong {
  color: var(--noir);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 400;
  line-height: 1.15;
}

.safety-premium .steps {
  gap: 14px;
}

.safety-premium .step {
  position: relative;
  overflow: hidden;
  grid-template-columns: 64px 1fr;
  min-height: 124px;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 28px;
  padding: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .74), rgba(255, 250, 246, .42)), rgba(255, 255, 255, .5);
  box-shadow: 0 22px 60px rgba(90, 38, 63, .09);
  backdrop-filter: blur(16px);
  transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease;
}

.safety-premium .step::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: 24px;
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180, 75, 125, .42));
  transform: rotate(-35deg);
}

.safety-premium .step:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 75, 125, .18);
  box-shadow: 0 26px 70px rgba(90, 38, 63, .13);
}

.safety-premium .step b {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255, 217, 137, .42);
  border-radius: 50%;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 400;
  background: linear-gradient(145deg, rgba(255, 244, 213, .98), rgba(229, 180, 105, .34)), #fffaf6;
}

.safety-premium .step h3 {
  margin: 2px 0 8px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
}

.safety-premium .step p {
  max-width: 520px;
  color: rgba(42, 27, 34, .68);
  font-size: 16px;
}

.reviews-premium {
  background: linear-gradient(120deg, rgba(255, 250, 246, .045) 0 1px, transparent 1px 120px), linear-gradient(135deg, #171115, #3b1829 48%, #6a2748 74%, #191316);
}

.reviews-premium .shell {
  position: relative;
  z-index: 2;
}

.reviews-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .72fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  margin-bottom: 34px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 217, 137, .16);
}

.reviews-intro h2 {
  max-width: 720px;
}

.reviews-note {
  display: grid;
  gap: 18px;
  color: rgba(255, 250, 246, .72);
}

.reviews-note p {
  margin: 0;
  font-size: 17px;
}

.review-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
}

.review-metrics span {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  color: rgba(255, 250, 246, .58);
  font-size: 12px;
}

.review-metrics b {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;
}

.reviews-toolbar {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin: -10px 0 12px;
}

.review-nav {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 217, 137, .24);
  border-radius: 50%;
  color: #fffaf6;
  background: rgba(255, 255, 255, .055);
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .12);
  transition: transform .35s ease, border-color .35s ease, background .35s ease, color .35s ease, box-shadow .35s ease;
}

.review-nav:hover {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(255, 217, 137, .62);
  color: #2a1b22;
  background: linear-gradient(135deg, #fff4d5, #dca85a);
  box-shadow: 0 18px 44px rgba(255, 217, 137, .18);
}

.reviews {
  position: relative;
  overflow: hidden;
  padding: 10px 0 20px;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.reviews-track {
  display: flex;
  width: max-content;
  animation: reviewsTicker 82s linear infinite;
  transition: transform .42s cubic-bezier(.22,.61,.36,1);
}

.reviews.is-manual .reviews-track {
  animation: none;
  transform: translateX(var(--review-shift, 0px));
}

.reviews:hover .reviews-track {
  animation-play-state: paused;
}

@keyframes reviewsTicker {
  from {
    transform: translateX(var(--review-shift, 0px));
  }

  to {
    transform: translateX(calc(-50% + var(--review-shift, 0px)));
  }

}

.review {
  position: relative;
  display: flex;
  flex: 0 0 clamp(300px, 27vw, 380px);
  min-height: 218px;
  overflow: visible;
  flex-direction: column;
  margin-right: clamp(22px, 3vw, 42px);
  padding: 8px clamp(22px, 3vw, 42px) 10px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: transform .45s ease;
}

.review::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 217, 137, .32), transparent);
}

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

.review-featured {
  flex-basis: clamp(340px, 31vw, 450px);
}

.review-photo {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 250, 246, .08);
}

.review-photo::after {
  content: none;
}

.review-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.02);
  transition: transform .7s ease;
}

.review:hover .review-photo img {
  transform: scale(1.035);
}

.review p {
  max-width: 430px;
  margin: 18px 0 0;
  color: rgba(255, 250, 246, .86);
  font-size: 15px;
  line-height: 1.5;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review strong {
  display: block;
  color: #fffaf6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
}

.review small {
  color: rgba(255, 250, 246, .58);
  font-size: 12px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

details {
  border: 1px solid rgba(90, 38, 63, .12);
  border-radius: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 18px 50px rgba(90, 38, 63, .07);
}

summary {
  cursor: pointer;
  color: var(--wine);
  font-weight: 700;
  font-size: 18px;
}

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

.application {
  position: relative;
  overflow: hidden;
  padding: 116px 0;
  color: #fffaf6;
  background: linear-gradient(120deg, rgba(255, 250, 246, .06) 0 1px, transparent 1px 118px), linear-gradient(135deg, #171115, #431a2e 46%, #6e294a 72%, #221419);
}

.application::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, .14) 48%, transparent 58%), linear-gradient(180deg, rgba(255, 250, 246, .08), transparent 34%, rgba(0, 0, 0, .14));
  opacity: .42;
  pointer-events: none;
}

.application::after {
  content: "";
  position: absolute;
  right: 7vw;
  top: 72px;
  width: min(420px, 32vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 217, 137, .72), transparent);
  transform: rotate(-22deg);
  pointer-events: none;
}

.apply-card {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  min-height: 560px;
  border: 1px solid rgba(255, 217, 137, .2);
  border-radius: 38px;
  padding: clamp(26px, 5vw, 58px);
  background: linear-gradient(145deg, rgba(255, 250, 246, .12), rgba(255, 255, 255, .035)), rgba(255, 255, 255, .035);
  box-shadow: 0 42px 110px rgba(0, 0, 0, .24), inset 0 1px 0 rgba(255,255,255,.14);
  backdrop-filter: blur(18px);
}

.apply-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 250, 246, .08);
  border-radius: 28px;
  pointer-events: none;
}

.apply-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
}

.apply-card h2 {
  margin: 0 0 16px;
  color: #fffaf6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5.2vw, 76px);
  font-weight: 400;
  line-height: .96;
}

.apply-card p {
  max-width: 620px;
  color: rgba(255, 250, 246, .74);
  font-size: 18px;
}

.apply-statement {
  margin-top: 20px;
  color: var(--champagne) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.6vw, 36px) !important;
  line-height: 1.08;
}

.apply-points {
  display: grid;
  gap: 10px;
  max-width: 520px;
}

.apply-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 250, 246, .78);
  font-size: 14px;
}

.apply-points span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 18px rgba(255, 217, 137, .5);
}

.application form {
  position: relative;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 30px;
  padding: clamp(20px, 3vw, 34px);
  background: linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .07)), rgba(255, 255, 255, .08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
  backdrop-filter: blur(20px);
}

.application .btn.primary {
  border: 0;
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

.application .btn.primary:hover {
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.05);
  box-shadow: 0 24px 58px rgba(182, 77, 120, .42);
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
  background: radial-gradient(circle at 20% 12%, rgba(255, 217, 137, .16), transparent 32%), rgba(23, 17, 21, .72);
  backdrop-filter: blur(18px);
  opacity: 1;
  transition: opacity .28s ease;
}

.lead-modal[hidden] {
  display: none;
}

.modal-open {
  overflow: hidden;
}

.lead-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow: auto;
  border: 1px solid rgba(255, 217, 137, .24);
  border-radius: 36px;
  padding: clamp(24px, 4vw, 46px);
  color: #fffaf6;
  background: linear-gradient(145deg, rgba(255, 250, 246, .14), rgba(255, 255, 255, .045)), linear-gradient(135deg, #171115, #431a2e 52%, #6e294a);
  box-shadow: 0 42px 120px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255,255,255,.16);
}

.lead-modal__dialog::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 250, 246, .08);
  border-radius: 26px;
  pointer-events: none;
}

.lead-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 217, 137, .24);
  border-radius: 50%;
  color: #fffaf6;
  background: rgba(255, 250, 246, .08);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}

.lead-modal__close:hover {
  transform: rotate(8deg) scale(1.04);
  border-color: rgba(255, 217, 137, .5);
  background: rgba(255, 250, 246, .16);
}

.lead-modal__content {
  position: relative;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
}

.lead-modal__copy h2 {
  margin: 0 0 14px;
  color: #fffaf6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 400;
  line-height: .98;
}

.lead-modal__copy p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 250, 246, .74);
  font-size: 17px;
  line-height: 1.55;
}

.lead-modal form {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 30px;
  padding: clamp(20px, 3vw, 34px);
  background: linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .07)), rgba(255, 255, 255, .08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
  backdrop-filter: blur(20px);
}

.lead-modal .btn.primary {
  border: 0;
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}

.lead-modal .btn.primary:hover {
  transform: translateY(-2px);
  filter: saturate(1.08) brightness(1.05);
  box-shadow: 0 24px 58px rgba(182, 77, 120, .42);
}

.form-title {
  display: grid;
  gap: 6px;
  margin-bottom: 8px;
}

.form-title span {
  color: var(--champagne);
  font-size: 12px;
  text-transform: uppercase;
}

.form-title strong {
  color: #fffaf6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

form {
  display: grid;
  gap: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input, textarea {
  width: 100%;
  border: 1px solid rgba(255, 217, 137, .24);
  border-radius: 18px;
  padding: 15px 16px;
  color: #fffaf6;
  background: rgba(38, 20, 30, .64);
  outline: 0;
  font: inherit;
  transition: border-color .35s ease, background .35s ease, box-shadow .35s ease;
}

input::placeholder, textarea::placeholder {
  color: rgba(255, 250, 246, .58);
}

input:focus, textarea:focus {
  border-color: rgba(255, 217, 137, .72);
  background: rgba(31, 15, 24, .82);
  box-shadow: 0 0 0 4px rgba(255, 217, 137, .11);
}

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

label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 250, 246, .72);
  font-size: 13px;
  line-height: 1.35;
}

label input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--champagne);
}

label a {
  color: #ffe3a1;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .25s ease;
}

label a:hover {
  color: #fffaf6;
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 34px 0;
  color: rgba(255, 250, 246, .72);
  background: linear-gradient(120deg, rgba(255, 250, 246, .04) 0 1px, transparent 1px 120px), linear-gradient(135deg, #171115, #2a1420 54%, #171115);
  border-top: 1px solid rgba(255, 217, 137, .18);
}

.footer .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-menu-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  width: 100%;
  margin: 24px 0;
}

.footer-menu-links a {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-menu-links a:hover {
  opacity: 1;
  color: #f5c6d6;
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-brand strong {
  color: #fffaf6;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.12;
}

.footer-brand span {
  color: rgba(255, 250, 246, .56);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 250, 246, .56);
  font-size: 12px;
  transition: border-color .35s ease, color .35s ease, background .35s ease;
}

.footer-links a:hover {
  color: rgba(255, 250, 246, .86);
}

@media (max-width: 767px) {
  .footer-menu-links {
    display: none;
  }

}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s ease, transform .8s ease;
}

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

@media (max-width: 980px) {
  .site-nav, .header-cta {
    display: none;
  }

  .hero-grid, .section-head, .story, .apply-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 530px;
  }

  .lux-grid, .vacancy-grid, .reviews, .faq-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reviews-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .reviews-toolbar {
    justify-content: flex-start;
  }

  .vacancy-showcase {
    grid-template-columns: 1fr;
  }

  .vacancy-card--hero {
    min-height: 340px;
  }

  .safety-premium .story-panel {
    min-height: auto;
  }

  .safety-premium .story {
    grid-template-columns: unset;
  }

  .lead-modal__content {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    padding: 10px 0;
  }

  .brand-text span {
    display: none;
  }

  .hero {
    padding: 32px 0 18px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }

  .trust-row span {
    flex: 1 1 calc(50% - 5px);
    width: auto;
    min-width: 0;
    justify-content: center;
    text-align: center;
  }

  .hero-visual {
    min-height: 430px;
  }

  .portrait-card {
    inset: 12px -36px 0 -44px;
    border-radius: 26px;
  }

  .halo {
    inset: 0;
  }

  .fear-orbit {
    top: auto;
    right: 12px;
    left: auto;
    bottom: 22px;
    opacity: .82;
    width: min(250px, 76%);
    min-height: 116px;
    border-radius: 26px 26px 10px 26px;
    padding: 18px;
  }

  .fear-word {
    font-size: 28px;
  }

  .section, .dark-band, .application {
    padding: 62px 0;
  }

  .lux-grid, .vacancy-grid, .reviews, .faq-grid, .form-grid {
    grid-template-columns: 1fr;
  }

  .reviews {
    gap: 12px;
  }

  .review {
    flex-basis: min(300px, 84vw);
    min-height: 218px;
    padding-right: 22px;
  }

  .vacancy-list {
    grid-template-columns: 1fr;
  }

  .vacancy-card, .vacancy-card--hero {
    min-height: auto;
    border-radius: 22px;
    padding: 22px;
  }

  .vacancy-topline {
    margin-bottom: 18px;
  }

  .vacancy-media {
    margin-bottom: 22px;
    border-radius: 18px;
    aspect-ratio: 16 / 11;
  }

  .safety-premium .story {
    gap: 14px;
  }

  .safety-premium .story-panel {
    border-radius: 26px;
    padding: 24px;
  }

  .safety-premium .story-panel h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .safety-premium .story-panel p {
    font-size: 16px;
  }

  .safety-note {
    margin-top: 24px;
    padding: 18px;
  }

  .safety-premium .step {
    grid-template-columns: 48px 1fr;
    min-height: auto;
    border-radius: 22px;
    padding: 18px;
  }

  .safety-premium .step b {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .safety-premium .step h3 {
    font-size: 22px;
  }

  .footer .shell {
    display: grid;
    gap: 18px;
  }

  .footer-links {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .footer-links a {
    width: 100%;
  }

  .lead-modal {
    padding: 12px;
  }

  .lead-modal__dialog {
    max-height: calc(100vh - 24px);
    border-radius: 28px;
    padding: 22px;
  }

  .lead-modal__content {
    gap: 20px;
  }

  .lead-modal__copy h2 {
    padding-right: 42px;
    font-size: 34px;
  }

}

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

}

.form-hp {
  position:absolute!important;
  left:-9999px!important;
  opacity:0!important;
  pointer-events:none!important;
}

.inner-hero {
  min-height:auto;
  padding:64px 0 80px;
}

.inner-hero .hero-visual {
  min-height:520px;
}

.page-copy {
  background:linear-gradient(135deg,rgba(255,250,246,.94),rgba(251,224,232,.42));
}

.legal-page-note {
  background:rgba(255,250,246,.72);
}

.legal-document {
  background:linear-gradient(180deg,rgba(255,250,246,.94),rgba(251,224,232,.46));
}

.legal-document-shell {
  max-width:980px;
}

.legal-document-card {
  border:1px solid rgba(90,38,63,.1);
  border-radius:34px;
  padding:clamp(28px,4vw,56px);
  background:linear-gradient(145deg,rgba(255,250,246,.92),rgba(255,255,255,.66));
  box-shadow:0 28px 90px rgba(90,38,63,.1);
}

.legal-document-head {
  margin-bottom:34px;
  padding-bottom:26px;
  border-bottom:1px solid rgba(180,75,125,.16);
}

.legal-document-head h2 {
  margin:0 0 14px;
  color:var(--noir);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(32px,4vw,54px);
  font-weight:500;
  line-height:1.04;
}

.legal-document-head p {
  margin:0 0 10px;
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
}

.legal-document-card h3 {
  margin:28px 0 10px;
  color:#5a263f;
  font-size:18px;
  font-weight:600;
  line-height:1.35;
}

.legal-document-card p {
  margin:0 0 14px;
  color:var(--muted);
  font-size:16px;
  line-height:1.72;
}

.not-found-page {
  background:linear-gradient(180deg,rgba(255,250,246,.96),rgba(251,224,232,.44));
}

.not-found-hero {
  padding:clamp(60px,8vw,112px) 0 72px;
  background:linear-gradient(135deg,rgba(255,250,246,.96),rgba(247,216,226,.62));
  overflow:hidden;
}

.not-found-hero-grid {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(260px,.48fr);
  gap:34px;
  align-items:center;
}

.not-found-copy {
  max-width:760px;
}

.not-found-copy h1 {
  margin:0 0 18px;
  color:var(--noir);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(48px,7vw,92px);
  font-weight:500;
  line-height:.96;
}

.not-found-copy p {
  margin:0 0 24px;
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
}

.not-found-mark {
  display:grid;
  min-height:260px;
  place-items:center;
  border:1px solid rgba(190,132,50,.14);
  border-radius:34px;
  background:linear-gradient(145deg,rgba(255,255,255,.72),rgba(255,244,238,.74));
  box-shadow:0 28px 90px rgba(90,38,63,.1);
}

.not-found-mark span {
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(82px,12vw,148px);
  line-height:1;
  color:rgba(180,75,125,.22);
}

.not-found-links {
  padding:70px 0;
  background:rgba(255,250,246,.72);
}

.not-found-section-head {
  max-width:720px;
  margin-bottom:28px;
}

.not-found-section-head h2,.not-found-cta-box h2 {
  margin:0 0 12px;
  color:var(--noir);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(30px,4vw,52px);
  font-weight:500;
  line-height:1.04;
}

.not-found-section-head p,.not-found-cta-box p {
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
}

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

.not-found-link-card {
  display:flex;
  min-height:150px;
  flex-direction:column;
  justify-content:space-between;
  padding:22px;
  border:1px solid rgba(184,76,121,.12);
  border-radius:24px;
  background:linear-gradient(145deg,rgba(255,255,255,.72),rgba(255,244,238,.68));
  box-shadow:0 22px 70px rgba(90,38,63,.08);
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}

.not-found-link-card:hover {
  transform:translateY(-4px);
  border-color:rgba(190,132,50,.24);
  box-shadow:0 28px 90px rgba(90,38,63,.13);
}

.not-found-link-card strong {
  color:#5a263f;
  font-size:18px;
  font-weight:600;
  line-height:1.25;
}

.not-found-link-card span {
  margin-top:16px;
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}

.not-found-cta {
  padding:0 0 78px;
  background:linear-gradient(180deg,rgba(255,250,246,.72),rgba(251,224,232,.44));
}

.not-found-cta-box {
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:24px;
  align-items:center;
  padding:clamp(26px,4vw,44px);
  border:1px solid rgba(190,132,50,.14);
  border-radius:34px;
  background:linear-gradient(145deg,rgba(255,255,255,.76),rgba(255,244,238,.68));
  box-shadow:0 28px 90px rgba(90,38,63,.1);
}

@media (max-width:980px) {
  .not-found-hero-grid,.not-found-cta-box {
    grid-template-columns:1fr;
  }

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

  .not-found-mark {
    min-height:180px;
  }

}

@media (max-width:640px) {
  .not-found-hero {
    padding:52px 0 46px;
  }

  .not-found-links {
    padding:50px 0;
  }

  .not-found-cta {
    padding-bottom:54px;
  }

  .not-found-link-grid {
    grid-template-columns:1fr;
  }

  .not-found-link-card {
    min-height:0;
  }

}

.reviews-page-premium {
  background:linear-gradient(180deg,rgba(255,250,246,.96),rgba(251,224,232,.42));
}

.soft-label {
  display:inline-flex;
  margin-bottom:14px;
  color:#9a6a28;
  font-size:12px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.reviews-trust-lead {
  padding:88px 0 64px;
  background:linear-gradient(135deg,rgba(255,250,246,.96),rgba(247,216,226,.58));
}

.reviews-trust-grid {
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(280px,.62fr);
  gap:34px;
  align-items:stretch;
}

.reviews-trust-copy {
  max-width:780px;
}

.reviews-trust-copy h2,.reviews-topic-head h2,.reviews-privacy-box h2 {
  margin:0 0 18px;
  color:var(--noir);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(32px,4vw,56px);
  font-weight:500;
  line-height:1.04;
}

.reviews-trust-copy p,.reviews-topic-head p,.reviews-privacy-box p {
  margin:0 0 16px;
  color:var(--muted);
  font-size:16px;
  line-height:1.72;
}

.reviews-trust-note {
  align-self:center;
  padding:30px;
  border:1px solid rgba(190,132,50,.16);
  border-radius:28px;
  background:linear-gradient(145deg,rgba(255,255,255,.72),rgba(255,244,238,.78));
  box-shadow:0 28px 80px rgba(90,38,63,.1);
}

.reviews-trust-note strong {
  display:block;
  margin-bottom:12px;
  color:#5a263f;
  font-size:20px;
  font-weight:600;
}

.reviews-trust-note p {
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
}

.reviews-topic-section {
  padding:64px 0 76px;
  background:rgba(255,250,246,.68);
}

.reviews-topic-head {
  max-width:820px;
  margin-bottom:30px;
}

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

.reviews-topic-card {
  display:flex;
  min-height:190px;
  flex-direction:column;
  justify-content:space-between;
  padding:24px;
  border:1px solid rgba(184,76,121,.12);
  border-radius:26px;
  background:linear-gradient(145deg,rgba(255,255,255,.72),rgba(255,244,238,.68));
  box-shadow:0 22px 70px rgba(90,38,63,.08);
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}

.reviews-topic-card:hover {
  transform:translateY(-4px);
  border-color:rgba(190,132,50,.24);
  box-shadow:0 28px 90px rgba(90,38,63,.13);
}

.reviews-topic-card strong {
  color:#5a263f;
  font-size:19px;
  font-weight:600;
  line-height:1.25;
}

.reviews-topic-card span {
  margin-top:18px;
  color:var(--muted);
  font-size:14px;
  line-height:1.62;
}

.reviews-static-section {
  padding:86px 0;
}

.reviews-static-section::before {
  opacity:.28;
}

.reviews-static-section .shell {
  position:relative;
  z-index:2;
}

.reviews-static-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
  margin-top:36px;
}

.reviews-static-grid .review {
  width:auto;
  min-width:0;
  min-height:0;
  flex:initial;
}

.reviews-static-grid .review p {
  font-size:14px;
  line-height:1.7;
}

.reviews-static-grid .review-photo {
  width:50px;
  height:50px;
}

.reviews-privacy-section {
  padding:76px 0;
  background:linear-gradient(135deg,rgba(255,250,246,.92),rgba(247,216,226,.54));
}

.reviews-privacy-box {
  display:grid;
  grid-template-columns:minmax(0,.75fr) minmax(0,1fr);
  gap:34px;
  padding:clamp(28px,4vw,48px);
  border:1px solid rgba(190,132,50,.14);
  border-radius:34px;
  background:linear-gradient(145deg,rgba(255,255,255,.74),rgba(255,244,238,.68));
  box-shadow:0 28px 90px rgba(90,38,63,.1);
}

.reviews-privacy-box a {
  color:#8a2758;
  text-decoration:underline;
  text-decoration-thickness:1px;
  text-underline-offset:4px;
}

.reviews-faq-section {
  background:rgba(255,250,246,.78);
}

.escort-final-actions {
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:24px;
}

@media (max-width:980px) {
  .reviews-trust-grid,.reviews-privacy-box {
    grid-template-columns:1fr;
  }

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

}

@media (max-width:640px) {
  .reviews-trust-lead {
    padding:56px 0 44px;
  }

  .reviews-topic-section,.reviews-static-section,.reviews-privacy-section {
    padding:54px 0;
  }

  .reviews-topic-grid,.reviews-static-grid {
    grid-template-columns:1fr;
  }

  .reviews-topic-card {
    min-height:0;
  }

}

.site-header {
  position:relative;
  z-index:5000;
}

.nav-wrap,.site-nav {
  position:relative;
  z-index:5001;
}

.hero {
  z-index:1;
}

.site-menu {
  display:flex;
  align-items:center;
  gap:22px;
  margin:0;
  padding:0;
  list-style:none;
}

.site-menu-item {
  position:relative;
  margin:0;
  padding:0;
}

.site-menu-link {
  position:relative;
  display:inline-flex;
  align-items:center;
  padding:8px 0;
  color:inherit;
}

.site-menu-link::after {
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:1px;
  transform:scaleX(0);
  transform-origin:right;
  background:var(--champagne);
  transition:transform .35s ease;
}

.site-menu-link:hover::after,.site-menu-item:hover>.site-menu-link::after,.site-menu-item:focus-within>.site-menu-link::after {
  transform:scaleX(1);
  transform-origin:left;
}

.site-menu-link.is-active,.site-menu-link[aria-current="page"],.nav-dropdown a.is-active,.nav-dropdown a[aria-current="page"] {
  color:#8a2758;
  font-weight:600;
}

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

.nav-toggle {
  display:none;
  align-items:center;
  justify-content:center;
  min-height:40px;
  border:1px solid rgba(90,38,63,.16);
  border-radius:999px;
  padding:9px 16px;
  color:#5a263f;
  background:rgba(255,250,246,.82);
  font:inherit;
  font-size:13px;
  cursor:pointer;
  transition:background .25s ease,color .25s ease,border-color .25s ease;
}

.nav-toggle:hover {
  border-color:rgba(180,75,125,.32);
  color:#8a2758;
  background:rgba(255,255,255,.92);
}

.has-dropdown {
  z-index:5002;
  padding-bottom:18px;
  margin-bottom:-18px;
}

.has-dropdown::before {
  content:"";
  position:absolute;
  left:-24px;
  right:-24px;
  top:30px;
  height:30px;
}

.nav-dropdown {
  position:absolute;
  top:calc(100% - 8px);
  left:50%;
  z-index:5003;
  display:grid;
  gap:4px;
  min-width:282px;
  margin:0;
  padding:14px;
  list-style:none;
  border:1px solid rgba(190,132,50,.14);
  border-radius:18px;
  background:rgba(255,250,246,.98);
  box-shadow:0 24px 70px rgba(80,35,48,.14);
  backdrop-filter:blur(18px);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translate(-50%,8px);
  transition:opacity .22s ease,visibility .22s ease,transform .22s ease;
}

.has-dropdown:hover>.nav-dropdown,.has-dropdown:focus-within>.nav-dropdown {
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translate(-50%,0);
}

.nav-dropdown li {
  margin:0;
  padding:0;
}

.nav-dropdown a {
  display:block;
  padding:9px 11px;
  border-radius:12px;
  white-space:nowrap;
  font-size:13px;
  line-height:1.2;
  color:#5a2b42;
}

.nav-dropdown a:hover {
  background:rgba(184,76,121,.08);
  color:#8a2758;
}

.nav-dropdown a::after {
  content:none!important;
}

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

  .site-header .site-nav {
    display:none;
  }

  .site-header.is-nav-open .site-nav {
    position:absolute;
    top:calc(100% + 8px);
    left:16px;
    right:16px;
    z-index:5004;
    display:block;
    max-height:calc(100vh - 112px);
    overflow:auto;
    border:1px solid rgba(190,132,50,.14);
    border-radius:20px;
    background:rgba(255,250,246,.98);
    box-shadow:0 24px 70px rgba(80,35,48,.14);
    padding:14px;
  }

  .site-header.is-nav-open .site-menu {
    align-items:stretch;
    flex-direction:column;
    gap:4px;
  }

  .site-header.is-nav-open .site-menu-link {
    display:flex;
    min-height:40px;
    align-items:center;
    padding:9px 10px;
  }

  .site-header.is-nav-open .has-dropdown {
    padding-bottom:0;
    margin-bottom:0;
  }

  .site-header.is-nav-open .has-dropdown::before {
    content:none;
  }

  .site-header.is-nav-open .nav-dropdown {
    position:static;
    display:grid;
    min-width:0;
    margin:2px 0 8px;
    padding:8px;
    border:0;
    border-radius:14px;
    background:rgba(184,76,121,.05);
    box-shadow:none;
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:none;
  }

}

.escort-work-lead {
  padding:88px 0 70px;
  background:linear-gradient(135deg,rgba(255,250,246,.96),rgba(248,218,228,.54));
}

.escort-lead-grid {
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.72fr);
  gap:28px;
  align-items:stretch;
}

.escort-lead-copy {
  padding:34px 0;
}

.escort-lead-copy h2,.escort-money-card h2,.escort-safety-band h2,.escort-final-box h2 {
  margin:0 0 18px;
  color:var(--noir);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(34px,4vw,56px);
  font-weight:500;
  line-height:1;
}

.escort-lead-copy p,.escort-money-card p,.escort-safety-band p,.escort-final-box p {
  max-width:760px;
  margin:0 0 14px;
  color:var(--muted);
  font-size:17px;
  line-height:1.62;
}

.escort-lead-panel {
  display:grid;
  align-content:center;
  min-height:360px;
  border-radius:34px;
  padding:34px;
  background:linear-gradient(145deg,rgba(90,38,63,.94),rgba(45,20,34,.96));
  box-shadow:0 34px 90px rgba(90,38,63,.2);
  color:#fffaf6;
}

.escort-lead-panel span {
  color:var(--gold);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
}

.escort-lead-panel ul {
  display:grid;
  gap:13px;
  margin:24px 0 0;
  padding:0;
  list-style:none;
}

.escort-lead-panel li {
  position:relative;
  padding-left:22px;
  color:rgba(255,250,246,.82);
  line-height:1.45;
}

.escort-lead-panel li::before {
  content:"";
  position:absolute;
  left:0;
  top:.62em;
  width:7px;
  height:7px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold),#f4c4d3);
}

.escort-intent {
  background:rgba(255,250,246,.72);
}

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

.escort-answer-grid article {
  min-height:230px;
  border-radius:28px;
  padding:24px;
  background:linear-gradient(155deg,rgba(255,255,255,.74),rgba(255,250,246,.42));
  box-shadow:0 18px 56px rgba(90,38,63,.08);
  border:1px solid rgba(90,38,63,.1);
  transition:transform .4s ease,box-shadow .4s ease;
}

.escort-answer-grid article:hover {
  transform:translateY(-6px);
  box-shadow:0 26px 70px rgba(90,38,63,.14);
}

.escort-answer-grid span {
  display:block;
  margin-bottom:34px;
  color:var(--champagne);
  font-family:Georgia,"Times New Roman",serif;
  font-size:34px;
}

.escort-answer-grid h3,.escort-steps h3,.escort-money-list span {
  margin:0 0 10px;
  color:var(--wine);
  font-size:20px;
}

.escort-answer-grid p,.escort-steps p,.escort-money-list p {
  margin:0;
  color:var(--muted);
  line-height:1.55;
}

.escort-road {
  background:linear-gradient(180deg,rgba(255,250,246,.86),rgba(251,224,232,.38));
}

.escort-road-shell {
  display:grid;
  grid-template-columns:minmax(260px,.52fr) 1fr;
  gap:34px;
  align-items:start;
}

.escort-road-title {
  position:sticky;
  top:24px;
}

.escort-road-title h2 {
  margin:0;
  color:var(--noir);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(34px,4vw,54px);
  font-weight:500;
  line-height:1;
}

.escort-steps {
  display:grid;
  gap:14px;
}

.escort-steps article {
  display:grid;
  grid-template-columns:58px 1fr;
  column-gap:18px;
  align-items:start;
  border-bottom:1px solid rgba(90,38,63,.1);
  padding:0 0 22px;
}

.escort-steps b {
  display:grid;
  width:50px;
  height:50px;
  place-items:center;
  border-radius:18px;
  color:var(--wine);
  background:linear-gradient(135deg,#fff8e7,#f4c4d3);
  font-weight:600;
}

.escort-steps h3 {
  grid-column:2;
  margin-top:2px;
}

.escort-steps p {
  grid-column:2;
}

.escort-formats {
  padding:96px 0;
}

.escort-format-grid {
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}

.escort-format-grid article {
  display:flex;
  min-height:260px;
  flex-direction:column;
  justify-content:space-between;
  border-radius:28px;
  padding:24px;
  color:#fffaf6;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  backdrop-filter:blur(14px);
  transition:transform .42s ease,background .42s ease,border-color .42s ease;
}

.escort-format-grid article:hover {
  transform:translateY(-7px);
  background:rgba(255,255,255,.13);
  border-color:rgba(255,217,137,.34);
}

.escort-format-grid small {
  color:var(--gold);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
}

.escort-format-grid strong {
  margin:18px 0 12px;
  font-size:23px;
  font-weight:500;
  line-height:1.1;
}

.escort-format-grid p {
  margin:0;
  color:rgba(255,250,246,.72);
  line-height:1.5;
}

.escort-money {
  background:rgba(255,250,246,.82);
}

.escort-money-grid {
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(320px,.7fr);
  gap:22px;
  align-items:stretch;
}

.escort-money-card {
  border-radius:34px;
  padding:38px;
  background:linear-gradient(135deg,rgba(255,255,255,.74),rgba(251,224,232,.46));
  box-shadow:0 24px 80px rgba(90,38,63,.1);
}

.escort-money-list {
  display:grid;
  gap:14px;
}

.escort-money-list div {
  border-radius:28px;
  padding:24px;
  background:#fffaf6;
  border:1px solid rgba(90,38,63,.1);
  box-shadow:0 18px 56px rgba(90,38,63,.07);
}

.escort-safety {
  background:linear-gradient(135deg,rgba(251,224,232,.5),rgba(255,250,246,.92));
}

.escort-safety-band {
  display:grid;
  grid-template-columns:.72fr 1fr;
  gap:26px;
  align-items:center;
  border-radius:38px;
  padding:38px;
  background:linear-gradient(145deg,rgba(255,250,246,.86),rgba(255,255,255,.58));
  border:1px solid rgba(90,38,63,.1);
  box-shadow:0 28px 90px rgba(90,38,63,.12);
}

.escort-safety-points {
  grid-column:1/-1;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:6px;
}

.escort-safety-points span {
  display:inline-flex;
  align-items:center;
  min-height:42px;
  border-radius:999px;
  padding:9px 14px;
  color:var(--wine);
  background:rgba(255,255,255,.66);
  border:1px solid rgba(90,38,63,.1);
  font-size:14px;
}

.escort-final {
  padding:34px 0 96px;
  background:linear-gradient(180deg,rgba(255,250,246,.92),rgba(251,224,232,.48));
}

.escort-final-box {
  display:flex;
  gap:24px;
  align-items:center;
  justify-content:space-between;
  border-radius:38px;
  padding:38px;
  background:linear-gradient(135deg,rgba(90,38,63,.96),rgba(36,19,29,.96));
  box-shadow:0 34px 100px rgba(90,38,63,.24);
}

.escort-final-box h2,.escort-final-box .kicker {
  color:#fffaf6;
}

.escort-final-box p {
  max-width:760px;
  color:rgba(255,250,246,.72);
}

.escort-final-box .btn {
  flex:0 0 auto;
}

@media (max-width:980px) {
  .escort-lead-grid,.escort-road-shell,.escort-money-grid,.escort-safety-band {
    grid-template-columns:1fr;
  }

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

  .escort-road-title {
    position:relative;
    top:auto;
  }

  .escort-final-box {
    align-items:flex-start;
    flex-direction:column;
  }

}

@media (max-width:640px) {
  .escort-work-lead,.escort-formats {
    padding:64px 0;
  }

  .escort-answer-grid,.escort-format-grid {
    grid-template-columns:1fr;
  }

  .escort-lead-panel,.escort-money-card,.escort-safety-band,.escort-final-box {
    border-radius:26px;
    padding:24px;
  }

  .escort-steps article {
    grid-template-columns:46px 1fr;
  }

  .escort-steps b {
    width:42px;
    height:42px;
    border-radius:14px;
  }

}

.escort-article-intro {
  position:relative;
  overflow:hidden;
  padding:94px 0 72px;
  background:linear-gradient(135deg,rgba(255,250,246,.98),rgba(250,222,231,.58));
}

.escort-article-intro::before {
  content:"";
  position:absolute;
  inset:0;
  opacity:.42;
  background:linear-gradient(90deg,rgba(180,75,125,.06) 1px,transparent 1px),linear-gradient(0deg,rgba(180,75,125,.045) 1px,transparent 1px);
  background-size:86px 86px;
  pointer-events:none;
}

.escort-article-layout {
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,360px);
  gap:46px;
  align-items:start;
}

.escort-story {
  max-width:820px;
}

.escort-story h2,.escort-chapter h2,.escort-dialogue-title h2,.escort-income-copy h2,.escort-privacy-box h2,.escort-questions-copy h2,.escort-article-cta-box h2 {
  margin:0 0 18px;
  color:var(--noir);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(34px,4vw,58px);
  font-weight:500;
  line-height:1;
}

.escort-story p,.escort-chapter p,.escort-dialogue-title p,.escort-income-copy p,.escort-privacy-box p,.escort-questions-copy p,.escort-article-cta-box p {
  margin:0 0 15px;
  color:var(--muted);
  font-size:17px;
  line-height:1.72;
}

.escort-story-lead {
  color:#4c3040!important;
  font-size:20px!important;
  line-height:1.62!important;
}

.escort-story figure {
  margin:34px 0;
  padding:30px 34px;
  border-left:3px solid var(--champagne);
  border-radius:0 26px 26px 0;
  background:rgba(255,255,255,.58);
  box-shadow:0 20px 70px rgba(90,38,63,.08);
}

.escort-story blockquote {
  margin:0;
  color:var(--wine);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(26px,3vw,38px);
  line-height:1.08;
}

.escort-story figcaption {
  margin-top:14px;
  color:var(--muted);
  font-size:14px;
}

.escort-reader-card {
  position:sticky;
  top:28px;
  border-radius:34px;
  padding:30px;
  background:linear-gradient(145deg,rgba(90,38,63,.96),rgba(38,18,30,.96));
  box-shadow:0 34px 92px rgba(90,38,63,.22);
  color:#fffaf6;
}

.escort-reader-card span {
  display:block;
  margin-bottom:18px;
  color:var(--gold);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
}

.escort-reader-card p {
  margin:0 0 24px;
  color:rgba(255,250,246,.78);
  line-height:1.6;
}

.escort-reader-card a {
  display:inline-flex;
  color:#fffaf6;
  border-bottom:1px solid rgba(255,217,137,.62);
  font-size:14px;
  font-weight:700;
  text-transform:uppercase;
}

.escort-chapters {
  padding:96px 0;
  background:linear-gradient(180deg,rgba(255,250,246,.94),rgba(251,224,232,.36));
}

.escort-chapter {
  position:relative;
  overflow:hidden;
  border-radius:38px;
  padding:40px;
  background:rgba(255,255,255,.64);
  border:1px solid rgba(90,38,63,.1);
  box-shadow:0 24px 80px rgba(90,38,63,.09);
}

.escort-chapter::before {
  content:"";
  position:absolute;
  inset:auto -12% -38% auto;
  width:280px;
  height:280px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,217,137,.24),transparent 64%);
  pointer-events:none;
}

.escort-chapter>span {
  display:block;
  margin-bottom:44px;
  color:rgba(180,75,125,.28);
  font-family:Georgia,"Times New Roman",serif;
  font-size:64px;
  line-height:.8;
}

.escort-chapter--wide {
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
  margin-bottom:18px;
}

.escort-chapter--wide>span {
  margin:0;
  font-size:96px;
}

.escort-chapter-pair {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.escort-chapter--soft {
  background:linear-gradient(145deg,rgba(255,250,246,.78),rgba(248,218,228,.56));
}

.escort-dialogue-band {
  position:relative;
  overflow:hidden;
  padding:98px 0;
  color:#fffaf6;
  background:linear-gradient(135deg,#171115,#3a1828 54%,#1a1317);
}

.escort-dialogue-band::before {
  content:"";
  position:absolute;
  inset:0;
  opacity:.15;
  background:linear-gradient(110deg,transparent 0 42%,rgba(255,255,255,.25) 47%,transparent 52% 100%);
  background-size:260px 100%;
  animation:satin 9s linear infinite;
}

.escort-dialogue-layout {
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,.72fr) minmax(360px,1fr);
  gap:42px;
  align-items:center;
}

.escort-dialogue-title h2,.escort-dialogue-title .kicker {
  color:#fffaf6;
}

.escort-dialogue-title p {
  color:rgba(255,250,246,.72);
}

.escort-chat {
  display:grid;
  gap:12px;
}

.escort-bubble {
  max-width:78%;
  border-radius:24px;
  padding:16px 18px;
  line-height:1.5;
  box-shadow:0 14px 40px rgba(0,0,0,.16);
}

.escort-bubble--user {
  justify-self:start;
  background:rgba(255,250,246,.12);
  border:1px solid rgba(255,255,255,.14);
  color:rgba(255,250,246,.86);
}

.escort-bubble--agency {
  justify-self:end;
  background:linear-gradient(135deg,#fff8e7,#f4c4d3);
  color:#5a2b42;
}

.escort-income-story {
  padding:98px 0;
  background:rgba(255,250,246,.88);
}

.escort-income-layout {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(300px,390px);
  gap:36px;
  align-items:start;
}

.escort-income-copy {
  max-width:820px;
}

.escort-income-notes {
  display:grid;
  gap:14px;
}

.escort-income-notes div {
  border-radius:28px;
  padding:24px;
  background:linear-gradient(145deg,rgba(255,255,255,.76),rgba(251,224,232,.36));
  border:1px solid rgba(90,38,63,.1);
  box-shadow:0 18px 56px rgba(90,38,63,.07);
}

.escort-income-notes b {
  display:block;
  margin-bottom:9px;
  color:var(--wine);
  font-size:18px;
}

.escort-income-notes p {
  margin:0;
  color:var(--muted);
  line-height:1.55;
}

.escort-privacy-editorial {
  padding:34px 0 98px;
  background:linear-gradient(180deg,rgba(255,250,246,.88),rgba(251,224,232,.52));
}

.escort-privacy-box {
  display:grid;
  grid-template-columns:minmax(260px,.72fr) 1fr;
  gap:32px;
  align-items:end;
  border-radius:42px;
  padding:42px;
  background:linear-gradient(145deg,rgba(255,250,246,.86),rgba(255,255,255,.58));
  border:1px solid rgba(90,38,63,.1);
  box-shadow:0 28px 90px rgba(90,38,63,.12);
}

.escort-privacy-box p {
  margin-bottom:0;
}

.escort-questions {
  padding:96px 0;
  background:linear-gradient(135deg,rgba(255,250,246,.96),rgba(248,218,228,.5));
}

.escort-questions-layout {
  display:grid;
  grid-template-columns:minmax(0,.76fr) minmax(360px,1fr);
  gap:36px;
  align-items:start;
}

.escort-question-stack {
  display:grid;
  gap:12px;
}

.escort-question-stack details {
  border-radius:24px;
  padding:20px 22px;
  background:rgba(255,255,255,.66);
  border:1px solid rgba(90,38,63,.1);
  box-shadow:0 16px 46px rgba(90,38,63,.06);
}

.escort-question-stack summary {
  cursor:pointer;
  color:var(--wine);
  font-weight:700;
}

.escort-question-stack p {
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.55;
}

.escort-article-cta {
  padding:30px 0 98px;
  background:linear-gradient(180deg,rgba(248,218,228,.48),rgba(255,250,246,.94));
}

.escort-article-cta-box {
  position:relative;
  overflow:hidden;
  border-radius:44px;
  padding:46px;
  background:linear-gradient(135deg,rgba(90,38,63,.96),rgba(36,19,29,.96));
  box-shadow:0 34px 100px rgba(90,38,63,.24);
}

.escort-article-cta-box::before {
  content:"";
  position:absolute;
  right:-120px;
  top:-120px;
  width:360px;
  height:360px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(255,217,137,.28),transparent 65%);
}

.escort-article-cta-box>* {
  position:relative;
}

.escort-article-cta-box h2,.escort-article-cta-box .kicker {
  color:#fffaf6;
}

.escort-article-cta-box p {
  max-width:820px;
  color:rgba(255,250,246,.76);
}

.escort-article-cta-box .btn {
  margin-top:10px;
}

.escort-brief-intro {
  position:relative;
  overflow:hidden;
  padding:94px 0 78px;
  background:linear-gradient(135deg,rgba(255,250,246,.98),rgba(249,221,230,.56));
}

.escort-brief-intro::before {
  content:"";
  position:absolute;
  inset:0;
  opacity:.38;
  background:linear-gradient(90deg,rgba(180,75,125,.055) 1px,transparent 1px),linear-gradient(0deg,rgba(180,75,125,.04) 1px,transparent 1px);
  background-size:92px 92px;
  pointer-events:none;
}

.escort-brief-layout {
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,360px);
  gap:48px;
  align-items:start;
}

.escort-brief-story {
  max-width:850px;
}

.escort-brief-story h2,.escort-prose-main h2,.escort-split-title h2,.escort-guide-head h2,.escort-requirements-copy h2,.escort-noexp-layout h2,.escort-conditions-layout h2,.escort-safety-title h2,.escort-relocation-grid h2,.escort-warning-box h2 {
  margin:0 0 18px;
  color:var(--noir);
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(34px,4vw,58px);
  font-weight:500;
  line-height:1;
}

.escort-brief-story p,.escort-prose-main p,.escort-split-text p,.escort-guide-head p,.escort-guide-flow p,.escort-requirements-copy p,.escort-noexp-layout p,.escort-conditions-layout p,.escort-safety-text p,.escort-relocation-grid p,.escort-warning-box p {
  margin:0 0 15px;
  color:var(--muted);
  font-size:17px;
  line-height:1.72;
}

.escort-brief-story .lead {
  color:#4c3040;
  font-size:20px;
  line-height:1.62;
}

.escort-brief-note {
  position:sticky;
  top:28px;
  border-radius:34px;
  padding:30px;
  background:linear-gradient(145deg,rgba(90,38,63,.96),rgba(38,18,30,.96));
  box-shadow:0 34px 92px rgba(90,38,63,.22);
  color:#fffaf6;
}

.escort-brief-note span {
  display:block;
  margin-bottom:18px;
  color:var(--gold);
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
}

.escort-brief-note p {
  margin:0;
  color:rgba(255,250,246,.78);
  line-height:1.6;
}

.escort-inline-cta {
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
  margin-top:28px;
  border-radius:999px;
  padding:10px 12px 10px 20px;
  background:rgba(255,255,255,.68);
  border:1px solid rgba(90,38,63,.1);
  box-shadow:0 18px 54px rgba(90,38,63,.08);
}

.escort-inline-cta span {
  color:var(--muted);
}

.escort-inline-cta a {
  display:inline-flex;
  min-height:42px;
  align-items:center;
  border-radius:999px;
  padding:10px 18px;
  color:#fff;
  background:linear-gradient(135deg,var(--wine),var(--rose));
  font-weight:700;
}

.escort-prose-section {
  padding:96px 0;
  background:rgba(255,250,246,.88);
}

.escort-prose-layout {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(260px,330px);
  gap:44px;
  align-items:start;
}

.escort-prose-side {
  border-radius:30px;
  padding:26px;
  background:linear-gradient(145deg,rgba(255,255,255,.76),rgba(251,224,232,.36));
  border:1px solid rgba(90,38,63,.1);
  box-shadow:0 18px 56px rgba(90,38,63,.07);
}

.escort-prose-side b {
  display:block;
  margin-bottom:12px;
  color:var(--wine);
  font-size:18px;
}

.escort-prose-side p {
  margin:0;
  color:var(--muted);
  line-height:1.58;
}

.escort-split-chapter {
  padding:96px 0;
  background:linear-gradient(180deg,rgba(255,250,246,.9),rgba(251,224,232,.42));
}

.escort-split-grid {
  display:grid;
  grid-template-columns:minmax(280px,.68fr) 1fr;
  gap:44px;
  align-items:start;
}

.escort-split-title {
  position:sticky;
  top:26px;
}

.escort-start-guide {
  padding:96px 0;
  background:rgba(255,250,246,.94);
}

.escort-guide-head {
  max-width:890px;
  margin-bottom:34px;
}

.escort-guide-flow {
  display:grid;
  gap:0;
  border-radius:38px;
  overflow:hidden;
  background:rgba(255,255,255,.62);
  border:1px solid rgba(90,38,63,.1);
  box-shadow:0 24px 80px rgba(90,38,63,.09);
}

.escort-guide-flow article {
  display:grid;
  grid-template-columns:88px 260px 1fr;
  gap:22px;
  align-items:start;
  padding:26px 30px;
  border-bottom:1px solid rgba(90,38,63,.09);
}

.escort-guide-flow article:last-child {
  border-bottom:0;
}

.escort-guide-flow span {
  color:rgba(180,75,125,.34);
  font-family:Georgia,"Times New Roman",serif;
  font-size:44px;
  line-height:1;
}

.escort-guide-flow h3 {
  margin:4px 0 0;
  color:var(--wine);
  font-size:21px;
  line-height:1.18;
}

.escort-mid-cta {
  display:flex;
  gap:20px;
  align-items:center;
  justify-content:space-between;
  margin-top:26px;
  border-radius:30px;
  padding:24px 28px;
  background:linear-gradient(135deg,rgba(90,38,63,.94),rgba(42,19,32,.96));
  box-shadow:0 24px 74px rgba(90,38,63,.18);
}

.escort-mid-cta p {
  margin:0;
  color:rgba(255,250,246,.78);
  font-size:17px;
  line-height:1.5;
}

.escort-requirements-section {
  padding:96px 0;
  background:linear-gradient(135deg,rgba(255,250,246,.96),rgba(249,221,230,.46));
}

.escort-requirements-layout {
  display:grid;
  grid-template-columns:minmax(0,.78fr) minmax(390px,1fr);
  gap:36px;
  align-items:start;
}

.escort-requirements-table {
  display:grid;
  border-radius:34px;
  overflow:hidden;
  border:1px solid rgba(90,38,63,.1);
  box-shadow:0 24px 80px rgba(90,38,63,.09);
  background:rgba(255,255,255,.68);
}

.escort-requirements-table div {
  display:grid;
  grid-template-columns:170px 1fr;
  gap:18px;
  padding:20px 24px;
  border-bottom:1px solid rgba(90,38,63,.08);
}

.escort-requirements-table div:last-child {
  border-bottom:0;
}

.escort-requirements-table b {
  color:var(--wine);
}

.escort-requirements-table span {
  color:var(--muted);
  line-height:1.45;
}

.escort-noexp-band {
  padding:96px 0;
  color:#fffaf6;
  background:linear-gradient(135deg,#171115,#3a1828 54%,#1a1317);
}

.escort-noexp-layout {
  display:grid;
  grid-template-columns:minmax(280px,.62fr) 1fr;
  gap:44px;
  align-items:start;
}

.escort-noexp-layout h2,.escort-noexp-layout .kicker {
  color:#fffaf6;
}

.escort-noexp-layout p {
  color:rgba(255,250,246,.74);
}

.escort-conditions-section {
  padding:96px 0;
  background:rgba(255,250,246,.9);
}

.escort-conditions-layout {
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(280px,350px);
  gap:38px;
  align-items:start;
}

.escort-conditions-layout aside {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  border-radius:30px;
  padding:26px;
  background:linear-gradient(145deg,rgba(255,255,255,.74),rgba(251,224,232,.38));
  border:1px solid rgba(90,38,63,.1);
  box-shadow:0 18px 56px rgba(90,38,63,.07);
}

.escort-conditions-layout aside b {
  width:100%;
  color:var(--wine);
  font-size:18px;
}

.escort-conditions-layout aside span {
  border-radius:999px;
  padding:9px 13px;
  color:var(--wine);
  background:rgba(255,255,255,.72);
  border:1px solid rgba(90,38,63,.1);
  font-size:14px;
}

.escort-safety-section {
  padding:96px 0;
  background:linear-gradient(180deg,rgba(255,250,246,.92),rgba(251,224,232,.48));
}

.escort-safety-layout {
  display:grid;
  grid-template-columns:minmax(280px,.72fr) 1fr;
  gap:44px;
  align-items:start;
}

.escort-safety-title {
  position:sticky;
  top:26px;
}

.escort-relocation-section {
  padding:96px 0;
  background:rgba(255,250,246,.94);
}

.escort-relocation-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.escort-relocation-grid>div {
  border-radius:34px;
  padding:34px;
  background:linear-gradient(145deg,rgba(255,255,255,.74),rgba(251,224,232,.34));
  border:1px solid rgba(90,38,63,.1);
  box-shadow:0 24px 80px rgba(90,38,63,.08);
}

.escort-warning-section {
  padding:96px 0;
  background:linear-gradient(135deg,rgba(251,224,232,.5),rgba(255,250,246,.94));
}

.escort-warning-box {
  display:grid;
  grid-template-columns:1fr minmax(280px,390px);
  gap:34px;
  align-items:start;
  border-radius:42px;
  padding:42px;
  background:linear-gradient(145deg,rgba(90,38,63,.96),rgba(38,18,30,.96));
  box-shadow:0 34px 100px rgba(90,38,63,.24);
  color:#fffaf6;
}

.escort-warning-box h2,.escort-warning-box .kicker {
  color:#fffaf6;
}

.escort-warning-box p {
  color:rgba(255,250,246,.74);
}

.escort-warning-box ul {
  display:grid;
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
}

.escort-warning-box li {
  position:relative;
  padding-left:22px;
  color:rgba(255,250,246,.82);
  line-height:1.45;
}

.escort-warning-box li::before {
  content:"";
  position:absolute;
  left:0;
  top:.62em;
  width:7px;
  height:7px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold),#f4c4d3);
}

@media (max-width:980px) {
  .escort-article-layout,.escort-dialogue-layout,.escort-income-layout,.escort-privacy-box,.escort-questions-layout {
    grid-template-columns:1fr;
  }

  .escort-brief-layout,.escort-prose-layout,.escort-split-grid,.escort-requirements-layout,.escort-noexp-layout,.escort-conditions-layout,.escort-safety-layout,.escort-relocation-grid,.escort-warning-box {
    grid-template-columns:1fr;
  }

  .escort-split-title,.escort-safety-title,.escort-brief-note {
    position:relative;
    top:auto;
  }

  .escort-guide-flow article {
    grid-template-columns:70px 1fr;
  }

  .escort-guide-flow p {
    grid-column:2;
  }

  .escort-reader-card {
    position:relative;
    top:auto;
  }

  .escort-chapter--wide {
    grid-template-columns:1fr;
  }

  .escort-chapter-pair {
    grid-template-columns:1fr;
  }

}

@media (max-width:640px) {
  .escort-article-intro,.escort-chapters,.escort-dialogue-band,.escort-income-story,.escort-questions {
    padding:64px 0;
  }

  .escort-brief-intro,.escort-prose-section,.escort-split-chapter,.escort-start-guide,.escort-requirements-section,.escort-noexp-band,.escort-conditions-section,.escort-safety-section,.escort-relocation-section,.escort-warning-section {
    padding:64px 0;
  }

  .escort-story figure,.escort-chapter,.escort-privacy-box,.escort-article-cta-box {
    border-radius:26px;
    padding:24px;
  }

  .escort-brief-note,.escort-prose-side,.escort-guide-flow,.escort-requirements-table,.escort-relocation-grid>div,.escort-warning-box {
    border-radius:26px;
  }

  .escort-guide-flow article,.escort-requirements-table div {
    grid-template-columns:1fr;
    gap:10px;
    padding:22px;
  }

  .escort-mid-cta {
    align-items:flex-start;
    flex-direction:column;
    border-radius:24px;
    padding:22px;
  }

  .escort-chapter>span,.escort-chapter--wide>span {
    font-size:54px;
    margin-bottom:22px;
  }

  .escort-bubble {
    max-width:100%;
  }

}

.escort-editorial-page {
  background:linear-gradient(180deg,#fffaf6 0%,#f9e3ea 38%,#fffaf6 72%,#f7dbe4 100%);
  color:var(--noir);
}

.escort-editorial-page section {
  position:relative;
  overflow:hidden;
}

.escort-editorial-page h2 {
  margin:0;
  color:var(--noir);
  font-family:Georgia,"Times New Roman",serif;
  font-size:52px;
  font-weight:500;
  line-height:1.04;
  letter-spacing:0;
}

.escort-editorial-page h3 {
  margin:10px 0 10px;
  color:var(--berry);
  font-size:22px;
  font-weight:500;
  line-height:1.24;
  letter-spacing:0;
}

.escort-editorial-page p {
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.74;
  letter-spacing:0;
}

.escort-editorial-page p+p {
  margin-top:17px;
}

.escort-editorial-page a {
  text-decoration:none;
}

.escort-editorial-page [data-reveal] {
  will-change:transform,opacity;
}

.escort-faq-head>span,.escort-final-premium-box>span {
  display:inline-flex;
  margin-bottom:22px;
  color:var(--gold);
  font-family:Georgia,"Times New Roman",serif;
  font-size:18px;
  font-weight:500;
  line-height:1;
  letter-spacing:0;
}

.escort-editorial-open {
  padding:112px 0 96px;
  background:linear-gradient(135deg,rgba(255,250,246,.98),rgba(249,221,230,.55));
}

.escort-editorial-open::before {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(90,38,63,.07) 1px,transparent 1px),linear-gradient(0deg,rgba(90,38,63,.045) 1px,transparent 1px);
  background-size:92px 92px;
  opacity:.42;
  pointer-events:none;
}

.escort-open-grid {
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:70px;
  align-items:start;
}

.escort-open-copy {
  padding:8px 0 0;
  max-width:900px;
}

.escort-open-copy .lead {
  margin-top:28px;
  color:#4c3040;
  font-size:21px;
  line-height:1.64;
}

.escort-open-aside {
  position:sticky;
  top:28px;
  padding:34px 0 34px 34px;
  border-left:1px solid rgba(180,75,125,.28);
}

.escort-open-aside span {
  display:block;
  margin-bottom:18px;
  color:var(--wine);
  font-family:Georgia,"Times New Roman",serif;
  font-size:28px;
  font-weight:500;
  line-height:1.12;
}

.escort-open-aside p {
  color:#6a4658;
}

.escort-open-action {
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  align-items:center;
  margin-top:34px;
  padding-top:24px;
  border-top:1px solid rgba(90,38,63,.12);
  justify-content: space-between;
}

.escort-open-action span {
  max-width:460px;
  color:#6a4658;
  font-size:15px;
  line-height:1.45;
}

.escort-open-action a {
  display:inline-flex;
  min-height:46px;
  align-items:center;
  border-radius:999px;
  padding:12px 22px;
  color:#fff;
  background:linear-gradient(135deg,var(--wine),var(--rose));
  box-shadow:0 16px 38px rgba(180,75,125,.22);
  font-weight:600;
  transition:transform .25s ease,box-shadow .25s ease;
}

.escort-open-action a:hover {
  transform:translateY(-2px);
  box-shadow:0 22px 48px rgba(180,75,125,.28);
}

.escort-editorial-chapter {
  padding:118px 0 106px;
  background:rgba(255,250,246,.92);
}

.escort-chapter-grid {
  display:grid;
  grid-template-columns:420px minmax(0,1fr);
  gap:72px;
  align-items:start;
}

.escort-chapter-side {
  position:sticky;
  top:28px;
  padding-top:4px;
}

.escort-chapter-body {
  max-width:900px;
}

.escort-chapter-body p {
  break-inside:avoid;
}

.escort-subtle-line {
  display:grid;
  grid-template-columns:180px minmax(0,1fr);
  gap:24px;
  margin-top:34px;
  padding:26px 0;
  border-top:1px solid rgba(90,38,63,.15);
  border-bottom:1px solid rgba(90,38,63,.15);
}

.escort-subtle-line b {
  color:var(--wine);
  font-size:17px;
  font-weight:500;
}

.escort-subtle-line span {
  color:#6a4658;
  line-height:1.6;
}

.escort-fit-section {
  padding:114px 0;
  background:linear-gradient(135deg,rgba(58,24,40,.96),rgba(26,19,23,.98));
}

.escort-fit-layout {
  display:grid;
  grid-template-columns:minmax(280px,.72fr) minmax(0,1fr);
  gap:70px;
  align-items:start;
}

.escort-fit-title {
  position:sticky;
  top:28px;
}

.escort-fit-title h2,.escort-fit-text p {
  color:#fffaf6;
}

.escort-fit-text {
  padding-left:44px;
  border-left:1px solid rgba(244,196,211,.24);
}

.escort-fit-text p {
  color:rgba(255,250,246,.76);
}

.escort-process-section {
  padding:118px 0;
  background:radial-gradient(circle at 14% 18%,rgba(255,217,137,.18),transparent 30%),linear-gradient(180deg,#fffaf6,rgba(249,221,230,.55));
}

.escort-process-head {
  display:grid;
  grid-template-columns:minmax(300px,.72fr) minmax(0,1fr);
  gap:70px;
  align-items:end;
  max-width:none;
  margin-bottom:48px;
  padding-bottom:42px;
}

.escort-process-head p {
  max-width:680px;
  margin:0;
  padding-left:34px;
  border-left:1px solid rgba(180,75,125,.24);
}

.escort-process-list {
  position:relative;
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:0;
  border-top:0;
}
.escort-process-list.grid4 {
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.escort-process-list::before {
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:18px;
  height:1px;
  background:linear-gradient(90deg,rgba(180,75,125,.22),rgba(255,217,137,.58),rgba(180,75,125,.18));
}

.escort-process-list article {
  position:relative;
  padding:58px 28px 10px 0;
  border-bottom:0;
  transition:transform .25s ease;
}

.escort-process-list article::before {
  content:"";
  position:absolute;
  top:10px;
  left:0;
  width:17px;
  height:17px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold),#f4c4d3);
  box-shadow:0 0 0 12px rgba(255,250,246,.86),0 16px 34px rgba(180,75,125,.18);
}

.escort-process-list article:hover {
  transform:translateY(-4px);
}

.escort-process-list p {
  max-width:920px;
  font-size:16px;
  line-height:1.66;
}

.escort-process-cta {
  display:flex;
  gap:24px;
  align-items:center;
  justify-content:space-between;
  margin-top:58px;
  padding:30px 0;
  border-top:1px solid rgba(90,38,63,.18);
  border-bottom:1px solid rgba(90,38,63,.18);
}

.escort-process-cta p {
  max-width:720px;
  color:#563646;
  font-size:18px;
}

.escort-require-premium {
  padding:118px 0;
  background:rgba(255,250,246,.94);
}

.escort-require-grid {
  display:grid;
  grid-template-columns:minmax(0,.82fr) minmax(380px,1fr);
  gap:70px;
  align-items:start;
}
.escort-require-grid h2 + p {
  margin-top: 17px;
}

.escort-require-copy p {
  max-width:760px;
}

.escort-require-rows {
  border-top:1px solid rgba(90,38,63,.18);
}

.escort-require-rows div {
  display:grid;
  grid-template-columns:170px minmax(0,1fr);
  gap:24px;
  padding:22px 0;
  border-bottom:1px solid rgba(90,38,63,.13);
}

.escort-require-rows b {
  color:var(--wine);
  font-weight:500;
}

.escort-require-rows span {
  color:#6a4658;
  line-height:1.5;
}

.escort-dark-story {
  padding:112px 0;
  background:linear-gradient(135deg,#171115,#3a1828 55%,#1a1317);
  color:#fffaf6;
}

.escort-dark-grid {
  display:grid;
  grid-template-columns:minmax(280px,.68fr) minmax(0,1fr);
  gap:72px;
  align-items:start;
}

.escort-dark-grid h2,.escort-dark-grid p {
  color:#fffaf6;
}

.escort-dark-grid p {
  color:rgba(255,250,246,.76);
}

.escort-conditions-premium {
  padding:116px 0;
  background:linear-gradient(180deg,rgba(249,221,230,.5),#fffaf6);
}

.escort-conditions-premium-grid {
  display:grid;
  grid-template-columns:minmax(0,1fr) 300px;
  gap:70px;
  align-items:start;
}

.escort-conditions-premium-grid h2 {
  margin-bottom: 17px;
}

.escort-conditions-premium-grid aside {
  position:sticky;
  top:28px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding:28px 0;
  border-top:1px solid rgba(90,38,63,.17);
  border-bottom:1px solid rgba(90,38,63,.17);
}

.escort-conditions-premium-grid aside b {
  width:100%;
  margin-bottom:10px;
  color:var(--wine);
  font-size:19px;
  font-weight:500;
}

.escort-conditions-premium-grid aside span {
  border-radius:999px;
  padding:9px 13px;
  color:#6a4658;
  background:rgba(255,255,255,.56);
  border:1px solid rgba(90,38,63,.12);
  font-size:14px;
}

.escort-privacy-premium {
  padding:118px 0;
  background:rgba(255,250,246,.94);
}

.escort-privacy-grid {
  display:grid;
  grid-template-columns:360px minmax(0,1fr);
  gap:72px;
  align-items:start;
}

.escort-privacy-heading {
  position:sticky;
  top:28px;
}

.escort-privacy-text {
  padding-left:42px;
  border-left:1px solid rgba(180,75,125,.24);
}

.escort-relocation-premium {
  padding:112px 0;
  background:linear-gradient(135deg,rgba(255,250,246,.96),rgba(249,221,230,.5));
}

.escort-relocation-premium-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:54px;
}

.escort-relocation-premium-grid h2 {
  margin-bottom: 17px;
}

.escort-relocation-premium article {
  padding-top:28px;
  border-top:1px solid rgba(90,38,63,.18);
}

.escort-relocation-premium h2 {
  font-size:42px;
}

.escort-warning-premium {
  padding:112px 0;
  background:rgba(255,250,246,.94);
}

.escort-warning-premium-box {
  display:grid;
  grid-template-columns:minmax(0,1fr) 350px;
  gap:70px;
  align-items:start;
  padding:56px;
  background:linear-gradient(135deg,rgba(58,24,40,.97),rgba(26,19,23,.98));
  box-shadow:0 34px 100px rgba(90,38,63,.22);
}

.escort-warning-premium-box h2,.escort-warning-premium-box p {
  color:#fffaf6;
}

.escort-warning-premium-box h2 {
  margin-bottom: 17px;
}

.escort-warning-premium-box p {
  color:rgba(255,250,246,.76);
}

.escort-warning-premium-box ul {
  display:grid;
  gap:14px;
  margin:0;
  padding:0;
  list-style:none;
}

.escort-warning-premium-box li {
  position:relative;
  padding-left:23px;
  color:rgba(255,250,246,.82);
  line-height:1.48;
}

.escort-warning-premium-box li::before {
  content:"";
  position:absolute;
  left:0;
  top:.64em;
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--gold);
}

.escort-faq-premium {
  padding:116px 0;
  background:rgba(255,250,246,.94);
}

.escort-faq-head {
  display:grid;
  grid-template-columns: 0.9fr 1fr;
  gap:70px;
  align-items:end;
  max-width:none;
  margin-bottom:48px;
  padding-bottom:42px;
}

.escort-faq-head span {
  grid-row:1 / span 2;
  margin:0;
  color:var(--gold);
  font-family:Georgia,"Times New Roman",serif;
  font-size:22px;
  font-weight:500;
}

.escort-faq-head h2 {
  max-width:900px;
}

.escort-faq-head p {
  grid-column:auto;
  max-width:680px;
  margin:0;
  padding-left:34px;
  border-left:1px solid rgba(180,75,125,.24);
}

.escort-faq-list {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.escort-faq-list details {
  border:1px solid rgba(90, 38, 63, .12);
  border-radius:22px;
  padding:20px;
  background:rgba(255, 255, 255, .58);
  box-shadow:0 18px 50px rgba(90, 38, 63, .07);
}

.escort-faq-list summary {
  display:block;
  min-height:0;
  padding:0;
  color:var(--wine);
  font-size:18px;
  font-weight:700;
  line-height:normal;
  cursor:pointer;
  list-style:none;
  transition:color .2s ease;
}

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

.escort-faq-list summary::after {
  content:none;
}

.escort-faq-list details[open] summary {
  color:#3f2634;
}

.escort-faq-list details[open] summary::after {
  content:none;
}

.escort-faq-list details p {
  margin:14px 0 0;
  padding:0;
  color:#654355;
  font-size:16px;
  line-height:1.66;
}

.escort-final-premium {
  padding:106px 0 118px;
  background:linear-gradient(180deg,rgba(249,221,230,.48),#fffaf6);
}

.escort-final-premium-box {
  padding:60px;
  background:linear-gradient(135deg,#3a1828,#1a1317);
  box-shadow:0 34px 100px rgba(90,38,63,.22);
}

.escort-final-premium-box h2,.escort-final-premium-box p {
  color:#fffaf6;
}

.escort-final-premium-box p {
  max-width:760px;
  margin-top:22px;
  color:rgba(255,250,246,.76);
}

.escort-final-premium-box .btn {
  margin-top:28px;
}

.escort-format-stack {
  display:grid;
  gap:30px;
}

.escort-format-stack article {
  padding-bottom:30px;
  border-bottom:1px solid rgba(244,196,211,.22);
}

.escort-format-stack article:last-child {
  padding-bottom:0;
  border-bottom:0;
}

.escort-format-stack h3 {
  color:#fffaf6;
  font-family:Georgia,"Times New Roman",serif;
  font-size:28px;
  font-weight:500;
}

.escort-link-row {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
  padding-top:24px;
  border-top:1px solid rgba(90,38,63,.14);
}

.escort-link-row a {
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:10px 14px;
  color:var(--wine);
  background:rgba(255,255,255,.62);
  border:1px solid rgba(90,38,63,.12);
  font-size:14px;
  line-height:1.2;
  transition:transform .22s ease,background .22s ease,border-color .22s ease;
}

.escort-link-row a:hover {
  transform:translateY(-2px);
  background:rgba(255,255,255,.86);
  border-color:rgba(180,75,125,.25);
}

.escort-link-row--dark {
  border-top-color:rgba(255,250,246,.18);
}

.escort-link-row--dark a {
  color:#fffaf6;
  background:rgba(255,250,246,.1);
  border-color:rgba(255,250,246,.18);
}

.escort-link-row--dark a:hover {
  background:rgba(255,250,246,.16);
  border-color:rgba(255,217,137,.34);
}

.escort-open-action--inline {
  margin-top:34px;
}

.escort-format-table-wrap {
  overflow:auto;
  border-top:1px solid rgba(90,38,63,.18);
  border-bottom:1px solid rgba(90,38,63,.18);
}

.escort-format-table {
  width:100%;
  min-width:820px;
  border-collapse:collapse;
  color:var(--muted);
}

.escort-format-table th,.escort-format-table td {
  padding:22px 20px;
  text-align:left;
  vertical-align:top;
  border-bottom:1px solid rgba(90,38,63,.12);
}

.escort-format-table tr:last-child td {
  border-bottom:0;
}

.escort-format-table th {
  color:var(--wine);
  font-size:13px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  background:rgba(255,255,255,.42);
}

.escort-format-table td:first-child {
  color:var(--wine);
  font-weight:600;
}

.escort-format-table td {
  font-size:15px;
  line-height:1.52;
}

@media (max-width:980px) {
  .escort-editorial-page h2 {
    font-size:42px;
  }

  .escort-open-grid,.escort-chapter-grid,.escort-fit-layout,.escort-require-grid,.escort-dark-grid,.escort-conditions-premium-grid,.escort-privacy-grid,.escort-relocation-premium-grid,.escort-warning-premium-box {
    grid-template-columns:1fr;
    gap:44px;
  }

  .escort-open-aside,.escort-chapter-side,.escort-fit-title,.escort-conditions-premium-grid aside,.escort-privacy-heading {
    position:relative;
    top:auto;
  }

  .escort-open-aside {
    padding:26px 0 0;
    border-left:0;
    border-top:1px solid rgba(180,75,125,.24);
  }

  .escort-fit-text,.escort-privacy-text {
    padding-left:0;
    border-left:0;
  }

  .escort-process-head {
    grid-template-columns:1fr;
    gap:24px;
  }

  .escort-process-head p {
    padding-left:0;
    border-left:0;
  }

  .escort-process-list {
    grid-template-columns:1fr;
  }

  .escort-process-list::before {
    left:8px;
    right:auto;
    top:0;
    bottom:0;
    width:1px;
    height:auto;
    background:linear-gradient(180deg,rgba(180,75,125,.18),rgba(255,217,137,.58),rgba(180,75,125,.16));
  }

  .escort-process-list article {
    padding:0 0 30px 42px;
  }

  .escort-process-list article::before {
    top:3px;
    left:0;
  }

  .escort-faq-head {
    grid-template-columns:1fr;
    gap:18px;
  }

  .escort-faq-head span,.escort-faq-head p {
    grid-column:auto;
    grid-row:auto;
  }

  .escort-faq-head p {
    padding-left:0;
    border-left:0;
  }

  .escort-faq-list {
    grid-template-columns:1fr;
  }

  .escort-format-stack h3 {
    font-size:25px;
  }

}

@media (max-width:640px) {
  .escort-editorial-page h2 {
    font-size:34px;
    line-height:1.08;
  }

  .escort-editorial-page p {
    font-size:16px;
    line-height:1.68;
  }

  .escort-editorial-open,.escort-editorial-chapter,.escort-fit-section,.escort-process-section,.escort-require-premium,.escort-dark-story,.escort-conditions-premium,.escort-privacy-premium,.escort-relocation-premium,.escort-warning-premium,.escort-faq-premium,.escort-final-premium {
    padding:68px 0;
  }

  .escort-open-action,.escort-process-cta {
    align-items:flex-start;
    flex-direction:column;
  }

  .escort-process-list article {
    padding:0 0 28px 38px;
  }

  .escort-process-list article:hover {
    transform:none;
  }

  .escort-subtle-line,.escort-require-rows div {
    grid-template-columns:1fr;
    gap:10px;
  }

  .escort-warning-premium-box,.escort-final-premium-box {
    padding:30px 24px;
  }

  .escort-relocation-premium h2 {
    font-size:32px;
  }

  .escort-faq-list summary {
    grid-template-columns:minmax(0,1fr) 24px;
    gap:12px;
    font-size:16px;
  }

  .escort-link-row {
    align-items:flex-start;
    flex-direction:column;
  }

  .escort-link-row a {
    width:100%;
  }

  .escort-format-table th,.escort-format-table td {
    padding:16px 14px;
  }

}
