/* ============================================================
   Sugar Baby España — Static Website Stylesheet
   Design: Premium Spanish Sugar Dating Platform
   ============================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
/* ── CSS VARIABLES ────────────────────────────────────────── */
:root {
  --primary: #7A2847;
  --primary-light: #612038;
  --primary-dark: #4E172C;
  --accent: #A84F3D;
  --accent-light: #D88570;
  --blue: #3F6D73;
  --blue-light: #6E9599;
  --gold: #9A6149;
  --gold-light: #C98E76;
  --cream: #FCFAF8;
  --sand: #F4EEE9;
  --charcoal: #272124;
  --muted: #655D60;
  --muted-light: #746B6F;
  --surface-dark: #2A2024;
  --on-dark-muted: #CFC4C7;
  --on-dark-accent: #F2C7B8;
  --border: #E7DDD7;
  --white: #ffffff;
  --black: #1a1a1a;
  --success: #16a34a;
  --error: #c0392b;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 0.5rem;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --shadow-sm: 0 1px 3px rgba(37, 35, 38, 0.06);
  --shadow: 0 4px 12px rgba(37, 35, 38, 0.08);
  --shadow-lg: 0 8px 30px rgba(37, 35, 38, 0.12);
  --shadow-xl: 0 12px 40px rgba(37, 35, 38, 0.16);
  --transition: 200ms ease;
  --transition-slow: 400ms ease;
  --max-width: 1280px;
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

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

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--charcoal);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

.font-serif { font-family: var(--font-serif); }
.font-sans { font-family: var(--font-sans); }

/* ── UTILITY CLASSES ─────────────────────────────────────── */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }

.max-w-7xl { max-width: var(--max-width); margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

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

.btn-primary:hover {
  background-color: var(--primary-light);
}

.btn-secondary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-secondary:hover {
  background-color: rgba(108, 35, 59, 0.05);
}

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

.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.btn-outline-white {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

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

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-full {
  width: 100%;
}

/* ── HEADER / NAVIGATION ─────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(108, 35, 59, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 1024px) {
  .header-inner {
    height: 5rem;
    padding: 0 2rem;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.header-logo span {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

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

  .desktop-nav > a[href="index.html"],
  .desktop-nav > a[href="consejos-de-citas.html"],
  .desktop-nav > a[href="faq.html"] {
    display: none;
  }
}

.desktop-nav a,
.desktop-nav .nav-dropdown-toggle {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  opacity: 0.8;
  transition: color var(--transition);
  white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav .nav-dropdown-toggle:hover {
  color: var(--primary);
  opacity: 1;
}

.desktop-nav a.active {
  color: var(--primary);
  opacity: 1;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown-toggle svg {
  transition: transform var(--transition);
}

.nav-dropdown-toggle.open svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  width: 13rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(108, 35, 59, 0.1);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 60;
}

.nav-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--charcoal);
  transition: background var(--transition);
}

.nav-dropdown-menu a:hover {
  background: var(--sand);
}

/* Header actions */
.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

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

.header-login {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: color var(--transition);
}

.header-login:hover {
  color: var(--primary);
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}

.mobile-menu-toggle:hover {
  background: var(--sand);
}

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

/* Mobile menu */
.mobile-menu {
  overflow: hidden;
  transition: all 0.3s ease;
  max-height: 0;
  opacity: 0;
}

.mobile-menu.open {
  max-height: 700px;
  opacity: 1;
  border-top: 1px solid rgba(108, 35, 59, 0.1);
}

.mobile-menu-inner {
  background: var(--white);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu-inner a {
  display: block;
  padding: 0.75rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background var(--transition);
}

.mobile-menu-inner a:hover,
.mobile-menu-inner a.active {
  background: var(--sand);
  color: var(--primary);
}

.mobile-menu-section-title {
  padding: 0.5rem 0.75rem 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.mobile-menu-actions {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-menu-actions .btn {
  width: 100%;
}

/* ── HERO SECTION ────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--sand) 100%);
}

.hero-grid {
  display: grid;
  align-items: center;
  min-height: 88vh;
  padding: 4rem 0;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    padding-left: 2rem;
    padding-right: 2rem;
    gap: 3rem;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-content {
    padding-right: 3rem;
  }
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 32rem;
}

@media (min-width: 640px) {
  .hero-desc {
    font-size: 1.125rem;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
  }
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: var(--sand);
  color: var(--muted);
}

.hero-trust-badge svg {
  color: var(--primary);
}

/* Hero image */
.hero-image-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-image-area {
    height: 100vh;
  }
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}

.hero-image-card {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5;
  background: var(--sand);
}

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

.hero-floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 1rem;
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  border: 1px solid rgba(108, 35, 59, 0.08);
}

.hero-floating-bottom {
  bottom: -1rem;
  left: -1rem;
  width: 13rem;
}

.hero-floating-top {
  top: -1rem;
  right: -1rem;
}

@media (min-width: 640px) {
  .hero-floating-bottom {
    left: -2rem;
  }
  .hero-floating-top {
    right: -2rem;
  }
}

/* Full-bleed homepage hero */
.hero-full-bleed {
  isolation: isolate;
  min-height: calc(100vh - 4rem);
  min-height: calc(100svh - 4rem);
  background: #24181c;
}

.hero-full-media,
.hero-full-scrim {
  position: absolute;
  inset: 0;
}

.hero-full-media {
  z-index: 0;
  display: block;
}

.hero-full-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.hero-full-scrim {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(30, 17, 22, 0.72) 0%, rgba(30, 17, 22, 0.78) 58%, rgba(30, 17, 22, 0.9) 100%),
    linear-gradient(90deg, rgba(30, 17, 22, 0.62) 0%, rgba(30, 17, 22, 0.28) 100%);
}

.hero-full-bleed .hero-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1fr);
  min-height: calc(100vh - 4rem);
  min-height: calc(100svh - 4rem);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.hero-full-bleed .hero-content {
  max-width: 39rem;
  padding-right: 0;
}

.hero-full-bleed .hero-eyebrow {
  color: #f2c7b5;
}

.hero-full-bleed .hero-title {
  color: var(--white);
  font-size: clamp(2.5rem, 4.4vw, 3.1rem);
  text-shadow: 0 2px 20px rgba(16, 8, 11, 0.3);
  text-wrap: balance;
}

.hero-title-accent {
  position: relative;
  isolation: isolate;
  display: inline-block;
  color: var(--on-dark-accent);
  font-style: italic;
  font-weight: 600;
  text-shadow: 0 2px 20px rgba(16, 8, 11, 0.36);
}

.hero-title-accent::after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0.08em;
  right: 0.02em;
  bottom: 0.02em;
  height: 0.12em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(242, 199, 184, 0.25), rgba(242, 199, 184, 0.82));
}

.hero-full-bleed .hero-desc {
  color: rgba(255, 255, 255, 0.9);
}

.hero-full-bleed .hero-cta .btn-primary {
  color: var(--primary-light);
  background: var(--cream);
  box-shadow: 0 12px 30px rgba(16, 8, 11, 0.24);
}

.hero-full-bleed .hero-cta .btn-primary:hover {
  color: var(--primary);
  background: var(--white);
}

.hero-full-bleed .hero-trust {
  max-width: 36rem;
}

.hero-full-bleed .hero-trust-badge {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(28, 16, 20, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-full-bleed .hero-trust-badge svg {
  color: #f2c7b5;
}

@media (min-width: 1024px) {
  .hero-full-bleed {
    min-height: calc(100vh - 5rem);
    min-height: calc(100svh - 5rem);
  }

  .hero-full-media img {
    object-position: center center;
  }

  .hero-full-scrim {
    background:
      linear-gradient(90deg, rgba(30, 17, 22, 0.94) 0%, rgba(30, 17, 22, 0.85) 34%, rgba(30, 17, 22, 0.42) 61%, rgba(30, 17, 22, 0.08) 100%),
      linear-gradient(0deg, rgba(20, 11, 14, 0.36) 0%, rgba(20, 11, 14, 0) 52%);
  }

  .hero-full-bleed .hero-grid {
    min-height: calc(100vh - 5rem);
    min-height: calc(100svh - 5rem);
    padding-top: clamp(3rem, 7vh, 5rem);
    padding-bottom: clamp(3rem, 7vh, 5rem);
  }
}

@media (max-width: 767px) {
  .hero-full-bleed {
    min-height: calc(100svh - 4rem);
  }

  .hero-full-media img {
    object-position: center top;
  }

  .hero-full-scrim {
    background: linear-gradient(
      180deg,
      rgba(11, 22, 39, 0.04) 0%,
      rgba(11, 22, 39, 0.12) 28%,
      rgba(11, 22, 39, 0.48) 39%,
      rgba(11, 22, 39, 0.9) 49%,
      rgba(16, 16, 31, 0.98) 66%,
      rgba(24, 10, 19, 0.99) 100%
    );
  }

  .hero-full-bleed .hero-grid {
    align-items: start;
    min-height: calc(100svh - 4rem);
    padding-top: clamp(22rem, 46svh, 25rem);
    padding-bottom: 2rem;
  }

  .hero-full-bleed .hero-content {
    align-items: center;
    max-width: 34rem;
    margin: 0 auto;
    text-align: center;
  }

  .hero-full-bleed .hero-eyebrow {
    margin-bottom: 0.75rem;
  }

  .hero-full-bleed .hero-title {
    font-size: clamp(1.75rem, 7.5vw, 2.1rem);
    margin-bottom: 1rem;
  }

  .hero-full-bleed .hero-desc {
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
  }

  .hero-full-bleed .hero-cta {
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .hero-full-bleed .hero-trust {
    gap: 0.5rem;
  }
}

/* ── EDITORIAL ARTICLES ─────────────────────────────────── */
.article-layout {
  max-width: 54rem;
}

.article-byline {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

.article-hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin: 0 0 2.5rem;
  box-shadow: var(--shadow-md);
}

.article-content h2 {
  margin-top: 2.5rem;
}

.article-content li + li {
  margin-top: 0.65rem;
}

/* ── SECTION STYLES ──────────────────────────────────────── */
.section {
  padding: 5rem 0;
}

.section-white {
  background-color: var(--white);
}

.section-cream {
  background-color: var(--cream);
}

.section-sand {
  background-color: var(--sand);
}

.section-blue {
  background-color: var(--blue);
}

.section-heading {
  max-width: 42rem;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

/* ── GRID SYSTEMS ────────────────────────────────────────── */
.grid-2 {
  display: grid;
  gap: 1.5rem;
}

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

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

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

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

.grid-4 {
  display: grid;
  gap: 1.5rem;
}

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

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

.grid-6 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

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

.grid-lg-split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

/* ── CARDS ───────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(108, 35, 59, 0.08);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.card:hover {
  box-shadow: var(--shadow);
}

.card-padded {
  padding: 1.75rem;
}

.card-clickable {
  cursor: pointer;
}

.card-clickable:hover {
  box-shadow: var(--shadow-lg);
}

/* Feature card */
.feature-card {
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid rgba(108, 35, 59, 0.08);
  padding: 1.75rem;
  transition: box-shadow var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow);
}

.feature-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  background: var(--sand);
  color: var(--primary);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Wide availability section on the homepage */
.always-with-you-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(168, 79, 61, 0.08), transparent 22rem),
    var(--cream);
}

.always-with-you-heading {
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.always-with-you-heading .section-subtitle {
  margin: 0.875rem auto 0;
}

.always-with-you-grid {
  display: grid;
  gap: 1rem;
}

.always-with-you-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 1rem;
  min-height: 100%;
  padding: 1.75rem;
  text-align: left;
  box-shadow: 0 12px 32px rgba(48, 29, 36, 0.05);
}

.always-with-you-card .feature-card-icon {
  width: 3rem;
  height: 3rem;
  margin: 0;
  border-radius: 0.875rem;
}

.always-with-you-card h3 {
  margin-bottom: 0.625rem;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.3;
}

.always-with-you-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
}

.always-with-you-cta {
  margin-top: 2.25rem;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .always-with-you-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .always-with-you-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .always-with-you-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

/* ── MEMBER PATHS (dual cards) ───────────────────────────── */
.member-path-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  background: var(--sand);
}

.member-path-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transform-origin: center top;
  transition: transform 0.5s ease;
}

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

.member-path-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--primary) 0%, rgba(122,40,71,0.27) 50%, transparent 100%);
}

.member-path-card-overlay.accent {
  background: linear-gradient(to top, var(--accent) 0%, rgba(168,79,61,0.27) 50%, transparent 100%);
}

.member-path-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
}

.member-path-card-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--on-dark-accent);
  margin-bottom: 0.5rem;
}

.member-path-card h3 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.member-path-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.25rem;
}

.member-path-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  transition: gap var(--transition);
}

.member-path-card:hover .member-path-card-link {
  gap: 0.75rem;
}

/* ── MEMBER PROFILE CARD ─────────────────────────────────── */
.member-card {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(108, 35, 59, 0.08);
  transition: box-shadow var(--transition);
}

.member-card:hover {
  box-shadow: var(--shadow-lg);
}

.member-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--sand);
}

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

.member-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37,35,38,0.5) 0%, transparent 60%);
}

.member-card-active-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--success);
}

.member-card-active-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s infinite;
}

.member-card-fav-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.member-card-fav-btn:hover {
  transform: scale(1.1);
}

.member-card-fav-btn.liked svg {
  fill: var(--accent);
  stroke: var(--accent);
}

.member-card-info {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
}

.member-card-name {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
}

.member-card-role {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  margin-top: 0.25rem;
  color: var(--white);
}

.member-card-role.daddy {
  background: rgba(122,40,71,0.8);
}

.member-card-role.baby {
  background: rgba(168,79,61,0.8);
}

.member-card-body {
  padding: 1rem;
}

.member-card-intro {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.member-card-interests {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

/* Interest badge */
.interest-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--sand);
  color: var(--muted);
}

/* ── CITIES GRID ─────────────────────────────────────────── */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

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

/* ── CITY CARDS ──────────────────────────────────────────── */
.city-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--sand);
  cursor: pointer;
}

.city-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.city-card:hover img {
  transform: scale(1.1);
}

.city-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37,35,38,0.75) 0%, rgba(37,35,38,0.1) 60%, transparent 100%);
}

.city-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
}

.city-card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  margin-bottom: 0.375rem;
  background: rgba(242,199,184,0.2);
  color: var(--on-dark-accent);
}

.city-card-name {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.15;
  text-wrap: balance;
  color: var(--white);
}

@media (min-width: 768px) {
  .city-card-name {
    font-size: clamp(1rem, 1.7vw, 1.125rem);
    white-space: nowrap;
  }
}

@media (max-width: 767px) {
  .city-card-content {
    padding: 0.875rem;
  }

  .city-card-name {
    min-height: 2.3em;
    font-size: 1rem;
  }

  .city-card-location {
    display: block;
  }
}

/* ── HOW IT WORKS STEPS ──────────────────────────────────── */
.step-card {
  position: relative;
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(108, 35, 59, 0.08);
  height: 100%;
  z-index: 10;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1rem;
  color: rgba(108, 35, 59, 0.12);
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

.step-connector {
  display: none;
}

@media (min-width: 1024px) {
  .step-connector {
    display: block;
    position: absolute;
    top: 2.5rem;
    left: calc(100%);
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    z-index: 0;
  }
}

/* ── LIFESTYLE IMAGE GRID ────────────────────────────────── */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.lifestyle-grid-item {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--sand);
}

.lifestyle-grid-item.tall {
  aspect-ratio: 3 / 4;
}

.lifestyle-grid-item.square {
  aspect-ratio: 1;
}

.lifestyle-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .home-lifestyle-grid {
    align-items: center;
  }
}

.lifestyle-experience-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.lifestyle-experience-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.lifestyle-experience-item svg {
  color: var(--primary);
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 1.25rem;
  overflow: visible;
}

/* Compact lifestyle feature image */
.elevate-lifestyle-copy {
  order: 1;
}

.elevate-lifestyle-media {
  order: 2;
  display: flex;
  justify-content: center;
}

.elevate-lifestyle-image {
  width: 100%;
  max-width: 26rem;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--sand);
}

.elevate-lifestyle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

@media (min-width: 1024px) {
  .elevate-lifestyle-media {
    order: 0;
    align-items: center;
  }

  .elevate-lifestyle-image {
    max-width: 21rem;
    aspect-ratio: 4 / 5;
  }
}

/* ── CHAT PREVIEW ────────────────────────────────────────── */
.chat-preview {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(108, 35, 59, 0.1);
  background: var(--cream);
}

.chat-preview-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-bottom: 1px solid rgba(108, 35, 59, 0.08);
}

.chat-preview-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sand);
  flex-shrink: 0;
}

.chat-preview-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-preview-user {
  flex: 1;
}

.chat-preview-user-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
}

.chat-preview-user-status {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.chat-preview-actions {
  display: flex;
  gap: 0.5rem;
}

.chat-preview-actions button {
  padding: 0.375rem;
  border-radius: 50%;
  transition: background var(--transition);
  color: var(--muted);
}

.chat-preview-actions button:hover {
  background: var(--sand);
}

.chat-messages {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 180px;
}

.chat-message {
  max-width: 80%;
  padding: 0.625rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
}

.chat-message.received {
  align-self: flex-start;
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid rgba(108,35,59,0.08);
}

.chat-message.sent {
  align-self: flex-end;
  background: var(--primary);
  color: var(--white);
}

.chat-message-time {
  font-size: 0.75rem;
  margin-top: 0.25rem;
  opacity: 0.6;
  text-align: right;
}

.chat-privacy-notice {
  margin: 0 1rem 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  background: rgba(47,111,137,0.08);
  color: var(--blue);
}

.chat-input-row {
  padding: 0 1rem 1rem;
}

.chat-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 9999px;
  background: var(--white);
  border: 1px solid rgba(108, 35, 59, 0.12);
}

.chat-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.875rem;
  color: var(--charcoal);
}

.chat-send-btn {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity var(--transition);
}

.chat-send-btn:hover {
  opacity: 0.9;
}

/* ── WISHLIST CATEGORY CARD ──────────────────────────────── */
.wishlist-cat-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: center;
  border: 1px solid rgba(108, 35, 59, 0.08);
  transition: box-shadow var(--transition);
}

.wishlist-cat-card:hover {
  box-shadow: var(--shadow);
}

.wishlist-cat-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  background: var(--cream);
  color: var(--primary);
}

.wishlist-cat-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  overflow: visible;
}

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

@media (max-width: 767px) {
  .wishlist-steps-grid {
    grid-template-columns: 1fr;
  }
}

.wishlist-cat-card h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.wishlist-cat-card p {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.3;
}

/* ── BLOG CARD ───────────────────────────────────────────── */
.blog-card {
  border-radius: 1rem;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(108, 35, 59, 0.08);
  cursor: pointer;
  transition: box-shadow var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow);
}

.blog-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--sand);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.25rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.blog-card-cat {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  background: var(--sand);
  color: var(--primary);
}

.blog-card-time {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-card h2,
.blog-card h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.blog-card:hover h3 {
  color: var(--primary);
}

.blog-card-excerpt {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ── SAFETY TIP CARD ─────────────────────────────────────── */
.safety-tip-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(255,248,241,0.1);
  font-size: 0.875rem;
  color: rgba(255,248,241,0.9);
}

.safety-tip-card svg {
  color: var(--on-dark-accent);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ── VALUES LIST ─────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.value-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ── FAQ ACCORDION ───────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border: 1px solid rgba(108, 35, 59, 0.1);
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(108, 35, 59, 0.02);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--primary);
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ── FINAL CTA SECTION ───────────────────────────────────── */
.cta-section {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.cta-bg-image {
  position: absolute;
  inset: 0;
}

.cta-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.cta-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(78,23,44,0.88) 0%, rgba(168,79,61,0.68) 100%);
}

.cta-content {
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--on-dark-accent);
  margin-bottom: 1rem;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.cta-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--sand) 100%);
}

@media (min-width: 1024px) {
  .role-hero {
    padding-top: 5rem;
    padding-bottom: 0;
  }

  .role-hero .hero-grid {
    align-items: start;
    min-height: calc(100vh - 10rem);
  }

  .role-hero .hero-image-area {
    align-items: flex-start;
    height: calc(100vh - 10rem);
    min-height: 34rem;
  }
}

@media (max-width: 767px) {
  .role-hero {
    padding-top: 3rem;
  }
}

/* Full-height editorial heroes */
.feature-hero {
  padding: 0;
  overflow: hidden;
}

.feature-hero-grid {
  display: grid;
  gap: 2rem;
}

.feature-hero-copy {
  padding: 3rem 0 0;
}

.feature-hero-image {
  min-height: 23rem;
  overflow: hidden;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  background: var(--sand);
}

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

.feature-hero-how .feature-hero-image img {
  object-position: center center;
}

.feature-hero-wishlist .feature-hero-image img {
  object-position: center 24%;
}

.step-detail-reverse-desktop .step-detail-media {
  order: 1;
}

@media (min-width: 1024px) {
  .feature-hero-wishlist > .container {
    max-width: none;
    padding-right: 0;
    padding-left: max(2rem, calc((100vw - var(--max-width)) / 2 + 2rem));
  }

  .feature-hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(28rem, 1.08fr);
    align-items: stretch;
    gap: clamp(3rem, 6vw, 6rem);
    min-height: calc(100vh - 5rem);
    min-height: calc(100svh - 5rem);
  }

  .feature-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 0;
  }

  .feature-hero-copy .page-hero-content {
    max-width: 36rem;
  }

  .feature-hero-image {
    min-height: 100%;
    border-radius: 0;
  }

  .step-detail-reverse-desktop .step-detail-media {
    order: 0;
  }

  .step-detail-reverse-desktop .step-detail-copy {
    order: 1;
  }
}

@media (min-width: 1200px) {
  .feature-hero-how > .container {
    max-width: none;
    padding-right: 0;
    padding-left: max(2rem, calc((100vw - var(--max-width)) / 2 + 2rem));
  }

  .feature-hero-how .feature-hero-grid {
    grid-template-columns: minmax(0, 32rem) minmax(28rem, 1fr);
  }
}

.page-hero-sm {
  padding: 3rem 0;
}

.page-hero-content {
  max-width: 42rem;
}

.page-hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 36rem;
}

/* ── BREADCRUMBS ─────────────────────────────────────────── */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.breadcrumbs a {
  color: var(--muted);
  transition: color var(--transition);
}

.breadcrumbs a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.breadcrumbs .current {
  color: var(--primary);
  font-weight: 500;
}

.breadcrumbs .sep {
  color: var(--muted-light);
}

/* ── BENEFIT LIST (used in sugar-daddy/sugar-baby pages) ── */
.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefit-item-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: rgba(108,35,59,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-item-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  overflow: visible;
}

.benefit-item p {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
}

/* ── CHECK LIST ──────────────────────────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.check-list li svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* ── FORMS ───────────────────────────────────────────────── */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.375rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(108, 35, 59, 0.15);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 35, 59, 0.08);
}

.form-input::placeholder {
  color: var(--muted-light);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 0.125rem;
  accent-color: var(--primary);
  width: 1rem;
  height: 1rem;
}

.form-error {
  font-size: 0.75rem;
  color: var(--error);
  margin-top: 0.25rem;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(108, 35, 59, 0.08);
  max-width: 28rem;
  margin: 0 auto;
}

.form-card h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-card-subtitle {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* ── MODALS ──────────────────────────────────────────────── */
#age-modal {
  display: none;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.modal {
  position: relative;
  max-width: 28rem;
  width: 100%;
  background: var(--cream);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.modal-accent-bar {
  height: 0.375rem;
  width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.modal-body {
  padding: 2rem;
  text-align: center;
}

.modal-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sand);
  color: var(--primary);
}

.modal h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.modal p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 2rem;
}

.modal-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ── FOOTER ──────────────────────────────────────────────── */
.site-footer {
  background: var(--surface-dark);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1rem;
}

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

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding: 4rem 2rem;
  }
}

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

@media (min-width: 768px) {
  .footer-brand-col {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .footer-brand-col {
    grid-column: span 1;
  }
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.75rem;
  display: block;
}

.footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--on-dark-muted);
  margin-bottom: 1rem;
}

.footer-age-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: rgba(242,199,184,0.12);
  color: var(--on-dark-accent);
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--on-dark-accent);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--on-dark-muted);
  margin-bottom: 0.625rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--on-dark-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255,248,241,0.08);
  padding: 2rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--on-dark-muted);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1rem;
}

.footer-bottom-links a {
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ── PAGE-SPECIFIC STYLES ────────────────────────────────── */
/* City page */
.city-intro-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

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

.city-intro-image {
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sand);
}

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

/* City stats band */
.stats-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 1024px) {
  .stats-band {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.stat-item {
  text-align: center;
  padding: 1.75rem 1rem;
  border-radius: 1rem;
  background: var(--white);
  border: 1px solid rgba(108, 35, 59, 0.08);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted);
}

/* Editorial quote block */
.quote-block {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.quote-block blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  color: var(--charcoal);
}

.quote-block .quote-attribution {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Members page filters */
.members-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
  align-items: center;
}

.filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(108,35,59,0.15);
  color: var(--muted);
  transition: all var(--transition);
  background: var(--white);
}

.filter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* Blog page */
.blog-grid {
  display: grid;
  gap: 1.5rem;
}

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

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

/* Tips page */
.tip-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(108,35,59,0.08);
}

.tip-card-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(108,35,59,0.12);
  margin-bottom: 0.5rem;
}

.tip-card h3 {
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.tip-card p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Legal pages */
.legal-content {
  max-width: 48rem;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-content h3 {
  font-size: 1.125rem;
  color: var(--charcoal);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 0.375rem;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--primary-light);
}

.legal-last-updated {
  font-size: 0.875rem;
  color: var(--muted-light);
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(108,35,59,0.1);
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease;
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Smooth hover transitions */
.hover-lift {
  transition: transform var(--transition), box-shadow var(--transition);
}

.hover-lift:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ── SKIP LINK ───────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.875rem;
  z-index: 200;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
}

/* ── BACK TO TOP ─────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-light);
}

/* ── APP SHOWCASE ── */
.app-showcase-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 18% 18%, rgba(122, 40, 71, 0.3), transparent 34rem), #101827;
  color: var(--white);
}

.app-showcase-grid {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}

.app-showcase-copy {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
}

.app-showcase-eyebrow {
  margin-bottom: 0.875rem;
  color: #E9B997;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.app-showcase-title {
  color: var(--white);
  font-size: clamp(2rem, 7vw, 3.25rem);
  line-height: 1.08;
  text-wrap: balance;
}

.app-showcase-description {
  max-width: 36rem;
  margin: 1.25rem auto 0;
  color: #D7DCE5;
  font-size: 1rem;
  line-height: 1.75;
}

.app-showcase-features {
  display: grid;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 1.75rem auto 0;
  text-align: left;
}

.app-showcase-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #F4F1EF;
  font-size: 0.9375rem;
}

.app-showcase-features li > span {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 1.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(233, 185, 151, 0.55);
  border-radius: 50%;
  color: #E9B997;
  font-size: 0.75rem;
}

.app-store-badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.125rem;
}

.app-store-badge img {
  width: auto;
  height: 3.125rem;
  object-fit: contain;
}

.app-store-badge:nth-child(2) img {
  height: 4rem;
}

.app-showcase-media {
  position: relative;
  width: min(100%, 46rem);
  margin: 0 auto;
}

.app-showcase-media img {
  width: 100%;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.28));
}

@media (min-width: 640px) {
  .app-store-badges {
    flex-direction: row;
    justify-content: center;
  }

}

@media (min-width: 1024px) {
  .app-showcase-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 3.5rem;
  }

  .app-showcase-copy {
    margin: 0;
    text-align: left;
  }

  .app-showcase-description,
  .app-showcase-features {
    margin-left: 0;
    margin-right: 0;
  }

  .app-store-badges {
    justify-content: flex-start;
  }

  .app-showcase-media {
    width: 100%;
  }
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }

  .py-20 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-grid {
    min-height: auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .member-path-card {
    aspect-ratio: 3 / 2;
  }

  .member-path-card-content {
    padding: 1.25rem;
  }

  .member-path-card h3 {
    font-size: 1.5rem;
  }

  .form-card {
    padding: 1.5rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hide-tablet {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .hide-desktop {
    display: none !important;
  }
}

/* ── MADRID LANDING PAGE ─────────────────────────────────── */
.madrid-page .hero-full-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.madrid-page .hero-full-media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.madrid-plan-grid {
  display: grid;
  gap: 1rem;
}

.madrid-plan-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  border: 1px solid rgba(108, 35, 59, 0.1);
  border-radius: var(--radius-xl);
  background: var(--cream);
}

.madrid-plan-meta {
  margin-bottom: 0.625rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.madrid-plan-card h3 {
  margin-bottom: 0.75rem;
  color: var(--charcoal);
  font-family: var(--font-serif);
  font-size: 1.35rem;
}

.madrid-plan-card > p:not(.madrid-plan-meta) {
  color: var(--muted);
  line-height: 1.65;
}

.madrid-plan-tip {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(108, 35, 59, 0.1);
}

.madrid-lifestyle-image {
  width: 100%;
  max-height: 36rem;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--cream);
  box-shadow: var(--shadow-lg);
}

.madrid-lifestyle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

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

@media (min-width: 1024px) {
  .madrid-page .hero-full-bleed .hero-grid {
    align-items: center;
    padding-top: clamp(3rem, 6vh, 5rem);
    padding-bottom: clamp(3rem, 6vh, 5rem);
  }

  .madrid-page .hero-full-bleed .hero-title {
    max-width: 35rem;
  }

  .madrid-page .hero-full-bleed .hero-desc {
    max-width: 34rem;
  }
}

@media (max-width: 767px) {
  .madrid-page .hero-full-bleed .hero-grid {
    padding-top: clamp(17.5rem, 38svh, 20rem);
    padding-bottom: 2.25rem;
  }

  .madrid-page .hero-full-bleed .hero-title {
    font-size: clamp(1.7rem, 7.2vw, 2rem);
  }

  .madrid-page .hero-full-bleed .hero-cta {
    margin-bottom: 0;
  }

  .madrid-page .hero-full-media img {
    object-position: center top;
  }

  .madrid-page #madrid-lifestyle .lifestyle-experience-list {
    grid-template-columns: 1fr;
  }

  .madrid-lifestyle-image {
    max-height: none;
    aspect-ratio: 4 / 3;
  }
}

/* ── PRINT STYLES ────────────────────────────────────────── */
@media print {
  .site-header,
  .site-footer,
  .back-to-top,
  .modal-overlay {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}
