:root {
  --navy: #1a2843;
  --navy-deep: #111b2e;
  --maple: #b9484b;
  --maple-dark: #9b363a;
  --gold: #d6ab55;
  --cream: #fbf7f1;
  --paper: #fffdf9;
  --mist: #e8eef3;
  --slate: #5d6b7b;
  --text: #223046;
  --border: #d8e0e8;
  --shadow: 0 18px 40px rgba(17, 27, 46, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.68;
  color: var(--text);
  background: var(--paper);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--maple);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--maple-dark);
}

p,
ul,
ol,
h1,
h2,
h3 {
  margin-top: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 2rem), 860px);
}

.section {
  padding: 4.25rem 0;
}

.section-muted {
  background: linear-gradient(180deg, #f4f7fa 0%, #eef3f7 100%);
}

.section-accent {
  background: linear-gradient(180deg, #fff8f3 0%, #fff2e7 100%);
}

.section-label,
.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--maple);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead {
  font-size: 1.18rem;
  color: var(--navy);
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.26rem;
  margin-bottom: 0.7rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #cb5654;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 62px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #fff;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: none;
}

.brand-text {
  display: grid;
  gap: 0.15rem;
}

.brand-text strong {
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.brand-text small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.57rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: none;
  position: absolute;
  top: 62px;
  left: 0;
  right: 0;
  padding: 1rem;
  background: #cb5654;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 14px 30px rgba(70, 22, 22, 0.18);
}

.site-nav.is-open {
  display: block;
}

.site-nav ul {
  display: grid;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.site-nav a {
  display: block;
  padding: 0.75rem 0.95rem;
  border-radius: 2px;
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.nav-cta {
  width: 100%;
  justify-content: center;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.button-row,
.button-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(17, 27, 46, 0.16);
}

.button-primary {
  background: linear-gradient(135deg, var(--maple) 0%, #c5625f 100%);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, var(--maple-dark) 0%, #b44a4d 100%);
  color: #fff;
}

.site-header .nav-cta {
  background: #fff;
  border-color: #fff;
  color: #cb5654;
  border-radius: 2px;
  min-height: 40px;
  padding: 0.7rem 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: none;
}

.site-header .nav-cta:hover,
.site-header .nav-cta:focus-visible {
  background: #f1f1f1;
  color: #b84d4b;
  box-shadow: none;
  transform: none;
}

.button-secondary {
  background: #fff;
  border-color: rgba(26, 40, 67, 0.12);
  color: var(--navy);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--navy);
  color: #fff;
}

.button-block {
  width: 100%;
}

.hero,
.subhero {
  padding: 2rem 0 4rem;
}

.hero-home {
  background:
    radial-gradient(circle at top left, rgba(214, 171, 85, 0.18), transparent 35%),
    linear-gradient(180deg, #fff8f2 0%, #f5f8fb 100%);
}

.hero-grid,
.subhero-grid,
.app-hero-grid,
.login-grid,
.intro-split,
.two-col-text,
.app-preview {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy p:last-of-type,
.rich-text p:last-child {
  margin-bottom: 0;
}

.trust-points {
  display: grid;
  gap: 0.8rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.trust-points li,
.feature-card svg,
.idea-card svg {
  color: var(--maple);
}

.trust-points li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(26, 40, 67, 0.08);
}

svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex: 0 0 auto;
}

.image-card,
.form-shell,
.cta-banner,
.phone-shell,
.profile-card,
.story-card,
.city-card,
.term-card,
.soft-card,
.idea-card,
.feature-card,
.step-card {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(26, 40, 67, 0.08);
  box-shadow: var(--shadow);
}

.image-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  object-fit: cover;
}

.image-card figcaption {
  padding: 1rem 1.2rem 1.25rem;
  color: var(--slate);
  font-size: 0.96rem;
}

.large-image img {
  min-height: 100%;
}

.section-head {
  max-width: 740px;
  margin-bottom: 2rem;
}

.feature-grid,
.value-grid,
.member-type-grid,
.steps-grid,
.city-grid,
.profile-grid,
.terms-grid,
.story-grid,
.idea-grid {
  display: grid;
  gap: 1.2rem;
}

.feature-card,
.idea-card,
.step-card,
.profile-card,
.story-card,
.term-card,
.soft-card {
  padding: 1.4rem;
}

.feature-card svg,
.idea-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 1rem;
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(185, 72, 75, 0.12);
  color: var(--maple);
  font-weight: 800;
}

.city-card {
  position: relative;
  overflow: hidden;
  padding: 1.6rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.city-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 27, 46, 0.12), rgba(17, 27, 46, 0.88));
}

.city-card > * {
  position: relative;
  z-index: 1;
}

.city-card h3,
.city-card .text-link {
  color: #fff;
}

.city-card-toronto {
  background: linear-gradient(135deg, #315b8c, #12213b);
}

.city-card-montreal {
  background: linear-gradient(135deg, #6f486d, #1a2843);
}

.city-card-vancouver {
  background: linear-gradient(135deg, #3f6f71, #102a30);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
}

.sample-tag,
.app-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(185, 72, 75, 0.12);
  color: var(--maple);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.terms-grid article {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
}

.cta-banner {
  display: grid;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(26, 40, 67, 0.98), rgba(38, 57, 92, 0.98));
  color: #fff;
}

.cta-banner h2,
.cta-banner p,
.cta-banner .section-label {
  color: #fff;
}

.button-stack {
  align-items: stretch;
}

.phone-preview,
.double-phone {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.phone-shell {
  width: min(320px, 100%);
  padding: 0.9rem;
  border-radius: 36px;
  background: linear-gradient(180deg, #1d2742 0%, #10182a 100%);
}

.phone-shell.alt {
  transform: translateY(28px);
}

.phone-top {
  width: 80px;
  height: 6px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.phone-screen {
  min-height: 420px;
  padding: 1rem;
  border-radius: 26px;
  background: linear-gradient(180deg, #fff8f5 0%, #eef4f9 100%);
}

.app-card {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  margin-bottom: 0.9rem;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 27, 46, 0.09);
  color: var(--navy);
}

.breadcrumb {
  padding-top: 0.5rem;
  margin-bottom: 1rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--slate);
  font-size: 0.95rem;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
  color: #96a3b2;
}

.city-subhero,
.verification-hero,
.app-hero,
.login-hero {
  background:
    radial-gradient(circle at top right, rgba(214, 171, 85, 0.2), transparent 30%),
    linear-gradient(180deg, #fff9f5 0%, #f1f6fb 100%);
}

.rich-text p {
  color: var(--text);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(26, 40, 67, 0.08);
  border-radius: 22px;
  background: #fff;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.35rem;
  border: 0;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--maple);
}

.faq-icon::after {
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: none;
  padding: 0 1.35rem 1.25rem;
  color: var(--slate);
}

.faq-answer.is-open {
  display: block;
}

.login-grid {
  align-items: start;
}

.form-shell {
  padding: 1.4rem;
}

.login-form,
.form-row-inline {
  display: grid;
  gap: 0.9rem;
}

.login-form label {
  font-weight: 700;
  color: var(--navy);
}

.login-form input[type="email"],
.login-form input[type="password"] {
  width: 100%;
  min-height: 54px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  font: inherit;
}

.login-form input:focus-visible {
  outline: 3px solid rgba(185, 72, 75, 0.18);
  border-color: var(--maple);
}

.form-row-inline {
  grid-template-columns: 1fr;
  align-items: center;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.checkbox input {
  width: 18px;
  height: 18px;
}

.form-feedback {
  min-height: 1.5rem;
  font-weight: 600;
  color: var(--maple-dark);
}

.form-note {
  color: var(--slate);
}

.site-footer {
  padding-top: 3rem;
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand {
  color: #fff;
}

.footer-brand .brand-text small,
.footer-copy,
.disclaimer,
.copyright {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer h2 {
  margin-bottom: 0.8rem;
  color: #fff;
  font-size: 1.05rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.footer-bottom {
  padding: 1.4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  margin-bottom: 0;
}

@media (min-width: 720px) {
  .feature-grid,
  .value-grid,
  .idea-grid,
  .member-type-grid,
  .profile-grid,
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid,
  .terms-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
  }

  .form-row-inline {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
}

@media (min-width: 980px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    flex: 1;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 0.15rem;
    margin: 0;
    margin-left: auto;
  }

  .nav-cta {
    width: auto;
    margin-left: 1rem;
  }

  .hero-grid,
  .subhero-grid,
  .intro-split,
  .two-col-text,
  .app-preview,
  .app-hero-grid,
  .login-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .value-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .member-type-grid,
  .profile-grid,
  .terms-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .story-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .idea-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cta-banner {
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
  }
}

@media (max-width: 719px) {
  body {
    font-size: 17px;
  }

  .button,
  .button-row .button,
  .button-stack .button {
    width: 100%;
  }

  .phone-shell.alt {
    transform: none;
  }
}

/* Homepage redesign based on the reference screenshot */
body.home-page,
body.site-chrome {
  --ref-coral: #cb5654;
  --ref-coral-deep: #b74a49;
  --ref-ink: #17171b;
  --ref-ink-soft: #26272d;
  --ref-sand: #eef0e4;
  --ref-mist: #ececee;
  --ref-cream: #f6f6f2;
  --ref-line: rgba(23, 23, 27, 0.12);
}

body.home-page {
  background: #f4f4f1;
  color: #26272d;
  font-family: Arial, Helvetica, sans-serif;
}

body:is(.home-page, .site-chrome) .site-header {
  position: relative;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

body:is(.home-page, .site-chrome) .utility-bar {
  background: var(--ref-coral);
  color: #fff;
}

body:is(.home-page, .site-chrome) .utility-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 52px;
}

body:is(.home-page, .site-chrome) .brand-compact {
  gap: 0.55rem;
  color: #fff;
}

body:is(.home-page, .site-chrome) .brand-compact img {
  width: 30px;
  height: 30px;
  border-radius: 0;
  box-shadow: none;
}

body:is(.home-page, .site-chrome) .brand-compact .brand-text {
  gap: 0;
  line-height: 1;
}

body:is(.home-page, .site-chrome) .brand-compact .brand-text strong {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

body:is(.home-page, .site-chrome) .brand-compact .brand-text small {
  margin-top: 0.1rem;
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

body:is(.home-page, .site-chrome) .menu-toggle {
  width: 42px;
  height: 42px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.14);
}

body:is(.home-page, .site-chrome) .site-nav {
  top: 52px;
  background: var(--ref-coral);
  border-bottom: 0;
  box-shadow: none;
  padding: 0.85rem 1rem 1rem;
}

body:is(.home-page, .site-chrome) .site-nav ul {
  gap: 0.15rem;
  margin-bottom: 0.85rem;
}

body:is(.home-page, .site-chrome) .site-nav a {
  padding: 0.75rem 0.85rem;
  border-radius: 2px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

body:is(.home-page, .site-chrome) .site-nav a:hover,
body:is(.home-page, .site-chrome) .site-nav a:focus-visible,
body:is(.home-page, .site-chrome) .site-nav a.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.home-nav-actions {
  display: grid;
  gap: 0.55rem;
}

.button-ghost,
.button-light,
.button-coral,
.button-dark {
  min-height: 38px;
  padding: 0.68rem 1rem;
  border-radius: 2px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: none;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.button-light {
  background: #fff;
  border: 1px solid #fff;
  color: var(--ref-coral);
}

body:is(.home-page, .site-chrome) .site-nav .home-nav-actions .button-light {
  color: var(--ref-coral);
}

.button-coral {
  background: var(--ref-coral);
  border: 1px solid var(--ref-coral);
  color: #fff;
}

.button-dark {
  background: rgba(18, 18, 22, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.button-ghost:hover,
.button-light:hover,
.button-coral:hover,
.button-dark:hover,
.button-ghost:focus-visible,
.button-light:focus-visible,
.button-coral:focus-visible,
.button-dark:focus-visible {
  transform: none;
  box-shadow: none;
}

.button-coral:hover,
.button-coral:focus-visible {
  background: var(--ref-coral-deep);
  color: #fff;
}

.button-light:hover,
.button-light:focus-visible {
  background: #f0f0f0;
  color: var(--ref-coral-deep);
}

body:is(.home-page, .site-chrome) .site-nav .home-nav-actions .button-light:hover,
body:is(.home-page, .site-chrome) .site-nav .home-nav-actions .button-light:focus-visible {
  color: var(--ref-coral-deep);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #0f1014;
  color: #fff;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.home-hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #222;
}

.home-hero-image,
.home-hero-overlay {
  position: absolute;
  inset: 0;
}

.home-hero-image {
  background-image: url("images/seniordating12.jpg");
  background-size: cover;
  background-position: center center;
  transform: scale(1.03);
}

.home-hero-overlay {
  background: linear-gradient(180deg, rgba(16, 16, 19, 0.28) 0%, rgba(18, 18, 22, 0.58) 100%);
}

.hero-stage {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 3.3rem 1rem 2.3rem;
}

.hero-center {
  width: min(100%, 700px);
  text-align: center;
  color: #fff;
}

.hero-kicker {
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.home-page h1 {
  margin-bottom: 1rem;
  font-size: clamp(1.85rem, 3.5vw, 2.55rem);
  line-height: 1.15;
  color: #fff;
}

.hero-lead,
.hero-copy,
.hero-footnote {
  margin-left: auto;
  margin-right: auto;
}

.hero-lead {
  max-width: 650px;
  font-size: 1.12rem;
  line-height: 1.4;
  color: #fff;
}

.hero-copy {
  display: none;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.94);
}

.hero-actions {
  display: inline-flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin: 1.2rem auto 0;
}

.hero-text-link {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.hero-text-link:hover,
.hero-text-link:focus-visible {
  color: rgba(255, 255, 255, 0.78);
}

.hero-footnote {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-stats {
  background: var(--ref-coral);
  color: #fff;
}

.stats-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
}

.stat-item {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.3rem;
  padding: 1.4rem 0.85rem;
}

.stat-item svg {
  width: 30px;
  height: 30px;
  color: #fff;
}

.stat-item strong {
  font-size: 0.95rem;
  color: #fff;
}

.stat-item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.86);
}

.editorial-band {
  padding: 4rem 0 3.3rem;
  background: var(--ref-sand);
}

.editorial-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.25rem;
}

.home-page .section-label {
  color: var(--ref-coral);
  letter-spacing: 0.08em;
}

.home-page h2 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  color: #cc5d57;
}

.editorial-grid {
  display: grid;
  gap: 2rem 2.4rem;
}

.editorial-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1.1rem;
  align-items: start;
}

.editorial-item img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.8);
}

.editorial-item h3,
.ribbon-card h3,
.city-panel h3,
.process-steps h3,
.glossary-list h3,
.profile-strip h3,
.quote-card strong {
  color: var(--ref-ink);
}

.editorial-item p,
.ribbon-card p,
.brand-story p,
.meeting-copy p,
.glossary-list p,
.quote-card p,
.profile-strip p,
.city-panel p,
.verification-copy p {
  color: #2f3138;
}

.brand-story {
  padding: 3.4rem 0;
  background: var(--ref-mist);
}

.brand-story-shell {
  display: grid;
  gap: 2.25rem;
}

.brand-story-copy,
.brand-story-note {
  max-width: 1120px;
  margin: 0 auto;
}

.brand-story-note {
  text-align: left;
}

.brand-story-block {
  width: 100%;
  padding: 0;
}

.brand-story-block h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.brand-story-block .section-label {
  text-align: center;
}

.brand-story-body {
  display: grid;
  gap: 1.4rem;
  align-items: start;
}

.brand-story-photo {
  margin: 1.15rem 0 1.35rem;
}

.brand-story-photo img {
  width: 100%;
  height: 300px;
  display: block;
  object-fit: cover;
}

.brand-story-text {
  display: grid;
  gap: 0.95rem;
}

.brand-story-text p {
  margin: 0;
}

.brand-logos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.brand-logos span {
  font-size: 1.7rem;
  font-weight: 700;
  color: #282a31;
}

.member-ribbon {
  padding: 3.5rem 0;
  background: #fff;
}

.member-ribbon-grid {
  display: grid;
  gap: 1rem;
}

.ribbon-card {
  padding: 1.2rem 1.15rem;
  border-top: 4px solid var(--ref-coral);
  background: #fff;
  border-left: 1px solid var(--ref-line);
  border-right: 1px solid var(--ref-line);
  border-bottom: 1px solid var(--ref-line);
}

.process-panel {
  padding: 3.6rem 0;
  background: #f8f6f1;
}

.process-shell {
  display: grid;
  gap: 1.6rem;
}

.process-steps {
  display: grid;
  gap: 1rem;
}

.process-steps article {
  padding: 1.2rem;
  background: #fff;
  border: 1px solid var(--ref-line);
}

.process-steps span {
  display: inline-block;
  margin-bottom: 0.7rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--ref-coral);
}

.cities-panel {
  padding: 3.7rem 0;
  background: #fff;
}

.city-panels {
  display: grid;
  gap: 1rem;
}

.city-panel {
  padding: 1.4rem 1.2rem 1.3rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7f3 100%);
  border-top: 6px solid var(--ref-coral);
  border-left: 1px solid var(--ref-line);
  border-right: 1px solid var(--ref-line);
  border-bottom: 1px solid var(--ref-line);
}

.city-panel img {
  width: calc(100% + 2.4rem);
  max-width: none;
  height: 150px;
  margin: -1.4rem -1.2rem 1rem;
  object-fit: cover;
  display: block;
}

.city-panel a {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  color: var(--ref-coral);
}

.download-band {
  padding: 3.5rem 0;
  background: #ededee;
}

.download-shell {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.download-copy h2 {
  max-width: 520px;
}

.download-visual {
  display: flex;
  justify-content: center;
}

.home-page .phone-shell {
  width: min(100%, 280px);
  padding: 0.8rem;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #111;
  box-shadow: none;
}

.home-page .phone-top {
  height: 5px;
}

.home-page .phone-screen {
  border-radius: 0;
  min-height: 360px;
  background: #f8f6f1;
}

.verification-band {
  padding: 3.6rem 0;
  background: var(--ref-sand);
}

.verification-visual {
  display: grid;
  gap: 1rem;
}

.verification-photo {
  margin: 0;
}

.verification-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.verification-shell,
.meeting-shell,
.closing-shell,
.glossary-shell {
  display: grid;
  gap: 1.8rem;
}

.meeting-editorial {
  padding: 3.6rem 0;
  background: #fff;
}

.meeting-visual {
  display: grid;
  gap: 1rem;
}

.meeting-photo {
  margin: 0;
}

.meeting-photo img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.profiles-band {
  padding: 3.6rem 0;
  background: #f4f4f1;
}

.profile-strips {
  display: grid;
  gap: 0.85rem;
}

.profile-strip {
  padding: 1.1rem 1rem;
  background: #fff;
  border-left: 4px solid var(--ref-coral);
  border-right: 1px solid var(--ref-line);
  border-top: 1px solid var(--ref-line);
  border-bottom: 1px solid var(--ref-line);
}

.profile-photo {
  margin: -1.1rem -1rem 0.9rem;
}

.profile-photo img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
}

.sample-tag {
  padding: 0.2rem 0.55rem;
  margin-bottom: 0.75rem;
  border-radius: 2px;
  background: rgba(203, 86, 84, 0.08);
  color: var(--ref-coral);
  font-size: 0.68rem;
}

.glossary-band {
  padding: 3.6rem 0;
  background: #fff;
}

.glossary-shell {
  display: block;
}

.glossary-intro {
  max-width: 960px;
  margin: 0 auto 2rem;
}

.glossary-photo {
  margin: 1.2rem 0 0;
}

.glossary-photo img {
  width: 100%;
  height: 290px;
  display: block;
  object-fit: cover;
}

.glossary-list {
  display: grid;
  gap: 1rem 1.2rem;
  max-width: 960px;
  margin: 0 auto;
}

.glossary-list article {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(23, 23, 27, 0.08);
}

.quotes-band {
  padding: 3.6rem 0;
  background: var(--ref-sand);
}

.quote-grid {
  display: grid;
  gap: 1rem;
}

.quote-card {
  padding: 1.2rem 1.1rem;
  background: #fff;
  border-top: 4px solid var(--ref-coral);
  border-left: 1px solid var(--ref-line);
  border-right: 1px solid var(--ref-line);
  border-bottom: 1px solid var(--ref-line);
}

.closing-band {
  padding: 3rem 0;
  background: var(--ref-coral);
  color: #fff;
}

.closing-band h2,
.closing-band p,
.closing-band .section-label {
  color: #fff;
}

.closing-actions {
  display: grid;
  gap: 0.75rem;
  justify-items: start;
  align-content: center;
}

.closing-band .closing-actions .button {
  min-height: 34px;
  padding: 0.6rem 0.95rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
  width: auto;
  min-width: 280px;
  justify-content: center;
}

.faq-band {
  padding: 3.7rem 0 4.4rem;
  background: #f3f3ef;
}

.faq-shell {
  max-width: 980px;
}

.home-page .faq-item {
  border-radius: 0;
  border: 1px solid rgba(23, 23, 27, 0.12);
  background: #fff;
}

.home-page .faq-question {
  padding: 1.05rem 1.1rem;
  font-size: 0.98rem;
}

.home-page .faq-answer {
  padding: 0 1.1rem 1rem;
  color: #333740;
}

.home-page .faq-icon::before,
.home-page .faq-icon::after {
  background: var(--ref-coral);
}

body:is(.home-page, .site-chrome) .site-footer {
  padding-top: 2.7rem;
  background: #111217;
}

body:is(.home-page, .site-chrome) .footer-grid {
  gap: 1.5rem;
}

body:is(.home-page, .site-chrome) .site-footer .brand-text strong {
  font-size: 1.18rem;
}

body:is(.home-page, .site-chrome) .site-footer .brand-text small {
  font-size: 0.92rem;
}

body:is(.home-page, .site-chrome) .site-footer h2 {
  font-size: 1.24rem;
  margin-bottom: 0.8rem;
}

body:is(.home-page, .site-chrome) .footer-copy,
body:is(.home-page, .site-chrome) .disclaimer,
body:is(.home-page, .site-chrome) .copyright,
body:is(.home-page, .site-chrome) .footer-links a {
  font-size: 1rem;
  line-height: 1.7;
}

body:is(.home-page, .site-chrome) .footer-links {
  gap: 0.58rem;
}

@media (min-width: 760px) {
  .stats-shell {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .editorial-grid,
  .member-ribbon-grid,
  .process-steps,
  .profile-strips,
  .quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .city-panels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .glossary-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-story-body {
    grid-template-columns: minmax(420px, 1fr) minmax(0, 1.28fr);
    gap: 2.4rem;
  }

  .brand-story-photo {
    margin: 1.15rem 0 0;
  }

  .brand-story-photo img {
    height: 100%;
    min-height: 320px;
  }
}

@media (min-width: 980px) {
  body:is(.home-page, .site-chrome) .menu-toggle {
    display: none;
  }

  body:is(.home-page, .site-chrome) .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 0.75rem;
    margin-left: auto;
    padding: 0;
  }

  body:is(.home-page, .site-chrome) .site-nav ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.15rem;
    margin: 0;
    margin-left: auto;
  }

  body:is(.home-page, .site-chrome) .home-nav-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-left: 0.9rem;
  }

  body:is(.home-page, .site-chrome) .site-nav a {
    padding: 0.45rem 0.7rem;
  }

  .hero-actions {
    gap: 0.7rem;
  }

  .verification-shell,
  .meeting-shell,
  .closing-shell,
  .download-shell {
    grid-template-columns: 1.08fr 0.92fr;
  }

  .editorial-grid,
  .member-ribbon-grid,
  .process-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .profile-strips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .glossary-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quote-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 979px) {
  .home-nav-actions .button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .home-hero {
    min-height: 560px;
  }

  .hero-stage {
    min-height: 560px;
    padding-top: 2.75rem;
  }

  .home-page h1 {
    font-size: 1.58rem;
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-copy {
    font-size: 0.96rem;
  }

  .stat-item {
    padding: 1.1rem 0.7rem;
  }

  .editorial-item {
    grid-template-columns: 74px 1fr;
  }

  .editorial-item img {
    width: 74px;
    height: 74px;
  }

  .city-panel img {
    height: 120px;
  }

  .meeting-photo img {
    height: 220px;
  }

  .verification-photo img {
    height: 220px;
  }

  .glossary-photo img {
    height: 220px;
  }

  .brand-story-photo img {
    min-height: 0;
    height: 240px;
  }
}
