/* ==========================================================================
   The Prism — Tirana
   The palette is sampled from the apartment's own logo: seven refracted beams,
   one per page of the site. Each beam carries three tones — the pure colour for
   decoration, a darkened twin for text on cream, a lightened twin for text on
   ink — so the brand colour is never the reason something fails contrast.
   ========================================================================== */

:root {
  /* the seven beams, straight off logo.png */
  --red:    #fc0116;
  --orange: #fd8401;
  --yellow: #fded01;
  --green:  #1df98d;
  --cyan:   #00eafd;
  --blue:   #0075fd;
  --violet: #ae00fc;

  /* dark ground */
  --ink:   #0a0a0e;
  --ink-2: #12121a;
  --ink-3: #1b1b25;
  --ink-4: #262633;

  /* warm ground */
  --cream:   #f7f2e8;
  --cream-2: #efe8da;

  --on-ink:        #ede7da;
  --on-ink-mute:   #9d968a;
  --on-cream:      #221f1a;
  --on-cream-mute: #6a635a;

  --warm:   #c9713f;
  --warm-2: #e2a35f;

  --accent: var(--warm);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --gut: clamp(1.25rem, 4vw, 3rem);
  --maxw: 1180px;
  --r: 14px;
  --r-lg: 22px;

  --shadow-warm: 0 1px 2px rgba(60,40,20,.05), 0 12px 32px -12px rgba(60,40,20,.14);
  --shadow-deep: 0 2px 4px rgba(0,0,0,.3), 0 24px 60px -20px rgba(0,0,0,.7);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* Each band: pure colour + the two accessible twins. */
[data-band="red"]    { --band: var(--red);    --on-cream-accent: #c00711; --on-ink-accent: #ff0419; }
[data-band="orange"] { --band: var(--orange); --on-cream-accent: #9c5200; --on-ink-accent: #fd8401; }
[data-band="yellow"] { --band: var(--yellow); --on-cream-accent: #786600; --on-ink-accent: #fded01; }
[data-band="green"]  { --band: var(--green);  --on-cream-accent: #0f7146; --on-ink-accent: #1df98d; }
[data-band="cyan"]   { --band: var(--cyan);   --on-cream-accent: #04717c; --on-ink-accent: #00eafd; }
[data-band="blue"]   { --band: var(--blue);   --on-cream-accent: #0056b8; --on-ink-accent: #097bff; }
[data-band="violet"] { --band: var(--violet); --on-cream-accent: #7b00b0; --on-ink-accent: #c137ff; }

.sec--ink, .sec--ink-2   { --accent: var(--on-ink-accent, var(--warm-2)); }
.sec--cream, .sec--cream-2 { --accent: var(--on-cream-accent, var(--warm)); }

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.075rem);
  line-height: 1.65;
  color: var(--on-cream);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }
.hero__media picture, .gal picture, .step figure picture { display: block; width: 100%; height: 100%; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600; line-height: 1.08; letter-spacing: -.018em;
  margin: 0 0 .5em; font-variation-settings: "opsz" 48; text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 1.4rem + 4.4vw, 4.6rem); font-variation-settings: "opsz" 144; }
h2 { font-size: clamp(1.9rem, 1.2rem + 2.7vw, 3rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + .55vw, 1.45rem); letter-spacing: -.01em; }
p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; text-decoration-color: color-mix(in srgb, currentColor 35%, transparent); text-underline-offset: .18em; }
a:hover { text-decoration-color: currentColor; }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 3px; }
ul { margin: 0 0 1.1em; padding-left: 1.15em; }
li { margin-bottom: .35em; }

.skip { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--ink);
  color: var(--on-ink); padding: .8rem 1.2rem; border-radius: 0 0 var(--r) 0; font-weight: 600; }
.skip:focus { left: 0; }

/* ---------- layout ---------- */
.wrap { width: min(100% - var(--gut) * 2, var(--maxw)); margin-inline: auto; }
.wrap--narrow { width: min(100% - var(--gut) * 2, 760px); margin-inline: auto; }

section { padding-block: clamp(3.5rem, 7vw, 7rem); position: relative; }
.sec--ink   { background: var(--ink);   color: var(--on-ink); }
.sec--ink-2 { background: var(--ink-2); color: var(--on-ink); }
.sec--cream { background: var(--cream); color: var(--on-cream); }
.sec--cream-2 { background: var(--cream-2); color: var(--on-cream); }
.sec--ink p, .sec--ink-2 p { color: color-mix(in srgb, var(--on-ink) 88%, transparent); }
.lead-mute { color: var(--on-cream-mute); }
.sec--ink .lead-mute, .sec--ink-2 .lead-mute { color: var(--on-ink-mute); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 1.4rem;
}
.eyebrow::before { content: ""; width: 30px; height: 4px; background: var(--band, var(--accent));
  border-radius: 2px; box-shadow: 0 0 16px color-mix(in srgb, var(--band, var(--accent)) 60%, transparent); }

.lead { font-size: clamp(1.08rem, 1rem + .45vw, 1.3rem); line-height: 1.6; }
.sec-head { max-width: 62ch; margin-bottom: clamp(2.2rem, 4.5vw, 3.5rem); }

/* ---------- spectrum rail: seven beams, one per page ---------- */
/* Seven beams down the left edge of the home page, filling as you scroll.
   Sits above the header so the first band is never clipped by it. */
.rail { position: fixed; left: 0; top: 0; bottom: 0; width: 9px; z-index: 80;
  display: flex; flex-direction: column; pointer-events: none; }
.rail span { flex: 1; display: block; opacity: .16; transition: opacity .25s linear; }
.rail span:nth-child(1) { background: var(--red); }
.rail span:nth-child(2) { background: var(--orange); }
.rail span:nth-child(3) { background: var(--yellow); }
.rail span:nth-child(4) { background: var(--green); }
.rail span:nth-child(5) { background: var(--cyan); }
.rail span:nth-child(6) { background: var(--blue); }
.rail span:nth-child(7) { background: var(--violet); }
@media (max-width: 900px) { .rail { display: none; } }

/* ---------- header ---------- */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 70; display: flex; align-items: center; gap: 1.2rem;
  padding: 1rem var(--gut); transition: background .35s var(--ease), padding .35s var(--ease), border-color .35s;
  border-bottom: 1px solid transparent;
}
.hdr.stuck { background: color-mix(in srgb, var(--ink) 84%, transparent);
  backdrop-filter: blur(14px) saturate(1.3); -webkit-backdrop-filter: blur(14px) saturate(1.3);
  padding-block: .6rem; border-bottom-color: rgba(255,255,255,.08); }

.brand { display: flex; align-items: center; gap: .7rem; color: var(--on-ink); text-decoration: none; margin-right: auto; }
.brand img { width: 66px; height: auto; flex: none; }
.brand__txt { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; letter-spacing: -.01em; line-height: 1.05; }
.brand__txt small { display: block; font-family: var(--font-body); font-size: .58rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--on-ink-mute); margin-top: 2px; }
@media (max-width: 480px) { .brand img { width: 52px; } .brand__txt { font-size: .95rem; } }

.nav { display: flex; align-items: center; gap: 1.25rem; }
.nav a { color: var(--on-ink); text-decoration: none; font-size: .85rem; font-weight: 500; opacity: .78; white-space: nowrap; }
.nav a:hover, .nav a[aria-current="page"] { opacity: 1; }
.nav a[aria-current="page"] { color: var(--on-ink-accent, var(--warm-2)); }
@media (max-width: 1180px) { .nav { display: none; } }

.nav-toggle { display: none; background: none; border: 1px solid rgba(255,255,255,.25); color: var(--on-ink);
  width: 42px; height: 42px; border-radius: 10px; cursor: pointer; align-items: center; justify-content: center; }
@media (max-width: 1180px) { .nav-toggle { display: inline-flex; } }
.nav-toggle svg { width: 20px; height: 20px; }

.drawer { position: fixed; inset: 0; z-index: 90; background: var(--ink); display: grid; place-content: center;
  gap: .2rem; opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
  overflow-y: auto; padding: 5rem 1rem 2rem; }
.drawer[data-open="true"] { opacity: 1; visibility: visible; }
.drawer a { font-family: var(--font-display); font-size: clamp(1.35rem, 5vw, 2rem); color: var(--on-ink);
  text-decoration: none; text-align: center; padding: .35rem 1rem; }
.drawer a[aria-current="page"] { color: var(--warm-2); }
.drawer__close { position: absolute; top: 1.2rem; right: var(--gut); background: none; border: 0;
  color: var(--on-ink); font-size: 2rem; cursor: pointer; line-height: 1; }

/* ---------- language switcher ---------- */
.langs { position: relative; flex: none; }
.langs__btn { display: inline-flex; align-items: center; gap: .45rem; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.2); color: var(--on-ink); border-radius: 100px;
  padding: .45rem .8rem; font: inherit; font-size: .8rem; font-weight: 600; cursor: pointer; }
.langs__btn:hover { background: rgba(255,255,255,.14); }
.langs__btn svg { width: 13px; height: 13px; opacity: .7; }
.langs__list { position: absolute; right: 0; top: calc(100% + .5rem); min-width: 168px; padding: .4rem;
  background: var(--ink-2); border: 1px solid var(--ink-4); border-radius: var(--r);
  box-shadow: var(--shadow-deep); list-style: none; margin: 0; display: none; z-index: 5; }
.langs[data-open="true"] .langs__list { display: block; }
.langs__list li { margin: 0; }
.langs__list a { display: flex; align-items: center; gap: .65rem;
  padding: .55rem .7rem; border-radius: 9px; text-decoration: none; color: var(--on-ink); font-size: .88rem; }
.langs__name { margin-right: auto; }
.langs__flag { display: flex; flex: none; line-height: 0; }
.langs__flag .flag { width: 24px; height: 24px; display: block; }
.langs__btn .langs__flag .flag { width: 21px; height: 21px; }
.langs__list a:hover { background: rgba(255,255,255,.08); }
.langs__list a[aria-current="true"] { color: var(--warm-2); font-weight: 600; }
.langs__list small { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-ink-mute); }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .82rem 1.45rem; border-radius: 100px; border: 1px solid transparent; font: inherit;
  font-size: .9rem; font-weight: 600; text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s, border-color .2s; }
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 17px; height: 17px; flex: none; }
.btn--primary { background: var(--warm); color: #fff; box-shadow: 0 6px 20px -6px color-mix(in srgb, var(--warm) 70%, transparent); }
.btn--primary:hover { background: color-mix(in srgb, var(--warm) 88%, #fff); }
.btn--ghost-light { border-color: rgba(255,255,255,.28); color: var(--on-ink); }
.btn--ghost-light:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.06); }
.btn--ghost-dark { border-color: color-mix(in srgb, var(--on-cream) 22%, transparent); color: var(--on-cream); }
.btn--ghost-dark:hover { border-color: var(--on-cream); background: color-mix(in srgb, var(--on-cream) 5%, transparent); }
.btn--sm { padding: .58rem 1.05rem; font-size: .84rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

/* ---------- hero (home) ---------- */
.hero { position: relative; min-height: 100svh; display: grid; align-items: end; background: var(--ink);
  color: var(--on-ink); padding: 0 0 clamp(2.5rem, 6vw, 5rem); overflow: hidden; isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.hero__media::after { content: ""; position: absolute; inset: 0;
  background: radial-gradient(115% 85% at 74% 34%, rgba(10,10,14,0) 0%, rgba(10,10,14,.55) 48%, rgba(10,10,14,.93) 100%),
              linear-gradient(to top, var(--ink) 4%, rgba(10,10,14,.55) 38%, rgba(10,10,14,.2) 100%); }
.hero__inner { position: relative; }
.hero h1 { margin: 0 0 1rem; }
.hero h1 em { font-style: normal; background: linear-gradient(100deg, var(--red) 2%, var(--orange) 18%,
  var(--yellow) 34%, var(--green) 52%, var(--cyan) 68%, var(--blue) 84%, var(--violet) 98%);
  -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__kicker { display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 1.5rem;
  font-size: .74rem; font-weight: 600; letter-spacing: .19em; text-transform: uppercase; color: var(--on-ink);
  padding: .5rem 1rem .5rem .6rem; border: 1px solid rgba(255,255,255,.18); border-radius: 100px;
  background: rgba(255,255,255,.05); backdrop-filter: blur(6px); }
.hero__kicker b { display: inline-flex; gap: 3px; }
.hero__kicker b i { width: 4px; height: 13px; border-radius: 1px; display: block; }
.hero__sub { font-size: clamp(1.02rem, .98rem + .5vw, 1.3rem); max-width: 50ch;
  color: color-mix(in srgb, var(--on-ink) 82%, transparent); margin-bottom: 1.9rem; }
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(1.3rem, 4vw, 2.8rem);
  margin-top: clamp(2.2rem, 5vw, 4rem); padding-top: 1.7rem; border-top: 1px solid rgba(255,255,255,.13); }
.hero__stat b { display: block; font-family: var(--font-display); font-size: clamp(1.35rem, 1.2rem + .8vw, 1.9rem);
  font-weight: 600; line-height: 1; margin-bottom: .3rem; }
.hero__stat span { font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; color: var(--on-ink-mute); }
.hero__scroll { position: absolute; bottom: 1.4rem; right: var(--gut); display: flex; align-items: center;
  gap: .6rem; font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; color: var(--on-ink-mute); }
.hero__scroll i { display: block; width: 1px; height: 42px; background: linear-gradient(to bottom, transparent, var(--on-ink-mute)); }
@media (max-width: 760px) { .hero__scroll { display: none; } }
.beam { position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .75; mix-blend-mode: screen; }

/* ---------- page head (subpages) ---------- */
.pagehead { background: var(--ink); color: var(--on-ink); padding: clamp(7rem, 13vw, 10rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative; overflow: hidden; }
.pagehead::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: var(--band); opacity: .85; }
.pagehead h1 { font-size: clamp(2.1rem, 1.4rem + 3.4vw, 3.9rem); margin-bottom: .8rem; }
.pagehead .lead { max-width: 60ch; color: color-mix(in srgb, var(--on-ink) 84%, transparent); }
.pagehead__glow { position: absolute; inset: auto -10% -60% 40%; height: 340px; pointer-events: none;
  background: radial-gradient(50% 50% at 50% 50%, color-mix(in srgb, var(--band) 26%, transparent), transparent 70%); }

/* ---------- feature grid ---------- */
.feats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: color-mix(in srgb, var(--on-cream) 12%, transparent); border-radius: var(--r-lg); overflow: hidden; }
.feat { background: var(--cream); padding: 1.5rem 1.4rem; }
.sec--cream-2 .feat { background: var(--cream-2); }
.feat svg { width: 24px; height: 24px; color: var(--accent); margin: 0 0 .85rem; display: block; }
.feat h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; margin-bottom: .3rem; }
.feat p { font-size: .88rem; color: var(--on-cream-mute); margin: 0; line-height: 1.5; }
@media (max-width: 1000px) { .feats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .feats { grid-template-columns: 1fr; } }

/* ---------- story ---------- */
.story { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2.2rem, 5vw, 5rem); align-items: center; }
@media (max-width: 900px) { .story { grid-template-columns: 1fr; } }
.story__fig { position: relative; }
.story__fig img { border-radius: var(--r-lg); box-shadow: var(--shadow-warm); }
.story__badge { position: absolute; bottom: -18px; left: -18px; background: var(--ink); color: var(--on-ink);
  border-radius: var(--r); padding: 1rem 1.15rem; box-shadow: var(--shadow-deep); max-width: 210px; }
.story__badge b { display: block; font-family: var(--font-display); font-size: 1.45rem; line-height: 1; margin-bottom: .3rem; }
.story__badge span { font-size: .74rem; color: var(--on-ink-mute); line-height: 1.4; display: block; }
@media (max-width: 560px) { .story__badge { left: 0; bottom: -14px; } }
.signature { font-family: var(--font-display); font-style: italic; font-size: 1.12rem; color: var(--warm); margin-top: 1.5rem; }

/* ---------- gallery ---------- */
.gal { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(.5rem, 1.2vw, .9rem); }
.gal button { position: relative; padding: 0; border: 0; cursor: zoom-in; overflow: hidden;
  border-radius: var(--r); background: var(--ink-3); display: block; width: 100%; grid-column: span 2; aspect-ratio: 4/3; }
.gal button:nth-child(1) { grid-column: span 4; aspect-ratio: 16/10; }
.gal button:nth-child(2) { grid-column: span 2; aspect-ratio: 4/5; }
.gal button:nth-child(6), .gal button:nth-child(7) { grid-column: span 3; aspect-ratio: 3/2; }
@media (max-width: 760px) {
  .gal { grid-template-columns: repeat(2, 1fr); }
  .gal button, .gal button:nth-child(n) { grid-column: span 1; aspect-ratio: 1/1; }
  .gal button:nth-child(1) { grid-column: span 2; aspect-ratio: 4/3; }
}
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gal button:hover img { transform: scale(1.045); }
.gal button::after { content: ""; position: absolute; inset: 0; border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); pointer-events: none; }

.lb { position: fixed; inset: 0; z-index: 120; background: rgba(5,5,8,.96); display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 3rem); opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s; }
.lb[data-open="true"] { opacity: 1; visibility: visible; }
.lb figure { margin: 0; max-width: min(100%, 1280px); }
.lb img { max-height: 78svh; width: auto; margin-inline: auto; border-radius: 10px; box-shadow: var(--shadow-deep); }
.lb figcaption { color: var(--on-ink-mute); font-size: .85rem; text-align: center; margin-top: 1rem; }
.lb__btn { position: absolute; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.16);
  color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; }
.lb__btn:hover { background: rgba(255,255,255,.2); }
.lb__btn svg { width: 20px; height: 20px; }
.lb__prev { left: clamp(.6rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lb__next { right: clamp(.6rem, 2vw, 2rem); top: 50%; transform: translateY(-50%); }
.lb__close { top: clamp(.8rem, 2vw, 1.6rem); right: clamp(.8rem, 2vw, 1.6rem); }

/* ---------- maps ---------- */
.mapcard { background: var(--ink-2); border: 1px solid var(--ink-4); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-deep); }
.mapcard__head { display: flex; flex-wrap: wrap; gap: 1rem; align-items: baseline; justify-content: space-between;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--ink-4); }
.mapcard__head h3 { margin: 0; font-size: 1.08rem; }
.mapcard__note { font-size: .78rem; color: var(--on-ink-mute); }
.mapfig { margin: 0; background: var(--ink); }
.mapfig svg { width: 100%; height: auto; display: block; user-select: none; }
.maplegend { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; padding: 1.05rem 1.5rem;
  border-top: 1px solid var(--ink-4); font-size: .8rem; color: var(--on-ink-mute); }
.maplegend span { display: inline-flex; align-items: center; gap: .5rem; }
.maplegend i { width: 22px; height: 4px; border-radius: 2px; flex: none; display: block; }

/* arrival map internals */
.bldg { fill: #1e1e29; stroke: #2d2d3c; stroke-width: 1; }
.bldg--hotel { fill: #3a2b1e; stroke: var(--orange); stroke-width: 1.8; }
.road-major { stroke: #2f2f3f; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.road-minor { stroke: #282835; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.route { fill: none; stroke: url(#spectrum); stroke-width: 5.5; stroke-linecap: round; stroke-linejoin: round; }
.route-tunnel { fill: none; stroke: var(--yellow); stroke-width: 5.5; stroke-linecap: round; stroke-dasharray: 10 9; }
.tunnel-mouth { fill: none; stroke: var(--yellow); stroke-width: 2.2; opacity: .9; }
.m-label { font-family: var(--font-body); font-size: 16px; font-weight: 600; fill: #f0eadd;
  paint-order: stroke; stroke: #0c0c12; stroke-width: 4px; stroke-linejoin: round; }
.m-sub { font-family: var(--font-body); font-size: 12.5px; font-weight: 500; fill: #a09889;
  paint-order: stroke; stroke: #0c0c12; stroke-width: 3.5px; stroke-linejoin: round; }
.m-street { font-family: var(--font-body); font-size: 12.5px; font-weight: 600; fill: #5f5a6b;
  letter-spacing: .1em; text-transform: uppercase; }
.m-pin-num { font-family: var(--font-body); font-size: 16px; font-weight: 700; fill: #0c0c12; text-anchor: middle; }

/* trail map internals */
.t-park  { fill: rgba(29,249,141,.07); stroke: rgba(29,249,141,.18); stroke-width: 1; }
.t-road  { stroke: #23232f; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.t-route { fill: none; stroke: var(--yellow); stroke-width: 3.4; stroke-linecap: round;
  stroke-linejoin: round; stroke-dasharray: 11 8; opacity: .95; }
.t-num   { font-family: var(--font-body); font-size: 14px; font-weight: 700; text-anchor: middle; }
.t-label { font-family: var(--font-body); font-size: 13.5px; font-weight: 600; fill: #ece6da;
  paint-order: stroke; stroke: #0c0c12; stroke-width: 4px; stroke-linejoin: round; }
.t-sub   { font-family: var(--font-body); font-size: 12px; font-weight: 500; fill: #8f887c; }

/* ---------- arrival steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem); margin-top: clamp(2.2rem, 4.5vw, 3.5rem); }
.step { position: relative; }
.step figure { margin: 0 0 1rem; border-radius: var(--r); overflow: hidden; background: var(--ink-3); aspect-ratio: 3/4; }
.step figure img { width: 100%; height: 100%; object-fit: cover; }
.step__n { position: absolute; top: .8rem; left: .8rem; z-index: 2; width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center; background: var(--band, var(--accent)); color: var(--ink);
  font-weight: 700; font-size: .95rem; box-shadow: 0 3px 12px rgba(0,0,0,.45); }
.step h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; margin-bottom: .35rem; }
.step p { font-size: .88rem; margin: 0; }

/* ---------- place cards ---------- */
.filters { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: clamp(1.8rem, 3.5vw, 2.6rem); }
.chip { font: inherit; font-size: .83rem; font-weight: 500; cursor: pointer; padding: .48rem 1rem;
  border-radius: 100px; border: 1px solid color-mix(in srgb, currentColor 22%, transparent);
  background: none; color: inherit; transition: all .2s var(--ease); }
.chip:hover { border-color: color-mix(in srgb, currentColor 45%, transparent); }
.chip[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: var(--cream); font-weight: 600; }
.sec--ink .chip[aria-pressed="true"], .sec--ink-2 .chip[aria-pressed="true"] { color: var(--ink); }

.places { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.place { display: flex; flex-direction: column; gap: .55rem; padding: 1.35rem 1.4rem; border-radius: var(--r);
  background: color-mix(in srgb, var(--on-cream) 3.5%, transparent);
  border: 1px solid color-mix(in srgb, var(--on-cream) 9%, transparent);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s; }
.sec--ink .place, .sec--ink-2 .place { background: rgba(255,255,255,.035); border-color: rgba(255,255,255,.09); }
.place:hover { transform: translateY(-3px); box-shadow: var(--shadow-warm);
  border-color: color-mix(in srgb, var(--accent) 45%, transparent); }
.place[hidden] { display: none; }
.place--star { border-color: color-mix(in srgb, var(--accent) 40%, transparent);
  background: color-mix(in srgb, var(--accent) 7%, transparent); }
.place__top { display: flex; align-items: baseline; justify-content: space-between; gap: .8rem; }
.place h3 { margin: 0; font-size: 1.05rem; }
.place__tag { font-size: .67rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase;
  color: var(--accent); white-space: nowrap; padding-top: .25rem; }
.place p { font-size: .88rem; margin: 0; line-height: 1.55; color: color-mix(in srgb, currentColor 78%, transparent); }
.place__meta { display: flex; flex-wrap: wrap; gap: .4rem .85rem; font-size: .77rem;
  color: color-mix(in srgb, currentColor 62%, transparent); }
.place__meta span { display: inline-flex; align-items: center; gap: .32rem; }
.place__meta svg { width: 13px; height: 13px; flex: none; }
.place__foot { margin-top: auto; padding-top: .85rem; display: flex; flex-direction: column;
  align-items: flex-start; gap: .65rem; }
.dirbtn { display: inline-flex; align-items: center; gap: .38rem; font-size: .76rem; font-weight: 600;
  text-decoration: none; padding: .38rem .75rem; border-radius: 100px;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent); color: var(--accent);
  transition: background .2s, border-color .2s; white-space: nowrap; }
.dirbtn:hover { background: color-mix(in srgb, var(--accent) 14%, transparent); border-color: var(--accent); }
.dirbtn svg { width: 13px; height: 13px; }

/* ---------- trips ---------- */
.trips { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: clamp(1rem, 2vw, 1.5rem); }
.trip { padding: 1.5rem 1.45rem; border-radius: var(--r); background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09); display: flex; flex-direction: column; }
.trip__hd { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .55rem; }
.trip h3 { margin: 0; font-size: 1.1rem; }
.trip__dist { font-size: .73rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); white-space: nowrap; }
.trip p { font-size: .88rem; margin: 0 0 .9rem; }
.trip__foot { margin-top: auto; font-size: .77rem; color: var(--on-ink-mute); display: flex; flex-wrap: wrap; gap: .35rem .85rem; }
.trip--hero { grid-column: span 2; background: linear-gradient(135deg, color-mix(in srgb, var(--band) 16%, transparent),
  color-mix(in srgb, var(--violet) 10%, transparent)); border-color: color-mix(in srgb, var(--band) 35%, transparent); }
@media (max-width: 700px) { .trip--hero { grid-column: span 1; } }

/* ---------- callout ---------- */
.callout { display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1.2rem, 3vw, 2.2rem);
  align-items: center; padding: clamp(1.4rem, 3vw, 2.1rem); border-radius: var(--r-lg);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent); }
@media (max-width: 820px) { .callout { grid-template-columns: 1fr; } }
.callout__icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center;
  justify-content: center; line-height: 0;
  background: var(--accent); color: var(--cream); flex: none; }
.sec--ink .callout__icon, .sec--ink-2 .callout__icon { color: var(--ink); }
.callout__icon svg { width: 26px; height: 26px; display: block; margin: auto; }
.callout h3 { margin: 0 0 .35rem; font-size: 1.12rem; }
.callout p { margin: 0; font-size: .9rem; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid color-mix(in srgb, var(--on-cream) 13%, transparent); }
.faq details { border-bottom: 1px solid color-mix(in srgb, var(--on-cream) 13%, transparent); }
.faq summary { cursor: pointer; padding: 1.2rem 2.5rem 1.2rem 0; position: relative;
  font-family: var(--font-display); font-size: clamp(1rem, .98rem + .3vw, 1.18rem); font-weight: 600; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: .5rem; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s var(--ease); }
.faq details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq details > div { padding: 0 2.5rem 1.4rem 0; font-size: .94rem; color: var(--on-cream-mute); }

/* ---------- journal / prose ---------- */
.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.05rem); margin-top: 2.4em; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: clamp(1.02rem, .99rem + .25vw, 1.12rem); line-height: 1.72; }
.prose .standfirst { font-family: var(--font-display); font-size: clamp(1.15rem, 1.05rem + .6vw, 1.5rem);
  line-height: 1.45; color: var(--on-ink); margin-bottom: 1.8em; }
.stoplist { counter-reset: st; list-style: none; padding: 0; margin: 2rem 0 0; }
.stoplist > li { counter-increment: st; position: relative; padding: 0 0 1.5rem 3rem;
  border-left: 2px solid var(--ink-4); margin-left: 15px; }
.stoplist > li:last-child { border-left-color: transparent; padding-bottom: 0; }
.stoplist > li::before { content: counter(st); position: absolute; left: -16px; top: -3px; width: 30px; height: 30px;
  border-radius: 50%; display: grid; place-items: center; background: var(--ink-3);
  border: 2px solid var(--band, var(--accent)); color: var(--on-ink); font-size: .84rem; font-weight: 700; }
.stoplist h3 { font-size: 1.02rem; margin-bottom: .3rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; }
.stoplist p { font-size: .92rem; margin: 0; }
.tips { display: grid; gap: 1px; background: var(--ink-4); border-radius: var(--r); overflow: hidden; margin: 2rem 0 0; }
.tip { background: var(--ink-2); padding: 1.2rem 1.35rem; }
.tip h3 { font-size: .98rem; font-family: var(--font-body); font-weight: 600; letter-spacing: 0; margin-bottom: .3rem;
  color: var(--accent); }
.tip p { font-size: .88rem; margin: 0; }

/* ---------- booking ---------- */
.book { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2.2rem, 5vw, 4.5rem); align-items: center; }
@media (max-width: 900px) { .book { grid-template-columns: 1fr; } }
.book__panel { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: clamp(1.5rem, 3.2vw, 2.2rem); }
.book__panel h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.book__panel > p { font-size: .89rem; margin-bottom: 1.4rem; }
.book__rows { display: grid; gap: .7rem; }
.book__row { display: flex; align-items: center; gap: 1rem; padding: .9rem 1.05rem; border-radius: var(--r);
  text-decoration: none; color: var(--on-ink); background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09); transition: all .2s var(--ease); }
.book__row:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.24); transform: translateX(3px); }
.book__row b { font-size: .92rem; font-weight: 600; display: block; }
.book__row span { font-size: .77rem; color: var(--on-ink-mute); }
.book__row svg:last-child { margin-left: auto; width: 16px; height: 16px; opacity: .5; flex: none; }
.book__logo { width: 40px; height: 40px; border-radius: 11px; flex: none;
  display: flex; align-items: center; justify-content: center; line-height: 0; padding: 0; overflow: hidden; }
.book__logo svg { width: 26px; height: 26px; display: block; margin: auto; }
.review-strip { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 1.9rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12); }
.review-strip div b { display: block; font-family: var(--font-display); font-size: 1.6rem; line-height: 1; }
.review-strip div span { font-size: .74rem; color: var(--on-ink-mute); letter-spacing: .08em; text-transform: uppercase; }

/* ---------- next-pages cards ---------- */
.next { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1rem; }
.nextcard { display: flex; flex-direction: column; gap: .5rem; padding: 1.4rem 1.35rem; border-radius: var(--r);
  text-decoration: none; color: var(--on-cream); background: var(--cream);
  border: 1px solid color-mix(in srgb, var(--on-cream) 10%, transparent);
  border-top: 3px solid var(--nb); transition: transform .22s var(--ease), box-shadow .22s var(--ease); }
.nextcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-warm); }
.nextcard b { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  display: flex; align-items: center; gap: .55rem; }
.nextcard b .flag { width: 24px; height: 24px; flex: none; }
.nextcard span { font-size: .85rem; color: var(--on-cream-mute); }

/* ---------- footer ---------- */
.ftr { background: var(--ink); color: var(--on-ink); padding: clamp(3rem, 6vw, 5rem) 0 2rem; border-top: 1px solid var(--ink-4); }
.ftr__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(1.8rem, 4vw, 3rem); margin-bottom: 2.6rem; }
@media (max-width: 860px) { .ftr__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .ftr__grid { grid-template-columns: 1fr; } }
.ftr h4 { font-family: var(--font-body); font-size: .72rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--on-ink-mute); margin-bottom: 1rem; }
.ftr ul { list-style: none; padding: 0; margin: 0; }
.ftr li { margin-bottom: .5rem; }
.ftr a { font-size: .88rem; text-decoration: none; opacity: .82; }
.ftr a:hover { opacity: 1; text-decoration: underline; }
.ftr__bar { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  padding-top: 1.7rem; border-top: 1px solid var(--ink-4); font-size: .79rem; color: var(--on-ink-mute); }
.spectrum-bar { display: flex; height: 4px; border-radius: 2px; overflow: hidden; width: 100%; margin-bottom: 2rem; }
.spectrum-bar i { flex: 1; }
.spectrum-bar i:nth-child(1) { background: var(--red); }
.spectrum-bar i:nth-child(2) { background: var(--orange); }
.spectrum-bar i:nth-child(3) { background: var(--yellow); }
.spectrum-bar i:nth-child(4) { background: var(--green); }
.spectrum-bar i:nth-child(5) { background: var(--cyan); }
.spectrum-bar i:nth-child(6) { background: var(--blue); }
.spectrum-bar i:nth-child(7) { background: var(--violet); }

/* ---------- reveal ---------- */
@media (prefers-reduced-motion: no-preference) {
  .js .rv { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .js .rv.in { opacity: 1; transform: none; }
}

/* ---------- arrival (private) page ---------- */
.wifi { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1px;
  background: var(--ink-4); border-radius: var(--r); overflow: hidden; margin: 1.5rem 0; }
.wifi div { background: var(--ink-2); padding: 1.15rem 1.25rem; }
.wifi span { display: block; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--on-ink-mute); margin-bottom: .4rem; }
.wifi b { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 1.1rem; font-weight: 600; }
.copy-btn { background: none; border: 1px solid rgba(255,255,255,.22); color: var(--on-ink); border-radius: 7px;
  padding: .25rem .6rem; font: inherit; font-size: .72rem; cursor: pointer; margin-left: .5rem; vertical-align: 2px; }
.copy-btn:hover { background: rgba(255,255,255,.09); }
.notice { display: flex; gap: .9rem; padding: 1.05rem 1.25rem; border-radius: var(--r);
  background: color-mix(in srgb, var(--yellow) 11%, transparent);
  border: 1px solid color-mix(in srgb, var(--yellow) 34%, transparent); font-size: .89rem; }
.notice svg { width: 20px; height: 20px; flex: none; color: var(--yellow); margin-top: 2px; }
.arrival-steps { counter-reset: st; list-style: none; padding: 0; margin: 0; }
.arrival-steps > li { counter-increment: st; position: relative; padding: 0 0 1.8rem 3.2rem;
  border-left: 2px solid var(--ink-4); margin-left: 15px; }
.arrival-steps > li:last-child { border-left-color: transparent; padding-bottom: 0; }
.arrival-steps > li::before { content: counter(st); position: absolute; left: -16px; top: -3px; width: 30px;
  height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--ink-3);
  border: 2px solid var(--band, var(--accent)); color: var(--on-ink); font-size: .84rem; font-weight: 700; }
.arrival-steps h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.arrival-steps p { font-size: .91rem; }

/* ---------- transport links ---------- */
.tlinks { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: .7rem; margin-top: 1.6rem; }
.tlink { display: flex; align-items: center; gap: .9rem; padding: .9rem 1.05rem; border-radius: var(--r);
  text-decoration: none; color: inherit; background: color-mix(in srgb, var(--on-cream) 3.5%, transparent);
  border: 1px solid color-mix(in srgb, var(--on-cream) 11%, transparent); transition: all .2s var(--ease); }
.tlink:hover { border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  background: color-mix(in srgb, var(--accent) 7%, transparent); transform: translateY(-2px); }
.tlink--static { cursor: default; }
.tlink--static:hover { transform: none; border-color: color-mix(in srgb, var(--on-cream) 11%, transparent);
  background: color-mix(in srgb, var(--on-cream) 3.5%, transparent); }
.tlink__ico { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center;
  justify-content: center; flex: none; line-height: 0;
  background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--accent); }
.tlink__ico svg { width: 18px; height: 18px; display: block; margin: auto; }
.tlink b { display: block; font-size: .92rem; font-weight: 600; }
.tlink span span { font-size: .79rem; color: var(--on-cream-mute); }
.tlink > svg:last-child { margin-left: auto; width: 15px; height: 15px; opacity: .45; flex: none; }

/* ---------- xhiro: map beside its stop list ---------- */
.trailgrid { display: grid; grid-template-columns: minmax(320px, 460px) 1fr; gap: clamp(1.8rem, 4vw, 3.5rem); align-items: start; }
.trailgrid__map { position: sticky; top: 5.5rem; }
.trailgrid__list h2 { margin-top: 0; }
.trailgrid__list { max-width: 62ch; }
@media (max-width: 900px) {
  .trailgrid { grid-template-columns: 1fr; }
  .trailgrid__map { position: static; max-width: 560px; }
}

/* ---------- article + at-a-glance sidebar ---------- */
.artgrid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
@media (max-width: 900px) { .artgrid { grid-template-columns: 1fr; } }
.facts { padding: 1.5rem 1.5rem 1.4rem; border-radius: var(--r-lg); background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1); position: sticky; top: 5.5rem; }
@media (max-width: 900px) { .facts { position: static; } }
.facts h2 { font-size: .74rem !important; font-family: var(--font-body); font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--accent); margin: 0 0 1.1rem !important; }
.facts dl { margin: 0 0 1.3rem; display: grid; gap: .85rem; }
.facts dl > div { display: grid; gap: .12rem; }
.facts dt { font-size: .74rem; letter-spacing: .09em; text-transform: uppercase; color: var(--on-ink-mute); }
.facts dd { margin: 0; font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; line-height: 1.25; }

/* ---------- the guidebook invitation on the arrival page ---------- */
.guidecard { position: relative; display: flex; align-items: center; gap: 1.1rem;
  padding: 1.35rem 1.4rem 1.35rem 1.5rem; border-radius: var(--r-lg); overflow: hidden;
  text-decoration: none; color: var(--on-ink);
  background: linear-gradient(120deg, color-mix(in srgb, var(--green) 15%, transparent),
                                      color-mix(in srgb, var(--cyan) 8%, transparent));
  border: 1px solid color-mix(in srgb, var(--green) 36%, transparent);
  transition: transform .2s var(--ease), box-shadow .25s var(--ease), border-color .2s; }
.guidecard:hover { transform: translateY(-3px); box-shadow: var(--shadow-deep);
  border-color: color-mix(in srgb, var(--green) 65%, transparent); }
.guidecard__spine { position: absolute; left: 0; top: 0; bottom: 0; width: 7px; display: flex; flex-direction: column; }
.guidecard__spine i { flex: 1; }
.guidecard__spine i:nth-child(1) { background: var(--red); }
.guidecard__spine i:nth-child(2) { background: var(--orange); }
.guidecard__spine i:nth-child(3) { background: var(--yellow); }
.guidecard__spine i:nth-child(4) { background: var(--green); }
.guidecard__spine i:nth-child(5) { background: var(--cyan); }
.guidecard__spine i:nth-child(6) { background: var(--blue); }
.guidecard__spine i:nth-child(7) { background: var(--violet); }
.guidecard__ico { width: 46px; height: 46px; border-radius: 13px; flex: none; display: flex;
  align-items: center; justify-content: center; background: var(--green); color: var(--ink); }
.guidecard__ico svg { width: 24px; height: 24px; display: block; margin: auto; }
.guidecard__txt b { display: block; font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 600; margin-bottom: .15rem; }
.guidecard__txt span { font-size: .88rem; color: color-mix(in srgb, var(--on-ink) 72%, transparent); }
.guidecard__go { margin-left: auto; display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap;
  font-size: .88rem; font-weight: 600; color: var(--ink); background: var(--green);
  padding: .6rem 1.1rem; border-radius: 100px; }
.guidecard__go svg { width: 15px; height: 15px; }
@media (max-width: 700px) { .guidecard { flex-wrap: wrap; } .guidecard__go { margin-left: 0; width: 100%; justify-content: center; } }

/* ---------- arrival checklist ---------- */
.checks { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1px;
  background: var(--ink-4); border-radius: var(--r-lg); overflow: hidden; }
.checks > li { display: flex; gap: 1rem; padding: 1.3rem 1.35rem; background: var(--ink-2); margin: 0; }
.check__ico { width: 36px; height: 36px; border-radius: 11px; flex: none; display: flex;
  align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--accent) 18%, transparent); color: var(--accent); }
.check__ico svg { width: 19px; height: 19px; display: block; margin: auto; }
.checks h3 { font-size: 1.02rem; margin: 0 0 .25rem; }
.checks p { font-size: .92rem; margin: 0; }

.btn--lg { padding: 1rem 1.7rem; font-size: 1rem; }
.btn--lg svg { width: 19px; height: 19px; }
