/* =========================================================
   THE CEYLON JOURNAL — by Ceylon on My Terms
   Same palette + type as nordceylon.com:
   Ocean Deep #0A4F5C · Spice Gold #D4A574 · Sunset Coral #E07856
   Cream #F5F0E8 · Ink #1A2B33 — Fraunces + Inter
   ========================================================= */

:root {
  --ocean: #0A4F5C;
  --ocean-deep: #073A44;
  --ocean-mist: #B8CDD0;
  --gold: #D4A574;
  --gold-soft: #E8CCA6;
  --coral: #E07856;
  --cream: #F5F0E8;
  --cream-warm: #EDE5D6;
  --ink: #1A2B33;
  --ink-soft: #4A5C66;
  --white: #FDFCFA;
  --line: rgba(26, 43, 51, 0.12);
  --accent: var(--ocean);            /* links, eyebrows — flips to gold in dark */
  --shadow-sm: 0 1px 2px rgba(7, 58, 68, 0.06), 0 2px 8px rgba(7, 58, 68, 0.04);
  --shadow-md: 0 4px 12px rgba(7, 58, 68, 0.08), 0 12px 32px rgba(7, 58, 68, 0.06);
  --shadow-lg: 0 12px 32px rgba(7, 58, 68, 0.12), 0 24px 64px rgba(7, 58, 68, 0.08);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --gutter: 2rem;
}

[data-theme="dark"] {
  --cream: #0E1A1F;
  --cream-warm: #172631;
  --white: #182A32;
  --ink: #E8E5DD;
  --ink-soft: #A8B4B8;
  --ocean-mist: #4A6E75;
  --line: rgba(255, 255, 255, 0.08);
  --accent: var(--gold);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.3), 0 2px 8px rgba(0,0,0,.2);
  --shadow-md: 0 4px 12px rgba(0,0,0,.4), 0 12px 32px rgba(0,0,0,.3);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.5), 0 24px 64px rgba(0,0,0,.4);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { max-width: 100%; overflow-x: clip; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color .25s var(--ease-out), color .25s var(--ease-out);
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Bilingual switch ----------
   Every translatable block exists twice: data-l="en" and data-l="sv".
   The <html data-lang> attribute decides which one shows. No flash:
   the head script sets data-lang before first paint. */
html[data-lang="sv"] [data-l="en"],
html[data-lang="en"] [data-l="sv"] { display: none !important; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: 760px; }
@media (max-width: 720px) { :root { --gutter: 1rem; } }

.eyebrow {
  font-size: .76rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); display: inline-flex; align-items: center; gap: .6rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold); flex: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display); font-weight: 400; color: var(--ink);
  letter-spacing: -0.01em; line-height: 1.15;
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 300; color: var(--coral); }

/* =========================================================
   Buttons (same as main site)
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.5rem; font-size: .92rem; font-weight: 500; border-radius: 999px;
  border: 1px solid transparent; white-space: nowrap; min-height: 44px;
  transition: all .25s var(--ease-out);
}
.btn svg { width: 16px; height: 16px; flex: none; transition: transform .25s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }
.btn-primary { background: var(--ocean); color: #FDFCFA; }
.btn-primary:hover { background: var(--ocean-deep); transform: translateY(-1px); box-shadow: var(--shadow-md); }
[data-theme="dark"] .btn-primary { background: var(--gold); color: var(--ocean-deep); }
[data-theme="dark"] .btn-primary:hover { background: var(--gold-soft); }
.btn-gold { background: var(--gold); color: var(--ocean-deep); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-secondary:hover { background: var(--ink); color: var(--cream); }
.btn-ghost-light { color: #FDFCFA; border-color: rgba(255,255,255,.45); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* =========================================================
   Navigation — same structure as nordceylon.com
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 150;
  background: rgba(245, 240, 232, 0.86);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
[data-theme="dark"] .nav { background: rgba(14, 26, 31, 0.86); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 1rem 0; }
.nav-panel { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex: 1 1 auto; min-width: 0; }

.brand {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 500;
  letter-spacing: -0.02em; color: var(--ocean); display: flex; align-items: center; gap: .6rem;
}
[data-theme="dark"] .brand { color: #FDFCFA; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 50%; position: relative; overflow: hidden; flex-shrink: 0;
  background: radial-gradient(circle at 30% 30%, var(--gold) 0%, var(--coral) 50%, var(--ocean) 100%);
}
.brand-mark::after { content: ""; position: absolute; inset: 6px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4); }
.brand-mark img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.brand-mark:has(img) { background: transparent; }
.brand-mark:has(img)::after { display: none; }
.brand-lockup { display: flex; flex-direction: column; line-height: 1; }
.brand-lockup .brand-name { white-space: nowrap; }
.brand em { font-style: italic; color: var(--coral); font-weight: 300; margin-left: .3em; }
.brand-tagline {
  display: block; margin-top: .3rem; font-family: var(--font-body); font-size: .56rem; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft);
}
.brand-tagline b { color: var(--gold); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  font-size: .9rem; font-weight: 500; white-space: nowrap; color: var(--ink); position: relative;
  transition: color .2s var(--ease-out);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a.is-active::after { transform: scaleX(1); }
.nav-links a.is-active { color: var(--accent); }
.nav-links .ext::after { display: none; }
.nav-links .ext svg { width: 11px; height: 11px; display: inline; vertical-align: 1px; margin-left: 3px; opacity: .6; }

.nav-actions { display: flex; align-items: center; gap: .9rem; flex-shrink: 0; }

.socials { display: inline-flex; gap: .4rem; align-items: center; }
.social-icon {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); background: var(--white);
  display: grid; place-items: center; color: var(--ink-soft);
  transition: color .2s var(--ease-out), background .2s var(--ease-out), border-color .2s var(--ease-out), transform .2s var(--ease-out);
}
.social-icon svg { width: 15px; height: 15px; fill: currentColor; }
.social-icon:hover { color: #fff; transform: translateY(-2px); }
.social-icon[data-net="facebook"]:hover { background: #1877F2; border-color: #1877F2; }
.social-icon[data-net="instagram"]:hover { background: linear-gradient(45deg,#F58529,#DD2A7B,#8134AF); border-color: #DD2A7B; }
.social-icon[data-net="youtube"]:hover { background: #FF0000; border-color: #FF0000; }
.social-icon[data-net="tiktok"]:hover { background: #010101; border-color: #010101; }

.theme-toggle {
  position: relative; width: 52px; height: 28px; border-radius: 999px; background: var(--cream-warm);
  border: 1px solid var(--line); padding: 0; display: inline-flex; align-items: center; flex-shrink: 0;
}
.theme-toggle-knob {
  position: absolute; top: 2px; left: 2px; width: 22px; height: 22px; border-radius: 50%;
  background: var(--white); box-shadow: 0 1px 3px rgba(0,0,0,.2); display: grid; place-items: center;
  transition: transform .28s var(--ease-out), background .28s;
}
.theme-toggle-knob svg { width: 12px; height: 12px; fill: var(--ocean); stroke: var(--ocean); stroke-width: 2; }
[data-theme="dark"] .theme-toggle { background: var(--ocean-deep); border-color: rgba(255,255,255,.15); }
[data-theme="dark"] .theme-toggle-knob { transform: translateX(22px); background: var(--gold); }
[data-theme="dark"] .theme-toggle-knob svg { fill: var(--ocean-deep); stroke: var(--ocean-deep); }

.lang-switch { display: flex; border: 1px solid var(--line); border-radius: 999px; padding: 3px; background: var(--white); }
.lang-btn { padding: .3rem .75rem; font-size: .75rem; font-weight: 600; letter-spacing: .06em; border-radius: 999px; color: var(--ink-soft); min-height: 30px; }
.lang-btn.active { background: var(--ocean); color: #FDFCFA; }
[data-theme="dark"] .lang-btn.active { background: var(--gold); color: var(--ocean-deep); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  width: 44px; height: 44px; border-radius: 8px; flex-shrink: 0;
}
.nav-toggle-bar { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease-out), opacity .2s; }
.nav.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.read-progress {
  position: absolute; left: 0; bottom: -1px; height: 2px; width: 100%;
  background: linear-gradient(90deg, var(--gold), var(--coral));
  transform-origin: left; transform: scaleX(0);
}

@media (min-width: 1181px) and (max-width: 1240px) {
  .nav-links { gap: 1.1rem; }
  .nav-links a { font-size: .84rem; }
  .nav-actions .socials { display: none; }
}
@media (max-width: 1180px) {
  .nav-inner { flex-wrap: wrap; gap: .75rem; }
  .nav-toggle { display: flex; }
  .nav-panel {
    flex-basis: 100%; flex-direction: column; align-items: stretch; gap: 0;
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height .32s var(--ease-out), opacity .25s var(--ease-out);
  }
  .nav.nav-open .nav-panel { max-height: min(78dvh, 680px); overflow-y: auto; opacity: 1; padding-bottom: 1.25rem; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; padding-top: .5rem; }
  .nav-links a { padding: .9rem .1rem; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-links a::after { display: none; }
  .nav-actions { flex-wrap: wrap; justify-content: center; gap: .85rem; padding-top: 1.25rem; }
  .nav-actions .btn { flex: 1 1 100%; }
}
@media (max-width: 420px) {
  .brand { font-size: 1.15rem; }
  .brand-tagline { font-size: .5rem; letter-spacing: .16em; }
}

/* =========================================================
   JOURNAL HOME
   ========================================================= */

/* ---- Hero (video) ---- */
.j-hero {
  position: relative; min-height: min(88vh, 820px); display: flex; align-items: flex-end;
  color: #FDFCFA; overflow: hidden; isolation: isolate;
  background: radial-gradient(120% 90% at 15% 0%, #0f6a7a 0%, transparent 60%),
              linear-gradient(160deg, var(--ocean-deep) 0%, #021519 100%);
}
.j-hero-media { position: absolute; inset: 0; z-index: -2; }
.j-hero-media video, .j-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.j-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(2,21,25,.35) 0%, rgba(2,21,25,.1) 35%, rgba(2,21,25,.85) 100%);
}
.j-hero-inner { padding-block: 7rem 4.5rem; width: 100%; }
.j-hero .eyebrow { color: var(--gold); }
.j-hero h1 {
  color: #FDFCFA; font-size: clamp(2.6rem, 7.5vw, 6rem); line-height: .98; letter-spacing: -0.03em;
  margin: 1.25rem 0 1.4rem; max-width: 14ch;
}
.j-hero h1 em { color: var(--gold); }
.j-hero-sub { font-size: clamp(1rem, 1.7vw, 1.2rem); max-width: 52ch; color: rgba(255,255,255,.82); line-height: 1.65; }
.j-hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }
.j-hero-meta {
  display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 3.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.18); font-size: .8rem; color: rgba(255,255,255,.7);
}
.j-hero-meta strong { display: block; font-family: var(--font-display); font-size: 1.7rem; font-weight: 400; color: #fff; line-height: 1.1; }
.j-hero-scroll {
  position: absolute; right: var(--gutter); bottom: 2rem; writing-mode: vertical-rl; font-size: .68rem;
  letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.6);
  display: flex; align-items: center; gap: .8rem;
}
.j-hero-scroll::after { content: ""; width: 1px; height: 48px; background: linear-gradient(var(--gold), transparent); animation: drip 2.2s ease-in-out infinite; }
@keyframes drip { 0%,100% { transform: scaleY(.3); transform-origin: top; } 50% { transform: scaleY(1); } }
@media (max-width: 720px) {
  .j-hero { min-height: 82svh; }
  .j-hero-inner { padding-block: 5rem 2.5rem; }
  .j-hero-meta { gap: 1.5rem 2rem; margin-top: 2.25rem; }
  .j-hero-meta strong { font-size: 1.35rem; }
  .j-hero-scroll { display: none; }
  .j-hero-actions .btn { flex: 1 1 auto; }
}

/* ---- Ticker of places ---- */
.j-ticker { background: var(--ocean-deep); color: var(--gold-soft); overflow: hidden; border-block: 1px solid rgba(212,165,116,.25); }
.j-ticker-track { display: flex; width: max-content; animation: tick 60s linear infinite; }
.j-ticker span { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; padding: .85rem 1.4rem; white-space: nowrap; display: flex; align-items: center; gap: 1.4rem; }
.j-ticker span::after { content: "✦"; font-style: normal; font-size: .6rem; color: var(--coral); }
@keyframes tick { to { transform: translateX(-50%); } }

/* ---- Section heads ---- */
.j-section { padding-block: 5.5rem; }
.j-section-alt { background: var(--white); border-block: 1px solid var(--line); }
.j-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.75rem; }
.j-head h2 { font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -0.02em; margin-top: 1rem; }
.j-head p { color: var(--ink-soft); max-width: 46ch; }
@media (max-width: 720px) { .j-section { padding-block: 3.75rem; } .j-head { margin-bottom: 2rem; } }

/* ---- Featured story ---- */
.j-feature {
  display: grid; grid-template-columns: 1.25fr 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-md);
}
.j-feature-media { position: relative; min-height: 460px; background: linear-gradient(135deg, var(--ocean), var(--ocean-deep)); overflow: hidden; }
.j-feature-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.j-feature:hover .j-feature-media img { transform: scale(1.04); }
.j-feature-body { padding: clamp(1.75rem, 4vw, 3.5rem); display: flex; flex-direction: column; justify-content: center; gap: 1.1rem; }
.j-feature-body h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.08; letter-spacing: -0.02em; }
.j-feature-body p { color: var(--ink-soft); font-size: 1.02rem; }
.j-badge {
  position: absolute; top: 1.25rem; left: 1.25rem; z-index: 2; background: var(--coral); color: #fff;
  font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: .45rem .8rem; border-radius: 999px;
}
@media (max-width: 880px) {
  .j-feature { grid-template-columns: 1fr; }
  .j-feature-media { min-height: 0; aspect-ratio: 16/10; }
}

.meta { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem .9rem; font-size: .8rem; color: var(--ink-soft); }
.meta .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: .6; }
.cat-pill {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .7rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--accent);
}
.cat-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cat, var(--gold)); }

/* ---- Filter chips ---- */
.j-filters { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.25rem; }
.j-chip {
  padding: .55rem 1.05rem; border-radius: 999px; border: 1px solid var(--line); background: var(--white);
  font-size: .85rem; font-weight: 500; color: var(--ink-soft); min-height: 40px;
  transition: all .2s var(--ease-out);
}
.j-chip:hover { border-color: var(--accent); color: var(--ink); }
.j-chip.active { background: var(--ocean); border-color: var(--ocean); color: #FDFCFA; }
[data-theme="dark"] .j-chip.active { background: var(--gold); border-color: var(--gold); color: var(--ocean-deep); }
.j-chip .n { opacity: .6; margin-left: .3rem; font-size: .78em; }
@media (max-width: 720px) {
  .j-filters { flex-wrap: nowrap; overflow-x: auto; margin-inline: calc(-1 * var(--gutter)); padding: 0 var(--gutter) .4rem; scrollbar-width: none; }
  .j-filters::-webkit-scrollbar { display: none; }
  .j-chip { flex: none; }
}

/* ---- Article cards ---- */
.j-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.25rem 1.75rem; }
@media (max-width: 1000px) { .j-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .j-grid { grid-template-columns: 1fr; gap: 2rem; } }

.j-card { display: flex; flex-direction: column; gap: 1rem; }
.j-card[hidden] { display: none; }
.j-card-media {
  position: relative; aspect-ratio: 4/3; border-radius: var(--radius-md); overflow: hidden;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-deep) 100%);
}
.j-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.j-card:hover .j-card-media img { transform: scale(1.06); }
.j-card-media .read {
  position: absolute; right: .8rem; bottom: .8rem; background: rgba(7,58,68,.7); backdrop-filter: blur(8px);
  color: #fff; font-size: .72rem; font-weight: 600; padding: .3rem .65rem; border-radius: 999px;
}
.j-card h3 { font-size: 1.4rem; line-height: 1.2; transition: color .2s; }
.j-card:hover h3 { color: var(--accent); }
.j-card p { color: var(--ink-soft); font-size: .93rem; line-height: 1.6; }
.j-card .more { font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); margin-top: auto; }

/* image fallback — a missing file leaves a branded gradient, not a broken icon */
.img-fallback { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.45); font-family: var(--font-display); font-style: italic; font-size: 1.1rem; text-align: center; padding: 1rem; }
.img-fallback::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent 0 20px, rgba(255,255,255,.035) 20px 21px); }

/* ---- When to go (month planner) ---- */
.wtg { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
@media (max-width: 900px) { .wtg { grid-template-columns: 1fr; gap: 2rem; } }
.wtg-months { display: grid; grid-template-columns: repeat(6, 1fr); gap: .45rem; margin-top: 1.75rem; }
.wtg-m {
  padding: .75rem 0; border-radius: var(--radius-sm); border: 1px solid var(--line); background: var(--cream);
  font-size: .82rem; font-weight: 600; color: var(--ink-soft); min-height: 44px;
  transition: all .2s var(--ease-out);
}
.wtg-m:hover { border-color: var(--accent); color: var(--ink); }
.wtg-m.active { background: var(--ocean); border-color: var(--ocean); color: #fff; }
[data-theme="dark"] .wtg-m.active { background: var(--gold); border-color: var(--gold); color: var(--ocean-deep); }
.wtg-panel { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.25rem, 3vw, 2.25rem); }
.wtg-panel h3 { font-size: 1.9rem; margin-bottom: .35rem; }
.wtg-note { color: var(--ink-soft); font-size: .95rem; margin-bottom: 1.4rem; }
.wtg-regions { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; }
@media (max-width: 480px) { .wtg-regions { grid-template-columns: 1fr; } .wtg-months { grid-template-columns: repeat(4, 1fr); } }
.wtg-r { padding: 1rem 1.1rem; border-radius: var(--radius-md); background: var(--white); border: 1px solid var(--line); }
.wtg-r .lbl { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }
.wtg-r .val { display: flex; align-items: center; gap: .5rem; font-family: var(--font-display); font-size: 1.15rem; margin-top: .3rem; }
.wtg-r .bar { height: 4px; border-radius: 4px; background: var(--line); margin-top: .7rem; overflow: hidden; }
.wtg-r .bar i { display: block; height: 100%; border-radius: 4px; transition: width .5s var(--ease-out), background .3s; }
.wtg-good i { background: #5C9E7C; } .wtg-ok i { background: var(--gold); } .wtg-wet i { background: var(--coral); }
.wtg-hl { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.wtg-hl span { font-size: .8rem; padding: .35rem .75rem; border-radius: 999px; background: rgba(212,165,116,.16); color: var(--ink); }

/* ---- Photo mosaic ---- */
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: .6rem; }
.mosaic figure { position: relative; border-radius: var(--radius-md); overflow: hidden; background: linear-gradient(135deg, var(--ocean), var(--ocean-deep)); cursor: zoom-in; }
.mosaic figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mosaic figure:nth-child(6) { grid-column: span 2; }
.mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.mosaic figure:hover img { transform: scale(1.05); }
.mosaic figcaption {
  position: absolute; inset: auto 0 0 0; padding: 2rem .9rem .8rem; font-size: .8rem; color: #fff;
  background: linear-gradient(transparent, rgba(2,21,25,.8)); opacity: 0; transform: translateY(6px);
  transition: all .3s var(--ease-out);
}
.mosaic figure:hover figcaption { opacity: 1; transform: none; }
@media (max-width: 800px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .mosaic figure:nth-child(6) { grid-column: span 1; }
  .mosaic figcaption { opacity: 1; transform: none; }
}

/* ---- Plan band ---- */
.plan-band {
  position: relative; overflow: hidden; color: #FDFCFA;
  background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-deep) 100%);
  padding-block: 5rem;
}
.plan-band::before {
  content: ""; position: absolute; top: -50%; right: -10%; width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(212,165,116,.18) 0%, transparent 60%); pointer-events: none;
}
.plan-band-inner { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
.plan-band h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.8rem); max-width: 20ch; }
.plan-band h2 em { color: var(--gold); }
.plan-band p { color: rgba(255,255,255,.75); max-width: 50ch; margin-top: .75rem; }
.plan-band .actions { display: flex; gap: .8rem; flex-wrap: wrap; }
@media (max-width: 620px) { .plan-band { padding-block: 3.5rem; } .plan-band .actions .btn { flex: 1 1 100%; } }

/* =========================================================
   ARTICLE PAGE
   ========================================================= */
.a-hero {
  position: relative; min-height: min(86vh, 760px); display: flex; align-items: flex-end; color: #fff;
  isolation: isolate; overflow: hidden;
  background: linear-gradient(160deg, var(--ocean) 0%, var(--ocean-deep) 60%, #021519 100%);
}
.a-hero-media { position: absolute; inset: 0; z-index: -2; }
.a-hero-media img, .a-hero-media video { width: 100%; height: 100%; object-fit: cover; }
.a-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(2,21,25,.25) 0%, rgba(2,21,25,.05) 30%, rgba(2,21,25,.9) 100%);
}
.a-hero-inner { padding-block: 6rem 3.5rem; width: 100%; }
.a-crumbs { font-size: .8rem; color: rgba(255,255,255,.7); display: flex; gap: .5rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.a-crumbs a:hover { color: var(--gold); }
.a-hero .cat-pill { color: var(--gold); }
.a-hero h1 { color: #fff; font-size: clamp(2.3rem, 6vw, 4.6rem); line-height: 1.02; letter-spacing: -0.025em; max-width: 18ch; margin: 1rem 0 1.25rem; }
.a-hero h1 em { color: var(--gold); }
.a-dek { font-size: clamp(1.02rem, 1.8vw, 1.25rem); color: rgba(255,255,255,.85); max-width: 56ch; line-height: 1.6; }
.a-hero .meta { color: rgba(255,255,255,.72); margin-top: 1.75rem; }
.a-credit { position: absolute; right: var(--gutter); bottom: 1rem; font-size: .7rem; color: rgba(255,255,255,.55); font-style: italic; }
@media (max-width: 720px) { .a-hero { min-height: 78svh; } .a-hero-inner { padding-block: 4.5rem 2.5rem; } .a-credit { display: none; } }

.a-layout { display: grid; grid-template-columns: 220px minmax(0, 720px) 1fr; gap: 3.5rem; padding-block: 4.5rem 2rem; }
@media (max-width: 1180px) { .a-layout { grid-template-columns: minmax(0, 720px); justify-content: center; gap: 0; } .a-aside { display: none; } }
@media (max-width: 720px) { .a-layout { padding-block: 2.75rem 1rem; } }

.a-aside { position: sticky; top: 110px; align-self: start; font-size: .85rem; }
.a-aside h4 { font-family: var(--font-body); font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 1rem; }
.toc { list-style: none; border-left: 1px solid var(--line); }
.toc a { display: block; padding: .45rem 0 .45rem 1rem; margin-left: -1px; border-left: 2px solid transparent; color: var(--ink-soft); line-height: 1.4; transition: all .2s; }
.toc a:hover { color: var(--ink); }
.toc a.active { color: var(--accent); border-left-color: var(--accent); }
.a-share { margin-top: 2rem; display: flex; gap: .4rem; }
.a-share button, .a-share a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink-soft); background: var(--white); transition: all .2s; }
.a-share button:hover, .a-share a:hover { color: var(--accent); border-color: var(--accent); }
.a-share svg { width: 15px; height: 15px; }

/* ---- Prose ---- */
.prose { font-size: 1.1rem; line-height: 1.8; color: var(--ink); min-width: 0; }
.prose > * + * { margin-top: 1.4rem; }
.prose .lede { font-size: 1.28rem; line-height: 1.65; font-family: var(--font-display); font-weight: 300; color: var(--ink); }
.prose .lede::first-letter {
  float: left; font-family: var(--font-display); font-size: 4.6rem; line-height: .82; font-weight: 400;
  margin: .45rem .7rem 0 0; color: var(--coral);
}
.prose h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin-top: 3.25rem; scroll-margin-top: 100px; letter-spacing: -0.015em; }
.prose h2 + p { margin-top: 1rem; }
.prose h3 { font-size: 1.35rem; margin-top: 2.25rem; }
.prose p { color: var(--ink); }
.prose a:not(.btn) { color: var(--accent); border-bottom: 1px solid rgba(212,165,116,.5); transition: border-color .2s; }
.prose a:not(.btn):hover { border-bottom-color: var(--coral); }
.prose strong { font-weight: 600; }
.prose ul, .prose ol { padding-left: 1.25rem; }
.prose li + li { margin-top: .55rem; }
.prose li::marker { color: var(--gold); }
@media (max-width: 720px) {
  .prose { font-size: 1.04rem; line-height: 1.75; }
  .prose .lede { font-size: 1.15rem; }
  .prose .lede::first-letter { font-size: 3.7rem; }
}

.prose figure { margin-block: 2.5rem; }
.prose figure.wide { margin-inline: calc(-1 * min(8vw, 120px)); }
@media (max-width: 1000px) { .prose figure.wide { margin-inline: 0; } }
.fig-media { position: relative; border-radius: var(--radius-md); overflow: hidden; background: linear-gradient(135deg, var(--ocean), var(--ocean-deep)); aspect-ratio: 3/2; cursor: zoom-in; }
.fig-media img, .fig-media video { width: 100%; height: 100%; object-fit: cover; }
.fig-media.video { cursor: default; aspect-ratio: 16/9; }
.prose figcaption { font-size: .84rem; color: var(--ink-soft); margin-top: .75rem; line-height: 1.5; padding-left: .9rem; border-left: 2px solid var(--gold); }
.fig-pair { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.fig-pair .fig-media { aspect-ratio: 4/5; }
@media (max-width: 520px) { .fig-pair .fig-media { aspect-ratio: 3/4; } }

.pull {
  font-family: var(--font-display); font-size: clamp(1.45rem, 3vw, 1.95rem); font-style: italic; font-weight: 300;
  line-height: 1.35; color: var(--accent); padding: 1.75rem 0; margin-block: 2.5rem !important;
  border-block: 1px solid var(--line); position: relative;
}
.pull::before { content: "“"; position: absolute; top: -.45rem; left: 0; font-size: 4rem; line-height: 1; color: var(--coral); font-style: normal; background: var(--cream); padding-right: .5rem; }

.facts { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 1.5rem 1.6rem; margin-block: 2.5rem !important; }
.facts h4 { font-family: var(--font-body); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.facts dl { display: grid; grid-template-columns: max-content 1fr; gap: .6rem 1.5rem; font-size: .95rem; line-height: 1.5; }
.facts dt { color: var(--ink-soft); font-weight: 500; }
.facts dd { color: var(--ink); }
@media (max-width: 520px) { .facts dl { grid-template-columns: 1fr; gap: .15rem; } .facts dd { margin-bottom: .7rem; } }

.tip { display: flex; gap: 1rem; padding: 1.25rem 1.4rem; border-radius: var(--radius-md); background: rgba(212,165,116,.12); border: 1px solid rgba(212,165,116,.35); font-size: .98rem; line-height: 1.65; margin-block: 2rem !important; }
.tip-ico { flex: none; width: 34px; height: 34px; border-radius: 50%; background: var(--gold); color: var(--ocean-deep); display: grid; place-items: center; font-family: var(--font-display); font-style: italic; font-weight: 600; }
.tip [data-l] > strong:first-child { display: block; margin-bottom: .2rem; }

/* ---- Package CTA (the whole point of each story) ---- */
.pkg-cta {
  display: grid; grid-template-columns: 240px 1fr; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--ocean-deep); color: #FDFCFA; margin-block: 3rem !important; box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212,165,116,.25);
}
[data-theme="dark"] .pkg-cta { background: #0A2F37; }
.pkg-cta-media { position: relative; min-height: 220px; background: linear-gradient(135deg, var(--ocean), #021519); }
.pkg-cta-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pkg-cta-body { padding: 1.6rem 1.75rem; display: flex; flex-direction: column; gap: .6rem; }
.pkg-cta-kicker { font-size: .68rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.pkg-cta h3 { color: #fff; font-size: 1.5rem; line-height: 1.2; }
.pkg-cta p { color: rgba(255,255,255,.75); font-size: .93rem; line-height: 1.6; }
.pkg-cta-meta { display: flex; flex-wrap: wrap; gap: .4rem; margin: .2rem 0 .4rem; }
.pkg-cta-meta span { font-size: .75rem; padding: .25rem .65rem; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.85); }
.pkg-cta .btn { align-self: flex-start; margin-top: .3rem; }
@media (max-width: 620px) {
  .pkg-cta { grid-template-columns: 1fr; }
  .pkg-cta-media { min-height: 0; aspect-ratio: 16/9; }
  .pkg-cta .btn { align-self: stretch; }
}

/* ---- End-of-article package rail ---- */
.pkg-rail { padding-block: 4rem; background: var(--white); border-block: 1px solid var(--line); }
.pkg-rail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr)); gap: 1.25rem; }
.pkg-card {
  display: flex; flex-direction: column; border-radius: var(--radius-md); overflow: hidden; background: var(--cream);
  border: 1px solid var(--line); transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pkg-card-media { position: relative; aspect-ratio: 16/10; background: linear-gradient(135deg, var(--ocean), var(--ocean-deep)); overflow: hidden; }
.pkg-card-media img { width: 100%; height: 100%; object-fit: cover; }
.pkg-card-body { padding: 1.25rem 1.35rem 1.4rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.pkg-card h3 { font-size: 1.25rem; line-height: 1.25; }
.pkg-card .dur { font-size: .8rem; color: var(--ink-soft); }
.pkg-card .go { margin-top: auto; padding-top: .6rem; font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: .4rem; }
.pkg-card .go svg { width: 14px; height: 14px; transition: transform .25s; }
.pkg-card:hover .go svg { transform: translate(2px, -2px); }

.a-next { padding-block: 4.5rem; }

/* ---- Lightbox ---- */
.lb { position: fixed; inset: 0; z-index: 400; background: rgba(2,15,18,.94); display: grid; place-items: center; padding: 1rem; opacity: 0; pointer-events: none; transition: opacity .3s var(--ease-out); }
.lb.open { opacity: 1; pointer-events: auto; }
.lb img { max-width: min(1400px, 100%); max-height: 84vh; border-radius: var(--radius-sm); object-fit: contain; }
.lb-cap { color: rgba(255,255,255,.75); font-size: .9rem; text-align: center; margin-top: .9rem; max-width: 70ch; }
.lb-close { position: absolute; top: 1rem; right: 1rem; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; display: grid; place-items: center; }
.lb-close svg { width: 18px; height: 18px; }

/* =========================================================
   Footer — same style as nordceylon.com, no payment badges
   ========================================================= */
footer { background: #0A1A20; color: rgba(255,255,255,.7); padding-block: 4rem 2rem; }
[data-theme="dark"] footer { background: #04090C; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.25rem; } .footer-brand { grid-column: 1 / -1; } }
.footer-brand .brand { color: #FDFCFA; margin-bottom: 1rem; }
.footer-brand .brand-tagline { color: rgba(255,255,255,.5); }
.footer-brand p { max-width: 300px; font-size: .9rem; }
footer h4 { color: #FDFCFA; font-family: var(--font-body); font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.25rem; }
footer ul { list-style: none; }
footer li { margin-bottom: .6rem; }
footer a { font-size: .9rem; color: rgba(255,255,255,.7); transition: color .2s; }
footer a:hover { color: var(--gold); }
.footer-socials-block { margin-top: 1.5rem; }
.footer-socials-block h4 { margin-bottom: .85rem; }
.socials.large .social-icon { width: 40px; height: 40px; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.75); }
.socials.large .social-icon svg { width: 18px; height: 18px; }
.footer-bottom { padding-top: 2rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: .82rem; color: rgba(255,255,255,.5); }

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

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

@media print {
  .nav, footer, .a-aside, .pkg-rail, .a-next, .lb { display: none !important; }
  .a-hero { min-height: 0; color: #000; }
}

/* ---- Bilingual wrappers inside prose keep paragraph rhythm ---- */
.prose [data-l] > * + * { margin-top: 1.4rem; }
.prose ul[data-l] > li + li { margin-top: .55rem; }
.a-dek { margin-top: 0; }
.wtg-intro { color: var(--ink-soft); margin-top: 1rem; max-width: 48ch; }

/* ---- Nav fit: socials live in the footer below 1480px ---- */
.brand-tagline { white-space: nowrap; }
@media (min-width: 1181px) and (max-width: 1480px) {
  .nav-actions .socials { display: none; }
  .nav-links { gap: 1.25rem; }
  .nav-panel { gap: 1.25rem; }
}

