:root {
  --ink: #202523;
  --muted: #66706b;
  --navy: #173e37;
  --navy-dark: #0f2d28;
  --rose: #b6533c;
  --rose-dark: #94412f;
  --gold: #d6b36b;
  --cream: #f7f4ee;
  --paper: #fffdf9;
  --sage: #dce7e1;
  --sage-ink: #4e5a54;
  --blue-soft: #edf2ee;
  --line: #d6d7d2;
  --white: #ffffff;
  --shadow: 0 14px 34px rgba(24, 48, 43, 0.12);
  --content: 1240px;
  --reading: 790px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

main,
section,
.hero-copy,
.brand-copy,
.journal-card,
.journal-card-copy {
  min-width: 0;
}

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

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

button,
input,
select {
  font: inherit;
}

h1,
h2,
h3,
blockquote {
  font-family: "Iowan Old Style", Baskerville, Georgia, "Times New Roman", serif;
  font-weight: 600;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 4px solid #f2b94f;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  left: 18px;
  top: -90px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--navy-dark);
  border-radius: 4px;
  font-weight: 800;
}

.skip-link:focus {
  top: 14px;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 94px;
  padding: 14px clamp(20px, 4vw, 64px);
  color: var(--ink);
  background: rgba(255, 253, 249, 0.98);
  border-bottom: 2px solid #e5e8e6;
}

.site-header.is-scrolled {
  box-shadow: 0 7px 20px rgba(28, 52, 59, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: max-content;
}

.brand-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  flex: 0 0 auto;
  color: var(--navy);
  background: transparent;
  border: 1px solid var(--navy);
  border-radius: 2px;
  font-family: "Avenir Next", Avenir, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  color: var(--navy-dark);
  font-family: "Iowan Old Style", Baskerville, Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--rose-dark);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
  font-size: 0.88rem;
  font-weight: 800;
}

.site-nav a {
  padding: 10px 2px;
  color: #35444a;
  border-bottom: 3px solid transparent;
}

.site-nav a:hover {
  color: var(--rose-dark);
  border-color: var(--rose);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.login-link {
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 28px;
  border: 2px solid transparent;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}

.header-cta {
  color: var(--white);
  background: var(--rose);
}

.header-cta:hover {
  background: var(--rose-dark);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  padding: 0;
  color: var(--navy);
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 3px;
  margin: 6px auto;
  background: currentColor;
}

/* Shared controls and labels */
.kicker,
.eyebrow {
  margin: 0 0 15px;
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button-primary {
  color: var(--white);
  background: var(--rose);
}

.button-primary:hover {
  background: var(--rose-dark);
}

.button-outline {
  color: var(--navy);
  background: var(--white);
  border-color: var(--navy);
}

.button-outline:hover {
  color: var(--white);
  background: var(--navy);
}

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

.button-dark:hover {
  background: var(--navy-dark);
}

.button-secondary,
.legal-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--navy);
}

.text-arrow,
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rose-dark);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.text-arrow.dark {
  color: var(--navy);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
}

.section-label span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.section-label p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 900;
}

/* Home hero */
.magazine-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: center;
  min-height: 690px;
  padding: clamp(58px, 8vw, 104px) max(24px, calc((100vw - var(--content)) / 2));
  background: var(--cream);
  border-bottom: 1px solid #eadfce;
}

.hero-copy {
  max-width: 730px;
}

.hero-copy h1 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(2.65rem, 4.4vw, 4.25rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
}

.hero-intro {
  max-width: 680px;
  margin: 28px 0 0;
  color: #3f5057;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.05rem, 1.35vw, 1.2rem);
  font-weight: 400;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 34px;
}

.hero-portrait {
  display: grid;
  align-self: stretch;
  grid-template-rows: minmax(480px, 1fr) auto;
  min-height: 590px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-portrait > img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center 24%;
}

.portrait-caption {
  display: grid;
  gap: 5px;
  padding: 22px 24px;
  color: var(--ink);
  background: var(--white);
  border-top: 5px solid var(--rose);
}

.portrait-caption strong {
  color: var(--navy-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

.portrait-caption span {
  color: var(--muted);
  font-size: 0.86rem;
}

/* Starting paths */
.pathways {
  padding: clamp(72px, 9vw, 116px) max(24px, calc((100vw - var(--content)) / 2));
  background: var(--paper);
}

.pathways-intro {
  max-width: 900px;
  margin: 28px 0 44px;
}

.pathways-intro h2,
.places-heading h2,
.faq-heading h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.pathways-intro p,
.places-heading p,
.faq-heading > p:last-child {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.pathway-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.pathway-card {
  display: grid;
  grid-template-columns: 52px minmax(220px, 0.75fr) minmax(0, 1.25fr) auto;
  gap: 26px;
  min-height: 0;
  align-items: center;
  padding: clamp(30px, 3vw, 42px);
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--line);
  border-top: 8px solid var(--rose);
  border-radius: var(--radius);
  box-shadow: 0 6px 16px rgba(28, 52, 59, 0.06);
}

.pathway-card.teal {
  border-top-color: var(--navy);
}

.pathway-card.sand {
  border-top-color: var(--gold);
}

.pathway-card:hover {
  border-color: var(--navy);
  border-top-color: var(--navy);
  box-shadow: var(--shadow);
}

.card-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 5px;
  font-weight: 900;
}

.pathway-card h3 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(1.55rem, 2.1vw, 2.05rem);
  line-height: 1.16;
}

.pathway-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.pathway-card strong {
  margin: 0;
  color: var(--rose-dark);
  font-size: 0.88rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Mature difference */
.editorial-statement {
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  min-height: 680px;
  background: var(--sage);
  border-top: 1px solid #d4e0da;
  border-bottom: 1px solid #d4e0da;
}

.statement-image {
  display: grid;
  grid-template-rows: minmax(500px, 1fr) auto;
  min-height: 620px;
  background: var(--white);
}

.statement-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.statement-image span {
  padding: 20px 28px;
  color: var(--navy-dark);
  background: var(--white);
  border-top: 4px solid var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  font-style: italic;
}

.statement-copy {
  align-self: center;
  max-width: 900px;
  padding: clamp(56px, 7vw, 96px);
}

.statement-copy h2,
.safety-copy h2,
.closing-copy h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(2.15rem, 3.5vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.statement-lead {
  max-width: 760px;
  margin: 28px 0 16px;
  color: #34474e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.14rem, 1.8vw, 1.4rem);
  line-height: 1.7;
}

.statement-copy > p:not(.kicker):not(.statement-lead) {
  max-width: 760px;
  color: var(--muted);
}

.statement-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 34px;
}

.statement-points div {
  padding: 22px;
  background: var(--white);
  border: 1px solid #cbd8d1;
  border-radius: 6px;
}

.statement-points strong {
  display: block;
  margin-bottom: 8px;
  color: var(--rose-dark);
  font-size: 0.82rem;
}

.statement-points span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

/* Dating resources */
.featured-journal {
  padding: clamp(72px, 9vw, 116px) max(24px, calc((100vw - var(--content)) / 2));
  background: var(--paper);
}

.journal-heading {
  display: flex;
  gap: 34px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 42px;
}

.journal-heading > div {
  max-width: 870px;
}

.journal-heading h2 {
  margin: 20px 0 0;
  color: var(--navy-dark);
  font-size: clamp(2.1rem, 3.35vw, 3.15rem);
  line-height: 1.1;
}

.journal-heading > a {
  flex: 0 0 auto;
  margin-bottom: 7px;
  color: var(--rose-dark);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.journal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.journal-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  min-width: 0;
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.journal-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
}

.journal-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 310px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

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

.journal-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.article-meta {
  margin: 0 0 13px;
  color: var(--rose-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.journal-card h3 {
  margin: 0 0 16px;
  color: var(--navy-dark);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.18;
}

.journal-card-copy > p:not(.article-meta) {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.read-more {
  margin-top: auto;
  font-size: 0.84rem;
}

/* Safety */
.safety-checkpoint {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  background: var(--blue-soft);
  border-top: 1px solid #d4e0e4;
  border-bottom: 1px solid #d4e0e4;
}

.safety-photo {
  min-height: 660px;
}

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

.safety-copy {
  align-self: center;
  max-width: 900px;
  padding: clamp(56px, 7vw, 96px);
}

.safety-copy > p:not(.kicker) {
  max-width: 690px;
  color: var(--muted);
}

.safety-steps {
  display: grid;
  gap: 0;
  margin: 34px 0;
  padding: 0;
  list-style: none;
}

.safety-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 2px solid #c7d5d9;
}

.safety-steps li:last-child {
  border-bottom: 2px solid #c7d5d9;
}

.safety-steps li > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--rose);
  border-radius: 5px;
  font-weight: 900;
}

.safety-steps strong {
  color: var(--navy-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.safety-steps p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Locations */
.places-preview {
  padding: clamp(72px, 9vw, 116px) max(24px, calc((100vw - var(--content)) / 2));
  background: var(--paper);
}

.places-heading {
  max-width: 900px;
  margin: 28px 0 44px;
}

.place-list {
  border-top: 2px solid var(--navy);
}

.place-list a {
  display: grid;
  grid-template-columns: 150px minmax(210px, 0.8fr) minmax(260px, 1.2fr) 40px;
  gap: 24px;
  align-items: center;
  min-height: 88px;
  padding: 18px 14px;
  border-bottom: 1px solid var(--line);
}

.place-list a:nth-child(even) {
  background: #f5f8f6;
}

.place-list a:hover {
  color: var(--white);
  background: var(--navy);
}

.place-list span {
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.place-list a:hover span {
  color: #ffd4ca;
}

.place-list strong {
  color: var(--navy-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.place-list a:hover strong {
  color: var(--white);
}

.place-list em {
  color: var(--muted);
  font-size: 0.86rem;
  font-style: normal;
}

.place-list a:hover em {
  color: rgba(255, 255, 255, 0.85);
}

.place-list b {
  color: #7a898e;
  font-size: 0.76rem;
}

.place-list a:hover b {
  color: var(--white);
}

.places-preview > .text-arrow {
  margin-top: 34px;
}

/* Date ideas */
.date-ideas {
  padding: clamp(72px, 9vw, 116px) max(24px, calc((100vw - var(--content)) / 2));
  background: var(--cream);
  border-top: 1px solid #eadfce;
  border-bottom: 1px solid #eadfce;
}

.date-heading {
  max-width: 980px;
  margin-bottom: 42px;
}

.date-heading h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
  line-height: 1.1;
}

.date-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.date-card,
.date-card.large {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  grid-template-rows: none;
  grid-row: auto;
  min-height: 0;
  overflow: hidden;
  background: var(--white);
  border: 2px solid #dfd5c6;
  border-radius: var(--radius);
}

.date-card img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
}

.date-card > div {
  padding: 26px;
}

.date-card span {
  color: var(--rose-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.date-card h3 {
  margin: 10px 0 0;
  color: var(--navy-dark);
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.2;
}

.date-ideas > .button {
  margin-top: 34px;
}

/* FAQ */
.faq-home {
  display: block;
  padding: clamp(72px, 9vw, 116px) max(24px, calc((100vw - var(--content)) / 2));
  background: var(--paper);
}

.faq-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.faq-heading h2 {
  font-size: clamp(2.1rem, 3.2vw, 3rem);
}

.faq-list {
  max-width: 960px;
  border-top: 2px solid var(--navy);
}

.faq-list details {
  border-bottom: 2px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 84px;
  padding: 18px 4px;
  color: var(--navy-dark);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  color: var(--rose-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list summary span {
  color: var(--rose-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
}

.faq-list details > p {
  max-width: 760px;
  margin: -4px 36px 28px 62px;
  color: var(--muted);
}

/* Closing call to action */
.closing-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 590px;
  background: var(--sage);
}

.closing-image {
  min-height: 520px;
}

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

.closing-copy {
  align-self: center;
  max-width: 820px;
  padding: clamp(56px, 7vw, 96px);
}

.closing-copy > p:not(.kicker) {
  max-width: 660px;
  margin: 24px 0 30px;
  color: var(--muted);
}

/* Content, blog and location pages */
.content-page {
  background: var(--paper);
}

.content-hero,
.article-hero {
  padding: clamp(62px, 8vw, 106px) max(24px, calc((100vw - var(--content)) / 2));
  color: var(--ink);
  background: var(--sage);
  border-bottom: 8px solid var(--rose);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--sage-ink);
  font-size: 0.77rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--rose-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.content-hero .eyebrow,
.article-hero .eyebrow {
  color: var(--rose-dark);
}

.content-hero h1,
.article-hero h1 {
  max-width: 1050px;
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(2.55rem, 4.6vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.content-hero > p:last-child,
.article-lead {
  max-width: 850px;
  margin: 26px 0 0;
  color: var(--sage-ink);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.listing-section {
  padding: clamp(68px, 8vw, 110px) max(24px, calc((100vw - var(--content)) / 2));
  background: var(--cream);
}

.location-note {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  margin: 0 0 38px;
  padding: 28px;
  background: var(--white);
  border: 2px solid var(--line);
  border-left: 8px solid var(--gold);
}

.location-note h2 {
  margin: 0;
  color: var(--navy-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

.location-note p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
}

.article-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.article-card {
  min-height: 260px;
  padding: clamp(28px, 3.5vw, 44px);
  background: var(--white);
  border: 2px solid var(--line);
  border-top: 7px solid var(--navy);
  border-radius: var(--radius);
}

.article-card:hover {
  border-color: var(--rose);
  box-shadow: var(--shadow);
}

.article-card > span {
  color: var(--rose-dark);
  font-size: 0.77rem;
  font-weight: 900;
}

.article-card h2 {
  margin: 26px 0 14px;
  color: var(--navy-dark);
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.15;
}

.article-card p {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.article-shell {
  background: var(--paper);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(46px, 6vw, 84px);
  align-items: start;
  width: min(var(--content), calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 110px) 0;
}

.article-content {
  width: 100%;
  max-width: var(--reading);
  color: #304148;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 1.86;
}

.article-image {
  width: 100%;
  max-height: 570px;
  margin: 0 0 52px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-content h2 {
  margin: 54px 0 18px;
  color: var(--navy-dark);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.2;
}

.article-content h3 {
  margin: 34px 0 10px;
  color: var(--navy);
  font-size: 1.32rem;
  line-height: 1.25;
}

.article-content p {
  margin: 0 0 24px;
}

.article-content a:not(.button) {
  color: var(--rose-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.article-content blockquote {
  margin: 38px 0;
  padding: 28px 32px;
  color: var(--navy-dark);
  background: var(--sage);
  border-left: 7px solid var(--navy);
  font-size: 1.14rem;
  line-height: 1.75;
}

.article-sidebar {
  position: sticky;
  top: 120px;
  display: grid;
  padding: 26px;
  background: var(--cream);
  border: 2px solid var(--line);
  border-top: 7px solid var(--rose);
}

.article-sidebar h2 {
  margin: 0 0 14px;
  color: var(--navy-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
}

.article-sidebar a {
  padding: 15px 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  border-top: 1px solid var(--line);
}

.article-sidebar a:hover {
  color: var(--rose-dark);
  text-decoration: underline;
}

.inline-cta {
  margin-top: 58px;
  padding: clamp(32px, 4.5vw, 50px);
  color: var(--ink);
  background: var(--sage);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.inline-cta h2 {
  margin: 0 0 14px;
  color: var(--navy-dark);
}

.inline-cta p {
  color: var(--sage-ink);
}

.legal-content {
  width: min(850px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 106px) 0;
}

.legal-content h2 {
  margin: 42px 0 12px;
  color: var(--navy-dark);
  font-size: clamp(1.55rem, 2.8vw, 2.25rem);
  line-height: 1.2;
}

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

.legal-content p {
  color: #3d4d53;
}

.legal-content a {
  color: var(--rose-dark);
  font-weight: 800;
  text-decoration: underline;
}

.privacy-policy {
  width: min(980px, calc(100% - 48px));
}

.privacy-policy .policy-updated {
  margin: 0 0 34px;
  color: var(--navy-dark);
}

.privacy-policy .policy-appendix {
  margin-top: 74px;
  padding-top: 30px;
  border-top: 2px solid var(--line);
}

.privacy-policy h3 {
  margin: 30px 0 10px;
  color: var(--navy-dark);
  font-family: "Iowan Old Style", Baskerville, Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.3;
}

.privacy-policy p {
  margin: 0 0 20px;
  line-height: 1.82;
}

.error-page {
  min-height: 62vh;
}

/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 8vw, 112px);
  padding: clamp(64px, 8vw, 104px) max(24px, calc((100vw - var(--content)) / 2)) 30px;
  color: var(--ink);
  background: var(--sage);
  border-top: 8px solid var(--rose);
}

.footer-brand .brand-mark {
  color: var(--navy-dark);
  background: transparent;
  border: 1px solid var(--navy);
}

.footer-brand .brand-copy small {
  color: var(--rose-dark);
}

.footer-brand .brand-copy strong {
  color: var(--navy-dark);
}

.footer-intro h2 {
  max-width: 620px;
  margin: 36px 0 18px;
  color: var(--navy-dark);
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.12;
}

.footer-intro > p {
  max-width: 610px;
  color: var(--sage-ink);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-self: center;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-links h3 {
  margin: 0 0 12px;
  color: var(--rose-dark);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
}

.footer-links a {
  padding: 4px 0;
  color: var(--navy-dark);
  font-size: 0.86rem;
}

.footer-links a:hover {
  color: var(--rose-dark);
  text-decoration: underline;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin: 40px 0 0;
  padding-top: 24px;
  color: var(--sage-ink);
  border-top: 1px solid var(--line);
  font-size: 0.76rem;
}

/* Tablet */
@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 82px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
    display: none;
  }

  .site-header.is-open {
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav {
    position: absolute;
    z-index: 42;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    width: 100%;
    justify-content: stretch;
    justify-items: stretch;
    padding: 14px clamp(20px, 4vw, 64px) 0;
    background: var(--paper);
    border-top: 2px solid var(--line);
  }

  .site-header.is-open .site-nav a {
    min-height: 52px;
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-header.is-open .header-actions {
    position: absolute;
    z-index: 42;
    top: calc(100% + 120px);
    right: 0;
    left: 0;
    display: flex;
    justify-content: flex-start;
    padding: 14px clamp(20px, 4vw, 64px) 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 24px rgba(24, 48, 43, 0.12);
  }

  .magazine-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  }

  .pathway-grid,
  .journal-grid,
  .date-gallery {
    grid-template-columns: 1fr;
  }

  .pathway-card {
    min-height: 0;
  }

  .journal-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  }

  .journal-image {
    height: 100%;
    min-height: 320px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .date-card,
  .date-card.large {
    grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
    grid-template-rows: none;
  }

  .date-card img {
    height: 100%;
    min-height: 280px;
  }

  .statement-points {
    grid-template-columns: 1fr;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-content {
    max-width: 850px;
  }

  .article-sidebar {
    position: static;
    max-width: 850px;
  }
}

@media (max-width: 820px) {
  .magazine-hero,
  .editorial-statement,
  .safety-checkpoint,
  .closing-feature,
  .faq-home,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-portrait,
  .statement-image,
  .safety-photo,
  .closing-image {
    min-height: 480px;
  }

  .hero-portrait {
    grid-template-rows: 500px auto;
  }

  .statement-image {
    grid-template-rows: 480px auto;
  }

  .safety-photo {
    height: 500px;
  }

  .journal-heading {
    display: grid;
    gap: 18px;
  }

  .journal-heading > a {
    margin: 0;
  }

  .place-list a {
    grid-template-columns: 110px 1fr 38px;
  }

  .place-list em {
    display: none;
  }

  .faq-heading {
    max-width: 760px;
  }

  .article-card-grid {
    grid-template-columns: 1fr;
  }

  .location-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

/* Mobile */
@media (max-width: 620px) {
  body {
    font-size: 18px;
    line-height: 1.68;
  }

  html {
    scroll-padding-top: 82px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) 46px;
    gap: 10px;
    padding: 10px 12px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 3px;
    font-size: 0.78rem;
    letter-spacing: -0.04em;
    line-height: 1;
    white-space: nowrap;
  }

  .brand {
    max-width: 100%;
    min-width: 0;
    gap: 9px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    overflow: hidden;
    font-size: 0.82rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy small {
    font-size: 0.55rem;
    white-space: nowrap;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
  }

  .site-header.is-open .header-actions {
    align-items: stretch;
    flex-direction: column;
    padding-right: 14px;
    padding-left: 14px;
  }

  .site-header.is-open .header-cta {
    width: 100%;
  }

  .login-link {
    min-height: 48px;
    padding: 10px 0;
  }

  .magazine-hero,
  .pathways,
  .featured-journal,
  .places-preview,
  .date-ideas,
  .faq-home,
  .listing-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .magazine-hero {
    min-height: 0;
    padding-top: 38px;
    padding-bottom: 54px;
  }

  .hero-copy h1 {
    font-size: clamp(2.45rem, 9vw, 3rem);
    line-height: 1.1;
    letter-spacing: -0.015em;
  }

  .hero-copy .kicker {
    margin-bottom: 12px;
    font-size: 0.7rem;
    letter-spacing: 0.035em;
  }

  .hero-intro {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-arrow {
    align-self: flex-start;
    font-size: 0.96rem;
  }

  .hero-portrait {
    min-height: 0;
    grid-template-rows: 450px auto;
  }

  .pathways-intro h2,
  .places-heading h2,
  .faq-heading h2,
  .statement-copy h2,
  .safety-copy h2,
  .closing-copy h2,
  .date-heading h2,
  .journal-heading h2 {
    font-size: clamp(2rem, 8.5vw, 2.7rem);
    line-height: 1.12;
  }

  .pathway-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    flex-direction: column;
    padding: 28px;
  }

  .pathway-card h3 {
    margin-top: 8px;
  }

  .editorial-statement,
  .safety-checkpoint,
  .closing-feature {
    display: block;
  }

  .statement-image,
  .closing-image {
    min-height: 0;
    grid-template-rows: 380px auto;
  }

  .safety-photo {
    min-height: 0;
    height: 380px;
  }

  .statement-copy,
  .safety-copy,
  .closing-copy {
    padding: 54px 20px;
  }

  .statement-points {
    grid-template-columns: 1fr;
  }

  .journal-card,
  .date-card,
  .date-card.large {
    display: block;
  }

  .journal-image,
  .date-card img {
    width: 100%;
    height: 270px;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .place-list a {
    grid-template-columns: 1fr auto;
    gap: 5px 14px;
    padding: 18px 8px;
  }

  .place-list span {
    grid-column: 1 / -1;
  }

  .faq-list summary {
    grid-template-columns: 34px 1fr auto;
    gap: 8px;
    min-height: 78px;
    font-size: 1.04rem;
  }

  .faq-list details > p {
    margin-left: 42px;
    margin-right: 10px;
  }

  .content-hero,
  .article-hero {
    padding: 54px 20px 64px;
  }

  .content-hero h1,
  .article-hero h1 {
    font-size: clamp(2.35rem, 8.5vw, 3rem);
  }

  .article-layout {
    width: min(100% - 36px, var(--content));
  }

  .article-content {
    font-size: 1.05rem;
    line-height: 1.8;
  }

  .article-content h2 {
    font-size: clamp(1.75rem, 8.6vw, 2.35rem);
  }

  .inline-cta {
    padding: 30px 24px;
  }

  .location-note {
    padding: 24px;
  }

  .article-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 390px) {
  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 0.88rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.listing-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.listing-heading h2 {
  margin: 0;
  color: var(--navy-dark);
  font-size: clamp(2.2rem, 3.5vw, 3.35rem);
  line-height: 1.08;
}

.listing-heading > p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
}

.listing-section-alt {
  background: var(--cream);
  border-top: 1px solid #eadfce;
}

.about-content {
  max-width: 880px;
}
