:root {
  --journey-blue: #0a2940;
  --journey-blue-soft: #163f56;
  --coastal-teal: #1f6d70;
  --coastal-teal-light: #d9e9e5;
  --sunrise-gold: #d8aa57;
  --cream: #f7f1e5;
  --paper: #fffaf0;
  --ink: #17323f;
  --muted: #62727a;
  --line: rgba(10, 41, 64, .14);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'DejaVu Sans', Arial, sans-serif;
  --signature: 'Segoe Script', 'Lucida Handwriting', 'Brush Script MT', cursive;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--sans); }
a { color: inherit; }
section[id] { scroll-margin-top: 24px; }
:where(a, button, input, select, textarea):focus-visible { outline: 3px solid var(--sunrise-gold); outline-offset: 4px; }
.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 50; background: white; color: var(--journey-blue); padding: .75rem 1rem; }
.skip-link:focus { top: 1rem; }

.site-header {
  position: relative;
  z-index: 10;
  min-height: 116px;
  padding: 20px clamp(28px, 5vw, 84px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(24px, 4vw, 70px);
  color: white;
  background: var(--journey-blue);
  border-bottom: 2px solid rgba(216,170,87,.75);
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand-mark-image {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.22));
}
.wordmark { display: flex; align-items: baseline; gap: 9px; white-space: nowrap; }
.wordmark > span {
  color: #fffaf0;
  font: 600 34px/1 var(--signature);
  letter-spacing: .01em;
}
.wordmark small {
  color: #f0c875;
  font: 600 20px/1 var(--signature);
  letter-spacing: .02em;
}
.site-header > nav { display: flex; justify-content: flex-end; gap: clamp(14px, 1.8vw, 30px); }
nav a { color: rgba(255,255,255,.91); text-decoration: none; font-size: 13px; white-space: nowrap; }
nav a:hover, nav a:focus-visible { color: var(--sunrise-gold); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 25px; border: 1px solid transparent; border-radius: 2px; text-decoration: none; font-size: 13px; font-weight: 700; letter-spacing: .03em; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--sunrise-gold); color: var(--journey-blue); }
.button-light { border-color: rgba(255,255,255,.75); color: white; background: rgba(10,41,64,.22); backdrop-filter: blur(3px); }
.header-cta { min-height: 46px; padding-inline: 22px; }
.menu-button { display: none; cursor: pointer; font: 700 13px/1 var(--sans); }

.hero { min-height: 720px; position: relative; display: grid; align-items: center; overflow: hidden; color: white; }
.hero-photo { position: absolute; inset: 0; background: url('assets/images/adobe-stock/AdobeStock_1980571104.jpeg') center center / cover no-repeat; transform: scale(1.01); }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,30,46,.88) 0%, rgba(7,30,46,.68) 34%, rgba(7,30,46,.20) 62%, rgba(7,30,46,.03) 100%), linear-gradient(0deg, rgba(7,30,46,.18), transparent 34%); }
.hero-copy { position: relative; z-index: 2; width: min(690px, 82vw); margin-left: clamp(30px, 8vw, 130px); padding: 92px 0 112px; }
.eyebrow { margin: 0 0 24px; color: #f0cb82; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; }
.hero h1 { max-width: 650px; margin: 0; font: 500 clamp(48px, 5.1vw, 78px)/1.03 var(--serif); letter-spacing: -.025em; }
.intro { max-width: 620px; margin: 30px 0 36px; font-size: 17px; line-height: 1.72; color: rgba(255,255,255,.92); }
.hero-actions { display: flex; gap: 13px; flex-wrap: wrap; }
.image-credit { position: absolute; z-index: 3; right: 22px; bottom: 15px; margin: 0; color: rgba(255,255,255,.78); font-size: 9px; letter-spacing: .04em; }

.experiences { padding: 112px clamp(28px, 7vw, 112px) 126px; background: var(--cream); }
.section-heading { max-width: 780px; margin: 0 auto 64px; text-align: center; }
.eyebrow.teal { color: var(--coastal-teal); margin-bottom: 18px; }
.section-heading h2 { margin: 0 0 20px; color: var(--journey-blue); font: 500 clamp(40px, 4vw, 61px)/1.1 var(--serif); letter-spacing: -.018em; }
.section-heading > p:last-child { max-width: 700px; margin: 0 auto; color: var(--muted); font-size: 16px; line-height: 1.75; }
.card-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.experience-card { background: var(--paper); border: 1px solid var(--line); box-shadow: 0 15px 42px rgba(10,41,64,.07); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.experience-card:hover { transform: translateY(-5px); box-shadow: 0 22px 50px rgba(10,41,64,.12); }
.experience-card > img { display: block; width: 100%; height: 246px; object-fit: cover; }
.experience-card:nth-child(1) > img { object-position: 50% 54%; }
.experience-card:nth-child(2) > img { object-position: 50% 54%; }
.experience-card:nth-child(3) > img { object-position: 50% 47%; }
.experience-card:nth-child(4) > img { object-position: 50% 55%; }
.experience-card:nth-child(5) > img { object-position: 50% 42%; }
.experience-card:nth-child(6) > img { object-position: 50% 42%; }
.card-body { position: relative; min-height: 264px; padding: 29px 30px 31px; display: flex; flex-direction: column; }
.card-number { position: absolute; right: 25px; top: 24px; margin: 0; color: rgba(216,170,87,.72); font: 400 14px/1 var(--serif); letter-spacing: .12em; }
.card-body h3 { width: calc(100% - 40px); margin: 0 0 14px; color: var(--journey-blue); font: 500 26px/1.15 var(--serif); }
.card-body > p:not(.card-number) { margin: 0 0 25px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.card-body a { margin-top: auto; width: fit-content; color: var(--coastal-teal); text-decoration: none; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .10em; border-bottom: 1px solid rgba(31,109,112,.4); padding-bottom: 5px; }
.card-body a span { margin-left: 8px; color: var(--sunrise-gold); }

.featured-journeys { padding: 118px clamp(28px, 7vw, 112px) 110px; background: var(--journey-blue); color: white; }
.journeys-heading h2 { color: white; }
.journeys-heading > p:last-child { color: rgba(255,255,255,.72); }
.journey-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 430px; gap: 28px; }
.journey-card { position: relative; min-height: 430px; overflow: hidden; border: 1px solid rgba(216,170,87,.34); background: var(--journey-blue-soft); }
.journey-card > img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .55s ease; }
.journey-card:hover > img { transform: scale(1.035); }
.journey-wide { grid-column: 1 / -1; min-height: 520px; }
.journey-wide > img { object-position: 50% 54%; }
.journey-tall > img { object-position: 50% 50%; }
.journey-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,25,38,.94) 0%, rgba(5,25,38,.64) 46%, rgba(5,25,38,.06) 78%); }
.journey-wide .journey-overlay { background: linear-gradient(90deg, rgba(5,25,38,.91) 0%, rgba(5,25,38,.62) 43%, rgba(5,25,38,.08) 78%); }
.journey-copy { position: absolute; z-index: 2; left: clamp(26px, 4vw, 58px); right: clamp(26px, 4vw, 58px); bottom: clamp(28px, 4vw, 52px); max-width: 590px; }
.journey-place { margin: 0 0 15px; color: #f0cb82; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; }
.journey-copy h3 { margin: 0 0 14px; font: 500 clamp(31px, 3vw, 47px)/1.08 var(--serif); }
.journey-copy > p:not(.journey-place) { max-width: 550px; margin: 0 0 24px; color: rgba(255,255,255,.84); font-size: 14px; line-height: 1.7; }
.journey-copy a { display: inline-block; padding-bottom: 6px; color: white; border-bottom: 1px solid rgba(216,170,87,.7); text-decoration: none; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .11em; }
.journey-copy a span { margin-left: 9px; color: var(--sunrise-gold); }
.journey-note { max-width: 860px; margin: 44px auto 0; color: rgba(255,255,255,.66); font-size: 13px; line-height: 1.7; text-align: center; }

.about-trust { padding: 108px clamp(28px, 7vw, 112px); background: var(--paper); }
.about-trust-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr); gap: clamp(48px, 7vw, 100px); align-items: center; }
.about-copy h2 { max-width: 760px; margin: 0 0 24px; color: var(--journey-blue); font: 500 clamp(40px, 4vw, 60px)/1.08 var(--serif); letter-spacing: -.018em; }
.about-copy > p:last-child { max-width: 720px; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.training-record { position: relative; padding: 36px 36px 38px; background: var(--cream); border: 1px solid var(--line); border-top: 3px solid var(--sunrise-gold); box-shadow: 0 18px 44px rgba(10,41,64,.08); }
.training-record::before { content: ''; position: absolute; right: 28px; top: 26px; width: 34px; height: 34px; border: 1px solid rgba(31,109,112,.26); border-radius: 50%; }
.training-label { margin: 0 0 18px; color: var(--coastal-teal); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; }
.training-record > p:last-child { margin: 0; color: var(--journey-blue); font: 500 25px/1.45 var(--serif); }

.connected-journey { padding: 118px clamp(28px, 7vw, 112px) 104px; background: var(--cream); }
.connected-intro { max-width: 1320px; margin: 0 auto 70px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr); gap: clamp(48px, 8vw, 128px); align-items: end; }
.connected-heading h2 { max-width: 760px; margin: 0; color: var(--journey-blue); font: 500 clamp(42px, 4.5vw, 66px)/1.07 var(--serif); letter-spacing: -.022em; }
.connected-summary { padding: 0 0 5px 34px; border-left: 2px solid rgba(216,170,87,.72); }
.connected-summary p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.8; }
.connected-summary p + p { margin-top: 16px; }
.connected-example { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: minmax(280px, .72fr) minmax(0, 1.55fr); background: var(--journey-blue); color: white; box-shadow: 0 24px 58px rgba(10,41,64,.14); overflow: hidden; }
.example-lead { position: relative; padding: clamp(40px, 5vw, 72px); background: var(--coastal-teal); }
.example-lead::after { content: ''; position: absolute; right: 32px; bottom: 32px; width: 92px; height: 92px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; box-shadow: 0 0 0 18px rgba(255,255,255,.035); }
.example-kicker { margin: 0 0 22px; color: #f3d492; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; }
.example-lead h3 { margin: 0 0 22px; font: 500 clamp(34px, 3.2vw, 49px)/1.08 var(--serif); }
.example-lead > p:last-child { position: relative; z-index: 1; margin: 0; color: rgba(255,255,255,.83); font-size: 14px; line-height: 1.75; }
.journey-steps { position: relative; list-style: none; margin: 0; padding: clamp(38px, 5vw, 66px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; }
.journey-steps::before { content: ''; position: absolute; left: 50%; top: 14%; bottom: 14%; width: 1px; background: rgba(216,170,87,.30); }
.journey-steps li { position: relative; min-height: 220px; display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 10px 34px 34px 0; }
.journey-steps li:nth-child(even) { padding-left: 42px; padding-right: 0; }
.journey-steps li:nth-child(n+3) { padding-top: 38px; border-top: 1px solid rgba(255,255,255,.12); }
.step-number { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(216,170,87,.7); border-radius: 50%; color: #f3d492; font: 500 12px/1 var(--serif); }
.step-time { margin: 2px 0 10px; color: #f3d492; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; }
.journey-steps h4 { margin: 0 0 12px; font: 500 27px/1.15 var(--serif); }
.journey-steps li p:last-child { margin: 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.7; }
.connected-close { max-width: 1080px; margin: 52px auto 0; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.connected-close p { margin: 0; color: var(--journey-blue); font: 500 clamp(24px, 2.4vw, 34px)/1.3 var(--serif); }
.connected-close strong { color: var(--coastal-teal); font-weight: 500; }
.button-teal { flex: 0 0 auto; background: var(--coastal-teal); color: white; }
.connected-note { max-width: 900px; margin: 32px auto 0; color: var(--muted); font-size: 11px; line-height: 1.7; text-align: center; }

.taking-off { padding: 118px clamp(28px, 7vw, 112px) 104px; background: var(--journey-blue); color: white; }
.taking-off-intro { max-width: 1320px; margin: 0 auto 64px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: clamp(48px, 8vw, 128px); align-items: end; }
.eyebrow.gold { color: #f0cb82; margin-bottom: 18px; }
.taking-off-intro h2 { max-width: 790px; margin: 0; font: 500 clamp(42px, 4.5vw, 66px)/1.07 var(--serif); letter-spacing: -.022em; }
.taking-off-summary { padding: 0 0 4px 34px; border-left: 2px solid rgba(216,170,87,.68); }
.taking-off-summary > p:first-child { margin: 0; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.8; }
.edition { margin: 22px 0 0; color: #f0cb82; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .16em; }
.edition span { margin-right: 9px; }
.weekly-board { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.28fr) minmax(360px, .72fr); gap: 28px; }
.weekly-lead { position: relative; min-height: 760px; overflow: hidden; border: 1px solid rgba(216,170,87,.38); background: var(--journey-blue-soft); }
.weekly-lead > img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 52% 50%; transition: transform .6s ease; }
.weekly-lead:hover > img { transform: scale(1.035); }
.weekly-lead-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,25,38,.96) 0%, rgba(5,25,38,.64) 46%, rgba(5,25,38,.05) 78%); }
.weekly-lead-copy { position: absolute; z-index: 2; left: clamp(28px, 4vw, 58px); right: clamp(28px, 4vw, 58px); bottom: clamp(42px, 5vw, 70px); max-width: 650px; }
.weekly-day { margin: 0 0 16px; color: #f0cb82; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; }
.weekly-lead-copy h3 { margin: 0 0 18px; font: 500 clamp(38px, 4vw, 57px)/1.06 var(--serif); }
.weekly-lead-copy > p:not(.weekly-day) { max-width: 600px; margin: 0 0 26px; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.75; }
.weekly-lead-copy a,
.weekly-note a { display: inline-block; padding-bottom: 6px; color: white; border-bottom: 1px solid rgba(216,170,87,.72); text-decoration: none; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .11em; }
.weekly-lead-copy a span,
.weekly-note a span { margin-left: 8px; color: var(--sunrise-gold); }
.weekly-image-credit { position: absolute; z-index: 3; right: 16px; top: 15px; margin: 0; padding: 6px 8px; background: rgba(5,25,38,.58); color: rgba(255,255,255,.75); font-size: 8px; letter-spacing: .04em; }
.weekly-notes { display: grid; grid-template-rows: repeat(3, 1fr); gap: 20px; }
.weekly-note { position: relative; padding: 35px 38px 34px; background: var(--paper); color: var(--ink); border-top: 3px solid var(--sunrise-gold); display: flex; flex-direction: column; }
.weekly-note .weekly-day { color: var(--coastal-teal); }
.note-number { position: absolute; right: 31px; top: 31px; margin: 0; color: rgba(216,170,87,.8); font: 400 13px/1 var(--serif); letter-spacing: .12em; }
.weekly-note h3 { max-width: 430px; margin: 0 0 12px; color: var(--journey-blue); font: 500 clamp(24px, 2.1vw, 31px)/1.14 var(--serif); }
.weekly-note > p:not(.weekly-day):not(.note-number) { margin: 0 0 21px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.weekly-note a { margin-top: auto; width: fit-content; color: var(--coastal-teal); border-bottom-color: rgba(31,109,112,.38); }
.weekly-note-teal { background: var(--coastal-teal); color: white; border-top-color: #f0cb82; }
.weekly-note-teal .weekly-day,
.weekly-note-teal h3,
.weekly-note-teal a { color: white; }
.weekly-note-teal .note-number { color: #f0cb82; }
.weekly-note-teal > p:not(.weekly-day):not(.note-number) { color: rgba(255,255,255,.78); }
.weekly-note-teal a { border-bottom-color: rgba(255,255,255,.54); }
.weekly-note-sunday { background: var(--coastal-teal-light); }
.weekly-close { max-width: 1080px; margin: 52px auto 0; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.weekly-close p { max-width: 750px; margin: 0; color: rgba(255,255,255,.78); font-size: 15px; line-height: 1.75; }
.weekly-close strong { color: white; font: 500 24px/1.35 var(--serif); }
.weekly-close .button { flex: 0 0 auto; }
.weekly-disclaimer { max-width: 950px; margin: 34px auto 0; color: rgba(255,255,255,.54); font-size: 10px; line-height: 1.7; text-align: center; }

.travel-inspiration { padding: 118px clamp(28px, 7vw, 112px) 104px; background: var(--paper); }
.inspiration-intro { max-width: 1320px; margin: 0 auto 66px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(48px, 8vw, 128px); align-items: end; }
.inspiration-intro h2 { max-width: 790px; margin: 0; color: var(--journey-blue); font: 500 clamp(42px, 4.5vw, 66px)/1.07 var(--serif); letter-spacing: -.022em; }
.inspiration-summary { padding: 0 0 4px 34px; border-left: 2px solid rgba(216,170,87,.72); }
.inspiration-summary p { margin: 0 0 22px; color: var(--muted); font-size: 15px; line-height: 1.8; }
.inspiration-summary a,
.journal-feature-copy > a,
.journal-card-copy > a { display: inline-block; width: fit-content; padding-bottom: 6px; color: var(--coastal-teal); border-bottom: 1px solid rgba(31,109,112,.38); text-decoration: none; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .11em; }
.inspiration-summary a span,
.journal-feature-copy > a span,
.journal-card-copy > a span { margin-left: 8px; color: var(--sunrise-gold); }
.journal-grid { max-width: 1320px; margin: 0 auto; }
.journal-feature { display: grid; grid-template-columns: minmax(0, 1.32fr) minmax(370px, .68fr); min-height: 590px; background: var(--cream); border: 1px solid var(--line); box-shadow: 0 22px 54px rgba(10,41,64,.09); }
.journal-feature-image { position: relative; min-height: 590px; overflow: hidden; background: var(--coastal-teal-light); }
.journal-feature-image img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: 50% 48%; transition: transform .6s ease; }
.journal-feature:hover .journal-feature-image img { transform: scale(1.025); }
.journal-image-credit { position: absolute; right: 14px; bottom: 13px; margin: 0; padding: 6px 8px; background: rgba(5,25,38,.62); color: rgba(255,255,255,.76); font-size: 8px; letter-spacing: .04em; }
.journal-feature-copy { padding: clamp(42px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; border-top: 3px solid var(--sunrise-gold); }
.journal-type { margin: 0 0 18px; color: var(--coastal-teal); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .17em; }
.journal-feature-copy h3 { margin: 0 0 22px; color: var(--journey-blue); font: 500 clamp(34px, 3vw, 48px)/1.09 var(--serif); }
.journal-feature-copy > p:not(.journal-type) { margin: 0 0 24px; color: var(--muted); font-size: 14px; line-height: 1.78; }
.journal-meta { display: flex; gap: 10px 24px; flex-wrap: wrap; margin: 0 0 28px; color: var(--journey-blue-soft); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.journal-meta span + span::before { content: '·'; margin-right: 24px; color: var(--sunrise-gold); }
.journal-stories { margin-top: 28px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.journal-card { min-height: 550px; display: flex; flex-direction: column; overflow: hidden; background: var(--cream); border: 1px solid var(--line); box-shadow: 0 15px 42px rgba(10,41,64,.06); }
.journal-card > img { width: 100%; height: 245px; display: block; object-fit: cover; transition: transform .45s ease; }
.journal-card:hover > img { transform: scale(1.025); }
.journal-card:last-child > img { object-position: 50% 64%; }
.journal-card-copy { flex: 1; padding: 31px 31px 34px; display: flex; flex-direction: column; }
.journal-card-copy h3 { margin: 0 0 15px; color: var(--journey-blue); font: 500 clamp(27px, 2.3vw, 34px)/1.13 var(--serif); }
.journal-card-copy > p:not(.journal-type) { margin: 0 0 25px; color: var(--muted); font-size: 13px; line-height: 1.72; }
.journal-card-copy > a { margin-top: auto; }
.journal-card-paper { position: relative; background: var(--coastal-teal); color: white; border-color: transparent; }
.journal-card-paper::after { content: ''; position: absolute; right: -52px; bottom: -52px; width: 180px; height: 180px; border: 1px solid rgba(255,255,255,.13); border-radius: 50%; box-shadow: 0 0 0 34px rgba(255,255,255,.025); }
.journal-card-paper .journal-card-copy { position: relative; z-index: 1; justify-content: center; padding: 42px 38px; }
.journal-card-paper .journal-type { color: #f3d492; }
.journal-card-paper .journal-card-copy h3,
.journal-card-paper .journal-card-copy > a { color: white; }
.journal-card-paper .journal-card-copy > p:not(.journal-type) { color: rgba(255,255,255,.79); }
.journal-card-paper .journal-card-copy > a { border-bottom-color: rgba(255,255,255,.48); }
.inspiration-close { max-width: 1180px; margin: 70px auto 0; padding: 46px 50px; display: grid; grid-template-columns: minmax(260px, .8fr) minmax(300px, 1fr) auto; gap: clamp(32px, 5vw, 66px); align-items: center; background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.inspiration-close .eyebrow { margin-bottom: 13px; }
.inspiration-close h3 { margin: 0; color: var(--journey-blue); font: 500 clamp(28px, 2.6vw, 38px)/1.15 var(--serif); }
.inspiration-close > p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.inspiration-close .button { white-space: nowrap; }
.inspiration-note { max-width: 950px; margin: 32px auto 0; color: var(--muted); font-size: 10px; line-height: 1.7; text-align: center; }

.trust-reassurance { padding: 118px clamp(28px, 7vw, 112px) 104px; background: var(--journey-blue); color: white; }
.trust-intro { max-width: 1320px; margin: 0 auto 66px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: clamp(48px, 8vw, 128px); align-items: end; }
.trust-intro h2 { max-width: 760px; margin: 0; font: 500 clamp(42px, 4.5vw, 66px)/1.07 var(--serif); letter-spacing: -.022em; }
.trust-summary { padding: 0 0 4px 34px; border-left: 2px solid rgba(216,170,87,.68); }
.trust-summary p { margin: 0; color: rgba(255,255,255,.74); font-size: 15px; line-height: 1.8; }
.trust-panel { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: minmax(340px, .8fr) minmax(0, 1.2fr); background: var(--paper); color: var(--ink); box-shadow: 0 26px 64px rgba(0,0,0,.2); }
.affiliation-card { position: relative; padding: clamp(44px, 5vw, 72px); overflow: hidden; background: var(--coastal-teal); color: white; }
.affiliation-card::after { content: ''; position: absolute; right: -70px; bottom: -70px; width: 230px; height: 230px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 38px rgba(255,255,255,.025); }
.inteletravel-logo-panel { position: relative; z-index: 1; width: min(100%, 260px); margin: 0 0 34px; padding: 16px 20px; display: grid; place-items: center; background: white; border-radius: 3px; box-shadow: 0 12px 30px rgba(5,25,38,.16); }
.inteletravel-logo-panel img { display: block; width: 100%; height: auto; object-fit: contain; }
.trust-kicker { margin: 0 0 17px; color: #f3d492; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; }
.affiliation-card h3 { max-width: 540px; margin: 0 0 24px; font: 500 clamp(34px, 3.2vw, 48px)/1.09 var(--serif); }
.affiliation-card > p:not(.trust-kicker) { position: relative; z-index: 1; margin: 0; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.78; }
.affiliation-card > p + p { margin-top: 17px; }
.reassurance-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.reassurance-list article { min-height: 285px; padding: clamp(34px, 4vw, 54px); display: grid; grid-template-columns: 48px 1fr; gap: 20px; border-bottom: 1px solid var(--line); }
.reassurance-list article:nth-child(odd) { border-right: 1px solid var(--line); }
.reassurance-list article:nth-child(n+3) { border-bottom: 0; }
.reassurance-number { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(31,109,112,.42); border-radius: 50%; color: var(--coastal-teal); font: 500 12px/1 var(--serif); }
.reassurance-list h3 { margin: 4px 0 13px; color: var(--journey-blue); font: 500 clamp(24px, 2vw, 30px)/1.15 var(--serif); }
.reassurance-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.72; }
.trust-close { max-width: 1180px; margin: 66px auto 0; padding: 45px 50px; display: grid; grid-template-columns: minmax(260px, .8fr) minmax(300px, 1fr) auto; gap: clamp(32px, 5vw, 66px); align-items: center; border-top: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); }
.trust-close .eyebrow { margin-bottom: 13px; }
.trust-close h3 { margin: 0; font: 500 clamp(28px, 2.6vw, 38px)/1.15 var(--serif); }
.trust-close > p { margin: 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.75; }
.trust-close .button { white-space: nowrap; }
.trust-note { max-width: 950px; margin: 32px auto 0; color: rgba(255,255,255,.52); font-size: 10px; line-height: 1.7; text-align: center; }
.trust-note a { color: #f0cb82; font-weight: 700; }

.start-planning { padding: 118px clamp(28px, 7vw, 112px) 110px; display: grid; grid-template-columns: minmax(320px, .75fr) minmax(520px, 1.25fr); gap: clamp(48px, 7vw, 112px); background: var(--cream); }
.planning-intro { max-width: 600px; padding-top: 22px; }
.planning-intro h2 { margin: 0 0 28px; color: var(--journey-blue); font: 500 clamp(42px, 4.4vw, 65px)/1.07 var(--serif); letter-spacing: -.022em; }
.planning-lead { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.85; }
.personal-contact { margin: 46px 0 0; padding: 30px 32px 32px; background: var(--paper); border-left: 3px solid var(--sunrise-gold); box-shadow: 0 14px 38px rgba(10,41,64,.07); }
.contact-label { margin: 0 0 13px; color: var(--coastal-teal); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .17em; }
.personal-contact h3 { margin: 0 0 10px; color: var(--journey-blue); font: 500 31px/1.15 var(--serif); }
.personal-contact > p:not(.contact-label) { margin: 0 0 15px; color: var(--muted); font-size: 13px; line-height: 1.65; }
.personal-contact a { color: var(--coastal-teal); font-size: 13px; font-weight: 700; overflow-wrap: anywhere; }
.planning-intro blockquote { margin: 38px 0 0; padding: 0 0 0 27px; border-left: 1px solid rgba(31,109,112,.38); }
.planning-intro blockquote p { margin: 0; color: var(--journey-blue); font: italic 500 26px/1.42 var(--serif); }
.enquiry-card { max-width: 820px; background: var(--paper); border-top: 4px solid var(--sunrise-gold); box-shadow: 0 26px 64px rgba(10,41,64,.12); }
.enquiry-card-heading { padding: 49px clamp(32px, 5vw, 66px) 31px; }
.form-kicker { margin: 0 0 14px; color: var(--coastal-teal); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .17em; }
.enquiry-card-heading h3 { margin: 0 0 13px; color: var(--journey-blue); font: 500 clamp(34px, 3.2vw, 47px)/1.1 var(--serif); }
.enquiry-card-heading > p:last-child { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }
#enquiry-form { padding: 0 clamp(32px, 5vw, 66px) 48px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.form-field { margin-top: 21px; }
.form-field label { display: block; margin: 0 0 9px; color: var(--journey-blue); font-size: 11px; font-weight: 700; letter-spacing: .035em; }
.form-field input,
.form-field select,
.form-field textarea { width: 100%; min-height: 50px; padding: 13px 14px; color: var(--ink); background: #fffdf7; border: 1px solid rgba(10,41,64,.24); border-radius: 2px; font: 14px/1.45 var(--sans); }
.form-field textarea { min-height: 142px; resize: vertical; }
.form-field input::placeholder,
.form-field textarea::placeholder { color: #7d8a8e; opacity: 1; }
.form-field input:focus-visible,
.form-field select:focus-visible,
.form-field textarea:focus-visible { outline: 3px solid rgba(216,170,87,.38); outline-offset: 1px; border-color: var(--coastal-teal); }
.form-check { margin-top: 22px; display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; }
.form-check input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--coastal-teal); }
.form-check label { color: var(--muted); font-size: 11px; line-height: 1.65; }
.form-check a { color: var(--coastal-teal); font-weight: 700; }
.form-action { margin-top: 28px; display: flex; align-items: center; gap: 20px; }
.form-action .button { border: 0; cursor: pointer; }
.form-action > p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.form-status { margin: 21px 0 0; padding: 14px 16px; color: var(--journey-blue); background: var(--coastal-teal-light); border-left: 3px solid var(--coastal-teal); font-size: 11px; line-height: 1.65; }
.email-option { padding: 31px clamp(32px, 5vw, 66px); display: flex; justify-content: space-between; align-items: center; gap: 28px; background: var(--journey-blue); color: white; }
.email-option-label { margin: 0 0 7px; color: #f0cb82; font: 500 22px/1.2 var(--serif); }
.email-option div > p:last-child { max-width: 450px; margin: 0; color: rgba(255,255,255,.71); font-size: 11px; line-height: 1.65; }
.email-option .button { flex: 0 0 auto; background: white; color: var(--coastal-teal); }
.newsletter-signup { padding: 92px clamp(28px, 7vw, 112px); display: grid; grid-template-columns: minmax(320px, .9fr) minmax(440px, 1.1fr); gap: clamp(48px, 8vw, 120px); align-items: center; color: white; background: var(--coastal-teal); }
.newsletter-copy { max-width: 650px; }
.newsletter-copy h2 { margin: 0 0 24px; font: 500 clamp(40px, 4vw, 61px)/1.08 var(--serif); letter-spacing: -.018em; }
.newsletter-copy > p:last-child { margin: 0; color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.8; }
.newsletter-form { padding: 38px 42px 40px; background: rgba(7,31,49,.36); border: 1px solid rgba(255,255,255,.18); box-shadow: 0 22px 54px rgba(5,25,38,.18); }
.newsletter-form .form-field { margin-top: 0; }
.newsletter-form .form-field label { color: white; }
.newsletter-form .button { margin-top: 26px; border: 0; cursor: pointer; }
.form-check-light label { color: rgba(255,255,255,.79); }
.form-check-light a { color: #f3d492; }
.newsletter-status { margin: 20px 0 0; color: rgba(255,255,255,.76); font-size: 10px; line-height: 1.65; }
.site-footer { padding: 52px clamp(28px, 7vw, 112px) 40px; display: grid; grid-template-columns: auto 1fr auto; gap: 20px 50px; align-items: center; color: white; background: #071f31; border-top: 2px solid rgba(216,170,87,.72); }
.footer-brand { width: fit-content; }
.site-footer > p { margin: 0; color: rgba(255,255,255,.68); font-size: 12px; }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a { color: rgba(255,255,255,.82); font-size: 11px; }
.footer-small { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 9px !important; line-height: 1.65; }

/* About Upway Travel */
.about-page nav a[aria-current="page"] { color: var(--sunrise-gold); }
.about-hero { min-height: 690px; padding: 72px clamp(28px, 7vw, 112px); display: grid; grid-template-columns: minmax(380px, 1.05fr) minmax(360px, .95fr); gap: clamp(50px, 8vw, 126px); align-items: center; background: var(--paper); overflow: hidden; }
.about-hero-copy { max-width: 720px; }
.about-hero h1 { max-width: 700px; margin: 0 0 30px; color: var(--journey-blue); font: 500 clamp(52px, 5.4vw, 82px)/1.02 var(--serif); letter-spacing: -.028em; }
.about-hero-lead { max-width: 670px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.82; }
.about-signoff { margin: 40px 0 0; padding-left: 24px; color: var(--journey-blue); border-left: 2px solid var(--sunrise-gold); font: italic 500 24px/1.2 var(--serif); }
.about-signoff span { display: block; margin-top: 8px; color: var(--coastal-teal); font: 700 10px/1.2 var(--sans); text-transform: uppercase; letter-spacing: .16em; }
.founder-portrait { position: relative; max-width: 620px; margin: 0; justify-self: end; padding: 0 0 36px 36px; }
.founder-portrait::before { content: ''; position: absolute; left: 0; bottom: 0; width: 72%; height: 70%; background: var(--coastal-teal); }
.founder-portrait::after { content: ''; position: absolute; right: -46px; top: -46px; width: 132px; height: 132px; border: 1px solid rgba(216,170,87,.55); border-radius: 50%; box-shadow: 0 0 0 28px rgba(216,170,87,.08); }
.founder-portrait img { position: relative; z-index: 1; display: block; width: 100%; height: auto; aspect-ratio: auto; object-fit: contain; object-position: center; box-shadow: 0 28px 68px rgba(10,41,64,.18); }
.founder-portrait figcaption { position: absolute; z-index: 2; right: -20px; bottom: 8px; max-width: 300px; padding: 17px 22px; color: white; background: var(--journey-blue); font-size: 10px; font-weight: 700; line-height: 1.55; text-transform: uppercase; letter-spacing: .12em; }
.founder-story { padding: 116px clamp(28px, 7vw, 112px); display: grid; grid-template-columns: minmax(300px, .76fr) minmax(480px, 1.24fr); gap: clamp(54px, 9vw, 140px); background: var(--cream); }
.founder-story-heading { max-width: 570px; }
.founder-story-heading h2 { margin: 0; color: var(--journey-blue); font: 500 clamp(42px, 4.5vw, 66px)/1.07 var(--serif); letter-spacing: -.022em; }
.founder-story-copy { max-width: 770px; padding-left: 38px; border-left: 2px solid rgba(216,170,87,.72); }
.founder-story-copy p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.88; }
.founder-story-copy p + p { margin-top: 20px; }
.career-journey { padding: 116px clamp(28px, 7vw, 112px) 108px; color: white; background: var(--journey-blue); }
.career-intro { max-width: 820px; margin: 0 auto 62px; text-align: center; }
.career-intro h2 { margin: 0 0 20px; font: 500 clamp(42px, 4.5vw, 66px)/1.07 var(--serif); letter-spacing: -.022em; }
.career-intro > p:last-child { max-width: 620px; margin: 0 auto; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.75; }
.career-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid rgba(216,170,87,.28); }
.career-grid article { position: relative; min-height: 430px; padding: 48px 34px 40px; background: rgba(255,255,255,.025); border-right: 1px solid rgba(255,255,255,.12); }
.career-grid article:last-child { border-right: 0; }
.career-number { display: block; margin: 0 0 58px; color: #f0cb82; font: 500 13px/1 var(--serif); letter-spacing: .14em; }
.career-label { margin: 0 0 13px; color: #f0cb82; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; }
.career-grid h3 { margin: 0 0 18px; font: 500 30px/1.13 var(--serif); }
.career-grid article > p:last-child { margin: 0; color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.75; }
.upway-values { padding: 116px clamp(28px, 7vw, 112px); background: var(--paper); }
.values-heading { max-width: 820px; margin: 0 auto 62px; text-align: center; }
.values-heading h2 { margin: 0 0 22px; color: var(--journey-blue); font: 500 clamp(42px, 4.5vw, 66px)/1.07 var(--serif); letter-spacing: -.022em; }
.values-heading > p:last-child { max-width: 700px; margin: 0 auto; color: var(--muted); font-size: 16px; line-height: 1.78; }
.values-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.values-grid article { position: relative; min-height: 240px; padding: 40px 42px 38px 96px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.values-grid article > span { position: absolute; left: 38px; top: 44px; width: 40px; height: 40px; display: grid; place-items: center; color: var(--coastal-teal); border: 1px solid rgba(31,109,112,.38); border-radius: 50%; font: 500 11px/1 var(--serif); }
.values-grid h3 { margin: 0 0 13px; color: var(--journey-blue); font: 500 31px/1.15 var(--serif); }
.values-grid p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.about-approach { padding: 116px clamp(28px, 7vw, 112px); display: grid; grid-template-columns: minmax(480px, 1.18fr) minmax(320px, .82fr); gap: clamp(50px, 8vw, 120px); align-items: center; background: var(--cream); }
.approach-panel { max-width: 760px; }
.approach-panel h2 { margin: 0 0 28px; color: var(--journey-blue); font: 500 clamp(42px, 4.5vw, 64px)/1.08 var(--serif); letter-spacing: -.022em; }
.approach-panel > p:not(.eyebrow) { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.84; }
.approach-panel > p + p { margin-top: 17px; }
.about-quote { position: relative; margin: 0; padding: 60px 54px; color: white; background: var(--coastal-teal); box-shadow: 0 24px 58px rgba(10,41,64,.14); }
.about-quote::after { content: '“'; position: absolute; right: 28px; top: 12px; color: rgba(255,255,255,.12); font: 120px/1 var(--serif); }
.about-quote p { position: relative; z-index: 1; margin: 0; font: italic 500 clamp(26px, 2.5vw, 38px)/1.42 var(--serif); }
.about-quote span { display: block; margin-top: 28px; color: #f3d492; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .17em; }
.about-invitation { padding: 110px clamp(28px, 7vw, 112px) 78px; display: grid; grid-template-columns: minmax(420px, 1.2fr) minmax(320px, .8fr); gap: clamp(50px, 8vw, 120px); color: white; background: var(--journey-blue); }
.about-invitation h2 { max-width: 780px; margin: 0 0 24px; font: 500 clamp(42px, 4.5vw, 66px)/1.07 var(--serif); letter-spacing: -.022em; }
.about-invitation > div:first-child > p:last-child { max-width: 760px; margin: 0; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.82; }
.invitation-action { align-self: end; padding-left: 36px; border-left: 2px solid rgba(216,170,87,.68); }
.invitation-action p { margin: 0 0 26px; color: rgba(255,255,255,.82); font: 500 27px/1.4 var(--serif); }
.about-tagline { grid-column: 1 / -1; margin: 54px 0 0; padding-top: 34px; color: #f0cb82; border-top: 1px solid rgba(255,255,255,.14); text-align: center; font: italic 500 clamp(24px, 2.5vw, 36px)/1.35 var(--serif); }

/* Legal pages */
.privacy-page nav a[aria-current="page"],
.terms-page nav a[aria-current="page"] { color: var(--sunrise-gold); }
.legal-hero { padding: 92px clamp(28px, 7vw, 112px) 78px; color: white; background: var(--journey-blue); }
.legal-hero-inner { max-width: 1040px; margin: 0 auto; }
.legal-hero h1 { max-width: 850px; margin: 0 0 26px; font: 500 clamp(50px, 5vw, 76px)/1.03 var(--serif); letter-spacing: -.025em; }
.legal-hero .legal-lead { max-width: 780px; margin: 0; color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.8; }
.legal-meta { margin: 28px 0 0; color: #f0cb82; font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.legal-hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.legal-layout { padding: 84px clamp(28px, 7vw, 112px) 108px; display: grid; grid-template-columns: minmax(220px, .35fr) minmax(520px, 1fr); gap: clamp(44px, 8vw, 120px); background: var(--paper); }
.legal-toc { position: sticky; top: 24px; align-self: start; padding: 28px 30px; background: var(--cream); border-top: 3px solid var(--sunrise-gold); }
.legal-toc h2 { margin: 0 0 18px; color: var(--journey-blue); font: 500 25px/1.2 var(--serif); }
.legal-toc ol { margin: 0; padding-left: 20px; color: var(--muted); }
.legal-toc li + li { margin-top: 9px; }
.legal-toc a { color: var(--coastal-teal); font-size: 11px; line-height: 1.45; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal-content { max-width: 850px; }
.legal-section { padding: 0 0 42px; scroll-margin-top: 24px; }
.legal-section + .legal-section { padding-top: 42px; border-top: 1px solid var(--line); }
.legal-section h2 { margin: 0 0 20px; color: var(--journey-blue); font: 500 clamp(30px, 3vw, 41px)/1.15 var(--serif); }
.legal-section h3 { margin: 26px 0 12px; color: var(--journey-blue); font: 500 23px/1.25 var(--serif); }
.legal-section p, .legal-section li { color: var(--muted); font-size: 13px; line-height: 1.8; }
.legal-section p { margin: 0; }
.legal-section p + p { margin-top: 15px; }
.legal-section ul { margin: 18px 0 0; padding-left: 22px; }
.legal-section li + li { margin-top: 7px; }
.legal-section a { color: var(--coastal-teal); font-weight: 700; overflow-wrap: anywhere; }
.legal-contact { margin-top: 24px; padding: 24px 27px; background: var(--cream); border-left: 3px solid var(--sunrise-gold); }
.legal-contact p { color: var(--ink); }
.legal-callout { margin-top: 24px; padding: 24px 27px; color: var(--journey-blue); background: var(--coastal-teal-light); border-left: 3px solid var(--coastal-teal); }
.legal-callout p { color: var(--journey-blue); }
.section-label { margin: 0 0 12px !important; color: var(--coastal-teal) !important; font-size: 10px !important; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.protection-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.protection-card { padding: 30px 30px 32px; background: var(--cream); border-top: 3px solid var(--sunrise-gold); }
.protection-card-teal { background: var(--coastal-teal-light); border-top-color: var(--coastal-teal); }
.protection-card .protection-kicker { margin: 0 0 9px; color: var(--coastal-teal); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.protection-card h3 { margin: 0 0 15px; }
.protection-card p + p { margin-top: 12px; }
.protection-card a { display: inline-block; margin-top: 20px; }
.resource-list li + li { margin-top: 12px; }

@media (max-width: 1160px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .site-header > nav { display: none; }
  .site-header > nav.nav-open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px clamp(20px, 5vw, 60px) 18px;
    background: var(--journey-blue);
    border-bottom: 2px solid rgba(216,170,87,.75);
  }
  .site-header > nav.nav-open a { padding: 12px 0; }
  .menu-button { display: block; justify-self: end; background: transparent; color: white; border: 1px solid rgba(255,255,255,.4); padding: 10px 14px; }
  .header-cta { justify-self: end; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .connected-example { grid-template-columns: 1fr; }
  .example-lead { padding-right: 28%; }
  .weekly-board { grid-template-columns: 1fr; }
  .weekly-lead { min-height: 660px; }
  .weekly-notes { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-template-rows: none; }
  .weekly-note { min-height: 360px; padding-inline: 28px; }
  .journal-feature { grid-template-columns: 1fr; }
  .journal-feature-image { min-height: 500px; }
  .journal-stories { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .journal-card-paper { grid-column: span 1; }
  .journal-card:last-child { grid-column: 1 / -1; min-height: 430px; display: grid; grid-template-columns: 1fr 1fr; }
  .journal-card:last-child > img { height: 100%; }
  .inspiration-close { grid-template-columns: 1fr 1fr; }
  .inspiration-close .button { grid-column: 1 / -1; width: fit-content; }
  .trust-panel { grid-template-columns: 1fr; }
  .trust-close { grid-template-columns: 1fr 1fr; }
  .trust-close .button { grid-column: 1 / -1; width: fit-content; }
  .start-planning { grid-template-columns: 1fr; }
  .newsletter-signup { grid-template-columns: 1fr; }
  .planning-intro { max-width: 820px; padding-top: 0; }
  .enquiry-card { max-width: none; }
  .site-footer { grid-template-columns: auto 1fr; }
  .footer-nav { grid-column: 1 / -1; justify-content: flex-start; }
  .about-hero { grid-template-columns: minmax(340px, 1fr) minmax(320px, .85fr); gap: 48px; }
  .career-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .career-grid article:nth-child(2) { border-right: 0; }
  .career-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .about-approach { grid-template-columns: 1fr; }
  .approach-panel { max-width: 820px; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
}
@media (max-width: 720px) {
  .site-header { min-height: 88px; padding: 12px 20px; grid-template-columns: auto auto; }
  .brand-mark-image { width: 52px; height: 52px; flex-basis: 52px; }
  .wordmark { gap: 6px; }
  .wordmark > span { font-size: 27px; }
  .wordmark small { font-size: 16px; }
  .header-cta { display: none; }
  .hero { min-height: 680px; align-items: end; }
  .hero-shade { background: linear-gradient(0deg, rgba(7,30,46,.94) 0%, rgba(7,30,46,.65) 60%, rgba(7,30,46,.12) 100%); }
  .hero-copy { width: auto; margin: 0; padding: 190px 24px 70px; }
  .hero h1 { font-size: 46px; }
  .intro { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .image-credit { display: none; }
  .experiences { padding: 74px 20px 84px; }
  .section-heading { margin-bottom: 42px; }
  .section-heading h2 { font-size: 42px; }
  .card-grid { grid-template-columns: 1fr; gap: 22px; }
  .featured-journeys { padding: 78px 20px 72px; }
  .journey-grid { grid-template-columns: 1fr; grid-auto-rows: 470px; gap: 20px; }
  .journey-wide { grid-column: auto; min-height: 470px; }
  .journey-wide .journey-overlay { background: linear-gradient(0deg, rgba(5,25,38,.94) 0%, rgba(5,25,38,.64) 48%, rgba(5,25,38,.06) 80%); }
  .journey-copy h3 { font-size: 35px; }
  .about-trust { padding: 76px 20px 82px; }
  .about-trust-inner { grid-template-columns: 1fr; gap: 38px; }
  .about-copy h2 { font-size: 42px; }
  .training-record { padding: 30px 26px 32px; }
  .training-record > p:last-child { font-size: 22px; }
  .connected-journey { padding: 78px 20px 76px; }
  .connected-intro { grid-template-columns: 1fr; gap: 34px; margin-bottom: 46px; }
  .connected-heading h2 { font-size: 43px; }
  .connected-summary { padding-left: 22px; }
  .example-lead { padding: 40px 28px 44px; }
  .example-lead::after { width: 70px; height: 70px; right: 22px; bottom: 22px; }
  .journey-steps { grid-template-columns: 1fr; padding: 32px 26px; }
  .journey-steps::before { left: 46px; top: 50px; bottom: 50px; }
  .journey-steps li,
  .journey-steps li:nth-child(even) { min-height: 0; padding: 18px 0 27px; grid-template-columns: 42px 1fr; gap: 16px; }
  .journey-steps li:nth-child(n+3) { border-top: 0; }
  .journey-steps li + li { border-top: 1px solid rgba(255,255,255,.12); padding-top: 27px; }
  .step-number { position: relative; z-index: 1; background: var(--journey-blue); }
  .journey-steps h4 { font-size: 25px; }
  .connected-close { margin-top: 40px; flex-direction: column; align-items: stretch; text-align: center; }
  .taking-off { padding: 78px 20px 76px; }
  .taking-off-intro { grid-template-columns: 1fr; gap: 34px; margin-bottom: 46px; }
  .taking-off-intro h2 { font-size: 43px; }
  .taking-off-summary { padding-left: 22px; }
  .weekly-lead { min-height: 590px; }
  .weekly-lead-copy { bottom: 38px; }
  .weekly-lead-copy h3 { font-size: 39px; }
  .weekly-image-credit { display: none; }
  .weekly-notes { grid-template-columns: 1fr; }
  .weekly-note { min-height: 0; padding: 32px 27px 34px; }
  .weekly-note h3 { font-size: 28px; }
  .weekly-close { margin-top: 40px; flex-direction: column; align-items: stretch; text-align: center; }
  .travel-inspiration { padding: 78px 20px 76px; }
  .inspiration-intro { grid-template-columns: 1fr; gap: 34px; margin-bottom: 46px; }
  .inspiration-intro h2 { font-size: 43px; }
  .inspiration-summary { padding-left: 22px; }
  .journal-feature { min-height: 0; }
  .journal-feature-image { min-height: 380px; }
  .journal-image-credit { display: none; }
  .journal-feature-copy { padding: 36px 27px 40px; }
  .journal-feature-copy h3 { font-size: 35px; }
  .journal-stories { grid-template-columns: 1fr; gap: 20px; }
  .journal-card { min-height: 0; }
  .journal-card > img { height: 240px; }
  .journal-card-copy { padding: 29px 27px 32px; }
  .journal-card-copy h3 { font-size: 29px; }
  .journal-card-paper { min-height: 390px; }
  .journal-card:last-child { grid-column: auto; display: flex; }
  .journal-card:last-child > img { height: 240px; }
  .inspiration-close { margin-top: 48px; padding: 36px 27px; grid-template-columns: 1fr; gap: 25px; text-align: center; }
  .inspiration-close .button { grid-column: auto; width: 100%; }
  .trust-reassurance { padding: 78px 20px 76px; }
  .trust-intro { grid-template-columns: 1fr; gap: 34px; margin-bottom: 46px; }
  .trust-intro h2 { font-size: 43px; }
  .trust-summary { padding-left: 22px; }
  .affiliation-card { padding: 40px 28px 44px; }
  .inteletravel-logo-panel { width: min(100%, 240px); margin-bottom: 30px; padding: 14px 18px; }
  .affiliation-card h3 { font-size: 35px; }
  .reassurance-list { grid-template-columns: 1fr; }
  .reassurance-list article { min-height: 0; padding: 31px 27px; }
  .reassurance-list article:nth-child(odd),
  .reassurance-list article:nth-child(n+3) { border-right: 0; border-bottom: 1px solid var(--line); }
  .reassurance-list article:last-child { border-bottom: 0; }
  .reassurance-list h3 { font-size: 27px; }
  .trust-close { margin-top: 48px; padding: 36px 27px; grid-template-columns: 1fr; gap: 25px; text-align: center; }
  .trust-close .button { grid-column: auto; width: 100%; }
  .start-planning { padding: 78px 20px 76px; gap: 48px; }
  .planning-intro h2 { font-size: 43px; }
  .personal-contact { margin-top: 36px; padding: 27px 25px 29px; }
  .planning-intro blockquote { margin-top: 31px; }
  .planning-intro blockquote p { font-size: 23px; }
  .enquiry-card-heading { padding: 37px 25px 24px; }
  .enquiry-card-heading h3 { font-size: 35px; }
  #enquiry-form { padding: 0 25px 37px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-action { align-items: stretch; flex-direction: column; }
  .form-action .button { width: 100%; }
  .email-option { padding: 30px 25px; align-items: stretch; flex-direction: column; }
  .email-option .button { width: 100%; }
  .newsletter-signup { padding: 72px 20px; gap: 38px; }
  .newsletter-copy h2 { font-size: 40px; }
  .newsletter-form { padding: 31px 25px 34px; }
  .newsletter-form .button { width: 100%; }
  .site-footer { padding: 42px 20px 34px; grid-template-columns: 1fr; text-align: left; }
  .footer-nav { grid-column: auto; flex-direction: column; gap: 13px; }
  .footer-small { grid-column: auto; }
  .about-hero { min-height: 0; padding: 72px 20px 82px; grid-template-columns: 1fr; gap: 52px; }
  .about-hero h1 { font-size: 46px; }
  .about-hero-lead { font-size: 15px; }
  .founder-portrait { max-width: 560px; padding: 0 0 28px 24px; justify-self: stretch; }
  .founder-portrait::after { right: -20px; top: -28px; width: 88px; height: 88px; }
  .founder-portrait figcaption { right: 0; bottom: 0; max-width: 250px; }
  .founder-story { padding: 78px 20px; grid-template-columns: 1fr; gap: 38px; }
  .founder-story-heading h2 { font-size: 43px; }
  .founder-story-copy { padding-left: 22px; }
  .career-journey { padding: 78px 20px 76px; }
  .career-intro h2 { font-size: 43px; }
  .career-grid { grid-template-columns: 1fr; }
  .career-grid article { min-height: 0; padding: 36px 28px 38px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .career-grid article:nth-child(2) { border-right: 0; }
  .career-grid article:last-child { border-bottom: 0; }
  .career-number { margin-bottom: 34px; }
  .upway-values { padding: 78px 20px; }
  .values-heading h2 { font-size: 43px; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid article { min-height: 0; padding: 34px 27px 35px 80px; }
  .values-grid article > span { left: 24px; top: 36px; }
  .about-approach { padding: 78px 20px; grid-template-columns: 1fr; gap: 46px; }
  .approach-panel h2 { font-size: 43px; }
  .about-quote { padding: 43px 29px; }
  .about-invitation { padding: 78px 20px 58px; grid-template-columns: 1fr; gap: 40px; }
  .about-invitation h2 { font-size: 43px; }
  .invitation-action { padding-left: 22px; }
  .about-tagline { grid-column: auto; margin-top: 20px; }
  .legal-hero { padding: 72px 20px 64px; }
  .legal-hero h1 { font-size: 44px; }
  .legal-layout { padding: 58px 20px 78px; gap: 42px; }
  .legal-toc { padding: 25px; }
  .legal-hero-actions { align-items: stretch; flex-direction: column; }
  .legal-hero-actions .button { width: 100%; }
  .protection-grid { grid-template-columns: 1fr; }
  .protection-card { padding: 27px 25px 29px; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: 40px; }
  .section-heading h2,
  .about-copy h2,
  .connected-heading h2,
  .taking-off-intro h2,
  .inspiration-intro h2,
  .trust-intro h2,
  .planning-intro h2,
  .founder-story-heading h2,
  .career-intro h2,
  .values-heading h2,
  .approach-panel h2,
  .about-invitation h2 { font-size: 38px; }
  .about-hero h1 { font-size: 40px; }
  .journey-copy h3,
  .weekly-lead-copy h3,
  .journal-feature-copy h3,
  .affiliation-card h3,
  .enquiry-card-heading h3 { font-size: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-photo { transform: none; }
}

/* Booking Pages */
.booking-page nav a[aria-current="page"] { color: var(--sunrise-gold); }
.booking-hero { position: relative; min-height: 680px; display: grid; align-items: center; overflow: hidden; color: white; background: var(--journey-blue); }
.booking-hero-photo { position: absolute; inset: 0; background: url('assets/images/adobe-stock/AdobeStock_432304759.jpeg') 50% 56% / cover no-repeat; transform: scale(1.01); }
.booking-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,25,38,.96) 0%, rgba(5,25,38,.88) 42%, rgba(5,25,38,.46) 72%, rgba(5,25,38,.30) 100%); }
.booking-hero-copy { position: relative; z-index: 2; width: min(760px, 58vw); margin-left: clamp(28px, 7vw, 112px); padding: 92px 0 104px; }
.booking-hero h1 { margin: 0 0 27px; color: white; font: 500 clamp(54px, 5.6vw, 84px)/1.01 var(--serif); letter-spacing: -.03em; text-shadow: 0 3px 22px rgba(0,0,0,.34); }
.booking-hero-copy > p:not(.eyebrow) { max-width: 680px; margin: 0; color: rgba(255,255,255,.92); font-size: 17px; line-height: 1.78; text-shadow: 0 2px 12px rgba(0,0,0,.35); }
.booking-hero-actions { margin-top: 35px; display: flex; flex-wrap: wrap; gap: 14px; }
.booking-choice { padding: 112px clamp(28px, 7vw, 112px); background: var(--paper); }
.booking-choice-heading { max-width: 940px; margin-bottom: 54px; display: grid; grid-template-columns: minmax(320px, .9fr) minmax(360px, 1.1fr); gap: clamp(42px, 8vw, 120px); align-items: end; }
.booking-choice-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -18px; }
.booking-choice-heading h2 { margin: 0; color: var(--journey-blue); font: 500 clamp(44px, 4.6vw, 68px)/1.05 var(--serif); letter-spacing: -.024em; }
.booking-choice-heading > p:last-child { margin: 0 0 6px; padding-left: 28px; color: var(--muted); border-left: 2px solid var(--sunrise-gold); font-size: 14px; line-height: 1.8; }
.booking-route-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border: 1px solid var(--line); }
.booking-route { position: relative; min-height: 610px; padding: clamp(42px, 5vw, 70px); display: flex; flex-direction: column; }
.booking-route-direct { color: white; background: var(--journey-blue); }
.booking-route-personal { background: var(--cream); }
.booking-route + .booking-route { border-left: 1px solid var(--line); }
.booking-route-number { position: absolute; right: 40px; top: 28px; margin: 0; color: rgba(216,170,87,.42); font: 500 64px/1 var(--serif); }
.booking-route-kicker { margin: 0 0 18px; color: var(--coastal-teal); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.booking-route-direct .booking-route-kicker { color: #f0ca82; }
.booking-route h3 { max-width: 470px; margin: 0 0 22px; color: var(--journey-blue); font: 500 clamp(38px, 3.6vw, 55px)/1.05 var(--serif); }
.booking-route-direct h3 { color: white; }
.booking-route > p:not(.booking-route-number):not(.booking-route-kicker):not(.booking-link-status):not(.booking-route-note) { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.78; }
.booking-route-direct > p:not(.booking-route-number):not(.booking-route-kicker):not(.booking-link-status) {
  max-width: 640px;
  color: #f7f1e6;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.75;
  letter-spacing: .005em;
}
.booking-route-direct > .booking-route-lead {
  color: #fffaf0;
  font-size: clamp(18px, 1.5vw, 20px);
  font-weight: 600;
  line-height: 1.68;
  text-shadow: 0 1px 2px rgba(0,0,0,.28);
}
.booking-route-personal > p:not(.booking-route-number):not(.booking-route-kicker):not(.booking-link-status):not(.booking-route-note) {
  max-width: 640px;
  color: var(--journey-blue-soft);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.75;
  letter-spacing: .005em;
}
.booking-route ul { margin: 26px 0 34px; padding: 0; list-style: none; }
.booking-route li { position: relative; padding: 12px 0 12px 26px; color: var(--muted); border-top: 1px solid var(--line); font-size: 12px; line-height: 1.55; }
.booking-route li:last-child { border-bottom: 1px solid var(--line); }
.booking-route li::before { content: '✦'; position: absolute; left: 0; top: 13px; color: var(--sunrise-gold); }
.booking-route-direct li { color: rgba(255,255,255,.79); border-color: rgba(255,255,255,.13); }
.booking-route-personal li {
  color: var(--ink);
  border-color: rgba(10,41,64,.18);
  font-size: clamp(14px, 1.05vw, 15.5px);
  line-height: 1.6;
}
.booking-route .button { width: fit-content; margin-top: auto; }
.booking-link-status, .booking-route-note { margin: 18px 0 0; max-width: 560px; font-size: 10px; line-height: 1.65; }
.booking-link-status { color: rgba(255,255,255,.68); }
.booking-route-note { color: var(--muted); }
.booking-categories { padding: 108px clamp(28px, 7vw, 112px); color: white; background: var(--journey-blue); }
.booking-categories-heading { margin-bottom: 54px; display: grid; grid-template-columns: minmax(380px, 1fr) minmax(320px, .8fr); gap: clamp(44px, 8vw, 120px); align-items: end; }
.booking-categories-heading h2 { max-width: 740px; margin: 0; font: 500 clamp(44px, 4.6vw, 67px)/1.06 var(--serif); letter-spacing: -.024em; }
.booking-categories-heading > p { margin: 0; padding-left: 28px; color: rgba(255,255,255,.73); border-left: 2px solid var(--sunrise-gold); font-size: 13px; line-height: 1.78; }
.booking-category-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.15); border-left: 1px solid rgba(255,255,255,.15); }
.booking-category-grid article { min-height: 270px; padding: 35px 34px 38px; border-right: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.booking-category-grid span { display: inline-grid; width: 37px; height: 37px; place-items: center; color: var(--sunrise-gold); border: 1px solid rgba(216,170,87,.5); border-radius: 50%; font: 500 11px/1 var(--serif); }
.booking-category-grid h3 { margin: 44px 0 12px; font: 500 31px/1.14 var(--serif); }
.booking-category-grid p { margin: 0; color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.7; }
.booking-journey { padding: 108px clamp(28px, 7vw, 112px); background: var(--paper); }
.booking-journey-intro { margin-bottom: 54px; display: grid; grid-template-columns: minmax(400px, 1fr) minmax(320px, .78fr); gap: clamp(44px, 8vw, 120px); align-items: end; }
.booking-journey-intro h2 { max-width: 760px; margin: 0; color: var(--journey-blue); font: 500 clamp(44px, 4.6vw, 67px)/1.06 var(--serif); letter-spacing: -.024em; }
.booking-journey-intro > p { margin: 0; padding-left: 28px; color: var(--muted); border-left: 2px solid var(--sunrise-gold); font-size: 13px; line-height: 1.78; }
.booking-journey-steps { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); list-style: none; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.booking-journey-steps li { min-height: 340px; padding: 30px 25px 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.booking-journey-steps > li > span { display: inline-grid; width: 38px; height: 38px; place-items: center; color: var(--coastal-teal); border: 1px solid rgba(31,109,112,.38); border-radius: 50%; font: 500 11px/1 var(--serif); }
.booking-journey-steps .step-label { margin: 48px 0 8px; color: var(--coastal-teal); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.booking-journey-steps h3 { margin: 0 0 14px; color: var(--journey-blue); font: 500 26px/1.14 var(--serif); }
.booking-journey-steps li div > p:last-child {
  margin: 0;
  color: #29495a;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 600;
  line-height: 1.65;
}
.booking-journey-close { margin-top: 32px; padding: 29px 32px; display: flex; justify-content: space-between; gap: 30px; align-items: center; color: white; background: var(--coastal-teal); }
.booking-journey-close p { margin: 0; font-size: 12px; line-height: 1.6; }
.booking-journey-close a { flex: 0 0 auto; color: white; font-size: 12px; font-weight: 700; text-underline-offset: 5px; }
.live-deals { display: grid; grid-template-columns: minmax(420px, 1fr) minmax(420px, 1fr); background: var(--cream); }
.live-deals-image { position: relative; min-height: 660px; overflow: hidden; }
.live-deals-image img { width: 100%; height: 100%; display: block; object-fit: cover; }
.live-deals-image > p { position: absolute; left: 18px; bottom: 12px; margin: 0; padding: 6px 9px; color: white; background: rgba(5,25,38,.7); font-size: 8px; }
.live-deals-copy { padding: clamp(64px, 8vw, 126px); display: flex; flex-direction: column; justify-content: center; }
.live-deals-copy h2 { max-width: 680px; margin: 0 0 25px; color: var(--journey-blue); font: 500 clamp(44px, 4.6vw, 66px)/1.05 var(--serif); letter-spacing: -.024em; }
.live-deals-copy > p:not(.eyebrow) { max-width: 650px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.82; }
.live-deals-copy > p + p { margin-top: 17px; }
.live-deals-copy .text-link { margin-top: 30px; color: var(--coastal-teal); font-size: 13px; font-weight: 700; text-underline-offset: 5px; }
.booking-safety { padding: 108px clamp(28px, 7vw, 112px); background: var(--paper); }
.booking-safety-heading { max-width: 880px; margin-bottom: 50px; }
.booking-safety-heading .eyebrow.gold {
  color: #7b5714;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .16em;
}
.booking-safety-heading h2 { margin: 0; color: var(--journey-blue); font: 500 clamp(44px, 4.6vw, 66px)/1.06 var(--serif); }
.booking-safety-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.booking-safety-grid article { min-height: 310px; padding: 33px 30px 36px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.booking-safety-grid span { color: var(--coastal-teal); font: 500 13px/1 var(--serif); }
.booking-safety-grid h3 { margin: 54px 0 14px; color: var(--journey-blue); font: 500 27px/1.15 var(--serif); }
.booking-safety-grid p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.72; }
.booking-safety-note { margin: 28px 0 0; color: var(--muted); font-size: 11px; }
.booking-safety-note a { color: var(--coastal-teal); font-weight: 700; }
.booking-finale, .home-booking-gateway { padding: 68px clamp(28px, 7vw, 112px); display: grid; grid-template-columns: minmax(380px, 1fr) auto; gap: 48px; align-items: center; color: white; background: var(--coastal-teal); }
.booking-finale h2, .home-booking-gateway h2 { max-width: 800px; margin: 0; font: 500 clamp(38px, 4vw, 58px)/1.08 var(--serif); }
.booking-finale-actions, .home-booking-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px; }
.home-booking-gateway { background: var(--journey-blue); }
.home-booking-copy > p:not(.eyebrow) { max-width: 800px; margin: 20px 0 0; color: rgba(255,255,255,.78); font-size: 13px; line-height: 1.75; }
.booking-help-toggle { position: fixed; z-index: 30; right: 24px; bottom: 24px; min-height: 54px; padding: 0 21px; display: inline-flex; align-items: center; gap: 10px; color: var(--journey-blue); background: var(--sunrise-gold); border: 0; border-radius: 999px; box-shadow: 0 16px 36px rgba(5,25,38,.28); cursor: pointer; font: 700 13px/1 var(--sans); }
.booking-help-toggle span:first-child { font-size: 17px; }
.booking-help-toggle:hover { transform: translateY(-2px); }
.booking-help-panel { position: fixed; z-index: 40; right: 24px; bottom: 92px; width: min(460px, calc(100vw - 48px)); max-height: calc(100vh - 122px); overflow-y: auto; color: var(--ink); background: var(--paper); border-top: 4px solid var(--sunrise-gold); box-shadow: 0 24px 70px rgba(5,25,38,.34); }
.booking-help-panel[hidden] { display: none; }
.booking-help-header { position: sticky; z-index: 2; top: 0; padding: 25px 27px 23px; display: flex; justify-content: space-between; gap: 24px; align-items: flex-start; color: white; background: var(--journey-blue); }
.booking-help-kicker, .booking-help-label { margin: 0 0 8px; color: var(--sunrise-gold); font-size: 9px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.booking-help-header h2 { margin: 0; font: 500 31px/1.08 var(--serif); }
.booking-help-close { width: 38px; height: 38px; flex: 0 0 auto; color: white; background: transparent; border: 1px solid rgba(255,255,255,.42); cursor: pointer; font: 300 27px/1 var(--sans); }
.booking-help-live { padding: 27px; color: white; background: var(--coastal-teal); }
.booking-help-live h3 { margin: 0 0 12px; font: 500 27px/1.13 var(--serif); }
.booking-help-live > p:not(.booking-help-label):not(.booking-help-status) { margin: 0; color: rgba(255,255,255,.83); font-size: 11px; line-height: 1.67; }
.booking-help-live .button { width: 100%; margin-top: 21px; }
.booking-help-status { margin: 12px 0 0; color: rgba(255,255,255,.68); font-size: 9px; line-height: 1.55; }
.booking-help-form { padding: 29px 27px 32px; }
.booking-help-form .booking-help-label { color: var(--coastal-teal); }
.booking-help-form .form-field { margin-top: 17px; }
.booking-help-form label { color: var(--journey-blue); font-size: 11px; }
.booking-help-form input, .booking-help-form select, .booking-help-form textarea { background: white; }
.booking-help-form .form-check { margin-top: 18px; }
.booking-help-form .form-check label { color: var(--muted); }
.booking-help-warning { margin: 16px 0 0; padding: 12px 14px; color: var(--muted); background: var(--cream); border-left: 3px solid var(--sunrise-gold); font-size: 9px; line-height: 1.55; }
.booking-help-form .button { width: 100%; margin-top: 21px; border: 0; cursor: pointer; }
.booking-help-form-status { margin: 13px 0 0; color: var(--muted); font-size: 9px; line-height: 1.55; }

@media (max-width: 1160px) {
  .booking-hero-copy { width: min(760px, 72vw); }
  .booking-choice-heading, .booking-categories-heading { grid-template-columns: 1fr; gap: 30px; }
  .booking-choice-heading .eyebrow { grid-column: auto; margin-bottom: -8px; }
  .booking-choice-heading > p:last-child, .booking-categories-heading > p { max-width: 760px; }
  .booking-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-journey-intro { grid-template-columns: 1fr; gap: 30px; }
  .booking-journey-intro > p { max-width: 760px; }
  .booking-journey-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .booking-safety-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .booking-finale, .home-booking-gateway { grid-template-columns: 1fr; }
  .booking-finale-actions, .home-booking-actions { justify-content: flex-start; }
}

@media (max-width: 820px) {
  .booking-route-grid, .live-deals { grid-template-columns: 1fr; }
  .booking-route { min-height: 570px; }
  .booking-route + .booking-route { border-left: 0; border-top: 1px solid var(--line); }
  .live-deals-image { min-height: 480px; }
}

@media (max-width: 720px) {
  .booking-hero { min-height: 700px; align-items: end; }
  .booking-hero-photo { background-position: 64% 50%; }
  .booking-hero-shade { background: linear-gradient(0deg, rgba(5,25,38,.98) 0%, rgba(5,25,38,.90) 54%, rgba(5,25,38,.45) 100%); }
  .booking-hero-copy { width: auto; margin: 0; padding: 210px 20px 70px; }
  .booking-hero h1 { font-size: 45px; }
  .booking-hero-copy > p:not(.eyebrow) { font-size: 15px; }
  .booking-hero-actions { flex-direction: column; align-items: stretch; }
  .booking-choice, .booking-categories, .booking-safety { padding: 76px 20px; }
  .booking-journey { padding: 76px 20px; }
  .booking-choice-heading h2, .booking-categories-heading h2, .booking-journey-intro h2, .live-deals-copy h2, .booking-safety-heading h2 { font-size: 42px; }
  .booking-route { min-height: 0; padding: 40px 27px 42px; }
  .booking-route h3 { font-size: 38px; }
  .booking-route-number { right: 24px; top: 24px; font-size: 48px; }
  .booking-route .button { width: 100%; margin-top: 8px; }
  .booking-category-grid { grid-template-columns: 1fr; }
  .booking-category-grid article { min-height: 220px; }
  .booking-journey-steps { grid-template-columns: 1fr; }
  .booking-journey-steps li { min-height: 0; padding: 28px 26px 32px; display: grid; grid-template-columns: 42px 1fr; gap: 18px; }
  .booking-journey-steps .step-label { margin-top: 0; }
  .booking-journey-close { align-items: flex-start; flex-direction: column; }
  .live-deals-image { min-height: 370px; }
  .live-deals-copy { padding: 72px 20px 78px; }
  .booking-safety-grid { grid-template-columns: 1fr; }
  .booking-safety-grid article { min-height: 240px; }
  .booking-finale, .home-booking-gateway { padding: 58px 20px 64px; }
  .booking-finale h2, .home-booking-gateway h2 { font-size: 40px; }
  .booking-finale-actions, .home-booking-actions { flex-direction: column; }
  .booking-finale-actions .button, .home-booking-actions .button { width: 100%; }
  .booking-help-toggle { right: 14px; bottom: 14px; }
  .booking-help-panel { right: 12px; bottom: 78px; width: calc(100vw - 24px); max-height: calc(100vh - 98px); }
}

@media (max-width: 420px) {
  .booking-hero h1 { font-size: 39px; }
  .booking-choice-heading h2, .booking-categories-heading h2, .booking-journey-intro h2, .live-deals-copy h2, .booking-safety-heading h2, .booking-finale h2, .home-booking-gateway h2 { font-size: 37px; }
}

/* === WG repair candidate: Featured Journeys + Taking Off readability === */
.journey-card { isolation: isolate; }
.journey-overlay {
  background: linear-gradient(0deg, rgba(5,25,38,.97) 0%, rgba(5,25,38,.78) 48%, rgba(5,25,38,.18) 82%, rgba(5,25,38,.05) 100%);
}
.journey-wide .journey-overlay {
  background: linear-gradient(90deg, rgba(5,25,38,.96) 0%, rgba(5,25,38,.80) 48%, rgba(5,25,38,.20) 78%, rgba(5,25,38,.05) 100%);
}
.journey-copy {
  bottom: clamp(34px, 4vw, 56px);
  padding: clamp(18px, 2.2vw, 28px);
  background: linear-gradient(90deg, rgba(5,25,38,.72), rgba(5,25,38,.42));
  border-left: 3px solid rgba(216,170,87,.9);
  backdrop-filter: blur(1.5px);
}
.journey-place { font-size: 13px; font-weight: 800; color: #f4cf88; }
.journey-copy > p:not(.journey-place) { color: rgba(255,255,255,.96); font-size: 15px; }
.journey-copy a {
  font-size: 13px;
  padding: 10px 14px 9px;
  border: 1px solid rgba(216,170,87,.82);
  background: rgba(5,25,38,.58);
  border-radius: 2px;
}
.journey-copy a:hover, .journey-copy a:focus-visible { background: rgba(216,170,87,.18); }

.weekly-lead-shade { background: linear-gradient(0deg, rgba(5,25,38,.98) 0%, rgba(5,25,38,.76) 48%, rgba(5,25,38,.10) 82%); }
.weekly-lead-copy {
  padding: clamp(20px, 2.5vw, 32px);
  background: linear-gradient(90deg, rgba(5,25,38,.76), rgba(5,25,38,.38));
  border-left: 3px solid rgba(216,170,87,.9);
}
.weekly-day { font-size: 13px; font-weight: 800; color: #f4cf88; }
.weekly-lead-copy > p:not(.weekly-day) { color: rgba(255,255,255,.96); font-size: 15px; }
.weekly-lead-copy a,
.weekly-note a { font-size: 12px; font-weight: 800; }
.weekly-lead-copy a {
  padding: 10px 14px 9px;
  border: 1px solid rgba(216,170,87,.82);
  background: rgba(5,25,38,.58);
  border-radius: 2px;
}
.weekly-note .weekly-day { font-size: 12px; }

@media (max-width: 760px) {
  .journey-copy, .weekly-lead-copy { padding: 18px; }
  .journey-place, .weekly-day { font-size: 11px; }
  .journey-copy > p:not(.journey-place), .weekly-lead-copy > p:not(.weekly-day) { font-size: 14px; }
}

/* === Final rehearsal readability lock === */
.eyebrow {
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 800;
  letter-spacing: .16em;
}
.eyebrow.teal,
.contact-label,
.booking-route-personal .booking-route-kicker,
.booking-journey-steps .step-label {
  color: #176368;
}
.contact-label {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 800;
  letter-spacing: .15em;
}
.booking-route-kicker {
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 800;
  letter-spacing: .14em;
}
.booking-route-direct .booking-route-kicker { color: #ffd98a; }
.booking-route-direct > .booking-route-lead {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
  opacity: 1;
  font-size: clamp(20px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.62;
  text-shadow: 0 1px 3px rgba(0,0,0,.32);
}
.booking-route li {
  font-size: clamp(15px, 1.1vw, 17px);
  font-weight: 600;
  line-height: 1.6;
}
.booking-route-direct li { color: #f8fbff; }
.booking-link-status,
.booking-route-note {
  font-size: clamp(12px, .9vw, 13.5px);
  line-height: 1.65;
}
.booking-link-status { color: rgba(255,255,255,.84); }
.booking-journey-steps .step-label {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 800;
  letter-spacing: .14em;
}
.booking-journey-steps li div > p:last-child {
  color: var(--ink);
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 600;
  line-height: 1.6;
}
.trust-close .eyebrow { color: #6ed0cf; }
.trust-close > p {
  color: rgba(255,255,255,.94);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.7;
}
.trust-note {
  color: rgba(255,255,255,.82);
  font-size: clamp(12px, .9vw, 13.5px);
  line-height: 1.7;
}
.planning-lead {
  color: #405e6b;
  font-size: clamp(17px, 1.15vw, 19px);
  line-height: 1.8;
}
.enquiry-card-heading > p:last-child {
  color: #405e6b;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.7;
}
.personal-contact > p:not(.contact-label),
.personal-contact a {
  font-size: clamp(14px, 1vw, 16px);
}

/* === Legal-page editorial readability lock === */
.legal-hero .eyebrow.gold {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #f4ca76;
  font: 600 clamp(27px, 2.8vw, 38px)/1.2 var(--signature);
  letter-spacing: .015em;
  text-transform: none;
}
.legal-hero .eyebrow.gold::after {
  content: '';
  width: clamp(54px, 8vw, 110px);
  height: 2px;
  background: linear-gradient(90deg, var(--sunrise-gold), transparent);
}

/* === Homepage editorial label hierarchy — final dress rehearsal === */
.experiences .section-heading > .eyebrow,
.featured-journeys .section-heading > .eyebrow,
.about-copy > .eyebrow,
.connected-heading > .eyebrow,
.taking-off-intro .eyebrow,
.inspiration-intro .eyebrow,
.trust-intro .eyebrow,
.trust-close .eyebrow,
.home-booking-copy > .eyebrow,
.planning-intro > .eyebrow,
.newsletter-copy > .eyebrow {
  font-family: var(--signature);
  font-size: clamp(22px, 1.9vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .02em;
  text-transform: none;
}

.card-number {
  right: 24px;
  top: 22px;
  color: #c79336;
  font-size: clamp(22px, 1.65vw, 28px);
  font-weight: 600;
  letter-spacing: .08em;
}

.weekly-day {
  font-family: var(--signature);
  font-size: clamp(20px, 1.55vw, 25px);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: .02em;
  text-transform: none;
}

.weekly-note .weekly-day {
  max-width: calc(100% - 68px);
  font-size: clamp(20px, 1.55vw, 25px);
}

.note-number {
  right: 28px;
  top: 30px;
  color: #bf892c;
  font-size: clamp(22px, 1.55vw, 27px);
  font-weight: 600;
  letter-spacing: .08em;
}

.weekly-note-teal .note-number { color: #ffd98a; }

@media (max-width: 760px) {
  .experiences .section-heading > .eyebrow,
  .featured-journeys .section-heading > .eyebrow,
  .about-copy > .eyebrow,
  .connected-heading > .eyebrow,
  .taking-off-intro .eyebrow,
  .inspiration-intro .eyebrow,
  .trust-intro .eyebrow,
  .trust-close .eyebrow,
  .home-booking-copy > .eyebrow,
  .planning-intro > .eyebrow,
  .newsletter-copy > .eyebrow {
    font-size: 23px;
  }

  .card-number { font-size: 23px; }
  .weekly-day,
  .weekly-note .weekly-day { font-size: 21px; }
  .note-number { font-size: 23px; }
}
.legal-hero .legal-lead {
  color: rgba(255,255,255,.94);
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.75;
}
.legal-meta {
  font-size: clamp(12px, .95vw, 14px);
  font-weight: 800;
  line-height: 1.5;
}
.legal-toc { padding: 34px 36px; }
.legal-toc h2 { font-size: clamp(29px, 2.2vw, 35px); }
.legal-toc li + li { margin-top: 12px; }
.legal-toc a {
  color: #176368;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 600;
  line-height: 1.55;
}
.legal-section h2 {
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.15;
}
.legal-section h3 {
  font-size: clamp(27px, 2.2vw, 33px);
  line-height: 1.25;
}
.legal-section p,
.legal-section li {
  color: #405e6b;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.8;
}
.legal-section li + li { margin-top: 10px; }
.legal-contact,
.legal-callout { padding: 28px 31px; }
.section-label {
  color: #176368 !important;
  font-size: clamp(13px, 1vw, 15px) !important;
  font-weight: 800;
  letter-spacing: .15em;
}
.site-footer > p {
  color: rgba(255,255,255,.84);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.65;
}
.footer-nav a {
  color: rgba(255,255,255,.92);
  font-size: clamp(13px, .95vw, 15px);
}
.footer-small {
  color: rgba(255,255,255,.78) !important;
  font-size: clamp(12px, .9vw, 13.5px) !important;
  line-height: 1.7;
}

@media (max-width: 720px) {
  .legal-hero .eyebrow.gold { gap: 12px; }
  .legal-hero .eyebrow.gold::after { width: 44px; }
  .legal-toc { padding: 28px; }
}

/* === Verified InteleTravel affiliation logo placements === */
.booking-engine-logo {
  width: min(100%, 230px);
  margin: 0 0 24px;
  padding: 12px 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.22);
}

.about-affiliation-logo {
  width: min(100%, 235px);
  margin: 0 0 28px;
  padding: 12px 16px;
  box-shadow: 0 12px 28px rgba(0,0,0,.2);
}

@media (max-width: 760px) {
  .booking-engine-logo,
  .about-affiliation-logo {
    width: min(100%, 215px);
  }
}

/* === About page signature headers and branded action shapes === */
.about-page main .eyebrow {
  font-family: var(--signature);
  font-size: clamp(24px, 2.05vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .02em;
  text-transform: none;
}

.about-page .career-intro .eyebrow {
  color: #f4ca76;
}

.about-page .header-cta,
.about-page .about-invitation .button {
  min-height: 58px;
  padding-inline: 30px;
  border: 1px solid #f2ca79;
  border-radius: 999px;
  background: linear-gradient(135deg, #e2b45c 0%, #f1ca7b 52%, #d7a44a 100%);
  color: var(--journey-blue);
  font-family: var(--signature);
  font-size: clamp(18px, 1.35vw, 21px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .01em;
  box-shadow: 0 10px 24px rgba(5,25,38,.2), inset 0 1px 0 rgba(255,255,255,.45);
}

.about-page .header-cta:hover,
.about-page .about-invitation .button:hover {
  background: linear-gradient(135deg, #edc46f 0%, #f6d58e 52%, #dfb158 100%);
  box-shadow: 0 14px 30px rgba(5,25,38,.25), inset 0 1px 0 rgba(255,255,255,.52);
}

@media (max-width: 760px) {
  .about-page main .eyebrow { font-size: 25px; }
  .about-page .about-invitation .button {
    width: 100%;
    min-height: 60px;
  }
}

/* === Launch action-button system — destinations and behaviour unchanged === */
.site-header .header-cta,
.home-booking-actions .button,
.booking-page .booking-hero-actions .button,
.booking-page .booking-route .button,
.booking-page .booking-finale-actions .button,
.about-page .about-invitation .button {
  min-height: 62px;
  padding-inline: 34px;
  border-radius: 999px;
  font-family: var(--signature);
  font-size: clamp(19px, 1.45vw, 23px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: .01em;
  box-shadow: 0 12px 28px rgba(5,25,38,.22), inset 0 1px 0 rgba(255,255,255,.34);
}

.site-header .header-cta.button-gold,
.home-booking-actions .button-gold,
.booking-page .button-gold,
.about-page .about-invitation .button-gold {
  border-color: #f2ca79;
  background: linear-gradient(135deg, #e2b45c 0%, #f3cf82 52%, #d5a047 100%);
  color: var(--journey-blue);
}

.home-booking-actions .button-light,
.booking-page .button-light {
  border-width: 2px;
  border-color: rgba(255,255,255,.82);
  background: rgba(10,41,64,.56);
  color: white;
}

.booking-page .button-teal {
  border-color: #2c8f91;
  background: linear-gradient(135deg, #17686c 0%, #2b8587 55%, #12585d 100%);
  color: white;
}

.site-header .header-cta:hover,
.home-booking-actions .button:hover,
.booking-page .button:hover,
.about-page .about-invitation .button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(5,25,38,.28), inset 0 1px 0 rgba(255,255,255,.42);
}

@media (max-width: 760px) {
  .home-booking-actions .button,
  .booking-page .booking-hero-actions .button,
  .booking-page .booking-route .button,
  .booking-page .booking-finale-actions .button,
  .about-page .about-invitation .button {
    width: 100%;
    min-height: 64px;
    padding-inline: 25px;
    font-size: 21px;
  }
}

/* === Homepage hero signature grabber — launch V12 === */
.hero-copy > .eyebrow {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: clamp(11px, 1.4vw, 18px);
  color: #ffd98a;
  font-family: var(--signature);
  font-size: clamp(29px, 2.65vw, 42px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: .012em;
  text-transform: none;
  text-shadow: 0 3px 16px rgba(0,0,0,.5);
}

/* === Growing-content note — launch V13 === */
.growing-content-note {
  width: fit-content;
  max-width: 100%;
  margin: 42px auto 0;
  padding: 16px 25px;
  color: var(--journey-blue);
  background: rgba(216,170,87,.13);
  border: 1px solid rgba(216,170,87,.48);
  border-radius: 999px;
  font-family: var(--signature);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 10px 28px rgba(10,41,64,.06);
}
.growing-content-note span {
  margin-right: 9px;
  color: var(--sunrise-gold);
  font-family: var(--serif);
}
@media (max-width: 760px) {
  .growing-content-note {
    margin-top: 30px;
    padding: 14px 19px;
    border-radius: 24px;
    font-size: 22px;
  }
}

.hero-copy > .eyebrow::before {
  content: '✦';
  flex: 0 0 auto;
  color: #f1bc57;
  font-family: var(--serif);
  font-size: .58em;
  text-shadow: 0 2px 10px rgba(0,0,0,.46);
}

.hero-copy > .eyebrow::after {
  content: '';
  width: clamp(48px, 7vw, 105px);
  height: 2px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, #f1bc57, rgba(241,188,87,0));
}

@media (max-width: 760px) {
  .hero-copy > .eyebrow {
    margin-bottom: 24px;
    align-items: flex-start;
    font-size: clamp(25px, 7vw, 31px);
  }

  .hero-copy > .eyebrow::after { display: none; }
}
