/* ==========================================================================
   Sugar Baby Las Vegas — style.css
   Vegas After Dark x Desert Glamour x Velvet Luxury x Neon Romance
   --------------------------------------------------------------------------
   1.  Tokens
   2.  Reset & base
   3.  Typography
   4.  Layout & surfaces (day -> night)
   5.  Buttons
   6.  Tags & chips
   7.  Header / navigation
   8.  Hero
   9.  Cards & grids
   10. Profile cards
   11. Editorial splits
   12. Compare (Local vs Visiting)
   13. Timeline / itinerary
   14. Area & spot discovery
   15. Chat UI
   16. Checklists, callouts, do/don't
   17. FAQ accordion
   18. Forms
   19. Footer
   20. Utilities
   21. Responsive
   ========================================================================== */

/* 1. TOKENS ============================================================== */

:root {
  /* Quiet-luxury palette: midnight, burgundy, brushed champagne and warm ivory. */
  --midnight: #121116;
  --plum: #211b20;
  --merlot: #68263a;
  --champagne: #b79a68;
  --neon: #c65b78;
  --ivory: #f3efe8;
  --sand: #e3ddd6;
  --charcoal: #272428;

  /* Derived */
  --ink: #0d0c0f;
  --rose-soft: #d7a2af;
  --merlot-deep: #4d1c2c;

  /* Type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "DM Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Rhythm */
  /* 1180px desktop content plus 40px gutters on both sides. */
  --wrap: 1260px;
  --wrap-narrow: 760px;
  --gutter: 1.25rem;
  --radius: 12px;
  --radius-sm: 4px;
  --radius-lg: 18px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* Default (dark) contextual tokens — overridden per surface in §4 */
  --text: var(--ivory);
  --text-2: rgba(243, 239, 232, 0.76);
  --text-3: rgba(243, 239, 232, 0.58);
  --surface: rgba(243, 239, 232, 0.035);
  --surface-2: rgba(18, 17, 22, 0.5);
  --line: rgba(183, 154, 104, 0.14);
  --line-strong: rgba(183, 154, 104, 0.28);
  --accent: var(--champagne);
}

/* 2. RESET & BASE ======================================================== */

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

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--merlot) transparent;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ivory);
  background: var(--midnight);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--merlot);
  border-radius: 4px;
}

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

img {
  height: auto;
}

/* A restrained, consistent photo treatment keeps mixed source images on-brand. */
main img {
  filter: saturate(0.9) contrast(1.025);
}

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

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

ul,
ol {
  list-style: none;
}

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

.skip-link {
  position: absolute;
  left: 0.5rem;
  top: -100px;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--champagne);
  color: var(--midnight);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: top 0.2s var(--ease);
}
.skip-link:focus {
  top: 0.5rem;
}

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

/* 3. TYPOGRAPHY ========================================================== */

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--text);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.5rem, 6.2vw, 4.4rem);
}
h2 {
  font-size: clamp(1.95rem, 4.2vw, 3rem);
}
h3 {
  font-size: clamp(1.3rem, 2.3vw, 1.75rem);
}
h4 {
  font-size: 1.1rem;
}

h1 em,
h2 em,
h3 em {
  font-style: italic;
  color: var(--accent);
}

p {
  color: var(--text-2);
  text-wrap: pretty;
}

.lede {
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.62;
  color: var(--text-2);
  max-width: 62ch;
}

.prose p + p {
  margin-top: 1.1rem;
}
.prose {
  max-width: 68ch;
}

.source-note {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-3);
}
.source-note a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(104, 38, 58, 0.38);
  text-underline-offset: 0.2em;
}
.source-note a:hover {
  color: var(--merlot);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.9rem;
}
.eyebrow--neon {
  color: var(--neon);
}

.section-head {
  margin-bottom: clamp(2.25rem, 5vw, 3.5rem);
}
.section-head p {
  margin-top: 0.9rem;
}
.section-head--center {
  text-align: center;
}
.section-head--center p {
  margin-inline: auto;
}

.section-head--split {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

/* 4. LAYOUT & SURFACES =================================================== */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow {
  max-width: var(--wrap-narrow);
}
.wrap--wide {
  max-width: 1380px;
}

.section {
  padding-block: clamp(3.5rem, 8vw, 7rem);
  background: var(--midnight);
  color: var(--text);
  position: relative;
}

.section--tight {
  padding-block: clamp(2.5rem, 5vw, 4rem);
}

/* NIGHT surfaces */
.section--plum {
  background: var(--plum);
}
.section--ink {
  background: var(--ink);
}
.section--merlot {
  background: linear-gradient(135deg, var(--merlot-deep) 0%, var(--plum) 62%, var(--midnight) 100%);
}

/* DAY surfaces — flips every contextual token */
.section--ivory,
.section--sand {
  --text: var(--charcoal);
  --text-2: rgba(39, 36, 40, 0.82);
  --text-3: rgba(39, 36, 40, 0.64);
  --surface: #fbf9f5;
  --surface-2: rgba(255, 255, 255, 0.62);
  --line: rgba(104, 38, 58, 0.15);
  --line-strong: rgba(104, 38, 58, 0.28);
  --accent: var(--merlot);
  color: var(--charcoal);
}
.section--ivory {
  background: var(--ivory);
}
.section--sand {
  background: var(--sand);
  --surface: rgba(251, 249, 245, 0.76);
}

/* Golden-hour transition band */
.section--golden {
  background: linear-gradient(180deg, var(--sand) 0%, #8f7663 48%, var(--plum) 100%);
  --text: var(--ivory);
  --text-2: rgba(243, 239, 232, 0.8);
  --text-3: rgba(243, 239, 232, 0.62);
  --line: rgba(243, 239, 232, 0.18);
  --accent: var(--ivory);
}

/* Hairline divider between two dark sections */
.section--edge {
  border-top: 1px solid var(--line);
}

/* 5. BUTTONS ============================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.9rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease),
    background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

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

.btn--primary {
  background: var(--merlot);
  color: var(--ivory);
  border-color: rgba(215, 162, 175, 0.2);
  box-shadow: 0 4px 16px rgba(77, 28, 44, 0.24);
}
.btn--primary:hover {
  background: #7a3048;
  box-shadow: 0 7px 20px rgba(77, 28, 44, 0.32);
}

.btn--gold {
  background: var(--champagne);
  color: var(--midnight);
  border-color: rgba(243, 239, 232, 0.18);
  box-shadow: 0 4px 18px rgba(183, 154, 104, 0.18);
}

.btn--ghost {
  background: rgba(245, 239, 231, 0.06);
  border-color: rgba(245, 239, 231, 0.18);
  color: var(--ivory);
}
.btn--ghost:hover {
  background: rgba(245, 239, 231, 0.11);
  border-color: rgba(245, 239, 231, 0.32);
}

.btn--outline {
  background: rgba(116, 31, 58, 0.18);
  border-color: rgba(193, 160, 106, 0.38);
  color: var(--champagne);
}
.btn--outline:hover {
  background: rgba(116, 31, 58, 0.32);
  border-color: var(--champagne);
}

/* On light surfaces */
.section--ivory .btn--ghost,
.section--sand .btn--ghost {
  background: rgba(41, 39, 43, 0.05);
  border-color: rgba(41, 39, 43, 0.2);
  color: var(--charcoal);
}
.section--ivory .btn--ghost:hover,
.section--sand .btn--ghost:hover {
  background: rgba(41, 39, 43, 0.1);
}
.section--ivory .btn--outline,
.section--sand .btn--outline {
  background: transparent;
  border-color: rgba(116, 31, 58, 0.4);
  color: var(--merlot);
}
.section--ivory .btn--outline:hover,
.section--sand .btn--outline:hover {
  background: rgba(116, 31, 58, 0.08);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.btn-row--center {
  justify-content: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.2s var(--ease);
}
.link-arrow:hover {
  gap: 0.7rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Inline text link inside prose */
.prose a,
.text-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(193, 160, 106, 0.45);
  transition: text-decoration-color 0.2s var(--ease);
}
.prose a:hover,
.text-link:hover {
  text-decoration-color: currentColor;
}

/* 6. TAGS & CHIPS ======================================================== */

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.22rem 0.55rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tag--local {
  background: rgba(193, 160, 106, 0.16);
  color: var(--champagne);
  border-color: rgba(193, 160, 106, 0.32);
}
.tag--visiting {
  background: rgba(214, 78, 121, 0.14);
  color: var(--neon);
  border-color: rgba(214, 78, 121, 0.3);
}
.tag--online {
  background: rgba(214, 78, 121, 0.16);
  color: var(--neon);
  border-color: rgba(214, 78, 121, 0.32);
}
.tag--verified {
  background: rgba(193, 160, 106, 0.14);
  color: var(--champagne);
  border-color: rgba(193, 160, 106, 0.28);
}
.tag--weekend,
.tag--business {
  background: rgba(116, 31, 58, 0.3);
  color: var(--rose-soft);
  border-color: rgba(116, 31, 58, 0.5);
}
.tag--muted {
  background: rgba(245, 239, 231, 0.07);
  color: var(--text-3);
  border-color: rgba(245, 239, 231, 0.1);
}
.tag--role {
  background: rgba(116, 31, 58, 0.42);
  color: var(--rose-soft);
  border-color: rgba(116, 31, 58, 0.55);
}

.section--ivory .tag--muted,
.section--sand .tag--muted {
  background: rgba(41, 39, 43, 0.06);
  color: var(--text-3);
  border-color: rgba(41, 39, 43, 0.12);
}

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

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 7px var(--neon);
  flex-shrink: 0;
}
.dot--muted {
  background: rgba(245, 239, 231, 0.28);
  box-shadow: none;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neon);
}

/* Interest / lifestyle pill */
.pill {
  display: inline-block;
  padding: 0.24rem 0.62rem;
  border-radius: 100px;
  background: rgba(193, 160, 106, 0.12);
  border: 1px solid rgba(193, 160, 106, 0.18);
  font-size: 0.78rem;
  color: var(--text-2);
}
.section--ivory .pill,
.section--sand .pill {
  background: rgba(116, 31, 58, 0.07);
  border-color: rgba(116, 31, 58, 0.16);
}

/* Filter chip (button) */
.chip {
  min-height: 2.75rem;
  padding: 0.55rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(245, 239, 231, 0.1);
  background: rgba(245, 239, 231, 0.04);
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.18s var(--ease);
}
.chip:hover {
  color: var(--text);
  border-color: rgba(193, 160, 106, 0.35);
}
.chip[aria-pressed="true"],
.chip.is-active {
  background: rgba(116, 31, 58, 0.48);
  border-color: rgba(193, 160, 106, 0.42);
  color: var(--champagne);
}
.chip--neon[aria-pressed="true"] {
  background: rgba(214, 78, 121, 0.2);
  border-color: rgba(214, 78, 121, 0.42);
  color: var(--neon);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.segmented {
  display: inline-flex;
  border: 1px solid rgba(193, 160, 106, 0.18);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.segmented .chip {
  border: 0;
  border-radius: 0;
  background: transparent;
}
.segmented .chip + .chip {
  border-left: 1px solid rgba(193, 160, 106, 0.14);
}

/* 7. HEADER / NAVIGATION ================================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(21, 20, 27, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(193, 160, 106, 0.14);
}

/* Pages that start on a light surface need a solid bar from the top */
.site-header--solid {
  background: rgba(21, 20, 27, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(193, 160, 106, 0.14);
}

.site-header > .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.32rem;
  white-space: nowrap;
  display: inline-flex;
  gap: 0.35rem;
}
.brand b {
  font-weight: 600;
  color: var(--champagne);
}
.brand i {
  font-style: italic;
  font-weight: 400;
  color: var(--ivory);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(245, 239, 231, 0.72);
  transition: color 0.2s var(--ease);
}
.nav-links a:hover {
  color: var(--champagne);
}
.nav-links a[aria-current="page"] {
  color: var(--champagne);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-actions .btn {
  padding: 0.62rem 1.25rem;
  font-size: 0.85rem;
}
.nav-signin {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(245, 239, 231, 0.78);
  padding: 0.5rem 0.35rem;
}
.nav-signin:hover {
  color: var(--champagne);
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.6rem;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--champagne);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span + span {
  margin-top: 5px;
}
.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav-drawer {
  display: none;
  background: rgba(21, 20, 27, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(193, 160, 106, 0.1);
  max-height: calc(100dvh - 4rem);
  overflow-y: auto;
}
.nav-drawer > .wrap {
  height: auto;
  display: block;
  padding-block: 0.35rem 1.25rem;
}
.site-header.is-open .nav-drawer {
  display: block;
}
.nav-drawer ul {
  padding: 0.5rem 0 1rem;
}
.nav-drawer li a {
  display: block;
  padding: 0.95rem 0;
  font-size: 1rem;
  color: var(--ivory);
  border-bottom: 1px solid rgba(193, 160, 106, 0.12);
}
.nav-drawer li a[aria-current="page"] {
  color: var(--champagne);
}
.nav-drawer .btn-row {
  padding-bottom: 1.5rem;
}
.nav-drawer .btn {
  flex: 1;
}

/* 8. HERO ================================================================ */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  padding-block: 8rem 4rem;
  overflow: hidden;
}
.hero--short {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  padding-block: 9rem 3.5rem;
}
.hero--bottom {
  align-items: flex-end;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.05) brightness(0.92);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(21, 20, 27, 0.92) 0%,
    rgba(42, 29, 42, 0.72) 52%,
    rgba(116, 31, 58, 0.34) 100%
  );
}
.hero-media--bottom::after {
  background: linear-gradient(
    to top,
    rgba(21, 20, 27, 0.98) 0%,
    rgba(21, 20, 27, 0.72) 46%,
    rgba(42, 29, 42, 0.38) 100%
  );
}
.hero-media--veil::after {
  background: linear-gradient(to bottom, rgba(21, 20, 27, 0.82), rgba(21, 20, 27, 0.96));
}

/* Interior page heroes use the photography itself, without a tinted overlay. */
.hero:not(.hero--home) > .hero-media::after,
.hero:not(.hero--home) > .hero-glow {
  display: none;
}
.hero:not(.hero--home) > .hero-media img {
  filter: saturate(0.86) contrast(1.04) brightness(0.84);
}
.hero.hero--soft-overlay > .hero-media::after {
  display: block;
  background: linear-gradient(
    90deg,
    rgba(8, 8, 10, 0.46) 0%,
    rgba(8, 8, 10, 0.3) 48%,
    rgba(8, 8, 10, 0.14) 100%
  );
}
.hero:not(.hero--home) .hero-content {
  text-shadow: 0 2px 20px rgba(8, 7, 10, 0.82);
}

/* Faint neon bloom, used sparingly */
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at 72% 48%, rgba(214, 78, 121, 0.13) 0%, transparent 62%);
}
.hero--home .hero-media::after {
  background:
    linear-gradient(to right, rgba(12, 11, 15, 0.92) 0%, rgba(12, 11, 15, 0.72) 46%, rgba(12, 11, 15, 0.12) 82%),
    linear-gradient(to top, rgba(12, 11, 15, 0.58) 0%, transparent 48%);
}
.hero--home {
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
}
.hero--home .hero-content {
  max-width: 46rem;
  margin-inline: 0;
  text-align: left;
}
.hero--home .hero-content .lede {
  margin-inline: 0;
}
.hero--home .btn-row {
  justify-content: flex-start;
}
.hero--home .hero-glow {
  display: none;
}

/* Role pages use a clean editorial split on desktop instead of stretching
   portrait photography across the full viewport. */
.hero--role {
  background: #0c0b0f;
}
.hero--role > .hero-media {
  background: #0c0b0f;
}
.hero--role > .hero-media img {
  width: min(62vw, 900px);
  margin-left: auto;
  object-position: center 10%;
}
.hero--role .hero-content {
  max-width: 26rem;
}
.hero--role .hero-content h1 {
  font-size: clamp(2.9rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.hero .wrap {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 46rem;
}
.hero-content h1 {
  margin-bottom: 1.4rem;
}
.hero-content .lede {
  margin-bottom: 2.2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.hero-locale {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(193, 160, 106, 0.72);
}

.hero-note {
  margin-top: 1.9rem;
  font-size: 0.84rem;
  color: rgba(245, 239, 231, 0.66);
}

/* Smoked-glass panel floating over hero imagery */
.glass-panel {
  background: rgba(21, 20, 27, 0.74);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(193, 160, 106, 0.18);
  border-radius: var(--radius);
  padding: 1.4rem;
}


/* 9. CARDS & GRIDS ======================================================= */

.grid {
  display: grid;
  gap: 1.25rem;
}
.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid--6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid--wide {
  gap: 1.75rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.card h3,
.card h4 {
  margin-bottom: 0.6rem;
}
.card p {
  font-size: 0.92rem;
  line-height: 1.62;
}
.card--raised:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}

/* Champagne rule that reads as brushed metal */
.card--rule {
  padding-top: 1.7rem;
  position: relative;
  overflow: hidden;
}
.card--rule::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--merlot), var(--champagne));
}
.card--rule-neon::before {
  background: linear-gradient(90deg, var(--neon), var(--merlot));
}

.card-bar {
  width: 4px;
  height: 2.1rem;
  border-radius: 100px;
  background: linear-gradient(to bottom, var(--champagne), var(--merlot));
  margin-bottom: 1.1rem;
}
.card-bar--neon {
  background: linear-gradient(to bottom, var(--neon), var(--merlot));
}

.card-index {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  opacity: 0.75;
}

/* Numbered step row (used on home + how it works) */
.step-row {
  display: flex;
  gap: 1.15rem;
  padding: 1.15rem;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.step-row + .step-row {
  margin-top: 0.8rem;
}
.step-row .card-index {
  min-width: 1.6rem;
  padding-top: 0.15rem;
}
.step-row h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.step-row p {
  font-size: 0.84rem;
  line-height: 1.58;
  color: var(--text-3);
}

/* Media card: image on top, copy below */
.media-card {
  /* Keep dark-card content readable even when the card sits inside a light section. */
  --text: var(--ivory);
  --text-2: rgba(243, 239, 232, 0.76);
  --text-3: rgba(243, 239, 232, 0.62);
  --accent: var(--champagne);
  --line: rgba(183, 154, 104, 0.18);
  background: var(--plum);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.media-card__img {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.media-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.media-card__img--business-traveller img {
  object-position: center 18%;
}
.media-card:hover .media-card__img img {
  transform: scale(1.05);
}
.media-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 20, 27, 0.82) 0%, transparent 58%);
}
.media-card__badges {
  position: absolute;
  inset: 0.65rem 0.65rem auto 0.65rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.media-card__body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.media-card__body p {
  font-size: 0.87rem;
  line-height: 1.6;
  color: var(--text-2);
}
.media-card__kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne);
}

/* 10. PROFILE CARDS ====================================================== */

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.profile-card {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--plum);
  border: 1px solid rgba(193, 160, 106, 0.1);
  display: block;
  width: 100%;
  text-align: left;
  padding: 0;
  transition: border-color 0.25s var(--ease);
}
.profile-card:is(button, a) {
  cursor: pointer;
}
.profile-card:is(button, a):hover,
.profile-card[aria-pressed="true"] {
  border-color: rgba(214, 78, 121, 0.5);
}
.profile-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.profile-card:is(button, a):hover > img {
  transform: scale(1.06);
}
.profile-card--locked > img {
  filter: blur(8px) saturate(0.72) brightness(0.78);
  transform: scale(1.08);
}
.profile-card--locked:is(button, a):hover > img {
  transform: scale(1.1);
}
.profile-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(21, 20, 27, 0.96) 0%,
    rgba(21, 20, 27, 0.48) 58%,
    transparent 100%
  );
}
.profile-card__locked {
  position: absolute;
  top: 38%;
  left: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  width: max-content;
  padding: 0.48rem 0.68rem;
  border: 1px solid rgba(225, 193, 134, 0.32);
  border-radius: 999px;
  background: rgba(21, 20, 27, 0.7);
  box-shadow: 0 8px 24px rgba(15, 14, 20, 0.28);
  color: var(--ivory);
  font-family: var(--font-mono);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}
.profile-card__locked svg {
  width: 0.88rem;
  height: 0.88rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.profile-card__tags {
  position: absolute;
  inset: 0.6rem 0.6rem auto 0.6rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.profile-card__tags .tag {
  background: rgba(15, 14, 20, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(15, 14, 20, 0.18);
}
.profile-card__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 0.9rem;
}
.profile-card__name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.2;
}
.profile-card__name span {
  color: var(--champagne);
}
.profile-card__area {
  font-size: 0.8rem;
  color: rgba(245, 239, 231, 0.76);
  margin-bottom: 0.5rem;
}
.profile-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}
.profile-card--locked .profile-card__body {
  padding: 0.72rem;
}
.profile-card--locked .profile-card__name {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}
.profile-card--locked .profile-card__area {
  margin-bottom: 0;
  font-size: 0.68rem;
}

/* Feature profile: portrait with a floating glass caption */
.portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.portrait > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.portrait__caption {
  position: absolute;
  inset: auto 1.25rem 1.25rem 1.25rem;
}
.portrait__caption .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}
.portrait__caption strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--ivory);
}
.portrait__caption p {
  font-size: 0.82rem;
  color: rgba(245, 239, 231, 0.6);
}

/* Explicit "this is an illustrative profile" note — no fake testimonials */
.sample-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 239, 231, 0.68);
  margin-top: 0.6rem;
}
.section--ivory .sample-note,
.section--sand .sample-note {
  color: rgba(41, 39, 43, 0.68);
}

/* 11. EDITORIAL SPLITS =================================================== */

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--top {
  align-items: start;
}
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.split__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split__media--tall img {
  aspect-ratio: 4 / 5;
}
/* Reverse on desktop only, so mobile always reads image-then-copy */
.split--reverse .split__media {
  grid-column: 2;
  grid-row: 1;
}

.split__body h2 {
  margin-bottom: 1.1rem;
}
.split__body > p {
  margin-bottom: 1.5rem;
}

/* Full-bleed cinematic band */
.band {
  position: relative;
  padding-block: clamp(5rem, 12vw, 9rem);
  overflow: hidden;
  text-align: center;
}
.band .hero-media::after {
  background: linear-gradient(
    to bottom,
    rgba(9, 9, 12, 0.84),
    rgba(9, 9, 12, 0.56) 50%,
    rgba(9, 9, 12, 0.94)
  );
}
.band .wrap {
  position: relative;
  z-index: 2;
}
.band h2 {
  margin-bottom: 1.3rem;
}
.band .lede {
  margin-inline: auto;
  margin-bottom: 2.2rem;
}

/* 12. COMPARE (LOCAL vs VISITING) ======================================== */

.compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.compare__col {
  position: relative;
  overflow: hidden;
  padding: clamp(1.6rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.compare__col::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--merlot), var(--champagne));
}
.compare__col--visiting::before {
  background: linear-gradient(90deg, var(--neon), var(--merlot));
}
.compare__col h3 {
  margin: 1.2rem 0 1.1rem;
}

.marker-list {
  display: grid;
  gap: 0.75rem;
}
.marker-list li {
  position: relative;
  display: block;
  padding-left: 1.75rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-2);
}
.marker-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--champagne);
  line-height: 1.5;
}
.marker-list--neon li::before {
  color: var(--neon);
}
.marker-list--check li::before {
  content: "✓";
  font-size: 0.85rem;
}
.marker-list--cross li::before {
  content: "✕";
  color: var(--neon);
  font-size: 0.8rem;
}
.section--ivory .marker-list li::before,
.section--sand .marker-list li::before {
  color: var(--merlot);
}

.local-visit {
  background:
    radial-gradient(circle at 50% 0%, rgba(193, 160, 106, 0.08), transparent 34rem),
    linear-gradient(180deg, #1b181d 0%, #151419 100%);
}
.local-visit__head {
  max-width: 48rem;
  margin-inline: auto;
}
.compare--premium {
  gap: 1rem;
}
.compare--premium .compare__col {
  padding: clamp(1.8rem, 3.5vw, 2.7rem);
  border-color: rgba(193, 160, 106, 0.2);
  background: linear-gradient(145deg, rgba(44, 35, 42, 0.98), rgba(23, 21, 26, 0.98));
  box-shadow: 0 24px 60px rgba(8, 7, 10, 0.22);
}
.compare--premium .compare__col::before {
  inset: 0;
  height: auto;
  background: radial-gradient(circle at 100% 0%, rgba(193, 160, 106, 0.1), transparent 42%);
  pointer-events: none;
}
.compare--premium .compare__col--visiting {
  border-color: rgba(183, 85, 116, 0.22);
  background: linear-gradient(145deg, rgba(48, 28, 38, 0.96), rgba(23, 21, 26, 0.98));
}
.compare--premium .compare__col--visiting::before {
  background: radial-gradient(circle at 100% 0%, rgba(183, 85, 116, 0.13), transparent 42%);
}
.compare__topline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(245, 239, 231, 0.12);
}
.compare__index,
.compare__type {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.compare__index {
  color: rgba(245, 239, 231, 0.42);
}
.compare__type {
  color: var(--champagne);
}
.compare__col--visiting .compare__type {
  color: var(--rose-soft);
}
.compare--premium .compare__col h3 {
  position: relative;
  margin: 1.5rem 0 0.65rem;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}
.compare__intro {
  position: relative;
  max-width: 48ch;
  margin-bottom: 1.5rem;
  color: var(--text-3);
  font-size: 0.88rem;
  line-height: 1.65;
}
.compare--premium .marker-list {
  gap: 0;
}
.compare--premium .marker-list li {
  padding: 0.75rem 0 0.75rem 1.2rem;
  border-top: 1px solid rgba(245, 239, 231, 0.08);
}
.compare--premium .marker-list li::before {
  content: "";
  top: 1.25rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--champagne);
}
.compare--premium .marker-list--neon li::before {
  background: var(--rose-soft);
}
.local-visit__foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.8rem;
  margin-top: 1.8rem;
  color: var(--text-3);
  font-size: 0.86rem;
  text-align: center;
}

/* 13. TIMELINE / ITINERARY =============================================== */

.timeline {
  position: relative;
  padding-left: 1.6rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 0.55rem;
  bottom: 0.55rem;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.timeline__step {
  position: relative;
  padding-bottom: 1.35rem;
}
.timeline__step:last-child {
  padding-bottom: 0;
}
.timeline__step::before {
  content: "";
  position: absolute;
  left: -1.6rem;
  top: 0.42rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(116, 31, 58, 0.55);
  border: 2px solid var(--accent);
}
.timeline__step:first-child::before {
  background: var(--accent);
}
.timeline__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 0.22rem;
}
.timeline__time {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  white-space: nowrap;
}
.timeline__action {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text);
}
.timeline__venue {
  font-size: 0.83rem;
  color: var(--text-3);
}

/* Itinerary block alternates side on desktop */
.itinerary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}
.itinerary + .itinerary {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
}
.itinerary__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.itinerary__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.itinerary__media:hover img {
  transform: scale(1.04);
}
.itinerary__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21, 20, 27, 0.55), transparent 62%);
}
.itinerary__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(21, 20, 27, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.itinerary:nth-child(even) .itinerary__media {
  grid-column: 2;
  grid-row: 1;
}
.itinerary__body h3 {
  margin-bottom: 0.85rem;
}
.itinerary__body .tag-row {
  margin-bottom: 1.5rem;
}

/* 14. AREA & SPOT DISCOVERY ============================================== */

/* Map-inspired neighbourhood module */
.area-card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.area-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}
.area-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--champagne);
}
.area-card--neon::before {
  background: var(--neon);
}
.area-card--merlot::before {
  background: var(--merlot);
}
/* Faint coordinate grid — map texture without a real map */
.area-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: linear-gradient(rgba(193, 160, 106, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(193, 160, 106, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
}
.area-card > * {
  position: relative;
  z-index: 1;
}
.area-card__zone {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne);
}
.area-card--neon .area-card__zone {
  color: var(--neon);
}
.area-card h3 {
  margin: 0.35rem 0 0.7rem;
}
.area-card p {
  font-size: 0.88rem;
  line-height: 1.6;
}
.area-card__meta {
  margin-top: 1.1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.35rem;
}
.area-card__meta div {
  font-size: 0.78rem;
  color: var(--text-3);
}
.area-card__meta strong {
  color: var(--text-2);
  font-weight: 500;
}

/* Wide featured discovery tile */
.feature-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 24rem;
  display: flex;
  align-items: flex-end;
}
.feature-tile > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(21, 20, 27, 0.94) 0%,
    rgba(21, 20, 27, 0.55) 55%,
    rgba(21, 20, 27, 0.15) 100%
  );
}
.feature-tile__body {
  position: relative;
  z-index: 2;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 34rem;
}
.feature-tile__body h3 {
  font-size: clamp(1.6rem, 3.4vw, 2.35rem);
  margin: 0.9rem 0 0.5rem;
  color: var(--ivory);
}
.feature-tile--daddy > img {
  object-position: 50% 8%;
}
.feature-tile--baby > img {
  object-position: 50% 10%;
}
.feature-tile--daddy,
.feature-tile--baby {
  border: 1px solid rgba(193, 160, 106, 0.32);
  outline: 1px solid rgba(245, 239, 231, 0.1);
  outline-offset: -8px;
  box-shadow: 0 24px 60px rgba(8, 7, 10, 0.28);
  transition: border-color 0.25s var(--ease), outline-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.feature-tile--baby {
  border-color: rgba(183, 85, 116, 0.38);
  outline-color: rgba(225, 151, 174, 0.12);
}
.feature-tile--daddy:hover,
.feature-tile--baby:hover {
  border-color: rgba(225, 193, 134, 0.62);
  outline-color: rgba(245, 239, 231, 0.22);
  transform: translateY(-2px);
}
.feature-tile--baby:hover {
  border-color: rgba(225, 151, 174, 0.66);
}
.feature-tile--daddy .feature-tile__body h3,
.feature-tile--baby .feature-tile__body h3 {
  margin-top: 0.55rem;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.08;
}
.feature-tile--daddy .feature-tile__body,
.feature-tile--baby .feature-tile__body {
  max-width: 25rem;
}
.feature-tile--daddy .feature-tile__body > p:not(.feature-tile__venue),
.feature-tile--baby .feature-tile__body > p:not(.feature-tile__venue) {
  font-size: 0.88rem;
  line-height: 1.55;
}
.feature-tile__venue {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--champagne);
  margin-bottom: 0.7rem;
}
.feature-tile__body p {
  color: rgba(245, 239, 231, 0.68);
}

/* Las Vegas role-specific benefits */
.vegas-benefits {
  overflow: hidden;
}
.vegas-benefits::before {
  content: "";
  position: absolute;
  width: 26rem;
  height: 26rem;
  top: -13rem;
  right: -9rem;
  border-radius: 50%;
  border: 1px solid rgba(116, 31, 58, 0.12);
  box-shadow: 0 0 0 4rem rgba(116, 31, 58, 0.025), 0 0 0 8rem rgba(193, 160, 106, 0.035);
  pointer-events: none;
}
.vegas-benefits__head {
  position: relative;
  z-index: 1;
}
.vegas-benefits__head .lede {
  max-width: 72ch;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
.benefit-panel {
  --panel-accent: var(--champagne);
  --panel-accent-soft: rgba(193, 160, 106, 0.14);
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(193, 160, 106, 0.18);
  border-radius: var(--radius-lg);
  color: var(--ivory);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 42%),
    var(--plum);
  box-shadow: 0 20px 50px rgba(42, 29, 42, 0.12);
}
.benefit-panel--baby {
  --panel-accent: var(--rose-soft);
  --panel-accent-soft: rgba(214, 78, 121, 0.15);
  background:
    linear-gradient(145deg, rgba(214, 78, 121, 0.12), transparent 46%),
    var(--midnight);
}
.benefit-panel__head {
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(245, 239, 231, 0.12);
}
.benefit-panel__label {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.32rem 0.7rem;
  border: 1px solid color-mix(in srgb, var(--panel-accent) 48%, transparent);
  border-radius: 999px;
  background: var(--panel-accent-soft);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--panel-accent);
}
.benefit-panel__head h3 {
  margin: 1rem 0 0.8rem;
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  color: var(--ivory);
}
.benefit-panel__head p,
.benefit-item p {
  color: rgba(245, 239, 231, 0.72);
}
.benefit-panel__head p {
  max-width: 54ch;
}
.benefit-list {
  display: grid;
  gap: 0;
  margin-top: 0.3rem;
}
.benefit-item {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 0.9rem;
  padding-block: 1.35rem;
  border-bottom: 1px solid rgba(245, 239, 231, 0.1);
}
.benefit-item__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border: 1px solid color-mix(in srgb, var(--panel-accent) 35%, transparent);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  color: var(--panel-accent);
  background: var(--panel-accent-soft);
}
.benefit-item h4 {
  margin: 0.1rem 0 0.35rem;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.benefit-item p {
  font-size: 0.86rem;
  line-height: 1.62;
}
.benefit-panel__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 2.75rem;
  margin-top: auto;
  padding-top: 1.35rem;
  font-size: 0.88rem;
  font-weight: 650;
  color: var(--panel-accent);
}
.benefit-panel__link span {
  font-size: 1.15rem;
  transition: transform 0.2s var(--ease);
}
.benefit-panel__link:hover span {
  transform: translateX(0.3rem);
}
.benefit-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-top: 1.25rem;
  padding: 1.1rem 1.5rem;
  border: 1px solid rgba(116, 31, 58, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 253, 250, 0.68);
  text-align: center;
}
.benefit-summary p {
  margin: 0;
}
.benefit-summary__eyebrow {
  flex: 0 0 auto;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--merlot);
}
.benefit-summary strong {
  color: var(--charcoal);
}

/* 15. CHAT UI ============================================================ */

.chat-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.chat-panel {
  background: var(--plum);
  border: 1px solid rgba(193, 160, 106, 0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 34rem;
  position: sticky;
  top: 5.5rem;
}
.chat-panel__head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid rgba(193, 160, 106, 0.12);
}
.chat-panel__head img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.chat-panel__head strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ivory);
}
.chat-panel__status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: rgba(245, 239, 231, 0.45);
}
.chat-panel__tools {
  margin-left: auto;
  display: flex;
  gap: 0.4rem;
}
.chat-tool {
  border: 1px solid rgba(245, 239, 231, 0.12);
  background: transparent;
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.55rem;
  font-size: 0.7rem;
  color: rgba(245, 239, 231, 0.5);
  cursor: pointer;
  transition: all 0.18s var(--ease);
}
.chat-tool:hover {
  color: var(--neon);
  border-color: rgba(214, 78, 121, 0.4);
}

.chat-log {
  flex: 1;
  overflow-y: auto;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.chat-bubble {
  max-width: 82%;
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--ivory);
  background: rgba(245, 239, 231, 0.08);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.chat-bubble--me {
  align-self: flex-end;
  background: rgba(116, 31, 58, 0.55);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 4px;
}

.chat-compose {
  padding: 0.9rem 1.1rem;
  border-top: 1px solid rgba(193, 160, 106, 0.12);
}
.chat-compose form {
  display: flex;
  gap: 0.5rem;
}
.chat-compose input {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 0.85rem;
  border-radius: 8px;
  background: rgba(245, 239, 231, 0.06);
  border: 1px solid rgba(193, 160, 106, 0.14);
  color: var(--ivory);
  font-size: 0.86rem;
}
.chat-compose input::placeholder {
  color: rgba(245, 239, 231, 0.3);
}
.chat-compose button {
  width: 2.4rem;
  height: 2.4rem;
  flex-shrink: 0;
  border: 0;
  border-radius: 8px;
  background: rgba(116, 31, 58, 0.6);
  color: var(--champagne);
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s var(--ease);
}
.chat-compose button:hover {
  background: var(--merlot);
}
.chat-privacy {
  margin-top: 0.6rem;
  text-align: center;
  font-size: 0.7rem;
  color: rgba(245, 239, 231, 0.28);
}

.chat-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 2rem 1.5rem;
  text-align: center;
}
.chat-empty__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(116, 31, 58, 0.24);
  border: 1px solid rgba(116, 31, 58, 0.4);
  color: var(--rose-soft);
  margin-bottom: 0.4rem;
}
.chat-empty p {
  font-size: 0.86rem;
  color: rgba(245, 239, 231, 0.42);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.filter-group__label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 239, 231, 0.38);
}

.result-count {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.1rem;
}

.empty-state {
  padding: 3rem 1.5rem;
  text-align: center;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--text-3);
  font-size: 0.9rem;
}

/* 16. CHECKLISTS, CALLOUTS, DO/DON'T ===================================== */

.callout {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  background: rgba(116, 31, 58, 0.14);
  border: 1px solid rgba(116, 31, 58, 0.32);
}
.callout h3 {
  margin-bottom: 0.7rem;
}
.callout--gold {
  background: rgba(193, 160, 106, 0.1);
  border-color: rgba(193, 160, 106, 0.3);
}
.section--ivory .callout,
.section--sand .callout {
  background: rgba(116, 31, 58, 0.07);
  border-color: rgba(116, 31, 58, 0.2);
}

.checklist {
  display: grid;
  gap: 0.9rem;
}
.checklist li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 0.85rem;
  align-items: start;
}
.checklist li::before {
  content: "";
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 5px;
  border: 1px solid var(--line-strong);
  background: rgba(193, 160, 106, 0.1);
  background-image: linear-gradient(
      45deg,
      transparent 42%,
      var(--accent) 42%,
      var(--accent) 52%,
      transparent 52%
    ),
    linear-gradient(-45deg, transparent 58%, var(--accent) 58%, var(--accent) 68%, transparent 68%);
  background-size: 62% 62%;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0.18rem;
}
.checklist strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.checklist p {
  font-size: 0.86rem;
  line-height: 1.58;
  color: var(--text-3);
}

/* Definition-style advice rows */
.advice-list {
  display: grid;
  gap: 1.25rem;
}
.advice-list > li {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.advice-list > li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.advice-list strong {
  display: block;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.32rem;
}
.advice-list p {
  font-size: 0.89rem;
  line-height: 1.6;
}

/* Do / Don't pair */
.dodont {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.dodont__col {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
}
.dodont__col--do {
  border-color: rgba(193, 160, 106, 0.32);
}
.dodont__col--dont {
  border-color: rgba(214, 78, 121, 0.28);
}
.dodont__title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.dodont__col--do .dodont__title {
  color: var(--champagne);
}
.dodont__col--dont .dodont__title {
  color: var(--neon);
}

/* Sample message exchange used in tips */
.msg-example {
  display: grid;
  gap: 0.55rem;
  padding: 1.15rem;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.msg-example__label {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 0.2rem;
}

/* Two-up stat/summary row that carries no invented numbers */
.fact-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  padding: 1.35rem;
  border-radius: var(--radius);
  background: var(--surface-2);
  border: 1px solid var(--line);
}
.fact-row div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 0.15rem;
}
.fact-row div span {
  font-size: 0.8rem;
  color: var(--text-3);
}

/* 17. FAQ ACCORDION ====================================================== */

.faq {
  display: grid;
  gap: 0.6rem;
}
.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.faq__item:hover {
  border-color: var(--line-strong);
}
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 1.35rem;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-body);
}
.faq__icon {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(193, 160, 106, 0.12);
  color: var(--accent);
  font-size: 1.05rem;
  line-height: 1;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease);
}
.faq__q[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
  background: rgba(116, 31, 58, 0.5);
  color: var(--neon);
}
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease);
}
.faq__item.is-open .faq__a {
  grid-template-rows: 1fr;
}
.faq__a > div {
  overflow: hidden;
}
.faq__a p {
  padding: 0 1.35rem 1.25rem;
  font-size: 0.92rem;
  line-height: 1.65;
}
.faq__a p + p {
  padding-top: 0;
  margin-top: -0.5rem;
}

/* 18. FORMS ============================================================== */

.field {
  display: block;
  margin-bottom: 1rem;
}
.field > span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 239, 231, 0.45);
  margin-bottom: 0.5rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: rgba(245, 239, 231, 0.06);
  border: 1px solid rgba(193, 160, 106, 0.16);
  color: var(--ivory);
  font-size: 0.92rem;
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.field input::placeholder {
  color: rgba(245, 239, 231, 0.28);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(193, 160, 106, 0.45);
  background: rgba(245, 239, 231, 0.09);
}

.auth {
  display: grid;
  grid-template-columns: 1fr minmax(0, 30rem);
  min-height: 100vh;
}
.auth-page .auth {
  padding-top: 5rem;
}
.auth__media {
  position: relative;
  overflow: hidden;
}
.auth__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.auth__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(21, 20, 27, 0.25) 40%, rgba(21, 20, 27, 0.92) 100%);
}
.auth__quote {
  position: absolute;
  inset: auto 2.5rem 3rem 2.5rem;
  z-index: 2;
}
.auth__quote p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.4;
}
.auth__form {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.75rem, 5vw, 3rem);
}
.auth__form > div {
  width: 100%;
  max-width: 24rem;
}
.auth__privacy-note {
  color: rgba(245, 239, 231, 0.64);
  font-size: 0.86rem;
  line-height: 1.65;
}
.auth__actions {
  display: grid;
  gap: 0.75rem;
}
.auth__actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}
.auth__brand {
  position: absolute;
  top: 2rem;
  left: 2.5rem;
  z-index: 2;
}

.toggle-group {
  display: flex;
  padding: 0.25rem;
  border-radius: 10px;
  background: rgba(245, 239, 231, 0.05);
  border: 1px solid rgba(193, 160, 106, 0.12);
  margin-bottom: 2rem;
}
.toggle-group button {
  flex: 1;
  padding: 0.65rem;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: rgba(245, 239, 231, 0.45);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.toggle-group button[aria-selected="true"] {
  background: rgba(116, 31, 58, 0.55);
  color: var(--ivory);
}

.role-picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.role-picker button {
  padding: 0.85rem;
  border-radius: 8px;
  background: rgba(245, 239, 231, 0.04);
  border: 1px solid rgba(245, 239, 231, 0.1);
  color: rgba(245, 239, 231, 0.55);
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.role-picker button[aria-pressed="true"] {
  background: rgba(116, 31, 58, 0.48);
  border-color: rgba(193, 160, 106, 0.38);
  color: var(--champagne);
}

.form-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.76rem;
  color: rgba(245, 239, 231, 0.3);
  line-height: 1.6;
}
.form-note a {
  color: rgba(193, 160, 106, 0.75);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* 19. FOOTER ============================================================= */

.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(193, 160, 106, 0.12);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.site-footer__about p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(245, 239, 231, 0.48);
  margin-top: 1rem;
  max-width: 32ch;
}
.site-footer h2 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 1.2rem;
}
.site-footer ul {
  display: grid;
  gap: 0.75rem;
}
.site-footer ul a {
  font-size: 0.89rem;
  color: rgba(245, 239, 231, 0.56);
  transition: color 0.2s var(--ease);
}
.site-footer ul a:hover {
  color: var(--champagne);
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.site-footer__base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(193, 160, 106, 0.1);
}
.site-footer__base p,
.site-footer__base a {
  font-size: 0.78rem;
  color: rgba(245, 239, 231, 0.5);
}
.site-footer__base nav {
  display: flex;
  gap: 1.5rem;
}
.site-footer__base a:hover {
  color: var(--champagne);
}

/* Breadcrumbs */
.crumbs {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-bottom: 1.25rem;
}
.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.crumbs li + li::before {
  content: "/";
  margin-right: 0.45rem;
  opacity: 0.5;
}
.crumbs a:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Contextual "read next" strip */
.next-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.next-links a {
  display: block;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.next-links a:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.next-links strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.next-links span {
  font-size: 0.82rem;
  color: var(--text-3);
}

/* 20. UTILITIES ========================================================== */

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.is-hidden {
  display: none !important;
}

.center {
  text-align: center;
}
.stack-sm > * + * {
  margin-top: 0.75rem;
}
.stack > * + * {
  margin-top: 1.25rem;
}
.stack-lg > * + * {
  margin-top: 2.25rem;
}
.mt-1 {
  margin-top: 0.75rem;
}
.mt-2 {
  margin-top: 1.5rem;
}
.mt-3 {
  margin-top: 2.5rem;
}
.mt-4 {
  margin-top: 3.5rem;
}
.mb-2 {
  margin-bottom: 1.5rem;
}
.mb-3 {
  margin-bottom: 2.5rem;
}

/* 21. RESPONSIVE ========================================================= */

@media (min-width: 640px) {
  :root {
    --gutter: 2rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --gutter: 2.5rem;
  }
  .site-header > .wrap {
    height: 5rem;
  }
}

/* --- Tablet ------------------------------------------------------------ */
@media (max-width: 1080px) {
  .grid--6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .chat-shell {
    grid-template-columns: 1fr;
  }
  .chat-panel {
    position: static;
    height: 28rem;
  }
}

/* --- Nav collapse ------------------------------------------------------ */
@media (max-width: 1023px) {
  .nav-links,
  .nav-actions {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .hero--role > .hero-media img {
    width: 100%;
    margin-left: 0;
    object-position: 58% 18%;
  }
}

/* --- Mobile ------------------------------------------------------------ */
@media (max-width: 760px) {
  body {
    font-size: 0.97rem;
  }

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

  /* Profiles stay two-up on phones — a single column reads as a dead list */
  .profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .split,
  .compare,
  .itinerary,
  .dodont {
    grid-template-columns: 1fr;
  }
  /* Undo desktop reordering so image always precedes copy */
  .split--reverse .split__media,
  .itinerary:nth-child(even) .itinerary__media {
    grid-column: auto;
    grid-row: auto;
  }

  .section-head--split {
    align-items: flex-start;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    padding-block: 6.5rem 2.75rem;
  }
  .hero-media img {
    object-position: 60% center;
  }
  .hero-media::after {
    background: linear-gradient(
      to bottom,
      rgba(21, 20, 27, 0.68) 0%,
      rgba(21, 20, 27, 0.86) 46%,
      rgba(21, 20, 27, 0.98) 100%
    );
  }
  .hero--home .hero-media::after {
    background: linear-gradient(
      to bottom,
      rgba(12, 11, 15, 0.38) 0%,
      rgba(12, 11, 15, 0.76) 48%,
      rgba(12, 11, 15, 0.97) 100%
    );
  }
  .hero--home {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    align-items: flex-end;
    padding-block: 6.25rem 2.5rem;
  }
  .hero--home .hero-media img {
    object-position: 82% center;
  }
  .hero--home .hero-content {
    max-width: 52rem;
    margin-inline: auto;
    text-align: center;
  }
  .hero--home .hero-content .lede {
    margin-inline: auto;
    margin-bottom: 1.35rem;
    font-size: 0.98rem;
    line-height: 1.52;
  }
  .hero--home .hero-content h1 {
    margin-bottom: 0.9rem;
    font-size: clamp(2.25rem, 10.5vw, 2.75rem);
  }
  .hero--home .btn-row {
    justify-content: center;
  }
  .hero--home .btn-row .btn {
    flex: 0 0 auto;
  }
  .hero--home .hero-note {
    margin-top: 1.2rem;
    font-size: 0.75rem;
  }
  .hero--bottom {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero--role > .hero-media img {
    width: 100%;
    margin-left: 0;
    object-position: 58% 18%;
  }
  .hero--role .hero-content {
    max-width: 100%;
  }
  .hero--role .hero-content h1 {
    font-size: clamp(2.35rem, 10vw, 3rem);
  }

  .feature-tile {
    min-height: 20rem;
  }
  .feature-tile::after {
    background: linear-gradient(to top, rgba(21, 20, 27, 0.95) 12%, rgba(21, 20, 27, 0.35) 100%);
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .benefit-panel {
    padding: 1.4rem;
  }
  .benefit-summary {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }

  .auth {
    width: 100%;
    max-width: 100vw;
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }
  .auth-page .auth {
    padding-top: 4rem;
  }
  .auth__media {
    display: none;
  }
  .auth__form {
    width: 100vw;
    max-width: 100vw;
    min-width: 0;
    padding: 2rem 1.25rem 2.5rem;
  }
  .auth__form > div {
    min-width: 0;
    max-width: none;
  }
  .auth__form h1 {
    font-size: clamp(2.15rem, 11vw, 2.65rem);
    text-wrap: wrap;
  }
  .toggle-group {
    width: 100%;
  }
  .toggle-group button {
    min-width: 0;
    padding-inline: 0.45rem;
    font-size: 0.82rem;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }
  .site-footer__about {
    grid-column: 1 / -1;
  }
  .site-footer__base {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    padding: 0.85rem 1.5rem;
  }
  /* Full-width CTAs read better than half-width stubs on a phone */
  .btn-row .btn {
    flex: 1 1 100%;
  }

  .filter-bar {
    gap: 1rem;
  }
  /* Four homepage filters fit more clearly as a compact two-row group. */
  .chip-row--scroll {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    margin-inline: 0;
    padding: 0;
    width: 100%;
  }
  .chip-row--scroll .chip {
    width: 100%;
  }

  .timeline__head {
    gap: 0.5rem;
  }
}

@media (max-width: 420px) {
  .profile-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .profile-card {
    aspect-ratio: 16 / 10;
  }
  .profile-card__body {
    padding: 1rem;
  }
  .profile-card__name {
    font-size: 1.2rem;
  }
  .profile-card__tags {
    inset: 0.75rem 0.75rem auto;
  }
}

/* 22. PRINT ============================================================== */

@media print {
  .site-header,
  .site-footer,
  .chat-panel,
  .filter-bar,
  .btn-row {
    display: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
  .section {
    padding-block: 1rem;
    background: #fff;
  }
}
