@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300&family=Inter:wght@300;400;500&display=swap');

:root {
  --night: #06161d;
  --deep: #0a2830;
  --pine: #153f3e;
  --sea: #2f7275;
  --mist: #d9e3df;
  --paper: #f3f0e9;
  --ivory: #fbf8f1;
  --candle: #efc98f;
  --copper: #b8794e;
  --wine: #6a2f38;
  --ink: #102229;
  --muted: #657279;
  --line: rgba(16, 34, 41, .14);
  --serif: "Cormorant Garamond", "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Inter", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --max: 1320px;
  --shadow: 0 32px 90px rgba(2, 17, 22, .22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -.012em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { font: inherit; }

.skip-link { position: fixed; left: 18px; top: -80px; z-index: 300; background: var(--ivory); color: var(--night); padding: 12px 18px; border-radius: 0 0 12px 12px; }
.skip-link:focus { top: 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: white;
  transition: background .35s ease, color .35s ease, box-shadow .35s ease;
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(246, 243, 236, .94);
  color: var(--night);
  box-shadow: 0 1px 0 rgba(7, 27, 34, .12);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 84px;
  max-width: 1520px;
  margin: auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.wordmark { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .19em; }
.wordmark span { display: block; margin-top: 4px; font-family: var(--serif); font-size: 21px; font-weight: 300; text-transform: none; letter-spacing: -.01em; }
.wordmark sup, .footer-brand sup { position: relative; top: -.55em; margin-left: .12em; font-family: var(--sans); font-size: .29em; font-style: normal; letter-spacing: 0; }
.breath-mark { display: flex; align-items: center; gap: 8px; justify-self: center; font-size: 10px; font-weight: 500; letter-spacing: .25em; text-transform: uppercase; }
.breath-mark::before,
.breath-mark::after { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .42; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 17px; }
.header-actions > a { font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.language-nav { position: relative; margin: 0; white-space: nowrap; }
.language-nav summary { display: none; list-style: none; cursor: pointer; }
.language-nav summary::-webkit-details-marker { display: none; }
.language-grid { display: flex; align-items: center; gap: 2px; }
.language-grid a { min-width: 27px; padding: 8px 5px 7px; border-bottom: 1px solid transparent; color: currentColor; font-size: 11px; font-weight: 500; letter-spacing: .06em; text-align: center; opacity: .55; transition: opacity .2s ease, border-color .2s ease; }
.language-grid a:hover { opacity: 1; }
.language-grid a.active { border-color: var(--candle); opacity: 1; }
.site-header.scrolled .language-grid a.active, .site-header.solid .language-grid a.active { border-color: var(--copper); }
.menu-toggle { width: 44px; height: 44px; padding: 0; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(255,255,255,.08); color: currentColor; display: grid; place-items: center; cursor: pointer; }
.site-header.scrolled .menu-toggle,
.site-header.solid .menu-toggle { border-color: var(--line); }
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after { content: ""; width: 17px; height: 1px; background: currentColor; display: block; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle span { margin: 4px 0; }
.menu-open .menu-toggle span { opacity: 0; }
.menu-open .menu-toggle::before { transform: translateY(5px) rotate(45deg); }
.menu-open .menu-toggle::after { transform: translateY(-5px) rotate(-45deg); }

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--night);
  color: white;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  display: grid;
  place-items: center;
  padding: 110px 30px 42px;
}
.menu-panel::before { content: ""; position: absolute; inset: 0; opacity: .14; background: radial-gradient(circle at 18% 12%, var(--sea), transparent 33%), radial-gradient(circle at 82% 90%, var(--copper), transparent 34%); }
.menu-open .menu-panel { opacity: 1; visibility: visible; }
.menu-content { position: relative; width: min(980px, 100%); display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; align-items: end; }
.menu-links { display: grid; }
.menu-links a { font-family: var(--serif); font-size: clamp(34px, 4.4vw, 61px); line-height: 1.04; letter-spacing: -.04em; color: rgba(255,255,255,.55); transition: color .2s, transform .2s; }
.menu-links a:hover,
.menu-links a[aria-current="page"] { color: white; transform: translateX(10px); }
.menu-aside { border-left: 1px solid rgba(255,255,255,.17); padding-left: 34px; color: rgba(255,255,255,.65); line-height: 1.7; }
.menu-aside strong { color: var(--candle); display: block; margin-bottom: 8px; text-transform: uppercase; font-size: 11px; letter-spacing: .18em; }

.hero {
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: flex-end;
  background: var(--night);
  color: white;
  overflow: hidden;
}
.hero-image { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: 58% center; filter: saturate(.76) contrast(1.04); }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,16,21,.89) 0%, rgba(4,20,25,.56) 47%, rgba(4,20,25,.14) 78%), linear-gradient(0deg, rgba(3,15,20,.76), transparent 43%); }
.hero-inner { position: relative; z-index: 2; width: min(var(--max), 100%); margin: auto; padding: 150px 30px 72px; }
.hero-copy { max-width: 850px; }
.eyebrow { display: inline-flex; align-items: center; gap: 12px; color: var(--candle); text-transform: uppercase; font-size: 12px; letter-spacing: .19em; font-weight: 500; }
.eyebrow::before { content: ""; width: 36px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 300; }
.hero h1 { font-size: clamp(72px, 11.6vw, 172px); font-weight: 300; letter-spacing: -.068em; line-height: .8; margin: 27px 0 32px; max-width: 940px; }
.hero h1 em { display: block; color: var(--candle); font-weight: 300; }
.hero h1 sup { position: relative; top: -.6em; margin-left: .16em; font-family: var(--sans); font-size: .11em; font-style: normal; letter-spacing: 0; }
.hero-lead { max-width: 630px; font-family: var(--serif); font-size: clamp(20px, 2.1vw, 30px); line-height: 1.45; color: rgba(255,255,255,.83); }
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 36px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 0 21px; border: 1px solid transparent; border-radius: 999px; font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button.light { background: var(--ivory); color: var(--night); }
.button.outline { color: white; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.06); }
.button.dark { background: var(--night); color: white; }
.button.gold { background: var(--candle); color: var(--night); }
.hero-note { position: absolute; z-index: 3; right: 30px; bottom: 74px; width: 220px; padding: 18px 0 18px 22px; border-left: 1px solid rgba(255,255,255,.42); }
.hero-note span { display: block; color: var(--candle); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 8px; }
.hero-note p { margin: 0; color: rgba(255,255,255,.68); font-size: 14px; line-height: 1.55; }
.section { padding: 120px 30px; }
.wrap { width: min(var(--max), 100%); margin: auto; }
.section-label { color: var(--copper); font-size: 12px; text-transform: uppercase; letter-spacing: .17em; font-weight: 500; margin-bottom: 22px; }
.display { font-family: var(--serif); font-size: clamp(50px, 7.2vw, 104px); font-weight: 300; line-height: .95; letter-spacing: -.05em; margin: 0; }
.intro-grid { display: grid; grid-template-columns: 1.15fr .7fr; gap: 12vw; align-items: end; }
.intro-grid .lead { font-size: 19px; line-height: 1.75; color: var(--muted); margin: 0; }

.breath-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 72px; border-top: 1px solid var(--line); }
.breath-card { padding: 32px 28px 24px 0; border-right: 1px solid var(--line); min-height: 260px; }
.breath-card + .breath-card { padding-left: 28px; }
.breath-card:last-child { border-right: 0; }
.breath-card .number { color: var(--copper); font-size: 11px; letter-spacing: .2em; }
.breath-card h3 { font-size: 39px; line-height: 1; margin: 56px 0 15px; letter-spacing: -.04em; }
.breath-card p { color: var(--muted); line-height: 1.65; }

.dark-section { background: var(--night); color: white; }
.dark-section .section-label { color: var(--candle); }
.dark-section .muted { color: rgba(255,255,255,.65); }
.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.15); margin-top: 66px; }
.season-card { min-height: 410px; padding: 28px; background: var(--night); display: flex; flex-direction: column; justify-content: space-between; position: relative; overflow: hidden; }
.season-card::before { content: ""; position: absolute; width: 220px; height: 220px; border-radius: 50%; right: -100px; top: -100px; background: var(--mood); opacity: .3; filter: blur(1px); }
.season-card small { position: relative; color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.season-card h3 { position: relative; font-size: 47px; margin: 0 0 17px; letter-spacing: -.05em; }
.season-card p { position: relative; margin: 0; color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.65; }
.season-card a { position: relative; align-self: flex-start; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 4px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; }

.feature { display: grid; grid-template-columns: 1.07fr .93fr; min-height: 730px; }
.feature-media { position: relative; min-height: 680px; overflow: hidden; }
.feature-media img { height: 100%; object-fit: cover; }
.feature-content { background: #e7dfd3; padding: 9vw 7vw; display: flex; flex-direction: column; justify-content: center; }
.feature-content .display { font-size: clamp(50px, 6vw, 88px); }
.feature-content p { color: #526168; font-size: 18px; line-height: 1.75; max-width: 540px; margin: 30px 0; }
.feature-content .event-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 9px 0 32px; }
.event-point { border-top: 1px solid rgba(16,34,41,.2); padding-top: 13px; font-size: 13px; color: #526168; }
.event-point strong { display: block; color: var(--ink); margin-bottom: 4px; }

.image-band { position: relative; min-height: 78vh; display: flex; align-items: end; color: white; overflow: hidden; }
.image-band img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.image-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4,20,25,.89), rgba(4,20,25,.12) 72%); }
.image-band-content { position: relative; z-index: 2; width: min(var(--max), 100%); margin: auto; padding: 70px 30px; display: grid; grid-template-columns: 1fr .65fr; gap: 12vw; align-items: end; }
.image-band h2 { font-size: clamp(56px, 8vw, 110px); line-height: .9; letter-spacing: -.06em; margin: 0; }
.image-band p { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,.78); margin-bottom: 25px; }

.places-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr 1.2fr; margin-top: 65px; }
.place { min-height: 430px; padding: 30px 24px; border: 1px solid var(--line); border-right: 0; display: flex; flex-direction: column; justify-content: space-between; background: rgba(255,255,255,.35); transition: background .25s, transform .25s; }
.place:last-child { border-right: 1px solid var(--line); }
.place:hover { background: var(--ivory); transform: translateY(-8px); }
.place small { color: var(--copper); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }
.place h3 { font-size: 43px; letter-spacing: -.05em; margin: 0 0 14px; }
.place p { color: var(--muted); line-height: 1.6; margin: 0; }
.place .line-art { width: 64px; height: 64px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; font-family: var(--serif); font-size: 20px; color: var(--sea); }

.itinerary { display: grid; grid-template-columns: .78fr 1.22fr; gap: 9vw; margin-top: 74px; }
.itinerary-intro { position: sticky; top: 120px; align-self: start; }
.itinerary-intro h3 { font-size: 53px; line-height: 1; letter-spacing: -.04em; }
.itinerary-intro p { color: var(--muted); line-height: 1.7; }
.timeline { border-top: 1px solid var(--line); }
.moment { display: grid; grid-template-columns: 95px 1fr; gap: 28px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.moment time { color: var(--copper); font-family: var(--serif); font-size: 21px; }
.moment h3 { font-family: var(--sans); font-size: 17px; font-weight: 500; letter-spacing: -.01em; margin-bottom: 8px; }
.moment p { color: var(--muted); line-height: 1.6; margin: 0; }

.portal { background: var(--deep); color: white; }
.portal-inner { display: grid; grid-template-columns: 1fr .72fr; gap: 10vw; align-items: end; }
.portal .display { color: white; }
.portal p { color: rgba(255,255,255,.67); line-height: 1.7; font-size: 18px; }
.portal-note { border-left: 1px solid rgba(255,255,255,.2); padding-left: 32px; }
.portal-note strong { color: var(--candle); text-transform: uppercase; font-size: 10px; letter-spacing: .2em; }

.page-hero { min-height: 74vh; padding: 170px 30px 80px; background: var(--night); color: white; position: relative; display: flex; align-items: end; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% 18%, rgba(47,114,117,.48), transparent 28%), radial-gradient(circle at 8% 88%, rgba(184,121,78,.25), transparent 30%); }
.page-hero.has-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,16,21,.87), rgba(3,16,21,.38) 67%, rgba(3,16,21,.2)); }
.page-hero > img { position: absolute; inset: 0; height: 100%; object-fit: cover; opacity: .66; }
.page-hero-inner { position: relative; z-index: 2; width: min(var(--max), 100%); margin: auto; }
.page-hero .display { max-width: 1000px; color: white; }
.page-hero .sub { max-width: 670px; font-family: var(--serif); font-size: clamp(21px, 2.4vw, 31px); line-height: 1.45; color: rgba(255,255,255,.75); margin: 30px 0 0; }

.story-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 65px; }
.story-card { background: var(--ivory); padding: 42px; min-height: 300px; }
.story-card small { color: var(--copper); text-transform: uppercase; font-size: 10px; letter-spacing: .2em; }
.story-card h3 { font-size: 42px; letter-spacing: -.04em; margin: 42px 0 16px; }
.story-card p { color: var(--muted); line-height: 1.7; margin: 0; }

.season-detail { display: grid; grid-template-columns: 160px 1fr 1fr; gap: 50px; padding: 54px 0; border-top: 1px solid var(--line); }
.season-detail:last-child { border-bottom: 1px solid var(--line); }
.season-detail .month { color: var(--copper); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; }
.season-detail h2 { font-size: 58px; letter-spacing: -.05em; margin: 0; }
.season-detail p { color: var(--muted); line-height: 1.7; margin: 0; }

.advent-programme { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-top: 65px; }
.programme-card { min-height: 310px; background: #112a32; color: white; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; border-top: 3px solid var(--candle); }
.programme-card span { color: var(--candle); font-family: var(--serif); font-size: 36px; }
.programme-card h3 { font-size: 36px; margin: 0 0 12px; }
.programme-card p { color: rgba(255,255,255,.63); line-height: 1.6; margin: 0; }

.practical-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 60px; }
.practical-card { background: white; padding: 32px; border: 1px solid var(--line); min-height: 250px; }
.practical-card h3 { font-family: var(--sans); font-size: 16px; font-weight: 500; margin: 0 0 15px; }
.practical-card p { color: var(--muted); line-height: 1.65; }
.practical-card a { color: var(--copper); font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }

.site-footer { background: #031015; color: white; padding: 80px 30px 28px; }
.footer-inner { width: min(var(--max), 100%); margin: auto; }
.footer-top { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 8vw; }
.footer-brand { font-family: var(--serif); font-size: 46px; letter-spacing: -.04em; }
.footer-brand em { color: var(--candle); display: block; font-weight: 300; }
.footer-copy { color: rgba(255,255,255,.53); line-height: 1.7; max-width: 440px; }
.footer-col strong { display: block; color: var(--candle); font-size: 10px; text-transform: uppercase; letter-spacing: .2em; margin-bottom: 17px; }
.footer-col a { display: block; color: rgba(255,255,255,.68); margin: 10px 0; font-size: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.13); margin-top: 62px; padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.38); font-size: 11px; line-height: 1.6; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Conversion-focused campaign layer */
.hero-winter .hero-image { object-position: 60% 58%; filter: saturate(.88) contrast(1.06); }
.hero-winter::after { background: linear-gradient(90deg, rgba(3,16,21,.94) 0%, rgba(3,16,21,.72) 45%, rgba(3,16,21,.2) 78%), linear-gradient(0deg, rgba(3,15,20,.86), transparent 55%); }
.escape-section { position: relative; background: var(--ivory); padding-top: 124px; border-top: 1px solid rgba(16,34,41,.12); scroll-margin-top: 108px; }
.escape-section::before { content: ""; position: absolute; top: 0; left: 50%; width: min(180px, 26vw); height: 1px; background: var(--candle); transform: translateX(-50%); }
.escape-section .intro-grid.reveal,
.escape-section .escape-card.reveal { opacity: 1; transform: none; }
.escape-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 66px; }
.escape-card { background: white; border: 1px solid var(--line); box-shadow: 0 18px 50px rgba(6,22,29,.08); transition: transform .3s ease, box-shadow .3s ease; }
.escape-card:hover { transform: translateY(-7px); box-shadow: 0 28px 70px rgba(6,22,29,.14); }
.escape-image { display: block; position: relative; height: 275px; overflow: hidden; }
.escape-image img { height: 100%; object-fit: cover; transition: transform .65s ease; }
.escape-card:hover .escape-image img { transform: scale(1.035); }
.escape-length { position: absolute; left: 18px; bottom: 18px; background: var(--ivory); color: var(--night); padding: 9px 13px; border-radius: 999px; font-size: 10px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; }
.escape-copy { padding: 29px 28px 31px; }
.card-kicker { color: var(--copper); font-size: 11px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; }
.escape-copy h3 { margin: 14px 0 12px; font-size: 40px; letter-spacing: -.045em; line-height: 1.02; }
.escape-copy p { color: var(--muted); line-height: 1.65; }
.escape-copy ul { list-style: none; margin: 22px 0 25px; padding: 18px 0 0; border-top: 1px solid var(--line); }
.escape-copy li { position: relative; padding: 6px 0 6px 18px; color: #4f6067; font-size: 13px; }
.escape-copy li::before { content: ""; position: absolute; left: 0; top: 13px; width: 6px; height: 6px; border-radius: 50%; background: var(--copper); }
.text-link { color: var(--night); font-size: 12px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; border-bottom: 1px solid rgba(6,22,29,.28); padding-bottom: 4px; }
.feature-content .text-link { align-self: center; }
.concept-note { display: grid; grid-template-columns: auto 1fr auto; gap: 22px; align-items: center; margin-top: 20px; padding: 18px 21px; background: #ebe4d8; color: #526168; font-size: 12px; line-height: 1.55; }
.concept-note strong { color: var(--ink); text-transform: uppercase; font-size: 10px; letter-spacing: .15em; }
.concept-note a { color: var(--copper); font-weight: 500; text-transform: uppercase; font-size: 10px; letter-spacing: .12em; white-space: nowrap; }
.seasonal-now { background: #e9e5dd; }
.date-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 68px; background: rgba(16,34,41,.16); border: 1px solid rgba(16,34,41,.16); }
.date-card { min-height: 235px; padding: 32px; display: grid; grid-template-columns: 125px 1fr; gap: 30px; background: var(--ivory); transition: background .25s ease, color .25s ease; }
.date-card:hover { background: white; }
.date-card.featured { background: var(--deep); color: white; }
.date-card time { display: flex; flex-direction: column; align-items: flex-start; font-family: var(--serif); }
.date-card time strong { font-size: 31px; font-weight: 400; line-height: 1; letter-spacing: -.04em; }
.date-card time span { margin-top: 8px; color: var(--muted); font-family: var(--sans); font-size: 11px; line-height: 1.45; }
.date-card.featured time span { color: rgba(255,255,255,.58); }
.date-card small { display: block; margin-bottom: 23px; color: var(--copper); font-size: 11px; font-weight: 500; letter-spacing: .17em; text-transform: uppercase; }
.date-card.featured small { color: var(--candle); }
.date-card h3 { margin: 0 0 11px; font-size: 34px; line-height: 1.03; letter-spacing: -.035em; }
.date-card p { max-width: 410px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.date-card.featured p { color: rgba(255,255,255,.64); }
.calendar-source { display: flex; justify-content: space-between; gap: 28px; padding-top: 20px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.calendar-source a { color: var(--copper); font-weight: 500; letter-spacing: .06em; white-space: nowrap; }
.confidence-strip { background: #102d34; color: white; padding: 76px 30px; }
.confidence-inner { display: grid; grid-template-columns: .75fr 1.25fr; gap: 8vw; align-items: center; }
.confidence-strip h2 { margin: 0; font-size: clamp(38px, 4.4vw, 64px); letter-spacing: -.04em; line-height: 1; }
.confidence-list { border-top: 1px solid rgba(255,255,255,.17); }
.confidence-list a { display: grid; grid-template-columns: 45px 1fr auto; align-items: center; gap: 15px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.17); transition: color .2s; }
.confidence-list a:hover { color: var(--candle); }
.confidence-list span { color: var(--candle); font-family: var(--serif); font-size: 19px; }
.confidence-list strong { font-size: 14px; }
.confidence-list small { color: rgba(255,255,255,.53); font-size: 11px; }
.offer-hero { min-height: 78vh; }
.offer-grid { display: grid; gap: 28px; margin-top: 68px; }
.offer-row { display: grid; grid-template-columns: .88fr 1.12fr; min-height: 540px; background: white; border: 1px solid var(--line); }
.offer-row:nth-child(even) { grid-template-columns: 1.12fr .88fr; }
.offer-row:nth-child(even) .offer-media { order: 2; }
.offer-media { position: relative; min-height: 430px; overflow: hidden; }
.offer-media img { height: 100%; object-fit: cover; }
.offer-badge { position: absolute; left: 22px; top: 22px; padding: 10px 14px; background: var(--candle); color: var(--night); border-radius: 999px; font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; }
.offer-body { padding: 60px 6vw; display: flex; flex-direction: column; justify-content: center; }
.offer-body h2 { font-size: clamp(45px, 5.4vw, 75px); line-height: .94; letter-spacing: -.055em; margin: 14px 0 22px; }
.offer-body > p { color: var(--muted); line-height: 1.7; font-size: 17px; }
.offer-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 24px 0 28px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.offer-facts div { padding: 15px 12px 15px 0; }
.offer-facts small { display: block; color: var(--copper); text-transform: uppercase; letter-spacing: .13em; font-size: 9px; margin-bottom: 6px; }
.offer-facts strong { font-size: 13px; }
.gallery-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; grid-template-rows: 260px 260px; gap: 12px; margin-top: 60px; }
.gallery-grid figure { margin: 0; overflow: hidden; position: relative; }
.gallery-grid figure:first-child { grid-row: 1 / 3; }
.gallery-grid img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-grid figure:hover img { transform: scale(1.03); }
.gallery-grid figcaption { position: absolute; inset: auto 0 0; padding: 28px 18px 15px; color: white; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; background: linear-gradient(transparent, rgba(3,16,21,.84)); }
.split-visual { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; }
.split-visual img { height: 100%; object-fit: cover; min-height: 620px; }
.split-copy { background: #e7dfd3; padding: 8vw 7vw; display: flex; flex-direction: column; justify-content: center; }
.split-copy h2 { font-size: clamp(50px, 6vw, 86px); line-height: .94; letter-spacing: -.055em; }
.split-copy p { color: var(--muted); font-size: 18px; line-height: 1.72; }
.photo-pair { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; margin-top: 62px; }
.photo-pair figure { margin: 0; position: relative; overflow: hidden; min-height: 470px; }
.photo-pair figure:last-child { margin-top: 90px; min-height: 390px; }
.photo-pair img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.photo-pair figcaption { position: absolute; inset: auto 0 0; padding: 55px 24px 20px; color: white; background: linear-gradient(transparent, rgba(3,16,21,.82)); font-size: 12px; line-height: 1.5; }

/* Fully localised campaign landing */
.localized-landing .hero-copy { max-width: 900px; }
.localized-landing .hero-actions { margin-top: 32px; }
.localized-landing .escape-grid { margin-top: 58px; }
.localized-landing .escape-card { min-height: 100%; }
.localized-landing .escape-copy { min-height: 250px; display: flex; flex-direction: column; }
.localized-landing .escape-copy p { font-size: 15px; }
.localized-landing .escape-copy .text-link { align-self: flex-start; margin-top: auto; }
.localized-landing .places-grid { margin-top: 55px; }
.localized-landing .place { min-height: 300px; }
.localized-landing .place h3 { margin-top: 30px; }

@media (max-width: 1240px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .breath-mark { display: none; }
  .header-actions { grid-column: 2; }
  .header-actions > a { display: none; }
}

@media (max-width: 1000px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .breath-mark { display: none; }
  .header-actions { grid-column: 2; }
  .header-actions > a { display: none; }
  .hero-note { display: none; }
  .intro-grid, .image-band-content, .portal-inner { grid-template-columns: 1fr; gap: 35px; }
  .season-grid { grid-template-columns: repeat(2, 1fr); }
  .feature { grid-template-columns: 1fr; }
  .feature-content { padding: 90px 40px; }
  .places-grid { grid-template-columns: repeat(2, 1fr); }
  .place:nth-child(2) { border-right: 1px solid var(--line); }
  .season-detail { grid-template-columns: 120px 1fr; }
  .season-detail p { grid-column: 2; }
  .escape-grid { grid-template-columns: 1fr; }
  .escape-card { display: grid; grid-template-columns: .8fr 1.2fr; }
  .escape-image { height: 100%; min-height: 350px; }
  .confidence-inner { grid-template-columns: 1fr; gap: 45px; }
  .offer-row, .offer-row:nth-child(even) { grid-template-columns: 1fr; }
  .offer-row:nth-child(even) .offer-media { order: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid figure:first-child { grid-row: auto; }
  .split-visual { grid-template-columns: 1fr; }
  .split-visual img { min-height: 520px; }
  .date-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 108px; }
  .site-header { color: white; }
  .site-header.scrolled, .site-header.solid { color: var(--night); }
  .header-inner { min-height: 70px; padding: 0 18px; }
  .wordmark { max-width: 150px; font-size: 9px; letter-spacing: .13em; line-height: 1.15; }
  .wordmark span { margin-top: 3px; font-size: 16px; line-height: 1; }
  .header-actions { gap: 8px; }
  .language-nav { position: static; }
  .language-nav summary { display: none; }
  .language-grid { position: absolute; top: 70px; right: 0; left: 0; width: 100%; padding: 5px 10px 6px; display: grid; grid-template-columns: repeat(9, minmax(0, 1fr)); gap: 1px; background: rgba(5,21,28,.88); color: white; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.14); box-shadow: 0 8px 24px rgba(2,17,22,.12); backdrop-filter: blur(16px); opacity: 1; visibility: visible; transform: none; }
  .site-header.scrolled .language-grid, .site-header.solid .language-grid { background: rgba(246,243,236,.96); color: var(--night); border-color: var(--line); }
  .language-grid a { min-width: 0; padding: 7px 1px 6px; border: 0; border-bottom: 1px solid transparent; font-size: 10px; }
  .language-grid a.active { border-color: var(--candle); }
  .site-header.scrolled .language-grid a.active, .site-header.solid .language-grid a.active { border-color: var(--copper); }
  .menu-panel { overflow-y: auto; padding: 126px 22px 32px; }
  .menu-content { grid-template-columns: 1fr; gap: 38px; align-self: start; }
  .menu-links a { font-size: clamp(31px, 10vw, 42px); line-height: 1.08; }
  .menu-aside { display: none; }
  .hero { min-height: max(660px, 100svh); }
  .hero-inner { padding: 146px 18px 68px; }
  .hero h1 { max-width: 100%; margin: 22px 0 26px; font-size: clamp(58px, 20vw, 86px); line-height: .83; letter-spacing: -.058em; }
  .hero-lead { max-width: 34rem; font-size: clamp(19px, 5.6vw, 22px); line-height: 1.42; }
  .hero .hero-image,
  .page-hero > img,
  .escape-image img,
  .feature-media img,
  .image-band img,
  .offer-media img,
  .split-visual img,
  .photo-pair img,
  .gallery-grid img { object-position: var(--mobile-focus, 50% 50%); }
  img[src$="hero-quiet-season.jpg"] { --mobile-focus: 72% 52%; }
  img[src$="hero-advent-editorial.jpg"] { --mobile-focus: 72% 50%; }
  img[src$="hero-wellness-editorial.jpg"] { --mobile-focus: 52% 50%; }
  img[src$="love-path.jpg"] { --mobile-focus: 62% 50%; }
  img[src$="riviera-hero.jpg"] { --mobile-focus: 69% 50%; }
  img[src$="wellness.jpg"] { --mobile-focus: 50% 50%; }
  .hero-actions { width: 100%; gap: 9px; align-items: stretch; }
  .hero-actions .button { flex: 1 1 100%; width: 100%; min-height: 48px; padding: 12px 18px; white-space: normal; text-align: center; line-height: 1.3; }
  .escape-section { padding-top: 84px; }
  .section { padding: 76px 18px; }
  .display, .page-hero .display { max-width: 100%; font-size: clamp(43px, 14vw, 66px); line-height: .93; letter-spacing: -.045em; overflow-wrap: break-word; }
  .intro-grid { gap: 28px; }
  .intro-grid .lead { font-size: 17px; line-height: 1.68; }
  .breath-grid, .story-grid { grid-template-columns: 1fr; }
  .breath-card { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px 0 !important; min-height: 220px; }
  .season-grid, .places-grid, .advent-programme, .practical-grid { grid-template-columns: 1fr; }
  .season-card { min-height: 330px; }
  .feature-media { height: clamp(340px, 110vw, 440px); min-height: 0; }
  .feature-content { padding: 66px 18px; }
  .feature-content .display { font-size: clamp(43px, 14vw, 64px); }
  .feature-content p { margin: 24px 0; font-size: 16px; line-height: 1.68; }
  .feature-content .event-points { grid-template-columns: 1fr; }
  .image-band { min-height: 640px; }
  .image-band-content { padding: 58px 18px; gap: 28px; }
  .image-band h2 { font-size: clamp(46px, 15vw, 68px); line-height: .92; }
  .image-band p { font-size: 16px; line-height: 1.65; }
  .place, .place:nth-child(2) { border-right: 1px solid var(--line); border-bottom: 0; min-height: 280px; }
  .place:last-child { border-bottom: 1px solid var(--line); }
  .itinerary { grid-template-columns: 1fr; gap: 42px; }
  .itinerary-intro { position: static; }
  .moment { grid-template-columns: 68px 1fr; gap: 16px; }
  .page-hero { min-height: max(600px, 82svh); padding: 148px 18px 58px; }
  .page-hero .sub { margin-top: 22px; font-size: clamp(19px, 5.6vw, 23px); line-height: 1.42; }
  .story-card { padding: 30px 24px; }
  .season-detail { grid-template-columns: 1fr; gap: 16px; }
  .season-detail p { grid-column: 1; }
  .site-footer { padding: 66px 18px 25px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-brand { font-size: clamp(39px, 13vw, 46px); line-height: .95; }
  .footer-copy, .footer-col a, .footer-bottom span { overflow-wrap: anywhere; }
  .footer-bottom { margin-top: 48px; flex-direction: column; }
  .escape-card { display: block; }
  .escape-image { height: clamp(225px, 72vw, 285px); min-height: 0; }
  .escape-copy { padding: 26px 23px 29px; }
  .escape-copy h3 { font-size: clamp(34px, 10.5vw, 40px); }
  .localized-landing .escape-copy { min-height: 0; }
  .text-link { white-space: normal; overflow-wrap: anywhere; }
  .concept-note { grid-template-columns: 1fr; gap: 8px; }
  .date-grid { margin-top: 48px; }
  .date-card { min-height: 0; padding: 26px 22px; grid-template-columns: 92px 1fr; gap: 18px; }
  .date-card time strong { font-size: 25px; }
  .date-card h3 { font-size: 28px; }
  .calendar-source { flex-direction: column; }
  .calendar-source a { white-space: normal; }
  .confidence-strip { padding: 64px 18px; }
  .confidence-list a { grid-template-columns: 36px 1fr; }
  .confidence-list small { grid-column: 2; }
  .offer-media { height: clamp(300px, 92vw, 400px); min-height: 0; }
  .offer-body { padding: 46px 22px; }
  .offer-body h2 { font-size: clamp(42px, 13vw, 62px); }
  .offer-facts { grid-template-columns: 1fr; }
  .offer-facts div { border-bottom: 1px solid var(--line); }
  .offer-facts div:last-child { border: 0; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .gallery-grid figure { height: clamp(260px, 82vw, 320px); }
  .split-visual img { height: clamp(350px, 110vw, 440px); min-height: 0; }
  .split-copy { padding: 66px 18px; }
  .split-copy h2 { font-size: clamp(43px, 14vw, 64px); }
  .photo-pair { grid-template-columns: 1fr; }
  .photo-pair figure, .photo-pair figure:last-child { margin-top: 0; min-height: 0; height: clamp(300px, 92vw, 380px); }
}

@media (max-width: 420px) {
  .header-inner { padding: 0 14px; }
  .wordmark { max-width: 136px; font-size: 8.5px; }
  .wordmark span { font-size: 15px; }
  .language-grid { right: 0; width: 100%; padding-inline: 6px; }
  .hero-inner { padding-left: 16px; padding-right: 16px; }
  .section { padding-left: 16px; padding-right: 16px; }
  .date-card { grid-template-columns: 1fr; gap: 17px; }
  .date-card small { margin-bottom: 11px; }
  .date-card time span { margin-top: 5px; }
  .moment { grid-template-columns: 58px 1fr; gap: 13px; }
  .moment time { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
