:root {
  --pine: #0b3b31;
  --pine-deep: #062a23;
  --sage: #647a59;
  --sage-light: #9bac90;
  --gold: #d99a1c;
  --ochre: #a66b08;
  --sea: #236b74;
  --terracotta: #c65a24;
  --sand: #faf4e8;
  --sand-deep: #f1e6d5;
  --stone: #eae0d2;
  --cream: #fffdf8;
  --charcoal: #172421;
  --text: #374842;
  --muted: #5d6a65;
  --border: #d8cdbd;
  --shadow: 0 24px 70px rgba(23, 36, 33, .13);
  --shadow-small: 0 12px 32px rgba(23, 36, 33, .1);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --shell: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--sand);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.section { padding: 112px 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; transform: translateY(-160%); padding: 10px 16px; color: white; background: var(--pine); border-radius: 8px; font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(250, 244, 232, .92);
  border-bottom: 1px solid rgba(11, 59, 49, .08);
  backdrop-filter: blur(16px);
}

.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--pine); text-decoration: none; }
.brand img { width: 50px; height: 50px; object-fit: cover; border: 1px solid rgba(11, 59, 49, .1); border-radius: 13px; box-shadow: 0 5px 14px rgba(23, 36, 33, .08); }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-family: var(--serif); font-size: 17px; letter-spacing: .025em; }
.brand-copy span { margin-top: 5px; color: var(--ochre); font-size: 9px; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }

.primary-nav { display: flex; align-items: center; gap: 34px; }
.primary-nav a { position: relative; color: var(--pine); text-decoration: none; font-size: 14px; font-weight: 700; }
.primary-nav a::after { position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; content: ''; background: var(--gold); transform: scaleX(0); transition: transform .2s ease; transform-origin: right; }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after, .primary-nav a[aria-current='page']::after { transform: scaleX(1); transform-origin: left; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; background: none; border: 0; border-radius: 10px; cursor: pointer; }
.nav-toggle span:not(.sr-only) { display: block; width: 23px; height: 2px; margin: 5px auto; background: var(--pine); border-radius: 9px; }

.eyebrow { display: flex; align-items: center; gap: 9px; margin-bottom: 18px; color: var(--ochre); font-size: 12px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow::before { width: 28px; height: 1px; content: ''; background: currentColor; }
.eyebrow.light { color: #efbf60; }
.shell-symbol { width: 23px; height: 23px; display: inline-grid; place-items: center; color: var(--cream); background: var(--gold); border-radius: 50%; font-size: 13px; }

h1, h2, h3 { margin: 0; color: var(--pine); line-height: 1.08; }
h1, h2 { font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; }
h1 { font-size: clamp(52px, 6.8vw, 90px); }
h2 { font-size: clamp(42px, 5vw, 64px); }
h3 { font-size: 23px; }
h1 em, h2 em { color: var(--gold); font-weight: inherit; }
p { margin: 0; }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 13px 21px; border: 1px solid transparent; border-radius: 13px; text-decoration: none; font-size: 14px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline: 3px solid rgba(217, 154, 28, .55); outline-offset: 3px; }
.button-primary { color: white; background: var(--pine); box-shadow: 0 10px 24px rgba(11, 59, 49, .18); }
.button-primary:hover { background: var(--pine-deep); box-shadow: 0 14px 28px rgba(11, 59, 49, .25); }
.button-secondary { color: var(--pine); background: rgba(255, 253, 248, .68); border-color: rgba(11, 59, 49, .45); }
.button-secondary:hover { background: var(--cream); }
.button-cream { color: var(--pine); background: var(--cream); }

.hero { position: relative; min-height: 800px; overflow: hidden; background: radial-gradient(circle at 76% 17%, rgba(217, 154, 28, .13), transparent 24%), linear-gradient(135deg, var(--sand), #fbf6ed 60%, #f4eadb); }
.hero::before { position: absolute; right: -6%; bottom: -150px; width: 58vw; height: 440px; content: ''; border: 1px solid rgba(100, 122, 89, .14); border-radius: 50%; transform: rotate(-8deg); box-shadow: 0 0 0 70px rgba(100, 122, 89, .035), 0 0 0 140px rgba(100, 122, 89, .025); }
.hero-grid { min-height: 800px; display: grid; grid-template-columns: .96fr 1.04fr; align-items: center; gap: 62px; padding-top: 54px; padding-bottom: 62px; }
.hero-copy { position: relative; z-index: 3; padding-bottom: 10px; }
.hero-copy h1 { max-width: 650px; }
.hero-lede { max-width: 595px; margin-top: 28px; color: var(--text); font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 12px 25px; margin: 26px 0 0; padding: 0; list-style: none; color: var(--muted); font-size: 12px; font-weight: 650; }
.trust-list span { color: var(--ochre); }

.hero-art { position: relative; min-height: 650px; display: grid; place-items: center; }
.hero-sun { position: absolute; top: 36px; right: 20px; width: 126px; height: 126px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 80px rgba(217, 154, 28, .25); }
.contour { position: absolute; width: 490px; height: 270px; border: 1px solid rgba(11, 59, 49, .11); border-radius: 50%; transform: rotate(-24deg); }
.contour-one { top: 75px; right: -80px; box-shadow: 0 0 0 45px rgba(11, 59, 49, .025), 0 0 0 90px rgba(11, 59, 49, .02); }
.contour-two { bottom: 40px; left: -30px; transform: rotate(24deg) scale(.7); }
.journeys-capture { position: relative; z-index: 2; width: min(100%, 330px); margin: 0; filter: drop-shadow(0 40px 42px rgba(23, 36, 33, .24)); }
.journeys-capture img { width: 100%; height: auto; border-radius: 48px; }
.journeys-capture figcaption { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.phone-bar { height: 36px; display: flex; align-items: center; justify-content: space-between; padding: 0 21px; color: var(--pine); font-size: 9px; font-weight: 800; }
.app-screen { font-family: var(--sans); }
.ios-navigation { height: 28px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 15px; color: var(--pine); background: var(--sand); border-bottom: 1px solid rgba(11, 59, 49, .06); }
.ios-navigation strong { font-size: 10px; }
.ios-navigation > span:last-child { justify-self: end; }
.app-status-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.app-chip { min-height: 25px; display: inline-flex; align-items: center; gap: 5px; padding: 4px 8px; border: 1px solid currentColor; border-radius: 99px; font-size: 7px; font-weight: 750; }
.app-chip b { font-size: 8px; }
.app-chip.success { color: var(--success, #28734b); background: rgba(40, 115, 75, .09); border-color: rgba(40, 115, 75, .16); }
.app-chip.ochre { color: var(--ochre); background: rgba(166, 107, 8, .08); border-color: rgba(166, 107, 8, .14); }
.app-chip.sage { color: var(--sage); background: rgba(100, 122, 89, .09); border-color: rgba(100, 122, 89, .15); }
.app-list-header { display: flex; align-items: center; gap: 7px; margin-top: 20px; color: var(--pine); font-size: 6px; font-weight: 850; letter-spacing: .12em; }
.app-list-header > span { color: var(--sage); font-size: 8px; }
.app-list-header i { height: 1px; flex: 1; background: var(--border); }
.app-tab-bar { position: absolute; z-index: 6; right: 0; bottom: 0; left: 0; height: 57px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; padding: 5px 8px 8px; background: rgba(255, 253, 248, .96); border-top: 1px solid rgba(11, 59, 49, .1); }
.app-tab-bar span { display: grid; justify-items: center; gap: 2px; color: var(--muted); font-size: 5px; font-weight: 650; }
.app-tab-bar b { font-size: 16px; line-height: 1; }
.app-tab-bar .active { color: var(--pine); }

.section-intro { background: var(--cream); }
.section-heading { max-width: 760px; }
.section-heading.centered { margin: 0 auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading.centered p { max-width: 680px; margin: 25px auto 0; color: var(--muted); font-size: 18px; }
.feature-grid { display: grid; grid-template-columns: 1.18fr 1fr 1fr; gap: 18px; margin-top: 58px; }
.feature-card { min-height: 430px; position: relative; overflow: hidden; padding: 34px; background: var(--sand); border: 1px solid rgba(11, 59, 49, .12); border-radius: 24px; box-shadow: 0 12px 35px rgba(23, 36, 33, .06); }
.feature-card.featured { background: var(--pine); border-color: var(--pine); }
.feature-icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 44px; color: white; background: var(--sage); border-radius: 14px; font-size: 22px; }
.feature-icon.sea { background: var(--sea); }
.feature-icon.gold { background: var(--gold); }
.card-kicker { margin-bottom: 8px; color: var(--ochre); font-size: 10px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.feature-card h3 { max-width: 280px; font-family: var(--serif); font-size: 29px; }
.feature-card > p:not(.card-kicker) { margin-top: 15px; color: var(--muted); font-size: 15px; }
.feature-card.featured .card-kicker { color: #efbf60; }
.feature-card.featured h3, .feature-card.featured > p { color: var(--cream); }
.mini-stage-list { position: absolute; right: 28px; bottom: 26px; left: 28px; overflow: hidden; background: rgba(255, 253, 248, .08); border: 1px solid rgba(255, 255, 255, .13); border-radius: 13px; }
.mini-stage-list div { display: flex; align-items: center; gap: 9px; padding: 9px 11px; color: rgba(255, 253, 248, .88); border-bottom: 1px solid rgba(255, 255, 255, .1); font-size: 9px; }
.mini-stage-list div:last-child { border: 0; }
.mini-stage-list span { width: 24px; height: 24px; flex: 0 0 auto; display: grid; place-items: center; color: #efbf60; background: rgba(217, 154, 28, .12); border-radius: 50%; font-weight: 800; }
.mini-stage-list strong { display: grid; font-size: 9px; line-height: 1.25; }
.mini-stage-list strong small { color: rgba(255, 253, 248, .6); font-size: 7px; font-weight: 500; }
.mini-stage-list i { height: 1px; flex: 1; border-top: 1px dotted rgba(255, 255, 255, .23); }
.mini-stage-list b { font-weight: 700; }
.profile-art { position: absolute; right: 30px; bottom: 32px; left: 30px; height: 95px; display: flex; align-items: end; gap: 5px; border-bottom: 1px solid var(--border); }
.profile-art span { flex: 1; background: linear-gradient(var(--sage), rgba(100, 122, 89, .18)); clip-path: polygon(0 100%, 0 72%, 22% 50%, 44% 66%, 70% 15%, 100% 55%, 100% 100%); }
.profile-art span:nth-child(2) { height: 78%; opacity: .8; }
.profile-art span:nth-child(3) { height: 50%; opacity: .6; }
.profile-art span:nth-child(4) { height: 92%; opacity: .8; }
.profile-art span:nth-child(5) { height: 64%; opacity: .55; }
.offline-chip { position: absolute; right: 30px; bottom: 40px; left: 30px; display: flex; align-items: center; gap: 10px; padding: 14px; color: var(--pine); background: var(--cream); border: 1px solid var(--border); border-radius: 12px; box-shadow: var(--shadow-small); font-size: 12px; font-weight: 800; }
.offline-chip span { width: 25px; height: 25px; display: grid; place-items: center; color: white; background: var(--pine); border-radius: 50%; }

.route-section { color: rgba(255, 253, 248, .82); background: var(--pine); }
.route-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 85px; }
.route-copy h2 { color: var(--cream); }
.route-copy > p { max-width: 520px; margin-top: 24px; color: rgba(255, 253, 248, .7); font-size: 17px; }
.route-benefits { display: grid; gap: 0; margin: 37px 0 0; padding: 0; list-style: none; }
.route-benefits li { display: grid; grid-template-columns: 45px 1fr; gap: 15px; padding: 19px 0; border-top: 1px solid rgba(255, 255, 255, .13); }
.route-benefits li > span { color: #efbf60; font-family: var(--serif); font-size: 19px; }
.route-benefits strong { color: var(--cream); }
.route-benefits p { margin-top: 3px; color: rgba(255, 253, 248, .57); font-size: 13px; }
.route-window { position: relative; width: min(100%, 440px); height: 720px; justify-self: center; overflow: hidden; color: var(--text); background: var(--sand); border: 7px solid #18342f; border-radius: 38px; box-shadow: 0 38px 70px rgba(0, 0, 0, .24); transform: rotate(1deg); }
.route-window::before { position: absolute; z-index: 8; top: 8px; left: 50%; width: 88px; height: 20px; content: ''; background: #18342f; border-radius: 0 0 14px 14px; transform: translateX(-50%); }
.detail-navigation { height: 38px; font-size: 9px; }
.detail-navigation > span:first-child { color: var(--pine); font-weight: 700; }
.detail-navigation strong { font-size: 12px; }
.day-app-scroll { height: 582px; padding: 18px; overflow: hidden; }
.app-day-header { display: flex; align-items: flex-start; gap: 13px; }
.app-day-header > span:last-child { display: grid; line-height: 1.2; }
.app-day-header strong { color: var(--pine); font-family: var(--serif); font-size: 28px; }
.app-day-header small { margin-top: 5px; color: var(--text); font-size: 12px; }
.app-day-badge { width: 47px; height: 47px; flex: 0 0 auto; display: grid; place-items: center; color: var(--ochre); background: rgba(166, 107, 8, .15); border-radius: 50%; font-size: 13px; font-weight: 850; }
.day-status-row { margin: 13px 0 0 60px; }
.app-segmented { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 18px; padding: 2px; color: var(--pine); background: rgba(120, 120, 128, .12); border-radius: 7px; font-size: 8px; font-weight: 650; text-align: center; }
.app-segmented span { padding: 6px; border-radius: 5px; }
.app-segmented .active { background: var(--cream); box-shadow: 0 1px 4px rgba(23, 36, 33, .14); }
.app-map-card { margin-top: 9px; padding: 14px; background: var(--cream); border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 7px 17px rgba(23, 36, 33, .1); }
.app-map-card-heading { display: grid; line-height: 1.3; }
.app-map-card-heading strong { color: var(--pine); font-size: 11px; }
.app-map-card-heading strong span { margin-right: 5px; }
.app-map-card-heading small { margin-top: 3px; color: var(--text); font-size: 8px; }
.window-map { height: 210px; margin-top: 11px; overflow: hidden; background-color: #e9dfcf; background-image: radial-gradient(circle at 20% 20%, rgba(100, 122, 89, .12), transparent 20%), linear-gradient(27deg, transparent 49%, rgba(100, 122, 89, .12) 50%, transparent 51%); background-size: auto, 90px 75px; border-radius: 9px; }
.window-map svg { width: 100%; height: 100%; }
.app-map-legend { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 9px; }
.app-map-legend span { padding: 3px 6px; background: rgba(234, 224, 210, .48); border-radius: 99px; font-size: 6px; font-weight: 700; }
.app-map-legend .start { color: var(--sage); }
.app-map-legend .route, .app-map-legend .today { color: #d43d32; }
.app-map-legend .towns { color: var(--ochre); }
.app-map-legend .end { color: var(--terracotta); }
.app-map-summary { display: flex; gap: 6px; margin-top: 10px; }
.app-map-summary > span { display: inline-flex; align-items: center; gap: 4px; padding: 4px 7px; color: var(--sage); background: rgba(234, 224, 210, .48); border-radius: 99px; font-size: 7px; font-weight: 700; }
.app-map-note { margin-top: 7px; color: var(--muted); font-size: 6px; }

.route-library { background: var(--sand); }
.split-heading { max-width: none; display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 100px; }
.split-heading > p { padding-bottom: 8px; color: var(--muted); font-size: 17px; }
.journey-cards { display: grid; grid-template-columns: 1.25fr .88fr .88fr; gap: 18px; margin-top: 54px; }
.journey-card { min-height: 420px; display: flex; flex-direction: column; overflow: hidden; background: var(--cream); border: 1px solid var(--border); border-radius: 23px; box-shadow: 0 12px 36px rgba(23, 36, 33, .06); }
.journey-art { position: relative; height: 198px; overflow: hidden; background: linear-gradient(#f6ddad, #f4e8d8); }
.journey-sun { position: absolute; top: 28px; right: 50px; width: 49px; height: 49px; background: var(--gold); border-radius: 50%; }
.ridge { position: absolute; right: -10%; bottom: -60px; left: -10%; height: 170px; background: var(--sage); clip-path: polygon(0 100%, 0 70%, 19% 38%, 38% 65%, 58% 22%, 73% 54%, 88% 35%, 100% 75%, 100% 100%); }
.ridge-b { bottom: -80px; background: var(--pine); opacity: .92; transform: scaleX(1.15) translateX(5%); }
.path-line { position: absolute; z-index: 3; right: 28%; bottom: -20px; width: 110px; height: 140px; border-right: 12px solid var(--sand); border-radius: 50%; transform: rotate(-20deg); }
.journey-body { position: relative; flex: 1; padding: 27px; }
.status-badge { display: inline-flex; padding: 5px 9px; color: var(--pine); background: rgba(217, 154, 28, .15); border-radius: 99px; font-size: 8px; font-weight: 850; letter-spacing: .13em; }
.status-badge.muted { background: rgba(100, 122, 89, .13); }
.journey-body h3 { margin-top: 14px; font-family: var(--serif); font-size: 28px; }
.journey-body p { margin-top: 13px; color: var(--muted); font-size: 14px; }
.journey-meta { position: absolute; right: 27px; bottom: 21px; left: 27px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 13px; color: var(--sage); border-top: 1px solid var(--border); font-size: 9px; font-weight: 750; }
.journey-number { height: 138px; display: grid; place-items: center; color: rgba(255, 253, 248, .65); background: var(--sage); font-family: var(--serif); font-size: 60px; }
.journey-number.alt { color: rgba(11, 59, 49, .45); background: var(--stone); }

.privacy-callout { padding-block: 40px 95px; background: var(--sand); }
.privacy-panel { min-height: 330px; display: grid; grid-template-columns: 120px 1fr .9fr; align-items: center; gap: 46px; padding: 55px 64px; color: rgba(255, 253, 248, .7); background: var(--pine); border-radius: 28px; box-shadow: var(--shadow); }
.privacy-mark { width: 100px; height: 100px; display: grid; place-items: center; color: var(--gold); border: 1px solid rgba(255, 255, 255, .18); border-radius: 50%; font-size: 43px; box-shadow: inset 0 0 0 12px rgba(255, 255, 255, .035); }
.privacy-panel h2 { color: var(--cream); font-size: clamp(38px, 4vw, 54px); }
.privacy-copy p { font-size: 15px; }
.text-link { display: inline-flex; gap: 10px; margin-top: 22px; color: var(--pine); text-decoration: none; font-size: 13px; font-weight: 800; }
.light-link { color: #efbf60; }

.final-cta { overflow: hidden; text-align: center; background: var(--cream); }
.final-cta-inner { display: flex; flex-direction: column; align-items: center; }
.final-cta img { width: 118px; height: 118px; margin-bottom: 25px; object-fit: cover; border: 1px solid var(--border); border-radius: 28px; box-shadow: var(--shadow-small); }
.final-cta .eyebrow { justify-content: center; }
.final-cta p { margin: 23px 0 31px; color: var(--muted); font-size: 18px; }

.site-footer { padding: 48px 0; color: rgba(255, 253, 248, .68); background: var(--pine-deep); }
.footer-grid { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 35px; }
.footer-brand { color: var(--cream); }
.footer-brand img { border-color: rgba(255, 255, 255, .13); }
.footer-grid nav { display: flex; gap: 28px; }
.footer-grid nav a { color: rgba(255, 253, 248, .75); text-decoration: none; font-size: 12px; font-weight: 750; }
.footer-grid nav a:hover { color: #efbf60; }
.footer-grid > p { font-size: 10px; line-height: 1.7; text-align: right; }

/* Interior pages */
.page-hero { position: relative; overflow: hidden; color: rgba(255, 253, 248, .75); background: var(--pine); }
.page-hero::after { position: absolute; right: -120px; bottom: -220px; width: 580px; height: 580px; content: ''; border: 1px solid rgba(255, 255, 255, .08); border-radius: 50%; box-shadow: 0 0 0 65px rgba(255, 255, 255, .025), 0 0 0 130px rgba(255, 255, 255, .02); }
.page-hero-grid { min-height: 490px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 70px; padding-block: 65px; }
.page-hero h1 { max-width: 700px; color: var(--cream); }
.page-hero p { max-width: 610px; margin-top: 24px; font-size: 18px; }
.support-compass { position: relative; z-index: 2; width: 260px; height: 260px; display: flex; flex-direction: column; align-items: center; justify-content: center; justify-self: center; border: 1px solid rgba(255, 255, 255, .16); border-radius: 50%; box-shadow: 0 0 0 26px rgba(255, 255, 255, .03), 0 0 0 52px rgba(255, 255, 255, .02); }
.support-compass > span { position: absolute; top: 25px; color: var(--gold); font-size: 38px; }
.support-compass i { position: absolute; width: 1px; height: 140px; background: linear-gradient(var(--gold), transparent); transform: rotate(34deg); transform-origin: bottom; }
.support-compass b { z-index: 2; margin-top: 30px; color: var(--cream); font-family: var(--serif); font-size: 25px; }
.support-compass small { z-index: 2; color: rgba(255, 253, 248, .6); }

.support-section { background: var(--cream); }
.support-layout { display: grid; grid-template-columns: 340px 1fr; align-items: start; gap: 75px; }
.support-aside { position: sticky; top: 112px; }
.contact-card { padding: 28px; background: var(--sand); border: 1px solid var(--border); border-radius: 22px; box-shadow: var(--shadow-small); }
.contact-card .feature-icon { margin-bottom: 24px; }
.contact-card h2 { font-family: var(--serif); font-size: 32px; }
.contact-card > p:not(.card-kicker) { margin: 16px 0 24px; color: var(--muted); font-size: 14px; }
.contact-card .button { width: 100%; }
.email-link { display: block; margin-top: 15px; color: var(--sage); text-align: center; font-size: 11px; font-weight: 750; }
.notice-card { margin-top: 18px; padding: 20px 22px; color: rgba(255, 253, 248, .73); background: var(--pine); border-radius: 17px; }
.notice-card strong { color: var(--cream); font-family: var(--serif); font-size: 18px; }
.notice-card p { margin-top: 8px; font-size: 12px; }
.notice-card a { color: #efbf60; font-weight: 800; }
.compact-heading h2 { font-size: 46px; }
.help-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.help-card { min-height: 225px; position: relative; padding: 25px; background: var(--sand); border: 1px solid var(--border); border-radius: 18px; }
.help-number { color: var(--gold); font-family: var(--serif); font-size: 20px; }
.help-card h3 { margin-top: 24px; font-family: var(--serif); }
.help-card p { margin-top: 10px; color: var(--muted); font-size: 13px; }
.faq-block { margin-top: 80px; }
.faq-block .section-heading { margin-bottom: 32px; }
details { border-top: 1px solid var(--border); }
details:last-child { border-bottom: 1px solid var(--border); }
summary { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--pine); cursor: pointer; list-style: none; font-family: var(--serif); font-size: 20px; font-weight: 700; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--gold); font-family: var(--sans); font-size: 24px; font-weight: 400; transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details > div { padding: 0 52px 26px 0; color: var(--muted); font-size: 14px; }
details > div p + p { margin-top: 12px; }

.policy-date { display: inline-flex; margin-top: 28px; padding: 7px 12px; color: #efbf60; border: 1px solid rgba(239, 191, 96, .3); border-radius: 99px; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.privacy-crest { position: relative; z-index: 2; width: 280px; min-height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; justify-self: center; gap: 7px; color: rgba(255, 253, 248, .7); border: 1px solid rgba(255, 255, 255, .16); border-radius: 50% 50% 47% 47%; box-shadow: inset 0 0 0 16px rgba(255, 255, 255, .025); }
.privacy-crest span { width: 64px; height: 64px; display: grid; place-items: center; margin-bottom: 18px; color: var(--pine); background: var(--gold); border-radius: 50%; font-size: 28px; }
.privacy-crest i { position: absolute; top: 50%; width: 190px; height: 1px; background: rgba(255, 255, 255, .08); }
.privacy-crest b { color: var(--cream); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.policy-section { background: var(--cream); }
.policy-layout { display: grid; grid-template-columns: 220px minmax(0, 760px); justify-content: center; align-items: start; gap: 95px; }
.policy-nav { position: sticky; top: 118px; display: grid; padding-left: 19px; border-left: 2px solid var(--stone); }
.policy-nav strong { margin-bottom: 13px; color: var(--pine); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.policy-nav a { padding: 5px 0; color: var(--muted); text-decoration: none; font-size: 12px; }
.policy-nav a:hover { color: var(--ochre); }
.policy-content section { scroll-margin-top: 110px; margin-bottom: 74px; }
.policy-content section:last-child { margin-bottom: 0; }
.policy-content h2 { margin-bottom: 25px; padding-bottom: 14px; border-bottom: 1px solid var(--border); font-size: 38px; }
.policy-content h3 { font-family: var(--serif); font-size: 21px; }
.policy-content p, .policy-content li { color: var(--muted); font-size: 15px; }
.policy-content p + p { margin-top: 18px; }
.policy-content ul { display: grid; gap: 12px; padding-left: 22px; }
.policy-content li::marker { color: var(--gold); }
.policy-lede { color: var(--text) !important; font-family: var(--serif); font-size: 25px !important; line-height: 1.6; }
.plain-summary { display: flex; gap: 18px; margin: 32px 0; padding: 24px; color: rgba(255, 253, 248, .72); background: var(--pine); border-radius: 17px; }
.plain-summary > span { width: 40px; height: 40px; flex: 0 0 auto; display: grid; place-items: center; color: var(--pine); background: var(--gold); border-radius: 50%; }
.plain-summary strong { color: var(--cream); font-family: var(--serif); font-size: 20px; }
.plain-summary p { margin-top: 6px !important; color: rgba(255, 253, 248, .68) !important; font-size: 13px !important; }
.data-list { display: grid; gap: 0; }
.data-list > div { display: grid; grid-template-columns: 47px 1fr; gap: 17px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.data-list > div:first-child { border-top: 1px solid var(--border); }
.data-icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--pine); background: var(--stone); border-radius: 12px; font-family: var(--serif); font-weight: 800; }
.data-list p { margin-top: 8px; font-size: 13px; }
.service-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 27px 0; }
.service-cards > div { display: flex; flex-direction: column; padding: 19px; background: var(--sand); border: 1px solid var(--border); border-radius: 15px; }
.service-cards strong { color: var(--pine); font-family: var(--serif); font-size: 20px; }
.service-cards p { flex: 1; margin-top: 9px; font-size: 11px; }
.service-cards a { margin-top: 15px; color: var(--ochre); font-size: 10px; font-weight: 800; }
.policy-contact { padding: 38px !important; color: rgba(255, 253, 248, .7); background: var(--pine); border-radius: 22px; }
.policy-contact h2 { color: var(--cream); border-color: rgba(255, 255, 255, .13); }
.policy-contact p { color: rgba(255, 253, 248, .68); }
.policy-contact .button { margin-top: 24px; }

@media (max-width: 1040px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card.featured { grid-row: span 2; }
  .route-grid { gap: 45px; }
  .journey-cards { grid-template-columns: 1fr 1fr; }
  .sample-card { grid-row: span 2; }
  .privacy-panel { grid-template-columns: 90px 1fr; }
  .privacy-copy { grid-column: 2; }
  .policy-layout { grid-template-columns: 190px minmax(0, 720px); gap: 45px; }
}

@media (max-width: 820px) {
  .section { padding: 82px 0; }
  .nav-toggle { display: block; }
  .primary-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; align-items: stretch; gap: 0; padding: 10px 20px 20px; background: rgba(250, 244, 232, .98); border-bottom: 1px solid var(--border); box-shadow: 0 18px 30px rgba(23, 36, 33, .09); }
  .primary-nav.is-open { display: grid; }
  .primary-nav a { padding: 13px 8px; }
  .primary-nav a::after { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 75px; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .trust-list { justify-content: center; }
  .hero-copy h1, .hero-lede { margin-inline: auto; }
  .hero-art { margin-top: 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card.featured { grid-row: auto; }
  .route-grid { grid-template-columns: 1fr; }
  .route-copy { max-width: 620px; }
  .route-window { max-width: 650px; transform: none; }
  .split-heading { grid-template-columns: 1fr; gap: 25px; }
  .journey-cards { grid-template-columns: 1fr 1fr; }
  .sample-card { grid-row: auto; grid-column: 1 / -1; }
  .privacy-panel { padding: 45px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid nav { justify-self: end; }
  .footer-grid > p { grid-column: 1 / -1; text-align: left; }
  .page-hero-grid { grid-template-columns: 1fr .6fr; gap: 25px; }
  .support-compass, .privacy-crest { transform: scale(.8); }
  .support-layout { grid-template-columns: 1fr; gap: 65px; }
  .support-aside { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .notice-card { margin: 0; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-nav { position: static; display: flex; flex-wrap: wrap; gap: 4px 18px; padding: 0 0 20px; border: 0; border-bottom: 1px solid var(--border); }
  .policy-nav strong { width: 100%; }
}

@media (max-width: 600px) {
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .section { padding: 68px 0; }
  .header-inner { min-height: 72px; }
  .brand img { width: 44px; height: 44px; }
  .brand-copy strong { font-size: 15px; }
  .brand-copy span { font-size: 7px; }
  h1 { font-size: 50px; }
  h2 { font-size: 42px; }
  .hero { min-height: auto; }
  .hero-grid { padding-top: 58px; padding-bottom: 35px; }
  .hero-lede { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .trust-list { display: grid; }
  .hero-art { min-height: 620px; transform: scale(.92); margin-inline: -20px; }
  .feature-card { min-height: 400px; padding: 28px; }
  .section-heading.centered p { font-size: 16px; }
  .place-row { grid-template-columns: 23px 1fr 52px; }
  .place-row .services { display: none; }
  .journey-cards { grid-template-columns: 1fr; }
  .sample-card { grid-column: auto; }
  .journey-card { min-height: 400px; }
  .privacy-callout { padding-block: 15px 65px; }
  .privacy-panel { grid-template-columns: 1fr; gap: 25px; padding: 34px 28px; }
  .privacy-mark { width: 72px; height: 72px; font-size: 30px; }
  .privacy-copy { grid-column: auto; }
  .final-cta p { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid nav { justify-self: start; }
  .footer-grid > p { grid-column: auto; }
  .page-hero-grid { min-height: auto; grid-template-columns: 1fr; padding-block: 60px; }
  .page-hero h1 { font-size: 49px; }
  .page-hero p { font-size: 16px; }
  .support-compass, .privacy-crest { display: none; }
  .support-aside { grid-template-columns: 1fr; }
  .help-grid { grid-template-columns: 1fr; }
  .help-card { min-height: 190px; }
  .compact-heading h2 { font-size: 39px; }
  summary { min-height: 70px; font-size: 18px; }
  details > div { padding-right: 10px; }
  .policy-content h2 { font-size: 34px; }
  .policy-lede { font-size: 21px !important; }
  .plain-summary { padding: 20px; }
  .service-cards { grid-template-columns: 1fr; }
  .policy-contact { padding: 28px !important; }
  .policy-contact .button { width: 100%; overflow-wrap: anywhere; }
}

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