/* ==========================================================================
   Sugar Daddy Atlanta — style.css
   Modern Southern Glamour × Buckhead Sophistication × Atlanta After Dark
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,300;1,9..144,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Colour */
  --emerald-deep: #23443D;
  --emerald-deep-2: #1a3530;
  --espresso: #252321;
  --espresso-2: #1e1c1b;
  --rose-burnt: #A65F67;
  --rose-burnt-2: #8f4f56;
  --champagne: #B79A70;
  --ivory: #F7F2EA;
  --taupe: #DDD0C3;
  --sage: #CCD7D0;
  --charcoal: #292827;
  --ink: #1a1917;

  /* Text */
  --text: #292827;
  --text-muted: #5a5753;
  --text-faint: #7b7873;
  --text-light: #F7F2EA;
  --text-light-muted: #DDD0C3;
  --text-light-faint: #a89f92;

  /* Fonts */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Layout */
  --nav-height: 72px;
  --container: 1280px;
  --radius: 4px;
  --radius-lg: 6px;

  /* Elevation */
  --shadow-sm: 0 1px 2px rgba(37, 35, 33, 0.06);
  --shadow-md: 0 10px 30px rgba(37, 35, 33, 0.12);
  --shadow-lg: 0 24px 60px rgba(37, 35, 33, 0.22);

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

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* {
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: transparent transparent;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul, ol { list-style: none; }

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

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

h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

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

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

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--champagne);
}

.display-xl { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.04; }
.display-lg { font-family: var(--font-display); font-weight: 300; font-size: clamp(2.1rem, 4.5vw, 3.2rem); line-height: 1.08; }
.display-md { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.15; }
.display-sm { font-family: var(--font-display); font-weight: 300; font-size: 1.35rem; line-height: 1.2; }

.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.65;
  color: var(--text-muted);
}

.muted { color: var(--text-muted); }
.faint { color: var(--text-faint); }

.accent-em { font-style: italic; }

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: 800px; }
.container--md { max-width: 960px; }

@media (min-width: 768px) {
  .container { padding-inline: 40px; }
}

main { display: block; }

.section { padding-block: 88px; }
.section--tight { padding-block: 56px; }
.section--flush { padding-block: 0; }

/* Spacing helpers */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

/* Skip link (accessibility) */
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  transform: translateY(-150%);
  background: var(--emerald-deep);
  color: var(--ivory);
  padding: 10px 16px;
  border-radius: var(--radius);
  font: 600 14px/1.2 var(--font-body);
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* --------------------------------------------------------------------------
   5. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: relative;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(37, 35, 33, 0.98);
  box-shadow: 0 1px 0 rgba(183, 154, 112, 0.16);
}
/* Pages whose content starts on a light background always get a solid header */
body[data-nav-solid] .site-header {
  background: rgba(37, 35, 33, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(183, 154, 112, 0.16);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.01em;
  transition: color 0.25s var(--ease);
}
.brand__loc {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
  margin-top: 3px;
}
.brand:hover .brand__name { color: var(--champagne); }

.nav-links { display: none; align-items: center; gap: 32px; }
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(247, 242, 234, 0.8);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav-link:hover { color: var(--ivory); }
.nav-link[aria-current="page"] { color: var(--champagne); }

.nav-actions { display: none; align-items: center; gap: 16px; }
.nav-signin { font-size: 13px; font-weight: 500; color: rgba(247, 242, 234, 0.7); transition: color 0.2s; }
.nav-signin:hover { color: var(--ivory); }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  width: 26px;
  padding: 4px 0;
  color: var(--ivory);
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  min-height: calc(100svh - var(--nav-height));
  max-height: calc(100svh - var(--nav-height));
  overflow-y: auto;
  background: rgba(37, 35, 33, 0.98);
  border-top: 1px solid rgba(183, 154, 112, 0.2);
  padding: 24px;
}
.mobile-menu.is-open { display: block; }
.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 500;
  color: rgba(247, 242, 234, 0.85);
}
.mobile-menu a:hover { color: var(--ivory); }
.mobile-menu__footer {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(183, 154, 112, 0.2);
}
.mobile-menu__footer > a:first-child { flex: 0 0 auto; }
.mobile-menu__footer .btn {
  flex: 1 1 auto;
  min-width: 108px;
  max-width: 160px;
  padding: 11px 22px;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-actions { display: flex; }
  .nav-toggle { display: none; }
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.15s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--rose { background: var(--rose-burnt); color: #fff; }
.btn--rose:hover { background: var(--rose-burnt-2); }

.btn--emerald { background: var(--emerald-deep); color: #fff; }
.btn--emerald:hover { background: var(--emerald-deep-2); }

.btn--outline-light { border-color: rgba(247, 242, 234, 0.32); color: rgba(247, 242, 234, 0.85); }
.btn--outline-light:hover { border-color: rgba(247, 242, 234, 0.65); color: var(--ivory); }

.btn--outline-dark { border-color: rgba(41, 40, 39, 0.24); color: var(--text); }
.btn--outline-dark:hover { border-color: rgba(41, 40, 39, 0.55); }

.btn--sm { padding: 11px 22px; font-size: 13px; }
.btn--lg { padding: 17px 36px; }

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

.text-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--emerald-deep);
  border-bottom: 1px solid rgba(35, 68, 61, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.2s var(--ease);
}
.text-link:hover { border-color: var(--emerald-deep); }
.text-link--light { color: var(--ivory); border-color: rgba(183, 154, 112, 0.5); }
.text-link--light:hover { border-color: var(--champagne); }

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
  color: var(--ivory);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(37, 35, 33, 0.96) 0%, rgba(37, 35, 33, 0.55) 45%, rgba(35, 68, 61, 0.35) 100%),
    linear-gradient(to right, rgba(37, 35, 33, 0.85) 0%, rgba(37, 35, 33, 0.25) 55%, transparent 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero__kicker::before {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--champagne);
}
.hero__title { color: var(--ivory); margin-bottom: 24px; }
.hero__title .accent-em { color: var(--sage); }
.hero__title .accent-em--taupe { color: var(--taupe); }
.hero__title-role { font-weight: 500; }
.hero__title-role--daddy { color: var(--champagne); }
.hero__title-role--baby { color: #d7a3a9; }
.hero__title-or {
  display: inline-block;
  margin-right: 0.12em;
  color: rgba(247, 242, 234, 0.7);
  font-family: var(--font-body);
  font-size: 0.52em;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: 0.16em;
}
.hero__title-city {
  color: var(--sage);
  font-style: italic;
  font-weight: 300;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .hero .hero__title {
    font-size: clamp(3rem, 4vw, 3.6rem);
    line-height: 1.08;
  }
}
.hero__sub { color: var(--taupe); font-size: 1.08rem; line-height: 1.65; max-width: 34rem; margin-bottom: 36px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 36px; }
.hero__note { font-size: 12px; letter-spacing: 0.04em; color: rgba(221, 208, 195, 0.42); }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  border-top: 1px solid rgba(183, 154, 112, 0.2);
  padding-top: 28px;
  margin-top: 56px;
}
.hero-stat__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--champagne);
}
.hero-stat__label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(221, 208, 195, 0.5);
  margin-top: 4px;
}

@media (max-width: 767px) {
  .hero {
    min-height: calc(100svh - var(--nav-height));
    padding-bottom: 40px;
  }
  .hero__media img { object-position: center top; }
  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(5, 16, 34, 0.08) 0%,
      rgba(5, 16, 34, 0.12) 36%,
      rgba(5, 16, 34, 0.42) 50%,
      rgba(5, 16, 34, 0.82) 64%,
      #071426 100%
    );
  }
  .hero > .container { width: 100%; }
  .hero__content {
    max-width: 34rem;
    margin-inline: auto;
    text-align: center;
  }
  .hero__title { margin-bottom: 16px; }
  .hero__sub {
    max-width: 31rem;
    margin-inline: auto;
    margin-bottom: 24px;
    font-size: 0.96rem;
    line-height: 1.55;
  }
  .hero__ctas {
    justify-content: center;
    margin-bottom: 0;
  }
  .hero-stats {
    justify-content: center;
    gap: 18px;
    margin-top: 32px;
    padding-top: 22px;
  }
  .hero-stat { min-width: 88px; }
  .hero-stat__num { font-size: 1.2rem; }
}

/* Page hero (inner pages with dark image) */
.page-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
  overflow: hidden;
  color: var(--ivory);
}
.page-hero .hero__content { max-width: 620px; }

/* Light page header (no image) */
.page-intro { padding-block: 56px 48px; }
.page-intro__title { color: var(--text); }
.page-intro__sub { max-width: 560px; margin-top: 16px; }

/* --------------------------------------------------------------------------
   8. Section header pattern
   -------------------------------------------------------------------------- */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.section-head--center { flex-direction: column; align-items: center; text-align: center; }
.section-head__title { color: var(--text); margin-top: 8px; }
.section-head__title--light { color: var(--ivory); }

/* --------------------------------------------------------------------------
   9. Profile cards (featured singles)
   -------------------------------------------------------------------------- */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.profile-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--taupe);
  cursor: pointer;
}
.profile-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.profile-card--male .profile-card__img { object-position: center 32%; }
.profile-card--female .profile-card__img { object-position: center 68%; }
.profile-card:hover .profile-card__img { transform: scale(1.05); }
.profile-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37, 35, 33, 0.92) 0%, rgba(37, 35, 33, 0.25) 45%, transparent 100%);
}
.profile-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--radius);
}
.profile-card__badge--online { background: rgba(166, 95, 103, 0.92); color: #fff; }
.profile-card__badge--verified { background: rgba(183, 154, 112, 0.92); color: #fff; }
.profile-card__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: pulse 1.8s infinite;
}
.profile-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px;
  color: var(--ivory);
}
.profile-card__name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; }
.profile-card__name span { font-weight: 300; }
.profile-card__meta { font-size: 11px; color: var(--champagne); letter-spacing: 0.05em; margin-top: 2px; }
.profile-card__tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.profile-card__tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border: 1px solid rgba(247, 242, 234, 0.2);
  color: rgba(247, 242, 234, 0.62);
  border-radius: var(--radius);
}
.profile-card__action {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease), margin 0.3s var(--ease);
}
.profile-card:hover .profile-card__action,
.profile-card:focus-within .profile-card__action { max-height: 48px; margin-top: 12px; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

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

/* --------------------------------------------------------------------------
   10. Role selector
   -------------------------------------------------------------------------- */
.role-grid { display: grid; gap: 24px; }
.role-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px;
  color: var(--ivory);
}
.role-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transition: opacity 0.5s var(--ease);
}
.role-card:hover .role-card__img { opacity: 0.52; }
.role-card--daddy { background: var(--emerald-deep); }
.role-card--baby { background: #3d2527; }
.role-card__inner { position: relative; z-index: 2; }
.role-card__kicker {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.role-card--daddy .role-card__kicker { color: var(--champagne); }
.role-card--baby .role-card__kicker { color: var(--rose-burnt); }
.role-card__title { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 300; color: var(--ivory); line-height: 1.05; margin-bottom: 16px; }
.role-card__copy { color: rgba(204, 215, 208, 0.82); font-size: 1rem; line-height: 1.6; max-width: 18rem; }
.role-card--baby .role-card__copy { color: rgba(221, 208, 195, 0.82); }
.role-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.role-card__tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: var(--radius);
}
.role-card--daddy .role-card__tag { border: 1px solid rgba(183, 154, 112, 0.35); color: var(--champagne); }
.role-card--baby .role-card__tag { border: 1px solid rgba(166, 95, 103, 0.35); color: var(--rose-burnt); }
.role-card__link {
  position: relative;
  z-index: 2;
  margin-top: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ivory);
  border-bottom: 1px solid rgba(183, 154, 112, 0.5);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: border-color 0.2s;
}
.role-card--daddy .role-card__link:hover { border-color: var(--champagne); }
.role-card--baby .role-card__link { border-color: rgba(166, 95, 103, 0.5); }
.role-card--baby .role-card__link:hover { border-color: var(--rose-burnt); }

@media (min-width: 768px) {
  .role-grid { grid-template-columns: 1fr 1fr; }
  .role-card { padding: 52px; }
  .role-card--daddy .role-card__img { object-position: center 65%; }
  .role-card--baby .role-card__img { object-position: center 20%; }
}

/* --------------------------------------------------------------------------
   11. Editorial split
   -------------------------------------------------------------------------- */
.split { display: grid; gap: 48px; }
.split__media { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.split__media img { width: 100%; border-radius: var(--radius); object-fit: cover; }
.split__media .col { display: flex; flex-direction: column; gap: 16px; }
.split__media .col--offset { margin-top: 32px; }

.stat-panel {
  background: var(--emerald-deep);
  border-radius: var(--radius);
  padding: 24px;
  color: var(--ivory);
}
.stat-panel__num { font-family: var(--font-display); font-size: 1.75rem; font-weight: 300; }
.stat-panel__label { font-size: 12px; color: rgba(204, 215, 208, 0.65); margin-top: 4px; }
.stat-panel__meta { font-size: 12px; color: var(--champagne); margin-top: 14px; line-height: 1.5; }

.stat-panel--rose { background: var(--rose-burnt); }

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  border-top: 1px solid var(--taupe);
  padding-top: 40px;
}
.stats-row__num { font-family: var(--font-display); font-size: 1.75rem; font-weight: 300; color: var(--emerald-deep); }
.stats-row__label { font-size: 14px; font-weight: 500; color: var(--text); margin-top: 4px; }
.stats-row__sub { font-size: 12px; color: var(--text-faint); margin-top: 2px; }

@media (min-width: 768px) {
  .split { grid-template-columns: 1fr 1fr; align-items: center; }
  .stats-row { grid-template-columns: repeat(4, 1fr); }
}

/* --------------------------------------------------------------------------
   12. Process / steps
   -------------------------------------------------------------------------- */
.steps-grid { display: grid; gap: 40px; }
.step__num { font-family: var(--font-display); font-size: 3.2rem; font-weight: 300; line-height: 1; margin-bottom: 14px; }
.step__title { font-size: 1.25rem; font-weight: 500; margin-bottom: 12px; }
.step__desc { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.step__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.step__tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border: 1px solid rgba(183, 154, 112, 0.3);
  color: rgba(183, 154, 112, 0.85);
  border-radius: var(--radius);
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }

/* How-it-works alternating steps */
.hiw-step { padding-block: 56px; }
.hiw-step:nth-child(even) { background: var(--espresso); }
.hiw-step__grid { display: grid; gap: 40px; align-items: center; }
.hiw-step__num { font-family: var(--font-display); font-size: 5rem; font-weight: 300; line-height: 1; margin-bottom: 12px; color: rgba(35, 68, 61, 0.12); }
.hiw-step:nth-child(even) .hiw-step__num { color: rgba(183, 154, 112, 0.18); }
.hiw-step__title { font-size: 1.9rem; margin-bottom: 28px; }
.hiw-step:nth-child(odd) .hiw-step__title { color: var(--text); }
.hiw-step:nth-child(even) .hiw-step__title { color: var(--ivory); }
.hiw-step__img { width: 100%; aspect-ratio: 4 / 3; border-radius: var(--radius); object-fit: cover; max-height: 480px; }
.hiw-duo { display: grid; gap: 20px; }
.hiw-card {
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(35, 68, 61, 0.15);
  background: rgba(35, 68, 61, 0.04);
}
.hiw-step:nth-child(even) .hiw-card { border-color: rgba(183, 154, 112, 0.2); background: rgba(183, 154, 112, 0.05); }
.hiw-card--baby { border-color: rgba(166, 95, 103, 0.15); background: rgba(166, 95, 103, 0.05); }
.hiw-step:nth-child(even) .hiw-card--baby { border-color: rgba(166, 95, 103, 0.2); background: rgba(166, 95, 103, 0.06); }
.hiw-card__label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; color: var(--emerald-deep); }
.hiw-card--baby .hiw-card__label { color: var(--rose-burnt); }
.hiw-step:nth-child(even) .hiw-card__label { color: var(--champagne); }
.hiw-step:nth-child(even) .hiw-card--baby .hiw-card__label { color: var(--rose-burnt); }
.hiw-card__copy { font-size: 14px; line-height: 1.6; color: var(--text-muted); }
.hiw-step:nth-child(even) .hiw-card__copy { color: rgba(221, 208, 195, 0.72); }

@media (min-width: 768px) {
  .hiw-step__grid { grid-template-columns: 1fr 1fr; }
  .hiw-duo { grid-template-columns: 1fr 1fr; }
  .hiw-step:nth-child(even) .hiw-step__grid > :first-child { order: 2; }
}

/* --------------------------------------------------------------------------
   13. Cinematic after-dark band
   -------------------------------------------------------------------------- */
.cinematic {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--ivory);
}
.cinematic__media { position: absolute; inset: 0; }
.cinematic__media img { width: 100%; height: 100%; object-fit: cover; }
.cinematic__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(37, 35, 33, 0.95) 0%, rgba(37, 35, 33, 0.68) 55%, transparent 100%),
    linear-gradient(to top, rgba(37, 35, 33, 0.6) 0%, transparent 50%);
}
.cinematic__content { position: relative; z-index: 2; max-width: 620px; padding-block: 80px; }
.cinematic__title { color: var(--ivory); margin-top: 12px; }
.cinematic__title em { color: var(--sage); font-style: italic; }
.cinematic__copy { color: rgba(221, 208, 195, 0.82); font-size: 1.1rem; line-height: 1.65; margin: 24px 0 32px; }
.cinematic__ctas { display: flex; flex-wrap: wrap; gap: 16px; }

/* --------------------------------------------------------------------------
   14. Neighborhood grid (asymmetric)
   -------------------------------------------------------------------------- */
.nbhd-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.nbhd-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 240px;
  cursor: pointer;
}
.nbhd-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.nbhd-card:hover .nbhd-card__img { transform: scale(1.05); }
.nbhd-card__shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(37, 35, 33, 0.9) 0%, rgba(37, 35, 33, 0.25) 55%, transparent 100%); }
.nbhd-card__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; color: var(--ivory); }
.nbhd-card__tag { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne); margin-bottom: 4px; }
.nbhd-card__name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 300; }

@media (min-width: 768px) {
  .nbhd-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 20px;
  }
  .nbhd-grid .nbhd-card--large { grid-column: 1; grid-row: 1 / span 2; }
}

/* Neighborhood list (dating guide) */
.nbhd-row {
  display: grid;
  gap: 32px;
  padding-block: 36px;
  border-top: 1px solid var(--taupe);
  align-items: center;
}
.nbhd-row:first-child { border-top: none; }
.nbhd-row__img { width: 100%; height: 260px; object-fit: cover; border-radius: var(--radius); }
.nbhd-row__vibe { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne); font-weight: 500; margin-bottom: 8px; }
.nbhd-row__name { font-size: 1.9rem; margin-bottom: 14px; }
.nbhd-row__copy { color: var(--text-muted); font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
.nbhd-row__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.nbhd-row__fact-label { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 4px; font-weight: 500; }
.nbhd-row__fact { font-size: 12px; color: var(--text-muted); line-height: 1.55; }
@media (min-width: 768px) {
  .nbhd-row { grid-template-columns: 1fr 1fr; gap: 48px; }
  .nbhd-row:nth-child(even) .nbhd-row__img { order: 2; }
}

/* --------------------------------------------------------------------------
   15. Feature card lists (perks / benefits)
   -------------------------------------------------------------------------- */
.feature-grid { display: grid; gap: 28px; }
.feature {
  border-left: 2px solid rgba(183, 154, 112, 0.4);
  padding-left: 20px;
}
.feature--rose { border-color: rgba(166, 95, 103, 0.5); }
.feature__title { font-weight: 500; font-size: 1.02rem; margin-bottom: 8px; }
.feature__copy { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
@media (min-width: 768px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .feature-grid { grid-template-columns: repeat(4, 1fr); } }

/* Dark variant */
.feature-grid--dark .feature__title { color: var(--ivory); }
.feature-grid--dark .feature__copy { color: rgba(221, 208, 195, 0.62); }

/* --------------------------------------------------------------------------
   16. Chatroom
   -------------------------------------------------------------------------- */
.chat-app {
  display: flex;
  flex-direction: column;
  height: calc(100vh - var(--nav-height));
  background: var(--ink);
  color: var(--ivory);
}
.chat-app__bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 24px;
  border-bottom: 1px solid rgba(183, 154, 112, 0.12);
  background: var(--espresso-2);
}
.chat-app__bar .brand__name { font-size: 1.1rem; }
.chat-app__bar .back { font-size: 13px; color: rgba(221, 208, 195, 0.6); }
.chat-app__bar .back:hover { color: var(--ivory); }
.chat-app__body { flex: 1; display: flex; flex-direction: column; overflow: hidden; }

.chat-filters {
  display: none;
  flex-direction: column;
  width: 224px;
  border-right: 1px solid rgba(183, 154, 112, 0.1);
  padding: 20px;
  overflow-y: auto;
}
.chat-filters__head { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne); font-weight: 600; margin-bottom: 16px; }
.chat-filters__group { margin-bottom: 20px; }
.chat-filters__label { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(221, 208, 195, 0.3); margin-bottom: 6px; font-weight: 500; }
.chat-filter {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: var(--radius);
  color: rgba(221, 208, 195, 0.5);
  transition: background 0.2s, color 0.2s;
}
.chat-filter:hover { color: var(--taupe); background: rgba(183, 154, 112, 0.1); }
.chat-filter[aria-pressed="true"] { background: var(--rose-burnt); color: #fff; font-weight: 500; }

.chat-list {
  width: 100%;
  border-right: 1px solid rgba(183, 154, 112, 0.1);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.chat-list__search { padding: 16px; border-bottom: 1px solid rgba(183, 154, 112, 0.1); flex-shrink: 0; }
.chat-list__search-head { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne); font-weight: 600; margin-bottom: 10px; }
.chat-list__scroll { flex: 1; overflow-y: auto; }

.chat-search {
  width: 100%;
  background: var(--espresso);
  border: 1px solid rgba(183, 154, 112, 0.15);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 12px;
  color: var(--taupe);
  outline: none;
  transition: border-color 0.2s;
}
.chat-search::placeholder { color: rgba(221, 208, 195, 0.3); }
.chat-search:focus { border-color: rgba(183, 154, 112, 0.45); }

.chat-member {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 16px;
  border-bottom: 1px solid rgba(183, 154, 112, 0.05);
  transition: background 0.2s;
}
.chat-member:hover { background: rgba(183, 154, 112, 0.05); }
.chat-member[aria-current="true"] {
  background: rgba(35, 68, 61, 0.3);
  border-left: 2px solid var(--rose-burnt);
}
.chat-member__avatar { position: relative; flex-shrink: 0; }
.chat-member__avatar img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.chat-member__dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rose-burnt);
  border: 2px solid var(--ink);
}
.chat-member__main { flex: 1; min-width: 0; }
.chat-member__name { font-size: 14px; font-weight: 500; color: var(--ivory); }
.chat-member__time { font-size: 10px; color: rgba(221, 208, 195, 0.3); }
.chat-member__area { font-size: 10px; color: var(--champagne); letter-spacing: 0.04em; }
.chat-member__msg { font-size: 12px; color: rgba(221, 208, 195, 0.4); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.chat-member__unread {
  width: 16px;
  height: 16px;
  background: var(--rose-burnt);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chat-convo { display: none; flex: 1; flex-direction: column; min-width: 0; }
.chat-convo__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(183, 154, 112, 0.1);
  background: var(--espresso-2);
  flex-shrink: 0;
}
.chat-convo__head img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.chat-convo__name { font-size: 14px; font-weight: 500; color: var(--ivory); }
.chat-convo__meta { font-size: 10px; color: var(--champagne); }
.chat-convo__online { display: inline-flex; align-items: center; gap: 4px; font-size: 9px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--rose-burnt); font-weight: 600; }
.chat-convo__online::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--rose-burnt); }
.chat-convo__tags { margin-left: auto; display: flex; flex-wrap: wrap; gap: 6px; }
.chat-convo__tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border: 1px solid rgba(183, 154, 112, 0.2);
  color: rgba(183, 154, 112, 0.65);
  border-radius: var(--radius);
}
.chat-convo__tag--verified { background: rgba(183, 154, 112, 0.15); color: var(--champagne); border-color: transparent; font-weight: 600; }

.chat-messages { flex: 1; overflow-y: auto; padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.chat-day {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(221, 208, 195, 0.25);
  margin-bottom: 4px;
}
.chat-bubble { max-width: 360px; padding: 12px 16px; border-radius: var(--radius); font-size: 14px; line-height: 1.55; }
.chat-bubble--them { background: var(--espresso); color: var(--taupe); align-self: flex-start; }
.chat-bubble--me { background: var(--emerald-deep); color: var(--ivory); align-self: flex-end; }
.chat-bubble__time { font-size: 10px; margin-top: 4px; }
.chat-bubble--them .chat-bubble__time { color: rgba(221, 208, 195, 0.3); }
.chat-bubble--me .chat-bubble__time { color: rgba(204, 215, 208, 0.4); }

.chat-input {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-top: 1px solid rgba(183, 154, 112, 0.1);
  background: var(--espresso-2);
  flex-shrink: 0;
}
.chat-input input {
  flex: 1;
  background: var(--espresso);
  border: 1px solid rgba(183, 154, 112, 0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--taupe);
  outline: none;
}
.chat-input input:focus { border-color: rgba(183, 154, 112, 0.45); }
.chat-input__note { font-size: 10px; color: rgba(221, 208, 195, 0.2); letter-spacing: 0.04em; margin-top: 6px; }

.chat-mobile-hint { flex: 1; display: flex; align-items: center; justify-content: center; padding: 32px; text-align: center; }
.chat-mobile-hint__icon { font-size: 2.5rem; margin-bottom: 12px; }
.chat-mobile-hint p { color: rgba(221, 208, 195, 0.5); font-size: 14px; }

@media (min-width: 1024px) {
  .chat-app__body { flex-direction: row; }
  .chat-filters { display: flex; }
  .chat-list { width: 288px; }
  .chat-convo { display: flex; }
  .chat-mobile-hint { display: none; }
}

/* --------------------------------------------------------------------------
   17. Events
   -------------------------------------------------------------------------- */
.event-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.event-filter {
  padding: 9px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  background: rgba(221, 208, 195, 0.5);
  color: var(--text-muted);
  transition: background 0.2s, color 0.2s;
}
.event-filter:hover { background: var(--taupe); }
.event-filter[aria-pressed="true"] { background: var(--emerald-deep); color: #fff; }

.event-feature { position: relative; border-radius: var(--radius); overflow: hidden; }
.event-feature__img { width: 100%; height: 420px; object-fit: cover; transition: transform 0.7s var(--ease); }
.event-feature:hover .event-feature__img { transform: scale(1.04); }
.event-feature__shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(37, 35, 33, 0.95) 0%, rgba(37, 35, 33, 0.4) 55%, transparent 100%); }
.event-feature__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 32px; color: var(--ivory); display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.event-feature__type { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--champagne); }
.event-feature__badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: var(--rose-burnt);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 700;
  margin-left: 8px;
}
.event-feature__title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 8px 0; }
.event-feature__meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; color: rgba(221, 208, 195, 0.72); }
.event-avatars { display: flex; margin-top: 16px; }
.event-avatars img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--espresso);
  object-fit: cover;
  margin-right: -8px;
}
.event-avatars__count { font-size: 12px; color: rgba(221, 208, 195, 0.6); margin-left: 14px; align-self: center; }

.event-grid { display: grid; gap: 20px; }
.event-card {
  position: relative;
  background: var(--espresso);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--ivory);
}
.event-card__imgwrap { position: relative; overflow: hidden; }
.event-card__img { width: 100%; height: 176px; object-fit: cover; transition: transform 0.7s var(--ease); }
.event-card:hover .event-card__img { transform: scale(1.05); }
.event-card__imgshade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(37, 35, 33, 0.8), transparent); }
.event-card__type {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--champagne);
  background: rgba(37, 35, 33, 0.7);
  padding: 4px 8px;
  border-radius: var(--radius);
}
.event-card__body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.event-card__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 300; margin-bottom: 6px; }
.event-card__date { font-size: 12px; color: rgba(221, 208, 195, 0.5); }
.event-card__area { font-size: 12px; color: var(--champagne); margin: 2px 0 10px; }
.event-card__mood { font-size: 10px; letter-spacing: 0.05em; color: rgba(204, 215, 208, 0.4); margin-bottom: 16px; }
.event-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.event-card__spot { font-size: 10px; color: rgba(221, 208, 195, 0.4); }
.event-progress { height: 4px; background: rgba(183, 154, 112, 0.1); border-radius: 2px; overflow: hidden; margin-top: 12px; }
.event-progress__fill { height: 100%; background: var(--rose-burnt); border-radius: 2px; }
.event-card .btn { margin-top: 16px; }

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

/* --------------------------------------------------------------------------
   18. Wishlists
   -------------------------------------------------------------------------- */
.wishlist-filters { display: flex; flex-wrap: wrap; gap: 8px; border-bottom: 1px solid var(--taupe); padding-bottom: 24px; margin-bottom: 40px; }
.wishlist-filter {
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid var(--taupe);
  color: var(--text-faint);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.wishlist-filter:hover { color: var(--text); border-color: rgba(41, 40, 39, 0.3); }
.wishlist-filter[aria-pressed="true"] { background: var(--emerald-deep); color: #fff; border-color: var(--emerald-deep); }

.wishlist-grid { display: grid; gap: 20px; }
.wishlist-card {
  position: relative;
  background: var(--espresso);
  border-radius: var(--radius);
  overflow: hidden;
  color: var(--ivory);
  display: flex;
  flex-direction: column;
}
.wishlist-card__imgwrap { position: relative; overflow: hidden; }
.wishlist-card__img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.7s var(--ease); }
.wishlist-card--large .wishlist-card__img { height: 300px; }
.wishlist-card:hover .wishlist-card__img { transform: scale(1.05); }
.wishlist-card__imgshade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(37, 35, 33, 0.5), transparent 60%); }
.wishlist-card__cat {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--champagne);
  background: rgba(37, 35, 33, 0.7);
  padding: 4px 8px;
  border-radius: var(--radius);
}
.wishlist-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.wishlist-card__title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 300; margin-bottom: 4px; }
.wishlist-card__sub { font-size: 12px; color: var(--champagne); font-style: italic; font-weight: 300; margin-bottom: 12px; }
.wishlist-card__desc { font-size: 14px; line-height: 1.6; color: rgba(221, 208, 195, 0.62); margin-bottom: 16px; }
.wishlist-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.wishlist-card__tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border: 1px solid rgba(183, 154, 112, 0.2);
  color: rgba(183, 154, 112, 0.6);
  border-radius: var(--radius);
}

@media (min-width: 768px) {
  .wishlist-grid { grid-template-columns: repeat(12, 1fr); gap: 24px; }
  .wishlist-card { grid-column: span 4; }
  .wishlist-card--large { grid-column: span 6; }
}

.cta-band {
  background: var(--emerald-deep);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.cta-band__action { flex-shrink: 0; }
@media (min-width: 768px) {
  .cta-band { flex-direction: row; align-items: center; justify-content: space-between; gap: 48px; padding: 48px; }
}

/* --------------------------------------------------------------------------
   19. Dating spots (mood)
   -------------------------------------------------------------------------- */
.mood { display: grid; gap: 28px; align-items: center; padding-block: 20px; }
.mood__media { position: relative; border-radius: var(--radius); overflow: hidden; }
.mood__img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.7s var(--ease); }
.mood:hover .mood__img { transform: scale(1.04); }
.mood__shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(37, 35, 33, 0.6), transparent); }
.mood__label {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: rgba(35, 68, 61, 0.82);
  padding: 7px 12px;
  border-radius: var(--radius);
}
.mood__title { font-size: 1.9rem; margin-bottom: 8px; }
.mood__area { font-size: 12px; color: var(--champagne); letter-spacing: 0.05em; margin-bottom: 14px; }
.mood__desc { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 18px; }
.mood__tip { background: rgba(221, 208, 195, 0.3); border-radius: var(--radius); padding: 16px; margin-bottom: 16px; }
.mood__tip-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne); font-weight: 600; margin-bottom: 4px; }
.mood__tip-copy { font-size: 12px; line-height: 1.55; color: var(--text-muted); }
.mood__vibes { display: flex; flex-wrap: wrap; gap: 6px; }
.mood__vibe {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border: 1px solid var(--taupe);
  color: var(--text-faint);
  border-radius: var(--radius);
}
@media (min-width: 768px) {
  .mood { grid-template-columns: 3fr 2fr; }
  .mood:nth-child(even) .mood__media { order: 2; }
}

/* --------------------------------------------------------------------------
   20. Date ideas (itinerary / timeline)
   -------------------------------------------------------------------------- */
.itinerary { border: 1px solid var(--taupe); border-radius: var(--radius); overflow: hidden; }
.itinerary__head { position: relative; }
.itinerary__img { width: 100%; height: 240px; object-fit: cover; }
.itinerary__shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(37, 35, 33, 0.82), transparent); }
.itinerary__head-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px; display: grid; gap: 12px; align-items: end; }
.itinerary__tag { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--champagne); font-weight: 500; margin-bottom: 4px; }
.itinerary__title { color: var(--ivory); font-size: 1.9rem; }
.itinerary__area { font-size: 12px; color: rgba(221, 208, 195, 0.6); letter-spacing: 0.04em; margin-top: 4px; }
.itinerary__desc { color: rgba(221, 208, 195, 0.72); font-size: 14px; line-height: 1.6; }
.itinerary__body { background: #fff; padding: 28px; }

.timeline { display: flex; flex-direction: column; }
.timeline__stop { display: flex; gap: 20px; }
.timeline__rail { display: flex; flex-direction: column; align-items: center; width: 56px; flex-shrink: 0; }
.timeline__time { font-size: 10px; font-family: var(--font-body); font-weight: 500; color: var(--champagne); white-space: nowrap; letter-spacing: 0.03em; }
.timeline__line { width: 1px; flex: 1; background: var(--taupe); margin-top: 10px; min-height: 44px; }
.timeline__stop:last-child .timeline__line { min-height: 12px; }
.timeline__content { flex: 1; padding-bottom: 28px; }
.timeline__headline { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; flex-wrap: wrap; }
.timeline__icon { font-size: 1.25rem; }
.timeline__label { font-weight: 600; font-size: 14px; color: var(--text); }
.timeline__place { font-size: 14px; color: var(--text-faint); }
.timeline__desc { font-size: 14px; line-height: 1.6; color: var(--text-muted); margin-left: 30px; }

@media (min-width: 768px) {
  .itinerary__img { height: 288px; }
  .itinerary__head-body { grid-template-columns: 1fr 1fr; }
  .itinerary__body { padding: 40px; }
}

/* --------------------------------------------------------------------------
   21. Tips / do-don't
   -------------------------------------------------------------------------- */
.tip-section { margin-bottom: 40px; }
.tip-section__title {
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--taupe);
}
.tip-grid { display: grid; gap: 16px; }
.tip-card {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s;
}
.tip-card:hover { border-color: rgba(35, 68, 61, 0.3); }
.tip-card__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.tip-card__title { font-weight: 500; font-size: 14px; color: var(--text); }
.tip-card__toggle { color: var(--champagne); font-size: 1.3rem; line-height: 1; transition: transform 0.25s var(--ease); flex-shrink: 0; }
.tip-card[aria-expanded="true"] .tip-card__toggle { transform: rotate(45deg); }
.tip-card__body { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.tip-card[aria-expanded="true"] .tip-card__body { max-height: 300px; }
.tip-card__detail { color: var(--text-muted); font-size: 14px; line-height: 1.6; padding-top: 12px; }
@media (min-width: 768px) { .tip-grid { grid-template-columns: 1fr 1fr; } }

.dodont { display: grid; gap: 16px; }
.dodont__row { display: grid; gap: 16px; }
.dodont__do, .dodont__dont { display: flex; gap: 12px; align-items: flex-start; padding: 16px; border-radius: var(--radius); }
.dodont__do { background: rgba(35, 68, 61, 0.4); }
.dodont__dont { background: rgba(166, 95, 103, 0.15); }
.dodont__mark { font-weight: 700; font-size: 14px; flex-shrink: 0; }
.dodont__do .dodont__mark { color: var(--sage); }
.dodont__dont .dodont__mark { color: var(--rose-burnt); }
.dodont__do p { color: var(--sage); font-size: 14px; }
.dodont__dont p { color: rgba(221, 208, 195, 0.72); font-size: 14px; }
@media (min-width: 768px) { .dodont__row { grid-template-columns: 1fr 1fr; } }

.chat-example { display: grid; gap: 20px; }
.chat-example__card { padding: 24px; border: 1px solid var(--taupe); border-radius: var(--radius); }
.chat-example__card--good { background: rgba(35, 68, 61, 0.05); border-color: rgba(35, 68, 61, 0.2); }
.chat-example__label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; margin-bottom: 16px; }
.chat-example__label--bad { color: var(--rose-burnt); }
.chat-example__label--good { color: var(--emerald-deep); }
.chat-example__bubble { border-radius: var(--radius); padding: 16px; font-size: 14px; line-height: 1.55; }
.chat-example__bubble--bad { background: var(--ivory); color: var(--text-muted); font-style: italic; }
.chat-example__bubble--good { background: #fff; color: rgba(41, 40, 39, 0.82); }
.chat-example__note { font-size: 12px; color: var(--text-faint); line-height: 1.55; margin-top: 12px; }
@media (min-width: 768px) { .chat-example { grid-template-columns: 1fr 1fr; } }

/* --------------------------------------------------------------------------
   22. Safety
   -------------------------------------------------------------------------- */
.safety-grid { display: grid; gap: 24px; }
.safety-card {
  background: #fff;
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  padding: 24px;
}
.safety-card__icon { font-size: 1.9rem; margin-bottom: 14px; }
.safety-card__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 300; margin-bottom: 16px; }
.safety-card li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; }
.safety-card li:last-child { margin-bottom: 0; }
.safety-card li::before { content: "→"; color: var(--champagne); font-size: 12px; flex-shrink: 0; margin-top: 2px; }
.safety-card li span { color: var(--text-muted); font-size: 14px; line-height: 1.55; }
@media (min-width: 768px) { .safety-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .safety-grid { grid-template-columns: repeat(3, 1fr); } }

.callout {
  border-radius: var(--radius);
  padding: 28px;
}
.callout--warn { background: rgba(166, 95, 103, 0.1); border: 1px solid rgba(166, 95, 103, 0.3); }
.callout--info { background: rgba(35, 68, 61, 0.1); border-left: 4px solid var(--emerald-deep); }
.callout__title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 300; margin-bottom: 12px; }
.callout p { color: var(--text-muted); font-size: 14px; line-height: 1.65; margin-bottom: 10px; }
.callout p:last-child { margin-bottom: 0; }

.emergency { display: grid; gap: 24px; align-items: center; }
.emergency__item { display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: var(--radius); }
.emergency__item--primary { background: rgba(166, 95, 103, 0.2); }
.emergency__item--secondary { background: rgba(183, 154, 112, 0.1); }
.emergency__icon { font-size: 1.6rem; }
.emergency__label { color: #fff; font-weight: 600; font-size: 14px; }
.emergency__value { color: rgba(221, 208, 195, 0.6); font-size: 12px; }
@media (min-width: 768px) { .emergency { grid-template-columns: 1fr 1fr; } }

/* --------------------------------------------------------------------------
   23. FAQ accordion
   -------------------------------------------------------------------------- */
.faq-layout { display: grid; gap: 40px; }
.faq-nav { display: none; position: sticky; top: 96px; align-self: start; }
.faq-nav a {
  display: block;
  font-size: 14px;
  color: var(--text-faint);
  padding: 6px 12px;
  border-left: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.faq-nav a:hover { color: var(--text); border-color: var(--emerald-deep); }
.faq-group { margin-bottom: 44px; }
.faq-group__title { font-size: 1.4rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--taupe); }
.faq-item { border-bottom: 1px solid var(--taupe); }
.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  text-align: left;
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
}
.faq-item__icon { color: var(--champagne); font-size: 1.3rem; line-height: 1; transition: transform 0.25s var(--ease); flex-shrink: 0; }
.faq-item[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); }
.faq-item__panel { max-height: 0; overflow: hidden; transition: max-height 0.32s var(--ease); }
.faq-item[aria-expanded="true"] .faq-item__panel { max-height: 500px; }
.faq-item__answer { color: var(--text-muted); font-size: 14px; line-height: 1.65; padding: 0 40px 18px 0; }
@media (min-width: 1024px) {
  .faq-layout { grid-template-columns: 220px 1fr; }
  .faq-nav { display: block; }
}

/* --------------------------------------------------------------------------
   24. Blog
   -------------------------------------------------------------------------- */
.blog-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.blog-filter {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid var(--taupe);
  border-radius: var(--radius);
  color: var(--text-faint);
  transition: color 0.2s, border-color 0.2s;
}
.blog-filter:hover { color: var(--text); border-color: rgba(41, 40, 39, 0.3); }
.blog-filter[aria-pressed="true"] { background: var(--emerald-deep); color: #fff; border-color: var(--emerald-deep); }

.blog-feature { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.blog-feature__img { width: 100%; height: 440px; object-fit: cover; transition: transform 0.7s var(--ease); }
.blog-feature:hover .blog-feature__img { transform: scale(1.04); }
.blog-feature__shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(37, 35, 33, 0.95) 0%, rgba(37, 35, 33, 0.4) 55%, transparent 100%); }
.blog-feature__body { position: absolute; left: 0; right: 0; bottom: 0; padding: 32px; color: var(--ivory); }
.blog-feature__meta { display: flex; align-items: center; gap: 10px; font-size: 10px; color: rgba(221, 208, 195, 0.55); margin-bottom: 10px; }
.blog-feature__cat { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 700; color: var(--champagne); }
.blog-feature__title { font-size: clamp(1.4rem, 2.6vw, 1.9rem); max-width: 34rem; margin-bottom: 10px; }
.blog-feature__desc { color: rgba(221, 208, 195, 0.72); font-size: 14px; max-width: 34rem; line-height: 1.6; }
.blog-feature__more { display: inline-block; margin-top: 18px; font-size: 14px; font-weight: 500; color: var(--champagne); border-bottom: 1px solid rgba(183, 154, 112, 0.4); padding-bottom: 2px; }

.blog-grid { display: grid; gap: 28px; }
.blog-card { cursor: pointer; }
.blog-card__imgwrap { border-radius: var(--radius); overflow: hidden; margin-bottom: 16px; background: var(--taupe); }
.blog-card__img { width: 100%; height: 208px; object-fit: cover; transition: transform 0.7s var(--ease); }
.blog-card:hover .blog-card__img { transform: scale(1.05); }
.blog-card__meta { display: flex; align-items: center; gap: 8px; font-size: 10px; color: var(--text-faint); margin-bottom: 8px; }
.blog-card__cat { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; color: var(--champagne); }
.blog-card__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 300; margin-bottom: 8px; transition: color 0.2s; line-height: 1.3; }
.blog-card:hover .blog-card__title { color: var(--emerald-deep); }
.blog-card__desc { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-feature__link,
.blog-card__link { color: inherit; text-decoration: none; }
.blog-feature__link { display: block; }
.blog-card__link { display: block; height: 100%; }
.blog-card--coming-soon { cursor: default; opacity: 0.72; }
.blog-card--coming-soon:hover .blog-card__img { transform: none; }
.blog-card__status {
  display: inline-flex;
  margin-top: 14px;
  padding: 6px 10px;
  border: 1px solid var(--taupe);
  border-radius: 999px;
  color: var(--text-faint);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-hero { padding-block: 72px 48px; }
.article-hero__inner { max-width: 880px; margin-inline: auto; }
.article-hero__meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--text-faint); font-size: 12px; }
.article-hero__title { margin-top: 18px; max-width: 820px; }
.article-hero__dek { margin-top: 22px; max-width: 720px; color: var(--text-muted); font-size: 1.08rem; line-height: 1.75; }
.article-hero__image { width: 100%; margin-top: 38px; border-radius: var(--radius); aspect-ratio: 3 / 2; object-fit: cover; }
.article-layout { display: grid; gap: 40px; max-width: 1060px; margin-inline: auto; }
.article-toc { align-self: start; padding: 22px; border: 1px solid var(--taupe); border-radius: var(--radius); background: rgba(255,255,255,0.35); }
.article-toc__title { margin-bottom: 12px; font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--champagne); }
.article-toc a { display: block; padding-block: 6px; color: var(--text-muted); font-size: 13px; line-height: 1.4; }
.article-body { max-width: 720px; }
.article-body h2 { margin-top: 46px; margin-bottom: 16px; font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.4rem); font-weight: 300; line-height: 1.15; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin-top: 28px; margin-bottom: 10px; font-size: 1.05rem; font-weight: 600; }
.article-body p { margin-bottom: 18px; color: var(--text-muted); font-size: 16px; line-height: 1.82; }
.article-body ul,
.article-body ol { margin: 0 0 22px 22px; color: var(--text-muted); }
.article-body li { margin-bottom: 10px; line-height: 1.7; }
.article-callout { margin-block: 30px; padding: 24px; border-left: 3px solid var(--champagne); background: rgba(221,208,195,0.32); }
.article-callout p:last-child { margin-bottom: 0; }
.article-example { margin-block: 28px; padding: 24px; border-radius: var(--radius); background: var(--emerald-deep); color: var(--ivory); }
.article-example__label { margin-bottom: 10px; color: var(--champagne); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.article-example p { color: rgba(247,242,234,0.82); }
.article-example p:last-child { margin-bottom: 0; }
.article-next { margin-top: 54px; padding: 32px; border-radius: var(--radius); background: var(--espresso); color: var(--ivory); }
.article-next p { color: rgba(247,242,234,0.7); }
@media (min-width: 960px) {
  .article-layout { grid-template-columns: 220px minmax(0, 720px); }
  .article-toc { position: sticky; top: 110px; }
}

/* --------------------------------------------------------------------------
   25. About
   -------------------------------------------------------------------------- */
.about-hero { position: relative; overflow: hidden; color: var(--ivory); }
.about-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-hero__shade { position: absolute; inset: 0; background: rgba(35, 68, 61, 0.86); }
.about-hero__body { position: relative; z-index: 2; padding-block: 110px 90px; }
.about-hero__title { color: var(--ivory); margin-top: 10px; margin-bottom: 24px; }
.about-hero__sub { color: var(--sage); font-size: 1.1rem; line-height: 1.65; max-width: 36rem; }

.value { display: flex; gap: 20px; }
.value__bar { width: 1px; background: rgba(183, 154, 112, 0.5); flex-shrink: 0; align-self: stretch; }
.value__title { font-weight: 500; margin-bottom: 6px; }
.value__copy { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* --------------------------------------------------------------------------
   26. Forms (login)
   -------------------------------------------------------------------------- */
.auth { display: flex; min-height: calc(100vh - var(--nav-height)); background: var(--espresso); }
.auth__media { display: none; flex: 1; position: relative; overflow: hidden; }
.auth__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.auth__media-shade { position: absolute; inset: 0; background: linear-gradient(to right, transparent 20%, rgba(37, 35, 33, 0.85)); }
.auth__media-caption { position: absolute; bottom: 48px; left: 40px; z-index: 2; }
.auth__panel { width: 100%; display: flex; flex-direction: column; justify-content: center; padding: 48px 32px; }
.auth__panel-inner { max-width: 400px; margin-inline: auto; width: 100%; }
.auth__toggle { display: flex; border: 1px solid rgba(183, 154, 112, 0.2); border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
.auth__toggle button { flex: 1; padding: 11px; font-size: 12px; font-weight: 600; letter-spacing: 0.02em; color: rgba(221, 208, 195, 0.5); transition: background 0.2s, color 0.2s; }
.auth__toggle button:hover { color: var(--taupe); }
.auth__toggle button[aria-pressed="true"] { background: var(--emerald-deep); color: #fff; }
.auth__title { color: var(--ivory); font-size: 1.9rem; margin-bottom: 8px; }
.auth__sub { color: rgba(221, 208, 195, 0.5); font-size: 14px; margin-bottom: 32px; }

.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
  margin-bottom: 8px;
}
.field input, .field select {
  width: 100%;
  background: var(--ink);
  border: 1px solid rgba(183, 154, 112, 0.2);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-size: 14px;
  color: var(--taupe);
  outline: none;
  transition: border-color 0.2s;
}
.field input::placeholder { color: rgba(221, 208, 195, 0.3); }
.field input:focus, .field select:focus { border-color: rgba(183, 154, 112, 0.5); }
.field select option { background: var(--espresso); color: var(--taupe); }

.role-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.role-pick button {
  padding: 15px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid rgba(183, 154, 112, 0.2);
  color: rgba(221, 208, 195, 0.6);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.role-pick button:hover { border-color: rgba(183, 154, 112, 0.45); }
.role-pick button[aria-pressed="true"] { background: var(--emerald-deep); color: #fff; border-color: var(--emerald-deep); }

.interest-pick { display: flex; flex-wrap: wrap; gap: 8px; }
.interest-pick button {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 12px;
  border: 1px solid rgba(183, 154, 112, 0.25);
  border-radius: var(--radius);
  color: rgba(221, 208, 195, 0.5);
  transition: border-color 0.2s, color 0.2s;
}
.interest-pick button:hover, .interest-pick button[aria-pressed="true"] { border-color: rgba(183, 154, 112, 0.6); color: var(--taupe); }
.auth__fine { font-size: 10px; color: rgba(221, 208, 195, 0.3); text-align: center; line-height: 1.6; }
.auth__fine a { text-decoration: underline; }
.auth__fine a:hover { color: rgba(221, 208, 195, 0.6); }

@media (min-width: 768px) {
  .auth__media { display: block; }
  .auth__panel { width: 480px; padding: 48px; }
}

/* --------------------------------------------------------------------------
   27. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--espresso); color: var(--ivory); }
.footer-grid { display: grid; gap: 40px; padding-block: 64px 48px; }
.footer-brand .brand__name { font-size: 1.5rem; }
.footer-brand__copy { color: rgba(221, 208, 195, 0.6); font-size: 14px; line-height: 1.65; max-width: 20rem; margin-top: 16px; }
.footer-live { display: flex; align-items: center; gap: 6px; margin-top: 24px; }
.footer-live__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--rose-burnt); }
.footer-live__text { font-size: 12px; color: rgba(221, 208, 195, 0.5); letter-spacing: 0.03em; }

.footer-col__title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: rgba(221, 208, 195, 0.6); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--ivory); }

.footer-bottom {
  border-top: 1px solid rgba(183, 154, 112, 0.15);
  padding-block: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.footer-bottom p { color: rgba(221, 208, 195, 0.4); font-size: 12px; }
.footer-bottom .fine { color: rgba(221, 208, 195, 0.3); font-size: 12px; max-width: 28rem; }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
  .footer-bottom { flex-direction: row; text-align: left; }
}

/* --------------------------------------------------------------------------
   28. Legal pages
   -------------------------------------------------------------------------- */
.legal-section { padding-bottom: 48px; }
.legal-section h2 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 300; margin-bottom: 12px; }
.legal-section p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.legal-updated { color: var(--text-faint); font-size: 13px; margin-bottom: 40px; }

/* --------------------------------------------------------------------------
   29. Utility surfaces
   -------------------------------------------------------------------------- */
.bg-ivory { background: var(--ivory); }
.bg-espresso { background: var(--espresso); }
.bg-emerald { background: var(--emerald-deep); }
.bg-rose { background: var(--rose-burnt); }
.bg-white { background: #fff; }

.text-light { color: var(--ivory); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.hidden { display: none; }

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

/* --------------------------------------------------------------------------
   31. Focus visibility
   -------------------------------------------------------------------------- */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--champagne);
  outline-offset: 2px;
}
