/* ==========================================================================
   LuxuryDating.net — Premium Design System
   Converted from Figma Make project
   ========================================================================== */

/* ─── Google Fonts ─────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Manrope:wght@300;400;500;600;700&display=swap');

/* ─── CSS Custom Properties (Design Tokens) ────────────────────────────── */
:root {
  /* Colors */
  --gold: #B89A5A;
  --gold-light: #D4B97A;
  --gold-dim: rgba(184, 154, 90, 0.25);
  --gold-fade: rgba(184, 154, 90, 0.12);
  --gold-border: rgba(184, 154, 90, 0.3);
  --gold-border-light: rgba(184, 154, 90, 0.15);
  --burgundy: #6B2233;
  --burgundy-dark: #5A1D2B;
  --dark: #0F0D0A;
  --darker: #080604;
  --mid: #1E1A15;
  --mid-light: #27221C;
  --warm: #F7F4EE;
  --warm-light: #FDFBF7;
  --warm-dark: #E8E3D8;
  --text-light: rgba(247, 244, 238, 0.78);
  --text-dim: rgba(247, 244, 238, 0.66);
  --text-subtle: rgba(247, 244, 238, 0.58);
  --text-muted: rgba(247, 244, 238, 0.5);
  --text-dark: #1C1815;
  --text-body: #665C53;
  --text-body-light: #74695F;

  /* Typography */
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Manrope', sans-serif;

  /* Spacing */
  --section-padding: 120px;
  --content-width: 1300px;
  --content-padding: 40px;

  /* Borders */
  --radius-sm: 0;
  --radius: 0.625rem;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s;
  --transition-smooth: 0.4s;
  --transition-slow: 0.7s;
}

/* ─── Reset & Base ─────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--warm);
  overflow-x: hidden;
}

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

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

a, button, input, textarea, select {
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

ul, ol {
  list-style: none;
}

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

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

/* ─── Typography ───────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.15rem;
}

p {
  line-height: 1.85;
}

/* ─── Utility Classes ──────────────────────────────────────────────────── */
.container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--warm);
  color: var(--dark);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform var(--transition-fast);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s var(--ease-out-expo), transform 0.85s var(--ease-out-expo);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Ornament ─────────────────────────────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.ornament::before,
.ornament::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.ornament::before {
  margin-right: 0;
}

.ornament-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.ornament-light::before,
.ornament-light::after {
  background: rgba(184, 154, 90, 0.6);
}

.ornament-light .ornament-dot {
  background: rgba(184, 154, 90, 0.6);
}

/* Ornament wrapper for centering inside page-header */
.ornament-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

/* ─── Label ────────────────────────────────────────────────────────────── */
.label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.label-light {
  color: rgba(184, 154, 90, 0.85);
}

/* ─── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  min-height: 48px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  padding: 16px 36px;
  text-transform: uppercase;
  transition: all var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary:hover {
  opacity: 0.85;
}

.btn-outline {
  border: 1px solid rgba(247, 244, 238, 0.25);
  color: var(--warm);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--gold-border);
}

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

.btn-outline-dark:hover {
  background: var(--gold);
  color: var(--dark);
}

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

.btn-gold:hover {
  opacity: 0.85;
}

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

.btn-light:hover {
  opacity: 0.88;
}

.btn-link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--burgundy);
  padding-bottom: 2px;
  transition: gap var(--transition-fast);
}

.btn-link:hover {
  gap: 14px;
}

.btn-link-gold {
  color: var(--gold);
  border-bottom-color: var(--gold-border);
}

.btn-link-gold:hover {
  gap: 14px;
}

/* ─── Navigation ───────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: none;
  transition: background 0.5s, border-color 0.5s, backdrop-filter 0.5s;
}

.nav.scrolled {
  background: rgba(15, 13, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border-light);
}

.nav.nav-solid {
  background: rgba(15, 13, 10, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border-light);
}

.nav-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-heading);
  color: var(--warm);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 36px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--warm);
}

.nav-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.nav-signin {
  font-family: var(--font-body);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: rgba(247, 244, 238, 0.55);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-signin:hover {
  color: var(--warm);
}

.nav-signin[aria-current="page"] {
  color: var(--warm);
}

.nav-join {
  font-family: var(--font-body);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  padding: 10px 24px;
  border: 1px solid rgba(184, 154, 90, 0.6);
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.25s;
}

.nav-join:hover {
  background: var(--gold);
  color: var(--dark);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  align-items: center;
  justify-content: center;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--warm);
  transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 13, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile a {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--warm);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.nav-mobile .nav-signin {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-light);
}

.nav-mobile a:hover {
  color: var(--gold);
}

.nav-mobile .nav-join {
  font-family: var(--font-body);
  font-size: 0.8rem;
  margin-top: 16px;
}

/* ─── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background: var(--dark);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  opacity: 0.72;
}

.hero-overlay-right {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,13,10,0.92) 0%, rgba(15,13,10,0.55) 55%, rgba(15,13,10,0.2) 100%);
}

.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, var(--dark), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 var(--content-padding);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text {
  max-width: 680px;
}

.hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--warm);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 2rem;
}

.hero-text h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-text p {
  font-family: var(--font-body);
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 3rem;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 48px;
  left: var(--content-padding);
  right: var(--content-padding);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--gold-border-light);
  padding-top: 24px;
}

.hero-stat {
  min-width: 0;
  padding: 0 28px;
  border-right: 1px solid var(--gold-border-light);
}

.hero-stat:first-child {
  padding-left: 0;
}

.hero-stat:last-child {
  border-right: none;
  padding-right: 0;
}

@media (min-width: 901px) {
  .hero-stat:nth-child(2),
  .hero-stat:nth-child(3) {
    text-align: center;
  }

  .hero-stat:last-child {
    text-align: right;
  }
}

.hero-stat-number {
  font-family: var(--font-heading);
  color: var(--warm);
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-family: var(--font-body);
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Hero animations */
.hero-animate {
  opacity: 0;
  animation: fadeUp 0.6s var(--ease-out-expo) forwards;
}

.hero-animate-1 { animation-delay: 0.05s; }
.hero-animate-2 { animation-delay: 0.12s; }
.hero-animate-3 { animation-delay: 0.19s; }
.hero-animate-4 { animation-delay: 0.26s; }
.hero-animate-5 { animation-delay: 0.33s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── Intro / Philosophy Section ───────────────────────────────────────── */
.intro-section {
  background: var(--mid);
  padding: var(--section-padding) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-quote {
  border-left: 2px solid rgba(184, 154, 90, 0.35);
  padding-left: 40px;
}

.intro-quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--warm);
  line-height: 1.45;
  letter-spacing: -0.01em;
  font-style: italic;
  margin-bottom: 32px;
}

.intro-quote-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.intro-quote-footer .line {
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.intro-quote-footer span {
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.intro-image-wrap {
  position: relative;
}

.intro-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #2E2820;
}

.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

/* Gold corner accents */
.corner-accent-tr,
.corner-accent-bl {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(184, 154, 90, 0.4);
  pointer-events: none;
}

.corner-accent-tr {
  top: -12px;
  right: -12px;
}

.corner-accent-bl {
  bottom: -12px;
  left: -12px;
}

.intro-caption {
  position: absolute;
  bottom: 32px;
  right: -24px;
  background: var(--dark);
  padding: 18px 22px;
  border: 1px solid var(--gold-border);
}

.intro-caption-number {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

.intro-caption-label {
  font-family: var(--font-body);
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Intro pillars */
.intro-pillars {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  border-top: 1px solid var(--gold-fade);
  padding-top: 64px;
}

.intro-pillar .pillar-line {
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}

.intro-pillar h3 {
  font-family: var(--font-heading);
  color: var(--warm);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.intro-pillar p {
  font-family: var(--font-body);
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.8;
}

/* ─── Profiles Section ─────────────────────────────────────────────────── */
.profiles-section {
  background: var(--warm);
  padding: var(--section-padding) 0;
}

.profiles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}

.profiles-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  line-height: 1.05;
}

.profiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.profile-card {
  cursor: pointer;
  position: relative;
}

.profile-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #2E2820;
  position: relative;
}

.profile-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow) var(--ease-out-expo);
}

.profile-card:hover .profile-card-image img {
  transform: scale(1.04);
}

.profile-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,13,10,0.7) 0%, transparent 55%);
  transition: background var(--transition-smooth);
}

.profile-card:hover .profile-card-overlay {
  background: linear-gradient(to top, rgba(15,13,10,0.85) 0%, rgba(15,13,10,0.3) 50%, transparent 100%);
}

.profile-verified {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: rgba(15, 13, 10, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border);
}

.profile-verified svg {
  width: 9px;
  height: 9px;
  color: var(--gold);
}

.profile-verified span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}

.profile-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
}

.profile-name {
  font-family: var(--font-heading);
  color: var(--warm);
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 4px;
}

.profile-location {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 0;
  transition: margin var(--transition-smooth);
}

.profile-card:hover .profile-location {
  margin-bottom: 14px;
}

.profile-location svg {
  width: 10px;
  height: 10px;
  color: var(--gold);
}

.profile-location span {
  font-family: var(--font-body);
  color: var(--text-light);
  font-size: 0.75rem;
}

.profile-details {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height var(--transition-smooth), opacity 0.3s;
}

.profile-card:hover .profile-details {
  max-height: 60px;
  opacity: 1;
}

.profile-role {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.profile-role svg {
  width: 10px;
  height: 10px;
  color: rgba(247, 244, 238, 0.5);
}

.profile-role span {
  font-family: var(--font-body);
  color: var(--text-light);
  font-size: 0.75rem;
}

.profile-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.profile-tags span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px solid rgba(184, 154, 90, 0.45);
  padding: 3px 8px;
}

/* ─── Why Choose / Features ────────────────────────────────────────────── */
.why-choose {
  background: var(--dark);
  padding: var(--section-padding) 0;
  border-top: 1px solid var(--gold-fade);
}

.why-choose-header {
  text-align: center;
  margin-bottom: 80px;
}

.why-choose-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--warm);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--gold-border-light);
}

.feature-card {
  background: var(--mid);
  padding: 52px 36px;
  height: 100%;
  transition: background var(--transition-smooth);
}

.feature-card:hover {
  background: var(--mid-light);
}

.feature-number {
  font-family: var(--font-heading);
  color: var(--gold-dim);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 36px;
}

.feature-line {
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 24px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  color: var(--warm);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.feature-card p {
  font-family: var(--font-body);
  color: var(--text-dim);
  font-size: 0.83rem;
  line-height: 1.85;
}

/* ─── Lifestyle Section ────────────────────────────────────────────────── */
.lifestyle-section {
  background: var(--warm);
}

.lifestyle-header {
  padding: 120px 0 64px;
}

.lifestyle-header-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.lifestyle-header-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
}

.lifestyle-header-inner p {
  font-family: var(--font-body);
  color: var(--text-body-light);
  max-width: 360px;
  line-height: 1.8;
  font-size: 0.88rem;
}

.lifestyle-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 400px 320px;
  gap: 3px;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  background: #2E2820;
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.mosaic-item:hover img {
  transform: scale(1.04);
}

.mosaic-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,13,10,0.8) 0%, transparent 55%);
}

.mosaic-item-caption {
  position: absolute;
  bottom: 36px;
  left: 36px;
}

.mosaic-item-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mosaic-item-title {
  font-family: var(--font-heading);
  color: var(--warm);
  font-size: 1.6rem;
  line-height: 1.1;
}

.mosaic-span-rows {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

.mosaic-span-cols {
  grid-row: 1 / 2;
  grid-column: 2 / 4;
}

.mosaic-span-cols .mosaic-item-title {
  font-size: 1.6rem;
}

.mosaic-item-sm .mosaic-item-caption {
  bottom: 28px;
  left: 28px;
}

.mosaic-item-sm .mosaic-item-title {
  font-size: 1.3rem;
}

/* ─── How It Works ─────────────────────────────────────────────────────── */
.how-it-works {
  background: var(--warm);
  padding: var(--section-padding) 0;
}

.how-header {
  text-align: center;
  margin-bottom: 80px;
}

.how-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.how-progress-line {
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(to right, rgba(184,154,90,0.13), rgba(184,154,90,0.4), rgba(184,154,90,0.13));
}

.how-step {
  padding: 0 32px;
  text-align: center;
  position: relative;
}

.how-step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 36px;
  background: var(--warm);
  position: relative;
  z-index: 1;
}

.how-step-circle span {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 0.9rem;
}

.how-step h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 14px;
}

.how-step p {
  font-family: var(--font-body);
  color: var(--text-body-light);
  font-size: 0.82rem;
  line-height: 1.8;
}

.how-cta {
  text-align: center;
  margin-top: 60px;
}

/* ─── Safety Section ───────────────────────────────────────────────────── */
.safety-section {
  background: var(--mid);
  padding: var(--section-padding) 0;
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.safety-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--warm);
  line-height: 1.1;
  margin-bottom: 20px;
}

.safety-text h2 em {
  color: var(--gold);
}

.safety-text > p {
  font-family: var(--font-body);
  color: var(--text-dim);
  line-height: 1.85;
  margin-bottom: 48px;
  font-size: 0.9rem;
}

.safety-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.safety-feature {
  display: flex;
  gap: 20px;
}

.safety-feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}

.safety-feature-icon svg {
  width: 16px;
  height: 16px;
}

.safety-feature-text h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--warm);
  margin-bottom: 4px;
}

.safety-feature-text p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-dim);
  line-height: 1.75;
}

.safety-image-wrap {
  position: relative;
}

.safety-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #2E2820;
}

.safety-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}

/* ─── App Section ──────────────────────────────────────────────────────── */
.app-section {
  background: var(--warm-light);
  padding: var(--section-padding) 0;
  overflow: hidden;
}

.app-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 80px;
  align-items: center;
}

.app-visual-frame {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: visible;
  background: transparent;
}

.app-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(15, 13, 10, 0.2));
}

.app-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 24px;
}

.app-copy > p {
  max-width: 540px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.85;
}

.app-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.app-points span {
  position: relative;
  padding-left: 22px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
}

.app-points span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.app-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.app-store-badge {
  min-width: 174px;
  min-height: 56px;
  padding: 8px 14px;
  border: 1px solid rgba(247, 244, 238, 0.22);
  border-radius: 8px;
  background: var(--dark);
  color: var(--warm);
  display: inline-flex;
  align-items: center;
  gap: 11px;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.app-store-badge:hover {
  background: var(--mid);
  transform: translateY(-2px);
}

.app-store-icon {
  width: 27px;
  height: 27px;
  flex: 0 0 27px;
}

.app-store-icon-apple {
  fill: currentColor;
}

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

.app-store-badge small {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.02em;
  margin-bottom: 3px;
}

.app-store-badge strong {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.015em;
}

/* ─── Testimonials ─────────────────────────────────────────────────────── */
.testimonials-section {
  background: #0A0806;
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.testimonials-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,154,90,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
}

.testimonials-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--warm);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gold-fade);
}

.testimonial-card {
  background: var(--mid);
  padding: 48px 40px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 28px;
}

.testimonial-stars svg {
  width: 12px;
  height: 12px;
  fill: var(--gold);
  color: var(--gold);
}

.testimonial-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--warm);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 32px;
}

.testimonial-author {
  padding-top: 24px;
  border-top: 1px solid var(--gold-border-light);
}

.testimonial-author .name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--warm);
  margin-bottom: 3px;
}

.testimonial-author .info {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-subtle);
}

/* ─── FAQ Section ───────────────────────────────────────────────────────── */
.faq-section {
  background: var(--warm);
  padding: var(--section-padding) 0;
}

.faq-section .container {
  max-width: 860px;
}

.faq-header {
  text-align: center;
  margin-bottom: 64px;
}

.faq-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
}

.faq-list {
  border-top: 1px solid rgba(28, 24, 21, 0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(28, 24, 21, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--dark);
  line-height: 1.4;
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--burgundy);
}

.faq-question.active {
  color: var(--burgundy);
}

.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: #A09284;
  transition: transform 0.3s, color var(--transition-fast);
}

.faq-question.active .faq-icon {
  transform: rotate(180deg);
  color: var(--burgundy);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s var(--ease-out-expo), opacity 0.3s;
}

.faq-answer.active {
  max-height: 300px;
  opacity: 1;
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.85;
  padding-bottom: 24px;
}

.faq-footer {
  text-align: center;
  margin-top: 40px;
}

/* ─── CTA Banner ────────────────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  overflow: hidden;
}

.cta-banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(107,34,51,0.93) 0%, rgba(15,13,10,0.96) 100%);
}

.cta-banner-content {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 40px;
  text-align: center;
}

.cta-banner-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 24px;
}

.cta-banner-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: rgba(184, 154, 90, 0.75);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.cta-banner-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--warm);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.cta-banner-content h2 em {
  color: var(--gold-light);
}

.cta-banner-content p {
  font-family: var(--font-body);
  color: rgba(247, 244, 238, 0.55);
  line-height: 1.85;
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--darker);
  border-top: 1px solid var(--gold-fade);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 80px 0 48px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  color: var(--warm);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.footer-brand p {
  font-family: var(--font-body);
  color: rgba(247, 244, 238, 0.3);
  font-size: 0.8rem;
  line-height: 1.85;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-domain {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.footer-col-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-subtle);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: rgba(247, 244, 238, 0.75);
}

.footer-bottom {
  padding: 20px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── Page Header (for inner pages) ─────────────────────────────────────── */
.page-header {
  background: var(--dark);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(184,154,90,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-header h1 {
  color: var(--warm);
  margin-bottom: 16px;
  position: relative;
}

.page-header p {
  color: var(--text-light);
  max-width: 640px;
  margin: 0 auto;
  font-size: 1rem;
  position: relative;
}

.page-header-visual {
  min-height: clamp(720px, 88vh, 960px);
  padding: 120px 0 72px;
  text-align: left;
  display: flex;
  align-items: center;
}

.page-header-visual::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 6, 4, 0.97) 0%, rgba(15, 13, 10, 0.9) 34%, rgba(15, 13, 10, 0.5) 60%, rgba(15, 13, 10, 0.12) 100%),
    linear-gradient(0deg, rgba(8, 6, 4, 0.42) 0%, transparent 45%);
}

.page-header-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-header-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-header-copy {
  position: relative;
  z-index: 2;
  max-width: 570px;
}

.page-header-copy .ornament-wrap {
  justify-content: flex-start;
  margin-bottom: 20px;
}

.page-header-copy h1 {
  font-size: clamp(3.5rem, 5vw, 4.8rem);
  margin-bottom: 24px;
}

.page-header-copy p {
  max-width: 520px;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.8;
}

.page-header-actions {
  display: flex;
  align-items: center;
  margin-top: 32px;
}

.page-header-luxury .page-header-background {
  object-position: 58% center;
}

.page-header-successful .page-header-background {
  object-position: 56% center;
}

.page-header-safety .page-header-background {
  object-position: 58% center;
}

.page-header-millionaire .page-header-background {
  object-position: 58% center;
}

.page-header-wealthy .page-header-background {
  object-position: 58% center;
}

/* ─── Content Sections (inner pages) ────────────────────────────────────── */
.content-section {
  padding: 100px 0;
}

.content-section.alt {
  background: var(--warm-light);
}

.content-section.dark {
  background: var(--mid);
  color: var(--warm);
}

.content-section.dark h2 {
  color: var(--warm);
}

.content-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 24px;
}

.content-section h3 {
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.content-section.dark h3 {
  color: var(--warm);
}

.content-text {
  max-width: 780px;
}

.content-intro {
  margin-inline: auto;
  text-align: center;
}

.content-intro .ornament {
  justify-content: center;
}

.content-intro p {
  text-align: left;
}

.content-block-centered {
  margin-inline: auto;
}

.section-heading-centered {
  text-align: center;
}

.section-heading-centered .ornament,
.why-choose-header .ornament,
.how-header .ornament,
.testimonials-header .ornament,
.faq-header .ornament,
.cta-section .ornament {
  justify-content: center;
}

.section-heading-spaced {
  margin-bottom: 64px;
}

.section-heading-compact {
  margin-bottom: 48px;
}

.content-text p {
  color: var(--text-body);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.content-text a {
  color: var(--burgundy);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.content-section.dark .content-text p {
  color: var(--text-dim);
}

.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #2E2820;
  position: relative;
}

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

.content-image.landscape {
  aspect-ratio: 16/9;
}

/* ─── Feature Grid (inner pages) ────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.feature-item {
  display: flex;
  gap: 20px;
}

.feature-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}

.feature-item-icon svg {
  width: 18px;
  height: 18px;
}

.feature-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.75;
}

.content-section.dark .feature-item p {
  color: var(--text-dim);
}

/* ─── Steps / Timeline ──────────────────────────────────────────────────── */
.steps-vertical {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 60px;
}

.process-steps {
  max-width: 800px;
  margin-inline: auto;
}

.steps-vertical::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(184,154,90,0.3), var(--gold));
}

.step-item {
  position: relative;
  padding-bottom: 48px;
}

.step-item:last-child {
  padding-bottom: 0;
}

.step-number {
  position: absolute;
  left: -60px;
  top: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--warm);
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 0.9rem;
  z-index: 1;
}

.content-section.dark .step-number {
  background: var(--mid);
}

.step-content {
  padding-top: 4px;
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.step-content p {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.75;
}

.content-section.dark .step-content p {
  color: var(--text-dim);
}

/* ─── Contact Form ──────────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-grid h2 {
  color: var(--dark);
}

.contact-grid h2 em {
  color: var(--burgundy);
}

.contact-support-panel .safety-feature-text h4 {
  color: var(--dark);
}

.contact-support-panel .safety-feature-text p {
  color: var(--text-body);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 8px;
}

.content-section.dark .form-group label {
  color: var(--warm);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  min-height: 48px;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(28, 24, 21, 0.15);
  background: white;
  color: var(--text-dark);
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
  border-color: #d4183d;
}

.form-error {
  font-size: 0.72rem;
  color: #d4183d;
  margin-top: 4px;
}

.form-success {
  background: rgba(184, 154, 90, 0.1);
  border: 1px solid var(--gold-border);
  padding: 20px 24px;
  text-align: center;
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 16px;
}

/* ─── Login Page ────────────────────────────────────────────────────────── */
.login-section {
  height: clamp(620px, calc(100vh - 72px), 760px);
  height: clamp(620px, calc(100svh - 72px), 760px);
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.login-form-side {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
  background: var(--warm);
}

.login-form-wrap {
  width: 100%;
  max-width: 440px;
}

.login-form-wrap h1 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.login-form-wrap > p {
  color: var(--text-body);
  margin-bottom: 40px;
  font-size: 0.9rem;
}

.login-simple-form {
  margin-top: 8px;
}

.login-form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 4px 0 28px;
}

.login-form-options > a {
  color: var(--burgundy);
  font-size: 0.82rem;
  font-weight: 600;
}

.login-submit {
  width: 100%;
  justify-content: center;
}

.login-image-side {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.login-image-side img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  opacity: 0.6;
}

.login-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,13,10,0.5) 0%, rgba(15,13,10,0.2) 100%);
}

.login-image-quote {
  position: absolute;
  bottom: 80px;
  left: 60px;
  right: 60px;
}

.login-image-quote blockquote {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--warm);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 20px;
}

.login-image-quote span {
  font-family: var(--font-body);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-body);
}

.form-checkbox input {
  width: auto;
}

.form-footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.85rem;
  color: var(--text-body);
}

.form-footer a {
  color: var(--burgundy);
  font-weight: 600;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* ─── Privacy / Terms Pages ─────────────────────────────────────────────── */
.legal-content {
  max-width: 780px;
}

.legal-content h2 {
  font-size: 1.6rem;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  color: var(--text-body);
  margin-bottom: 16px;
  font-size: 0.92rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 24px;
}

.legal-content ul li {
  color: var(--text-body);
  font-size: 0.92rem;
  margin-bottom: 8px;
  line-height: 1.7;
}

.last-updated {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-body-light);
  margin-bottom: 32px;
  font-style: italic;
}

/* ─── Breadcrumb ────────────────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-body-light);
  margin-bottom: 40px;
}

.breadcrumb a {
  color: var(--text-body-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.breadcrumb .sep {
  color: rgba(28, 24, 21, 0.3);
}

.breadcrumb .current {
  color: var(--burgundy);
  font-weight: 600;
}

/* ─── Cards Grid (generic) ──────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: white;
  border: 1px solid rgba(28, 24, 21, 0.08);
  padding: 40px 32px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover {
  box-shadow: 0 20px 40px rgba(15, 13, 10, 0.08);
  transform: translateY(-2px);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  margin-bottom: 24px;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.card p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* ─── Safety Tips List ──────────────────────────────────────────────────── */
.tips-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tip-item {
  display: flex;
  gap: 24px;
}

.tip-number {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
}

.tip-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.tip-item p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* ─── Stats Bar ─────────────────────────────────────────────────────────── */
.stats-bar {
  background: var(--dark);
  padding: 60px 0;
  border-top: 1px solid var(--gold-fade);
  border-bottom: 1px solid var(--gold-fade);
}

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

.stat-item {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid var(--gold-border-light);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--warm);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(247, 244, 238, 0.4);
  text-transform: uppercase;
}

/* ─── Trust Badges ──────────────────────────────────────────────────────── */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--warm);
  border: 1px solid rgba(28, 24, 21, 0.08);
}

.trust-badge svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.trust-badge-text .badge-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--dark);
}

.trust-badge-text .badge-sub {
  font-family: var(--font-body);
  font-size: 0.68rem;
  color: var(--text-body-light);
}

/* ─── Value Props (icon + text inline) ──────────────────────────────────── */
.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.value-props-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-prop {
  text-align: center;
  padding: 36px 24px;
}

.value-prop-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin: 0 auto 20px;
}

.value-prop-icon svg {
  width: 24px;
  height: 24px;
}

.value-prop h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.value-prop p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ─── Quote Block ────────────────────────────────────────────────────────── */
.quote-block {
  text-align: center;
  padding: 80px 0;
}

.quote-block blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--warm);
  font-style: italic;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 24px;
}

.quote-block cite {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--gold);
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─── CTA Section (compact) ─────────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  max-width: 560px;
  margin: 0 auto 32px;
  color: var(--text-body);
  font-size: 0.95rem;
}

.cta-section .btn {
  display: inline-flex;
}

/* ─── Modal ─────────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 13, 10, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 200;
  align-items: center;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--warm);
  padding: 48px;
  max-width: 500px;
  width: 90%;
  position: relative;
  border: 1px solid var(--gold-border-light);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(28, 24, 21, 0.15);
  color: var(--text-body-light);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--dark);
  color: var(--warm);
  border-color: var(--dark);
}

.modal h2 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}

/* ─── Responsive — Tablet (< 900px) ─────────────────────────────────────── */
@media (max-width: 900px) {
  :root {
    --section-padding: 80px;
    --content-padding: 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions .nav-signin {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intro-pillars {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lifestyle-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 240px;
  }

  .mosaic-span-rows {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
  }

  .mosaic-span-cols {
    grid-row: auto;
    grid-column: auto;
  }

  .how-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 0;
  }

  .how-progress-line {
    display: none;
  }

  .safety-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-props {
    grid-template-columns: 1fr;
  }

  .value-props-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .stat-item {
    border-right: none;
  }

  .login-section {
    grid-template-columns: 1fr;
    height: auto;
    min-height: calc(100vh - 72px);
    min-height: calc(100svh - 72px);
  }

  .login-image-side {
    display: none;
  }

  .hero {
    height: auto;
    min-height: 100svh;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-content {
    min-height: 100svh;
    height: auto;
    padding-top: 136px;
    padding-bottom: 56px;
    justify-content: flex-start;
  }

  .hero-stats {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 0;
    margin-top: 48px;
  }

  .hero-stat {
    flex: 1 1 50%;
    min-width: 140px;
  }

  .hero-stat:nth-child(2) {
    border-right: none;
  }

  .content-two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .app-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .app-copy {
    order: 1;
  }

  .app-visual {
    order: 2;
  }

  .page-header-visual {
    min-height: 500px;
    padding: 132px 0 72px;
  }

  .page-header-visual::before {
    background:
      linear-gradient(90deg, rgba(8, 6, 4, 0.94) 0%, rgba(15, 13, 10, 0.84) 58%, rgba(15, 13, 10, 0.5) 100%),
      linear-gradient(0deg, rgba(8, 6, 4, 0.48) 0%, transparent 50%);
  }

  .page-header-copy {
    max-width: 520px;
  }

  .page-header-copy .ornament-wrap {
    justify-content: flex-start;
  }

  .page-header-copy h1 {
    font-size: clamp(2.8rem, 8vw, 3.8rem);
  }

  .page-header-copy p {
    margin: 0;
  }

  .page-header-luxury .page-header-background,
  .page-header-successful .page-header-background,
  .page-header-safety .page-header-background,
  .page-header-millionaire .page-header-background,
  .page-header-wealthy .page-header-background {
    object-position: 66% center;
  }
}

/* ─── Responsive — Mobile (< 600px) ─────────────────────────────────────── */
@media (max-width: 600px) {
  :root {
    --section-padding: 64px;
    --content-padding: 20px;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .hero-content {
    padding-top: 132px;
    padding-bottom: 44px;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-text h1 {
    font-size: clamp(2.75rem, 13vw, 3.35rem);
    margin-bottom: 1.5rem;
  }

  .hero-text p {
    margin-bottom: 2rem;
  }

  .page-header-visual {
    min-height: 460px;
    padding: 124px 0 64px;
  }

  .page-header-visual::before {
    background:
      linear-gradient(90deg, rgba(8, 6, 4, 0.94) 0%, rgba(15, 13, 10, 0.78) 100%),
      linear-gradient(0deg, rgba(8, 6, 4, 0.55) 0%, transparent 50%);
  }

  .page-header-copy h1 {
    font-size: clamp(2.65rem, 13vw, 3.25rem);
    margin-bottom: 18px;
  }

  .page-header-copy p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .page-header-actions {
    margin-top: 28px;
  }

  .page-header-luxury .page-header-background,
  .page-header-successful .page-header-background,
  .page-header-safety .page-header-background,
  .page-header-millionaire .page-header-background,
  .page-header-wealthy .page-header-background {
    object-position: 68% center;
  }

  .profiles-grid {
    grid-template-columns: 1fr;
  }

  .profile-location {
    margin-bottom: 14px;
  }

  .profile-details {
    max-height: 80px;
    opacity: 1;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .value-props-four {
    grid-template-columns: 1fr;
  }

  .lifestyle-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .mosaic-span-rows,
  .mosaic-span-cols {
    grid-row: auto;
    grid-column: auto;
    aspect-ratio: 4/3;
  }

  .mosaic-item:not(.mosaic-span-rows):not(.mosaic-span-cols) {
    aspect-ratio: 4/3;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stat-item {
    padding: 0;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 36px;
    padding-top: 20px;
  }

  .hero-stat {
    border-right: none;
    border-bottom: 1px solid var(--gold-border-light);
    padding: 16px 12px 16px 0;
    padding-left: 0 !important;
  }

  .hero-stat:nth-child(odd) {
    border-right: 1px solid var(--gold-border-light);
  }

  .hero-stat:nth-child(even) {
    padding-left: 16px !important;
  }

  .hero-stat:nth-child(n+3) {
    border-bottom: none;
  }

  .hero-stat:last-child {
    border-bottom: none;
  }

  .hero-cta {
    flex-direction: column;
  }

  .app-store-badges {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 220px;
  }

  .app-store-badge {
    width: 100%;
  }

  .hero-cta .btn {
    justify-content: center;
  }

  .cta-banner-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-banner-content {
    padding: 88px 20px;
  }

  .cta-banner-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .intro-caption {
    right: 0;
    bottom: 20px;
  }

  .corner-accent-tr {
    right: 0;
  }

  .corner-accent-bl {
    left: 0;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
  }

  .login-form-side {
    padding: 60px 24px;
  }

  .mosaic-item-caption {
    bottom: 24px;
    left: 24px;
  }

  .mosaic-item-title {
    font-size: 1.3rem;
  }

  .mosaic-item-sm .mosaic-item-title {
    font-size: 1.1rem;
  }

  .feature-card {
    padding: 36px 28px;
  }

  .testimonial-card {
    padding: 36px 28px;
  }

  .faq-question {
    font-size: 1rem;
    padding: 20px 0;
  }

  .faq-section .container {
    padding: 0 20px;
  }
}

@media (max-width: 380px) {
  .nav-actions .nav-join {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-animate,
  .fade-up {
    opacity: 1;
    transform: none;
  }
}
