@font-face { font-family: "Inter"; src: url("../fonts/inter-latin.woff2") format("woff2"); font-style: normal; font-weight: 400 700; font-display: swap; }
@font-face { font-family: "Playfair Display"; src: url("../fonts/playfair-display-latin.woff2") format("woff2"); font-style: normal; font-weight: 500 700; font-display: swap; }

:root {
  --navy: #081018;
  --navy-deep: #050d14;
  --gold: #d4a64a;
  --gold-light: #e8c06a;
  --gold-text: #8f6619;
  --ivory: #f8f5ef;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, sans-serif;
  --content: 1180px;
  --reading: 740px;
  --space-xs: .5rem;
  --space-sm: .75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --z-content: 2;
  --z-overlay: 3;
  --z-nav: 10;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ivory); color: #2c2c2c; font-family: var(--sans); }
button, a { font: inherit; }
button:focus-visible, a:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

.section { padding: 80px 5%; }
.section-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.section-content { position: relative; z-index: var(--z-content); width: 100%; }
.center { text-align: center; }
.section-followup { max-width: 620px; margin: 18px auto 0; color: #62686c; font-size: .875rem; line-height: 1.65; }
.button { display: inline-block; padding: 14px 32px; border: 1.5px solid transparent; border-radius: 4px; cursor: pointer; font-size: 15px; font-weight: 600; text-align: center; text-decoration: none; transition: .2s ease; }
.button-gold { background: var(--gold); color: var(--navy); }
.button-gold:hover { background: var(--gold-light); }
.button-outline { border-color: rgba(255,255,255,.6); background: transparent; color: white; }
.button-outline:hover { border-color: var(--gold); color: var(--gold); }
.button-small { min-height: 44px; padding: 10px 20px; font-size: 13px; }
.button-large { padding: 16px 44px; font-size: 16px; }
.button-gold-outline { border-color: var(--gold); background: transparent; color: var(--gold); }
.button-gold-outline:hover { background: var(--gold); color: var(--navy); }

.hero { position: relative; height: 900px; overflow: hidden; background: var(--navy); }
.hero-bg { opacity: .55; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(8,16,24,.92) 45%, rgba(8,16,24,.3)); }
.navbar { position: absolute; z-index: var(--z-nav); top: 0; left: 0; right: 0; padding: 0 5%; }
.nav-row { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 24px; }
.logo { display: flex; flex-direction: column; flex-shrink: 0; line-height: 1; text-decoration: none; text-transform: uppercase; }
.logo span { color: white; font: 700 18px var(--serif); letter-spacing: .05em; }
.logo small { margin-top: 5px; color: var(--gold); font: 400 11px var(--serif); letter-spacing: .25em; }
.desktop-nav { display: flex; align-items: center; gap: 32px; }
.desktop-nav a { color: rgba(255,255,255,.85); font-size: 13px; font-weight: 500; text-decoration: none; transition: color .2s; }
.desktop-nav a:hover { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 5px 0; background: white; transition: .2s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { margin: 0 -5.6%; padding: 10px 5.6%; border-top: 1px solid rgba(255,255,255,.1); background: var(--navy); }
.mobile-menu a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.06); color: rgba(255,255,255,.85); font-size: 14px; text-decoration: none; }
.hero-content { position: relative; z-index: var(--z-overlay); display: flex; height: 100%; max-width: 880px; padding: 0 5% 0 clamp(7%,8.5vw,170px); flex-direction: column; justify-content: center; }
.hero-content h1 { margin-bottom: 20px; color: white; font: 700 clamp(40px,5vw,72px)/1.1 var(--serif); }
.hero-content h1 span { color: var(--gold); }
.hero-content > p { max-width: 480px; margin-bottom: 36px; color: rgba(255,255,255,.75); font-size: 17px; line-height: 1.65; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 56px; }
.trust-item { display: flex; align-items: flex-start; gap: 12px; }
.trust-item svg { width: 28px; height: 28px; flex: none; fill: none; stroke: var(--gold); stroke-width: 1.5; }
.trust-item div { display: flex; flex-direction: column; }
.trust-item strong { margin-bottom: 3px; color: white; font-size: 13px; }
.trust-item small { color: rgba(255,255,255,.6); font-size: 12px; }

.profiles-section, .how-section { background: white; }
.section-heading { margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 12px; color: var(--navy); font: 600 clamp(28px,3vw,42px) var(--serif); }
.section-heading p { margin-bottom: 0; color: #666; font-size: 15px; }
.split-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; }
.gold-link { flex: none; color: var(--gold-text); font-size: 14px; font-weight: 600; text-decoration: none; }
.gold-link:hover { text-decoration: underline; }
.centered-heading { text-align: center; }
.profile-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(170px,1fr)); gap: 20px; }
.profile-card { overflow: hidden; border: 1px solid #eee; border-radius: 8px; background: white; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.profile-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.profile-photo { position: relative; padding-top: 125%; background: #f0ebe2; }
.profile-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.profile-photo i { position: absolute; top: 10px; right: 10px; width: 10px; height: 10px; border: 2px solid white; border-radius: 50%; background: #4caf50; }
.profile-copy { padding: 14px 12px; }
.profile-copy h3 { margin-bottom: 4px; color: var(--navy); font: 600 15px var(--serif); }
.profile-copy h3 small { margin-left: 3px; color: #888; font: 400 13px var(--sans); }
.profile-copy p { margin-bottom: 4px; color: #62686c; font-size: 12px; }
.location { display: block; margin-bottom: 10px; color: #62686c; font-size: 12px; }
.tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 12px; }
.tags span { padding: 2px 8px; border-radius: 20px; background: var(--ivory); color: #785316; font-size: 11px; font-weight: 600; }
.profile-copy > a { display: block; width: 100%; padding: 7px 0; border: 1px solid var(--navy); border-radius: 4px; background: transparent; color: var(--navy); cursor: pointer; font-size: 12px; font-weight: 500; text-align: center; text-decoration: none; transition: .2s; }
.profile-copy > a:hover { background: var(--navy); color: white; }

.dark-overlay { position: absolute; inset: 0; background: rgba(8,16,24,.75); }
.feature-grid { position: relative; z-index: var(--z-content); display: grid; max-width: 900px; margin: 0 auto; gap: 40px; text-align: center; }
.four-columns { grid-template-columns: repeat(4,1fr); }
.feature-grid svg { width: 36px; height: 36px; margin-bottom: 16px; fill: none; stroke: var(--gold); stroke-width: 1.5; }
.feature-grid h3 { margin-bottom: 12px; color: white; font: 600 20px var(--serif); }
.feature-grid p { margin: 0; color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.7; }

.why-section { position: relative; min-height: 720px; overflow: hidden; background: var(--navy); }
.why-section > img { object-position: center; }
.why-overlay { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(5,13,20,.9) 0%,rgba(5,13,20,.68) 48%,rgba(5,13,20,.9) 100%); }
.why-layout { position: relative; z-index: var(--z-content); display: grid; width: min(1180px,90%); min-height: 720px; margin: 0 auto; padding: 92px 0; align-items: center; grid-template-columns: .9fr 1.1fr; gap: clamp(56px,8vw,112px); }
.place-label { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 22px; color: var(--gold-light); font-size: 14px; font-weight: 600; }
.place-label::before { width: 38px; height: 1px; background: var(--gold); content: ""; }
.why-intro h2 { max-width: 560px; margin-bottom: 24px; color: white; font: 600 clamp(38px,4.4vw,66px)/1.08 var(--serif); letter-spacing: -.02em; text-wrap: balance; }
.why-intro p { max-width: 56ch; margin-bottom: 30px; color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.8; text-wrap: pretty; }
.why-intro a { display: inline-flex; align-items: center; gap: 10px; padding-bottom: 5px; border-bottom: 1px solid rgba(212,166,74,.58); color: var(--gold-light); font-size: 14px; font-weight: 600; text-decoration: none; transition: color .2s ease, border-color .2s ease, gap .25s cubic-bezier(.22,1,.36,1); }
.why-intro a:hover { gap: 16px; border-color: var(--gold-light); color: white; }
.why-reasons { padding: 8px 0; border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); background: rgba(5,13,20,.68); }
.why-reasons article { display: grid; padding: 27px 24px; grid-template-columns: 38px 1fr; gap: 18px; }
.why-reasons article + article { border-top: 1px solid rgba(255,255,255,.14); }
.why-reasons svg { width: 30px; height: 30px; margin-top: 2px; fill: none; stroke: var(--gold); stroke-width: 1.5; }
.why-reasons h3 { margin-bottom: 8px; color: white; font: 600 20px var(--serif); text-wrap: balance; }
.why-reasons p { max-width: 58ch; margin: 0; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.72; text-wrap: pretty; }

.audience-section { padding: clamp(84px,9vw,128px) 5%; }
.audience-layout { display: grid; width: min(1180px,100%); margin: 0 auto; align-items: start; grid-template-columns: .88fr 1.12fr; gap: clamp(56px,8vw,112px); }
.audience-layout-reverse .audience-intro { grid-column: 2; grid-row: 1; }
.audience-layout-reverse .benefit-list { grid-column: 1; grid-row: 1; }
.audience-title { display: inline-block; margin-bottom: 22px; color: #9a6d1f; font: 600 16px var(--sans); }
.audience-intro h2 { max-width: 580px; margin-bottom: 24px; color: var(--navy); font: 600 clamp(34px,4vw,54px)/1.12 var(--serif); letter-spacing: -.018em; text-wrap: balance; }
.audience-intro > p:not(.audience-note) { max-width: 60ch; margin-bottom: 32px; color: #4e5357; font-size: 16px; line-height: 1.82; text-wrap: pretty; }
.audience-note { max-width: 58ch; margin: 0; padding-top: 24px; border-top: 1px solid rgba(8,16,24,.18); color: #4a4d50; font-size: 14px; line-height: 1.7; }
.audience-note strong { color: var(--navy); }
.benefit-list { border-top: 1px solid rgba(8,16,24,.18); }
.benefit-list article { display: grid; padding: 28px 0; border-bottom: 1px solid rgba(8,16,24,.18); grid-template-columns: 16px 1fr; gap: 20px; }
.benefit-mark { width: 9px; height: 9px; margin-top: 8px; background: var(--gold); transform: rotate(45deg); }
.benefit-list h3 { margin-bottom: 10px; color: var(--navy); font: 600 21px var(--serif); text-wrap: balance; }
.benefit-list p { max-width: 68ch; margin: 0; color: #555b5f; font-size: 14px; line-height: 1.78; text-wrap: pretty; }
.baby-section { background: #f4f2ee; }
.daddy-section { background: #0c151d; }
.daddy-section .audience-title { color: var(--gold-light); }
.daddy-section .audience-intro h2, .daddy-section .benefit-list h3, .daddy-section .audience-note strong { color: white; }
.daddy-section .audience-intro > p:not(.audience-note), .daddy-section .benefit-list p { color: rgba(255,255,255,.7); }
.daddy-section .audience-note { border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.66); }
.daddy-section .benefit-list { border-color: rgba(255,255,255,.18); }
.daddy-section .benefit-list article { border-color: rgba(255,255,255,.18); }

.locations-section, .faq-section { background: var(--ivory); }
.location-grid { display: grid; max-width: 1200px; margin: 0 auto 40px; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.location-card { overflow: hidden; border: 1px solid #eee; border-radius: 8px; background: white; cursor: pointer; transition: transform .2s, box-shadow .2s; }
.location-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.09); }
.location-card > img { width: 100%; height: 180px; object-fit: cover; transition: transform .4s; }
.location-card:hover > img { transform: scale(1.05); }
.location-card div { padding: 18px 18px 20px; }
.location-card h3 { margin-bottom: 8px; color: var(--navy); font: 600 17px var(--serif); }
.location-card p { margin: 0; color: #777; font-size: 13px; line-height: 1.65; }

.how-section .section-heading { margin-bottom: 60px; }
.steps-grid { display: grid; max-width: 900px; margin: 0 auto; grid-template-columns: repeat(3,1fr); gap: 32px; }
.step { display: flex; align-items: flex-start; gap: 20px; }
.step-icons { flex: none; color: var(--gold); text-align: center; }
.step-icons b { display: grid; width: 52px; height: 52px; place-items: center; border-radius: 50%; background: var(--gold); color: white; font: 700 19px var(--serif); box-shadow: 0 8px 20px rgba(211,164,78,.22); }
.step > div:last-child { padding-top: 8px; }
.step h3 { margin-bottom: 10px; color: var(--navy); font: 600 19px var(--serif); }
.step p { margin: 0; color: #777; font-size: 14px; line-height: 1.7; }

.safety-section { background: var(--navy); }
.section-heading.light h2 { color: white; }
.section-heading.light p { color: rgba(255,255,255,.55); }
.safety-section .feature-grid h3 { font-size: 17px; }
.safety-section .feature-grid p { color: rgba(255,255,255,.55); font-size: 13px; }
.feature-icon { display: block; margin-bottom: 16px; color: var(--gold); font: 36px/1 var(--serif); }

.faq-grid { display: grid; max-width: 1100px; margin: 0 auto; grid-template-columns: 1fr 1fr; gap: 0 60px; }
.faq-item { border-bottom: 1px solid #e5e0d8; }
.faq-item button { display: flex; width: 100%; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; border: 0; background: transparent; color: var(--navy); cursor: pointer; text-align: left; font: 500 15px var(--serif); }
.faq-item button i { position: relative; width: 13px; height: 13px; flex: none; border-right: 2px solid var(--gold); border-bottom: 2px solid var(--gold); transform: rotate(45deg) translate(-2px,2px); transition: transform .25s; }
.faq-item.open button i { transform: rotate(225deg) translate(-2px,2px); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease; }
.faq-answer p { min-height: 0; margin: 0; overflow: hidden; color: #666; font-size: 14px; line-height: 1.75; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding-bottom: 18px; }

.cta-section { position: relative; display: flex; min-height: 480px; align-items: center; justify-content: center; overflow: hidden; background: var(--navy); }
.cta-section > img { opacity: 1; object-position: center; }
.cta-section .dark-overlay { background: linear-gradient(90deg,rgba(8,16,24,.08) 15%,rgba(8,16,24,.42) 48%,rgba(8,16,24,.93) 72%,rgba(8,16,24,.98)); }
.cta-content { position: relative; z-index: var(--z-content); width: 50%; margin-left: 50%; padding: 80px 7% 80px 4%; text-align: left; }
.cta-content h2 { margin-bottom: 16px; color: white; font: 700 clamp(30px,4vw,52px)/1.2 var(--serif); }
.cta-content h2 span { color: var(--gold); }
.cta-content p { margin-bottom: 36px; color: rgba(255,255,255,.7); font-size: 16px; }
.cta-content small { display: block; margin-top: 14px; color: rgba(255,255,255,.58); font-size: 12px; }

footer { padding: 48px 5% 32px; background: var(--navy-deep); color: rgba(255,255,255,.5); }
.footer-grid { display: grid; margin-bottom: 48px; grid-template-columns: repeat(4,1fr); gap: 40px; }
.footer-grid > div:first-child p { max-width: 270px; margin-top: 16px; font-size: 13px; line-height: 1.7; }
.footer-grid h3 { margin-bottom: 16px; color: white; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) a { display: block; margin-bottom: 10px; color: rgba(255,255,255,.5); font-size: 13px; text-decoration: none; transition: color .2s; }
.footer-grid > div:not(:first-child) a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom p { margin: 0; font-size: 12px; }
.footer-bottom a { color: rgba(255,255,255,.62); }

/* Secondary pages */
.inner-header { position: relative; z-index: 20; background: var(--navy-deep); }
.inner-header .navbar { position: relative; }
.inner-header .nav-row { height: 76px; }
.inner-header .desktop-nav a[aria-current="page"] { color: var(--gold-light); }
.container { width: min(var(--content),90%); margin-inline: auto; }
.narrow-container { width: min(var(--reading),88%); margin-inline: auto; }
.page-hero { position: relative; display: flex; min-height: 540px; align-items: center; overflow: hidden; background: var(--navy); color: white; }
.page-hero--compact { min-height: 410px; }
.page-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { position: absolute; inset: 0; background: linear-gradient(90deg,rgba(5,13,20,.96) 0%,rgba(5,13,20,.8) 48%,rgba(5,13,20,.3)); content: ""; }
.page-hero--right::after { background: linear-gradient(90deg,rgba(5,13,20,.26),rgba(5,13,20,.72) 55%,rgba(5,13,20,.97)); }
.page-hero-copy { position: relative; z-index: 2; width: min(680px,90%); margin-left: max(5%,calc((100% - var(--content))/2)); padding: clamp(72px,9vw,112px) 0; }
.page-hero--right .page-hero-copy { width: min(560px,43%); margin-right: max(5%,calc((100% - var(--content))/2)); margin-left: auto; }
.page-label { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; color: var(--gold-light); font-size: .875rem; font-weight: 600; }
.page-label::before { width: 34px; height: 1px; background: var(--gold); content: ""; }
.page-hero h1 { margin-bottom: 22px; color: white; font: 600 clamp(2.65rem,5vw,4.75rem)/1.05 var(--serif); letter-spacing: -.025em; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { max-width: 58ch; margin-bottom: 30px; color: rgba(255,255,255,.78); font-size: 1.0625rem; line-height: 1.75; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 12px 24px; color: rgba(255,255,255,.62); font-size: .8125rem; }
.content-section { padding: clamp(72px,8vw,112px) 5%; background: white; }
.content-section--soft { background: #f4f2ee; }
.content-section--dark { background: #0c151d; color: white; }
.content-section--tight { padding-block: clamp(56px,6vw,80px); }
.section-intro { max-width: 720px; margin-bottom: clamp(40px,6vw,68px); }
.section-intro.center { margin-inline: auto; text-align: center; }
.section-intro h2 { margin-bottom: 18px; color: var(--navy); font: 600 clamp(2.1rem,4vw,3.4rem)/1.12 var(--serif); letter-spacing: -.018em; }
.content-section--dark .section-intro h2 { color: white; }
.section-intro p { margin-bottom: 0; color: #53585b; font-size: 1rem; line-height: 1.8; }
.content-section--dark .section-intro p { color: rgba(255,255,255,.7); }
.split-content { display: grid; width: min(var(--content),100%); margin-inline: auto; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: clamp(48px,8vw,112px); align-items: start; }
.split-content--reverse > :first-child { grid-column: 2; grid-row: 1; }
.split-content--reverse > :last-child { grid-column: 1; grid-row: 1; }
.lead-copy h1, .lead-copy h2 { margin-bottom: 22px; color: var(--navy); font: 600 clamp(2.1rem,4vw,3.5rem)/1.12 var(--serif); letter-spacing: -.018em; }
.content-section--dark .lead-copy h1, .content-section--dark .lead-copy h2 { color: white; }
.lead-copy p { color: #53585b; font-size: 1rem; line-height: 1.82; }
.content-section--dark .lead-copy p { color: rgba(255,255,255,.7); }
.rule-list { border-top: 1px solid rgba(8,16,24,.18); }
.rule-list article { padding: 28px 0; border-bottom: 1px solid rgba(8,16,24,.18); }
.rule-list h3 { margin-bottom: 9px; color: var(--navy); font: 600 1.3rem var(--serif); }
.rule-list p { max-width: 68ch; margin: 0; color: #555b5f; font-size: .9375rem; line-height: 1.76; }
.content-section--dark .rule-list { border-color: rgba(255,255,255,.18); }
.content-section--dark .rule-list article { border-color: rgba(255,255,255,.18); }
.content-section--dark .rule-list h3 { color: white; }
.content-section--dark .rule-list p { color: rgba(255,255,255,.68); }
.sequence { max-width: 980px; margin-inline: auto; counter-reset: step; }
.sequence article { display: grid; padding: 34px 0; border-top: 1px solid rgba(8,16,24,.16); grid-template-columns: 86px 1fr; gap: 30px; counter-increment: step; }
.sequence article:last-child { border-bottom: 1px solid rgba(8,16,24,.16); }
.sequence article::before { color: var(--gold); content: counter(step,decimal-leading-zero); font: 600 2.5rem/1 var(--serif); }
.sequence h3 { margin-bottom: 10px; color: var(--navy); font: 600 1.45rem var(--serif); }
.sequence p { max-width: 68ch; margin: 0; color: #555b5f; font-size: .95rem; line-height: 1.78; }
.info-band { display: flex; width: min(var(--content),90%); margin: -42px auto 0; position: relative; z-index: var(--z-overlay); background: var(--gold); }
.info-band > div { flex: 1; padding: 25px 30px; color: var(--navy); }
.info-band > div + div { border-left: 1px solid rgba(8,16,24,.2); }
.info-band strong { display: block; margin-bottom: 5px; font: 600 1rem var(--serif); }
.info-band span { font-size: .8125rem; line-height: 1.5; }
.location-directory { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0 54px; }
.location-entry { display: grid; padding: 30px 0; border-top: 1px solid rgba(8,16,24,.16); grid-template-columns: 140px 1fr; gap: 24px; }
.location-entry img { width: 140px; height: 112px; object-fit: cover; }
.location-entry h3 { margin-bottom: 7px; color: var(--navy); font: 600 1.2rem var(--serif); }
.location-entry p { margin: 0; color: #5a5e61; font-size: .875rem; line-height: 1.65; }
.callout { padding: 30px; background: var(--navy); color: white; }
.callout h2, .callout h3 { margin-bottom: 10px; color: white; font: 600 1.45rem var(--serif); }
.callout p { margin-bottom: 22px; color: rgba(255,255,255,.72); font-size: .9375rem; line-height: 1.7; }
.site-cta { padding: clamp(68px,8vw,100px) 5%; background: var(--gold); text-align: center; }
.site-cta h2 { max-width: 760px; margin: 0 auto 18px; color: var(--navy); font: 600 clamp(2.2rem,4vw,3.6rem)/1.1 var(--serif); }
.site-cta p { max-width: 620px; margin: 0 auto 30px; color: rgba(8,16,24,.72); font-size: 1rem; line-height: 1.7; }
.site-cta .button { background: var(--navy); color: white; }
.site-cta .button:hover { background: #172735; }
.site-cta small { display: block; margin-top: 14px; color: rgba(8,16,24,.62); }

/* Portland date guide */
.date-guide-hero > img { object-position: center; }
.date-guide-hero::after { background: linear-gradient(90deg,rgba(5,13,20,.94) 0%,rgba(5,13,20,.73) 47%,rgba(5,13,20,.18) 78%); }
.guide-jump { position: sticky; z-index: 9; top: 0; display: flex; overflow-x: auto; padding: 0 max(5%,calc((100% - var(--content))/2)); border-bottom: 1px solid rgba(8,16,24,.14); background: rgba(248,245,239,.96); scrollbar-width: none; }
.guide-jump::-webkit-scrollbar { display: none; }
.guide-jump a { min-height: 56px; padding: 18px 20px; flex: none; color: #465057; font-size: .8125rem; font-weight: 600; text-decoration: none; }
.guide-jump a:hover, .guide-jump a:focus-visible { color: var(--navy); }
.date-guide-chapter { display: grid; min-height: 760px; background: white; grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
.date-guide-chapter--reverse .date-guide-image { grid-column: 2; }
.date-guide-chapter--reverse .date-guide-copy { grid-column: 1; grid-row: 1; }
.date-guide-image { min-height: 100%; overflow: hidden; background: var(--navy); }
.date-guide-image img { width: 100%; height: 100%; object-fit: cover; }
.date-guide-copy { display: flex; max-width: 720px; padding: clamp(64px,7vw,104px); flex-direction: column; justify-content: center; }
.chapter-number { margin-bottom: 20px; color: var(--gold-text); font-size: .8rem; font-weight: 700; letter-spacing: .04em; }
.date-guide-copy h2 { margin-bottom: 22px; color: var(--navy); font: 600 clamp(2.25rem,3.6vw,3.6rem)/1.08 var(--serif); letter-spacing: -.02em; }
.date-guide-copy > p { color: #4f575c; font-size: .975rem; line-height: 1.78; }
.venue-picks { margin-top: 16px; border-top: 1px solid rgba(8,16,24,.17); }
.venue-picks article { padding: 20px 0; border-bottom: 1px solid rgba(8,16,24,.17); }
.venue-picks h3 { margin-bottom: 7px; font: 600 1.12rem var(--serif); }
.venue-picks h3 a { color: var(--navy); text-decoration-color: rgba(143,102,25,.48); text-underline-offset: 4px; }
.venue-picks h3 a:hover { color: var(--gold-text); }
.venue-picks p { margin: 0; color: #555d61; font-size: .875rem; line-height: 1.7; }
.date-guide-copy .guide-note { margin: 24px 0 0; padding: 20px 22px; background: #f1eee8; color: #424b50; font-size: .875rem; line-height: 1.68; }
.guide-note strong { color: var(--navy); }
.date-routes { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); }
.date-routes article { padding: 10px clamp(24px,3vw,42px) 8px; border-left: 1px solid rgba(255,255,255,.17); }
.date-routes article:first-child { padding-left: 0; border-left: 0; }
.date-routes article:last-child { padding-right: 0; }
.date-routes span { display: block; margin-bottom: 16px; color: var(--gold-light); font-size: .78rem; font-weight: 700; }
.date-routes h3 { margin-bottom: 22px; color: white; font: 600 1.6rem/1.18 var(--serif); }
.date-routes ol { margin: 0 0 20px; padding-left: 1.25rem; }
.date-routes li, .date-routes p { color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.72; }
.date-routes li { margin-bottom: 10px; padding-left: 4px; }
.date-routes p { margin-bottom: 0; }

/* Profiles and app */
.directory-toolbar { display: flex; width: min(var(--content),100%); margin: 0 auto 38px; justify-content: space-between; gap: 20px; align-items: center; }
.directory-toolbar p { margin: 0; color: #5d6164; }
.filter-groups { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.filter-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-pills button { min-height: 44px; padding: 8px 16px; border: 1px solid rgba(8,16,24,.18); border-radius: 999px; background: white; color: var(--navy); cursor: pointer; }
.filter-pills button.active, .filter-pills button:hover { border-color: var(--navy); background: var(--navy); color: white; }
.profiles-page .profile-grid { grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); }
.match-panel { display: grid; width: min(1080px,90%); margin: 0 auto; overflow: hidden; background: white; grid-template-columns: .85fr 1.15fr; }
.match-panel-copy { padding: clamp(38px,6vw,72px); background: var(--navy); color: white; }
.match-panel-copy h1 { margin-bottom: 20px; color: white; font: 600 clamp(2.6rem,5vw,4.2rem)/1.08 var(--serif); }
.match-panel-copy p { color: rgba(255,255,255,.72); line-height: 1.75; }
.match-form { padding: clamp(38px,6vw,72px); }
.match-form fieldset { margin: 0 0 28px; padding: 0; border: 0; }
.match-form legend { margin-bottom: 14px; color: var(--navy); font: 600 1.15rem var(--serif); }
.choice-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.choice-grid label { display: flex; min-height: 48px; padding: 12px 14px; border: 1px solid rgba(8,16,24,.18); align-items: center; gap: 10px; cursor: pointer; }
.match-result { margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(8,16,24,.16); }
.match-result[hidden] { display: none; }

/* Blog and long-form content */
.blog-feature { display: grid; width: min(var(--content),100%); margin: 0 auto clamp(64px,8vw,96px); grid-template-columns: 1.2fr .8fr; background: var(--navy); }
.blog-feature img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.blog-feature-copy { padding: clamp(38px,5vw,68px); align-self: center; }
.blog-feature-copy h2 { margin-bottom: 18px; color: white; font: 600 clamp(2rem,3.4vw,3.25rem)/1.1 var(--serif); }
.blog-feature-copy p { color: rgba(255,255,255,.7); font-size: .95rem; line-height: 1.75; }
.blog-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-bottom: 16px; color: #8b6423; font-size: .78rem; font-weight: 600; }
.content-section--dark .blog-meta, .blog-feature .blog-meta { color: var(--gold-light); }
.text-link { display: inline-flex; gap: 8px; color: var(--gold); font-size: .875rem; font-weight: 600; text-decoration: none; }
.blog-list { width: min(var(--content),100%); margin-inline: auto; }
.blog-row { display: grid; padding: 34px 0; border-top: 1px solid rgba(8,16,24,.16); grid-template-columns: 250px 1fr auto; gap: 32px; align-items: center; }
.blog-row:last-child { border-bottom: 1px solid rgba(8,16,24,.16); }
.blog-row img { width: 250px; height: 160px; object-fit: cover; }
.blog-row h2 { margin-bottom: 10px; color: var(--navy); font: 600 1.6rem/1.18 var(--serif); }
.blog-row p { margin: 0; color: #5b5f62; font-size: .9rem; line-height: 1.68; }
.blog-row > a:last-child { display: grid; width: 44px; height: 44px; border: 1px solid var(--gold); place-items: center; color: var(--gold); text-decoration: none; }
.article-hero { position: relative; min-height: 600px; overflow: hidden; background: var(--navy); color: white; }
.article-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .45; }
.article-hero::after { position: absolute; inset: 0; background: linear-gradient(180deg,rgba(5,13,20,.4),rgba(5,13,20,.94)); content: ""; }
.article-hero-copy { position: relative; z-index: 2; width: min(900px,88%); margin: 0 auto; padding: clamp(120px,16vw,200px) 0 80px; text-align: center; }
.article-hero h1 { margin-bottom: 22px; color: white; font: 600 clamp(2.6rem,5.5vw,5rem)/1.05 var(--serif); letter-spacing: -.025em; }
.article-hero .hero-meta { justify-content: center; }
.article-layout { display: grid; width: min(1040px,90%); margin: 0 auto; padding: clamp(72px,8vw,112px) 0; grid-template-columns: 190px minmax(0,var(--reading)); gap: 72px; align-items: start; }
.article-toc { position: sticky; top: 28px; }
.article-toc strong { display: block; margin-bottom: 14px; color: var(--navy); font: 600 1rem var(--serif); }
.article-toc a { display: block; padding: 8px 0; color: #5d6265; font-size: .8rem; line-height: 1.45; text-decoration: none; }
.article-toc a:hover { color: var(--gold); }
.prose { min-width: 0; }
.prose .article-lead { color: var(--navy); font: 500 1.25rem/1.65 var(--serif); }
.prose h2 { margin: 58px 0 18px; color: var(--navy); font: 600 clamp(1.8rem,3vw,2.5rem)/1.16 var(--serif); }
.prose h3 { margin: 34px 0 12px; color: var(--navy); font: 600 1.35rem/1.25 var(--serif); }
.prose p, .prose li { color: #444b4f; font-size: 1.0625rem; line-height: 1.82; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: 10px; padding-left: 5px; }
.prose blockquote { margin: 38px 0; padding: 26px 30px; background: #f0ede7; color: var(--navy); font: 500 1.15rem/1.65 var(--serif); }
.prose .article-note { margin: 36px 0; padding: 26px 28px; border: 1px solid rgba(8,16,24,.18); }
.prose .article-note strong { display: block; margin-bottom: 8px; color: var(--navy); }
.article-disclosure { padding: 22px 26px; background: #f4f2ee; color: #555b5f; font-size: .8rem; line-height: 1.65; }

/* Legal and utility */
.legal-page { padding: clamp(72px,8vw,112px) 5%; background: white; }
.legal-copy { width: min(var(--reading),90%); margin-inline: auto; }
.legal-copy h1 { margin-bottom: 14px; color: var(--navy); font: 600 clamp(2.5rem,5vw,4.3rem)/1.08 var(--serif); }
.legal-copy .updated { margin-bottom: 44px; color: #777; font-size: .82rem; }
.legal-copy h2 { margin: 42px 0 14px; color: var(--navy); font: 600 1.65rem var(--serif); }
.legal-copy p, .legal-copy li { color: #4c5255; font-size: .95rem; line-height: 1.8; }
.legal-copy a { color: #8a6019; }
.contact-options { display: grid; max-width: 900px; margin: 0 auto; grid-template-columns: 1fr 1fr; gap: 0 56px; }
.contact-option { padding: 30px 0; border-top: 1px solid rgba(8,16,24,.16); }
.contact-option h2 { margin-bottom: 10px; color: var(--navy); font: 600 1.5rem var(--serif); }
.contact-option p { color: #565c60; line-height: 1.72; }
.contact-option a { color: #8a6019; font-weight: 600; }
.affiliate-disclosure { width: min(var(--content),100%); margin: 0 auto 30px; padding: 18px 22px; background: rgba(255,255,255,.04); color: rgba(255,255,255,.48); font-size: .75rem; line-height: 1.6; }
.error-page { display: grid; min-height: calc(100vh - 76px); padding: 64px 5%; place-items: center; background: var(--navy); color: white; text-align: center; }
.error-page strong { display: block; margin-bottom: 12px; color: var(--gold); font: 600 clamp(5rem,16vw,10rem)/.8 var(--serif); }
.error-page h1 { color: white; font: 600 clamp(2rem,5vw,3.8rem) var(--serif); }
.error-page p { max-width: 52ch; color: rgba(255,255,255,.7); line-height: 1.7; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { border-radius: 3px; background: rgba(8,16,24,.2); }

@media (max-width: 1050px) {
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 12px; }
}
@media (max-width: 1024px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
}
@media (max-width: 900px) {
  .location-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .steps-grid { grid-template-columns: repeat(3,1fr); gap: 24px; }
  .four-columns { grid-template-columns: repeat(2,1fr); }
  .why-layout { gap: 44px; grid-template-columns: .82fr 1.18fr; }
  .audience-layout { gap: 48px; grid-template-columns: .9fr 1.1fr; }
  .page-hero--right .page-hero-copy { width: min(600px,62%); }
  .location-directory { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; gap: 34px; }
  .article-toc { position: static; padding-bottom: 26px; border-bottom: 1px solid rgba(8,16,24,.16); }
  .article-toc a { display: inline-block; margin-right: 16px; }
  .date-guide-chapter { min-height: auto; grid-template-columns: 1fr; }
  .date-guide-chapter--reverse .date-guide-image, .date-guide-chapter--reverse .date-guide-copy { grid-column: 1; grid-row: auto; }
  .date-guide-image { min-height: 480px; }
  .date-guide-copy { max-width: none; }
  .date-routes { grid-template-columns: 1fr; }
  .date-routes article, .date-routes article:first-child, .date-routes article:last-child { padding: 32px 0; border-top: 1px solid rgba(255,255,255,.17); border-left: 0; }
}
@media (max-width: 700px) {
  .location-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 6%; }
  .hero { min-height: 820px; height: auto; }
  .hero-overlay { background: rgba(8,16,24,.76); }
  .navbar { padding: 0 6%; }
  .nav-actions .button { display: none; }
  .hero-content { min-height: 820px; padding: 100px 6% 60px; }
  .trust-list { flex-direction: column; gap: 18px; margin-top: 44px; }
  .split-heading { align-items: flex-start; flex-direction: column; }
  .steps-grid, .faq-grid, .footer-grid { grid-template-columns: 1fr; }
  .feature-grid { gap: 42px; }
  .faq-grid { gap: 0; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .why-section, .why-layout { min-height: auto; }
  .why-section > img { object-position: 56% center; }
  .why-overlay { background: rgba(5,13,20,.84); }
  .why-layout { width: 88%; padding: 72px 0; grid-template-columns: 1fr; gap: 50px; }
  .why-intro h2 { font-size: clamp(36px,11vw,50px); }
  .why-reasons { margin: 0 -2%; }
  .why-reasons article { padding: 24px 18px; }
  .audience-section { padding: 72px 6%; }
  .audience-layout { grid-template-columns: 1fr; gap: 48px; }
  .audience-layout-reverse .audience-intro, .audience-layout-reverse .benefit-list { grid-column: 1; }
  .audience-layout-reverse .audience-intro { grid-row: 1; }
  .audience-layout-reverse .benefit-list { grid-row: 2; }
  .benefit-list article { padding: 25px 0; gap: 16px; }
  .cta-section { min-height: 560px; }
  .cta-section > img { object-position: 34% center; }
  .cta-section .dark-overlay { background: rgba(8,16,24,.73); }
  .cta-content { width: 100%; margin-left: 0; padding: 72px 7%; text-align: center; }
  .inner-header .nav-actions .button { display: none; }
  .page-hero, .page-hero--compact { min-height: 520px; }
  .page-hero--right .page-hero-copy, .page-hero-copy { width: 88%; margin-inline: auto; padding-block: 72px; }
  .page-hero--right::after, .page-hero::after { background: rgba(5,13,20,.78); }
  .info-band { margin-top: 0; width: 100%; flex-direction: column; }
  .info-band > div + div { border-top: 1px solid rgba(8,16,24,.2); border-left: 0; }
  .split-content, .split-content--reverse { grid-template-columns: 1fr; gap: 44px; }
  .split-content--reverse > :first-child, .split-content--reverse > :last-child { grid-column: 1; }
  .split-content--reverse > :first-child { grid-row: 1; }
  .split-content--reverse > :last-child { grid-row: 2; }
  .sequence article { grid-template-columns: 56px 1fr; gap: 18px; }
  .sequence article::before { font-size: 1.9rem; }
  .location-entry { grid-template-columns: 105px 1fr; gap: 18px; }
  .location-entry img { width: 105px; height: 96px; }
  .directory-toolbar { align-items: flex-start; flex-direction: column; }
  .filter-groups { width: 100%; align-items: flex-start; }
  .match-panel { grid-template-columns: 1fr; }
  .blog-feature { grid-template-columns: 1fr; }
  .blog-feature img { min-height: 280px; }
  .blog-row { grid-template-columns: 110px 1fr; gap: 18px; align-items: start; }
  .blog-row img { width: 110px; height: 100px; }
  .blog-row > a:last-child { display: none; }
  .blog-row h2 { font-size: 1.25rem; }
  .article-hero { min-height: 540px; }
  .article-layout { width: 88%; padding-block: 68px; }
  .article-toc { display: none; }
  .contact-options { grid-template-columns: 1fr; }
  .guide-jump { padding-inline: 2%; }
  .guide-jump a { padding-inline: 14px; }
  .date-guide-image { min-height: 310px; }
  .date-guide-copy { padding: 58px 6%; }
}
@media (max-width: 440px) {
  .hero-content h1 { font-size: 39px; }
  .why-intro h2 { font-size: 38px; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .four-columns, .footer-grid { grid-template-columns: 1fr; }
  .profile-grid { grid-template-columns: 1fr; gap: 16px; }
  .profile-copy { padding: 12px 9px; }
  .choice-grid { grid-template-columns: 1fr; }
  .match-panel { width: 100%; }
  .match-panel-copy, .match-form { padding: 36px 24px; }
  .match-form .button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
