/* ============================================================
   SugarDaddyMeet România — Design System
   Bucharest European Luxury × Romanian Modern Elegance
   Burgundy Romance × Contemporary Dating
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --burgundy: #6e3445;
  --burgundy-deep: #5a2937;
  --aubergine: #29212a;
  --aubergine-soft: #2f2831;
  --muted-rose: #b67582;
  --champagne: #b79b73;
  --ivory: #f7f3ed;
  --warm-stone: #ddd4ca;
  --sage-grey: #bcc4be;
  --charcoal: #2c292b;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --nav-h: 72px;
  --nav-h-mobile: 64px;

  --shadow-lg: 0 24px 48px rgba(30, 22, 28, 0.16);
  --shadow-md: 0 12px 32px rgba(30, 22, 28, 0.12);
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Role guide pages ───────────────────────────────────────────── */
.role-guide {
  background: var(--ivory);
}

.role-guide--soft,
.role-faq {
  background: var(--warm-stone);
}

.role-guide__head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .65fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.75rem;
}

.role-guide__head .section-title {
  max-width: 46rem;
  margin-top: 1rem;
}

.role-guide__head > p {
  max-width: 34rem;
  justify-self: end;
}

.role-type-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.role-type-card {
  position: relative;
  min-height: 18.5rem;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(110, 52, 69, .15);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 1rem 2.5rem rgba(41, 33, 42, .05);
}

.role-type-card::after {
  content: "";
  position: absolute;
  width: 7rem;
  height: 7rem;
  right: -3.5rem;
  top: -3.5rem;
  border-radius: 50%;
  background: rgba(185, 143, 89, .1);
}

.role-type-grid--rose .role-type-card::after {
  background: rgba(174, 104, 123, .12);
}

.role-type-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.5rem;
  border-radius: 50%;
  color: var(--ivory);
  background: var(--aubergine);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.role-type-grid--rose .role-type-card__num {
  background: var(--burgundy);
}

.role-type-card h3,
.role-place-grid h3,
.role-safety-card h3 {
  margin: 0 0 .85rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}

.role-type-card p,
.role-place-grid p,
.role-safety-card p {
  color: rgba(44, 41, 43, .72);
  line-height: 1.7;
}

.role-type-card__tip {
  display: block;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(110, 52, 69, .12);
  color: var(--burgundy);
  font-size: .82rem;
  font-weight: 700;
}

.role-place-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(110, 52, 69, .14);
  border-radius: 1.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, .58);
}

.role-place-grid article {
  min-width: 0;
  padding: 2rem;
  border-right: 1px solid rgba(110, 52, 69, .12);
  border-bottom: 1px solid rgba(110, 52, 69, .12);
}

.role-place-grid article:nth-child(2n) { border-right: 0; }
.role-place-grid article:nth-last-child(-n+2) { border-bottom: 0; }

.role-place-grid article > span {
  display: block;
  margin-bottom: .75rem;
  color: var(--champagne);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.role-place-grid--rose article > span { color: var(--muted-rose); }

.role-place-grid a,
.role-safety-card a {
  display: inline-flex;
  margin-top: .8rem;
  color: var(--burgundy);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}

.role-place-grid a:hover,
.role-safety-card a:hover { text-decoration: underline; }

.role-advice {
  align-items: stretch;
  gap: clamp(2rem, 5vw, 5rem);
}

.role-advice .section-title { margin: 1rem 0 1.25rem; }

.role-checklist {
  display: grid;
  gap: .85rem;
  padding: 0;
  margin: 1.75rem 0 0;
  list-style: none;
}

.role-checklist li {
  position: relative;
  padding-left: 1.75rem;
  color: rgba(44, 41, 43, .76);
  line-height: 1.65;
}

.role-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55rem;
  width: .65rem;
  height: .65rem;
  border: 2px solid var(--champagne);
  border-radius: 50%;
}

.role-checklist--rose li::before { border-color: var(--muted-rose); }

.role-safety-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 3.5rem);
  border-radius: 1.5rem;
  color: var(--ivory);
  background: linear-gradient(145deg, var(--aubergine), #4d3340);
  box-shadow: 0 1.5rem 3rem rgba(41, 33, 42, .14);
}

.role-safety-card--rose {
  background: linear-gradient(145deg, var(--burgundy), #8d5364);
}

.role-safety-card h3 { font-size: clamp(1.7rem, 3vw, 2.25rem); }
.role-safety-card p { color: rgba(247, 243, 237, .76); }
.role-safety-card a { color: var(--ivory); }

.role-safety-card__label {
  margin-bottom: 1rem;
  color: var(--champagne);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.role-safety-card--rose .role-safety-card__label { color: #f2c9d4; }

.role-faq .city-faq {
  max-width: 58rem;
  margin-inline: auto;
}

@media (max-width: 900px) {
  .role-guide__head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .role-guide__head > p { justify-self: start; }
  .role-type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .role-guide__head { gap: 1rem; margin-bottom: 1.75rem; }
  .role-type-grid,
  .role-place-grid { grid-template-columns: 1fr; }
  .role-type-card { min-height: 0; padding: 1.5rem; }
  .role-place-grid article,
  .role-place-grid article:nth-child(2n),
  .role-place-grid article:nth-last-child(-n+2) {
    padding: 1.5rem;
    border-right: 0;
    border-bottom: 1px solid rgba(110, 52, 69, .12);
  }
  .role-place-grid article:last-child { border-bottom: 0; }
  .role-safety-card { padding: 1.75rem; }
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  background-color: var(--ivory);
  color: var(--charcoal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.15;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

::selection {
  background: var(--burgundy);
  color: var(--ivory);
}

:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 1024px) {
  .container {
    padding-inline: 2rem;
  }
}

.section {
  padding-block: 4.5rem;
}

@media (min-width: 1024px) {
  .section {
    padding-block: 7rem;
  }
}

.section--tight {
  padding-block: 3.5rem;
}

.section--flush {
  padding-block: 0;
}

.page {
  padding-top: var(--nav-h-mobile);
}

@media (min-width: 1024px) {
  .page {
    padding-top: var(--nav-h);
  }
}

.page--flush {
  padding-top: 0;
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

.eyebrow--center {
  justify-content: center;
}

.eyebrow--center::after {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

.eyebrow--plain::before {
  display: none;
}

.lead {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(44, 41, 43, 0.7);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: normal;
  color: var(--burgundy);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.9rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.25s var(--ease), background-color 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--burgundy);
  color: var(--ivory);
}

.btn--primary:hover {
  background: var(--burgundy-deep);
}

.btn--light {
  background: var(--ivory);
  color: var(--burgundy);
}

.btn--light:hover {
  background: #fff;
}

.btn--outline-light {
  border: 1px solid rgba(247, 243, 237, 0.3);
  color: var(--ivory);
}

.btn--outline-light:hover {
  border-color: rgba(247, 243, 237, 0.7);
}

.btn--outline-dark {
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
}

.btn--outline-dark:hover {
  background: rgba(110, 52, 69, 0.06);
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.02rem;
}

.btn--block {
  width: 100%;
}

.btn .icon-arrow {
  transition: transform 0.25s var(--ease);
}

@media (max-width: 359px) {
  .section-title {
    overflow-wrap: anywhere;
  }

  .btn {
    max-width: 100%;
    white-space: normal;
    line-height: 1.25;
    text-align: center;
  }

  .btn--lg {
    padding-inline: 1.25rem;
  }
}

.btn:hover .icon-arrow {
  transform: translateX(3px);
}

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: var(--nav-h-mobile);
  transition: background-color 0.3s;
}

@media (min-width: 1024px) {
  .nav {
    height: var(--nav-h);
  }
}

.nav--light {
  background: rgba(247, 243, 237, 0.95);
  border-bottom: 1px solid var(--warm-stone);
  color: var(--charcoal);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav--dark {
  background: rgba(41, 33, 42, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--ivory);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.nav__logo .brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.nav__logo .tld {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.nav--light .brand { color: var(--burgundy); }
.nav--light .tld { color: var(--muted-rose); }
.nav--dark .brand { color: var(--champagne); }
.nav--dark .tld { color: var(--muted-rose); }

.nav__links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 1024px) {
  .nav__links {
    display: flex;
  }
}

.nav__item {
  position: relative;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: opacity 0.2s, background-color 0.2s;
}

.nav__link:hover {
  opacity: 0.72;
}

.nav__link .chev {
  width: 12px;
  height: 12px;
  opacity: 0.6;
  transition: transform 0.25s;
}

.nav__item:hover .chev,
.nav__item:focus-within .chev {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 15rem;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  background: var(--aubergine);
  color: var(--ivory);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
}

.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown a {
  display: block;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-size: 0.88rem;
  color: rgba(247, 243, 237, 0.82);
  transition: color 0.2s, background-color 0.2s;
}

.nav__dropdown a:hover {
  color: var(--champagne);
  background: rgba(255, 255, 255, 0.05);
}

.nav__cta {
  display: none;
  align-items: center;
  gap: 0.9rem;
}

@media (min-width: 1024px) {
  .nav__cta {
    display: flex;
  }
}

.nav__cta .signin {
  font-size: 0.88rem;
  font-weight: 500;
}

.nav--light .signin { color: rgba(44, 41, 43, 0.6); }
.nav--light .signin:hover { color: var(--burgundy); }
.nav--dark .signin { color: rgba(247, 243, 237, 0.72); }
.nav--dark .signin:hover { color: var(--champagne); }

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 10px;
  color: inherit;
}

.nav__toggle svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 1024px) {
  .nav__toggle {
    display: none;
  }
}

.nav__mobile {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.nav__mobile.is-open {
  display: block;
  height: calc(100vh - var(--nav-h-mobile));
  height: calc(100dvh - var(--nav-h-mobile));
  max-height: calc(100vh - var(--nav-h-mobile));
  max-height: calc(100dvh - var(--nav-h-mobile));
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nav--light .nav__mobile {
  border-top-color: var(--warm-stone);
  background: var(--ivory);
}

.nav--dark .nav__mobile {
  background: var(--aubergine);
}

.nav__mobile-group {
  padding: 1rem 1.5rem 0.5rem;
}

.nav__mobile-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.nav--light .nav__mobile-label { color: var(--muted-rose); }
.nav--dark .nav__mobile-label { color: var(--champagne); }

.nav__mobile a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.nav__mobile .btn {
  display: flex;
  width: calc(100% - 3rem);
  min-height: 3rem;
  margin: 0.75rem 1.5rem max(1.5rem, env(safe-area-inset-bottom));
  padding: 0.8rem 1rem;
  border-radius: 999px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background-color: var(--aubergine);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__content {
  position: relative;
  width: 100%;
  padding-block: 8rem 3rem;
}

.hero__inner {
  max-width: 52rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--ivory);
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  overflow-wrap: break-word;
}

.hero__title em {
  font-style: normal;
  color: var(--muted-rose);
}

.hero__title .hero__title-role {
  font-style: italic;
  text-shadow: 0 4px 24px rgba(15, 9, 14, 0.22);
}

.hero__title .hero__title-role--daddy {
  color: var(--champagne);
}

.hero__title .hero__title-role--baby {
  color: var(--muted-rose);
}

.hero__title-location {
  display: inline-block;
  white-space: nowrap;
  overflow-wrap: normal;
}

.hero__sub {
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.65;
  color: rgba(247, 243, 237, 0.72);
  max-width: 36rem;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__trust {
  font-size: 0.8rem;
  color: rgba(247, 243, 237, 0.42);
}

@media (max-width: 767px) {
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    justify-content: center;
  }

  .hero__bg {
    object-position: center top;
  }

  .hero__overlay {
    background: linear-gradient(to bottom, rgba(20, 15, 25, 0.08) 0%, rgba(20, 15, 25, 0.18) 38%, rgba(20, 15, 25, 0) 68%) !important;
  }

  .hero__content {
    display: flex;
    flex: 1;
    align-items: center;
    padding-block: 43vh 1.5rem;
  }

  .hero__inner {
    max-width: 23rem;
    margin-inline: auto;
    text-align: center;
  }

  .hero__inner .eyebrow,
  .hero__actions {
    justify-content: center;
  }

  .hero__title {
    font-size: clamp(2.15rem, 10vw, 2.65rem);
    margin-bottom: 1rem;
  }

  .hero__sub {
    max-width: 22rem;
    margin-inline: auto;
    margin-bottom: 1.35rem;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero__actions {
    margin-bottom: 1.25rem;
  }

  .hero .statbar {
    display: none;
  }

  .hero__trust {
    max-width: 20rem;
    margin-inline: auto;
    line-height: 1.5;
  }
}

/* ---------- Hero stat bar ---------- */
.statbar {
  position: relative;
  border-top: 1px solid rgba(247, 243, 237, 0.12);
  background: rgba(41, 33, 42, 0.82);
  backdrop-filter: blur(12px);
}

.statbar__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding-block: 1.2rem;
}

.statbar__item {
  min-width: 0;
  padding: 0.85rem 0;
  text-align: center;
}

.statbar__item + .statbar__item {
  border-top: 1px solid rgba(247, 243, 237, 0.12);
}

.statbar__val {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--champagne);
}

.statbar__label {
  font-size: 0.76rem;
  color: rgba(247, 243, 237, 0.45);
}

@media (min-width: 768px) {
  .statbar__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .statbar__item {
    padding: 0 2rem;
  }

  .statbar__item + .statbar__item {
    border-top: 0;
    border-left: 1px solid rgba(247, 243, 237, 0.16);
  }
}

/* ---------- Page hero (interior) ---------- */
.pagehero {
  position: relative;
  padding-block: 6rem 4rem;
  background-color: var(--aubergine);
  overflow: hidden;
}

.pagehero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}

.pagehero__overlay {
  position: absolute;
  inset: 0;
}

.pagehero__inner {
  position: relative;
}

/* ---------- Section head ---------- */
.sec-head {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .sec-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.sec-head--center {
  text-align: center;
  justify-content: center;
  align-items: center;
}

/* ---------- Grids ---------- */
.grid {
  display: grid;
  gap: 1.25rem;
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }
.grid--5 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid--5 { grid-template-columns: repeat(5, 1fr); }
}

.two-col {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

/* ---------- Badges & chips ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}

.badge--verified {
  background: var(--burgundy);
  color: var(--ivory);
}

.badge--verified svg {
  width: 11px;
  height: 11px;
}

.badge--online {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  backdrop-filter: blur(4px);
}

.badge--online .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
}

.badge--role-daddy {
  background: rgba(110, 52, 69, 0.12);
  color: var(--burgundy);
}

.badge--role-baby {
  background: rgba(182, 117, 130, 0.18);
  color: var(--muted-rose);
}

.chip {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.74rem;
  background: var(--warm-stone);
  color: var(--charcoal);
}

.chip--dark {
  background: rgba(247, 243, 237, 0.08);
  color: rgba(247, 243, 237, 0.6);
}

.chip--outline {
  background: transparent;
  border: 1px solid rgba(183, 155, 115, 0.35);
  color: var(--champagne);
}

.chip--rose {
  background: rgba(182, 117, 130, 0.12);
  color: var(--muted-rose);
}

/* ---------- Member card ---------- */
.member-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--warm-stone);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.member-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.member-card--dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.member-card__media {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.member-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.member-card__media--private img {
  filter: blur(5px);
  transform: scale(1.07);
}

.member-card:hover .member-card__media img {
  transform: scale(1.05);
}

.member-card:hover .member-card__media--private img {
  transform: scale(1.1);
}

.member-card__lock {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(247, 243, 237, 0.42);
  border-radius: 50%;
  color: var(--ivory);
  background: rgba(41, 33, 42, 0.7);
  box-shadow: 0 10px 28px rgba(25, 18, 24, 0.24);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
}

.member-card__lock svg {
  width: 1.2rem;
  height: 1.2rem;
}

/* Keep role-page profile photos private, matching the homepage treatment. */
.member-grid--private .member-card__media img {
  filter: blur(5px);
  transform: scale(1.07);
}

.member-grid--private .member-card:hover .member-card__media img {
  transform: scale(1.1);
}

.member-grid--private .member-card__media::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background-color: rgba(42, 33, 43, 0.62);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='1.8'%3E%3Crect x='5' y='10' width='14' height='10' rx='2'/%3E%3Cpath d='M8 10V7a4 4 0 0 1 8 0v3'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 1.2rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.member-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 55%);
}

.member-card__flag {
  position: absolute;
  top: 0.75rem;
}

.member-card__flag--left { left: 0.75rem; }
.member-card__flag--right { right: 0.75rem; }

.member-card__meta {
  position: absolute;
  left: 1rem;
  bottom: 0.75rem;
  color: #fff;
}

.member-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.member-card__city {
  font-size: 0.76rem;
  opacity: 0.8;
}

.member-card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

.member-card__role {
  align-self: flex-start;
}

.member-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.member-card__tags .chip {
  font-size: 0.7rem;
  padding: 0.28rem 0.6rem;
}

.member-card__btn {
  display: block;
  margin-top: auto;
  width: 100%;
  padding: 0.7rem;
  border-radius: var(--radius-sm);
  background: var(--burgundy);
  color: var(--ivory);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s;
}

.member-card__btn:hover {
  background: var(--burgundy-deep);
}

/* ---------- Role split ---------- */
.role-split {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .role-split {
    grid-template-columns: 1fr 1fr;
  }
}

.role-panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 440px;
  padding: 2.5rem;
  overflow: hidden;
}

.role-panel__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: opacity 0.6s, transform 0.7s var(--ease);
}

.role-panel:hover .role-panel__bg {
  opacity: 0.5;
  transform: scale(1.05);
}

.role-panel__scrim {
  position: absolute;
  inset: 0;
}

.role-panel__content {
  position: relative;
}

.role-panel__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.role-panel__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ivory);
  margin-bottom: 0.9rem;
}

.role-panel__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(247, 243, 237, 0.62);
  max-width: 22rem;
  margin-bottom: 1.1rem;
}

.role-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.role-panel__more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.role-panel__more .icon-arrow {
  transition: transform 0.25s var(--ease);
}

.role-panel:hover .role-panel__more .icon-arrow {
  transform: translateX(3px);
}

/* Desktop: mirror the Sugar Daddy card so its text hugs the center seam,
   symmetric with the Sugar Baby card. */
@media (min-width: 1024px) {
  .role-panel:first-child {
    justify-content: flex-end;
  }
  .role-panel:first-child .role-panel__content {
    text-align: right;
  }
  .role-panel:first-child .role-panel__tags {
    justify-content: flex-end;
  }
}

/* ---------- Stats ---------- */
.stat {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--warm-stone);
}

.stat--dark {
  background: rgba(247, 243, 237, 0.05);
  border: 1px solid rgba(247, 243, 237, 0.08);
}

.stat__val {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--burgundy);
}

.stat--dark .stat__val { color: var(--champagne); }

.stat__label {
  font-size: 0.82rem;
  color: rgba(44, 41, 43, 0.62);
}

.stat--dark .stat__label { color: rgba(247, 243, 237, 0.5); }

.stat__sub {
  font-size: 0.72rem;
  color: rgba(44, 41, 43, 0.45);
}

.stat--dark .stat__sub { color: rgba(247, 243, 237, 0.3); }

/* ---------- Editorial cards ---------- */
.editorial-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid rgba(44, 41, 43, 0.08);
}

.editorial-card__media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.editorial-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.editorial-card:hover .editorial-card__media img {
  transform: scale(1.05);
}

.editorial-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

.editorial-card__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.editorial-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.3;
}

.editorial-card__excerpt {
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(44, 41, 43, 0.6);
}

/* ---------- Feature row (image + text) ---------- */
.feature {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .feature {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

/* Image-only variant: a single media block (badge/float are absolutely
   positioned), so the 2-column grid would otherwise leave an empty column. */
.feature--solo {
  grid-template-columns: 1fr;
}

.feature__media {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 320px;
}

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

/* Keep the couple comfortably inside the crop on narrow screens. */
.feature__media .feature__image--european {
  object-position: 70% center;
}

.feature--european .feature__media {
  height: 520px;
}

@media (min-width: 1024px) {
  .feature--european {
    align-items: stretch;
  }

  .feature--european .feature__media {
    height: auto;
    min-height: 520px;
  }

  .feature--european .feature__media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to right, transparent 82%, var(--ivory));
  }

  .feature__media .feature__image--european {
    object-position: center;
  }

}

.feature__media--tall img {
  height: 520px;
}

.feature__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--burgundy);
  color: var(--ivory);
  box-shadow: var(--shadow-md);
}

.feature__badge--right {
  left: auto;
  right: -1.5rem;
  background: var(--muted-rose);
}

.feature__badge--stone {
  background: var(--sage-grey);
  color: var(--charcoal);
}

.feature__badge--champagne {
  background: var(--champagne);
  color: var(--charcoal);
}

.feature__badge-val {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.feature__badge-label {
  font-size: 0.72rem;
  opacity: 0.75;
}

.feature__float {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(41, 33, 42, 0.85);
  color: var(--ivory);
  backdrop-filter: blur(8px);
}

.feature__float--left {
  right: auto;
  left: 1.25rem;
}

.feature__float-label {
  font-size: 0.7rem;
  margin-bottom: 0.2rem;
  color: var(--champagne);
}

.feature__float-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
}

/* ---------- Icon list items ---------- */
.icon-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--warm-stone);
}

.icon-item__ico {
  font-size: 1.4rem;
  flex-shrink: 0;
  line-height: 1.2;
}

.icon-item__title {
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--charcoal);
}

.icon-item__desc {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(44, 41, 43, 0.6);
}

.icon-item--dark {
  background: rgba(247, 243, 237, 0.05);
  border: 1px solid rgba(247, 243, 237, 0.08);
}

.icon-item--dark .icon-item__title { color: var(--champagne); }
.icon-item--dark .icon-item__desc { color: rgba(247, 243, 237, 0.5); }

/* ---------- Icon grid card ---------- */
.icon-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--ivory);
}

.icon-card--dark {
  background: rgba(247, 243, 237, 0.05);
  border: 1px solid rgba(247, 243, 237, 0.08);
}

.icon-card__ico {
  font-size: 1.7rem;
  margin-bottom: 0.8rem;
}

.icon-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
}

.icon-card--dark .icon-card__title { color: var(--champagne); }

.icon-card__desc {
  font-size: 0.83rem;
  line-height: 1.55;
  color: rgba(44, 41, 43, 0.58);
}

.icon-card--dark .icon-card__desc { color: rgba(247, 243, 237, 0.5); }

/* ---------- City discovery ---------- */
.city-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.city-tab {
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(247, 243, 237, 0.08);
  color: rgba(247, 243, 237, 0.5);
  border: 1px solid rgba(247, 243, 237, 0.1);
  transition: all 0.2s;
}

.city-tab.is-active {
  background: var(--burgundy);
  color: var(--ivory);
  border-color: var(--burgundy);
}

.city-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .city-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.city-card {
  position: relative;
  border: 1px solid rgba(183, 155, 115, 0.68);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 240px;
  box-shadow:
    inset 0 0 0 1px rgba(247, 243, 237, 0.1),
    0 14px 32px rgba(17, 11, 18, 0.22);
  transition:
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.city-card:hover {
  border-color: rgba(216, 191, 158, 0.95);
  box-shadow:
    inset 0 0 0 1px rgba(247, 243, 237, 0.18),
    0 18px 38px rgba(17, 11, 18, 0.32);
}

/* "Coming soon" placeholder — no image, dashed outline. */
.city-card--soon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 240px;
  background: rgba(247, 243, 237, 0.03);
  border: 1px dashed rgba(247, 243, 237, 0.18);
  cursor: default;
}

.city-card--soon__tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted-rose);
  margin-bottom: 0.5rem;
}

.city-card--soon__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: rgba(247, 243, 237, 0.55);
}

.city-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.city-card:hover .city-card__img {
  transform: scale(1.05);
}

.city-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(41, 33, 42, 0.94), rgba(41, 33, 42, 0.15) 62%);
}

.city-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.4rem;
}

.city-card__count {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne);
}

.city-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ivory);
}

.city-card__desc {
  font-size: 0.85rem;
  color: rgba(247, 243, 237, 0.62);
  margin-bottom: 0.5rem;
}

.city-card__link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--champagne);
}

/* ---------- Mobile app showcase ---------- */
.app-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(183, 155, 115, 0.16), transparent 30rem),
    linear-gradient(135deg, var(--aubergine) 0%, #3b2631 58%, var(--burgundy-deep) 100%);
}

.app-showcase::before {
  content: "";
  position: absolute;
  width: 22rem;
  height: 22rem;
  left: -10rem;
  bottom: -13rem;
  border: 1px solid rgba(183, 155, 115, 0.16);
  border-radius: 50%;
}

.app-showcase__inner {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.app-showcase__copy {
  max-width: 34rem;
}

.app-showcase__copy .section-title {
  margin-top: 1.25rem;
}

.app-showcase__copy .section-title em {
  color: var(--champagne);
}

.app-showcase__lead {
  max-width: 32rem;
  margin-top: 1.25rem;
  color: rgba(247, 243, 237, 0.72);
  font-size: 1rem;
  line-height: 1.75;
}

.app-showcase__features {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.app-showcase__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(247, 243, 237, 0.88);
  font-size: 0.92rem;
  line-height: 1.5;
}

.app-showcase__features svg {
  flex: 0 0 auto;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.05rem;
  color: var(--champagne);
}

.app-showcase__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 3.6rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(247, 243, 237, 0.24);
  border-radius: 0.75rem;
  background: #09090a;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  transition: transform 0.25s var(--ease), border-color 0.25s, background-color 0.25s;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(247, 243, 237, 0.5);
  background: #151316;
}

.store-badge:active {
  transform: translateY(0);
}

.store-badge > svg {
  flex: 0 0 auto;
}

.store-badge__apple {
  width: 1.75rem;
  height: 1.75rem;
}

.store-badge__play {
  width: 1.65rem;
  height: 1.9rem;
}

.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.store-badge small {
  margin-bottom: 0.22rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.62rem;
  letter-spacing: 0.02em;
}

.store-badge strong {
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}

.app-showcase__note {
  margin-top: 0.85rem;
  color: rgba(247, 243, 237, 0.5);
  font-size: 0.75rem;
  line-height: 1.5;
}

.app-showcase__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.app-showcase__visual img {
  width: min(100%, 44rem);
  height: auto;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, 0.25));
}

@media (min-width: 900px) {
  .app-showcase__inner {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: 3rem;
  }

  .app-showcase__visual img {
    width: 112%;
    max-width: none;
  }
}

@media (max-width: 639px) {
  .app-showcase__badges {
    flex-direction: column;
    align-items: stretch;
  }

  .store-badge {
    width: 100%;
    max-width: 15rem;
    justify-content: flex-start;
  }

  .app-showcase__visual {
    margin-inline: -0.5rem;
  }
}

.city-mini {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 110px;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(247, 243, 237, 0.05);
  border: 1px solid rgba(247, 243, 237, 0.08);
}

.city-mini__count {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--champagne);
}

.city-mini__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ivory);
}

.city-mini__desc {
  font-size: 0.74rem;
  color: rgba(247, 243, 237, 0.4);
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .steps { grid-template-columns: repeat(5, 1fr); }
}

.step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--warm-stone);
  color: var(--charcoal);
  flex-shrink: 0;
}

.step--first .step__num {
  background: var(--burgundy);
  color: var(--ivory);
}

.step__title {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.step__body {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(44, 41, 43, 0.6);
}

/* 3-step variant (role pages) — centered, compact row. */
@media (min-width: 640px) {
  .steps--3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 46rem;
    margin-inline: auto;
  }
}

/* ---------- Accordion (FAQ) ---------- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion__item {
  border: 1px solid var(--warm-stone);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ivory);
}

.accordion__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  text-align: left;
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: background-color 0.2s;
}

.accordion__btn:hover {
  background: rgba(110, 52, 69, 0.04);
}

.accordion__icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--burgundy);
  transition: transform 0.25s;
}

.accordion__item.is-open .accordion__icon {
  transform: rotate(45deg);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease);
}

.accordion__content {
  padding: 0 1.4rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(44, 41, 43, 0.66);
}

/* ---------- Do / Don't ---------- */
.dodont {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .dodont { grid-template-columns: 1fr 1fr; }
}

.do,
.dont {
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius-md);
  font-size: 0.93rem;
  line-height: 1.55;
  color: rgba(44, 41, 43, 0.82);
}

.do {
  background: rgba(110, 52, 69, 0.055);
  border: 1px solid rgba(110, 52, 69, 0.14);
}

.dont {
  background: rgba(44, 41, 43, 0.04);
  border: 1px solid rgba(44, 41, 43, 0.08);
  color: rgba(44, 41, 43, 0.68);
}

.do__row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.45rem;
}

.do__mark,
.dont__mark {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}

.do__mark { background: rgba(110, 52, 69, 0.14); color: var(--burgundy); }
.dont__mark { background: rgba(44, 41, 43, 0.08); color: rgba(44, 41, 43, 0.55); }

.do__label,
.dont__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.do__label { color: var(--burgundy); }
.dont__label { color: rgba(44, 41, 43, 0.5); }

.do__text,
.dont__text {
  margin: 0;
}

/* ---------- Tip card ---------- */
.tip-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--warm-stone);
  border: 1px solid rgba(44, 41, 43, 0.06);
  box-shadow: 0 1px 2px rgba(44, 41, 43, 0.04);
}

.tip-card__num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--champagne);
}

.tip-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.3;
}

.tip-card__body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(44, 41, 43, 0.7);
}

/* ---------- Myth card ---------- */
.myth-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.6rem 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(247, 243, 237, 0.04);
  border: 1px solid rgba(247, 243, 237, 0.1);
}

.myth-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.myth-card__label--myth { color: var(--muted-rose); }
.myth-card__label--real { color: var(--champagne); }

.myth-card__myth {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(247, 243, 237, 0.5);
  text-decoration: line-through;
  text-decoration-color: rgba(183, 155, 115, 0.5);
}

.myth-card__real {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(247, 243, 237, 0.92);
}

/* ---------- Checklist ---------- */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.checklist__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--ivory);
  border: 1px solid var(--warm-stone);
  text-align: left;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: background-color 0.2s, border-color 0.2s;
}

.checklist__item.is-checked {
  background: rgba(110, 52, 69, 0.08);
  border-color: rgba(110, 52, 69, 0.3);
  color: var(--burgundy);
}

.checklist__box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 0.85rem;
  background: var(--warm-stone);
  color: var(--charcoal);
  transition: background-color 0.2s, color 0.2s;
}

.checklist__item.is-checked .checklist__box {
  background: var(--burgundy);
  color: var(--ivory);
}

.checklist__item.is-checked .checklist__text {
  text-decoration: line-through;
  opacity: 0.7;
}

/* ---------- Progress bar ---------- */
.bar {
  height: 8px;
  border-radius: 999px;
  background: var(--warm-stone);
  overflow: hidden;
}

.bar__fill {
  height: 100%;
  border-radius: 999px;
  background: var(--burgundy);
  width: 0;
  transition: width 0.5s var(--ease);
}

/* ---------- Filter chips ---------- */
.filter-row {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: none;
}

.filter-row::-webkit-scrollbar { display: none; }

.filter-chip {
  flex-shrink: 0;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--warm-stone);
  color: var(--charcoal);
  transition: all 0.2s;
}

.filter-chip.is-active {
  background: var(--burgundy);
  color: var(--ivory);
}

.sticky-bar {
  position: sticky;
  top: var(--nav-h-mobile);
  z-index: 30;
  padding-block: 1rem;
  border-bottom: 1px solid var(--warm-stone);
  background: rgba(247, 243, 237, 0.96);
  backdrop-filter: blur(12px);
}

@media (min-width: 1024px) {
  .sticky-bar {
    top: var(--nav-h);
  }
}

/* ---------- Wishlist card ---------- */
.wish-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--warm-stone);
}

.wish-card__media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.wish-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.wish-card:hover .wish-card__media img {
  transform: scale(1.05);
}

.wish-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 41, 43, 0.4), transparent 50%);
}

.wish-card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--burgundy);
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 600;
}

.wish-card__save {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 243, 237, 0.88);
  color: var(--charcoal);
  font-size: 1.1rem;
  transition: all 0.2s;
}

.wish-card__save.is-saved {
  background: var(--burgundy);
  color: var(--ivory);
}

.wish-card__body {
  padding: 1.5rem;
}

.wish-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.wish-card__desc {
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(44, 41, 43, 0.6);
}

/* ---------- Chatroom ---------- */
.chatroom {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100dvh;
  background: var(--aubergine);
  overflow: hidden;
}

.chatroom__titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid rgba(247, 243, 237, 0.08);
  flex-shrink: 0;
}

.chatroom__titlebar-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.chatroom__toggle {
  display: inline-flex;
  padding: 0.4rem;
  border-radius: 8px;
  color: rgba(247, 243, 237, 0.5);
}

@media (min-width: 1024px) {
  .chatroom__toggle { display: none; }
}

.chatroom__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ivory);
}

.chatroom__online {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(52, 211, 153, 0.12);
  color: #34d399;
}

.chatroom__online .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
}

.chatroom__count {
  font-size: 0.76rem;
  color: rgba(247, 243, 237, 0.35);
}

.chatroom__body {
  display: flex;
  flex: 1;
  overflow: hidden;
  position: relative;
}

.chatroom__sidebar {
  position: absolute;
  inset: 0 auto 0 0;
  width: min(22rem, 100%);
  background: rgba(38, 30, 39, 0.98);
  border-right: 1px solid rgba(247, 243, 237, 0.07);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s var(--ease);
  z-index: 40;
}

.chatroom__backdrop {
  position: absolute;
  inset: 0;
  z-index: 35;
  background: rgba(0, 0, 0, 0.45);
}

.chatroom__backdrop[hidden] {
  display: none;
}

.chatroom__sidebar.is-open {
  transform: translateX(0);
}

@media (min-width: 1024px) {
  .chatroom__sidebar {
    position: relative;
    width: 300px;
    transform: none;
    flex-shrink: 0;
  }

  .chatroom__backdrop {
    display: none;
  }
}

.chatroom__filters {
  padding: 1rem;
  border-bottom: 1px solid rgba(247, 243, 237, 0.07);
}

.chatroom__filter-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 243, 237, 0.3);
  margin-bottom: 0.5rem;
}

.chatroom__filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.chatroom__filter-group:last-child {
  margin-bottom: 0;
}

.cf-chip {
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 500;
  background: rgba(247, 243, 237, 0.06);
  color: rgba(247, 243, 237, 0.45);
  border: 1px solid rgba(247, 243, 237, 0.06);
  transition: all 0.2s;
}

.cf-chip.is-active {
  background: var(--burgundy);
  color: var(--ivory);
  border-color: var(--burgundy);
}

.cf-chip.is-active--gold {
  background: rgba(183, 155, 115, 0.2);
  color: var(--champagne);
  border-color: rgba(183, 155, 115, 0.4);
}

.cf-chip.is-active--rose {
  background: rgba(110, 52, 69, 0.35);
  color: var(--muted-rose);
  border-color: rgba(182, 117, 130, 0.35);
}

.chatroom__members {
  flex: 1;
  overflow-y: auto;
}

.chat-member {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(247, 243, 237, 0.04);
  border-left: 3px solid transparent;
  transition: background-color 0.2s;
}

.chat-member.is-active {
  background: rgba(110, 52, 69, 0.22);
  border-left-color: var(--burgundy);
}

.chat-member__avatar {
  position: relative;
  flex-shrink: 0;
}

.chat-member__avatar img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
}

.chat-member__dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #34d399;
  border: 2px solid var(--aubergine);
}

.chat-member__info {
  flex: 1;
  min-width: 0;
}

.chat-member__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.15rem;
}

.chat-member__name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ivory);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.chat-member__time {
  font-size: 0.7rem;
  color: rgba(247, 243, 237, 0.25);
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.chat-member__bottom {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.chat-member__msg {
  font-size: 0.78rem;
  color: rgba(247, 243, 237, 0.38);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.chat-member__v {
  font-size: 0.7rem;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: rgba(110, 52, 69, 0.35);
  color: var(--muted-rose);
  flex-shrink: 0;
}

.chatroom__empty {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(247, 243, 237, 0.3);
}

.chatroom__panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid rgba(247, 243, 237, 0.07);
  background: rgba(41, 33, 42, 0.85);
  flex-shrink: 0;
}

.chat-head__avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.chat-head__info { flex: 1; min-width: 0; }

.chat-head__name-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.chat-head__name {
  font-weight: 600;
  color: var(--ivory);
}

.chat-head__status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  color: rgba(247, 243, 237, 0.38);
  margin-top: 0.1rem;
}

.chat-head__status .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
}

.chat-head__actions {
  display: flex;
  gap: 0.4rem;
  flex-shrink: 0;
}

.chat-head__action {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: rgba(247, 243, 247, 0.06);
  color: rgba(247, 243, 237, 0.4);
}

.chat-interests {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border-bottom: 1px solid rgba(247, 243, 237, 0.05);
  overflow-x: auto;
  flex-shrink: 0;
  scrollbar-width: none;
}

.chat-interests::-webkit-scrollbar { display: none; }

.chat-interests__label {
  font-size: 0.72rem;
  color: rgba(247, 243, 237, 0.25);
  flex-shrink: 0;
}

.chat-msgs {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: rgba(41, 33, 42, 0.4);
}

.chat-day {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-block: 0.6rem;
}

.chat-day::before,
.chat-day::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(247, 243, 237, 0.06);
}

.chat-day span {
  font-size: 0.72rem;
  color: rgba(247, 243, 237, 0.2);
}

.chat-msg {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
}

.chat-msg--me { justify-content: flex-end; }

.chat-msg__avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.chat-msg__body {
  max-width: 85%;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 640px) {
  .chat-msg__body { max-width: 72%; }
}

@media (min-width: 1024px) {
  .chat-msg__body { max-width: 60%; }
}

@media (max-width: 479px) {
  .chatroom__titlebar,
  .chat-head,
  .chat-msgs,
  .chat-inputbar {
    padding-inline: 1rem;
  }

  .chatroom__count {
    display: none;
  }
}

.chat-msg__bubble {
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  line-height: 1.5;
}

.chat-msg--me .chat-msg__bubble {
  background: var(--burgundy);
  color: var(--ivory);
  border-radius: 20px 20px 4px 20px;
}

.chat-msg--other .chat-msg__bubble {
  background: rgba(247, 243, 237, 0.08);
  color: rgba(247, 243, 237, 0.85);
  border-radius: 20px 20px 20px 4px;
}

.chat-msg__time {
  font-size: 0.7rem;
  color: rgba(247, 243, 237, 0.2);
}

.chat-msg--me .chat-msg__time { text-align: right; }

.chat-quick {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  overflow-x: auto;
  background: rgba(41, 33, 42, 0.7);
  flex-shrink: 0;
  scrollbar-width: none;
}

.chat-quick::-webkit-scrollbar { display: none; }

.chat-quick button {
  flex-shrink: 0;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.76rem;
  background: rgba(247, 243, 237, 0.06);
  color: rgba(247, 243, 237, 0.45);
  border: 1px solid rgba(247, 243, 237, 0.08);
}

.chat-inputbar {
  padding: 1rem 1.25rem;
  border-top: 1px solid rgba(247, 243, 237, 0.07);
  background: rgba(41, 33, 42, 0.9);
  flex-shrink: 0;
}

.chat-inputbar__row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
}

.chat-inputbar input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  background: rgba(247, 243, 237, 0.07);
  color: var(--ivory);
  border: 1px solid rgba(247, 243, 237, 0.1);
  outline: none;
}

.chat-inputbar input::placeholder {
  color: rgba(247, 243, 237, 0.3);
}

.chat-inputbar button {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--burgundy);
  color: var(--ivory);
  flex-shrink: 0;
  transition: background-color 0.2s;
}

.chat-inputbar button:disabled {
  background: rgba(247, 243, 237, 0.06);
  color: rgba(247, 243, 237, 0.2);
}

.chat-inputbar__hint {
  font-size: 0.72rem;
  color: rgba(247, 243, 237, 0.18);
  text-align: center;
  margin-top: 0.5rem;
}

/* ---------- Comparison cards ---------- */
.cmp-card {
  padding: 2rem;
  border-radius: var(--radius-md);
}

.cmp-card--dark {
  background: var(--aubergine);
}

.cmp-card--burgundy {
  background: var(--burgundy);
}

.cmp-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cmp-card--dark .cmp-card__title { color: var(--champagne); }
.cmp-card--burgundy .cmp-card__title { color: var(--muted-rose); }

.cmp-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cmp-card li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(247, 243, 237, 0.75);
}

.cmp-card li .tick {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: rgba(247, 243, 237, 0.1);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.cmp-card--dark li .tick { color: var(--champagne); }
.cmp-card--burgundy li .tick { color: var(--muted-rose); }

/* ---------- Flag item ---------- */
.flag-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--ivory);
  font-size: 0.82rem;
  color: rgba(44, 41, 43, 0.65);
}

.flag-item .x {
  font-weight: 700;
  color: rgba(44, 41, 43, 0.3);
}

.flag-item--dark {
  background: transparent;
  color: rgba(247, 243, 237, 0.55);
}

.flag-item--dark .x { color: rgba(247, 243, 237, 0.3); }

/* ---------- City comparison card ---------- */
.citycmp {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--aubergine);
}

.citycmp__media {
  position: relative;
  height: 200px;
}

.citycmp__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.citycmp__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--aubergine), transparent 60%);
}

.citycmp__media-body {
  position: absolute;
  bottom: 1rem;
  left: 1.25rem;
  z-index: 1;
}

.citycmp__count {
  font-size: 0.72rem;
  color: var(--champagne);
}

.citycmp__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ivory);
}

.citycmp__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  flex: 1;
}

.citycmp__sub {
  font-size: 0.8rem;
  color: var(--champagne);
}

.citycmp__text {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(247, 243, 237, 0.6);
  flex: 1;
}

.citycmp__zones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

/* ---------- Zone pill ---------- */
.zone {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: var(--warm-stone);
}

.zone__name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  color: var(--charcoal);
}

.zone__desc {
  font-size: 0.78rem;
  color: rgba(44, 41, 43, 0.5);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  padding-block: 5rem;
  text-align: center;
  background: var(--burgundy);
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, var(--champagne), transparent 60%);
  opacity: 0.12;
}

.cta-band__inner {
  position: relative;
  max-width: 42rem;
  margin-inline: auto;
}

.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--ivory);
  margin-bottom: 1.25rem;
}

.cta-band__title em {
  font-style: italic;
  color: var(--champagne);
}

.cta-band__text {
  font-size: 1.05rem;
  color: rgba(247, 243, 237, 0.72);
  margin-bottom: 2rem;
}

/* ---------- Testimonial ---------- */
.quote-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border-radius: var(--radius-md);
  background: rgba(247, 243, 237, 0.05);
  border: 1px solid rgba(247, 243, 237, 0.08);
}

.quote-card__mark {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 0.6;
  color: var(--muted-rose);
  margin-bottom: 1.25rem;
}

.quote-card__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(247, 243, 237, 0.72);
  margin-bottom: 1.5rem;
  flex: 1;
}

.quote-card__foot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(247, 243, 237, 0.08);
}

.quote-card__foot img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
}

.quote-card__name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--ivory);
}

.quote-card__role {
  font-size: 0.76rem;
  color: var(--muted-rose);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--aubergine);
  color: var(--ivory);
  padding-block: 4rem 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  }
}

.footer__brand,
.footer__col {
  min-width: 0;
}

.footer__brand .brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--champagne);
}

.footer__brand .tld {
  font-size: 0.85rem;
  color: var(--muted-rose);
}

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(247, 243, 237, 0.55);
  max-width: 20rem;
  margin-top: 1rem;
}

.footer__col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.25rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__col a {
  font-size: 0.88rem;
  color: rgba(247, 243, 237, 0.55);
  transition: color 0.2s;
}

.footer__col a:hover {
  color: var(--champagne);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(247, 243, 237, 0.1);
  font-size: 0.76rem;
  color: rgba(247, 243, 237, 0.35);
}

@media (min-width: 640px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* ---------- Auth ---------- */
.auth {
  display: grid;
  background: var(--aubergine);
}

.auth--page {
  min-height: calc(100vh - var(--nav-h-mobile));
  min-height: calc(100dvh - var(--nav-h-mobile));
}

@media (min-width: 1024px) {
  .auth {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .auth--page {
    min-height: calc(100vh - var(--nav-h));
    min-height: calc(100dvh - var(--nav-h));
  }
}

.auth__side {
  position: relative;
  display: none;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .auth__side {
    display: flex;
  }
}

.auth__side img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth__side::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(41, 33, 42, 0.85), rgba(110, 52, 69, 0.6));
}

.auth__side-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 4vw, 5rem);
  height: 100%;
}

.auth__side-copy {
  max-width: 36rem;
}

.auth__side blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.65rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--ivory);
  margin: 0 0 1.25rem;
}

.auth__side p {
  max-width: 31rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(247, 243, 237, 0.7);
}

.auth__main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem 3rem;
  background: var(--ivory);
}

.auth__form {
  width: 100%;
  max-width: 30rem;
  padding: clamp(1.25rem, 4vw, 2.25rem);
  border: 1px solid rgba(110, 52, 69, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 55px rgba(41, 33, 42, 0.1);
}

.auth__heading {
  margin-bottom: 1.75rem;
}

.auth__heading .eyebrow {
  color: var(--burgundy);
}

.auth__title {
  margin-top: 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--charcoal);
}

.auth__title em {
  font-style: italic;
  color: var(--burgundy);
}

.auth__intro {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(44, 41, 43, 0.62);
}

@media (min-width: 1024px) {
  .auth__main {
    align-items: center;
    padding: clamp(3rem, 5vw, 5rem);
  }

  .auth__form {
    max-width: 31rem;
  }
}

.auth__tabs {
  display: flex;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: var(--radius-md);
  background: var(--warm-stone);
  margin-bottom: 1.75rem;
}

.auth__tab {
  flex: 1;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(44, 41, 43, 0.5);
  transition: all 0.2s;
}

.auth__tab.is-active {
  background: var(--burgundy);
  color: var(--ivory);
}

.field {
  margin-bottom: 1.1rem;
}

.field__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(44, 41, 43, 0.5);
  margin-bottom: 0.5rem;
}

.field__input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  background: var(--warm-stone);
  color: var(--charcoal);
  border: 1px solid var(--warm-stone);
  outline: none;
  transition: border-color 0.2s;
}

.field__input:focus {
  border-color: var(--burgundy);
}

.role-select {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.role-select__opt {
  padding: 1.4rem 1.2rem;
  border-radius: var(--radius-md);
  text-align: left;
  border: 2px solid var(--warm-stone);
  background: var(--ivory);
  transition: all 0.2s;
}

.role-select__opt.is-active {
  border-color: var(--burgundy);
  background: rgba(110, 52, 69, 0.06);
}

.role-select__opt .ico {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.role-select__opt .name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.role-select__opt.is-active .name { color: var(--burgundy); }

.role-select__opt .sub {
  font-size: 0.74rem;
  color: rgba(44, 41, 43, 0.5);
  margin-top: 0.2rem;
}

.auth__progress {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.auth__progress div {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: var(--warm-stone);
}

.auth__progress div.is-done {
  background: var(--burgundy);
}

.auth__note {
  font-size: 0.74rem;
  color: rgba(44, 41, 43, 0.35);
  text-align: center;
  margin-top: 2rem;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(44, 41, 43, 0.55);
}

.checkbox input {
  margin-top: 0.2rem;
}

.checkbox a {
  color: var(--burgundy);
  text-decoration: underline;
}

/* ---------- Legal ---------- */
.legal {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.legal__section {
  border: 1px solid var(--warm-stone);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--ivory);
}

.legal__head {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--warm-stone);
}

.legal__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--ivory);
  flex-shrink: 0;
}

.legal__num {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--burgundy);
}

.legal__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.legal__summary {
  font-size: 0.85rem;
  color: rgba(44, 41, 43, 0.55);
}

.legal__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.legal__body p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(44, 41, 43, 0.7);
}

.legal__body p .idx {
  font-weight: 600;
  color: rgba(44, 41, 43, 0.3);
  margin-right: 0.5rem;
}

.legal__card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .legal__card-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.legal__card {
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--warm-stone);
}

.legal__card .label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}

.legal__card .text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(44, 41, 43, 0.6);
}

/* ---------- Callout ---------- */
.callout {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--warm-stone);
  border-left: 4px solid var(--burgundy);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--charcoal);
  font-size: 1.02rem;
  line-height: 1.6;
}

/* ---------- "Not this" list ---------- */
.not-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.not-item__x {
  flex-shrink: 0;
  margin-top: 0.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-light { color: var(--ivory); }
.text-muted { color: rgba(44, 41, 43, 0.6); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.mx-auto { margin-inline: auto; }

.bg-ivory { background: var(--ivory); }
.bg-stone { background: var(--warm-stone); }
.bg-aubergine { background: var(--aubergine); }
.bg-burgundy { background: var(--burgundy); }
.bg-charcoal { background: var(--charcoal); }
.bg-sage { background: var(--sage-grey); }
.bg-champagne { background: var(--champagne); }

.text-ivory { color: var(--ivory); }
.text-charcoal { color: var(--charcoal); }
.text-burgundy { color: var(--burgundy); }
.text-champagne { color: var(--champagne); }
.text-rose { color: var(--muted-rose); }
.text-sage { color: var(--sage-grey); }

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- City landing pages ---------- */
.city-page {
  background: var(--ivory);
}

.city-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.city-hero__image,
.city-hero__overlay {
  position: absolute;
  inset: 0;
}

.city-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -2;
}

.city-hero__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(28, 21, 29, 0.92) 0%, rgba(35, 26, 35, 0.78) 37%, rgba(35, 26, 35, 0.2) 68%, rgba(35, 26, 35, 0.08) 100%),
    linear-gradient(0deg, rgba(22, 17, 23, 0.48), transparent 52%);
}

.city-hero__content {
  width: min(100%, 43rem);
  padding-block: 8rem 5rem;
  color: var(--ivory);
}

.city-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
  font-size: 0.78rem;
  color: rgba(247, 243, 237, 0.68);
}

.city-breadcrumb a:hover {
  color: var(--champagne);
}

.city-hero__title {
  max-width: 11ch;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.city-hero__title em {
  display: block;
  color: var(--champagne);
  font-weight: 600;
}

.city-hero__lead {
  max-width: 39rem;
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.75;
  color: rgba(247, 243, 237, 0.82);
}

.city-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.city-hero__link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding-inline: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ivory);
}

.city-hero__link:hover {
  color: var(--champagne);
}

.city-quicknav {
  position: relative;
  z-index: 2;
  margin-top: -2.25rem;
}

.city-quicknav__inner {
  display: flex;
  gap: 0.55rem;
  padding: 0.85rem;
  overflow-x: auto;
  border: 1px solid rgba(110, 52, 69, 0.12);
  border-radius: 999px;
  background: rgba(247, 243, 237, 0.96);
  box-shadow: var(--shadow-md);
  scrollbar-width: none;
}

.city-quicknav__inner::-webkit-scrollbar {
  display: none;
}

.city-quicknav a {
  flex: 0 0 auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(44, 41, 43, 0.72);
  transition: background-color 0.2s, color 0.2s;
}

.city-quicknav a:hover {
  background: var(--burgundy);
  color: var(--ivory);
}

.city-copy {
  display: grid;
  gap: 2.5rem;
}

.city-copy__text {
  max-width: 42rem;
}

.city-copy__text p + p,
.city-prose p + p {
  margin-top: 1rem;
}

.city-facts {
  display: grid;
  gap: 0.85rem;
}

.city-fact {
  padding: 1.25rem;
  border: 1px solid rgba(110, 52, 69, 0.13);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.48);
}

.city-fact__num {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--burgundy);
}

.city-fact__text {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(44, 41, 43, 0.64);
}

.city-place-grid,
.city-advice-grid,
.city-links-grid {
  display: grid;
  gap: 1rem;
}

.city-place {
  position: relative;
  min-height: 290px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--aubergine);
  color: var(--ivory);
}

.city-place::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(41, 33, 42, 0.04), rgba(41, 33, 42, 0.9));
}

.city-place--image {
  background-position: center;
  background-size: cover;
}

.city-place__body {
  position: relative;
  padding: 1.5rem;
}

.city-place__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
}

.city-place__title {
  margin-top: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.city-place__text {
  margin-top: 0.65rem;
  font-size: 0.86rem;
  line-height: 1.58;
  color: rgba(247, 243, 237, 0.72);
}

.city-itinerary {
  counter-reset: itinerary;
  display: grid;
  gap: 1rem;
}

.city-itinerary__step {
  counter-increment: itinerary;
  position: relative;
  padding: 1.5rem 1.35rem 1.5rem 4.4rem;
  border-radius: var(--radius-md);
  background: var(--ivory);
  border: 1px solid rgba(110, 52, 69, 0.12);
}

.city-itinerary__step::before {
  content: "0" counter(itinerary);
  position: absolute;
  top: 1.35rem;
  left: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--burgundy);
}

.city-itinerary__time {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.city-itinerary__title {
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.city-itinerary__text {
  margin-top: 0.55rem;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(44, 41, 43, 0.65);
}

.city-advice-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--ivory);
  border: 1px solid rgba(110, 52, 69, 0.12);
}

.city-advice-card--avoid {
  background: #f1e8e7;
}

.city-advice-card__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(110, 52, 69, 0.1);
  color: var(--burgundy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.city-advice-card h3 {
  margin-top: 0.9rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.city-checklist {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.city-checklist li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.88rem;
  line-height: 1.62;
  color: rgba(44, 41, 43, 0.68);
}

.city-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 0.55rem;
  height: 0.55rem;
  border: 2px solid var(--burgundy);
  border-radius: 50%;
}

.city-safety {
  display: grid;
  gap: 2.5rem;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  background: var(--aubergine);
  color: var(--ivory);
  box-shadow: var(--shadow-lg);
}

.city-safety__list {
  display: grid;
  gap: 0.8rem;
}

.city-safety__item {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(247, 243, 237, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(247, 243, 237, 0.05);
}

.city-safety__num {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--champagne);
  color: var(--aubergine);
  font-family: var(--font-display);
  font-weight: 700;
}

.city-safety__item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ivory);
}

.city-safety__item p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(247, 243, 237, 0.62);
}

.city-profile {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--warm-stone);
}

.city-profile__panel {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.city-profile__panel + .city-profile__panel {
  border-top: 1px solid rgba(110, 52, 69, 0.16);
}

.city-profile__role {
  color: var(--burgundy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.city-profile h3 {
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.city-profile p {
  margin-top: 0.8rem;
  color: rgba(44, 41, 43, 0.68);
}

.city-faq {
  display: grid;
  gap: 1rem;
}

.city-faq details {
  border: 1px solid rgba(110, 52, 69, 0.13);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.48);
}

.city-faq summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

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

.city-faq summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--burgundy);
  font-size: 1.35rem;
  font-weight: 400;
}

.city-faq details[open] summary::after {
  content: "–";
}

.city-faq__answer {
  padding: 0 1.15rem 1.15rem;
  color: rgba(44, 41, 43, 0.68);
  line-height: 1.68;
}

.city-link-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: var(--ivory);
  border: 1px solid rgba(110, 52, 69, 0.13);
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}

.city-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(110, 52, 69, 0.35);
  box-shadow: var(--shadow-md);
}

.city-link-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.city-link-card__title {
  display: block;
  margin-top: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.city-link-card__arrow {
  margin-top: 1.2rem;
  font-weight: 700;
  color: var(--burgundy);
}

@media (min-width: 640px) {
  .city-facts,
  .city-place-grid,
  .city-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .city-profile__panel + .city-profile__panel {
    border-top: 0;
    border-left: 1px solid rgba(110, 52, 69, 0.16);
  }
}

@media (min-width: 900px) {
  .city-copy {
    grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr);
    gap: 5rem;
    align-items: start;
  }

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

  .city-safety {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
  }
}

@media (max-width: 767px) {
  .city-hero {
    min-height: 650px;
    align-items: flex-end;
  }

  .city-hero__image {
    object-position: 72% center;
  }

  .city-hero__overlay {
    background:
      linear-gradient(0deg, rgba(28, 21, 29, 0.96) 0%, rgba(28, 21, 29, 0.76) 45%, rgba(28, 21, 29, 0.22) 78%, rgba(28, 21, 29, 0.12) 100%),
      linear-gradient(90deg, rgba(28, 21, 29, 0.48), transparent 70%);
  }

  .city-hero__content {
    width: 100%;
    padding-block: 8rem 5.25rem;
  }

  .city-hero__title {
    max-width: 9ch;
    font-size: clamp(2.7rem, 14vw, 4.1rem);
  }

  .city-hero__actions .btn {
    width: 100%;
  }

  .city-hero__link {
    width: 100%;
    justify-content: center;
  }

  .city-quicknav {
    margin-top: -1.6rem;
  }

  .city-quicknav__inner {
    border-radius: var(--radius-md);
  }

  .city-place {
    min-height: 250px;
  }
}

/* ---------- Dating tips guide ---------- */
.date-plan,
.date-signals {
  background: var(--aubergine);
}

.date-plan .sec-head > p,
.date-signals .sec-head > p {
  max-width: 33rem;
  color: rgba(247, 243, 237, .66);
}

.date-plan__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(247, 243, 237, .16);
}

.date-plan__step {
  position: relative;
  padding: 2rem 1.5rem 0;
  border-right: 1px solid rgba(247, 243, 237, .12);
}

.date-plan__step:first-child { padding-left: 0; }
.date-plan__step:last-child { border-right: 0; }

.date-plan__step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(183, 155, 115, .5);
  border-radius: 50%;
  color: var(--champagne);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.date-plan__step h3 {
  margin: 0 0 .75rem;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.date-plan__step p {
  margin: 0;
  color: rgba(247, 243, 237, .62);
  line-height: 1.7;
}

.date-conversation {
  background: var(--ivory);
}

.date-conversation__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.date-topic-card,
.date-topic-note {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(110, 52, 69, .13);
  border-radius: 1.25rem;
}

.date-topic-card {
  background: rgba(255, 255, 255, .76);
}

.date-topic-card--accent {
  background: rgba(182, 117, 130, .08);
}

.date-topic-card__label,
.date-topic-note::before,
.date-message-examples__label {
  display: block;
  margin-bottom: .75rem;
  color: var(--burgundy);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.date-topic-card h3,
.date-topic-note h3,
.date-message-examples h3 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
}

.date-topic-card ul {
  display: grid;
  gap: .7rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
}

.date-topic-card li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--charcoal);
  line-height: 1.55;
}

.date-topic-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6rem;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--champagne);
}

.date-topic-card p,
.date-topic-note p,
.date-message-examples p {
  margin: 0;
  color: rgba(44, 41, 43, .7);
  line-height: 1.7;
}

.date-topic-note {
  grid-column: 1 / -1;
  position: relative;
  padding-left: clamp(1.5rem, 5vw, 4rem);
  color: var(--ivory);
  background: linear-gradient(135deg, var(--aubergine), #4a3543);
  box-shadow: 0 1.25rem 3rem rgba(41, 33, 42, .12);
}

.date-topic-note::before {
  content: "Confidențialitate";
  color: var(--champagne);
}

.date-topic-note h3 { color: var(--ivory); }
.date-topic-note p { max-width: 56rem; color: rgba(247, 243, 237, .7); }

.date-topic-note a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 1rem;
  color: var(--ivory);
  font-weight: 700;
  text-underline-offset: .2em;
}

.date-details {
  max-width: 68rem;
  margin: 4rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid rgba(110, 52, 69, .13);
}

.date-details__head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.date-details__head h3 {
  margin: .9rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.15;
}

.date-details__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.date-details__grid article {
  padding: 1.5rem;
  border: 1px solid rgba(110, 52, 69, .13);
  border-radius: 1rem;
  background: rgba(255, 255, 255, .66);
}

.date-details__grid article > span {
  color: var(--burgundy);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.date-details__grid h4 {
  margin: .75rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.3;
}

.date-details__grid p {
  margin: 0;
  color: rgba(44, 41, 43, .68);
  line-height: 1.65;
}

.date-signals__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.date-signal-column {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(247, 243, 237, .14);
  border-radius: 1.25rem;
  background: rgba(247, 243, 237, .06);
}

.date-signal-column--good { border-top: 3px solid var(--sage-grey); }
.date-signal-column--risk { border-top: 3px solid var(--muted-rose); }

.date-signal-column__label {
  display: block;
  margin-bottom: 1rem;
  color: var(--champagne);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.date-signal-column article {
  padding: 1rem 0;
  border-top: 1px solid rgba(247, 243, 237, .11);
}

.date-signal-column h3 {
  margin: 0 0 .35rem;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.date-signal-column p {
  margin: 0;
  color: rgba(247, 243, 237, .62);
  line-height: 1.6;
}

.date-after {
  background: var(--ivory);
}

.date-after__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(20rem, .9fr);
  align-items: stretch;
  gap: clamp(2rem, 5vw, 5rem);
}

.date-after .section-title {
  margin: 1rem 0 1.25rem;
}

.date-after .text-muted + .text-muted {
  margin-top: 1rem;
}

.date-message-examples {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 1.25rem;
  background: var(--warm-stone);
}

.date-message-examples blockquote {
  margin: 0;
  padding: 1rem 0;
  border-top: 1px solid rgba(110, 52, 69, .13);
  color: rgba(44, 41, 43, .78);
  font-style: normal;
  line-height: 1.6;
}

.date-message-examples blockquote strong {
  display: block;
  margin-bottom: .4rem;
  color: var(--burgundy);
  font-size: .78rem;
}

.date-faq {
  background: var(--warm-stone);
}

@media (max-width: 900px) {
  .date-plan__grid,
  .date-details__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .date-plan__step:nth-child(2) { border-right: 0; }
  .date-plan__step:nth-child(-n+2) { padding-bottom: 2rem; }
  .date-after__grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .date-plan__grid,
  .date-conversation__grid,
  .date-details__grid,
  .date-signals__grid {
    grid-template-columns: 1fr;
  }

  .date-plan__step,
  .date-plan__step:first-child,
  .date-plan__step:nth-child(-n+2) {
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(247, 243, 237, .12);
  }

  .date-plan__step:last-child { border-bottom: 0; }
  .date-topic-note { grid-column: auto; }
  .date-details { margin-top: 3rem; padding-top: 2.5rem; }
}

/* ---------- Sugar dating guide: role chooser ---------- */
.guide-roles {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(183, 155, 115, .12), transparent 28rem),
    radial-gradient(circle at 92% 88%, rgba(182, 117, 130, .1), transparent 26rem),
    var(--ivory);
}

.guide-roles__head {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .75fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.guide-roles__head .section-title {
  max-width: 42rem;
  margin-top: 1rem;
}

.guide-roles__head > p {
  max-width: 35rem;
  justify-self: end;
}

.guide-roles__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.guide-role-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(110, 52, 69, .14);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 1.25rem 3rem rgba(41, 33, 42, .08);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.guide-role-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.6rem 3.5rem rgba(41, 33, 42, .13);
}

.guide-role-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--warm-stone);
}

.guide-role-card__media::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(41, 33, 42, .45));
  pointer-events: none;
}

.guide-role-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease);
}

.guide-role-card:hover .guide-role-card__media img {
  transform: scale(1.025);
}

.guide-role-card__index {
  position: absolute;
  z-index: 1;
  right: 1.25rem;
  bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  color: #fff;
  background: rgba(41, 33, 42, .58);
  backdrop-filter: blur(8px);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.guide-role-card__body {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.guide-role-card__label {
  margin-bottom: .75rem;
  color: var(--champagne);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.guide-role-card--baby .guide-role-card__label {
  color: var(--muted-rose);
}

.guide-role-card h3 {
  margin: 0 0 .9rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.65rem);
  line-height: 1;
}

.guide-role-card p {
  max-width: 38rem;
  margin: 0;
  color: rgba(44, 41, 43, .72);
  line-height: 1.7;
}

.guide-role-card__traits {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.5rem 0;
}

.guide-role-card__traits span {
  padding: .45rem .75rem;
  border: 1px solid rgba(110, 52, 69, .13);
  border-radius: 999px;
  color: rgba(44, 41, 43, .72);
  background: var(--ivory);
  font-size: .76rem;
  font-weight: 600;
}

.guide-role-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(110, 52, 69, .12);
  color: var(--burgundy);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
}

.guide-role-card__link svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform .2s var(--ease);
}

.guide-role-card__link:hover svg {
  transform: translateX(4px);
}

.guide-role-card__link:focus-visible {
  outline: 3px solid rgba(110, 52, 69, .3);
  outline-offset: 5px;
  border-radius: .25rem;
}

@media (max-width: 760px) {
  .guide-roles__head,
  .guide-roles__grid {
    grid-template-columns: 1fr;
  }

  .guide-roles__head {
    gap: 1rem;
  }

  .guide-roles__head > p {
    justify-self: start;
  }

  .guide-role-card__media {
    aspect-ratio: 4 / 3;
  }

  .guide-role-card__body {
    padding: 1.5rem;
  }

  .guide-role-card__traits {
    margin-block: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
/* ---------- About page ---------- */
.about-story,
.about-audience,
.about-faq {
  background: var(--ivory);
}

.about-story__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
  margin-bottom: 3rem;
}

.about-story__copy {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-story__copy p + p {
  margin-top: 1rem;
}

.about-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(110, 52, 69, 0.2);
}

.about-milestone {
  padding: 2rem clamp(1.25rem, 2.5vw, 2.5rem);
  border-right: 1px solid rgba(110, 52, 69, 0.16);
}

.about-milestone:first-child {
  padding-left: 0;
}

.about-milestone:last-child {
  border-right: 0;
}

.about-milestone > span,
.about-audience-card__label,
.about-standards article > span {
  display: inline-block;
  color: var(--burgundy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-milestone h3 {
  margin: 0.8rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.about-milestone p {
  color: var(--text-muted);
  line-height: 1.7;
}

.about-audience__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.about-audience-card {
  overflow: hidden;
  border: 1px solid rgba(110, 52, 69, 0.14);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.about-audience-card img {
  width: 100%;
  height: clamp(15rem, 25vw, 21rem);
  object-fit: cover;
}

.about-audience-card > div {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.about-audience-card h3 {
  margin: 0.75rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
}

.about-audience-card p {
  color: var(--text-muted);
  line-height: 1.75;
}

.about-audience-card p + p {
  margin-top: 0.85rem;
}

.about-audience-card a,
.about-standards a {
  display: inline-flex;
  margin-top: 1.25rem;
  color: var(--burgundy);
  font-weight: 700;
}

.about-standards {
  background: var(--aubergine);
}

.about-standards__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.about-standards article {
  padding: 2rem clamp(1rem, 2.2vw, 2rem);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.about-standards article:first-child {
  padding-left: 0;
}

.about-standards article:last-child {
  border-right: 0;
}

.about-standards article > span,
.about-standards a {
  color: var(--champagne);
}

.about-standards h3 {
  margin: 0.85rem 0 0.75rem;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.about-standards p {
  color: rgba(247, 243, 237, 0.7);
  line-height: 1.75;
}

.about-local {
  background: var(--warm-stone);
}

.feature--reverse .feature__media {
  order: 2;
}

.about-local__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about-local__links a {
  padding: 0.65rem 1rem;
  border: 1px solid rgba(110, 52, 69, 0.26);
  border-radius: 999px;
  color: var(--burgundy);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.about-local__links a:hover {
  background: var(--burgundy);
  color: #fff;
}

.container--narrow {
  max-width: 900px;
}

.faq-list {
  border-top: 1px solid rgba(110, 52, 69, 0.2);
}

.faq-list details {
  border-bottom: 1px solid rgba(110, 52, 69, 0.2);
}

.faq-list summary {
  position: relative;
  padding: 1.4rem 3rem 1.4rem 0;
  color: var(--ink);
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 1.25rem;
  right: 0;
  color: var(--burgundy);
  font-size: 1.35rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 48rem;
  padding: 0 2rem 1.5rem 0;
  color: var(--text-muted);
  line-height: 1.75;
}

@media (max-width: 980px) {
  .about-standards__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-standards article:nth-child(2) {
    border-right: 0;
  }

  .about-standards article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 720px) {
  .about-story__intro,
  .about-audience__grid,
  .about-timeline,
  .about-standards__grid {
    grid-template-columns: 1fr;
  }

  .about-story__intro {
    gap: 1.5rem;
  }

  .about-milestone,
  .about-milestone:first-child,
  .about-standards article,
  .about-standards article:first-child {
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid rgba(110, 52, 69, 0.16);
  }

  .about-standards article,
  .about-standards article:first-child,
  .about-standards article:nth-child(2) {
    border-bottom-color: rgba(255, 255, 255, 0.12);
  }

  .about-milestone:last-child,
  .about-standards article:last-child {
    border-bottom: 0;
  }

  .feature--reverse .feature__media {
    order: initial;
  }

  .about-audience-card img {
    height: 16rem;
  }
}

/* Blog articles */
.editorial-card--soon {
  position: relative;
  cursor: default;
}

.editorial-card--soon .editorial-card__media::after {
  content: "În curând";
  position: absolute;
  inset: auto 1rem 1rem auto;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(41, 33, 42, 0.78);
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.editorial-card--soon .editorial-card__media {
  position: relative;
}

.editorial-card--soon .editorial-card__media img {
  filter: saturate(0.72) brightness(0.84);
}

.article-hero {
  position: relative;
  min-height: min(72vh, 700px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--aubergine);
}

.article-hero__image,
.article-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.article-hero__image {
  object-fit: cover;
}

.article-hero__overlay {
  background: linear-gradient(90deg, rgba(29, 23, 31, 0.92) 0%, rgba(41, 33, 42, 0.7) 48%, rgba(41, 33, 42, 0.16) 100%);
}

.article-hero__content {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  padding-block: clamp(5rem, 10vw, 8rem) clamp(3.5rem, 7vw, 6rem);
}

.article-hero__content h1 {
  margin-top: 1.25rem;
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 5.6vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.article-hero__lead {
  max-width: 42rem;
  margin-top: 1.35rem;
  color: rgba(247, 243, 237, 0.82);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.75;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.35rem;
  margin-top: 1.5rem;
  color: rgba(247, 243, 237, 0.62);
  font-size: 0.86rem;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 17rem;
  gap: clamp(3rem, 7vw, 6rem);
  align-items: start;
}

.article-body {
  min-width: 0;
  color: var(--charcoal);
  font-size: 1.03rem;
  line-height: 1.85;
}

.article-body h2 {
  margin: 3.4rem 0 1.15rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.article-body h2:first-child {
  margin-top: 0;
}

.article-body h3 {
  margin: 2rem 0 0.75rem;
  color: var(--ink);
  font-size: 1.18rem;
}

.article-body p + p,
.article-body p + ul,
.article-body p + ol,
.article-body ul + p,
.article-body ol + p {
  margin-top: 1rem;
}

.article-body ul,
.article-body ol {
  margin: 1rem 0 1.35rem;
  padding-left: 1.35rem;
}

.article-body li + li {
  margin-top: 0.65rem;
}

.article-body a {
  color: var(--burgundy);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(110, 52, 69, 0.35);
  text-underline-offset: 0.2em;
}

.article-toc {
  position: sticky;
  top: 6.5rem;
  padding: 1.4rem;
  border: 1px solid rgba(110, 52, 69, 0.16);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.article-toc strong {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--burgundy);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-toc a {
  display: block;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(110, 52, 69, 0.1);
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.article-toc a:last-child {
  border-bottom: 0;
}

.article-callout,
.article-example,
.article-checklist {
  margin: 2rem 0;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
}

.article-callout {
  border-left: 4px solid var(--champagne);
  background: var(--warm-stone);
}

.article-example {
  border: 1px solid rgba(110, 52, 69, 0.18);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.article-checklist {
  background: var(--aubergine);
  color: rgba(247, 243, 237, 0.78);
}

.article-checklist h2,
.article-checklist h3 {
  margin-top: 0;
  color: var(--ivory);
}

.article-table-wrap {
  margin: 2rem 0;
  overflow-x: auto;
  border: 1px solid rgba(110, 52, 69, 0.16);
  border-radius: var(--radius-lg);
}

.article-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: #fff;
}

.article-table th,
.article-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(110, 52, 69, 0.12);
  text-align: left;
  vertical-align: top;
}

.article-table th {
  color: var(--burgundy);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-related {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.article-related a {
  padding: 1.25rem;
  border: 1px solid rgba(110, 52, 69, 0.16);
  border-radius: var(--radius-md);
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 900px) {
  .article-shell {
    grid-template-columns: 1fr;
  }

  .article-toc {
    position: static;
    order: -1;
  }
}

@media (max-width: 720px) {
  .article-hero {
    min-height: 72vh;
  }

  .article-hero__image {
    object-position: 62% center;
  }

  .article-hero__image--left {
    object-position: 34% center;
  }

  .article-hero__overlay {
    background: linear-gradient(180deg, rgba(41, 33, 42, 0.16) 0%, rgba(41, 33, 42, 0.7) 48%, rgba(29, 23, 31, 0.96) 100%);
  }

  .article-hero__content {
    padding-bottom: 3.25rem;
  }

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

/* ---------- Chatroom guide page ---------- */
.chat-guide-page {
  background: var(--ivory);
}

.chat-guide-hero {
  padding: calc(var(--nav-h-mobile) + 4rem) 0 4rem;
  background:
    radial-gradient(circle at 82% 20%, rgba(183, 155, 115, 0.18), transparent 30%),
    linear-gradient(135deg, #2a222c 0%, #3b2e3b 52%, #251d27 100%);
  color: var(--ivory);
}

.chat-guide-hero__inner {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.chat-guide-hero h1 {
  max-width: 760px;
  margin: 1rem 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 7vw, 5.4rem);
  line-height: 0.98;
}

.chat-guide-hero p {
  max-width: 680px;
  color: rgba(247, 243, 237, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
}

.chat-guide-hero__note {
  max-width: 320px;
  padding: 1.25rem;
  border: 1px solid rgba(247, 243, 237, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(247, 243, 237, 0.06);
  backdrop-filter: blur(12px);
}

.chat-guide-hero__note span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chat-guide-hero__note p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.chat-demo-section {
  padding-bottom: clamp(4rem, 8vw, 7rem);
  background: linear-gradient(180deg, #f8f4ee 0%, var(--ivory) 100%);
}

.chatroom--section {
  height: min(700px, calc(100dvh - 7rem));
  min-height: 590px;
  margin-top: 2.5rem;
  border: 1px solid rgba(110, 52, 69, 0.18);
  border-radius: 24px;
  box-shadow: 0 26px 70px rgba(41, 33, 42, 0.16);
}

.chat-guide-steps,
.chat-topic-grid {
  display: grid;
  gap: 1rem;
}

.chat-guide-card {
  position: relative;
  padding: 2rem;
  overflow: hidden;
  border: 1px solid rgba(110, 52, 69, 0.14);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.chat-guide-card__number {
  display: block;
  margin-bottom: 1.5rem;
  color: var(--burgundy);
  font-family: var(--font-display);
  font-size: 2rem;
}

.chat-guide-card h3,
.chat-topic-grid h3 {
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
}

.chat-guide-card p,
.chat-topic-grid p {
  color: var(--stone);
  line-height: 1.7;
}

.chat-compliments {
  background: #efe7dd;
}

.chat-compliments__grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.chat-compliments__intro > p {
  max-width: 600px;
  margin: 1.25rem 0 1.5rem;
  color: var(--stone);
  line-height: 1.8;
}

.chat-copy-examples {
  display: grid;
  gap: 0.85rem;
}

.chat-copy-example {
  padding: 1.4rem 1.5rem;
  border-left: 3px solid var(--burgundy);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 255, 255, 0.72);
}

.chat-copy-example span {
  color: var(--burgundy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.chat-copy-example p {
  margin-top: 0.4rem;
  color: var(--ink);
  line-height: 1.6;
}

.chat-topic-grid article {
  padding: 1.5rem;
  border-top: 1px solid rgba(110, 52, 69, 0.22);
}

.chat-topic-grid article > span {
  color: var(--champagne-dark);
  font-size: 0.72rem;
  font-weight: 700;
}

.chat-safety {
  background: var(--aubergine);
  color: var(--ivory);
}

.chat-safety__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.chat-safety h2 {
  margin: 0.8rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.chat-safety p,
.chat-safety li {
  color: rgba(247, 243, 237, 0.72);
  line-height: 1.75;
}

.chat-safety ul {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}

.chat-safety li {
  position: relative;
  padding-left: 1.5rem;
}

.chat-safety li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--champagne);
}

.chat-safety__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 760px) {
  .chat-guide-hero {
    padding-top: calc(var(--nav-h) + 5rem);
  }

  .chat-guide-hero__inner {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .chat-guide-steps,
  .chat-topic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .chat-compliments__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .chat-safety__inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.8fr);
  }

  .chat-safety__links {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .chat-demo-section .container {
    padding-inline: 0.75rem;
  }

  .chatroom--section {
    height: 650px;
    min-height: 0;
    margin-top: 1.75rem;
    border-radius: 18px;
  }

  .chatroom--section .chatroom__titlebar {
    padding-inline: 0.85rem;
  }

  .chatroom--section .chat-head__actions {
    display: none;
  }

  .chatroom--section .chat-interests {
    overflow-x: auto;
    flex-wrap: nowrap;
  }
}
