:root {
  --ivory: #f3eee5;
  --paper: #faf7f1;
  --ink: #171813;
  --soft-ink: #59594f;
  --line: rgba(23,24,19,.15);
  --glass: rgba(20,20,18,.28);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "DM Sans", Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
.site-header { position: fixed; z-index: 20; top: 0; left: 0; width: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 24px 4vw; color: white; mix-blend-mode: difference; }
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; font-size: 12px; font-weight: 600; letter-spacing: .2em; }
.brand-mark { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid currentColor; border-radius: 50%; font-family: "Playfair Display", serif; font-size: 16px; letter-spacing: 0; }
nav { display: flex; gap: 34px; font-size: 13px; }
nav a, .header-cta { opacity: .85; transition: opacity .25s ease; }
nav a:hover, .header-cta:hover { opacity: 1; }
.header-cta { justify-self: end; font-size: 12px; border-bottom: 1px solid currentColor; padding-bottom: 5px; }
.scroll-story { height: 620vh; background: #080908; }
.sticky-stage { position: sticky; top: 0; height: 100vh; overflow: hidden; }
#scrollVideo { width: 100%; height: 100%; object-fit: cover; display: block; background: #080908; }
.video-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.48), transparent 52%), linear-gradient(0deg, rgba(0,0,0,.18), transparent 45%); pointer-events: none; }
.story-copy { position: absolute; top: 50%; left: 7vw; width: min(610px, 78vw); color: white; transform: translateY(-40%); opacity: 0; filter: blur(8px); transition: opacity .12s linear, filter .12s linear, transform .12s linear; pointer-events: none; }
.story-copy.visible { opacity: 1; filter: blur(0); transform: translateY(-50%); }
.story-copy.centre { left: 50%; text-align: center; transform: translate(-50%, -40%); }
.story-copy.centre.visible { transform: translate(-50%, -50%); }
.story-copy.right, .story-copy.final { left: auto; right: 7vw; text-align: right; }
.story-copy h1, .story-copy h2 { margin: 12px 0 18px; font-family: "Playfair Display", Georgia, serif; font-weight: 500; line-height: .98; letter-spacing: -.035em; text-wrap: balance; }
.story-copy h1 { font-size: clamp(54px, 7vw, 112px); }
.story-copy h2 { font-size: clamp(44px, 5.5vw, 88px); }
.story-copy > p:last-child { max-width: 520px; font-size: clamp(16px, 1.45vw, 22px); line-height: 1.55; opacity: .86; }
.story-copy.right > p:last-child, .story-copy.final > p:last-child { margin-left: auto; }
.eyebrow { margin: 0; font-size: 11px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; }
.eyebrow.dark { color: #77766d; }
.primary-button { display: inline-flex; margin-top: 18px; padding: 15px 24px; border-radius: 999px; background: white; color: #181914; font-size: 13px; font-weight: 600; pointer-events: auto; }
.scroll-hint { position: absolute; left: 50%; bottom: 33px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 9px; color: white; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; opacity: .7; }
.scroll-hint i { width: 1px; height: 34px; background: rgba(255,255,255,.45); overflow: hidden; }
.scroll-hint i::after { content: ""; display: block; width: 1px; height: 14px; background: white; animation: drift 1.6s infinite ease-in-out; }
@keyframes drift { from { transform: translateY(-14px); } to { transform: translateY(34px); } }
.progress { position: absolute; right: 22px; top: 20%; width: 2px; height: 60%; background: rgba(255,255,255,.2); }
.progress span { display: block; width: 100%; height: 0; background: white; }
.intro-section { display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw; align-items: end; padding: 130px 7vw 110px; background: var(--ivory); }
.intro-section h2 { margin: 12px 0 0; font-family: "Playfair Display", serif; font-size: clamp(48px, 6vw, 94px); line-height: .98; letter-spacing: -.035em; font-weight: 500; }
.intro-section h2 em { font-weight: 500; }
.lead { margin: 0; color: var(--soft-ink); font-size: clamp(18px, 1.7vw, 25px); line-height: 1.55; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #fff; }
.feature-card { position: relative; min-height: 580px; padding: 32px; display: flex; justify-content: space-between; flex-direction: column; color: white; overflow: hidden; isolation: isolate; background-size: cover; background-position: center; }
.feature-card::before { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(0deg, rgba(0,0,0,.65), rgba(0,0,0,.04) 70%); }
.feature-card::after { content:""; position:absolute; inset:0; z-index:-2; background: var(--bg); transform: scale(1); transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.feature-card:hover::after { transform: scale(1.04); }
.card-coast { --bg: linear-gradient(145deg,#193f45 0%,#6da2a1 42%,#d8b89c 100%); }
.card-mountain { --bg: linear-gradient(145deg,#73808b 0%,#c5c8c0 45%,#3f4b45 100%); }
.card-city { --bg: linear-gradient(145deg,#5f4438 0%,#b77d62 48%,#d7bf9f 100%); }
.feature-card > span { font-size: 12px; opacity: .75; }
.feature-card p { margin: 0 0 7px; font-size: 11px; text-transform: uppercase; letter-spacing: .18em; opacity: .8; }
.feature-card h3 { margin: 0; font-family: "Playfair Display", serif; font-size: clamp(32px, 3vw, 50px); line-height: 1.05; font-weight: 500; }
.journey-section { padding: 120px 7vw 130px; background: linear-gradient(180deg, #f7f2ea 0%, #efe6d7 100%); }
.journey-intro { display: grid; grid-template-columns: 1fr 1.1fr; gap: 6vw; align-items: end; margin-bottom: 44px; }
.journey-intro h2 { margin: 12px 0 0; font-family: "Playfair Display", serif; font-size: clamp(54px, 6vw, 96px); line-height: .95; font-weight: 500; letter-spacing: -.04em; }
.journey-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.journey-card { background: rgba(255,255,255,.7); border: 1px solid rgba(23,24,19,.08); border-radius: 28px; overflow: hidden; box-shadow: 0 18px 50px rgba(76, 61, 43, .08); }
.journey-card.featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.15fr .85fr; min-height: 540px; }
.journey-image { position: relative; min-height: 100%; background-size: cover; background-position: center; }
.journey-image.has-image { display: grid; place-items: end start; background-color: #d8cbb7; }
.journey-image.placeholder { display: grid; place-items: center; background: linear-gradient(135deg, #7799a3 0%, #d6c2a7 45%, #f2e8d8 100%); }
.journey-image.has-image.small, .journey-image.placeholder.small { min-height: 380px; }
.journey-image.has-image span, .journey-image.placeholder span { margin: 20px; padding: 14px 18px; border-radius: 999px; background: rgba(255,255,255,.78); color: #2b332e; font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.journey-copy { padding: 40px; display: flex; flex-direction: column; justify-content: end; }
.journey-copy h3, .stop-card h3 { margin: 10px 0 14px; font-family: "Playfair Display", serif; font-size: clamp(34px, 3vw, 56px); line-height: 1.02; font-weight: 500; letter-spacing: -.03em; }
.journey-copy p:last-child, .stop-card p { margin: 0; color: var(--soft-ink); font-size: 17px; line-height: 1.6; }
.stop-card { padding-bottom: 26px; }
.stop-card h3, .stop-card p { padding-left: 24px; padding-right: 24px; }
.stop-card h3 { font-size: 34px; }
.video-section { padding: 120px 7vw 130px; background: #fcfaf6; }
.video-section-intro { display: grid; grid-template-columns: 1fr 1.1fr; gap: 6vw; align-items: end; margin-bottom: 40px; }
.video-section-intro h2 { margin: 12px 0 0; font-family: "Playfair Display", serif; font-size: clamp(46px, 5.5vw, 84px); line-height: .96; font-weight: 500; letter-spacing: -.04em; }
.video-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 14px; align-items: start; }
.video-card h3 { margin: 10px 0 0; font-family: "Playfair Display", serif; font-size: 18px; font-weight: 500; }
.video-frame { position: relative; aspect-ratio: 9 / 16; border-radius: 18px; overflow: hidden; background: #d9c8b0; box-shadow: 0 10px 24px rgba(76, 61, 43, .08); }
.travel-reel { display: block; width: 100%; height: 100%; object-fit: cover; background: #111; }
.placeholder-video { display: grid; place-items: end start; background: linear-gradient(180deg, #88a8b2 0%, #486b73 38%, #1f2d31 100%); }
.placeholder-video::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 20%, rgba(255,255,255,.2), transparent 28%), linear-gradient(180deg, rgba(255,255,255,.08), rgba(0,0,0,.22)); }
.placeholder-video span { position: relative; z-index: 1; margin: 20px; padding: 14px 18px; border-radius: 999px; background: rgba(255,255,255,.82); color: #26312d; font-size: 12px; font-weight: 600; letter-spacing: .04em; }
.manifesto { text-align: center; padding: 150px 10vw; background: var(--paper); }
.manifesto blockquote { max-width: 1100px; margin: 30px auto; font-family: "Playfair Display", serif; font-size: clamp(42px, 5.6vw, 86px); line-height: 1.05; letter-spacing: -.03em; }
.signature { color: var(--soft-ink); }
.contact-section { padding: 110px 7vw 120px; background: linear-gradient(180deg, #f4ece0 0%, #efe5d6 100%); border-top: 1px solid rgba(23,24,19,.08); }
.contact-copy { display: grid; grid-template-columns: 1fr 1.1fr; gap: 6vw; align-items: end; margin-bottom: 34px; }
.contact-copy h2 { margin: 12px 0 0; font-family: "Playfair Display", serif; font-size: clamp(44px, 5vw, 80px); line-height: .98; font-weight: 500; letter-spacing: -.04em; }
.contact-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-links a { display: flex; align-items: center; justify-content: space-between; min-height: 74px; padding: 22px 24px; border: 1px solid rgba(23,24,19,.1); border-radius: 22px; background: rgba(255,255,255,.6); font-size: 15px; font-weight: 600; transition: transform .22s ease, background .22s ease, border-color .22s ease; }
.contact-links a::after { content: "↗"; font-size: 16px; }
.contact-links a:hover { transform: translateY(-2px); background: rgba(255,255,255,.82); border-color: rgba(23,24,19,.18); }
.contact-credit { margin: 26px 0 0; color: var(--soft-ink); font-size: 14px; }
footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; padding: 38px 4vw; border-top: 1px solid var(--line); font-size: 12px; color: var(--soft-ink); }
footer p:nth-child(2) { text-align: center; }
footer p:last-child { text-align: right; }
.footer-brand { color: var(--ink); }
noscript { display:block; padding:20px; background:#fff4c2; color:#000; }
@media (max-width: 1400px) {
  .video-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
@media (max-width: 1200px) {
  .video-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
}
@media (max-width: 800px) {
  .site-header { grid-template-columns: 1fr auto; padding: 18px 20px; }
  nav { display:none; }
  .header-cta { font-size: 10px; }
  .scroll-story { height: 520vh; }
  #scrollVideo { object-position: center; }
  .video-shade { background: linear-gradient(0deg, rgba(0,0,0,.58), transparent 68%); }
  .story-copy, .story-copy.right, .story-copy.final, .story-copy.centre { left: 24px; right: 24px; top: auto; bottom: 90px; width: auto; text-align: left; transform: translateY(18px); }
  .story-copy.visible, .story-copy.centre.visible { transform: translateY(0); }
  .story-copy h1 { font-size: clamp(46px, 14vw, 72px); }
  .story-copy h2 { font-size: clamp(40px, 12vw, 64px); }
  .progress { right: 10px; }
  .intro-section { grid-template-columns: 1fr; padding: 100px 24px; }
  .cards { grid-template-columns: 1fr; }
  .feature-card { min-height: 68vh; }
  .journey-section { padding: 100px 24px; }
  .journey-intro, .journey-grid, .journey-card.featured { grid-template-columns: 1fr; }
  .journey-card.featured { grid-column: span 1; min-height: auto; }
  .journey-copy { padding: 28px 24px 30px; }
  .video-section { padding: 100px 24px; }
  .video-section-intro, .video-grid { grid-template-columns: 1fr; }
  .contact-section { padding: 100px 24px; }
  .contact-copy, .contact-links { grid-template-columns: 1fr; }
  .manifesto { padding: 110px 24px; }
  footer { grid-template-columns: 1fr; text-align:left; }
  footer p:nth-child(2), footer p:last-child { text-align:left; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-story { height: 100vh; }
  #scrollVideo { object-fit: cover; }
  .story-copy { display:none; }
  .story-copy.final { display:block; opacity:1; filter:none; transform:translateY(-50%); }
  .scroll-hint, .progress { display:none; }
}
