/* ==========================================================================
   Sugar Daddy Australia — Design System
   Australian Modern Luxury × Sunlit Affluence × Romantic Confidence
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --ivory:        #F8F5EF;   /* Pearl Ivory — primary background */
  --stone:        #E5DDD2;   /* Warm Stone — secondary background */
  --mist:         #D8E1DC;   /* Eucalyptus Mist — soft cool surface */
  --eucalyptus:   #23443D;   /* Deep Eucalyptus — primary brand */
  --midnight:     #182C29;   /* Midnight Forest — dark contrast */
  --gold:         #B89B68;   /* Champagne Gold — luxury accent */
  --gold-dark:    #a58556;   /* Champagne Gold hover */
  --gold-text:    #7A5C2C;   /* Accessible gold for text on light surfaces */
  --rose:         #B96F73;   /* Burnt Rose — romantic accent */
  --charcoal:     #292A28;   /* Charcoal — primary text */
  --muted-fg:     #52655D;   /* accessible muted foreground */

  /* Derived surfaces */
  --white:        #FFFFFF;
  --line:         rgba(35, 68, 61, 0.12);   /* hairline border */
  --line-gold:    rgba(184, 155, 104, 0.35);

  /* Typography */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Spacing scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --radius: 0.375rem;
  --shadow-sm: 0 1px 2px rgba(24, 44, 41, 0.06), 0 1px 3px rgba(24, 44, 41, 0.10);
  --shadow-md: 0 4px 12px rgba(24, 44, 41, 0.10), 0 2px 4px rgba(24, 44, 41, 0.06);
  --shadow-lg: 0 12px 32px rgba(24, 44, 41, 0.16), 0 4px 10px rgba(24, 44, 41, 0.08);

  --maxw: 80rem; /* 1280px container */
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img {
  height: auto;
}

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

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: var(--gold);
  color: var(--midnight);
}

/* --------------------------------------------------------------------------
   3. Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 var(--space-4);
  color: var(--charcoal);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
}

h4 {
  font-size: 1.125rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.card-heading {
  margin-bottom: var(--space-4);
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin: 0 0 var(--space-4);
}

.lead {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--muted-fg);
  max-width: 42rem;
}

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

/* Eyebrow / kicker label */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold-text);
  margin: 0 0 var(--space-3);
}

.hero .eyebrow,
.section--dark .eyebrow,
.section--eucalyptus .eyebrow {
  color: var(--gold);
}

.section-head {
  max-width: 48rem;
}

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

/* --------------------------------------------------------------------------
   4. Layout
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
}

@media (min-width: 64em) {
  .container {
    padding-left: var(--space-8);
    padding-right: var(--space-8);
  }
}

.section {
  padding: var(--space-16) 0;
}

@media (min-width: 64em) {
  .section {
    padding: var(--space-32) 0;
  }
}

.section--tight { padding: var(--space-12) 0 var(--space-16); }

.section--stone   { background: var(--stone); }
.section--mist    { background: var(--mist); }
.section--dark    { background: var(--midnight); color: var(--ivory); }
.section--eucalyptus { background: var(--eucalyptus); color: var(--ivory); }
.section--ivory   { background: var(--ivory); }

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--eucalyptus h1,
.section--eucalyptus h2,
.section--eucalyptus h3,
.section--eucalyptus h4 { color: var(--white); }

.section--dark .text-muted,
.section--eucalyptus .text-muted { color: rgba(248, 245, 239, 0.62); }

/* --------------------------------------------------------------------------
   5. Grids
   -------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid > * {
  min-width: 0;
}

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

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

@media (min-width: 64em) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-6 { grid-template-columns: repeat(6, 1fr); }
}

/* Two-column editorial split */
.split {
  display: grid;
  gap: var(--space-10);
  align-items: center;
}

.split > * {
  min-width: 0;
}

@media (min-width: 64em) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--space-20); }
}

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.875rem 2rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  min-height: 2.75rem;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn svg { flex-shrink: 0; }

.btn--gold {
  background: var(--gold);
  color: var(--midnight);
}

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

.btn--outline {
  border-color: rgba(35, 68, 61, 0.4);
  color: var(--eucalyptus);
}

.btn--outline:hover {
  border-color: var(--eucalyptus);
  background: rgba(35, 68, 61, 0.05);
}

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

.btn--outline-light:hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
}

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

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

/* Text link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--eucalyptus);
  border-bottom: 1px solid rgba(35, 68, 61, 0.4);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.link-arrow:hover { color: var(--gold); border-color: var(--gold); }

.link-arrow--gold { color: var(--gold); border-color: rgba(184, 155, 104, 0.4); }
.link-arrow--gold:hover { color: var(--gold); border-color: var(--gold); }

/* --------------------------------------------------------------------------
   7. Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.nav--solid {
  background: rgba(24, 44, 41, 0.97);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(6px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-5);
  padding-bottom: var(--space-5);
}

.nav__brand {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--gold);
  transition: color 0.2s ease;
}

.nav__brand:hover { color: var(--white); }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.nav__link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
}

.nav__link:hover { color: var(--white); }
.nav__link.is-active { color: var(--gold); }

.nav__cta { display: flex; align-items: center; gap: var(--space-3); }

.nav__signin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 1rem;
}

.nav__signin:hover { color: var(--white); }

.nav .btn--gold { padding: 0.65rem 1.5rem; }

/* Cities dropdown (desktop) */
.dropdown { position: relative; }
.dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  background: none;
  border: 0;
  padding: 0;
  min-height: 2.75rem;
}

.dropdown__trigger:hover { color: var(--white); }
.dropdown__trigger .chev { transition: transform 0.2s ease; }
.dropdown:hover .dropdown__trigger .chev,
.dropdown:focus-within .dropdown__trigger .chev { transform: rotate(180deg); }

.dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 12rem;
  background: var(--midnight);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.dropdown:hover .dropdown__menu,
.dropdown:focus-within .dropdown__menu,
.dropdown.is-open .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 4px);
}

.dropdown__item {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.625rem 1rem;
  border-radius: 0.25rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.dropdown__item:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

/* Mobile toggle */
.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: 0;
  color: var(--white);
}

.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }

/* Desktop vs mobile visibility */
@media (max-width: 63.99em) {
  html.nav-open {
    overflow: hidden;
  }

  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--midnight);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-4) var(--space-6) var(--space-6);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
  }

  .nav__links.is-open {
    min-height: calc(100dvh - 5rem);
    max-height: calc(100dvh - 5rem);
    overflow-y: auto;
    opacity: 1;
    padding: var(--space-5) var(--space-6) var(--space-8);
  }

  .nav__link,
  .dropdown__trigger {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 0;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .dropdown { width: 100%; }
  .dropdown__menu {
    position: static;
    transform: none;
    display: none;
    opacity: 0;
    visibility: hidden;
    box-shadow: none;
    border: 0;
    padding: 0 0 0.5rem;
    min-width: 0;
    background: transparent;
  }
  .dropdown.is-open .dropdown__menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .dropdown__item { padding: 0.5rem 0 0.5rem 1rem; }

  .nav__cta {
    flex-direction: column;
    gap: var(--space-3);
    padding-top: var(--space-5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav__signin { text-align: center; }
  .nav__cta .btn--gold { justify-content: center; }
}

@media (min-width: 64em) {
  .nav__toggle { display: none; }
}

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

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

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

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(24, 44, 41, 0.92) 0%, rgba(24, 44, 41, 0.35) 55%, rgba(24, 44, 41, 0.1) 100%),
    linear-gradient(to right, rgba(24, 44, 41, 0.62) 0%, rgba(24, 44, 41, 0) 70%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: var(--space-16);
  padding-top: var(--space-24);
}

.hero__title {
  color: var(--white);
  max-width: 46rem;
  margin-bottom: var(--space-6);
}

.hero__title--home {
  max-width: 58rem;
  font-size: clamp(2.75rem, 4.7vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero__title--city {
  max-width: 43rem;
  font-size: clamp(2.65rem, 4.35vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.hero__title--city .hero__title-main,
.hero__title--city .hero__title-place {
  display: block;
}

.hero__title--city .hero__title-amp {
  color: var(--gold);
  font-weight: 500;
  font-style: italic;
}

.hero__title--city .hero__title-place {
  display: flex;
  align-items: center;
  gap: 0.45em;
  margin-top: 0.38em;
  font-size: 0.56em;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.015em;
}

.hero__title--city .hero__title-place::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, var(--gold), rgba(197, 160, 101, 0.25));
}

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

.hero__text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.125rem;
  font-weight: 300;
  max-width: 36rem;
  margin-bottom: var(--space-10);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.875rem;
}

.hero__trust svg { color: var(--gold); }

.hero__stats {
  display: flex;
  gap: var(--space-12);
  margin-top: var(--space-16);
}

.hero__stats--features .stat {
  flex: 1 1 0;
  max-width: 10rem;
}

.hero__stats--features .stat__value {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.stat__value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
}

.stat__label {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.125rem;
}

/* Subpage hero (shorter) */
.hero--sub {
  min-height: 70vh;
}

@media (min-width: 64em) {
  .hero__title { max-width: 50rem; }

  .hero--role-daddy,
  .hero--role-baby {
    min-height: 100svh;
  }

  .hero--role-daddy .hero__media img,
  .hero--role-baby .hero__media img {
    object-position: 72% center;
  }
}

@media (max-width: 39.99em) {
  .container {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }

  .hero {
    min-height: 100dvh;
  }

  .hero--home .hero__media img {
    object-position: 76% center;
  }

  .hero--final .hero__media img {
    object-position: 78% center;
  }

  .hero--focus-right .hero__media img {
    object-position: 76% center;
  }

  .hero--role-daddy .hero__media img,
  .hero--role-baby .hero__media img {
    object-position: 72% center;
  }

  .hero__content {
    padding-top: 7rem;
    padding-bottom: var(--space-8);
  }

  .hero__title {
    font-size: clamp(2.35rem, 12vw, 3.15rem);
    margin-bottom: var(--space-5);
  }

  .hero__title--home {
    font-size: clamp(1.95rem, 8vw, 2.55rem);
    line-height: 1.08;
  }

  .hero__title--city {
    max-width: 22rem;
    font-size: clamp(2.1rem, 9.4vw, 2.65rem);
    line-height: 1.04;
  }

  .hero__title--city .hero__title-place {
    margin-top: 0.42em;
    font-size: 0.58em;
  }

  .hero__text {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: var(--space-6);
  }

  .hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    margin-bottom: var(--space-6);
  }

  .hero__actions .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero__stats {
    justify-content: space-between;
    gap: var(--space-4);
    margin-top: var(--space-8);
  }

  .stat {
    min-width: 0;
  }

  .hero__stats--features .stat {
    max-width: none;
  }

  .hero__stats--features .stat__value {
    font-size: 1.05rem;
  }

  .stat__label {
    font-size: 0.6875rem;
    line-height: 1.35;
  }

  .role-card__media {
    min-height: 24rem;
  }

  .story-feature {
    grid-column: auto !important;
  }

  .story-feature__inner {
    flex-direction: column;
    align-items: flex-start !important;
    gap: var(--space-5) !important;
  }

  .story-feature__content {
    min-width: 0;
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   9. Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

/* Role selector cards */
.role-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--midnight);
  color: var(--white);
}

.role-card__media {
  position: relative;
  min-height: 30rem;
}

.role-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

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

.role-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(24, 44, 41, 0.95) 0%, rgba(24, 44, 41, 0.3) 50%, rgba(24, 44, 41, 0) 100%),
    linear-gradient(to right, rgba(24, 44, 41, 0.5) 0%, rgba(24, 44, 41, 0) 70%);
}

.role-card__body {
  position: absolute;
  inset: 0;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.role-card__tag {
  align-self: flex-start;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  border: 1px solid rgba(184, 155, 104, 0.3);
  padding: 0.375rem 0.75rem;
}

.role-card__title {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.role-card__rule {
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  margin-bottom: var(--space-5);
}

.role-card__text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  max-width: 20rem;
  margin-bottom: var(--space-6);
}

.role-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  transition: gap 0.25s ease;
}

.role-card:hover .role-card__cta { gap: 1rem; }

/* Profile card */
.profile-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.profile-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--mist);
  overflow: hidden;
}

.profile-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px) brightness(0.82);
  transform: scale(1.06);
  transition: transform 0.7s ease;
}

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

.profile-card__media::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 2.25rem;
  height: 2.25rem;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background-color: rgba(24, 44, 41, 0.82);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='11' width='18' height='11' rx='2'/%3E%3Cpath d='M7 11V7a5 5 0 0 1 10 0v4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.125rem;
  box-shadow: 0 0.5rem 1.5rem rgba(10, 20, 18, 0.28);
  pointer-events: none;
}

.profile-card__body {
  padding: var(--space-4);
}

.profile-card__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--charcoal);
}

.profile-card__meta {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.6875rem;
  color: var(--muted-fg);
  margin: 0.375rem 0 0.625rem;
}

.profile-card__intro {
  font-size: 0.75rem;
  color: var(--muted-fg);
  line-height: 1.5;
  margin-bottom: var(--space-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.tag {
  font-size: 0.625rem;
  color: var(--eucalyptus);
  background: var(--mist);
  padding: 0.125rem 0.5rem;
  border-radius: 0.25rem;
}

/* Profile overlays (online / verified / role) */
.badge-online {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.625rem;
  color: var(--white);
  background: rgba(24, 44, 41, 0.8);
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.badge-online__dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #34d399;
}

.badge-verified {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
}

.role-tag {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.625rem;
  border-radius: 0.25rem;
}

.role-tag--daddy { background: var(--eucalyptus); color: var(--gold); }
.role-tag--baby  { background: var(--rose); color: var(--white); }

/* Homepage process grid */
.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 40em) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64em) {
  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.section-actions {
  display: flex;
  margin-top: var(--space-10);
}

.section-actions--center {
  justify-content: center;
}

/* City card */
.cities-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-4);
}

.cities-grid .city-card {
  aspect-ratio: 3 / 2;
  min-width: 0;
}

@media (min-width: 40em) {
  .cities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64em) {
  .cities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.city-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--eucalyptus);
  color: var(--white);
  cursor: pointer;
}

.city-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, opacity 0.7s ease;
}

.city-card:hover .city-card__media img {
  transform: scale(1.05);
  opacity: 0.85;
}

.city-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24, 44, 41, 0.9) 0%, rgba(24, 44, 41, 0.15) 55%, rgba(24, 44, 41, 0) 100%);
}

.city-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-5);
}

.city-card__state {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.city-card__name {
  color: var(--white);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 0.25rem;
}

.city-card__tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Editorial / lifestyle card */
.editorial-card {
  display: grid;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 64em) {
  .editorial-card { grid-template-columns: 1fr 1fr; }
  .editorial-card--reverse .editorial-card__media { order: 2; }
}

.editorial-card__media {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--mist);
}

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

.editorial-card__rule {
  width: 2rem;
  height: 1px;
  background: var(--gold);
  margin-bottom: var(--space-6);
}

/* Stat / info tile */
.info-tile {
  background: var(--stone);
  border-radius: var(--radius);
  padding: var(--space-6);
}

.info-tile--dark {
  background: var(--eucalyptus);
  color: var(--white);
}

.info-tile--dark h3, .info-tile--dark h4 { color: var(--white); }

.info-tile__rule {
  width: 2rem;
  height: 1px;
  background: var(--gold);
  margin-bottom: var(--space-4);
}

.info-tile p { color: var(--muted-fg); }
.info-tile--dark p { color: rgba(255, 255, 255, 0.74); }

/* --------------------------------------------------------------------------
   10. Lists, checks, lifestyle tags
   -------------------------------------------------------------------------- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}

.check-list__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--eucalyptus);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
}

.check-list__icon svg { width: 0.6875rem; height: 0.6875rem; }

.check-list h4 { margin: 0 0 0.25rem; }
.check-list p { margin: 0; font-size: 0.875rem; color: var(--muted-fg); }

.lifestyle-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--charcoal);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.625rem 1rem;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.lifestyle-tag:hover { border-color: rgba(35, 68, 61, 0.4); }

.lifestyle-tag.is-active {
  background: var(--eucalyptus);
  color: var(--white);
  border-color: var(--eucalyptus);
}

.lifestyle-tag svg { width: 0.875rem; height: 0.875rem; }

.tags { display: flex; flex-wrap: wrap; gap: var(--space-2); }

.neighbourhoods-title {
  margin: var(--space-8) 0 var(--space-4);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--eucalyptus);
}

/* --------------------------------------------------------------------------
   11. FAQ accordion (native <details>)
   -------------------------------------------------------------------------- */
.faq-list { display: grid; gap: 1px; }

.faq {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--charcoal);
}

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

.faq summary .chev {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.2s ease;
}

.faq[open] summary .chev { transform: rotate(180deg); }

.faq__answer {
  padding: 0 var(--space-6) var(--space-5);
  border-top: 1px solid var(--line);
}

.faq__answer p {
  padding-top: var(--space-4);
  font-size: 0.875rem;
  color: var(--muted-fg);
}

/* --------------------------------------------------------------------------
   12. Chat mock UI
   -------------------------------------------------------------------------- */
.chat {
  background: var(--midnight);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.chat__header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat__avatar {
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--mist);
  flex-shrink: 0;
}

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

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

.chat__who { font-weight: 600; font-size: 0.875rem; color: var(--white); }
.chat__where { display: flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; color: rgba(255,255,255,0.4); }

.chat__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  min-height: 280px;
  max-height: 320px;
  overflow-y: auto;
}

.chat__msg { display: flex; gap: 0.625rem; }
.chat__msg--self { flex-direction: row-reverse; }

.chat__msg-avatar {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--mist);
  flex-shrink: 0;
}
.chat__msg-avatar img { width: 100%; height: 100%; object-fit: cover; }

.chat__bubble {
  max-width: 75%;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
}

.chat__msg--self .chat__bubble {
  background: var(--gold);
  color: var(--midnight);
}

.chat__time {
  display: block;
  font-size: 0.625rem;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 0.25rem;
  padding: 0 0.25rem;
}

.chat__input {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.chat__input input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 0.625rem 1rem;
  border-radius: var(--radius);
  outline: none;
}

.chat__input input::placeholder { color: rgba(255, 255, 255, 0.25); }
.chat__input input:focus { background: rgba(255, 255, 255, 0.08); }

.chat__send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--midnight);
  border: 0;
  padding: 0.625rem;
  border-radius: var(--radius);
}

/* --------------------------------------------------------------------------
   13. Wishlist cards
   -------------------------------------------------------------------------- */
.wish-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

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

.wish-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--mist);
  overflow: hidden;
}

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

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

.wish-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24, 44, 41, 0.6) 0%, transparent 50%);
}

.wish-card__tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  background: var(--eucalyptus);
  padding: 0.25rem 0.625rem;
  border-radius: 0.25rem;
}

.wish-card__body { padding: var(--space-4) var(--space-5); }
.wish-card__title { font-size: 1rem; margin-bottom: 0.375rem; }
.wish-card__foot { display: flex; align-items: center; justify-content: space-between; }
.wish-card__price { font-size: 0.75rem; color: var(--muted-fg); }
.wish-card__action { font-size: 0.75rem; font-weight: 600; color: var(--gold); }

/* --------------------------------------------------------------------------
   14. Testimonial / story
   -------------------------------------------------------------------------- */
.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--charcoal);
}

.quote--light { color: var(--white); }

.quote-mark {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: var(--space-4);
}

.attribution { font-size: 0.875rem; font-weight: 600; color: var(--gold); }
.attribution__sub { font-size: 0.75rem; color: var(--muted-fg); margin-top: 0.125rem; }
.attribution__sub--light { color: rgba(255, 255, 255, 0.4); }

/* Member stories */
.stories-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-8);
}

.story-card {
  min-width: 0;
}

.story-card--primary,
.story-card--wide {
  display: grid;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-6);
  background: var(--eucalyptus);
  color: var(--white);
}

.story-card--secondary {
  padding: var(--space-6);
  background: var(--stone);
}

.story-card__portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.story-card__avatar {
  width: 4rem;
  height: 4rem;
  margin-bottom: var(--space-5);
  object-fit: cover;
}

.story-card__wide-media {
  align-self: stretch;
  min-height: 16rem;
  overflow: hidden;
}

.story-card__wide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card .quote-mark {
  margin-bottom: var(--space-3);
}

.story-card .quote {
  margin: 0 0 var(--space-6);
  font-size: 1rem;
}

.story-card--primary .quote,
.story-card--wide .quote {
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
}

.story-card--secondary .attribution {
  color: var(--eucalyptus);
}

@media (min-width: 48em) {
  .story-card--primary {
    grid-template-columns: minmax(9rem, 11rem) minmax(0, 1fr);
    padding: var(--space-10);
  }

  .story-card--primary .story-card__portrait {
    height: 18rem;
    aspect-ratio: auto;
  }

  .story-card--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
  }

  .story-card--wide .story-card__content {
    padding: var(--space-10);
  }
}

@media (min-width: 64em) {
  .stories-grid {
    grid-template-columns: minmax(0, 2.08fr) minmax(18rem, 1fr);
  }

  .story-card--primary,
  .story-card--secondary {
    height: 23.75rem;
  }

  .story-card--secondary {
    padding: var(--space-8);
  }

  .story-card--wide {
    grid-column: 1 / -1;
    height: 20.25rem;
    min-height: 0;
  }

  .story-card__wide-media {
    min-height: 0;
  }
}

/* --------------------------------------------------------------------------
   15. Forms (login)
   -------------------------------------------------------------------------- */
.field { margin-bottom: var(--space-4); }

.field label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-fg);
  margin-bottom: var(--space-2);
}

.field--dark label { color: rgba(255, 255, 255, 0.5); }

.field input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--charcoal);
  background: var(--ivory);
  border: 1px solid var(--line);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s ease;
}

.field--dark input {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.field input:focus { border-color: var(--gold); }
.field input::placeholder { color: rgba(41, 42, 40, 0.4); }
.field--dark input::placeholder { color: rgba(255, 255, 255, 0.25); }

.login-section {
  min-height: 100vh;
  padding: 7rem 0 var(--space-16);
  background: var(--midnight);
}

.login-layout {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.login-visual {
  position: relative;
  min-height: 20rem;
  overflow: hidden;
}

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

.login-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(24, 44, 41, 0.92), rgba(24, 44, 41, 0.08) 65%);
}

.login-visual__caption {
  position: absolute;
  z-index: 1;
  right: var(--space-6);
  bottom: var(--space-6);
  left: var(--space-6);
  max-width: 30rem;
  color: rgba(255, 255, 255, 0.82);
}

.login-visual__caption p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
}

.login-panel {
  display: flex;
  align-items: center;
  padding: var(--space-10) var(--space-6);
}

.login-panel__inner {
  width: 100%;
  max-width: 30rem;
  margin: 0 auto;
}

.login-heading {
  margin-bottom: var(--space-8);
}

.login-heading h1 {
  margin-bottom: var(--space-3);
  color: var(--white);
  font-size: clamp(1.875rem, 3vw, 2.45rem);
}

.login-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.login-form {
  padding: var(--space-8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.login-submit {
  width: 100%;
  margin-top: var(--space-2);
}

.login-help,
.login-join {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.68);
}

.login-help { margin-top: var(--space-4); }
.login-join { margin: var(--space-3) 0 0; }
.login-join a { color: var(--gold); font-weight: 600; }

.login-benefits {
  margin-top: var(--space-8);
  color: rgba(255, 255, 255, 0.62);
}

.login-benefits p { margin: 0; }

.login-support {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.login-support h2 {
  margin-bottom: var(--space-3);
  color: var(--white);
  font-size: 1.2rem;
}

.login-support p {
  margin-bottom: var(--space-3);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.65;
}

.login-support__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
}

.login-support__links a {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
}

@media (min-width: 64em) {
  .login-section {
    display: flex;
    align-items: center;
    padding-top: 8rem;
  }

  .login-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(26rem, 0.92fr);
    min-height: 48rem;
  }

  .login-visual {
    min-height: 48rem;
  }

  .login-panel {
    padding: var(--space-12);
  }
}

.seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
}

.seg button {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: var(--radius);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease;
}

.seg button:hover { border-color: rgba(255, 255, 255, 0.4); }
.seg button.is-active { background: var(--gold); color: var(--midnight); border-color: var(--gold); }

.tabs {
  display: flex;
  gap: var(--space-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-8);
}

.tabs button {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  background: none;
  border: 0;
  padding: 0 0 0.75rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.tabs button:hover { color: rgba(255, 255, 255, 0.6); }
.tabs button.is-active { color: var(--gold); border-color: var(--gold); }

.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

/* --------------------------------------------------------------------------
   16. Prose (legal / long-form content)
   -------------------------------------------------------------------------- */
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--midnight);
  margin: 2.5rem 0 1rem;
}

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

.prose p {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--charcoal);
  margin: 0 0 1rem;
}

.prose a { color: var(--eucalyptus); }

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.footer {
  background: var(--midnight);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__grid {
  display: grid;
  gap: var(--space-10);
  padding: var(--space-16) 0;
}

@media (min-width: 64em) {
  .footer__grid { grid-template-columns: 1.5fr repeat(4, 1fr); gap: var(--space-8); }
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-4);
  display: inline-block;
}

.footer__desc {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: var(--space-6);
}

.footer__domain {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-4);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s ease;
}

.footer__links a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

@media (min-width: 64em) {
  .footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
}

/* --------------------------------------------------------------------------
   17. Utilities
   -------------------------------------------------------------------------- */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }

.maxw-md { max-width: 30rem; }
.maxw-lg { max-width: 36rem; }
.maxw-xl { max-width: 42rem; }

.hide-mobile { display: none; }
@media (min-width: 64em) { .hide-mobile { display: block; } }

.hide-desktop { display: block; }
@media (min-width: 64em) { .hide-desktop { display: none; } }

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

/* Inline gold text */
.gold { color: var(--gold); }

/* Section number watermark */
.num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--space-5);
}

/* --------------------------------------------------------------------------
   18. Editorial articles and practical guide modules
   -------------------------------------------------------------------------- */
.article-hero {
  min-height: min(78svh, 52rem);
}

.article-hero .hero__media img {
  object-position: center;
}

.article-shell {
  max-width: 76rem;
}

.article-intro,
.article-content {
  max-width: 52rem;
  margin-inline: auto;
}

.article-intro {
  margin-bottom: clamp(3rem, 7vw, 5.5rem);
}

.article-summary {
  margin-top: 2.5rem;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  background: var(--stone);
  border-top: 3px solid var(--gold);
}

.article-summary .grid {
  margin-top: 1.5rem;
}

.article-summary h3,
.article-summary p {
  margin-bottom: 0.4rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  margin-top: var(--space-5);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  line-height: 1.5;
}

.article-meta a {
  color: var(--sand);
  font-weight: 600;
}

.article-content > h2 {
  margin-top: clamp(3rem, 7vw, 5rem);
  margin-bottom: 1rem;
}

.article-example {
  margin: 2rem 0;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--cream);
  border-left: 3px solid var(--gold);
}

.article-example p:last-child,
.article-checklist p:last-child {
  margin-bottom: 0;
}

.article-example--dark {
  color: var(--white);
  background: var(--eucalyptus);
  border-left-color: var(--gold);
}

.article-example--dark p,
.article-example--dark .check-list__icon {
  color: rgba(255, 255, 255, 0.86);
}

.article-cards {
  margin: 2rem 0;
}

.article-checklist {
  margin: 1.75rem 0 2rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--stone);
}

.article-checklist .check-list__icon,
.article-example .check-list__icon {
  flex: 0 0 1.5rem;
}

.article-checklist .check-list__icon svg,
.article-example .check-list__icon svg {
  width: 1rem;
  height: 1rem;
}

.blog-article-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.blog-article-card {
  display: grid;
  background: var(--white);
  border: 1px solid rgba(20, 54, 47, 0.1);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.5rem 3.5rem rgba(20, 54, 47, 0.12);
}

.blog-article-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--mist);
}

.blog-article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-article-card:hover .blog-article-card__media img {
  transform: scale(1.025);
}

.blog-article-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.blog-article-card__body h2 {
  margin: 0.75rem 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.blog-article-card__body .link-arrow {
  margin-top: auto;
  padding-top: 1rem;
}

.coming-note {
  max-width: 52rem;
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  padding: clamp(1.75rem, 5vw, 3rem);
  text-align: center;
  background: var(--stone);
  border-top: 1px solid rgba(181, 145, 86, 0.5);
}

.planner-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.planner-card {
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--white);
  border: 1px solid rgba(20, 54, 47, 0.1);
}

.planner-card h3 {
  margin: 0.65rem 0 0.65rem;
}

.place-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.place-tag {
  display: inline-flex;
  padding: 0.55rem 0.85rem;
  color: var(--eucalyptus);
  background: rgba(181, 145, 86, 0.12);
  border: 1px solid rgba(181, 145, 86, 0.3);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Homepage app showcase */
.app-showcase {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background:
    radial-gradient(circle at 82% 42%, rgba(184, 155, 104, 0.16), transparent 30rem),
    linear-gradient(135deg, var(--eucalyptus), var(--midnight));
}

.app-showcase::before {
  content: "";
  position: absolute;
  top: -12rem;
  right: -8rem;
  width: 32rem;
  aspect-ratio: 1;
  border: 1px solid rgba(184, 155, 104, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.app-showcase__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.app-showcase__content {
  min-width: 0;
}

.app-showcase h2 {
  max-width: 18ch;
  color: var(--white);
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.1;
}

.app-showcase h2 em {
  color: var(--gold);
  font-style: normal;
}

.app-showcase .lead {
  max-width: 34rem;
  color: rgba(248, 245, 239, 0.76);
}

.app-showcase__benefits {
  display: grid;
  gap: 0.85rem;
  margin: var(--space-8) 0;
  padding: 0;
  list-style: none;
}

.app-showcase__benefits li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.app-showcase__benefits svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  color: var(--gold);
}

.app-showcase__stores {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.app-showcase__stores a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.app-showcase__stores a:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.app-showcase__stores img {
  width: auto;
  height: 43px;
}

.app-showcase__stores .store-badge--play {
  height: 64px;
  margin: -10.5px -10px;
}

.app-showcase__legal {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: rgba(248, 245, 239, 0.58);
  font-size: 0.75rem;
  line-height: 1.5;
}

.app-showcase__visual {
  position: relative;
  min-width: 0;
}

.app-showcase__visual::before {
  content: "";
  position: absolute;
  inset: 18% 12% 8%;
  border-radius: 50%;
  background: rgba(184, 155, 104, 0.14);
  filter: blur(3rem);
  pointer-events: none;
}

.app-showcase__visual img {
  position: relative;
  width: min(100%, 48rem);
  margin-inline: auto;
  filter: drop-shadow(0 2rem 2.5rem rgba(0, 0, 0, 0.28));
}

@media (min-width: 64em) {
  .app-showcase__grid {
    grid-template-columns: minmax(0, 1fr) minmax(28rem, 1fr);
  }

  .app-showcase__visual {
    margin-right: -3rem;
  }
}

@media (max-width: 39.99em) {
  .app-showcase {
    padding-bottom: var(--space-12);
  }

  .app-showcase__stores {
    gap: 0.5rem;
  }

  .app-showcase__visual {
    margin: 0 -1rem -1rem;
  }
}

@media (min-width: 48em) {
  .blog-article-grid,
  .planner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 64em) {
  .article-hero .hero__content {
    max-width: 46rem;
  }

  .article-hero .hero__media img {
    object-position: 58% center;
  }

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

/* --------------------------------------------------------------------------
   19. Accessibility
   -------------------------------------------------------------------------- */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

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

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--gold);
  color: var(--midnight);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
}

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