:root {
  --bg: #f3efe3;
  --bg-strong: #ebe2d2;
  --surface: #fffdf8;
  --surface-soft: #f8f1e7;
  --surface-warm: #f5ebdf;
  --text: #2d2b29;
  --text-soft: #6f675f;
  --heading: #203246;
  --accent: #cb5a55;
  --accent-deep: #a94443;
  --accent-soft: rgba(203, 90, 85, 0.14);
  --accent-dark: #8d3a39;
  --navy: #22384f;
  --navy-deep: #172839;
  --line: #d8cbbb;
  --line-soft: #e7ddcf;
  --shadow: 0 10px 22px rgba(44, 36, 28, 0.06);
  --shadow-strong: 0 18px 40px rgba(40, 28, 22, 0.12);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.72;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(203, 90, 85, 0.12) 0 76px, transparent 76px),
    linear-gradient(180deg, #f7f2e8 0%, var(--bg) 100%);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover,
a:focus-visible {
  color: var(--accent);
}

button,
.button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(216, 203, 187, 0.85);
  background: rgba(255, 251, 245, 0.92);
  backdrop-filter: blur(14px);
}

.site-header::before {
  content: "";
  display: block;
  height: 8px;
  background: linear-gradient(90deg, var(--accent) 0%, #d86d63 52%, #c75655 100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
  padding: 0.35rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--heading);
  font-weight: 700;
}

.brand:hover,
.brand:focus-visible {
  color: var(--heading);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--navy);
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.01em;
}

.brand-text span {
  margin-top: 0.1rem;
  font-size: 0.73rem;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--heading);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.site-nav a {
  position: relative;
  color: var(--heading);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.5rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--accent-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.01em;
  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(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(180deg, #d86a62 0%, var(--accent) 100%);
  box-shadow: 0 16px 30px rgba(203, 90, 85, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: #fff;
  background: linear-gradient(180deg, #dc7269 0%, #bc4e49 100%);
}

.button-secondary {
  color: var(--heading);
  min-height: auto;
  padding: 0.2rem 0 0.35rem;
  border-width: 0 0 2px;
  border-color: rgba(34, 56, 79, 0.35);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--heading);
  border-color: var(--accent);
  background: transparent;
}

.button-ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.button-group .button:not(:first-child) {
  display: none;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 4.7rem 0 5.4rem;
  background-color: #3a332d;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(19, 23, 27, 0.34) 0%, rgba(19, 23, 27, 0.52) 100%),
    linear-gradient(135deg, rgba(167, 67, 66, 0.52) 0%, rgba(24, 30, 38, 0.34) 70%);
  pointer-events: none;
}

.page-home .hero {
  background-image: url("images/seniorlove.jpg");
}

.page-local .page-hero {
  background-image: url("images/over50dating.jpg");
}

.page-service .page-hero {
  background-image: url("images/seniordating12.jpg");
}

.page-senior .page-hero {
  background-image: url("images/seniormatch.jpg");
}

.page-howto .page-hero {
  background-image: url("images/seniorwoman3.jpg");
}

.page-safety .page-hero {
  background-image: url("images/seniordating11.jpg");
}

.hero-grid,
.page-hero-grid,
.two-col,
.feature-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.hero-grid,
.page-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  justify-items: center;
  min-height: 470px;
}

.hero-copy,
.page-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 1.2rem 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-editorial .hero-copy,
.hero-editorial .page-hero-copy {
  max-width: 900px;
  padding: clamp(1.7rem, 3vw, 2.6rem) clamp(1.25rem, 3vw, 2.6rem);
  border: 1px solid rgba(255, 248, 238, 0.18);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(23, 31, 39, 0.22) 0%, rgba(23, 31, 39, 0.32) 100%);
  backdrop-filter: blur(8px);
}

.hero-editorial .hero-copy::before,
.hero-editorial .page-hero-copy::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #f2cb86 0%, #dfb06d 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  background: rgba(203, 90, 85, 0.12);
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.13;
  color: var(--heading);
}

h1 {
  font-size: clamp(2.15rem, 3.9vw, 3.85rem);
  letter-spacing: -0.03em;
  max-width: 20ch;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.14rem, 2vw, 1.4rem);
}

p {
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.16rem;
  color: var(--text-soft);
}

.hero-copy > p,
.page-hero-copy > p,
.hero-copy .lead,
.page-hero-copy .lead {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1,
.page-hero h1,
.hero h2,
.page-hero h2,
.hero h3,
.page-hero h3,
.hero p,
.page-hero p,
.hero .lead,
.page-hero .lead,
.hero .eyebrow,
.page-hero .eyebrow {
  color: #fff;
}

.hero .eyebrow,
.page-hero .eyebrow {
  background: rgba(255, 255, 255, 0.14);
}

.hero .eyebrow::before,
.page-hero .eyebrow::before {
  background: #ffd1bd;
}

.hero .button-group,
.page-hero .button-group {
  justify-content: center;
  width: 100%;
}

.hero .button-group .button:not(:first-child),
.page-hero .button-group .button:not(:first-child) {
  display: none;
}

.hero .button-group .button:first-child,
.page-hero .button-group .button:first-child {
  min-width: 240px;
  margin-left: auto;
  margin-right: auto;
}

.hero-note,
.hero-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.7rem 0 0;
  padding: 0;
  list-style: none;
  width: 100%;
  max-width: 820px;
}

.hero-note li,
.hero-summary li {
  padding: 0.9rem 1rem;
  border-top: 3px solid rgba(242, 203, 134, 0.86);
  background: rgba(255, 251, 245, 0.92);
  box-shadow: var(--shadow);
  color: var(--text-soft);
  font-size: 0.93rem;
  text-align: center;
}

.hero-panel,
.image-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow-strong);
}

.hero-editorial .hero-panel {
  display: none;
}

.hero-editorial .hero-panel img {
  display: none;
  min-height: 0;
}

.hero-editorial .hero-panel::before {
  width: 7px;
  border-radius: 0 0 0 24px;
}

.hero-editorial .hero-panel-body {
  padding: 1.15rem 1.2rem 1.2rem 1.35rem;
}

.hero-panel::before,
.image-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 14px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
  z-index: 1;
}

.hero-panel img,
.image-card img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.hero-panel-body,
.image-card-body {
  position: relative;
  padding: 1.45rem 1.5rem 1.6rem 1.8rem;
  background: #fff;
}

.stats-grid,
.card-grid,
.icon-grid,
.mini-grid,
.faq-grid,
.story-grid {
  display: grid;
  gap: 1.2rem;
}

.stats-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.8rem;
  padding: 0.9rem;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(248, 241, 231, 0.98) 100%);
  box-shadow: var(--shadow);
}

.card-grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid.cols-2,
.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.story-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section {
  position: relative;
  padding: 2.8rem 0 1rem;
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.55) 0%, rgba(255, 251, 245, 0.92) 100%);
}

.section-head {
  max-width: 780px;
  margin-bottom: 1.8rem;
}

.section-head::before {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  margin-bottom: 0.95rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, #ddb776 100%);
}

.section-snapshot .section-head,
.section-community .section-head,
.section-compare .section-head,
.section-journey .section-head,
.section-date-ideas .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-snapshot .section-head::before,
.section-community .section-head::before,
.section-compare .section-head::before,
.section-journey .section-head::before,
.section-date-ideas .section-head::before {
  margin-left: auto;
  margin-right: auto;
}

.surface-card,
.stat-card,
.info-card,
.icon-card,
.story-card,
.faq-card,
.cta-band,
.table-card,
.quote-card,
.list-card,
.checklist-box,
.tip-box,
.notice-box {
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  background: linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
  box-shadow: var(--shadow);
}

.surface-card,
.stat-card,
.info-card,
.icon-card,
.story-card,
.faq-card,
.table-card,
.quote-card,
.list-card {
  padding: 1.45rem;
}

.surface-card.alt,
.icon-card.alt,
.faq-card.alt,
.table-card.alt {
  background: linear-gradient(180deg, #fff9f1 0%, #f9efe3 100%);
}

.stat-card {
  position: relative;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--text-soft);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--heading);
  font-size: 1.02rem;
}

.trust-strip .stat-card {
  padding: 0.7rem 1rem;
}

.trust-strip .stat-card:not(:last-child) {
  border-right: 1px solid var(--line-soft);
}

.trust-strip .stat-card::before {
  content: "";
  display: block;
  width: 26px;
  height: 3px;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, #d9b36a 100%);
}

.icon-card,
.story-card,
.list-card,
.surface-card,
.info-card {
  border-top: 5px solid rgba(203, 90, 85, 0.78);
}

.section-snapshot .mini-grid {
  gap: 0.8rem;
}

.section-snapshot .info-card {
  min-height: 0;
  padding: 1rem 1rem 1.05rem;
  border-top-width: 3px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fffdfa 0%, #f7efe4 100%);
}

.section-snapshot .info-card:nth-child(2n) {
  background: linear-gradient(180deg, #f9f5ed 0%, #eef4f8 100%);
}

.section-snapshot .info-card h3 {
  font-size: 1rem;
}

.section-members .two-col,
.section-features .two-col,
.section-profile .two-col,
.section-safety .two-col {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 2.2rem;
}

.section-local .card-grid.cols-4 {
  gap: 0.9rem;
}

.section-local .icon-card {
  padding: 1.1rem 1.1rem 1.15rem;
  border-top: 0;
  border-left: 4px solid var(--accent);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.98) 0%, rgba(247, 239, 228, 0.98) 100%);
}

.section-local .icon-card:nth-child(2n) {
  background: linear-gradient(180deg, rgba(248, 244, 236, 0.98) 0%, rgba(239, 245, 249, 0.98) 100%);
}

.section-local .surface-card {
  padding: 1.55rem 1.6rem;
  border-top: 0;
  border-left: 5px solid #ddb776;
  background: linear-gradient(180deg, #fffdf9 0%, #fbf1e5 100%);
}

.section-image-panel,
.editorial-image-strip {
  margin: 1.35rem 0 0;
  overflow: hidden;
  border: 1px solid rgba(221, 183, 118, 0.34);
  border-radius: 24px;
  background: linear-gradient(180deg, #fffdfa 0%, #f7efe4 100%);
  box-shadow: var(--shadow);
}

.section-image-panel img,
.editorial-image-strip img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section-local .section-image-panel img {
  aspect-ratio: 16 / 7;
  min-height: 260px;
}

.section-image-caption {
  margin: 0;
  padding: 0.9rem 1rem 1rem;
  color: var(--text-soft);
  font-size: 0.97rem;
  line-height: 1.6;
  background: rgba(255, 251, 246, 0.92);
}

.section-community .story-card {
  position: relative;
  padding: 1.35rem 1.25rem 1.3rem;
  border-top-width: 0;
  border-left: 4px solid rgba(203, 90, 85, 0.78);
  background: linear-gradient(180deg, #fffdf9 0%, #fff3e7 100%);
}

.section-community .story-card:nth-child(3n+2) {
  border-left-color: #d9b36a;
  background: linear-gradient(180deg, #fffdfa 0%, #eef4f8 100%);
}

.section-community .story-card:nth-child(4n) {
  border-radius: 30px 18px 24px 18px;
}

.member-card-photo {
  display: block;
  width: 88px;
  height: 88px;
  margin: 0 0 1rem;
  border: 1px solid rgba(221, 183, 118, 0.34);
  border-radius: 26px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 14px 28px rgba(28, 34, 42, 0.08);
}

.section-community .story-card.has-member-photo {
  padding-top: 1.1rem;
}

.section-community .story-card.has-member-photo h3 {
  margin-top: 0.1rem;
}

.section-compare .table-card,
.section-features .tip-box,
.section-profile .notice-box,
.section-safety .checklist-box {
  box-shadow: none;
}

.editorial-image-strip {
  margin-bottom: 1.3rem;
  border-radius: 22px;
}

.editorial-image-strip img {
  aspect-ratio: 16 / 5;
  min-height: 180px;
}

.section-journey .card-grid.cols-4 {
  gap: 1rem;
}

.section-journey .info-card {
  position: relative;
  padding: 1.25rem 1.15rem 1.2rem;
  border-top: 0;
  border-left: 4px solid var(--accent);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffefb 0%, #f7eee3 100%);
}

.section-journey .info-card::before {
  content: "";
  position: absolute;
  right: 1rem;
  top: 1rem;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ddb776;
}

.list-card {
  border-top-width: 0;
  border-left: 5px solid #d7a866;
  background: linear-gradient(180deg, #fffdf9 0%, #f8eee0 100%);
}

.section-messages .list-card:first-child {
  background: linear-gradient(180deg, #fffefb 0%, #eef4f8 100%);
  border-left-color: #7ea0b9;
}

.section-messages .list-card:last-child {
  background: linear-gradient(180deg, #fffdf9 0%, #f9efe3 100%);
}

.table-card {
  border-radius: 26px;
  background: linear-gradient(180deg, #fffefb 0%, #f8f2e8 100%);
}

.table-card::before {
  content: "";
  display: block;
  height: 6px;
  margin: -1px -1px 0;
  border-radius: 26px 26px 0 0;
  background: linear-gradient(90deg, var(--accent) 0%, #ddb776 100%);
}

.checklist-box,
.tip-box,
.notice-box {
  position: relative;
  border-radius: 24px;
  box-shadow: none;
}

.checklist-box::before,
.tip-box::before,
.notice-box::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  border-radius: 24px 0 0 24px;
}

.checklist-box::before {
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.tip-box::before {
  background: linear-gradient(180deg, #ddb776 0%, #c99a57 100%);
}

.notice-box::before {
  background: linear-gradient(180deg, #7ea0b9 0%, #5c7f98 100%);
}

.checklist-box,
.section-safety .checklist-box {
  background: linear-gradient(180deg, #fff9f1 0%, #f3e6d6 100%);
}

.safety-photo-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.safety-photo-panel .section-image-panel {
  margin-top: 0;
}

.safety-photo-panel .section-image-panel img {
  aspect-ratio: 4 / 3;
  min-height: 220px;
}

.tip-box {
  background: linear-gradient(180deg, #fffdf8 0%, #f5efe3 100%);
}

.notice-box {
  background: linear-gradient(180deg, #fcfaf6 0%, #edf3f7 100%);
}

.section-date-ideas .info-card {
  padding: 1rem 1rem 1.05rem;
  border-top: 0;
  border-left: 4px solid #ddb776;
  border-radius: 16px;
  background: linear-gradient(180deg, #fffdf9 0%, #fbf3e9 100%);
  overflow: hidden;
}

.section-date-ideas .info-card:nth-child(2n) {
  border-left-color: var(--accent);
}

.date-card-photo {
  display: block;
  width: calc(100% + 2rem);
  height: 150px;
  margin: -1rem -1rem 0.95rem;
  border-bottom: 1px solid rgba(221, 183, 118, 0.2);
  border-radius: 16px 16px 0 0;
  object-fit: cover;
  object-position: center;
}

.section-photo-feature {
  padding-top: 1.2rem;
}

.photo-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1fr);
  gap: 1.6rem;
  align-items: center;
}

.photo-feature-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
}

.photo-feature-media {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(221, 183, 118, 0.36);
  background: linear-gradient(180deg, #fffdf9 0%, #f7eee2 100%);
  box-shadow: var(--shadow);
}

.photo-feature-media::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: 92px;
  height: 92px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.photo-feature-media img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

.photo-feature-copy {
  position: relative;
  padding: 1.9rem 1.8rem;
  border-radius: 28px;
}

.photo-feature-copy::before {
  content: "";
  position: absolute;
  inset: 1rem auto auto 1rem;
  width: 64px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f0c880 0%, #d6a55c 100%);
}

.photo-feature-copy .kicker {
  margin-top: 0.35rem;
}

.photo-feature-copy h2 {
  max-width: 18ch;
}

.photo-feature-copy p:last-child {
  margin-bottom: 0;
}

.section-final-cta .cta-band {
  border-radius: 30px;
  border-top: 4px solid rgba(242, 203, 134, 0.9);
  background:
    linear-gradient(135deg, rgba(203, 90, 85, 0.97) 0%, rgba(175, 67, 66, 0.99) 100%);
}

.section-final-cta .button-secondary {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.7);
}

.icon-card svg,
.feature-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 1rem;
  padding: 0.45rem;
  border-radius: 12px;
  color: #fff;
  background: var(--accent);
  box-sizing: content-box;
}

.icon-card h3,
.story-card h3,
.info-card h3,
.list-card h3 {
  margin-bottom: 0.65rem;
}

.split-list,
.check-list,
.compact-list,
.pill-list,
.table-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.split-list li,
.check-list li,
.compact-list li {
  position: relative;
  margin-bottom: 0.8rem;
  padding-left: 1.45rem;
}

.split-list li::before,
.check-list li::before,
.compact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.pill-list li {
  padding: 0.78rem 1rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-soft);
  box-shadow: var(--shadow);
}

.kicker {
  margin: 0 0 0.8rem;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 0.8rem;
  border-radius: 20px;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background: #fffdf9;
}

th,
td {
  padding: 1rem 1rem 1.05rem;
  border-bottom: 1px solid var(--line-soft);
  text-align: left;
  vertical-align: top;
}

th {
  color: #fff;
  background: var(--navy);
  font-size: 0.95rem;
}

td strong {
  color: var(--heading);
}

.checklist-box,
.tip-box,
.notice-box,
.quote-card,
.cta-band {
  padding: 1.55rem;
}

.checklist-box,
.tip-box,
.notice-box {
  background: linear-gradient(180deg, #fff9f1 0%, #f4e7d7 100%);
}

.quote-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: rgba(255, 255, 255, 0.92);
}

.quote-card h2,
.quote-card h3,
.quote-card a {
  color: #fff;
}

.quote-card .lead {
  color: rgba(255, 255, 255, 0.82);
}

.cta-band {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
  border: 0;
  background:
    linear-gradient(135deg, rgba(203, 90, 85, 0.96) 0%, rgba(175, 67, 66, 0.98) 100%);
  color: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-strong);
}

.cta-band h2,
.cta-band h3,
.cta-band p,
.cta-band a {
  color: #fff;
}

.cta-band .button-primary {
  background: #fff;
  color: var(--accent-dark);
  box-shadow: none;
}

.cta-band .button-secondary {
  color: #fff;
  min-height: 48px;
  padding: 0.9rem 1.15rem;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background: linear-gradient(180deg, #fffdf9 0%, #fff5ea 100%);
  box-shadow: var(--shadow);
}

.faq-item summary {
  cursor: pointer;
  padding: 1.2rem 1.4rem;
  font-weight: 700;
  color: var(--heading);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary {
  background: rgba(203, 90, 85, 0.07);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  padding: 0 1.4rem 1.2rem;
  color: var(--text-soft);
}

.breadcrumbs {
  padding: 1.15rem 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  content: "/";
  margin-right: 0.55rem;
  color: #a99b8d;
}

.section-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.section-nav a {
  padding: 0.78rem 1rem;
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.88);
  color: var(--heading);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.media-frame {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}

.media-frame img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
}

.site-footer {
  margin-top: 4rem;
  padding: 3.3rem 0 2.4rem;
  background: linear-gradient(180deg, #212427 0%, #14171b 100%);
  color: rgba(255, 255, 255, 0.82);
}

.site-footer .brand {
  color: #fff;
}

.site-footer .brand-mark {
  background: var(--accent);
}

.site-footer .brand-text span,
.site-footer .footer-note,
.site-footer .footer-bottom {
  color: rgba(255, 255, 255, 0.68);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 1.4rem;
}

.footer-links a,
.footer-bottom a {
  color: #fff;
  font-weight: 600;
}

.footer-links a:hover,
.footer-bottom a:hover,
.footer-links a:focus-visible,
.footer-bottom a:focus-visible {
  color: #f6d6c6;
}

.footer-note {
  margin-top: 1rem;
  font-size: 0.94rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.8rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.visually-muted {
  color: var(--text-soft);
}

.page-intro {
  max-width: 720px;
}

.align-start {
  align-items: start;
}

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .card-grid.cols-4,
  .story-grid,
  .mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid.cols-3,
  .two-col,
  .feature-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-note,
  .hero-summary {
    grid-template-columns: 1fr;
  }

  .hero-editorial .hero-panel {
    display: none;
  }

  .photo-feature,
  .photo-feature-reverse {
    grid-template-columns: 1fr;
  }

  .section-local .section-image-panel img,
  .editorial-image-strip img,
  .safety-photo-panel .section-image-panel img {
    min-height: 0;
  }

  .trust-strip .stat-card:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }
}

@media (max-width: 980px) {
  .page-home .two-col,
  .page-home .card-grid.cols-4,
  .page-home .card-grid.cols-3,
  .page-home .card-grid.cols-2,
  .page-home .mini-grid,
  .page-home .stats-grid,
  .page-home .photo-feature,
  .page-home .photo-feature-reverse,
  .page-home .footer-grid,
  .page-home .footer-links,
  .page-home .hero-note,
  .page-home .hero-summary {
    grid-template-columns: 1fr !important;
  }

  .page-home .two-col,
  .page-home .photo-feature,
  .page-home .photo-feature-reverse {
    gap: 1.2rem;
  }

  .page-home .two-col > *,
  .page-home .card-grid > *,
  .page-home .mini-grid > *,
  .page-home .stats-grid > * {
    min-width: 0;
  }

  .page-home .section-members .checklist-box,
  .page-home .section-profile .notice-box,
  .page-home .section-features .tip-box,
  .page-home .section-safety .safety-photo-panel,
  .page-home .section-safety .checklist-box {
    width: 100%;
  }

  .page-home .section-members h2,
  .page-home .section-members p,
  .page-home .section-profile p,
  .page-home .section-features p,
  .page-home .section-safety p {
    max-width: none;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 17px;
  }

  .header-inner {
    min-height: 74px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.7rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.3rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 251, 245, 0.98);
    box-shadow: var(--shadow-strong);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.9rem 0.8rem;
    border-left: 4px solid transparent;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible,
  .site-nav a[aria-current="page"] {
    background: rgba(203, 90, 85, 0.08);
    border-left-color: var(--accent);
  }

  .header-actions .button-secondary {
    display: none;
  }

  .hero,
  .page-hero {
    padding-top: 2.9rem;
  }

  .hero-grid,
  .page-hero-grid,
  .stats-grid,
  .card-grid.cols-4,
  .card-grid.cols-3,
  .card-grid.cols-2,
  .story-grid,
  .mini-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .section-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.25rem;
  }

  .section-nav a {
    white-space: nowrap;
  }

  .button-group {
    flex-direction: column;
    align-items: stretch;
  }

  .button-primary {
    width: 100%;
  }

  .button-secondary {
    width: auto;
    align-self: center;
  }

  .photo-feature-media img {
    min-height: 280px;
  }

  .photo-feature-copy {
    padding: 1.45rem 1.3rem;
  }

  .date-card-photo {
    height: 144px;
  }

  th,
  td {
    padding: 0.9rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 1.1rem));
  }

  .brand-text strong {
    font-size: 0.9rem;
  }

  .brand-text span {
    font-size: 0.68rem;
  }

  .hero-panel img,
  .image-card img,
  .media-frame img {
    min-height: 240px;
  }

  h1 {
    font-size: clamp(2rem, 12vw, 2.8rem);
    max-width: none;
  }

  h2 {
    font-size: clamp(1.6rem, 9vw, 2.1rem);
  }
}
