:root {
  --navy-950: #132235;
  --navy-900: #19314a;
  --navy-800: #224565;
  --slate-700: #4d6277;
  --slate-500: #7a8da0;
  --slate-300: #c6d1db;
  --slate-100: #eef3f7;
  --cream-100: #fbf7ef;
  --cream-200: #f3ead8;
  --gold-400: #c8a96a;
  --gold-300: #d9bd83;
  --coral-500: #c85d52;
  --sage-400: #71927d;
  --white: #ffffff;
  --ink: #243444;
  --shadow-lg: 0 28px 70px rgba(19, 34, 53, 0.16);
  --shadow-md: 0 18px 44px rgba(25, 49, 74, 0.1);
  --shadow-sm: 0 12px 28px rgba(25, 49, 74, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(217, 189, 131, 0.18), transparent 22%),
    linear-gradient(180deg, #fffdf9 0%, #f7f3ea 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--navy-800);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--coral-500);
}

summary {
  cursor: pointer;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 239, 0.92);
  border-bottom: 1px solid rgba(25, 49, 74, 0.08);
}

.header-shell {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 88px;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--navy-950);
  flex: 0 0 auto;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.brand-copy span {
  color: var(--slate-700);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.desktop-nav {
  margin-left: auto;
}

.nav-list,
.footer-list,
.icon-list,
.stat-list,
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-list > li > a,
.nav-list > li > details > summary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  color: var(--navy-900);
  font-weight: 700;
  font-size: 0.98rem;
}

.nav-list > li > a:hover,
.nav-list > li > details > summary:hover,
.nav-list > li > a.is-active,
.nav-list > li > details[open] > summary {
  background: rgba(25, 49, 74, 0.08);
  color: var(--navy-950);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary::after {
  content: "+";
  font-size: 1rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 230px;
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(25, 49, 74, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.dropdown-menu a {
  display: block;
  padding: 0.8rem 0.95rem;
  border-radius: 14px;
  font-weight: 600;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: var(--slate-100);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.button,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.9rem 1.45rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button-link:hover,
.button:focus-visible,
.button-link:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--coral-500), #db7b64);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(200, 93, 82, 0.26);
}

.button-secondary {
  background: var(--navy-950);
  color: var(--white);
}

.button-muted {
  background: rgba(25, 49, 74, 0.07);
  color: var(--navy-950);
}

.mobile-nav {
  display: none;
  margin-left: auto;
}

.mobile-nav > summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(25, 49, 74, 0.12);
  border-radius: 999px;
  font-weight: 800;
  color: var(--navy-950);
  background: var(--white);
  font-size: 0;
  line-height: 1;
  flex: 0 0 auto;
}

.mobile-nav > summary::before {
  content: "\2261";
  font-size: 1.95rem;
  line-height: 1;
  letter-spacing: 0;
}

.mobile-panel {
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: calc(100% + 0.6rem);
  padding: 1rem;
  max-width: calc(100vw - 2rem);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(25, 49, 74, 0.08);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow-x: hidden;
}

.mobile-panel .nav-list {
  display: grid;
  gap: 0.35rem;
}

.mobile-panel .nav-list > li > a,
.mobile-panel .nav-list > li > details > summary {
  width: 100%;
  justify-content: space-between;
}

.mobile-panel .dropdown-menu {
  position: static;
  min-width: 0;
  margin-top: 0.4rem;
  box-shadow: none;
  border-radius: 16px;
}

.mobile-panel .header-actions {
  display: grid;
  margin-top: 0.8rem;
}

.content-card,
.feature-card,
.faq-card,
.sample-card,
.cta-panel,
.city-card,
.accent-panel,
.section-media,
.hero-copy,
.page-hero-copy,
.footer-col,
.footer-brand {
  min-width: 0;
}

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

.hero > .container,
.page-hero > .container {
  width: 100%;
}

.hero-shell,
.page-hero-shell {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 680px;
  padding: 3rem 1.5rem;
  overflow: hidden;
  border-radius: 0;
  isolation: isolate;
  box-shadow: none;
}

.page-hero-shell {
  min-height: 600px;
}

.hero-shell::before,
.page-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(19, 34, 53, 0.34) 0%, rgba(19, 34, 53, 0.6) 48%, rgba(19, 34, 53, 0.74) 100%);
}

.hero-copy,
.page-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 2rem 1rem;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.18;
  color: var(--navy-950);
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4vw, 4.4rem);
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
}

h3 {
  font-size: 1.2rem;
}

.lead,
.page-hero p,
.section-intro {
  font-size: 1.09rem;
  color: var(--slate-700);
}

.hero-copy .lead {
  font-size: 1.14rem;
}

.hero-copy h1,
.page-hero-copy h1,
.hero-copy p,
.page-hero-copy p,
.hero-note {
  color: var(--white);
}

.hero-copy p,
.page-hero-copy p {
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0 1.3rem;
  justify-content: center;
}

.hero-note {
  font-size: 0.96rem;
}

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

.hero-media::before,
.page-hero-media::before {
  display: none;
}

.hero-media img,
.page-hero-media img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
}

.section-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1.18 / 0.88;
}

.stats-band {
  padding-bottom: 2rem;
}

.stat-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card,
.feature-card,
.content-card,
.faq-card,
.sample-card,
.cta-panel,
.city-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(25, 49, 74, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.stat-card {
  padding: 1.4rem;
}

.stat-card strong {
  display: block;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.section-block {
  padding: 2.75rem 0;
}

.section-grid,
.two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.three-column,
.four-column {
  display: grid;
  gap: 1.4rem;
}

.three-column {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.content-card,
.feature-card,
.sample-card,
.city-card,
.faq-card {
  padding: 1.5rem;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(200, 93, 82, 0.12), rgba(200, 169, 106, 0.16));
  color: var(--coral-500);
}

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

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 1.8rem;
  align-items: center;
}

.bullet-list {
  display: grid;
  gap: 0.8rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1.4rem;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--coral-500));
}

.mini-note,
.sample-note {
  color: var(--slate-700);
  font-size: 0.94rem;
}

.city-card p,
.feature-card p,
.faq-card p,
.content-card p,
.sample-card p {
  margin-bottom: 0;
}

.sample-card img {
  width: 94px;
  height: 94px;
  border-radius: 22px;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

.city-card img {
  width: 100%;
  height: 190px;
  border-radius: 18px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.sample-card span {
  display: inline-block;
  margin-top: 0.65rem;
  color: var(--slate-700);
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-card h3 {
  margin-bottom: 0.55rem;
}

.cta-panel {
  padding: 2rem;
  overflow: hidden;
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 1.5rem;
  align-items: center;
}

.cta-layout > :only-child {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.cta-layout > :only-child .button-row {
  justify-content: center;
}

.cta-panel img {
  width: 100%;
  max-width: 360px;
  justify-self: end;
  border-radius: var(--radius-lg);
}

.breadcrumb {
  padding-top: 1.4rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--slate-700);
  font-size: 0.94rem;
}

.breadcrumb li::after {
  content: "/";
  margin-left: 0.55rem;
  color: var(--slate-500);
}

.breadcrumb li:last-child::after {
  display: none;
}

.site-footer {
  margin-top: 3rem;
  padding: 3rem 0 2rem;
  background:
    linear-gradient(180deg, rgba(19, 34, 53, 0.98), rgba(19, 34, 53, 1)),
    url("images/pattern.svg");
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand .brand {
  color: var(--white);
}

.footer-brand .brand-copy span,
.footer-note,
.footer-legal {
  color: rgba(255, 255, 255, 0.72);
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}

.footer-list {
  display: grid;
  gap: 0.65rem;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-bottom {
  padding-top: 1.8rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-legal {
  margin: 0;
  font-size: 0.92rem;
  text-align: center;
}

.accent-panel {
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(19, 34, 53, 0.98), rgba(34, 69, 101, 0.96));
  color: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
}

.accent-panel h3,
.accent-panel h2,
.accent-panel a {
  color: var(--white);
}

.accent-panel p,
.accent-panel li {
  color: rgba(255, 255, 255, 0.84);
}

.quote {
  padding: 1.35rem 1.5rem;
  border-left: 4px solid var(--gold-400);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--navy-900);
}

@media (max-width: 1080px) {
  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero-shell,
  .page-hero-shell,
  .section-split,
  .cta-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell,
  .page-hero-shell {
    min-height: 560px;
  }

  .cta-panel img {
    justify-self: start;
    max-width: 100%;
  }
}

@media (max-width: 840px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .section-grid,
  .two-column,
  .three-column,
  .four-column,
  .stat-list {
    grid-template-columns: 1fr;
  }

  .hero,
  .page-hero {
    padding-top: 1rem;
  }

  .hero-shell,
  .page-hero-shell {
    min-height: 480px;
    border-radius: 0;
    padding: 2rem 1rem;
  }

  .button,
  .button-link {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  h2 {
    font-size: clamp(1.6rem, 7vw, 2.3rem);
  }

  .header-shell {
    min-height: 78px;
    gap: 0.75rem;
    justify-content: space-between;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .brand {
    flex: 1 1 auto;
    gap: 0.7rem;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: clamp(1rem, 6vw, 1.8rem);
  }

  .brand-copy span {
    font-size: clamp(0.82rem, 4vw, 1rem);
  }

  .button-row {
    width: 100%;
  }

  .button-row .button,
  .button-row .button-link {
    flex: 1 1 100%;
  }

  .footer-grid {
    overflow: hidden;
  }
}

.men50-page .men50-hero-shell::before {
  background:
    linear-gradient(180deg, rgba(19, 34, 53, 0.26) 0%, rgba(19, 34, 53, 0.62) 50%, rgba(19, 34, 53, 0.78) 100%);
}

.men50-page .men50-hero-copy {
  max-width: 860px;
}

.men50-page .men50-local-eyebrow {
  background: rgba(25, 49, 74, 0.08);
  border-color: rgba(25, 49, 74, 0.12);
  color: var(--navy-900);
}

.men50-page .men50-local-eyebrow + h2 {
  margin-top: 1rem;
}

.men50-page .men50-soft-band {
  background: linear-gradient(180deg, rgba(243, 234, 216, 0.42), rgba(255, 255, 255, 0));
}

.men50-page .men50-split {
  align-items: start;
}

.men50-page .men50-feature-grid,
.men50-page .men50-goal-grid {
  align-items: stretch;
}

.men50-page .men50-feature-card,
.men50-page .men50-goal-card,
.men50-page .men50-place-card,
.men50-page .men50-profile-card {
  height: 100%;
}

.men50-page .men50-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.men50-page .men50-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.88);
}

.men50-page .men50-table th,
.men50-page .men50-table td {
  padding: 1rem 1.05rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(25, 49, 74, 0.08);
}

.men50-page .men50-table th {
  background: rgba(19, 34, 53, 0.94);
  color: var(--white);
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}

.men50-page .men50-table tr:nth-child(even) td {
  background: rgba(238, 243, 247, 0.46);
}

.men50-page .men50-checklist-layout,
.men50-page .men50-message-layout {
  align-items: start;
}

.men50-page .men50-reading-flow {
  display: grid;
  gap: 1.35rem;
}

.men50-page .men50-reading-card {
  padding: 1.75rem;
}

.men50-page .men50-checklist li {
  font-weight: 700;
}

.men50-page .men50-profile-card {
  text-align: left;
}

.men50-page .men50-profile-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.men50-page .men50-profile-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1.15rem;
  align-items: center;
}

.men50-page .men50-profile-card img {
  width: 220px;
  height: 220px;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 0;
}

.men50-page .men50-profile-card h4 {
  margin: 0 0 0.6rem;
  font-size: 1.02rem;
  color: var(--navy-950);
}

.men50-page .men50-profile-card p {
  margin: 0;
}

.men50-page .men50-message-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 1rem;
}

.men50-page .men50-message-list li {
  padding-left: 0.2rem;
}

.men50-page .men50-place-grid {
  align-items: stretch;
}

.men50-page .men50-place-card {
  position: relative;
  overflow: hidden;
}

.men50-page .men50-place-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold-400), var(--coral-500));
}

.men50-page .men50-faq-list {
  display: grid;
  gap: 1rem;
}

.men50-page .men50-faq-item {
  padding: 0;
  overflow: hidden;
}

.men50-page .men50-faq-item summary {
  list-style: none;
  padding: 1.2rem 1.4rem;
  font-size: 1.04rem;
  font-weight: 800;
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.men50-page .men50-faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: var(--coral-500);
}

.men50-page .men50-faq-item[open] summary::after {
  content: "-";
}

.men50-page .men50-faq-item p {
  padding: 0 1.4rem 1.35rem;
  margin: 0;
}

.men50-page .men50-final-cta {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 234, 216, 0.9));
}

.men50-page .men50-final-cta img {
  width: 100%;
  max-width: 420px;
  height: 320px;
  object-fit: cover;
}

@media (max-width: 1080px) {
  .men50-page .men50-place-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .men50-page .men50-table {
    min-width: 680px;
  }

  .men50-page .men50-place-grid {
    grid-template-columns: 1fr;
  }

  .men50-page .men50-final-cta img {
    height: auto;
    max-width: 100%;
  }

  .men50-page .men50-profile-row {
    grid-template-columns: 1fr;
  }

  .men50-page .men50-profile-card img {
    width: 100%;
    height: 240px;
    margin-bottom: 1rem;
  }

  .men50-page .men50-faq-item summary {
    padding-right: 1rem;
  }
}

.women50-page .women50-hero-shell::before {
  background:
    linear-gradient(180deg, rgba(25, 49, 74, 0.28) 0%, rgba(25, 49, 74, 0.6) 48%, rgba(19, 34, 53, 0.8) 100%);
}

.women50-page .women50-hero-copy {
  max-width: 860px;
}

.women50-page .women50-local-eyebrow {
  background: rgba(25, 49, 74, 0.08);
  border-color: rgba(25, 49, 74, 0.12);
  color: var(--navy-900);
}

.women50-page .women50-local-eyebrow + h2 {
  margin-top: 1rem;
}

.women50-page .women50-soft-band {
  background: linear-gradient(180deg, rgba(238, 243, 247, 0.6), rgba(255, 255, 255, 0));
}

.women50-page .women50-split {
  align-items: start;
}

.women50-page .women50-feature-grid,
.women50-page .women50-goal-grid,
.women50-page .women50-place-grid,
.women50-page .women50-examples-grid {
  align-items: stretch;
}

.women50-page .women50-feature-card,
.women50-page .women50-goal-card,
.women50-page .women50-place-card,
.women50-page .women50-example-card {
  height: 100%;
}

.women50-page .women50-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.women50-page .women50-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.9);
}

.women50-page .women50-table th,
.women50-page .women50-table td {
  padding: 1rem 1.05rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(25, 49, 74, 0.08);
}

.women50-page .women50-table th {
  background: rgba(25, 49, 74, 0.94);
  color: var(--white);
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}

.women50-page .women50-table tr:nth-child(even) td {
  background: rgba(243, 234, 216, 0.38);
}

.women50-page .women50-reading-flow {
  display: grid;
  gap: 1.35rem;
}

.women50-page .women50-reading-card {
  padding: 1.75rem;
}

.women50-page .women50-checklist li {
  font-weight: 700;
}

.women50-page .women50-profile-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.women50-page .women50-profile-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1.15rem;
  align-items: center;
}

.women50-page .women50-profile-row img {
  width: 220px;
  height: 220px;
  border-radius: 20px;
  object-fit: cover;
}

.women50-page .women50-profile-row h4,
.women50-page .women50-example-card h3 {
  margin: 0 0 0.6rem;
  color: var(--navy-950);
}

.women50-page .women50-profile-row p,
.women50-page .women50-example-card p {
  margin: 0;
}

.women50-page .women50-message-layout {
  align-items: start;
}

.women50-page .women50-message-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 1rem;
}

.women50-page .women50-message-list li {
  padding-left: 0.2rem;
}

.women50-page .women50-place-card {
  position: relative;
  overflow: hidden;
}

.women50-page .women50-place-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1rem;
}

.women50-page .women50-place-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold-400), var(--navy-800));
}

.women50-page .women50-example-card {
  padding: 1.5rem;
}

.women50-page .women50-example-card img {
  width: 100%;
  height: 240px;
  border-radius: 22px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.women50-page .women50-faq-list {
  display: grid;
  gap: 1rem;
}

.women50-page .women50-faq-item {
  padding: 0;
  overflow: hidden;
}

.women50-page .women50-faq-item summary {
  list-style: none;
  padding: 1.2rem 1.4rem;
  font-size: 1.04rem;
  font-weight: 800;
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.women50-page .women50-faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: var(--coral-500);
}

.women50-page .women50-faq-item[open] summary::after {
  content: "-";
}

.women50-page .women50-faq-item p {
  padding: 0 1.4rem 1.35rem;
  margin: 0;
}

.women50-page .women50-final-cta {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 243, 247, 0.9));
}

.women50-page .women50-final-cta img {
  width: 100%;
  max-width: 420px;
  height: 320px;
  object-fit: cover;
}

@media (max-width: 1080px) {
  .women50-page .women50-place-grid,
  .women50-page .women50-examples-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .women50-page .women50-table {
    min-width: 680px;
  }

  .women50-page .women50-place-grid,
  .women50-page .women50-examples-grid {
    grid-template-columns: 1fr;
  }

  .women50-page .women50-profile-row {
    grid-template-columns: 1fr;
  }

  .women50-page .women50-profile-row img {
    width: 100%;
    height: 240px;
  }

  .women50-page .women50-final-cta img {
    height: auto;
    max-width: 100%;
  }

  .women50-page .women50-faq-item summary {
    padding-right: 1rem;
  }
}

.dating50-page .dating50-hero-shell::before {
  background:
    linear-gradient(180deg, rgba(19, 34, 53, 0.24) 0%, rgba(19, 34, 53, 0.58) 48%, rgba(19, 34, 53, 0.78) 100%);
}

.dating50-page .dating50-hero-copy {
  max-width: 900px;
}

.dating50-page .dating50-local-eyebrow {
  background: rgba(25, 49, 74, 0.08);
  border-color: rgba(25, 49, 74, 0.12);
  color: var(--navy-900);
}

.dating50-page .dating50-local-eyebrow + h2 {
  margin-top: 1rem;
}

.dating50-page .dating50-soft-band {
  background: linear-gradient(180deg, rgba(243, 234, 216, 0.42), rgba(255, 255, 255, 0));
}

.dating50-page .dating50-split {
  align-items: start;
}

.dating50-page .dating50-card-grid,
.dating50-page .dating50-date-grid {
  align-items: stretch;
}

.dating50-page .dating50-process-card,
.dating50-page .dating50-date-card {
  height: 100%;
}

.dating50-page .dating50-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.dating50-page .dating50-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.9);
}

.dating50-page .dating50-table th,
.dating50-page .dating50-table td {
  padding: 1rem 1.05rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(25, 49, 74, 0.08);
}

.dating50-page .dating50-table th {
  background: rgba(19, 34, 53, 0.94);
  color: var(--white);
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}

.dating50-page .dating50-table tr:nth-child(even) td {
  background: rgba(238, 243, 247, 0.42);
}

.dating50-page .dating50-date-card {
  position: relative;
  overflow: hidden;
}

.dating50-page .dating50-date-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold-400), var(--coral-500));
}

.dating50-page .dating50-faq-list {
  display: grid;
  gap: 1rem;
}

.dating50-page .dating50-faq-item {
  padding: 0;
  overflow: hidden;
}

.dating50-page .dating50-faq-item summary {
  list-style: none;
  padding: 1.2rem 1.4rem;
  font-size: 1.04rem;
  font-weight: 800;
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dating50-page .dating50-faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: var(--coral-500);
}

.dating50-page .dating50-faq-item[open] summary::after {
  content: "-";
}

.dating50-page .dating50-faq-item p {
  padding: 0 1.4rem 1.35rem;
  margin: 0;
}

.dating50-page .dating50-final-cta {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 243, 247, 0.92));
}

.dating50-page .dating50-final-cta img {
  width: 100%;
  max-width: 420px;
  height: 320px;
  object-fit: cover;
}

@media (max-width: 1080px) {
  .dating50-page .dating50-date-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .dating50-page .dating50-table {
    min-width: 680px;
  }

  .dating50-page .dating50-date-grid {
    grid-template-columns: 1fr;
  }

  .dating50-page .dating50-final-cta img {
    height: auto;
    max-width: 100%;
  }

  .dating50-page .dating50-faq-item summary {
    padding-right: 1rem;
  }
}

.dating60-page .dating60-hero-shell::before {
  background:
    linear-gradient(180deg, rgba(19, 34, 53, 0.24) 0%, rgba(25, 49, 74, 0.56) 48%, rgba(19, 34, 53, 0.8) 100%);
}

.dating60-page .dating60-hero-copy {
  max-width: 900px;
}

.dating60-page .dating60-local-eyebrow {
  background: rgba(25, 49, 74, 0.08);
  border-color: rgba(25, 49, 74, 0.12);
  color: var(--navy-900);
}

.dating60-page .dating60-local-eyebrow + h2 {
  margin-top: 1rem;
}

.dating60-page .dating60-soft-band {
  background: linear-gradient(180deg, rgba(238, 243, 247, 0.56), rgba(255, 255, 255, 0));
}

.dating60-page .dating60-split {
  align-items: start;
}

.dating60-page .dating60-rhythm-grid,
.dating60-page .dating60-message-grid {
  align-items: start;
}

.dating60-page .dating60-match-grid,
.dating60-page .dating60-meeting-grid,
.dating60-page .dating60-trust-grid {
  display: grid;
  gap: 1.4rem;
  align-items: stretch;
}

.dating60-page .dating60-match-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.dating60-page .dating60-meeting-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dating60-page .dating60-trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.dating60-page .dating60-match-card,
.dating60-page .dating60-meeting-card,
.dating60-page .dating60-trust-card {
  height: 100%;
}

.dating60-page .dating60-message-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 1rem;
}

.dating60-page .dating60-message-list li {
  padding-left: 0.2rem;
}

.dating60-page .dating60-meeting-card,
.dating60-page .dating60-trust-card {
  position: relative;
  overflow: hidden;
}

.dating60-page .dating60-meeting-card::before,
.dating60-page .dating60-trust-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold-400), var(--coral-500));
}

.dating60-page .dating60-faq-list {
  display: grid;
  gap: 1rem;
}

.dating60-page .dating60-faq-item {
  padding: 0;
  overflow: hidden;
}

.dating60-page .dating60-faq-item summary {
  list-style: none;
  padding: 1.2rem 1.4rem;
  font-size: 1.04rem;
  font-weight: 800;
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dating60-page .dating60-faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: var(--coral-500);
}

.dating60-page .dating60-faq-item[open] summary::after {
  content: "-";
}

.dating60-page .dating60-faq-item p {
  padding: 0 1.4rem 1.35rem;
  margin: 0;
}

.dating60-page .dating60-final-cta {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 234, 216, 0.88));
}

.dating60-page .dating60-final-cta img {
  width: 100%;
  max-width: 420px;
  height: 320px;
  object-fit: cover;
}

@media (max-width: 1080px) {
  .dating60-page .dating60-match-grid,
  .dating60-page .dating60-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dating60-page .dating60-meeting-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .dating60-page .dating60-match-grid,
  .dating60-page .dating60-meeting-grid,
  .dating60-page .dating60-trust-grid {
    grid-template-columns: 1fr;
  }

  .dating60-page .dating60-final-cta img {
    height: auto;
    max-width: 100%;
  }

  .dating60-page .dating60-faq-item summary {
    padding-right: 1rem;
  }
}

.guide-page .guide-hero-shell::before {
  background:
    linear-gradient(180deg, rgba(19, 34, 53, 0.24) 0%, rgba(25, 49, 74, 0.58) 48%, rgba(19, 34, 53, 0.78) 100%);
}

.guide-page .guide-hero-copy {
  max-width: 900px;
}

.guide-page .guide-local-eyebrow {
  background: rgba(25, 49, 74, 0.08);
  border-color: rgba(25, 49, 74, 0.12);
  color: var(--navy-900);
}

.guide-page .guide-local-eyebrow + h2 {
  margin-top: 1rem;
}

.guide-page .guide-soft-band {
  background: linear-gradient(180deg, rgba(243, 234, 216, 0.42), rgba(255, 255, 255, 0));
}

.guide-page .guide-split {
  align-items: start;
}

.guide-page .guide-photo-grid,
.guide-page .guide-safety-grid {
  display: grid;
  gap: 1.4rem;
  align-items: stretch;
}

.guide-page .guide-photo-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guide-page .guide-safety-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.guide-page .guide-photo-card,
.guide-page .guide-safety-card,
.guide-page .guide-date-card {
  height: 100%;
}

.guide-page .guide-message-grid,
.guide-page .guide-read-layout {
  align-items: start;
}

.guide-page .guide-message-list {
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: 1rem;
}

.guide-page .guide-message-list li {
  padding-left: 0.2rem;
}

.guide-page .guide-read-list li {
  font-weight: 700;
}

.guide-page .guide-date-grid {
  align-items: stretch;
}

.guide-page .guide-date-card {
  position: relative;
  overflow: hidden;
}

.guide-page .guide-date-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold-400), var(--coral-500));
}

.guide-page .guide-faq-list {
  display: grid;
  gap: 1rem;
}

.guide-page .guide-faq-item {
  padding: 0;
  overflow: hidden;
}

.guide-page .guide-faq-item summary {
  list-style: none;
  padding: 1.2rem 1.4rem;
  font-size: 1.04rem;
  font-weight: 800;
  color: var(--navy-950);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.guide-page .guide-faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
  color: var(--coral-500);
}

.guide-page .guide-faq-item[open] summary::after {
  content: "-";
}

.guide-page .guide-faq-item p {
  padding: 0 1.4rem 1.35rem;
  margin: 0;
}

.guide-page .guide-final-cta {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 243, 247, 0.9));
}

.guide-page .guide-final-cta img {
  width: 100%;
  max-width: 420px;
  height: 320px;
  object-fit: cover;
}

@media (max-width: 1080px) {
  .guide-page .guide-photo-grid,
  .guide-page .guide-safety-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .guide-page .guide-photo-grid,
  .guide-page .guide-safety-grid,
  .guide-page .guide-date-grid {
    grid-template-columns: 1fr;
  }

  .guide-page .guide-final-cta img {
    height: auto;
    max-width: 100%;
  }

  .guide-page .guide-faq-item summary {
    padding-right: 1rem;
  }
}

.about-page .about-hero-shell::before {
  background:
    linear-gradient(180deg, rgba(19, 34, 53, 0.22) 0%, rgba(25, 49, 74, 0.58) 48%, rgba(19, 34, 53, 0.8) 100%);
}

.about-page .about-hero-copy {
  max-width: 900px;
}

.about-page .about-local-eyebrow {
  background: rgba(25, 49, 74, 0.08);
  border-color: rgba(25, 49, 74, 0.12);
  color: var(--navy-900);
}

.about-page .about-local-eyebrow + h2 {
  margin-top: 1rem;
}

.about-page .about-soft-band {
  background: linear-gradient(180deg, rgba(238, 243, 247, 0.54), rgba(255, 255, 255, 0));
}

.about-page .about-split,
.about-page .about-intent-grid {
  align-items: start;
}

.about-page .about-member-grid,
.about-page .about-feature-grid,
.about-page .about-service-grid {
  align-items: stretch;
}

.about-page .about-member-card,
.about-page .about-feature-card,
.about-page .about-service-card {
  height: 100%;
}

.about-page .about-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.about-page .about-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.9);
}

.about-page .about-table th,
.about-page .about-table td {
  padding: 1rem 1.05rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(25, 49, 74, 0.08);
}

.about-page .about-table th {
  background: rgba(19, 34, 53, 0.94);
  color: var(--white);
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}

.about-page .about-table tr:nth-child(even) td {
  background: rgba(243, 234, 216, 0.34);
}

.about-page .about-final-cta {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(243, 234, 216, 0.9));
}

.about-page .about-final-cta img {
  width: 100%;
  max-width: 420px;
  height: 320px;
  object-fit: cover;
}

@media (max-width: 1080px) {
  .about-page .about-member-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page .about-feature-grid,
  .about-page .about-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .about-page .about-table {
    min-width: 680px;
  }

  .about-page .about-member-grid,
  .about-page .about-feature-grid,
  .about-page .about-service-grid {
    grid-template-columns: 1fr;
  }

  .about-page .about-final-cta img {
    height: auto;
    max-width: 100%;
  }
}
