/*
 * PHASE 2 SUPPLEMENTARY STYLES (Dark Glass - Design 04)
 * ---------------------------------------------------------------------------
 * Small, document additions layered on top of the approved dark-glass.css
 * (which is copied verbatim and UNMODIFIED). Only component- and page-level
 * refinements needed by the reusable PHP templates live here.
 *
 * All tokens reuse the approved CSS custom properties (--d04-*); no palette
 * values are introduced that are not already sourced from dark-glass.css.
 * ---------------------------------------------------------------------------
 */

/* Layout container reuse */
.d04 .container { width: min(1200px, 92%); margin-inline: auto; }
/* NOTE: dark-glass's .d04 .container sets padding:0 28px and outranks plain
   component rules (0,2,0 > 0,1,0). Every rule below that must offset a
   container-bearing element therefore uses .d04 + longhand padding so the
   container keeps its horizontal padding while its top/bottom wins. */

/* ---------- Fixed header offset (root cause fix) ----------
   The approved nav is position:fixed and sized in rem (font-based). The top
   offset is therefore declared in rem too, so it scales together with the
   header on zoomed/font-scaled displays and always clears it. */
.d04 {
  --d04-header-h: 4.5rem;
  --d04-header-gap: 5rem;
  --d04-header-offset: calc(var(--d04-header-h) + var(--d04-header-gap));
}
@media (max-width: 600px) {
  .d04 {
    --d04-header-h: 4.2rem;
    --d04-header-gap: 5rem;
  }
}

/* ---------- Top navigation ---------- */
.site-header { border-bottom: 1px solid var(--d04-line); background: rgba(11,16,32,.55); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 50; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.nav__brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand__name { font-weight: 600; letter-spacing: .5px; }
.nav__menu { display: flex; align-items: center; }
.nav__list { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav__link { display: block; padding: 8px 14px; border-radius: 999px; color: var(--d04-ink-soft); text-decoration: none; font-size: 15px; }
.nav__link:hover { color: var(--d04-ink); background: var(--d04-glass-2); }
.nav__link.is-active { color: var(--d04-ink); background: linear-gradient(135deg, rgba(143,163,255,.22), rgba(255,183,208,.16)); }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; }
.nav__toggle span { display: block; width: 22px; height: 2px; margin: 5px 0; background: var(--d04-ink); border-radius: 2px; }

/* ---------- Page heading ---------- */
.d04 .page-head { padding-top: var(--d04-header-offset); padding-bottom: 18px; }
.page-head__title { margin: 0 0 6px; font-weight: 600; letter-spacing: .5px; }
.page-head__sub { margin: 0; color: var(--d04-ink-dim); }

/* First section on pages without a page-head (article/profile-detail) clears
   the fixed site header. Higher specificity than .d04 .section so the offset
   is never overridden by the generic 56px section padding. */
.d04 .section.section--first { padding-top: var(--d04-header-offset); }

/* ---------- Generic sections ---------- */
.d04 .section { padding-top: 56px; padding-bottom: 56px; }
.grid { display: grid; gap: 20px; }
.profile-grid { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
.blog-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.contact-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.d04 .prose { max-width: none; margin-inline: auto; }
.prose h2 { margin-top: 28px; }
.prose h3 { margin-top: 20px; }
.prose img { width: 100%; border-radius: var(--d04-radius); margin: 12px 0; }

/* ---------- Profile / blog cards ---------- */
.card { background: var(--d04-glass); border: 1px solid var(--d04-line); border-radius: var(--d04-radius); overflow: hidden; box-shadow: var(--d04-shadow); display: flex; flex-direction: column; }
.card__media { position: relative; display: block; aspect-ratio: 3 / 4; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card__new {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #10142b;
  background: var(--d04-grad);
  border-radius: 999px;
}
.stats {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  max-width: 1120px;
}
.stat {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-auto-rows: auto;
  column-gap: 14px;
  row-gap: 2px;
  align-items: center;
  padding: 15px 18px;
  background: var(--d04-glass);
  border: 1px solid var(--d04-line);
  border-radius: 14px;
  box-shadow: var(--d04-shadow);
  transition: transform .25s ease, border-color .25s ease;
}
.stat:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 183, 208, .55);
}
.stat__coin {
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(255, 183, 208, .34), rgba(143, 163, 255, .22));
  border: 1px solid rgba(255, 255, 255, .24);
  box-shadow: 0 4px 12px -4px rgba(255, 183, 208, .5), inset 0 1px 0 rgba(255, 255, 255, .2);
}
.stat__coin::before {
  content: "";
  width: 8px; height: 8px;
  background: linear-gradient(135deg, #ffcfe0, #b9c4ff);
  transform: rotate(45deg);
  box-shadow: 0 0 8px rgba(255, 183, 208, .8);
}
.stat__num {
  grid-column: 2; grid-row: 1;
  margin: 0;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  background: linear-gradient(180deg, #ffffff 10%, #ffd3e0 115%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 6px rgba(255, 183, 208, .3));
}
.stat__num--sm { font-size: 1.02rem; }
.stat__label {
  grid-column: 2; grid-row: 2;
  margin: 0;
  color: var(--d04-ink-dim);
  font-size: .61rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.profile-detail__badge--verified {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border: 1px solid rgba(255, 183, 208, .35);
  border-radius: 999px;
  letter-spacing: .16em;
  color: var(--d04-accent);
}
.d04 .ribbon--verified {
  position: absolute; top: 50px; left: 14px; z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(11, 16, 32, .55);
  border: 1px solid rgba(255, 183, 208, .5);
  color: var(--d04-accent);
  box-shadow: none;
}
.d04 .ribbon--new {
  position: absolute; top: 50px; right: 14px; left: auto; z-index: 3;
  background: var(--d04-grad);
  color: #10142b;
  box-shadow: 0 6px 18px -6px rgba(255, 183, 208, .5);
}
.card__body { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__title { margin: 0; font-weight: 600; }
.card__sub { margin: 0; color: var(--d04-ink-dim); font-size: 15px; }
.card__link { margin-top: auto; }

/* Character table (profile detail) */
.char-table { width: 100%; border-collapse: collapse; }
.char-table th, .char-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--d04-line); }
.char-table th { color: var(--d04-ink-dim); width: 40%; font-weight: 500; }

/* Filters */
.filter-field { width: 100%; }

/* ---------- Contact form ---------- */
.form-grid { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: grid; gap: 6px; }
.form-field label { font-size: 14px; color: var(--d04-ink-soft); }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 10px 12px; border-radius: 12px; border: 1px solid var(--d04-line);
  background: var(--d04-glass-2); color: var(--d04-ink); font: inherit;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--d04-accent); }
.form-note { color: var(--d04-ink-dim); font-size: 14px; }
.form-msg { padding: 12px 14px; border-radius: 12px; }
.form-msg--ok   { background: rgba(120,200,150,.12); color: #b8e6c6; border: 1px solid rgba(120,200,150,.3); }
.form-msg--error{ background: rgba(255,120,120,.10); color: #ffc0c0; border: 1px solid rgba(255,120,120,.3); }
.hp-field { position: absolute !important; left: -9999px !important; height: 1px; width: 1px; overflow: hidden; }

/* ---------- Hero (Design 04 markup -> functional) ---------- */
.hero { padding: 72px 0; }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
@media (max-width: 820px) { .hero__grid { grid-template-columns: 1fr; } }
.hero__badge { margin-bottom: 14px; }
.hero__content { display: flex; flex-direction: column; width: 100%; }
.hero__title { margin: 0 0 14px; font-size: clamp(2rem, 4.5vw, 3rem); line-height: 1.15; font-weight: 600; }
.hero .lead { color: var(--d04-ink-soft); max-width: 54ch; margin: 0 0 22px; }
.hero__intro { margin: 0 0 24px; }
.hero__intro p {
  margin: 0 0 14px;
  color: var(--d04-ink-soft);
  font-size: 1.05rem;
  line-height: 1.75;
}
.hero__intro p:last-child { margin-bottom: 0; }
.hero__meta { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 18px; color: var(--d04-ink-dim); }
.hero__meta a { color: var(--d04-ink-soft); text-decoration: none; }
.hero__gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.hero__card { aspect-ratio: 3 / 4; border-radius: var(--d04-radius); overflow: hidden; border: 1px solid var(--d04-line); box-shadow: var(--d04-shadow); }
.hero__card img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Section titles ---------- */
.section__title { margin: 6px 0 24px; font-weight: 600; letter-spacing: .5px; }

/* ---------- Card media ratio variants ---------- */
.card__title a { color: inherit; text-decoration: none; }
.card__title a:hover { color: var(--d04-accent-2); }

/* ---------- Profile detail ---------- */
.profile-detail { display: grid; grid-template-columns: minmax(280px, 400px) 1fr; gap: 36px; align-items: start; }
@media (max-width: 760px) { .profile-detail { grid-template-columns: 1fr; } }
.profile-detail__media { border-radius: var(--d04-radius); overflow: hidden; border: 1px solid var(--d04-line); box-shadow: var(--d04-shadow); }
.profile-detail__media img { width: 100%; display: block; }
.profile-detail__name { margin: 0 0 6px; font-weight: 600; }
.profile-detail__sub { color: var(--d04-ink-dim); margin: 0 0 14px; }
.profile-detail__badge { display: inline-block; margin: 0 0 8px; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--d04-accent-2); }
.profile-detail__desc { color: var(--d04-ink-soft); }
.profile-detail__actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 18px 0; }

/* ============ PROFILE HERO (premium) ============ */
.profile-hero {
  display: grid;
  grid-template-columns: minmax(300px, 440px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}
.profile-hero__media {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--d04-line);
  box-shadow: var(--d04-shadow);
  background: var(--d04-glass);
}
.profile-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.profile-hero__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(6, 10, 24, .78));
  pointer-events: none;
}
.profile-hero__age {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.02rem;
  color: #fff;
  background: rgba(11, 16, 32, .6);
  border: 1px solid var(--d04-line);
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .04em;
}
.profile-hero__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.profile-hero__name {
  margin: 6px 0 8px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.12;
  background: linear-gradient(180deg, #ffffff 10%, #ffd3e0 115%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 10px rgba(255, 183, 208, .22));
}
.profile-hero__sub {
  margin: 0 0 16px;
  color: var(--d04-ink-soft);
  font-size: .95rem;
  letter-spacing: .03em;
}
.profile-hero__types {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.profile-hero__types li + li { margin-left: 22px; }
.profile-hero__types li + li::before {
  content: "\00b7";
  margin-right: 22px;
  color: var(--d04-ink-dim);
  font-weight: 400;
}
.profile-hero__types a {
  color: var(--d04-ink-dim);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color .2s ease;
}
.profile-hero__types a:hover { color: #fff; }
.profile-hero__trust {
  margin: 0 0 28px;
  color: var(--d04-ink-dim);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.profile-hero__trust.is-verified { color: var(--d04-accent); }
.profile-hero__bio {
  margin: 0 0 30px;
  max-width: 58ch;
}
.profile-hero__bio .eyebrow { margin-bottom: 10px; }
.profile-hero__bio-text {
  margin: 0;
  padding-left: 1.1rem;
  border-left: 1px solid var(--d04-line);
  color: var(--d04-ink-soft);
  font-size: .98rem;
  line-height: 1.9;
}
.profile-hero__desc {
  margin: 0 0 16px;
  color: var(--d04-ink-soft);
  max-width: 62ch;
  font-size: .98rem;
  line-height: 1.8;
}
.profile-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}
@media (max-width: 880px) {
  .profile-hero { grid-template-columns: 1fr; }
  .profile-hero__media { max-width: 420px; }
}

/* ============ PROFILE PAGE — QUIET LUXURY ============ */
.profile-page .section.container {
  padding-block: clamp(1.6rem, 3.2vw, 3.4rem);
}
.profile-page .section.section--first {
  padding-top: var(--d04-header-offset);
}
.profile-page .eyebrow {
  display: inline-flex;
  justify-content: flex-start;
  width: auto;
  margin-bottom: 12px;
}
.profile-page .eyebrow::before,
.profile-page .eyebrow::after {
  content: none;
}
.profile-page .section__title {
  margin: 0 0 clamp(1.6rem, 3vw, 2.6rem);
}

/* ---------- Hero · tighten the media gap for a calmer grid ---------- */
.profile-page .profile-hero {
  gap: clamp(30px, 5vw, 76px);
}

/* ---------- Profile spec columns (Essentials facts + Honoraria) ---------- */
.section--profile-spec .profile-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}
.profile-spec__col { min-width: 0; }
.profile-spec__heading {
  margin: 0 0 18px;
  color: var(--d04-ink-dim);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
}
.spec-list { display: flex; flex-direction: column; }
.spec-list__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--d04-line);
}
.spec-list__label {
  color: var(--d04-ink-dim);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  white-space: nowrap;
}
.spec-list__value {
  margin: 0;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.08rem;
  color: var(--d04-ink);
  text-align: right;
}
.spec-list__row--rate .spec-list__value {
  font-size: 1.28rem;
}
.profile-spec .profile-rates__fine {
  margin: 16px 0 0;
  color: var(--d04-ink-dim);
  font-size: .8rem;
  line-height: 1.8;
  letter-spacing: .02em;
}

@media (max-width: 860px) {
  .section--profile-spec .profile-spec {
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 5vw, 4rem);
  }
}

/* ---------- Profile hero — photo slider (in-place carousel) ---------- */
.hero-slider,
.hero-slider__stage {
  position: absolute;
  inset: 0;
}
.hero-slider__stage {
  overflow: hidden;
}
.hero-slider__stage .slider__track {
  display: flex;
  height: 100%;
  transform: translateX(0);
  transition: transform .55s cubic-bezier(.65, 0, .35, 1);
}
.hero-slider__stage .slider__slide {
  flex: 0 0 100%;
  min-width: 0;
  position: relative;
  margin: 0;
}
.hero-slider__stage .slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Arrows: subtle half-tone chips, vertically centred inside the portrait */
.profile-hero__media .slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  background: rgba(4, 6, 14, .32);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, opacity .2s ease;
}
.profile-hero__media .slider__arrow:hover { background: rgba(4, 6, 14, .6); border-color: #fff; }
.profile-hero__media .slider__arrow--prev { left: 12px; }
.profile-hero__media .slider__arrow--next { right: 12px; }
.profile-hero__media .slider__arrow.is-disabled { opacity: .25; pointer-events: none; }

/* Counter: quiet chip, top-right of the portrait */
.profile-hero__media .hero-slider__count {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: #fff;
  background: rgba(11, 16, 32, .55);
  border: 1px solid var(--d04-line);
  padding: 5px 10px;
  border-radius: 999px;
}

/* ---------- Companionship (services, editorial list) ---------- */
.section--companionship { text-align: center; }
.companionship-head { margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.companionship-head .eyebrow,
.companionship-head .section__title { justify-content: center; }

/* ---------- Reviews & vouches (placeholder) ---------- */
.section--reviews { text-align: center; }
.reviews-head { margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.reviews-head .eyebrow,
.reviews-head .section__title { justify-content: center; }
.reviews-empty {
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(30px, 6vw, 52px) 24px;
  border: 1px dashed var(--d04-line);
  border-radius: var(--d04-radius);
  background: var(--d04-glass);
}
.reviews-empty__mark {
  display: block;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--d04-accent);
  margin-bottom: 12px;
}
.reviews-empty__title { margin: 0 0 8px; font-size: 1.15rem; font-weight: 600; }
.reviews-empty__text {
  margin: 0 auto 24px;
  max-width: 42ch;
  color: var(--d04-ink-soft);
  line-height: 1.7;
  font-size: .95rem;
}

.reviews-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 34rem;
  text-align: left;
  border-top: 1px solid var(--d04-line);
}
.review {
  padding: 24px 6px;
  border-bottom: 1px solid var(--d04-line);
}
.review__stars { display: flex; gap: 6px; margin-bottom: 12px; }
.review__star { color: rgba(255, 255, 255, .2); font-size: .9rem; line-height: 1; }
.review__star.is-on { color: var(--d04-accent); }
.review__quote {
  margin: 0 0 14px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--d04-ink);
}
.review__meta { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px; }
.review__author {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--d04-ink-soft);
}
.review__date { font-size: .74rem; color: var(--d04-ink-dim); }

/* ---------- Review editor (Phase 9: logged-in submission) ---------- */
.review-flash {
  max-width: 34rem;
  margin: 0 auto 22px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--d04-radius);
  background: rgba(255, 255, 255, .05);
  color: var(--d04-ink-soft);
  font-size: .92rem;
  text-align: left;
}
.review-flash p { margin: 0; }
.review-flash.review-flash--ok { border-color: rgba(155, 187, 155, .35); }

.review-editor {
  max-width: 34rem;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding: clamp(24px, 4vw, 34px) 20px;
  border: 1px solid var(--d04-line);
  border-radius: var(--d04-radius);
  background: var(--d04-glass);
  text-align: left;
}
.review-editor .eyebrow,
.review-editor__title { justify-content: flex-start; }
.review-editor__title { margin: 0 0 8px; font-size: 1.15rem; font-weight: 600; }
.review-editor__guest,
.review-editor__pending {
  margin: 6px 0 0;
  color: var(--d04-ink-soft);
  line-height: 1.7;
  font-size: .95rem;
}
.review-editor__guest a,
.review-editor a { color: var(--d04-accent); }

.review-form { margin-top: 18px; }
.review-form__row { margin-bottom: 16px; }
.review-form__row > label,
.review-form__field > label {
  display: block;
  margin-bottom: 8px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--d04-ink-soft);
}
.review-form__stars { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.review-form__stars input { position: absolute; opacity: 0; pointer-events: none; }
.review-form__star {
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, .2);
  transition: color .15s ease;
}
.review-form__stars label:hover,
.review-form__stars label:hover ~ label,
.review-form__stars input:checked ~ label,
.review-form__stars input:focus-visible + label { color: var(--d04-accent); }
.review-form__field textarea {
  width: 100%;
  resize: vertical;
  min-height: 110px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: .95rem;
  line-height: 1.65;
  color: var(--d04-ink);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--d04-line);
  border-radius: var(--d04-radius);
}
.review-form__field textarea:focus { outline: none; border-color: var(--d04-accent); }
.review-form .btn { margin-top: 8px; }

/* ---------- Auth pages (Phase 9: login/register/account) ---------- */
.section--auth { display: flex; justify-content: center; }
.auth-card {
  width: 100%;
  max-width: 30rem;
  padding: clamp(26px, 5vw, 44px) clamp(20px, 5vw, 40px);
  border: 1px solid var(--d04-line);
  border-radius: calc(var(--d04-radius) * 1.4);
  background: var(--d04-glass);
  text-align: left;
}
.auth-card--wide { max-width: 36rem; }
.auth-card__title { margin: 4px 0 8px; font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 600; }
.auth-card__lede { margin: 0 0 20px; color: var(--d04-ink-soft); line-height: 1.7; font-size: .95rem; }
.auth-card__foot { margin: 20px 0 0; color: var(--d04-ink-soft); font-size: .92rem; }
.auth-card__foot a { color: var(--d04-accent); }
.auth-card__sub { margin: 30px 0 10px; font-size: 1.05rem; font-weight: 600; }
.auth-card__none { color: var(--d04-ink-soft); font-size: .95rem; line-height: 1.7; }
.auth-card__none a { color: var(--d04-accent); }

.auth-form { display: grid; gap: 16px; }
.auth-form--inline { display: block; margin-top: 26px; }
.auth-form__field > label {
  display: block;
  margin-bottom: 8px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--d04-ink-soft);
}
.auth-form__field input {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--d04-ink);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--d04-line);
  border-radius: var(--d04-radius);
}
.auth-form__field input:focus { outline: none; border-color: var(--d04-accent); }
.auth-form__submit { justify-self: start; }
.auth-form__trap { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.auth-alert {
  margin-bottom: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(230, 167, 128, .35);
  border-radius: var(--d04-radius);
  background: rgba(230, 167, 128, .07);
}
.auth-alert p { margin: 0 0 4px; color: var(--d04-ink-soft); font-size: .9rem; }
.auth-alert p:last-child { margin-bottom: 0; }
.auth-alert.auth-alert--ok { border-color: rgba(155, 187, 155, .35); }

.auth-detail { display: grid; gap: 10px; margin: 20px 0 0; }
.auth-detail__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--d04-line);
}
.auth-detail__row dt { font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--d04-ink-dim); }
.auth-detail__row dd { margin: 0; color: var(--d04-ink-soft); font-size: .95rem; }

/* Sign-in enhancements (Upgraded auth pages) */
.auth-wrap { width: min(100%, 30rem); display: grid; gap: 24px; justify-items: center; }
.auth-head { text-align: center; }
.auth-head .eyebrow { justify-content: center; font-size: 1rem; letter-spacing: .3em; margin-bottom: 18px; }
.auth-head .page-head__title { font-size: clamp(2rem, 4.6vw, 2.9rem); margin-bottom: 10px; }
.auth-head .page-head__sub { color: var(--d04-ink-soft); font-size: 1.02rem; line-height: 1.8; max-width: 500px; margin: 0 auto; }
.auth-card--signin {
  position: relative;
  padding: clamp(24px, 4.5vw, 38px) clamp(20px, 4.5vw, 40px);
  box-shadow: var(--d04-shadow);
  background: linear-gradient(160deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012));
  overflow: hidden;
}
.auth-card--signin::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--d04-accent), var(--d04-accent-2));
}
.auth-card--signin .auth-form__field { position: static; }
.auth-form__wrap { position: relative; display: block; }
.auth-form__ic {
  position: absolute;
  left: 14px; top: 50%;
  width: 18px; height: 18px;
  transform: translateY(-50%);
  color: var(--d04-ink-dim);
  pointer-events: none;
}
.auth-form__ic svg { width: 18px; height: 18px; display: block; }
.auth-card--signin .auth-form__wrap input { padding-left: 44px; }
.auth-card--signin .auth-form__submit { width: 100%; justify-self: stretch; padding: 13px 16px; }
.auth-form__note { margin: 0; font-size: .82rem; color: var(--d04-ink-dim); line-height: 1.6; }
.auth-card--signin .auth-card__foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--d04-line);
  text-align: center;
}
.auth-wrap .trustnet { margin-top: 0; }

.account-reviews { list-style: none; margin: 0; padding: 0; }
.account-review {
  padding: 16px 0;
  border-bottom: 1px solid var(--d04-line);
}
.account-review__top { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 8px; }
.account-review__target { color: var(--d04-accent); font-weight: 600; font-size: .98rem; }
.account-review__badge {
  flex-shrink: 0;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.account-review__badge.is-approved { border: 1px solid rgba(155, 187, 155, .45); color: var(--d04-ok, #9bb99b); }
.account-review__badge.is-pending { border: 1px solid rgba(230, 167, 128, .45); color: #e6a780; }
.account-review__stars { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.account-review__date { margin-left: auto; font-size: .74rem; color: var(--d04-ink-dim); }
.account-review__text { margin: 0; color: var(--d04-ink-soft); line-height: 1.65; font-size: .93rem; }

.companionship {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 34rem;
  text-align: left;
  border-top: 1px solid var(--d04-line);
}
.companionship__item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 17px 6px;
  border-bottom: 1px solid var(--d04-line);
}
.companionship__mark { color: var(--d04-accent); font-size: .72rem; opacity: .75; }
.companionship__name {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.1rem;
  color: var(--d04-ink);
}

/* ---------- Companionship (services, editorial list) ---------- */

/* ============ MORE COMPANIONS ============ */
.profile-more { margin: 0 auto; }

@media (max-width: 640px) {
  .profile-hero__actions .btn { width: 100%; justify-content: center; }
}

/* ---------- CTA / footer ---------- */
.cta { text-align: center; background: var(--d04-glass); border: 1px solid var(--d04-line); border-radius: var(--d04-radius); padding: 48px 24px; }
.cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Footer — Luxury Editorial redesign */
.d04 .site-footer--lux {
  padding: 0 0 34px;
  border-top: 1px solid var(--d04-line);
  background: linear-gradient(180deg, rgba(10,14,28,.5) 0%, rgba(5,8,18,.97) 100%);
}

/* Grid — flex, weighted columns, even gaps, no dead right edge */
.d04 .foot-grid {
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 48px;
  padding: 44px 0 46px;
}
.foot-col { min-width: 0; flex: 0 1 auto; }
.foot-brand { flex: 1 1 300px; max-width: 360px; }
.foot-brand .brand__name { font-size: 2.1rem; }
.foot-desc {
  margin: 16px 0 22px; max-width: 300px;
  font-family: "Playfair Display","Georgia",serif; font-style: italic;
  font-size: 1rem; line-height: 1.85; color: var(--d04-ink-soft);
}
.foot-meta { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 12px; }
.foot-meta li { display: flex; align-items: center; gap: 11px; color: var(--d04-ink-soft); font-size: .92rem; line-height: 1.5; }
.foot-meta .ci {
  flex: 0 0 26px; width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--d04-line);
  color: var(--d04-accent); background: transparent;
}
.foot-meta a { color: var(--d04-ink-soft); text-decoration: none; }
.foot-meta a:hover { color: #fff; }
.foot-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--d04-grad); color: #0b1020; font-weight: 600; font-size: .9rem;
  padding: .72em 1.6em; border-radius: 999px; text-decoration: none;
  box-shadow: 0 12px 30px -14px rgba(143,163,255,.6);
}
.foot-wa:hover { color: #0b1020; filter: brightness(1.08); }
.foot-head {
  position: relative; margin: 0 0 22px; padding-bottom: 14px;
  font-family: "Playfair Display","Georgia",serif;
  font-size: .96rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--d04-ink);
}
.foot-head::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 28px; height: 2px; border-radius: 2px;
  background: var(--d04-grad);
}
.foot-list { list-style: none; margin: 0; padding: 0; }
.foot-list li { margin: 0 0 4px; }
.foot-list a {
  position: relative; display: inline-block;
  color: var(--d04-ink-soft); text-decoration: none;
  font-size: .95rem; line-height: 1.8;
  transition: color .2s ease, letter-spacing .25s ease;
}
.foot-list a::after {
  content: ""; position: absolute; left: 0; bottom: 2px;
  width: 0; height: 1px; background: var(--d04-accent);
  transition: width .25s ease;
}
.foot-list a:hover { color: #fff; letter-spacing: .03em; }
.foot-list a:hover::after { width: 100%; }

/* Bottom bar */
.foot-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--d04-line);
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  color: var(--d04-ink-dim); font-size: .86rem;
}
.foot-bottom p { margin: 0; }
.foot-copy { font-family: "Playfair Display","Georgia",serif; letter-spacing: .03em; }
.foot-copy a { color: var(--d04-ink-soft); }
.foot-copy a:hover { color: #fff; }
.foot-legal { display: flex; }
.foot-legal a { padding: 0 18px; border-right: 1px solid var(--d04-line); color: var(--d04-ink-dim); text-decoration: none; }
.foot-legal a:first-child { padding-left: 0; }
.foot-legal a:last-child { border-right: 0; padding-right: 0; }
.foot-legal a:hover { color: #fff; }

/* Payment icons */
.foot-pay { display: flex; align-items: center; gap: 14px; }
.foot-pay__label {
  font-family: "Playfair Display","Georgia",serif;
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--d04-ink-dim); white-space: nowrap;
}
.foot-pay__icons { display: flex; align-items: center; gap: 8px; }
.foot-pay__chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 28px; padding: 4px;
  border: 1px solid var(--d04-line); border-radius: 7px;
  background: rgba(255,255,255,.03);
  color: #8a93b0;
  transition: color .25s ease, border-color .25s ease, transform .25s ease;
}
.foot-pay__chip svg { width: 20px; height: 20px; display: block; }
.foot-pay__chip:hover { transform: translateY(-1px); color: #eef1ff; }
.foot-pay__chip--mc:hover  { color: #eb001b; border-color: rgba(235,0,27,.55); }
.foot-pay__chip--visa:hover{ color: #1a1f71; border-color: rgba(26,31,113,.55); }
.foot-pay__chip--btc:hover  { color: #f7931a; border-color: rgba(247,147,26,.55); }
.foot-pay__chip--eth:hover  { color: #627eea; border-color: rgba(98,126,234,.55); }
.foot-pay__chip--ap:hover   { color: #eef1ff; border-color: rgba(238,241,255,.55); }
@media (max-width: 900px) {
  .d04 .foot-grid { justify-content: flex-start; gap: 36px 40px; }
  .d04 .foot-grid .foot-brand { flex-basis: 100%; max-width: none; }
  .foot-col { flex: 1 1 30%; }
  .foot-desc { max-width: none; }
}
@media (max-width: 600px) {
  .d04 .foot-grid { gap: 32px; }
  .foot-col { flex: 1 1 100%; }
  .foot-legal { flex-wrap: wrap; justify-content: center; width: 100%; row-gap: 4px; }
  .foot-legal a { padding: 4px 12px; border-right: 0; }
  .foot-pay { width: 100%; justify-content: center; flex-wrap: wrap; }
}

/* ---------- Responsive nav ---------- */
@media (max-width: 820px) {
  .nav__toggle { display: block; }
  /* Fully override the dark-glass right-anchored dropdown so the open panel
     spans the header width and never overflows the right edge (left:0 from
     php-app + min-width:230px from dark-glass pushed it off-screen). The
     .d04 .nav__menu is neutralised so the panel anchors to the .site-header. */
  .d04 .nav__menu { position: static; }
  .d04 .nav__list {
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 10px 0;
    display: none;
    visibility: visible;
    opacity: 1;
    transform: none;
    background: rgba(11, 16, 32, .97);
    border: 0;
    border-bottom: 1px solid var(--d04-line);
    border-radius: 0;
    box-shadow: none;
  }
  .d04 .nav__list.is-open { display: flex; }
  .nav__link { padding: 12px 20px; border-radius: 0; }
}

/* ---------- Centered section headers & hero copy ---------- */
.section .eyebrow { display: flex; justify-content: center; width: 100%; }
.section__title { text-align: center; }
.hero__content { align-items: center; text-align: center; }
.hero .lead { margin-left: auto; margin-right: auto; }

/* ---------- Headings above paragraphs match the Directory heading style ---------- */
.prose h2,
.prose h3 {
  font-weight: 600;
  letter-spacing: .5px;
}
.prose h3 { text-align: center; }
.d04 .seo-copy { padding-top: 160px; }

/* ---------- FAQ accordion ---------- */
.faq-section > .eyebrow { font-size: 1rem; letter-spacing: .3em; margin-bottom: 18px; }
.faq-section > .eyebrow::before,
.faq-section > .eyebrow::after { width: 40px; }
.faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: var(--d04-glass);
  border: 1px solid var(--d04-line);
  border-radius: var(--d04-radius);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq__item.is-open { border-color: var(--d04-accent); }
.faq__q {
  width: 100%; display: flex; align-items: center; gap: 14px;
  text-align: left; background: none; border: 0; padding: 18px 20px;
  cursor: pointer; color: var(--d04-ink); font: inherit;
}
.faq__q:hover { background: rgba(255, 255, 255, .04); }
.faq__label {
  flex: 0 0 auto;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: .68rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase;
  color: var(--d04-accent);
}
.faq__title { flex: 1 1 auto; font-weight: 600; }
.faq__icon { flex: 0 0 auto; position: relative; width: 18px; height: 18px; }
.faq__icon::before,
.faq__icon::after { content: ""; position: absolute; background: var(--d04-accent); }
.faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; border-radius: 1px; }
.faq__icon::after { top: 0; left: 8px; width: 2px; height: 18px; border-radius: 1px; }
.faq__item.is-open .faq__icon::after { display: none; }
.faq__a { display: none; padding: 0 20px 18px; }
.faq__item.is-open .faq__a { display: block; }
.faq__a p { margin: 0; color: var(--d04-ink-soft); line-height: 1.7; }

/* ---------- Pagination ---------- */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; }
.pagination__btn,
.pagination__num {
  display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px;
  padding: 0 14px; border-radius: 10px; border: 1px solid var(--d04-line);
  background: var(--d04-glass); color: var(--d04-ink-soft); text-decoration: none;
  font-weight: 500; transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.pagination__btn:hover,
.pagination__num:hover { background: var(--d04-glass-2); color: #fff; }
.pagination__num.is-current { background: var(--d04-accent); border-color: var(--d04-accent); color: #fff; }

/* ---------- Blog horizontal cards ---------- */
.blog-list { display: flex; flex-direction: column; gap: 28px; max-width: 1120px; margin: 0 auto; }
.insights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}
.insights .hcard { display: flex; flex-direction: column; }
.insights .hcard__media { aspect-ratio: 16 / 10; min-height: 0; }
.insights .hcard__media img { position: static; }
.insights .hcard__body { padding: 24px; }
.insights .hcard__title { font-size: 1.12rem; }
.hcard {
  display: grid; grid-template-columns: 380px minmax(0, 1fr);
  background: var(--d04-glass); border: 1px solid var(--d04-line);
  border-radius: var(--d04-radius); overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.hcard:hover { transform: translateY(-4px); border-color: rgba(143, 163, 255, .5); }
.hcard__media { position: relative; display: block; min-height: 100%; }
.hcard__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.hcard__body { padding: 28px 30px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.hcard__meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 0; color: var(--d04-ink-dim); font-size: .85rem; }
.hcard__meta time { letter-spacing: .04em; }
.hcard__tag {
  font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--d04-accent); border: 1px solid var(--d04-line); border-radius: 999px; padding: 4px 12px;
}
.hcard__title { margin: 0; font-size: 1.35rem; line-height: 1.35; font-weight: 600; }
.hcard__link { color: var(--d04-ink); text-decoration: none; transition: color .2s ease; }
.hcard__link:hover { color: var(--d04-accent-2); }
.hcard__excerpt { margin: 0; color: var(--d04-ink-soft); line-height: 1.7; max-width: 62ch; }
.hcard__cta { margin-top: 4px; }
@media (max-width: 860px) {
  .hcard { grid-template-columns: 1fr; }
  .hcard__media { aspect-ratio: 16 / 10; min-height: 0; }
}

/* ---------- Service index ---------- */
.service-head { text-align: center; max-width: 860px; }
.service-head .eyebrow { justify-content: center; font-size: 1rem; letter-spacing: .3em; margin-bottom: 20px; }
.service-head .page-head__title { font-size: clamp(2.2rem, 4.6vw, 3.2rem); margin-bottom: 14px; }
.service-head .page-head__sub { color: var(--d04-ink-soft); font-size: 1.1rem; line-height: 1.8; max-width: 680px; margin: 0 auto; }

.service-grid { align-items: stretch; }
.service-card { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.service-card__icon {
  width: 46px; height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 13px;
  color: var(--d04-accent);
  background: linear-gradient(160deg, rgba(143, 163, 255, .18), rgba(255, 183, 208, .1));
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}
.service-card__icon svg { width: 24px; height: 24px; display: block; }
.service-card .cat-card__num { margin-bottom: 14px; }
.service-card p { margin-top: 8px; line-height: 1.7; }

.service-cta p { color: var(--d04-ink-soft); margin: 14px auto 26px; max-width: 560px; font-size: 1.02rem; }

/* ---------- Contact page ---------- */
.contact-head { text-align: center; max-width: 860px; }
.contact-head .eyebrow { justify-content: center; font-size: 1rem; letter-spacing: .3em; margin-bottom: 20px; }
.contact-head .page-head__title { font-size: clamp(2.2rem, 4.6vw, 3.2rem); margin-bottom: 14px; }
.contact-head .page-head__sub { color: var(--d04-ink-soft); font-size: 1.1rem; line-height: 1.8; max-width: 680px; margin: 0 auto; }

.quick-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}
.quick-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 26px 24px;
  border-radius: var(--d04-radius);
  border: 1px solid var(--d04-line);
  background: linear-gradient(160deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .01));
  box-shadow: var(--d04-shadow);
  text-decoration: none;
  transition: transform .25s ease, border-color .25s ease;
}
.quick-card:hover { transform: translateY(-4px); border-color: rgba(143, 163, 255, .5); }
.quick-card__icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 13px;
  color: var(--d04-accent);
  background: linear-gradient(160deg, rgba(143, 163, 255, .18), rgba(255, 183, 208, .1));
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}
.quick-card__icon svg { width: 22px; height: 22px; display: block; }
.quick-card__icon--wa { color: #7ce096; background: linear-gradient(160deg, rgba(124, 224, 150, .16), rgba(124, 224, 150, .05)); }
.quick-card__icon--wa svg { width: 20px; height: 20px; }
.quick-card__label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--d04-ink-dim);
}
.quick-card__value { font-size: 1.08rem; font-weight: 600; color: var(--d04-ink); word-break: break-all; }
.quick-card__hint { font-size: .85rem; color: var(--d04-ink-soft); margin-top: 2px; }

.contact-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}
.info-panel,
.form-panel {
  padding: 30px;
  border-radius: var(--d04-radius);
  border: 1px solid var(--d04-line);
  background: linear-gradient(160deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .012));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.info-panel__title { margin: 0 0 8px; font-size: 1.3rem; }
.info-panel__lede { margin: 0 0 18px; color: var(--d04-ink-soft); line-height: 1.7; }
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.info-list__item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--d04-line);
  border-radius: 13px;
}
.info-list__item b {
  display: block;
  margin-bottom: 1px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--d04-ink-dim);
}
.info-list__item span:last-child { color: var(--d04-ink-soft); font-size: .95rem; line-height: 1.5; }
.info-list__icon {
  flex: 0 0 auto;
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  color: var(--d04-accent);
  background: linear-gradient(160deg, rgba(143, 163, 255, .18), rgba(255, 183, 208, .1));
  border: 1px solid rgba(255, 255, 255, .16);
}
.info-list__icon svg { width: 19px; height: 19px; display: block; }
.info-panel .trustnet { margin-top: 18px; justify-content: flex-start; }
.form-panel .form-msg { margin-bottom: 14px; }
.form-panel .form-grid { margin-top: 4px; }
@media (max-width: 980px) {
  .contact-split { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .quick-row { grid-template-columns: 1fr; }
  .info-panel, .form-panel { padding: 24px 20px; }
}

/* ---------- Blog index ---------- */
.blog-head { text-align: center; max-width: 860px; }
.blog-head .eyebrow { justify-content: center; font-size: 1rem; letter-spacing: .3em; margin-bottom: 20px; }
.blog-head .page-head__title { font-size: clamp(2.2rem, 4.6vw, 3.2rem); margin-bottom: 14px; }
.blog-head .page-head__sub { color: var(--d04-ink-soft); font-size: 1.1rem; line-height: 1.8; max-width: 680px; margin: 0 auto; }

/* ---------- Blog (journal editorial) ---------- */
.journal-head { text-align: center; max-width: 860px; }
.journal-head .eyebrow { justify-content: center; font-size: 1rem; letter-spacing: .3em; margin-bottom: 20px; }
.journal-head .page-head__title {
  font-family: "Playfair Display", "Inter", Georgia, serif;
  font-size: clamp(2.2rem, 4.6vw, 3.2rem); margin-bottom: 14px;
}
.journal-head .page-head__sub { color: var(--d04-ink-soft); font-size: 1.1rem; line-height: 1.8; max-width: 680px; margin: 0 auto; }

.journal { list-style: none; max-width: 940px; margin: 0 auto; padding: 0; }
.journal__row { border-top: 1px solid var(--d04-line); }
.journal__row:last-child { border-bottom: 1px solid var(--d04-line); }
.journal__link {
  display: grid; grid-template-columns: 132px minmax(0, 1fr) 40px; gap: 24px; align-items: center;
  padding: 30px 14px; text-decoration: none; color: inherit;
  transition: background .25s ease, padding .25s ease;
}
.journal__link:hover { background: rgba(143, 163, 255, .04); padding-left: 20px; padding-right: 20px; }
.journal__date {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: .72rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--d04-ink-dim);
}
.journal__flag {
  display: inline-block; margin-top: 8px; padding: 4px 9px; border-radius: 999px;
  font-size: .58rem; letter-spacing: .22em; font-weight: 600;
  color: #0b1020; background: linear-gradient(90deg, #8fa3ff, #ffb7d0);
}
.journal__text { display: flex; flex-direction: column; gap: 8px; }
.journal__title {
  margin: 0; font-family: "Playfair Display", "Inter", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; line-height: 1.32;
  color: var(--d04-ink); transition: color .25s ease;
}
.journal__link:hover .journal__title { color: var(--d04-accent-2); }
.journal__excerpt {
  margin: 0; color: var(--d04-ink-dim); font-size: .92rem; line-height: 1.75; max-width: 66ch;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.journal__arrow {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 1.05rem; color: var(--d04-accent); justify-self: end;
  opacity: 0; transform: translateX(-8px); transition: opacity .25s ease, transform .25s ease;
}
.journal__link:hover .journal__arrow { opacity: 1; transform: translateX(0); }
@media (max-width: 640px) {
  .journal__link { grid-template-columns: 1fr; gap: 10px; padding: 26px 6px; }
  .journal__link:hover { padding-left: 6px; padding-right: 6px; }
  .journal__date { font-size: .66rem; }
  .journal__arrow { display: none; }
}

/* ---------- Blog post (editorial article) ---------- */
.post { max-width: 880px; margin: 0 auto; }
.post__head { text-align: center; margin-bottom: 38px; }
.post__head .eyebrow { justify-content: center; font-size: 1rem; letter-spacing: .3em; margin-bottom: 20px; }
.post__title {
  margin: 0 0 20px; letter-spacing: 0; font-weight: 600;
  font-family: "Playfair Display", "Inter", Georgia, serif;
  font-size: clamp(1.85rem, 4.2vw, 2.9rem); line-height: 1.18;
}
.post__meta {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 11px;
  margin: 0 0 24px; color: var(--d04-ink-dim); font-size: .78rem;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  letter-spacing: .16em; text-transform: uppercase;
}
.post__meta__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--d04-accent); opacity: .85; }
.post__meta__cat { color: var(--d04-accent-2); }
.post__rule {
  display: block; width: 72px; height: 2px; margin: 0 auto; border-radius: 2px;
  background: linear-gradient(90deg, var(--d04-accent), var(--d04-accent-2));
}
.post__figure {
  margin: 0 0 38px; aspect-ratio: 21 / 9; overflow: hidden;
  border: 1px solid var(--d04-line); border-radius: var(--d04-radius); box-shadow: var(--d04-shadow);
}
.post__figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post__body, .post__foot { max-width: 72ch; margin-inline: auto; }
.post__body p { margin: 0 0 22px; color: var(--d04-ink-soft); font-size: 1.06rem; line-height: 1.85; }
.post__body > p:first-child::first-letter {
  font-family: "Playfair Display", Georgia, serif; font-size: 3.4rem; font-weight: 600;
  line-height: .9; float: left; margin: .08em .12em 0 0; color: var(--d04-accent-2);
}
.post__body h2 {
  margin: 46px 0 16px; font-weight: 600; letter-spacing: 0;
  font-family: "Playfair Display", "Inter", Georgia, serif;
  font-size: clamp(1.4rem, 2.4vw, 1.75rem); line-height: 1.3; color: var(--d04-ink);
}
.post__body h2::before {
  content: ""; display: block; width: 46px; height: 2px; margin: 0 0 18px; border-radius: 2px;
  background: linear-gradient(90deg, var(--d04-accent), var(--d04-accent-2));
}
.post__body h3 {
  margin: 36px 0 14px; font-weight: 600; letter-spacing: 0;
  font-family: "Playfair Display", "Inter", Georgia, serif;
  font-size: 1.24rem; line-height: 1.35; color: var(--d04-ink);
}
.post__body h3::before, .post__body h3::after {
  content: "✦"; display: inline-block; font-size: .72rem; vertical-align: 2px; color: var(--d04-accent); opacity: .9;
}
.post__body h3::before { margin-right: 12px; }
.post__body h3::after { margin-left: 12px; }
.post__body img { width: 100%; border-radius: var(--d04-radius); margin: 24px 0; }
.post__body a { color: var(--d04-accent); }
.post__body a:hover { color: var(--d04-accent-2); }
.post__body ul, .post__body ol { margin: 0 0 22px; padding-left: 1.4em; color: var(--d04-ink-soft); line-height: 1.8; }
.post__body li { margin-bottom: 8px; }
.post__body strong { color: var(--d04-ink); font-weight: 600; }
.post__body blockquote {
  margin: 32px 0; padding: 6px 0 6px 26px; border-left: 2px solid var(--d04-accent);
  color: var(--d04-ink-soft); font-style: italic; font-size: 1.14rem; line-height: 1.7;
}
.post__foot {
  margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--d04-line);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
}
.post__back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--d04-accent);
}
.post__back span { display: inline-block; transition: transform .25s ease; }
.post__back:hover { color: var(--d04-accent-2); }
.post__back:hover span { transform: translateX(-4px); }
.post__ind { font-size: .78rem; color: var(--d04-ink-dim); letter-spacing: .08em; }
@media (max-width: 640px) {
  .post__figure { aspect-ratio: 16 / 9; }
  .post__body p { font-size: 1rem; }
  .post__ind { display: none; }
}

/* ---------- Blog post table of contents (inline) ---------- */
.toc--inline {
  max-width: 72ch;
  margin: 0 auto 42px;
  border: 1px solid var(--d04-line);
  border-radius: 18px;
  background: var(--d04-glass);
  padding: 22px 24px 18px;
}
.toc__label {
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 12px; font-size: .7rem; font-weight: 600;
  letter-spacing: .24em; text-transform: uppercase; color: var(--d04-ink-dim);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}
.toc__label::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--d04-accent), transparent);
}
.toc__list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px; row-gap: 4px;
}
.toc__item--l3 { padding-left: 16px; }
.toc__link {
  display: flex; align-items: baseline; gap: 9px;
  padding: 7px 8px; border-radius: 8px;
  font-size: .9rem; line-height: 1.5; color: var(--d04-ink-soft);
  text-decoration: none; transition: color .2s ease, background .2s ease;
}
.toc__link:hover { color: var(--d04-accent-2); background: rgba(143, 163, 255, .06); }
.toc__num {
  flex: none; font-size: .74rem; font-weight: 600; letter-spacing: .06em;
  color: var(--d04-accent); opacity: .85;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
.post__body h2, .post__body h3 { scroll-margin-top: calc(var(--d04-header-offset) + 28px); }

/* ---------- Continue reading ---------- */
.post-more { max-width: 900px; margin: 0 auto; text-align: center; padding-top: 64px; }
.post-more .eyebrow { justify-content: center; font-size: .82rem; letter-spacing: .22em; margin-bottom: 12px; }
.post-more .journal { text-align: left; margin-top: 30px; }
@media (max-width: 640px) {
  .toc--inline .toc__list { grid-template-columns: 1fr; }
  .post-more { padding-top: 44px; }
}

/* ---------- Careers page ---------- */
.careers-head { text-align: center; max-width: 860px; }
.careers-head .eyebrow { justify-content: center; font-size: .9rem; letter-spacing: .28em; margin-bottom: 18px; }
.sec-head .section__lede { margin: 14px auto 0; max-width: 640px; color: var(--d04-ink-dim); font-size: .98rem; line-height: 1.7; }
.jobs { list-style: none; margin: 44px auto 0; padding: 0; max-width: 900px; }
.jobs__row {
  display: flex; align-items: flex-start; gap: 22px;
  padding: 24px 6px; border-bottom: 1px solid var(--d04-line);
}
.jobs__row:first-child { border-top: 1px solid var(--d04-line); }
.jobs__no {
  flex: none; width: 44px; line-height: 1;
  font-family: "Playfair Display", "Inter", Georgia, serif;
  font-size: 1.15rem; font-weight: 600; color: var(--d04-accent); opacity: .85;
}
.jobs__body { flex: 1; min-width: 0; }
.jobs__title { margin: 0 0 8px; font-family: "Playfair Display", "Inter", Georgia, serif; font-size: 1.3rem; font-weight: 600; letter-spacing: 0; color: var(--d04-ink); display: flex; align-items: center; flex-wrap: wrap; gap: 12px; }
.jobs__tag {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: .62rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  color: var(--d04-ink-dim); border: 1px solid var(--d04-line); background: rgba(143, 163, 255, .05);
}
.jobs__desc { margin: 0; color: var(--d04-ink-soft); font-size: .98rem; line-height: 1.75; }
.jobs__apply {
  flex: none; margin-top: 4px; text-decoration: none;
  font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--d04-accent); font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  white-space: nowrap;
}
.jobs__apply span { display: inline-block; margin-left: 6px; transition: transform .25s ease; }
.jobs__apply:hover { color: var(--d04-accent-2); }
.jobs__apply:hover span { transform: translateX(4px); }

.reasons { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; margin-top: 40px; }
.reason {
  border: 1px solid var(--d04-line); border-radius: var(--d04-radius);
  background: var(--d04-glass); padding: 26px 24px;
}
.reason__emblem { display: inline-flex; width: 42px; height: 42px; border-radius: 12px; align-items: center; justify-content: center; color: var(--d04-accent); background: rgba(143, 163, 255, .08); margin-bottom: 16px; }
.reason__emblem svg { width: 22px; height: 22px; }
.reason__title { margin: 0 0 8px; font-family: "Playfair Display", "Inter", Georgia, serif; font-size: 1.08rem; font-weight: 600; letter-spacing: 0; color: var(--d04-ink); }
.reason__text { margin: 0; color: var(--d04-ink-soft); font-size: .94rem; line-height: 1.7; }

.careers-cta {
  max-width: 760px; margin: 0 auto; text-align: center;
  border: 1px solid var(--d04-line); border-radius: 24px;
  background: var(--d04-glass); padding: 44px 32px;
}
.careers-cta .eyebrow { justify-content: center; }
.careers-cta__title { margin: 0 0 12px; font-family: "Playfair Display", "Inter", Georgia, serif; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; letter-spacing: 0; }
.careers-cta__text { margin: 0 auto 24px; max-width: 560px; color: var(--d04-ink-soft); line-height: 1.75; }
.careers-cta__actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.careers-cta__note { margin: 18px 0 0; color: var(--d04-ink-dim); font-size: .82rem; }
@media (max-width: 640px) {
  .jobs__row { flex-wrap: wrap; gap: 12px; }
  .jobs__apply { margin-left: 66px; }
  .careers-cta { padding: 32px 20px; }
}

/* ---------- About page ---------- */
.about-head { text-align: center; max-width: 860px; }
.about-head .eyebrow { justify-content: center; font-size: 1rem; letter-spacing: .3em; margin-bottom: 20px; }
.about-head .page-head__title { font-size: clamp(2.2rem, 4.6vw, 3.2rem); margin-bottom: 14px; }
.about-head .page-head__sub { color: var(--d04-ink-soft); font-size: 1.1rem; line-height: 1.8; max-width: 680px; margin: 0 auto; }
.about-head__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}
.about-head__actions .btn { min-width: 200px; }

.about-prose p { margin: 0 0 24px; }
.about-drop { text-align: justify; }
.about-drop__cap {
  float: left;
  font-family: "Playfair Display", "Georgia", serif;
  font-style: italic;
  font-size: 3.4rem;
  line-height: .82;
  padding: .18em .18em 0 0;
  color: var(--d04-accent);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr);
  gap: clamp(3rem, 6vw, 5.5rem);
  align-items: start;
}
.about-story .section__title { margin: 0 0 clamp(1.4rem, 3vw, 2rem); }
.about-ledger {
  position: sticky;
  top: calc(var(--d04-nav-h) + 28px);
  padding: 28px 26px 30px;
  background: var(--d04-glass);
  border: 1px solid var(--d04-line);
  border-radius: var(--d04-radius);
  box-shadow: var(--d04-shadow);
  overflow: hidden;
}
.about-ledger::before {
  content: "";
  position: absolute;
  top: -34px; right: -34px;
  width: 170px; height: 170px;
  background: radial-gradient(closest-side, rgba(143, 163, 255, .18), transparent 72%);
  pointer-events: none;
}
.about-ledger__seal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  margin-bottom: 20px;
  border-radius: 50%;
  font-family: "Playfair Display", "Georgia", serif;
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f6efff;
  background: linear-gradient(160deg, rgba(143, 163, 255, .34), rgba(255, 183, 208, .22));
  border: 1px solid rgba(255, 255, 255, .24);
  box-shadow: 0 12px 30px -10px rgba(143, 163, 255, .55), inset 0 1px 0 rgba(255, 255, 255, .2);
}
.about-ledger__title {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: .72rem; font-weight: 600; letter-spacing: .26em;
  text-transform: uppercase; color: var(--d04-accent);
  margin: 0 0 18px;
}
.about-facts {
  display: flex;
  flex-direction: column;
}
.about-facts__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--d04-line);
}
.about-facts__row:first-child { padding-top: 2px; }
.about-facts__row:last-child { border-bottom: 0; }
.about-facts__label { font-size: .88rem; color: var(--d04-ink-soft); }
.about-facts__value {
  font-weight: 600;
  font-size: .9rem;
  color: var(--d04-ink);
  text-align: right;
}
.about-ledger .btn--block { margin-top: 22px; }
@media (max-width: 960px) {
  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-ledger { position: static; }
  .about-drop__cap { font-size: 2.8rem; }
}

.pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: 0 auto;
}
.pillar {
  position: relative;
  padding: clamp(28px, 4vw, 40px);
  background: var(--d04-glass);
  border: 1px solid var(--d04-line);
  border-radius: var(--d04-radius);
  box-shadow: var(--d04-shadow);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.pillar::after {
  content: "";
  position: absolute;
  top: -24px; left: -24px;
  width: 170px; height: 170px;
  background: radial-gradient(closest-side, rgba(143, 163, 255, .13), transparent 72%);
  pointer-events: none;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 183, 208, .55);
}
.pillar__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  margin-bottom: 20px;
  border-radius: 13px;
  color: var(--d04-accent);
  background: linear-gradient(160deg, rgba(143, 163, 255, .2), rgba(255, 183, 208, .12));
  border: 1px solid rgba(255, 255, 255, .16);
}
.pillar__icon svg { width: 21px; height: 21px; }
.pillar__num {
  position: absolute;
  top: 24px; right: 26px;
  font-family: "Playfair Display", "Georgia", serif;
  font-style: italic; font-size: 1rem; color: var(--d04-accent);
  opacity: .85;
}
.pillar__title { position: relative; margin: 0 0 10px; font-size: 1.15rem; font-weight: 600; }
.pillar__text { position: relative; margin: 0; color: var(--d04-ink-soft); line-height: 1.7; font-size: .95rem; }
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr; }
}

.steps-band .section__title { margin-bottom: clamp(1.8rem, 3vw, 2.4rem); }

/* ---------- Profiles gallery ---------- */
.gallery-head { text-align: center; max-width: 860px; }
.gallery-head .eyebrow { justify-content: center; font-size: 1rem; letter-spacing: .3em; margin-bottom: 20px; }
.gallery-head .page-head__title { font-size: clamp(2.2rem, 4.6vw, 3.2rem); margin-bottom: 14px; }
.gallery-head .page-head__sub { color: var(--d04-ink-soft); font-size: 1.1rem; line-height: 1.8; max-width: 680px; margin: 0 auto; }

.filter-field--actions { flex: 0 1 auto; min-width: 200px; }
.filter-actions {
  display: flex;
  gap: 10px;
}
.filter-actions .btn { flex: 1; white-space: nowrap; }

.gallery-results { text-align: center; margin: 46px 0 8px; }
.gallery-results .eyebrow { justify-content: center; font-size: .82rem; letter-spacing: .22em; margin-bottom: 12px; }
.gallery-results .section__title { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }

/* ============ BRAND MARQUEE ============ */
.marquee {
  --marquee-accent: #ffb7d0;
  --marquee-duration: 30s;

  position: relative;
  overflow: hidden;
  padding: 34px 0 38px;
  background: transparent;
  color: rgba(255, 255, 255, .82);
}
/* Editorial label above the ribbon */
.marquee__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 28px;
  font-family: Inter, Arial, sans-serif;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(185, 193, 226, .75);
}
.marquee__rule {
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 208, .55));
}
.marquee__rule--flip {
  background: linear-gradient(270deg, transparent, rgba(143, 163, 255, .55));
}
.marquee__inner,
.marquee__group {
  display: flex;
  align-items: center;
  width: max-content;
}
.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: marquee-scroll var(--marquee-duration) linear infinite;
}
@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.marquee__brand {
  display: block;
  height: 44px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .35));
  transition: filter .3s ease, transform .25s ease;
}
.marquee__brand:hover {
  filter: drop-shadow(0 6px 16px rgba(143, 163, 255, .35)) brightness(1.12);
  transform: translateY(-3px);
}
.marquee__sep {
  position: relative;
  margin: 0 34px;
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(255,183,208,0), rgba(255,183,208,.85),
    rgba(143,163,255,.85), rgba(143,163,255,0));
}
.marquee__sep::after {
  content: "◆";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8px;
  line-height: 1;
  color: var(--marquee-accent);
  text-shadow: 0 0 8px rgba(255, 183, 208, .85);
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track {
  animation-play-state: paused;
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 130px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg,  var(--d04-bg, transparent), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--d04-bg, transparent), transparent); }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ============ PRE-FLIGHT ITINERARY MARQUEE ============ */
/* Rolling band of upcoming destinations (cities + dates) for clients who
   book ahead. Rendered server-side with a duplicated aria-hidden clone so
   the -50% loop is seamless and works without any JavaScript. */
.itinerary {
  --itinerary-accent: #b9c4ff;
  position: relative;
  overflow: hidden;
  padding: 36px 0 40px;
  color: rgba(255, 255, 255, .85);
}
.itinerary__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 30px;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: rgba(185, 193, 226, .78);
}
.itinerary__rule {
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 183, 208, .55));
}
.itinerary__rule--flip {
  background: linear-gradient(270deg, transparent, rgba(143, 163, 255, .55));
}
.itinerary__inner,
.itinerary__group {
  display: flex;
  align-items: center;
  width: max-content;
}
.itinerary__track {
  display: flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: itinerary-scroll 30s linear infinite;
}
@keyframes itinerary-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.itinerary__item {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  padding: 0 30px;
  white-space: nowrap;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.35rem;
}
.itinerary__city {
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
}
.itinerary__dates {
  color: var(--d04-accent);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: .72rem;
  letter-spacing: .16em;
}
.itinerary__gem {
  color: var(--itinerary-accent);
  font-size: .78rem;
  text-shadow: 0 0 10px rgba(185, 196, 255, .85);
}
.itinerary:hover .itinerary__track,
.itinerary:focus-within .itinerary__track {
  animation-play-state: paused;
}
.itinerary::before,
.itinerary::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 130px;
  z-index: 2;
  pointer-events: none;
}
.itinerary::before { left: 0;  background: linear-gradient(90deg,  var(--d04-bg, transparent), transparent); }
.itinerary::after  { right: 0; background: linear-gradient(270deg, var(--d04-bg, transparent), transparent); }
@media (prefers-reduced-motion: reduce) {
  .itinerary__track { animation: none; }
}

/* ============ HOW IT WORKS ============ */
.steps {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1040px;
}
.step {
  position: relative;
  text-align: center;
  background: var(--d04-glass);
  border: 1px solid var(--d04-line);
  border-radius: var(--d04-radius);
  box-shadow: var(--d04-shadow);
  padding: 46px 28px 34px;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.step::before {
  content: "";
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 46px; height: 2px;
  border-radius: 0 0 2px 2px;
  background: var(--d04-grad);
}
.step::after {
  content: "";
  position: absolute; top: -20px; left: 50%;
  transform: translateX(-50%);
  width: 170px; height: 110px;
  background: radial-gradient(closest-side, rgba(143, 163, 255, .16), transparent 72%);
  pointer-events: none;
}
.step:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 183, 208, .55);
}
.step__num {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px; height: 62px;
  margin: 0 auto 22px;
  border-radius: 50%;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: #f6efff;
  background: linear-gradient(160deg, rgba(143, 163, 255, .32), rgba(255, 183, 208, .2));
  border: 1px solid rgba(255, 255, 255, .24);
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, .035),
    0 12px 30px -10px rgba(143, 163, 255, .55),
    inset 0 1px 0 rgba(255, 255, 255, .2);
  text-shadow: 0 1px 10px rgba(143, 163, 255, .5);
  transition: box-shadow .3s ease, transform .3s ease;
}
.step:hover .step__num {
  box-shadow:
    0 0 0 6px rgba(255, 255, 255, .035),
    0 12px 34px -8px rgba(255, 183, 208, .6),
    inset 0 1px 0 rgba(255, 255, 255, .2);
  transform: translateY(-1px);
}
.step__title {
  position: relative;
  margin: 0 0 10px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.step__desc {
  position: relative;
  margin: 0 auto;
  color: var(--d04-ink-soft);
  font-size: .9rem;
  line-height: 1.75;
  max-width: 38ch;
}

/* ============ CLIENT WORDS ============ */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}
.review {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  background: var(--d04-glass);
  border: 1px solid var(--d04-line);
  border-radius: var(--d04-radius);
  box-shadow: var(--d04-shadow);
  padding: 28px 26px;
  transition: transform .25s ease, border-color .25s ease;
}
.review:hover {
  transform: translateY(-3px);
  border-color: var(--d04-accent);
}
.review__stars {
  color: var(--d04-accent);
  font-size: .82rem;
  letter-spacing: .35em;
}
.review__quote {
  margin: 0;
  color: var(--d04-ink-soft);
  font-size: 1rem;
  line-height: 1.75;
  font-style: italic;
}
.review__author {
  margin: 0;
  color: var(--d04-ink-dim);
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.review__author::before {
  content: "— ";
  color: var(--d04-accent-2);
}

/* ============ ROSTER (featured above the fold) ============ */
.roster-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}
.roster-card {
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.roster-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 183, 208, .55);
  box-shadow: 0 24px 60px -24px rgba(143, 163, 255, .45);
}
.roster__cta { text-align: center; margin: 28px 0 0; }
@media (max-width: 960px) {
  .roster-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .roster-grid { grid-template-columns: 1fr; }
}

/* ============ TABULAR TRUST CHIPS (community vouch counters) ============ */
.card__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.4;
  white-space: nowrap;
}
.chip--vouch {
  color: var(--d04-accent);
  border: 1px solid rgba(255, 183, 208, .35);
  background: rgba(11, 16, 32, .35);
}
.chip--vetted {
  color: #10142b;
  background: var(--d04-grad);
}
.chip--verified {
  color: #fff;
  background: rgba(11, 16, 32, .38);
  border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.chip--featured {
  color: #10142b;
  background: var(--d04-grad);
  box-shadow: 0 5px 14px -6px rgba(255, 183, 208, .55);
}
/* Fly-In chip: discreet "Propose Travel Split" CTA on profile cards */
.card__fly {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px dashed rgba(185, 193, 226, .42);
  color: var(--d04-ink-soft);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.4;
  white-space: nowrap;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.card__fly:hover {
  border-color: var(--d04-accent);
  border-style: solid;
  color: #fff;
  transform: translateY(-1px);
}

/* Mobile: keep chip rows flush-left and consistent across cards by
   pushing the travel-split chip onto its own full-width centred row.
   Text shrinks and soft-wraps so it never overflows narrow 2-column cards. */
@media (max-width: 640px) {
  .card__trust { align-items: stretch; }
  .card__fly {
    width: 100%;
    justify-content: center;
    font-size: .56rem;
    letter-spacing: .05em;
    line-height: 1.35;
    white-space: normal;
    text-align: center;
  }
}

/* ============ TRUSTED NETWORK (chips row under the stats band) ============ */
.trustnet {
  list-style: none;
  margin: 26px auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1120px;
}
.trustnet__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 16px 8px 10px;
  background: var(--d04-glass);
  border: 1px solid var(--d04-line);
  border-radius: 999px;
  color: var(--d04-ink-soft);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: border-color .25s ease, transform .25s ease;
}
.trustnet__item:hover {
  border-color: rgba(255, 183, 208, .45);
  transform: translateY(-1px);
}
.trustnet__emblem {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .22);
  background: linear-gradient(160deg, rgba(255, 183, 208, .3), rgba(143, 163, 255, .18));
  color: var(--d04-accent);
}
.trustnet__emblem svg { width: 14px; height: 14px; display: block; }

/* ============ PREMIUM CUSTOM SELECT (site-wide component) ============ */
/* Any <select data-selectx> is enhanced by php-app.js into a styled button +
   option list. Values stay in the native select (.js scoping hides it), so
   existing change listeners and form submits keep working unchanged. */
.px-select { position: relative; width: 100%; }
/* No-JS: fall back to the native select (JS adds document .js to switch). */
.px-select__native { width: 100%; }
.js .px-select__native { display: none; }
/* Native selects outside the custom widget keep a dark, on-theme closed
   state (and dark options where the browser honours them, e.g. Firefox). */
.d04 select { background-color: rgba(10, 14, 28, .88); color: var(--d04-ink); }
.d04 select option { background-color: #0e1222; color: #eef1ff; }
.px-select__btn {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--d04-line);
  background: var(--d04-glass-2);
  color: var(--d04-ink);
  font: inherit;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.js .px-select__btn { display: flex; }
.px-select__btn:hover { border-color: rgba(255, 183, 208, .45); }
.px-select__btn[aria-expanded="true"] {
  border-color: var(--d04-accent);
  background: linear-gradient(160deg, rgba(143, 163, 255, .14), rgba(255, 183, 208, .08)), var(--d04-glass-2);
  box-shadow: 0 0 0 3px rgba(143, 163, 255, .18), 0 12px 30px -16px rgba(143, 163, 255, .5);
}
.px-select__value {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--d04-ink);
}
.px-select__value.is-empty { color: var(--d04-ink-dim); }
.px-select__caret {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  color: var(--d04-accent);
  transition: transform .25s ease;
}
.px-select__btn[aria-expanded="true"] .px-select__caret { transform: rotate(180deg); }
.px-select__list {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  z-index: 40;
  max-height: 240px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: rgba(11, 16, 32, .97);
  border: 1px solid rgba(255, 183, 208, .35);
  border-radius: 14px;
  box-shadow:
    0 24px 60px -18px rgba(0, 0, 0, .65),
    0 0 0 1px rgba(143, 163, 255, .08),
    0 14px 34px -18px rgba(143, 163, 255, .45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.px-select__list.px-select__list--open { display: block; }
.px-select__opt {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 14px;
  color: var(--d04-ink-soft);
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.px-select__opt::before {
  content: "";
  flex: 0 0 auto;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: transparent;
  transition: background .18s ease, box-shadow .18s ease;
}
.px-select__opt:hover {
  background: linear-gradient(160deg, rgba(143, 163, 255, .16), rgba(255, 183, 208, .1));
  color: #fff;
}
.px-select__opt.is-selected { color: var(--d04-accent); font-weight: 600; }
.px-select__opt.is-selected::before {
  background: var(--d04-grad);
  box-shadow: 0 0 8px rgba(255, 183, 208, .7);
}
.px-select__list::-webkit-scrollbar { width: 8px; }
.px-select__list::-webkit-scrollbar-thumb { background: rgba(255, 183, 208, .3); border-radius: 8px; }

/* Filter-bar text inputs match the premium select control (search field). */
.filter-bar input[type="search"],
.filter-bar input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--d04-line);
  background: var(--d04-glass-2);
  color: var(--d04-ink);
  font: inherit;
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.filter-bar input[type="search"]:focus,
.filter-bar input[type="text"]:focus {
  outline: none;
  border-color: var(--d04-accent);
  box-shadow: 0 0 0 3px rgba(143, 163, 255, .18);
}

/* ============ BADGE LEGEND ============ */
.legend {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
}
.legend__item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--d04-ink-dim);
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .06em;
}
.legend__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
}
.legend__mark--check {
  color: var(--d04-accent);
  background: rgba(11, 16, 32, .5);
  border: 1px solid rgba(255, 183, 208, .4);
}
.legend__mark--star,
.legend__mark--new {
  color: #10142b;
  background: var(--d04-grad);
}

/* ============ DEMAND-BASED FLEET SCARCITY BAR ============ */
.scarcity {
  display: block;
  max-width: 1120px;
  margin: 0 auto 20px;
}
.scarcity__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 7px;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.scarcity__label { color: rgba(185, 193, 226, .75); }
.scarcity__value { color: var(--d04-accent); text-shadow: 0 0 10px rgba(255, 183, 208, .6); }
.scarcity__track {
  position: relative;
  display: block;
  height: 5px;
  border-radius: 999px;
  background: rgba(185, 193, 226, .14);
  overflow: hidden;
}
.scarcity__fill {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(143, 163, 255, .9), #ffb7d0);
  box-shadow: 0 0 10px rgba(255, 183, 208, .85);
}
/* Live shimmer sweep implies real-time allocation without noise */
.scarcity__fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: translateX(-100%);
  animation: scarcity-sweep 2.6s ease-in-out infinite;
}
@keyframes scarcity-sweep {
  0%        { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}
@media (prefers-reduced-motion: reduce) {
  .scarcity__fill::after { animation: none; }
}

/* ============ ALLOCATION GRID (partner venues) ============ */
.allocation__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  max-width: 1120px;
  margin: 0 auto 26px;
}
.allocation__toggle {
  display: inline-flex;
  gap: 5px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(10, 14, 28, .55);
  border: 1px solid var(--d04-line);
}
.allocation__tab {
  appearance: none;
  border: 0;
  padding: 9px 18px;
  border-radius: 999px;
  font: inherit;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--d04-ink-soft);
  background: transparent;
  cursor: pointer;
  transition: background .22s ease, color .22s ease, box-shadow .22s ease;
}
.allocation__tab:hover { color: #fff; }
.allocation__tab.is-active {
  color: #10142b;
  background: var(--d04-grad);
  box-shadow: 0 4px 16px -6px rgba(255, 183, 208, .65);
}
.allocation__stack {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  transition: height .28s cubic-bezier(.4, 0, .2, 1);
}
.alloc-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  transition: opacity .22s ease, transform .22s ease;
}
/* Author-rule override: the UA `[hidden]` rule loses to `display: grid`
   above, so this guarantees a list is truly hidden until JS shows it. */
.alloc-grid[hidden] { display: none; }
.alloc-grid.is-hidden {
  position: absolute;
  inset: 0 0 auto 0;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  visibility: hidden;
}
.alloc-grid.is-held {
  opacity: 0;
  transform: translateY(8px);
}
.alloc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 15px 16px 14px;
  background: var(--d04-glass);
  border: 1px solid var(--d04-line);
  border-radius: 14px;
  box-shadow: var(--d04-shadow);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.alloc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 183, 208, .6);
  box-shadow: 0 16px 36px -18px rgba(255, 183, 208, .42), var(--d04-shadow);
}
.alloc-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.alloc-card__name {
  margin: 0;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: .01em;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.alloc-card__num {
  flex: 0 0 auto;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  color: var(--d04-accent);
  text-shadow: 0 0 10px rgba(255, 183, 208, .55);
}
.alloc-card__zone {
  margin: 5px 0 14px;
  color: var(--d04-ink-dim);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.alloc-card__track {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: rgba(185, 193, 226, .14);
  overflow: hidden;
  margin-top: auto;
}
.alloc-card__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(143, 163, 255, .9), #ffb7d0);
  box-shadow: 0 0 8px rgba(255, 183, 208, .7);
  transition: width .6s ease;
}
.alloc-card.is-pulse .alloc-card__num {
  animation: alloc-pulse .5s ease;
}
@keyframes alloc-pulse {
  0%        { transform: scale(1); }
  40%       { transform: scale(1.2); color: #ffdce8; }
  100%      { transform: scale(1); }
}
@media (max-width: 960px) {
  .alloc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .alloc-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .alloc-card.is-pulse .alloc-card__num { animation: none; }
}

/* ============ QUICK INQUIRY (Begin a Conversation) ============ */
.inquiry {
  position: relative;
  padding: 46px 40px 40px;
  background:
    radial-gradient(640px 240px at 50% -60px, rgba(143, 163, 255, .16), transparent 70%),
    var(--d04-glass);
  border: 1px solid var(--d04-line);
  border-radius: 22px;
  box-shadow: var(--d04-shadow), 0 30px 80px -44px rgba(143, 163, 255, .4);
  max-width: 1120px;
  margin: 0 auto;
}
.inquiry__lead {
  text-align: center;
  color: var(--d04-ink-soft);
  max-width: 56ch;
  margin: 0 auto 28px;
  line-height: 1.75;
}
.inquiry__fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.inquiry__form { max-width: 940px; margin: 0 auto; }
.inquiry__go { width: 100%; margin-top: 16px; }
.inquiry__note {
  text-align: center;
  margin: 16px 0 0;
  color: var(--d04-ink-dim);
  font-size: .85rem;
}
.inquiry__note a { color: var(--d04-accent); text-decoration: none; }
.inquiry__note a:hover { color: #fff; }
@media (max-width: 760px) {
  .inquiry { padding: 40px 22px 32px; }
  .inquiry__fields { grid-template-columns: 1fr; }
}

/* ============ HERO TRUST STRIP ============ */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  margin: 0 0 6px;
  color: var(--d04-ink-soft);
  font-size: .84rem;
  font-weight: 400;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}
.hero-trust__stars { color: var(--d04-accent); letter-spacing: .18em; }
.hero-trust__score { font-weight: 600; color: #fff; }
.hero-trust__dot { color: var(--d04-ink-dim); }

/* ============ TOPIC CHIPS (internal links) ============ */
.topic {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.topic__chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--d04-line);
  background: var(--d04-glass);
  color: var(--d04-ink-soft);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .03em;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.topic__chip::before {
  content: "\2726";
  margin-right: 8px;
  font-size: .62rem;
  color: var(--d04-accent);
}
.topic__chip:hover {
  border-color: rgba(255, 183, 208, .6);
  color: #fff;
  transform: translateY(-2px);
}

/* ============ PRICING ============ */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1120px;
  margin: 0 auto;
}
.pricing__card {
  padding: 20px 22px;
  background: var(--d04-glass);
  border: 1px solid var(--d04-line);
  border-radius: 16px;
  box-shadow: var(--d04-shadow);
  transition: transform .25s ease, border-color .25s ease;
}
.pricing__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 183, 208, .55);
}
.pricing__kind {
  margin: 0 0 6px;
  color: var(--d04-ink-dim);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.pricing__value {
  margin: 0 0 6px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}
.pricing__note { margin: 0; color: var(--d04-ink-soft); font-size: .82rem; line-height: 1.55; }
@media (max-width: 900px) {
  .pricing { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .pricing { grid-template-columns: 1fr; }
}

/* ============ LATEST INSIGHTS (editorial index) ============ */
.insights-section { max-width: 1120px; margin: 0 auto; }
.insights__head { text-align: center; margin-bottom: 30px; }
.index {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--d04-line);
}
.index__row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto 44px;
  align-items: center;
  gap: 0 24px;
  padding: 24px 12px 24px 0;
  border-bottom: 1px solid var(--d04-line);
  text-decoration: none;
  transition: padding-left .3s ease;
}
.index__row:hover { padding-left: 14px; }
.index__num {
  font-family: "Playfair Display", "Georgia", serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--d04-accent);
  opacity: .75;
}
.index__title {
  margin: 0 0 7px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  transition: color .25s ease;
}
.index__row:hover .index__title { color: var(--d04-accent); }
.index__meta {
  color: var(--d04-ink-dim);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.index__thumb {
  width: 128px;
  height: 84px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--d04-line);
  opacity: .5;
  filter: grayscale(.5);
  transition: opacity .3s ease, filter .3s ease, transform .3s ease;
}
.index__row:hover .index__thumb {
  opacity: 1;
  filter: none;
  transform: translateY(-2px);
}
.index__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.index__arrow {
  justify-self: end;
  color: var(--d04-ink-dim);
  font-size: 1.2rem;
  transition: color .25s ease, transform .3s ease;
}
.index__row:hover .index__arrow {
  color: var(--d04-accent);
  transform: translate(3px, -3px);
}
.index__all {
  display: flex;
  justify-content: flex-end;
  margin: 22px 0 0;
}
.index__all a {
  color: var(--d04-accent);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
}
.index__all a:hover { color: #fff; }
@media (max-width: 700px) {
  .index__row { grid-template-columns: 40px minmax(0, 1fr) 36px; gap: 0 16px; }
  .index__thumb { display: none; }
  .index__title { font-size: 1.12rem; }
}

/* ============ SEO TEASER (above the fold) ============ */
.story-teaser {
  max-width: 80ch;
  margin: 0 auto;
  text-align: center;
  color: var(--d04-ink-soft);
  font-size: .95rem;
  line-height: 1.8;
}
.story-teaser__more {
  color: var(--d04-accent);
  text-decoration: none;
  white-space: nowrap;
}
.story-teaser__more:hover {
  color: #fff;
  text-decoration: underline;
}

/* ============ SEARCH BOOK COLLAPSIBLE (below the fold) ============ */
.story { max-width: 1120px; margin: 0 auto; }
.story__head {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  background: var(--d04-glass);
  border: 1px solid var(--d04-line);
  border-radius: 18px;
  box-shadow: var(--d04-shadow);
  transition: border-color .25s ease;
}
.story__head::-webkit-details-marker { display: none; }
.story__head::marker { content: none; }
.story[open] .story__head {
  border-radius: 18px 18px 0 0;
  border-color: rgba(255, 183, 208, .55);
}
.story__title {
  margin: 0;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
}
.story__toggle {
  position: relative;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--d04-line);
  transition: background .25s ease, transform .3s ease;
}
.story__toggle::before,
.story__toggle::after {
  content: "";
  position: absolute;
  background: var(--d04-accent);
}
.story__toggle::before {
  width: 14px;
  height: 2px;
  top: 18px;
  left: 12px;
}
.story__toggle::after {
  width: 2px;
  height: 14px;
  top: 12px;
  left: 18px;
  transition: opacity .2s ease;
}
.story__head:hover .story__toggle { background: rgba(255, 183, 208, .12); }
.story[open] .story__toggle { transform: rotate(180deg); }
.story[open] .story__toggle::after { opacity: 0; }
.story__body {
  padding: 28px 26px 30px;
  background: var(--d04-glass);
  border: 1px solid var(--d04-line);
  border-top: none;
  border-radius: 0 0 18px 18px;
  box-shadow: var(--d04-shadow);
}
.story__body .story__block {
  margin: 0 0 10px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}
.story__body .story__block:not(:first-child) { margin-top: 30px; }
.story__body p {
  margin: 0 0 16px;
  color: var(--d04-ink-soft);
  line-height: 1.8;
}
@media (max-width: 640px) {
  .story__head { padding: 16px 18px; }
  .story__body { padding: 22px 18px; }
}

/* ============ PROFILE PAGE — AVAILABILITY ============ */
.profile-availability {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  margin: -4px 0 18px;
  padding: 8px 14px;
  border: 1px solid var(--d04-line);
  border-radius: 999px;
  background: var(--d04-glass);
  color: var(--d04-ink-soft);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.profile-availability__inner { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.profile-availability__dot {
  width: 8px;
  height: 8px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--d04-accent);
  box-shadow: 0 0 0 3px rgba(143, 163, 255, .18);
}
@keyframes avail-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(94, 224, 155, .22); }
  50%      { box-shadow: 0 0 0 7px rgba(94, 224, 155, .04); }
}
.profile-availability.is-today { color: #bff7d3; border-color: rgba(94, 224, 155, .35); }
.profile-availability.is-today .profile-availability__dot { background: #5ee09b; animation: avail-pulse 1.7s ease-in-out infinite; }
.profile-availability.is-booked { color: var(--d04-ink-dim); }
.profile-availability.is-booked .profile-availability__dot { background: var(--d04-ink-dim); box-shadow: none; }
.profile-availability__slot {
  color: var(--d04-ink-dim);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: none;
}

/* ============ PROFILE PAGE — TIERED VERIFICATION BADGES ============ */
.profile-badges {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.profile-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  border: 1px solid var(--d04-line);
  border-radius: 999px;
  background: var(--d04-glass);
  color: var(--d04-ink-soft);
  font-size: .71rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: help;
}
.profile-badge__tick { color: var(--d04-accent-2); }
.profile-badge--identity .profile-badge__tick { color: var(--d04-accent); }
.profile-badge--photos .profile-badge__tick { color: #5ee09b; }
.profile-badge::after {
  content: attr(data-tip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);
  width: max-content;
  max-width: 240px;
  padding: 8px 12px;
  border: 1px solid var(--d04-line);
  border-radius: 10px;
  background: rgba(15, 20, 38, .96);
  color: var(--d04-ink-soft);
  font-size: .74rem;
  font-weight: 400;
  letter-spacing: .02em;
  text-transform: none;
  line-height: 1.6;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 5;
}
.profile-badge:hover::after,
.profile-badge:focus::after,
.profile-badge:focus-within::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ============ PROFILE PAGE — RECENCY + FLASH ============ */
.profile-hero__recency {
  margin: 0 0 28px;
  color: var(--d04-ink-dim);
  font-size: .76rem;
  letter-spacing: .08em;
}
.profile-flash {
  margin-top: 14px;
  padding: 11px 16px;
  border: 1px solid rgba(255, 183, 208, .35);
  border-radius: 12px;
  background: rgba(255, 183, 208, .08);
  color: var(--d04-ink-soft);
  font-size: .86rem;
}
.profile-flash p { margin: 0; }
.profile-flash--ok { color: #bff7d3; border-color: rgba(94, 224, 155, .35); background: rgba(94, 224, 155, .07); }
.favorite-form { display: inline-flex; margin: 0; }

/* ============ PROFILE PAGE — BOOKING COMPOSER ============ */
.section--booking .booking {
  max-width: 720px;
  margin: 0 auto;
}
.booking__copy {
  margin: 0 0 24px;
  color: var(--d04-ink-soft);
  max-width: 46ch;
  line-height: 1.85;
}
.booking__meta {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}
.booking__meta li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  border-bottom: 1px solid var(--d04-line);
}
.booking__meta-label {
  color: var(--d04-ink-dim);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.booking__meta-value {
  color: var(--d04-ink);
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1rem;
  text-align: right;
}
.booking__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.booking-card {
  padding: clamp(22px, 3vw, 30px);
  background: var(--d04-glass);
  border: 1px solid var(--d04-line);
  border-radius: var(--d04-radius);
  box-shadow: var(--d04-shadow);
}
.booking-card__title {
  margin: 0 0 18px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.25rem;
  color: #fff;
}
.booking-card__row { margin: 0 0 16px; }
.booking-card__row label,
.report-this__field label {
  display: block;
  margin: 0 0 7px;
  color: var(--d04-ink-dim);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.booking-card__row input,
.booking-card__row select,
.report-this__field select,
.report-this__field textarea {
  width: 100%;
  padding: 11px 13px;
  border-radius: 10px;
  border: 1px solid var(--d04-line);
  background: var(--d04-glass-2);
  color: var(--d04-ink);
  font: inherit;
  font-size: .92rem;
}
.booking-card__row input:focus,
.booking-card__row select:focus,
.report-this__field select:focus,
.report-this__field textarea:focus {
  outline: none;
  border-color: var(--d04-accent);
}

/* Native form controls (date calendar, select popups) follow the dark glass
   theme instead of the OS white surfaces. color-scheme:dark renders the
   calendar + dropdown panels dark in Chromium; option rows get our palette. */
.booking-card__row input,
.booking-card__row select,
.report-this__field select,
.report-this__field textarea {
  color-scheme: dark;
}
.booking-card__row select option,
.report-this__field select option {
  background: #141b30;
  color: #eef1ff;
}
.booking-card__row input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.82);
  cursor: pointer;
  opacity: .85;
}
.booking-card__hint {
  display: block;
  margin-top: 6px;
  color: var(--d04-ink-dim);
  font-size: .74rem;
  letter-spacing: .04em;
}
.btn--block { display: flex; justify-content: center; width: 100%; margin-top: 6px; }
.btn--small { padding: 8px 18px; font-size: .82rem; }
.booking-card__fine {
  margin: 13px 0 0;
  color: var(--d04-ink-dim);
  font-size: .78rem;
  line-height: 1.75;
  letter-spacing: .02em;
}

/* Meeting-style tags inside the booking card. The .row label rule above is
   deliberately overridden (equal specificity, later in the cascade). */
.booking-card__row-label {
  display: block;
  margin: 0 0 7px;
  color: var(--d04-ink-dim);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.booking-card__row-opt {
  font-style: normal;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: none;
}
.booking-card__vibes { display: flex; flex-wrap: wrap; gap: 8px; }
.booking-card__vibes label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid var(--d04-line);
  border-radius: 999px;
  background: var(--d04-glass);
  color: var(--d04-ink-dim);
  font-size: .76rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: .02em;
  text-transform: none;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease, color .18s ease;
  -webkit-user-select: none;
  user-select: none;
}
.booking-card__vibes label:hover { border-color: rgba(255, 183, 208, .45); color: var(--d04-ink-soft); }
.booking-card__vibes label::before {
  content: "✓";
  color: var(--d04-accent);
  font-size: .72rem;
  opacity: 0;
  transition: opacity .18s ease;
}
.booking-card__vibes input { display: none; }
.booking-card__vibes label:has(input:checked) {
  border-color: var(--d04-accent);
  background: linear-gradient(160deg, rgba(143, 163, 255, .14), rgba(255, 183, 208, .08)), var(--d04-glass-2);
  color: #fff;
}
.booking-card__vibes label:has(input:checked)::before { opacity: 1; }

/* ============ PROFILE PAGE — HONORARIA VENUE GROUPS ============ */
.spec-group {
  margin: 0 0 4px;
  padding-top: 6px;
  color: var(--d04-accent);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
}
.spec-group ~ .spec-group,
.profile-spec__col > .spec-group:first-child { margin-top: 10px; }
.profile-spec .spec-list {
  display: flex;
  flex-direction: column;
}
.profile-spec .spec-list__row { width: 100%; }
.profile-rates__fine--payments {
  padding-top: 12px;
  border-top: 1px solid var(--d04-line);
}

/* ============ PROFILE PAGE — REPORT THIS PROFILE ============ */
.report-this {
  max-width: 1040px;
  margin: clamp(28px, 4vw, 44px) auto 0;
  border-top: 1px solid var(--d04-line);
  padding-top: 18px;
}
.report-this__toggle {
  background: none;
  border: 0;
  padding: 0;
  color: var(--d04-ink-dim);
  font: inherit;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
}
.report-this__toggle:hover { color: var(--d04-ink-soft); }
.report-this__form {
  margin-top: 16px;
  max-width: 520px;
}
.report-this__field { margin: 0 0 14px; }
.report-this__form .btn { margin-top: 4px; }

/* Honeypot — invisible to humans, kept for bots. */
.hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ============ ACCOUNT — SHORTLIST ============ */
.account-favs { list-style: none; margin: 0 0 6px; padding: 0; }
.account-fav {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--d04-line);
}
.account-fav__target { color: var(--d04-accent); text-decoration: none; font-family: "Playfair Display", "Georgia", serif; font-size: 1rem; }
.account-fav__target:hover { color: var(--d04-accent-2); }
.account-fav__meta { color: var(--d04-ink-dim); font-size: .76rem; letter-spacing: .08em; }

/* ============ ACCOUNT — PREMIUM DASHBOARD ============ */
.dash-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:20px; flex-wrap:wrap;
  margin-bottom:26px;
}
.dash-head__intro{ max-width:34rem; }
.dash-head__intro .eyebrow{ margin-bottom:12px; }
.dash-head__title{
  font-size:clamp(1.8rem,4vw,2.6rem);
  font-weight:600; letter-spacing:-.02em;
  margin:0 0 6px;
}
.dash-head__sub{ color:var(--d04-ink-soft); line-height:1.7; margin:0; }

.dash-stats{
  display:flex; flex-wrap:wrap; gap:12px;
  margin-bottom:26px;
}
.dash-stat{
  display:flex; align-items:baseline; gap:10px;
  padding:12px 20px;
  border:1px solid var(--d04-line);
  border-radius:var(--d04-radius);
  background:linear-gradient(160deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
}
.dash-stat__n{
  font-family:"Playfair Display","Georgia",serif;
  font-size:1.6rem; line-height:1;
  background:var(--d04-grad);
  -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:transparent;
}
.dash-stat__l{
  color:var(--d04-ink-dim);
  font-size:.74rem; font-weight:600;
  letter-spacing:.1em; text-transform:uppercase;
}

.account-grid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:22px;
  align-items:start;
}
.account-grid__main{ display:grid; gap:22px; }
.account-grid__side{ display:grid; gap:22px; }

.dash-card{
  padding:clamp(20px,3vw,28px);
  border:1px solid var(--d04-line);
  border-radius:var(--d04-radius);
  background:linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.012));
  box-shadow:var(--d04-shadow);
}
.dash-card__head{
  display:flex; align-items:center; gap:12px;
  margin-bottom:16px;
}
.dash-card__tic{
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px; flex:0 0 auto;
  border-radius:11px;
  background:rgba(143,163,255,.12);
  border:1px solid rgba(143,163,255,.22);
  color:var(--d04-accent);
}
.dash-card__tic svg{ width:17px; height:17px; display:block; }
.dash-card__title{
  font-family:"Playfair Display","Georgia",serif;
  font-size:1.25rem; font-weight:600;
  margin:0;
}
.dash-card__count{
  margin-left:auto;
  min-width:28px; text-align:center;
  padding:2px 10px;
  border-radius:999px;
  border:1px solid rgba(143,163,255,.3);
  background:rgba(143,163,255,.08);
  color:var(--d04-accent);
  font-size:.84rem; font-weight:600;
}
.dash-card .auth-form{ margin-top:20px; }
.dash-card .auth-form__field input{ padding:12px 14px; }
.dash-card .auth-form__row{ display:flex; gap:10px; margin-top:4px; }
.dash-card .auth-card__none{ max-width:26rem; }

@media (max-width:980px){
  .account-grid{ grid-template-columns:1fr; }
}
@media (max-width:520px){
  .dash-head{ align-items:flex-start; }
  .dash-head > form{ width:100%; }
  .dash-head > form .btn{ width:100%; }
  .dash-stat{ flex:1 1 auto; justify-content:center; }
}

/* ============ PROFILE PAGE — STICKY MOBILE QUICK ACTIONS ============ */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  gap: 12px;
  padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 14, 28, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--d04-line);
}
.sticky-cta__btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  padding: .8em 1.5em;
  border-radius: 999px;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  transition: .25s ease;
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.sticky-cta__btn:active { transform: scale(.97); }
.sticky-cta__btn svg { flex: 0 0 auto; }
.sticky-cta__btn--call,
.sticky-cta__btn--wa {
  background: var(--d04-accent);
  color: #0d1120 !important;
  box-shadow: 0 12px 30px -12px rgba(143, 163, 255, .55);
}
.sticky-cta__btn--call:hover,
.sticky-cta__btn--wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -12px rgba(143, 163, 255, .7);
}
body.sticky-cta-active { padding-bottom: 80px; }
@media (max-width: 820px) {
  .sticky-cta { padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px)); gap: 10px; }
  .sticky-cta__btn { padding: .72em 1.2em; font-size: .78rem; }
}

/* ============ TIME-OF-DAY CONTEXTUAL THEME ============ */
/* The approved palette lives on :root; these body-scoped overrides morph it
   by hour. Day = crisp corporate, night = deep midnight glamour. */
body.d04[data-mood="day"] {
  --d04-bg:        #0d1328;
  --d04-bg-2:      #111a38;
  --d04-accent:    #7f97ff;
  --d04-accent-2:  #ffd0e0;
  --d04-line:      rgba(127, 151, 255, .16);
  --d04-glass:     rgba(255, 255, 255, .045);
  --d04-glass-2:   rgba(255, 255, 255, .075);
  background-image:
    radial-gradient(1100px 620px at 82% -12%, rgba(127, 151, 255, .12), transparent 60%),
    radial-gradient(900px 560px at 8% 118%, rgba(255, 208, 224, .07), transparent 60%);
}
body.d04[data-mood="night"] {
  --d04-bg:        #060913;
  --d04-bg-2:      #0a0f24;
  --d04-bg-3:      #101736;
  --d04-accent:    #8fa3ff;
  --d04-accent-2:  #ffb7d0;
  --d04-line:      rgba(255, 183, 208, .18);
  --d04-glass:     rgba(255, 255, 255, .02);
  --d04-glass-2:   rgba(255, 255, 255, .045);
  --d04-shadow:    0 28px 70px -26px rgba(0, 0, 0, .8);
  background-image:
    radial-gradient(1200px 720px at 85% -8%, rgba(143, 163, 255, .14), transparent 60%),
    radial-gradient(900px 600px at 10% 122%, rgba(255, 183, 208, .1), transparent 60%);
}
body.d04[data-mood="day"] .profile-hero__name {
  font-weight: 600;
  font-style: normal;
  letter-spacing: -.012em;
}
body.d04[data-mood="night"] .profile-hero__name {
  font-weight: 700;
  letter-spacing: .01em;
}
/* Mood accent line under the availability pill. */
.profile-mood {
  margin: -10px 0 20px;
  max-width: 46ch;
  color: var(--d04-ink-dim);
  font-size: .78rem;
  line-height: 1.7;
  letter-spacing: .03em;
}
.profile-mood--day { color: var(--d04-accent); }
.profile-mood--night { color: var(--d04-accent-2); }

/* ============ PROFILE PAGE — TRAVEL & CONVENIENCE ============ */
.section--travel { padding-top: clamp(20px, 3vw, 34px); }
.travel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 54px);
  align-items: start;
}
.travel__intro {
  margin: 14px 0 4px;
  color: var(--d04-ink-soft);
  font-size: .95rem;
  line-height: 1.7;
}
.travel-list { margin: 18px 0 0; }
.travel-list__row { padding: 13px 0; border-bottom: 1px solid var(--d04-line); }
.travel-list__row:last-child { border-bottom: 0; }
.travel-list__row dt {
  display: block;
  margin: 0 0 6px;
  color: var(--d04-ink-dim);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.travel-list__row dd {
  margin: 0;
  color: var(--d04-ink);
  font-size: .98rem;
  line-height: 1.65;
}
.travel-list__note {
  margin: 14px 0 0;
  color: var(--d04-ink-dim);
  font-size: .78rem;
  letter-spacing: .03em;
}
.travel-list__note strong { color: var(--d04-accent); font-weight: 600; }

/* ETA calculator card */
.eta-card {
  position: relative;
  padding: 22px 22px 20px;
  border: 1px solid var(--d04-line);
  border-radius: 20px;
  background:
    linear-gradient(160deg, rgba(143, 163, 255, .09), rgba(255, 183, 208, .05)),
    var(--d04-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.eta-card__title {
  margin: 0 0 8px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.18rem;
  color: #fff;
}
.eta-card__sub, .eta-card__fine {
  margin: 0 0 14px;
  color: var(--d04-ink-dim);
  font-size: .8rem;
  line-height: 1.7;
  letter-spacing: .02em;
}
.eta-card__base {
  margin: 0 0 14px;
  color: var(--d04-ink-soft);
  font-size: .78rem;
}
.eta-card__base strong { color: var(--d04-accent); font-weight: 600; letter-spacing: .03em; }
.eta-card__control { display: flex; gap: 9px; align-items: stretch; margin: 0 0 14px; }
.eta-card__control label {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.eta-card__control select {
  padding: 11px 13px;
  border: 1px solid var(--d04-line);
  border-radius: 10px;
  background: var(--d04-glass-2);
  color: var(--d04-ink);
  font: inherit;
  font-size: .9rem;
  color-scheme: dark;
}
.eta-card__control select option { background: #141b30; color: #eef1ff; }
.eta-card__control .px-select { flex: 1 1 auto; width: auto; min-width: 0; }
.eta-card__locate {
  flex: 0 0 auto;
  padding: 11px 15px;
  border: 1px solid var(--d04-line);
  border-radius: 10px;
  background: var(--d04-grad);
  color: #0d1120;
  font: inherit;
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.eta-card__locate:hover { filter: brightness(1.06); }
.eta-card__locate[disabled] { opacity: .5; cursor: not-allowed; }
.eta-card__line {
  margin: 0;
  padding: 11px 13px;
  border-left: 2px solid var(--d04-accent);
  background: var(--d04-glass);
  color: var(--d04-ink-soft);
  font-size: .86rem;
  line-height: 1.6;
  min-height: 46px;
}
.eta-card__fine { margin: 14px 0 0; font-size: .74rem; }

@media (max-width: 860px) {
  .travel { grid-template-columns: 1fr; }
  .eta-card__control { flex-direction: column; }
  .eta-card__locate { width: 100%; }
}

/* ============ PROFILE PAGE — PAYMENT METHODS & LOGISTICS ============ */
.section--pay { padding-top: clamp(20px, 3vw, 34px); }
.pay__head { margin-bottom: 26px; }
.pay__intro {
  margin: 14px 0 0;
  max-width: none;
  color: var(--d04-ink-soft);
  font-size: .98rem;
  line-height: 1.75;
  white-space: nowrap;
}
.pay__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.pay__card {
  padding: 22px 20px;
  border: 1px solid var(--d04-line);
  border-radius: 16px;
  background: var(--d04-glass);
}
.pay__card--preferred {
  border-color: rgba(255, 183, 208, .35);
  background:
    linear-gradient(160deg, rgba(255, 183, 208, .08), rgba(255, 255, 255, .02)),
    var(--d04-glass);
}
.pay__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border: 1px solid var(--d04-line);
  border-radius: 12px;
  background: var(--d04-glass-2);
  font-size: 1.15rem;
}
.pay__name {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.pay__name span {
  display: block;
  margin-top: 3px;
  color: var(--d04-accent);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.pay__text {
  margin: 0;
  color: var(--d04-ink-soft);
  font-size: .88rem;
  line-height: 1.7;
}
.pay__policy {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-left: 2px solid var(--d04-accent);
  background: var(--d04-glass-2);
  color: var(--d04-ink-dim);
  font-size: .8rem;
  line-height: 1.65;
}
.pay__warn {
  margin: 22px 0 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 183, 208, .35);
  border-radius: 12px;
  background:
    linear-gradient(120deg, rgba(255, 183, 208, .1), transparent 60%),
    var(--d04-glass);
  color: var(--d04-ink);
  font-size: .88rem;
  line-height: 1.7;
}
@media (max-width: 860px) {
  .pay__grid { grid-template-columns: 1fr; }
}

/* ============ PROFILE PAGE — BIO / WORD + SCREENING ============ */
.section--bio { padding-top: clamp(20px, 3vw, 34px); }
.bio__text {
  margin: 14px 0 0;
  max-width: 72ch;
  color: var(--d04-ink-soft);
  font-size: 1.02rem;
  line-height: 1.85;
}

/* Identity badge variants (Verified/Featured/Age/Independent/Location/Vouches) */
.profile-badge--featured .profile-badge__tick { color: #ffd27f; }
.profile-badge--age .profile-badge__tick { color: var(--d04-accent-2); }
.profile-badge--independent .profile-badge__tick { color: #5ee09b; }
.profile-badge--location .profile-badge__tick { color: #7fd7f0; }
.profile-badge--vouches .profile-badge__tick { color: #c9a7ff; }

/* Screening accordion */
.section--screening { padding-top: clamp(20px, 3vw, 34px); }
.screening__intro {
  margin: 14px 0 0;
  max-width: 64ch;
  color: var(--d04-ink-soft);
  font-size: .98rem;
  line-height: 1.75;
}
.screening__list { margin: 24px 0 0; }
.screening__item {
  border: 1px solid var(--d04-line);
  border-radius: 14px;
  background: var(--d04-glass);
  margin-top: 12px;
  overflow: hidden;
}
.screening__item:first-of-type { margin-top: 0; }
.screening__item[open] { background: var(--d04-glass-2); }
.screening__item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  color: var(--d04-ink);
  font-size: .96rem;
  font-weight: 600;
  letter-spacing: .01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.screening__item summary::-webkit-details-marker { display: none; }
.screening__item summary::after {
  content: '+';
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--d04-line);
  border-radius: 50%;
  color: var(--d04-accent);
  font-size: 1.05rem;
  line-height: 1;
  transition: transform .18s ease;
}
.screening__item[open] summary::after { transform: rotate(45deg); }
.screening__item summary:hover { color: var(--d04-accent); }
.screening__body { padding: 0 18px 16px; }
.screening__body p {
  margin: 0;
  color: var(--d04-ink-soft);
  font-size: .9rem;
  line-height: 1.75;
}
.screening__body strong { color: var(--d04-accent); font-weight: 600; }

/* ============ WORD ON HER — REVIEW MARQUEE ============ */
.section--reviews { overflow: hidden; }
.reviews-marquee {
  position: relative;
  margin: 18px 0 0;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
}
.reviews-marquee__group {
  display: flex;
  gap: 18px;
  padding-right: 18px;
  width: max-content;
  animation: reviews-scroll 52s linear infinite;
}
.reviews-marquee:hover .reviews-marquee__group,
.reviews-marquee:focus-within .reviews-marquee__group {
  animation-play-state: paused;
}
@keyframes reviews-scroll {
  to { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-marquee__group { animation: none; }
}
.reviews-chip {
  flex: 0 0 auto;
  width: 340px;
  max-width: 82vw;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--d04-line);
  border-radius: 16px;
  background: var(--d04-glass);
}
.reviews-chip__head { display: flex; align-items: center; gap: 8px; }
.reviews-chip__stars { display: flex; gap: 3px; }
.reviews-chip__star { color: rgba(255, 255, 255, .16); font-size: .86rem; }
.reviews-chip__star.is-on { color: #ffd27f; }
.reviews-chip__open {
  margin-left: auto;
  color: var(--d04-accent);
  font-family: Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
  opacity: .35;
}
.reviews-chip__quote {
  margin: 0;
  color: var(--d04-ink-soft);
  font-size: .9rem;
  line-height: 1.68;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.reviews-chip__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--d04-line);
  padding-top: 12px;
  margin-top: auto;
}
.reviews-chip__avatar {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(143, 163, 255, .35), rgba(255, 183, 208, .25));
  color: #fff;
  font-weight: 600;
  font-size: .86rem;
}
.reviews-chip__author {
  color: var(--d04-ink);
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.25;
}
.reviews-chip__date {
  margin-left: auto;
  color: var(--d04-ink-dim);
  font-size: .72rem;
  white-space: nowrap;
}

/* ============ BOOKING CARD — REDESIGN ============ */
.booking-card__title {
  margin: 0 0 16px;
  color: var(--d04-ink);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.booking-card__badge {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.booking-card__badge-item {
  display: inline-block;
  padding: 5px 10px;
  border: 1px solid var(--d04-line);
  border-radius: 20px;
  background: var(--d04-glass);
  color: var(--d04-ink-soft);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .02em;
  white-space: nowrap;
}
.booking-card__row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.booking-card__row-grid .booking-card__row { margin: 0; }
.booking-card__eta { display: flex; flex-direction: column; gap: 0; }
.booking-card__eta-controls {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.booking-card__eta-controls .px-select { flex: 1 1 auto; width: auto; min-width: 0; }
.booking-card__locate {
  flex: 0 0 auto;
  padding: 10px 13px;
  border: 1px solid var(--d04-line);
  border-radius: 10px;
  background: var(--d04-glass-2);
  color: var(--d04-ink);
  font: inherit;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.booking-card__locate:hover { border-color: rgba(255, 183, 208, .35); }
.booking-card__locate[disabled] { opacity: .5; cursor: not-allowed; }
.booking-card__eta-line {
  margin: 8px 0 0;
  padding: 8px 12px;
  border-left: 2px solid var(--d04-accent);
  background: var(--d04-glass);
  color: var(--d04-ink-soft);
  font-size: .82rem;
  line-height: 1.55;
  min-height: 38px;
}
.booking-card__hotel {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid var(--d04-line);
  border-radius: 12px;
  background: var(--d04-glass);
}
.booking-card__hotel-title {
  margin: 0 0 10px;
  color: var(--d04-ink);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .02em;
}
.booking-card__hotel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}
.booking-card__hotel-grid .booking-card__row { margin: 0; }
.booking-card__screening {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid var(--d04-line);
  border-radius: 12px;
  background: var(--d04-glass);
}
.booking-card__screening-title {
  margin: 0 0 4px;
  color: var(--d04-ink);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .02em;
}
.booking-card__screening-intro {
  margin: 0 0 10px;
  color: var(--d04-ink-dim);
  font-size: .74rem;
  line-height: 1.6;
}
.booking-card__screening-item {
  margin: 0 0 5px;
  border: 1px solid var(--d04-line);
  border-radius: 8px;
  background: var(--d04-glass-2);
  overflow: hidden;
}
.booking-card__screening-item summary {
  padding: 8px 12px;
  color: var(--d04-ink);
  font-weight: 600;
  font-size: .78rem;
  cursor: pointer;
  list-style: none;
  background: transparent;
}
.booking-card__screening-item summary::before { content: '\2022\00a0\00a0'; color: var(--d04-accent); }
.booking-card__screening-item[open] summary { border-bottom: 1px solid var(--d04-line); }
.booking-card__screening-body {
  padding: 10px 12px;
  color: var(--d04-ink-soft);
  font-size: .76rem;
  line-height: 1.65;
}
.booking-card__screening-body p { margin: 0; }
.booking-card__screening-body strong { color: var(--d04-ink); }
.booking-card__screening-input { margin-top: 10px; }
.booking-card__screening-input label {
  display: block;
  margin-bottom: 5px;
  color: var(--d04-ink);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .02em;
}
.booking-card__screening-input input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--d04-line);
  border-radius: 10px;
  background: var(--d04-glass);
  color: var(--d04-ink);
  font: inherit;
  font-size: .84rem;
  line-height: 1.5;
  box-sizing: border-box;
}
.booking-card__screening-input input::placeholder { color: var(--d04-ink-dim); opacity: .6; }
.booking-card__screening-input input:focus { outline: none; border-color: var(--d04-accent); }
.booking-card__fine {
  margin: 10px 0 0;
  color: var(--d04-ink-dim);
  font-size: .72rem;
  line-height: 1.6;
  text-align: center;
}
@media (max-width: 640px) {
  .booking-card__row-grid { grid-template-columns: 1fr; }
  .booking-card__eta-controls { flex-direction: column; }
  .booking-card__locate { width: 100%; }
  .booking-card__hotel-grid { grid-template-columns: 1fr; }
}

/* ---------- FAQ page ---------- */
.faq-page-section { padding-top: 8px; }
.faq-page .admin-empty {
  text-align: center;
  color: var(--d04-ink-soft);
  padding: 40px 0;
}
.faq-page__foot {
  margin: 26px auto 0;
  max-width: 820px;
  text-align: center;
  color: var(--d04-ink-soft);
  font-size: .92rem;
}
.faq-page__foot a { color: var(--d04-accent); }

/* ---------- Legal pages (privacy / cookie) ---------- */
.legal-prose {
  max-width: 780px;
  margin: 0 auto;
  color: var(--d04-ink-soft);
  line-height: 1.75;
}
.legal-prose h2 {
  margin-top: 38px;
  color: var(--d04-ink);
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.35rem;
  font-weight: 700;
}
.legal-prose h3 {
  margin-top: 22px;
  text-align: left;
  color: var(--d04-ink);
  font-size: 1.02rem;
}
.legal-prose ul { padding-left: 22px; margin: 12px 0; }
.legal-prose li { margin: 6px 0; }
.legal-prose strong { color: var(--d04-ink); font-weight: 600; }
.legal-prose a { color: var(--d04-accent); }

/* ---------- 18+ Adult content age gate ---------- */
.agegate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(4, 6, 12, .92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.agegate.is-visible { display: flex; }
body.agegate-locked { overflow: hidden; }
.agegate__card {
  width: 100%;
  max-width: 460px;
  text-align: center;
  padding: 42px 34px 34px;
  background: var(--d04-bg);
  border: 1px solid var(--d04-line);
  border-radius: var(--d04-radius, 18px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .5);
}
.agegate__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  margin-bottom: 18px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--d04-accent), #ff4d6d);
  box-shadow: 0 0 0 6px rgba(255, 77, 109, .18);
}
.agegate__title {
  margin: 0 0 12px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--d04-ink);
}
.agegate__text {
  margin: 0 0 16px;
  color: var(--d04-ink-soft);
  font-size: .95rem;
  line-height: 1.65;
}
.agegate__points {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  text-align: left;
  border-top: 1px solid var(--d04-line);
  border-bottom: 1px solid var(--d04-line);
}
.agegate__points li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--d04-ink-soft);
  font-size: .88rem;
}
.agegate__points li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 77, 109, .35);
  box-shadow: inset 0 0 0 3px var(--d04-bg);
}
.agegate__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.agegate__ok { width: 100%; }
.agegate__exit { width: 100%; }
.agegate__note {
  margin: 0;
  color: var(--d04-ink-dim);
  font-size: .74rem;
  line-height: 1.6;
}
@media (max-width: 480px) {
  .agegate__card { padding: 34px 22px 26px; }
}
