/* ==========================================================================
   Sugar Daddy Dallas — Style
   Modern Texas Luxury × Executive Dating × Dallas Nightlife
   ========================================================================== */

/* Fonts are loaded via <link> in the document head (non-blocking, with
   system-font fallbacks defined in --font-serif / --font-sans below). */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Palette */
  --espresso:    #30241F;
  --gold:        #B7925A;
  --ivory:       #F8F4ED;
  --sandstone:   #E9DED0;
  --navy:        #18212B;
  --terracotta:  #B96F5C;
  --soft-black:  #24211F;

  /* Derived */
  --gold-dim:        rgba(183, 146, 90, 0.6);
  --gold-faint:      rgba(183, 146, 90, 0.18);
  --espresso-60:     rgba(48, 36, 31, 0.6);
  --espresso-65:     rgba(48, 36, 31, 0.65);
  --ivory-60:        rgba(248, 244, 237, 0.6);
  --ivory-45:        rgba(248, 244, 237, 0.45);
  --line-espresso:   rgba(48, 36, 31, 0.1);
  --line-gold:       rgba(183, 146, 90, 0.3);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 80rem;               /* max-w-7xl */
  --gutter: 1.5rem;                 /* px-6 */
  --radius: 0.25rem;

  --header-h: 4.75rem;
}

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

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

html, body { overflow-x: hidden; }

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--espresso);
  margin: 0 0 0.5em;
}

p { margin: 0 0 1rem; }

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

ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

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

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

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

/* --------------------------------------------------------------------------
   3. Layout utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: 5.5rem; }
.section--tight { padding-block: 4rem; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--espresso);
  color: var(--ivory);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

.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;
}

/* --------------------------------------------------------------------------
   4. Typography helpers
   -------------------------------------------------------------------------- */
.gold-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.gold-label--center { text-align: center; }

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
  color: var(--espresso);
  margin: 0 0 0.25em;
}
.section-heading--light { color: var(--ivory); }

.lede {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--espresso-60);
  max-width: 38rem;
}
.lede--light { color: var(--ivory-60); }
.lede--center { margin-inline: auto; }

.gold-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0 1.5rem;
}
.gold-divider__line { flex: 1; height: 1px; background: var(--gold); opacity: 0.3; }
.gold-divider__diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex: none; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 0;
  transition: opacity 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  white-space: nowrap;
}
.btn:hover { opacity: 0.9; }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.btn--primary { background: var(--espresso); color: var(--ivory); }
.btn--primary:hover { box-shadow: 0 12px 30px rgba(48, 36, 31, 0.25); }

.btn--gold { background: var(--gold); color: #fff; }
.btn--gold:hover { box-shadow: 0 12px 30px rgba(183, 146, 90, 0.3); }

.btn--outline { background: transparent; border-color: var(--espresso); color: var(--espresso); }
.btn--outline:hover { background: var(--espresso); color: var(--ivory); opacity: 1; }

.btn--outline-light { background: transparent; border-color: rgba(248, 244, 237, 0.5); color: var(--ivory); }
.btn--outline-light:hover { border-color: var(--ivory); opacity: 1; }

.btn--lg { padding: 1rem 2.25rem; }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.3s ease;
}
.btn-arrow:hover { opacity: 0.6; }
.btn-arrow svg { transition: transform 0.3s ease; }
.btn-arrow:hover svg { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   6. Header / navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color 0.5s ease, border-color 0.5s ease;
  background: transparent;
}
.site-header.is-solid {
  background: rgba(248, 244, 237, 0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-espresso);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: var(--header-h);
}

.nav__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.nav__brand-top {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav__brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--espresso);
  transition: color 0.5s ease;
}

/* Brand color variants — light text over transparent hero */
.site-header:not(.is-solid) .nav__brand-name { color: var(--ivory); }

.nav__links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.nav__link {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--espresso);
  transition: opacity 0.3s ease, color 0.5s ease;
}
.nav__link:hover { opacity: 0.6; }
.site-header:not(.is-solid) .nav__link { color: var(--ivory); }

.nav__actions {
  display: none;
  align-items: center;
  gap: 1rem;
}
.nav__signin {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--espresso);
  transition: opacity 0.3s ease, color 0.5s ease;
}
.nav__signin:hover { opacity: 0.6; }
.site-header:not(.is-solid) .nav__signin { color: var(--ivory); }
.nav__join { padding: 0.625rem 1.5rem; }

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--espresso);
  transition: color 0.5s ease;
}
.site-header:not(.is-solid) .nav__toggle { color: var(--ivory); }
.nav__toggle svg { display: block; }
.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }
.nav__toggle[aria-expanded="true"] .icon-menu { display: none; }

/* Mobile menu */
.nav__mobile {
  display: none;
  background: var(--ivory);
  border-top: 1px solid var(--line-espresso);
  max-height: calc(100vh - var(--header-h));
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
}
.nav__mobile.is-open { display: block; }
.nav__mobile-inner {
  padding: 1.5rem var(--gutter) 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.nav__mobile-link {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--espresso);
  text-align: left;
}
.nav__mobile-link:hover { opacity: 0.6; }
.nav__mobile-divider { border-top: 1px solid var(--line-espresso); padding-top: 1.25rem; }

/* --------------------------------------------------------------------------
   7. Hero (homepage)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
}
.hero__media { position: absolute; inset: 0; }
.hero__img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, var(--navy) 0%, rgba(24, 33, 43, 0.6) 40%, rgba(24, 33, 43, 0.2) 100%);
}
.hero__overlay--side {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(24, 33, 43, 0.5) 0%, transparent 60%);
}
.hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 8rem var(--gutter) 9rem;
}
.hero__inner { max-width: 42rem; }
.hero__title {
  font-size: clamp(2.75rem, 6.5vw, 4.5rem);
  color: var(--ivory);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero__title--long {
  max-width: 44rem;
  font-size: clamp(2.05rem, 5.5vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.hero__title--long > span,
.hero__title--long > em { display: block; }
.hero__title-intro,
.hero__title-outro {
  font-size: 0.82em;
  letter-spacing: -0.015em;
}
.hero__title-intro { margin-bottom: 0.18em; }
.hero__title-outro { margin-top: 0.16em; }
.hero__title em {
  font-style: normal;
  color: var(--gold);
}
.hero__sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--ivory-60);
  max-width: 32rem;
  margin-bottom: 2.5rem;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-45);
}
.hero__trust svg { flex: none; }

@media (max-width: 47.999em) {
  .hero__img { object-position: 72% center; }
}

/* Stats strip */
.hero__stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 20;
  background: rgba(24, 33, 43, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: none;
}
.hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hero__stat {
  padding: 1.25rem 1rem;
  text-align: center;
  border-left: 1px solid rgba(248, 244, 237, 0.08);
}
.hero__stat:first-child { border-left: none; }
.hero__stat-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.hero__stat-label {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-45);
}

/* --------------------------------------------------------------------------
   8. Role sections (homepage split panels)
   -------------------------------------------------------------------------- */
.roles {
  display: grid;
  grid-template-columns: 1fr;
}
.role {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px;
}
.role--dark { background: var(--espresso); }
.role--sand { background: var(--sandstone); }
.role__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.role--dark .role__img { opacity: 0.3; }
.role--sand .role__img { opacity: 0.28; }
.role__overlay {
  position: absolute; inset: 0;
}
.role--dark .role__overlay { background: linear-gradient(to top, var(--espresso) 20%, transparent 70%); }
.role--sand .role__overlay { background: linear-gradient(to top, var(--sandstone) 20%, transparent 70%); }
.role__content {
  position: relative;
  z-index: 10;
  padding: 2.5rem 1.75rem 3rem;
}
.role__eyebrow { color: var(--terracotta); }
.role__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--espresso);
  margin-bottom: 1rem;
}
.role--dark .role__title { color: var(--ivory); }
.role__text {
  font-size: 1rem;
  line-height: 1.75;
  max-width: 24rem;
  margin-bottom: 2rem;
}
.role--dark .role__text { color: var(--ivory-60); }
.role--sand .role__text { color: var(--espresso-60); }

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 2.5rem;
}
.check-list__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.check-list__mark {
  width: 16px; height: 16px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
}
.check-list__mark svg { color: #fff; }
.role--sand .check-list__mark { background: var(--terracotta); }
.role--dark .check-list__item { color: var(--ivory-60); }
.role--sand .check-list__item { color: var(--espresso-60); }

/* --------------------------------------------------------------------------
   9. Featured members / profile cards
   -------------------------------------------------------------------------- */
.members-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.members-head__end { display: flex; }

.member-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.125rem;
}
.member {
  background: var(--ivory);
  border: 1px solid rgba(48, 36, 31, 0.08);
  overflow: hidden;
}
.member__media {
  position: relative;
  overflow: hidden;
  background: var(--sandstone);
  min-height: 200px;
  aspect-ratio: 4 / 5;
}
.member__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s ease;
}
.member:hover .member__img { transform: scale(1.05); }
.member__shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(36, 33, 31, 0.5) 0%, transparent 50%);
}
.member__badges {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.badge--online {
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: #6EE7B7;
}
.badge--online::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #34d399; }
.badge--verified {
  background: rgba(183, 146, 90, 0.85);
  color: #fff;
}
.badge--verified svg { color: #fff; }
.member__role {
  position: absolute;
  bottom: 0.75rem; left: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.member__heart {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.member:hover .member__heart { opacity: 1; }
.member__heart svg { color: var(--gold); }

.member__body { padding: 1.25rem; }
.member__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 0.25rem;
}
.member__loc {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: var(--espresso-60);
  margin-bottom: 0.75rem;
}
.member__loc svg { color: var(--gold); }
.member__bio {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--espresso-60);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   10. Why Dallas (navy split)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--navy);
}
.split__content {
  padding: 3.5rem var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split__body { color: var(--ivory-60); font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; }

.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem 2rem; margin-bottom: 2.5rem; }
.feature { color: var(--ivory); }
.feature__icon { font-size: 1.75rem; line-height: 1; margin-bottom: 0.5rem; }
.feature__title {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.feature__text { font-size: 0.75rem; line-height: 1.6; color: var(--ivory-45); }

.split__collage {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  min-height: 600px;
}
.split__collage img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.collage__col { display: flex; flex-direction: column; gap: 0.25rem; }
.collage__col > * { flex: 1; overflow: hidden; background: var(--espresso); }

/* --------------------------------------------------------------------------
   11. How it works (steps)
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: 1fr; }
.step {
  position: relative;
  padding: 2rem 0.5rem;
  border-top: 1px solid var(--line-espresso);
}
.step:first-child { border-top: none; }
.step__num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-faint);
  margin-bottom: 1.25rem;
}
.step__bar { width: 2rem; height: 2px; background: var(--gold); margin-bottom: 1.25rem; }
.step__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--espresso);
  margin-bottom: 0.75rem;
}
.step__text { font-size: 0.875rem; line-height: 1.6; color: var(--espresso-60); }

/* --------------------------------------------------------------------------
   12. Metro / location cards
   -------------------------------------------------------------------------- */
.metro-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.metro {
  position: relative;
  overflow: hidden;
  background: var(--espresso);
  display: block;
}
.metro__media { position: relative; overflow: hidden; height: 300px; }
.metro__img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; transition: transform 0.7s ease; }
.metro:hover .metro__img { transform: scale(1.05); }
.metro__shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--espresso) 0%, transparent 60%);
}
.metro__body { padding: 2rem; }
.metro__stat-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.metro__stat-row::before { content: ""; flex: 1; height: 1px; background: var(--gold); opacity: 0.4; }
.metro__stat {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.metro__city {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 0.25rem;
}
.metro__tagline {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.metro__desc { font-size: 0.875rem; line-height: 1.6; color: var(--ivory-60); margin-bottom: 1.5rem; }

/* --------------------------------------------------------------------------
   13. Guide preview (editorial list)
   -------------------------------------------------------------------------- */
.guide-list { display: flex; flex-direction: column; }
.guide-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line-espresso);
}
.guide-item:last-child { border-bottom: none; }
.guide-item__num {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--gold);
  min-width: 24px;
  margin-top: 0.25rem;
  font-variant-numeric: tabular-nums;
}
.guide-item__title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--espresso);
  margin-bottom: 0.25rem;
  transition: opacity 0.3s ease;
}
.guide-item:hover .guide-item__title { opacity: 0.7; }
.guide-item__vibe { font-size: 0.875rem; line-height: 1.6; color: var(--espresso-60); }
.guide-item__arrow {
  margin-left: auto;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
  flex: none;
  margin-top: 0.25rem;
}
.guide-item:hover .guide-item__arrow { opacity: 1; }

/* --------------------------------------------------------------------------
   14. Date inspiration (masonry)
   -------------------------------------------------------------------------- */
.date-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.date-card {
  position: relative;
  overflow: hidden;
  background: var(--espresso);
  min-height: 230px;
  display: block;
}
.date-card--feature { min-height: 420px; }
.date-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: transform 0.7s ease;
}
.date-card:hover .date-card__img { transform: scale(1.05); }
.date-card__shade {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(48, 36, 31, 0.8) 0%, transparent 60%);
}
.date-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}
.date-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}
.date-card__desc { font-size: 0.75rem; line-height: 1.6; color: var(--ivory-60); }

/* --------------------------------------------------------------------------
   15. Wishlist
   -------------------------------------------------------------------------- */
.wishlist { background: var(--navy); }
.wishlist__panel {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(183, 146, 90, 0.2);
}
.wishlist__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.wishlist__head-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.wishlist__head-title { font-family: var(--font-serif); font-size: 1.25rem; color: var(--ivory); }
.wishlist__emoji { font-size: 1.5rem; }
.wishlist__items { display: flex; flex-direction: column; gap: 0.5rem; }
.wishlist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(183, 146, 90, 0.08);
  transition: border-color 0.3s ease;
}
.wishlist-item.is-added { border-color: rgba(183, 146, 90, 0.4); }
.wishlist-item__main { display: flex; align-items: center; gap: 0.75rem; }
.wishlist-item__icon { font-size: 1.125rem; }
.wishlist-item__label { font-size: 0.875rem; color: var(--ivory); }
.wishlist-item__cat { font-size: 0.75rem; color: var(--gold-dim); }
.wishlist-item__toggle {
  width: 24px; height: 24px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(183, 146, 90, 0.4);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.wishlist-item__toggle svg { color: #fff; opacity: 0; }
.wishlist-item.is-added .wishlist-item__toggle { background: var(--gold); border-color: var(--gold); }
.wishlist-item.is-added .wishlist-item__toggle svg { opacity: 1; }

/* --------------------------------------------------------------------------
   16. Safety cards
   -------------------------------------------------------------------------- */
.safety-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.safety-card {
  padding: 2rem;
  background: var(--ivory);
  border: 1px solid rgba(48, 36, 31, 0.08);
  text-align: left;
}
.safety-card__icon {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--espresso);
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.safety-card__title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--espresso);
  margin-bottom: 0.75rem;
}
.safety-card__text { font-size: 0.875rem; line-height: 1.6; color: var(--espresso-60); }

/* --------------------------------------------------------------------------
   17. Member stories / testimonials
   -------------------------------------------------------------------------- */
.stories { background: var(--espresso); }
.stories__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
.story {
  text-align: left;
  padding: 2rem;
  background: transparent;
  border: 1px solid rgba(183, 146, 90, 0.15);
  opacity: 0.5;
  transition: opacity 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  display: block;
  width: 100%;
}
.story.is-active {
  opacity: 1;
  background: rgba(183, 146, 90, 0.1);
  border-color: var(--gold);
}
.story:hover { opacity: 0.7; }
.story.is-active:hover { opacity: 1; }
.story__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}
.story__person { display: flex; align-items: center; gap: 0.75rem; }
.story__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--sandstone);
  flex: none;
}
.story__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.story__name { font-size: 0.875rem; font-weight: 600; color: var(--gold); }
.story__detail { font-size: 0.75rem; color: rgba(248, 244, 237, 0.4); }

.stories__dots { display: flex; justify-content: center; gap: 0.5rem; }
.stories__dot {
  width: 24px; height: 2px;
  background: rgba(183, 146, 90, 0.3);
  transition: background-color 0.3s ease;
}
.stories__dot.is-active { background: var(--gold); }

/* --------------------------------------------------------------------------
   18. FAQ accordion
   -------------------------------------------------------------------------- */
.faq { display: flex; flex-direction: column; }
.faq__item { border-top: 1px solid var(--line-espresso); }
.faq__item:first-child { border-top: none; }
.faq__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  text-align: left;
}
.faq__q-text {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--espresso);
}
.faq__icon {
  flex: none;
  margin-top: 0.25rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.faq__item.is-open .faq__icon { transform: rotate(180deg); }
.faq__a {
  display: none;
  padding-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--espresso-60);
  max-width: 42rem;
}
.faq__item.is-open .faq__a { display: block; }

/* --------------------------------------------------------------------------
   19. Final CTA
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  min-height: 70vh;
  min-height: 70svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
  text-align: center;
}
.cta-band__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.cta-band__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(24, 33, 43, 0.9) 0%, rgba(48, 36, 31, 0.7) 100%);
}
.cta-band__content { position: relative; z-index: 10; max-width: 42rem; padding: 5rem var(--gutter); }
.cta-band__title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.cta-band__text { color: var(--ivory-60); font-size: 1rem; line-height: 1.75; margin-bottom: 2.5rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.cta-band__fine {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: rgba(248, 244, 237, 0.3);
  margin-top: 2rem;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   20. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--espresso); color: var(--ivory); }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 2rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}
.site-footer__brand { grid-column: 1 / -1; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; margin-bottom: 1.5rem; }
.footer-brand__top {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-brand__name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--ivory);
}
.site-footer__tagline {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(248, 244, 237, 0.4);
  margin-bottom: 1.5rem;
  max-width: 20rem;
}
.social { display: flex; gap: 0.75rem; }
.social__link {
  width: 32px; height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(183, 146, 90, 0.3);
  color: var(--gold);
  transition: opacity 0.3s ease;
}
.social__link:hover { opacity: 0.6; }

.footer-col__title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col__list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col__link {
  font-size: 0.875rem;
  color: rgba(248, 244, 237, 0.5);
  transition: opacity 0.3s ease;
}
.footer-col__link:hover { opacity: 0.6; }

.site-footer__bottom {
  border-top: 1px solid rgba(183, 146, 90, 0.1);
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.site-footer__legal { font-size: 0.75rem; color: rgba(248, 244, 237, 0.25); }
.site-footer__cities { font-size: 0.75rem; color: rgba(248, 244, 237, 0.25); }

/* --------------------------------------------------------------------------
   21. Page hero (subpages)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 60vh;
  min-height: 60svh;
  overflow: hidden;
  background: var(--navy);
  padding-top: var(--header-h);
}
.page-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--navy) 0%, rgba(24, 33, 43, 0.4) 55%, rgba(24, 33, 43, 0.25) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-block: 4rem 4.5rem;
}
.page-hero__eyebrow { margin-bottom: 1rem; }
.page-hero__title {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--ivory);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 1rem;
  max-width: 40rem;
}
.page-hero__sub {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ivory-60);
  max-width: 40rem;
  margin-bottom: 0;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ivory-45);
}
.breadcrumb a { color: var(--gold); transition: opacity 0.3s ease; }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb__sep { color: var(--ivory-45); opacity: 0.6; }

/* --------------------------------------------------------------------------
   22. Content building blocks (subpages)
   -------------------------------------------------------------------------- */

/* Editorial split (image + text) */
.editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.editorial__media { position: relative; overflow: hidden; background: var(--sandstone); min-height: 240px; aspect-ratio: 4 / 3; }
.editorial__media--tall { min-height: 300px; aspect-ratio: 4 / 5; }
.editorial__img { width: 100%; height: 100%; object-fit: cover; }
.editorial__img--plano-intro { object-position: 85% center; }
.editorial__img--frisco-intro { object-position: 84% center; }
.editorial__caption {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--espresso-60);
  margin-top: 0.75rem;
}
.editorial__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--espresso);
  margin-bottom: 1rem;
}
.editorial__text { color: var(--espresso-60); font-size: 1rem; line-height: 1.75; }

/* Generic card grid */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.card-grid--2 { }
.card-grid--3 { }
.card {
  background: var(--ivory);
  border: 1px solid rgba(48, 36, 31, 0.08);
  padding: 2rem;
}
.card--dark { background: var(--espresso); border-color: transparent; }
.card__icon {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--espresso);
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.card--dark .card__icon { background: rgba(248, 244, 237, 0.08); }
.card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--espresso);
  margin-bottom: 0.75rem;
}
.card--dark .card__title { color: var(--ivory); }
.card__text { font-size: 0.875rem; line-height: 1.65; color: var(--espresso-60); }
.card--dark .card__text { color: var(--ivory-60); }

/* Location / area cards */
.area-card {
  background: var(--ivory);
  border: 1px solid rgba(48, 36, 31, 0.08);
  overflow: hidden;
}
.area-card__media { position: relative; overflow: hidden; min-height: 180px; aspect-ratio: 16 / 10; background: var(--sandstone); }
.area-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.area-card:hover .area-card__img { transform: scale(1.05); }
.area-card__tag {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  background: rgba(48, 36, 31, 0.85);
  color: var(--ivory);
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
}
.area-card__body { padding: 1.5rem; }
.area-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--espresso);
  margin-bottom: 0.5rem;
}
.area-card__text { font-size: 0.875rem; line-height: 1.65; color: var(--espresso-60); }

/* Tip list */
.tip {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line-espresso);
}
.tip:first-child { border-top: none; }
.tip__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-faint);
  flex: none;
  min-width: 3rem;
}
.tip__title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--espresso);
  margin-bottom: 0.5rem;
}
.tip__text { font-size: 0.875rem; line-height: 1.65; color: var(--espresso-60); }

/* Quote block */
.quote-block {
  background: var(--espresso);
  color: var(--ivory);
  padding: 3.5rem 2rem;
  text-align: center;
}
.quote-block__mark { font-family: var(--font-serif); font-size: 4rem; line-height: 0.5; color: var(--gold); display: block; margin-bottom: 1.5rem; }
.quote-block__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.5;
  color: var(--ivory);
  max-width: 44rem;
  margin: 0 auto 1.5rem;
}
.quote-block__attr { font-size: 0.875rem; color: var(--gold); }

/* Inline stat band */
.stat-band { background: var(--navy); color: var(--ivory); }
.stat-band__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
.stat-band__item { text-align: center; }
.stat-band__num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.stat-band__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-45);
}

/* Comparison list */
.compare { display: flex; flex-direction: column; gap: 0.75rem; }
.compare__row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--espresso-60);
  line-height: 1.6;
}
.compare__row svg { color: var(--gold); flex: none; margin-top: 0.25rem; }

/* Two-column content (text block) */
.prose { color: var(--espresso-60); font-size: 1rem; line-height: 1.8; }
.prose h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--espresso);
  margin: 2rem 0 0.75rem;
}
.prose p { margin-bottom: 1.25rem; }
.prose strong { color: var(--espresso); font-weight: 600; }

/* Long-form editorial pages */
.article-body { max-width: 52rem; margin-inline: auto; }
.article-body__lead { font-size: 1.18rem; line-height: 1.75; color: var(--espresso); margin-bottom: 2rem; }
.article-body h2 { font-family: var(--font-serif); font-size: clamp(1.75rem, 3vw, 2.35rem); line-height: 1.18; color: var(--espresso); margin: 3.5rem 0 1.25rem; }
.article-body h3 { font-family: var(--font-serif); font-size: 1.35rem; line-height: 1.3; color: var(--espresso); margin: 2rem 0 0.75rem; }
.article-body p { color: var(--espresso-60); font-size: 1rem; line-height: 1.82; margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { color: var(--espresso-60); line-height: 1.75; margin: 0 0 1.5rem 1.25rem; }
.article-body li { margin-bottom: 0.65rem; padding-left: 0.25rem; }
.article-body strong { color: var(--espresso); font-weight: 600; }
.article-body a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 0.18em; }
.article-note { border-left: 3px solid var(--gold); background: var(--sandstone); padding: 1.4rem 1.5rem; margin: 2rem 0; }
.article-note p:last-child { margin-bottom: 0; }

/* DFW comparison planner */
.planner-table-wrap { overflow-x: auto; border: 1px solid rgba(48, 36, 31, 0.14); background: var(--ivory); }
.planner-table { width: 100%; min-width: 68rem; border-collapse: collapse; color: var(--text); font-size: 0.9rem; line-height: 1.55; }
.planner-table th,
.planner-table td { padding: 1rem 1.1rem; text-align: left; vertical-align: top; border-right: 1px solid rgba(48, 36, 31, 0.1); border-bottom: 1px solid rgba(48, 36, 31, 0.1); }
.planner-table thead th { background: var(--navy); color: var(--ivory); font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; }
.planner-table tbody th { width: 14rem; color: var(--espresso); font-family: var(--font-serif); font-size: 1.05rem; }
.planner-table tbody th span { color: var(--text-muted); font-family: var(--font-sans); font-size: 0.78rem; font-weight: 400; }
.planner-table tr:last-child th,
.planner-table tr:last-child td { border-bottom: 0; }
.planner-table th:last-child,
.planner-table td:last-child { border-right: 0; }
.planner-source { margin-top: 1rem; color: var(--text-muted); font-size: 0.78rem; line-height: 1.6; }
.planner-source a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 0.15em; }

/* Blog cards */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.blog-grid.blog-grid--single { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; }
.blog-card {
  background: var(--ivory);
  border: 1px solid rgba(48, 36, 31, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.blog-card__media { overflow: hidden; min-height: 180px; aspect-ratio: 16 / 10; background: var(--sandstone); }
.blog-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.blog-card:hover .blog-card__img { transform: scale(1.05); }
.blog-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card__meta { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.blog-card__title { font-family: var(--font-serif); font-size: 1.25rem; color: var(--espresso); margin-bottom: 0.75rem; }
.blog-card__text { font-size: 0.875rem; line-height: 1.65; color: var(--espresso-60); margin-bottom: 1.25rem; }
.blog-card__link { margin-top: auto; }

/* Value / feature band (light) */
.band { background: var(--sandstone); }
.band--ivory { background: var(--ivory); }
.band--navy { background: var(--navy); }
.band--espresso { background: var(--espresso); }

/* Head section with label + heading + optional action */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.section-head--center { align-items: center; text-align: center; }
.section-head--center .lede { margin-inline: auto; }

/* --------------------------------------------------------------------------
   23. Forms (login / join)
   -------------------------------------------------------------------------- */
.form-field { margin-bottom: 1rem; }
.form-field__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(48, 36, 31, 0.5);
  margin-bottom: 0.5rem;
}
.form-field__input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  background: var(--sandstone);
  border: 1px solid rgba(48, 36, 31, 0.1);
  color: var(--espresso);
  transition: border-color 0.3s ease;
}
.form-field__input:focus { outline: none; border-color: var(--gold); }
.form-field__input::placeholder { color: rgba(48, 36, 31, 0.4); }

/* --------------------------------------------------------------------------
   24. Legal / policy pages
   -------------------------------------------------------------------------- */
.legal { max-width: 46rem; }
.legal h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--espresso);
  margin: 2.5rem 0 1rem;
}
.legal h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--espresso);
  margin: 2rem 0 0.75rem;
}
.legal p { color: var(--espresso-60); line-height: 1.8; margin-bottom: 1.25rem; }
.legal ul { margin: 0 0 1.5rem 1.25rem; }
.legal ul li { list-style: disc; color: var(--espresso-60); line-height: 1.7; margin-bottom: 0.5rem; }
.legal .last-updated {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--espresso-60);
  margin-bottom: 2rem;
}

/* --------------------------------------------------------------------------
   24b. Auth / login layout
   -------------------------------------------------------------------------- */
.auth-layout {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  background: var(--ivory);
  padding-top: var(--header-h);
}
.auth-side {
  display: none;
  flex: 1;
  position: relative;
  overflow: hidden;
  background: var(--espresso);
}
.auth-side__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.auth-side__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(48, 36, 31, 0.7) 0%, transparent 100%);
}
.auth-side__content { position: absolute; bottom: 4rem; left: 3rem; }
.auth-side__brand {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.auth-side__title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.3;
  margin: 0;
}

.auth-form {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem var(--gutter);
}
.auth-form__inner { width: 100%; max-width: 24rem; }
.auth-form__brand { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; margin-bottom: 3rem; }
.auth-form__brand-top {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.auth-form__brand-name { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 600; color: var(--espresso); }

.auth-tabs {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(48, 36, 31, 0.1);
}
.auth-tab {
  padding-bottom: 0.75rem;
  margin-bottom: -1px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(48, 36, 31, 0.35);
  border-bottom: 2px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.auth-tab.is-active { color: var(--espresso); border-bottom-color: var(--gold); }
.auth-tab:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.auth-panel { display: flex; flex-direction: column; gap: 1rem; }
.auth-panel[hidden] { display: none; }
.auth-actions { margin-top: 0.5rem; }
.auth-actions .btn { width: 100%; }
.auth-note {
  font-size: 0.75rem;
  line-height: 1.6;
  text-align: center;
  color: rgba(48, 36, 31, 0.35);
}
.auth-forgot {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-align: center;
  color: rgba(48, 36, 31, 0.4);
  transition: opacity 0.3s ease;
  margin-top: 0.25rem;
}
.auth-forgot:hover { opacity: 0.6; }

/* --------------------------------------------------------------------------
   25. Responsive — tablet (≥ 768px)
   -------------------------------------------------------------------------- */
@media (min-width: 48em) {
  .section { padding-block: 7rem; }
  .member-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .safety-grid { grid-template-columns: repeat(3, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .metro-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .step { border-top: none; border-left: 1px solid var(--line-espresso); padding: 0 2rem; }
  .step:first-child { border-left: none; padding-left: 0; }
  .date-grid { grid-template-columns: repeat(2, 1fr); }
  .date-card--feature { grid-column: span 2; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .roles { grid-template-columns: 1fr 1fr; }
  .role__content { padding: 2.5rem 3rem 3.5rem; }
  .hero__stats { display: block; }
  .split { grid-template-columns: 1fr 1fr; }
  .split__content { padding: 4rem 3.5rem; }
  .split__collage { display: grid; }
  .editorial { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .editorial--reverse .editorial__media { order: 2; }
  .section-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .section-head--center { flex-direction: column; align-items: center; }
  .members-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .stat-band__grid { grid-template-columns: repeat(4, 1fr); }
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; }
  .site-footer__brand { grid-column: auto; }
  .site-footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* --------------------------------------------------------------------------
   26. Responsive — desktop (≥ 1024px)
   -------------------------------------------------------------------------- */
@media (min-width: 64em) {
  .nav__links { display: flex; }
  .nav__actions { display: flex; }
  .nav__toggle { display: none; }
  .role__content {
    padding-left: max(3rem, calc((100vw - var(--container)) / 2 + var(--gutter)));
  }
  .split__content {
    padding-left: max(3.5rem, calc((100vw - var(--container)) / 2 + var(--gutter)));
  }
  .member-grid { grid-template-columns: repeat(6, 1fr); gap: 0.75rem; }
  .date-grid { grid-template-columns: repeat(4, 1fr); }
  .date-card--feature { grid-column: span 2; grid-row: span 2; min-height: 500px; }
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
  .stories__grid { grid-template-columns: repeat(3, 1fr); }
  .page-hero { min-height: 68vh; }
  .auth-side { display: block; }
}

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