/* ================================================================
   Trasa Marzeń — "Okno na Południe" (design B)
   Plain CSS (no SCSS). Mounted by rake themes:sync_views.
   ================================================================ */

:root {
  --stone: #e8d5b7;
  --stone-pale: #f4e8d3;
  --stone-cream: #faf4e8;
  --lime: #fbfaf3;
  --indigo: #1e2a4a;
  --indigo-deep: #141e38;
  --indigo-soft: #2d3b60;
  --terracotta: #c85a3a;
  --terracotta-dark: #8f3f26;
  --olive: #6b7a3b;
  --olive-dark: #4a5527;
  --sea: #3a6b8f;
  --sea-deep: #1f4560;
  --sea-pale: #78a5c2;
  --sea-foam: #c8e0ec;
  --gold: #b88a3e;
  --sun: #e8b050;
  --shadow: rgba(20, 30, 56, 0.08);
  --shadow-deep: rgba(20, 30, 56, 0.18);

  --font-display: "Cormorant SC", "Cormorant Garamond", Georgia, serif;
  --font-ui: "Inter", -apple-system, system-ui, sans-serif;
  --font-italic: "Instrument Serif", Georgia, serif;

  --max: 1280px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);
}

/* ============== Base overrides for grid.css neutral reset ============== */

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  color: var(--indigo-deep);
  background: var(--stone-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 10%, rgba(184, 138, 62, 0.035) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 90%, rgba(200, 90, 58, 0.025) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

main, header, footer { position: relative; z-index: 2; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ============== Typography scale ============== */

.display-xl {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.025em;
  color: var(--indigo);
}

.display-l {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.5rem, 5.5vw, 4.75rem);
  line-height: 1;
  letter-spacing: 0.025em;
  color: var(--indigo);
}

.display-m {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.2vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--indigo);
}

.italic {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.eyebrow-indigo { color: var(--indigo-soft); }

.lede {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.5;
  color: var(--indigo-soft);
  max-width: 54ch;
}

/* ============== Buttons ============== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: var(--indigo);
  color: var(--stone-cream);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--indigo);
  transition: all .3s;
  cursor: pointer;
}

.btn:hover { background: var(--terracotta); border-color: var(--terracotta); }

.btn-ghost {
  background: transparent;
  color: var(--indigo);
  border-color: rgba(30, 42, 74, 0.3);
}

.btn-ghost:hover { background: var(--indigo); color: var(--stone-cream); }

.btn svg { width: 14px; height: 14px; }

/* ============== Header / Nav ============== */

.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 244, 232, 0.92);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid rgba(30, 42, 74, 0.08);
  z-index: 50;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.1rem;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark { width: 36px; height: 42px; flex: none; }

.brand-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--indigo);
  line-height: 1;
}

.brand-text small {
  display: block;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.7rem;
  color: var(--terracotta);
  letter-spacing: 0.02em;
  margin-top: 2px;
  text-transform: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links > li { list-style: none; }

.nav-links a,
.nav-links button.nav-dropdown-trigger {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--indigo);
  padding-block: 0.4rem;
  position: relative;
  transition: color .25s;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.nav-links a:hover { color: var(--terracotta); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-links li.active a { color: var(--terracotta); }
.nav-links li.active a::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }

.nav-dropdown-arrow { font-size: 0.7em; margin-left: 0.25rem; }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: rgba(250, 244, 232, 0.98);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(30, 42, 74, 0.12);
  padding: 0.75rem 0;
  box-shadow: 0 20px 40px -20px var(--shadow-deep);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all .2s ease;
  z-index: 60;
}

.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.78rem;
  font-family: var(--font-ui);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--indigo);
}

.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { color: var(--terracotta); background: rgba(200, 90, 58, 0.06); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--indigo);
  padding: 0.5rem 0.8rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--indigo);
  cursor: pointer;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  background: var(--stone-cream);
  border-top: 1px solid rgba(30, 42, 74, 0.1);
  padding: 1.25rem 0 2rem;
}

.nav-mobile.open { display: block; }

.nav-mobile-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.nav-mobile-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: 1rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px dotted rgba(30,42,74,0.2);
}

.nav-mobile-link {
  padding: 0.6rem 0;
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: var(--indigo);
  letter-spacing: 0.05em;
}

.nav-mobile-link:hover { color: var(--terracotta); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* ============== Breadcrumb ============== */

.breadcrumb {
  padding-top: 1.5rem;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--indigo-soft);
  display: flex;
  gap: 0.75rem;
  align-items: center;
  text-transform: uppercase;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--indigo-soft); transition: color .2s; }
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb span.sep { opacity: 0.4; }
.breadcrumb span.current { color: var(--terracotta); }

.breadcrumb-alt {
  margin-left: auto;
  font-family: var(--font-italic);
  font-style: italic;
  text-transform: none;
  font-size: 0.78rem;
  letter-spacing: 0;
  color: var(--indigo-soft);
}

.breadcrumb-alt a { color: var(--sea); border-bottom: 1px dotted rgba(58, 107, 143, 0.4); }

.article--island .breadcrumb span.current,
.article--island .breadcrumb a:hover { color: var(--sea); }

/* ============== Homepage — Hero arch ============== */

.hero {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-copy .eyebrow { margin-bottom: 1.25rem; }
.hero-copy h1 { margin-bottom: 1.75rem; }
.hero-copy h1 .italic { display: block; color: var(--terracotta); font-size: 0.88em; margin-top: -0.15em; }
.hero-copy .lede { margin-bottom: 2.25rem; }

.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.arch-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 520px;
  margin-inline: auto;
  width: 100%;
}

.arch-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  clip-path: path("M 0 520 L 0 210 Q 0 0 260 0 Q 520 0 520 210 L 520 520 Z");
  box-shadow: 0 40px 80px -30px rgba(20, 30, 56, 0.35);
}

.arch-frame::before {
  content: "";
  position: absolute;
  inset: -18px -22px -10px -22px;
  border: 1px solid rgba(30, 42, 74, 0.25);
  clip-path: path("M 0 556 L 0 228 Q 0 -18 282 -18 Q 564 -18 564 228 L 564 556 Z");
  background: transparent;
  pointer-events: none;
}

.arch-frame::after {
  content: "";
  position: absolute;
  top: 8%;
  right: 12%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #f4d58a, #c88a3a 70%, transparent 71%);
  box-shadow: 0 0 60px rgba(232, 180, 80, 0.35);
  pointer-events: none;
}

.arch-caption {
  margin-top: 1.5rem;
  text-align: center;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--indigo-soft);
}

.arch-caption span {
  display: inline-block;
  padding: 0 1rem;
  position: relative;
}

.arch-caption span::before,
.arch-caption span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 32px;
  height: 1px;
  background: rgba(30, 42, 74, 0.3);
}

.arch-caption span::before { right: 100%; }
.arch-caption span::after { left: 100%; }

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .arch-frame { max-width: 420px; }
}

/* ============== Country gallery — 8 arches ============== */

.countries {
  padding-block: clamp(4rem, 6vw, 7rem);
  background: linear-gradient(180deg, var(--stone-cream) 0%, var(--stone-pale) 100%);
  border-top: 1px solid rgba(30, 42, 74, 0.08);
  border-bottom: 1px solid rgba(30, 42, 74, 0.08);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.section-head .eyebrow { margin-bottom: 0.9rem; }
.section-head h2 { max-width: 16ch; }
.section-head p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--indigo-soft);
  max-width: 40ch;
}

@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; }
}

.arch-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}

@media (max-width: 960px) { .arch-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .arch-gallery { grid-template-columns: 1fr; gap: 2rem; } }

.country-arch {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--stone);
  overflow: hidden;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
  display: block;
}

.country-arch:hover { transform: translateY(-6px); }

.country-arch .arch-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}

.country-arch:hover .arch-bg { transform: scale(1.06); }

.country-arch::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30, 42, 74, 0.15) 0%, rgba(30, 42, 74, 0) 35%, rgba(30, 42, 74, 0.78) 100%);
  z-index: 2;
}

.country-arch .arch-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1.25rem 1.35rem;
  z-index: 3;
  color: var(--stone-cream);
}

.country-arch .arch-label small {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.4rem;
}

.country-arch .arch-label strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
}

.country-arch .arch-num {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  z-index: 3;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--stone-cream);
  opacity: 0.82;
}

/* Country-specific arch clip-paths */
.arch-portugal { clip-path: path("M 0 100% L 0 45% Q 0 28% 8% 20% Q 16% 14% 22% 18% Q 28% 22% 35% 14% Q 50% 0 65% 14% Q 72% 22% 78% 18% Q 84% 14% 92% 20% Q 100% 28% 100% 45% L 100% 100% Z"); }
.arch-spain { clip-path: path("M 0 100% L 0 58% Q 0 50% 4% 46% Q 0 36% 0 30% Q 0 0 50% 0 Q 100% 0 100% 30% Q 100% 36% 96% 46% Q 100% 50% 100% 58% L 100% 100% Z"); }
.arch-italy { clip-path: path("M 0 100% L 0 48% Q 0 0 50% 0 Q 100% 0 100% 48% L 100% 100% Z"); }
.arch-greece { clip-path: path("M 0 100% L 0 8% L 6% 8% L 6% 2% L 94% 2% L 94% 8% L 100% 8% L 100% 100% Z"); }
.arch-turkey { clip-path: path("M 0 100% L 0 52% Q 0 30% 20% 22% Q 35% 16% 50% 0 Q 65% 16% 80% 22% Q 100% 30% 100% 52% L 100% 100% Z"); }
.arch-croatia { clip-path: path("M 0 100% L 0 42% Q 0 28% 10% 22% Q 25% 14% 50% 6% Q 75% 14% 90% 22% Q 100% 28% 100% 42% L 100% 100% Z"); }
.arch-cyprus { clip-path: path("M 0 100% L 0 10% L 8% 10% L 8% 45% Q 8% 20% 50% 20% Q 92% 20% 92% 45% L 92% 10% L 100% 10% L 100% 100% Z"); }
.arch-malta { clip-path: path("M 0 100% L 0 35% Q 0 25% 6% 22% L 12% 22% L 12% 12% Q 12% 6% 50% 6% Q 88% 6% 88% 12% L 88% 22% L 94% 22% Q 100% 25% 100% 35% L 100% 100% Z"); }

/* ============== Featured cities grid ============== */

.featured { padding-block: clamp(4rem, 6vw, 7rem); }

.city-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2vw, 2rem);
}

@media (max-width: 900px) { .city-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .city-grid { grid-template-columns: 1fr; } }

.city-card {
  position: relative;
  background: var(--lime);
  border: 1px solid rgba(30, 42, 74, 0.12);
  padding: 0;
  transition: all .4s;
  display: block;
}

.city-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px var(--shadow-deep);
}

.city-card .city-image {
  aspect-ratio: 4 / 3;
  background: var(--stone);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.city-card .city-image::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 58%;
  aspect-ratio: 2 / 1.6;
  background: var(--lime);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  border: 1px solid rgba(30, 42, 74, 0.12);
  border-bottom: none;
  z-index: 2;
}

.city-card .city-body { padding: 1.5rem 1.5rem 1.75rem; position: relative; z-index: 3; }

.city-card .city-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--indigo-soft);
}

.city-card .city-tag { display: inline-flex; align-items: center; gap: 0.35rem; }
.city-card .city-tag::before { content: ""; width: 6px; height: 6px; background: var(--terracotta); border-radius: 50%; }
.city-card .city-tag.island::before { background: var(--sea); border-radius: 0 0 50% 50%; }

.city-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.9rem;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--indigo);
  margin-bottom: 0.65rem;
}

.city-card p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--indigo-soft);
  margin-bottom: 1.15rem;
  line-height: 1.45;
}

.city-card .city-price {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 0.9rem;
  border-top: 1px dotted rgba(30, 42, 74, 0.2);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  color: var(--indigo-soft);
}

.city-card .city-price strong {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--terracotta);
  letter-spacing: 0.02em;
}

/* ============== Islands band ============== */

.islands {
  padding-block: clamp(4rem, 6vw, 7rem);
  background: linear-gradient(180deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  color: var(--stone-pale);
  position: relative;
  overflow: hidden;
}

.islands::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 30%, rgba(232, 213, 183, 0.12) 0%, transparent 40%),
    radial-gradient(ellipse at 80% 70%, rgba(58, 107, 143, 0.3) 0%, transparent 45%);
  pointer-events: none;
}

.islands .container { position: relative; z-index: 2; }
.islands .eyebrow { color: var(--sun); }
.islands h2 { color: var(--stone-pale); }
.islands .lede { color: rgba(232, 213, 183, 0.78); }

.islands-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-top: 3rem;
}

@media (max-width: 860px) { .islands-inner { grid-template-columns: 1fr; } }

.sea-arch {
  position: relative;
  aspect-ratio: 5 / 4;
  max-width: 560px;
  width: 100%;
}

.sea-arch .sea-arch-frame {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  clip-path: path("M 0 100% L 0 48% Q 0 0 50% 0 Q 100% 0 100% 48% L 100% 100% Z");
}

.sea-arch::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 62%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 213, 183, 0.45), transparent);
  z-index: 3;
}

.sea-arch-waves {
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: -2px;
  height: 32px;
  z-index: 4;
}

.sea-arch-waves svg { width: 100%; height: 100%; display: block; }

.islands-text .wyspy-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-top: 2rem;
  list-style: none;
  padding: 0;
}

.islands-text .wyspy-list li a {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(232, 213, 183, 0.18);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--stone-pale);
  transition: all .25s;
}

.islands-text .wyspy-list li a:hover {
  background: rgba(232, 213, 183, 0.06);
  color: var(--sun);
  padding-left: 1.25rem;
}

.islands-text .wyspy-list li a span {
  opacity: 0.55;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.78rem;
}

/* ============== Manifesto ============== */

.manifesto { padding-block: clamp(4rem, 6vw, 7rem); }

.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}

@media (max-width: 780px) { .manifesto-inner { grid-template-columns: 1fr; } }

.manifesto h2 { font-size: clamp(2rem, 3.5vw, 3.25rem); }

.manifesto-body p {
  font-family: var(--font-ui);
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--indigo-soft);
  margin-bottom: 1.2rem;
  max-width: 56ch;
}

.manifesto-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 4em;
  float: left;
  line-height: 0.85;
  padding-right: 0.12em;
  padding-top: 0.1em;
  color: var(--terracotta);
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: clamp(2rem, 4vw, 3.5rem) 0;
}

.ornament::before,
.ornament::after {
  content: "";
  height: 1px;
  background: rgba(30, 42, 74, 0.2);
  flex: 1;
  max-width: 180px;
}

.ornament svg { width: 28px; height: 28px; opacity: 0.55; }

/* ============== Country hub ============== */

.country-hero { padding-top: 3rem; padding-bottom: clamp(3rem, 5vw, 5rem); position: relative; }

.country-hero-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: 3rem;
}

.country-hero-head .country-code {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--terracotta);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.country-hero-head .country-code::before {
  content: "";
  width: 40px; height: 1px;
  background: var(--terracotta);
}

.country-hero-head h1 { margin-bottom: 1.5rem; }
.country-hero-head .lede { margin-bottom: 0; }

.country-facts {
  border-top: 1px solid rgba(30, 42, 74, 0.15);
  border-bottom: 1px solid rgba(30, 42, 74, 0.15);
  padding-block: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.country-fact {
  padding-inline: 1rem;
  border-left: 1px dotted rgba(30, 42, 74, 0.25);
}

.country-fact:first-child { border-left: none; padding-left: 0; }

.country-fact dt {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--indigo-soft);
  margin-bottom: 0.4rem;
}

.country-fact dd {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--indigo);
  letter-spacing: 0.02em;
}

.country-fact dd .italic { font-size: 0.95rem; color: var(--terracotta); }

@media (max-width: 780px) {
  .country-hero-head { grid-template-columns: 1fr; }
  .country-facts { grid-template-columns: repeat(2, 1fr); }
  .country-fact:nth-child(3) { border-left: none; padding-left: 0; }
}

.portal {
  margin-top: 4rem;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--indigo);
  overflow: hidden;
}

.portal-arches {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 2px;
}

.portal-arch { position: relative; overflow: hidden; }

.portal-arch .portal-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}

.portal-arch:hover .portal-bg { transform: scale(1.05); }

.portal-arch.left { clip-path: path("M 0 100% L 0 38% Q 0 22% 12% 16% Q 25% 10% 50% 5% Q 75% 10% 88% 16% Q 100% 22% 100% 38% L 100% 100% Z"); }
.portal-arch.center { clip-path: path("M 0 100% L 0 32% Q 0 18% 10% 12% Q 25% 5% 50% 0 Q 75% 5% 90% 12% Q 100% 18% 100% 32% L 100% 100% Z"); }
.portal-arch.right { clip-path: path("M 0 100% L 0 38% Q 0 22% 12% 16% Q 25% 10% 50% 5% Q 75% 10% 88% 16% Q 100% 22% 100% 38% L 100% 100% Z"); }

.portal-arch-label {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 3;
  text-align: center;
  color: var(--stone-cream);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.portal-arch-label small {
  display: block;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 0.2rem;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 720px) {
  .portal { aspect-ratio: 4 / 5; }
  .portal-arches { grid-template-columns: 1fr; grid-template-rows: 1fr 1.2fr 1fr; }
}

/* Country intro */
.intro { padding-block: clamp(4rem, 6vw, 6rem); }

.intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

@media (max-width: 780px) { .intro-grid { grid-template-columns: 1fr; } }

/* Practical card */
.practical-card {
  background: var(--lime);
  border: 1px solid rgba(30, 42, 74, 0.15);
  padding: 2rem 1.75rem;
  position: relative;
  position: sticky;
  top: 7rem;
}

.practical-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 1.75rem;
  right: 1.75rem;
  height: 3px;
  background: var(--terracotta);
}

.practical-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--indigo);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px dotted rgba(30, 42, 74, 0.2);
}

.practical-card dl { display: grid; gap: 1rem; }

.practical-card dt {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--indigo-soft);
  margin-bottom: 0.25rem;
}

.practical-card dd {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--indigo);
}

.practical-card dd .italic { font-size: 0.9rem; color: var(--indigo-soft); }

/* City arch list in country hub */
.cities {
  padding-block: clamp(4rem, 6vw, 6rem);
  background: linear-gradient(180deg, var(--stone-pale) 0%, var(--stone-cream) 100%);
  border-top: 1px solid rgba(30, 42, 74, 0.08);
}

.city-archlist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}

@media (max-width: 920px) { .city-archlist { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .city-archlist { grid-template-columns: 1fr; } }

.city-arch-card {
  background: var(--lime);
  border: 1px solid rgba(30, 42, 74, 0.1);
  padding: 0;
  transition: all .4s;
  position: relative;
  display: block;
}

.city-arch-card:hover {
  border-color: var(--terracotta);
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -24px var(--shadow-deep);
}

.city-arch-card .card-arch {
  aspect-ratio: 5 / 4;
  background-size: cover;
  background-position: center;
  position: relative;
  clip-path: path("M 0 100% L 0 35% Q 0 20% 10% 14% Q 25% 8% 50% 3% Q 75% 8% 90% 14% Q 100% 20% 100% 35% L 100% 100% Z");
}

.city-arch-card .card-body { padding: 1.5rem 1.5rem 1.75rem; position: relative; }

.city-arch-card .card-num {
  position: absolute;
  top: -1.1rem;
  right: 1.25rem;
  width: 2.4rem;
  height: 2.4rem;
  background: var(--lime);
  border: 1px solid rgba(30, 42, 74, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1rem;
  color: var(--terracotta);
}

.city-arch-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--indigo);
  margin-bottom: 0.4rem;
}

.city-arch-card .card-region {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--indigo-soft);
  margin-bottom: 0.9rem;
}

.city-arch-card p {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--indigo-soft);
  margin-bottom: 1.25rem;
}

.city-arch-card .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.9rem;
  border-top: 1px dotted rgba(30, 42, 74, 0.2);
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--indigo-soft);
}

.city-arch-card .card-footer strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--terracotta);
  font-weight: 600;
}

.city-arch-card.island .card-arch {
  clip-path: path("M 0 100% L 0 35% Q 0 15% 15% 10% Q 35% 5% 50% 0 Q 65% 5% 85% 10% Q 100% 15% 100% 35% L 100% 100% Z");
}

.city-arch-card.island .card-arch::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 22px;
  background: linear-gradient(180deg, rgba(58, 107, 143, 0) 0%, rgba(58, 107, 143, 0.5) 100%);
  z-index: 2;
}

/* ============== City landing (mainland) ============== */

.city-hero, .island-hero { padding-top: 3rem; padding-bottom: clamp(3rem, 5vw, 5rem); }

.hero-stack { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }

.city-title { max-width: 900px; }
.city-title .eyebrow { margin-bottom: 1rem; }
.city-title h1 { margin-bottom: 1.25rem; }
.city-title h1 .italic { display: block; color: var(--terracotta); font-size: 0.6em; margin-top: 0.3em; }
.city-title .lede { margin-bottom: 0; }

.city-arch-hero {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  overflow: hidden;
  background: var(--indigo);
}

.city-arch-hero .hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  clip-path: path("M 0 100% L 0 38% Q 0 20% 8% 14% Q 20% 8% 50% 2% Q 80% 8% 92% 14% Q 100% 20% 100% 38% L 100% 100% Z");
}

.city-arch-hero .hero-caption,
.sea-arch-hero .hero-caption {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--stone-cream);
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.95rem;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  z-index: 6;
}

.city-arch-hero .hero-caption strong,
.sea-arch-hero .hero-caption strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.15rem;
}

/* ============== Island hero — sea-arch ============== */

.island-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.5rem 1rem;
  background: rgba(58, 107, 143, 0.1);
  border: 1px solid rgba(58, 107, 143, 0.3);
  color: var(--sea);
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.island-badge::before {
  content: "";
  width: 18px;
  height: 8px;
  background:
    radial-gradient(circle at 25% 100%, transparent 35%, var(--sea) 36%),
    radial-gradient(circle at 75% 100%, transparent 35%, var(--sea) 36%);
  background-repeat: no-repeat;
  background-size: 50% 100%;
  background-position: 0 0, 100% 0;
}

.article--island .city-title h1 .italic { color: var(--sea); font-size: 0.58em; }

.sea-arch-hero {
  position: relative;
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(180deg, var(--indigo-deep) 0%, var(--sea-deep) 60%, var(--sea) 100%);
}

.sea-arch-hero .island-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  clip-path: path("M 0 100% L 0 42% Q 0 14% 8% 10% L 12% 10% L 12% 4% L 88% 4% L 88% 10% L 92% 10% Q 100% 14% 100% 42% L 100% 100% Z");
}

.sea-arch-hero .waves {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 80px;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
}

.sea-arch-hero .waves svg { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.sea-arch-hero .waves .wave-a { fill: rgba(120, 165, 194, 0.45); }
.sea-arch-hero .waves .wave-b { fill: rgba(58, 107, 143, 0.55); }
.sea-arch-hero .waves .wave-c { fill: rgba(30, 42, 74, 0.85); }



.sea-arch-hero .sun {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #f4d58a, #c88a3a 65%, transparent 66%);
  box-shadow: 0 0 80px rgba(232, 180, 80, 0.35);
  z-index: 2;
  display: none;
}

/* ============== Article body ============== */

.city-body { padding-block: clamp(3rem, 5vw, 5rem); }

.city-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

@media (max-width: 900px) { .city-grid { grid-template-columns: 1fr; } }

.article-content { max-width: 70ch; }

.article-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.6vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--indigo);
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px dotted rgba(30, 42, 74, 0.25);
}

.article--island .article-content h2 { border-bottom-color: rgba(58, 107, 143, 0.4); }

.article-content h2 .italic { color: var(--terracotta); font-size: 0.85em; }
.article--island .article-content h2 .italic { color: var(--sea); }
.article-content h2:first-child { margin-top: 0; }

.article-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--indigo);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-content h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--indigo);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.article-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--indigo-soft);
  margin-bottom: 1.1rem;
}

.article-content p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 3.6em;
  float: left;
  line-height: 0.85;
  padding-right: 0.12em;
  padding-top: 0.1em;
  color: var(--terracotta);
}

.article--island .article-content p:first-of-type::first-letter { color: var(--sea); }

.article-content ul,
.article-content ol {
  padding-left: 1.25rem;
  margin-bottom: 1.2rem;
}

.article-content ul li,
.article-content ol li {
  position: relative;
  padding-left: 0.75rem;
  margin-bottom: 0.5rem;
  color: var(--indigo-soft);
  list-style: none;
  line-height: 1.65;
}

.article-content ul li::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: 0.7em;
  width: 5px;
  height: 5px;
  background: var(--terracotta);
  border-radius: 50%;
}

.article--island .article-content ul li::before {
  width: 6px;
  height: 2px;
  border-radius: 0;
  background: var(--sea);
}

.article-content ol { counter-reset: ol-count; }
.article-content ol li { counter-increment: ol-count; }
.article-content ol li::before {
  content: counter(ol-count) ".";
  position: absolute;
  left: -1.25rem;
  top: 0;
  color: var(--terracotta);
  font-family: var(--font-display);
  font-weight: 500;
}

.article--island .article-content ol li::before { color: var(--sea); }

.article-content blockquote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--indigo);
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  margin: 2rem 0;
  border-left: 3px solid var(--terracotta);
  background: var(--lime);
}

.article--island .article-content blockquote { border-left-color: var(--sea); }

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  background: var(--lime);
}

.article-content table th,
.article-content table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px dotted rgba(30, 42, 74, 0.2);
  color: var(--indigo-soft);
}

.article-content table th {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--indigo);
  background: var(--stone-pale);
}

.article-content img {
  width: 100%;
  margin: 1.5rem 0;
}

.article-content img.full-bleed {
  width: calc(100% + 4vw);
  margin-inline: -2vw;
  max-width: none;
}

.article-content code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.88em;
  background: var(--stone-pale);
  padding: 0.1em 0.35em;
  color: var(--terracotta-dark);
}

.article-content a:not(.cta-button) {
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 90, 58, 0.35);
  transition: all .2s;
}

.article-content a:not(.cta-button):hover { border-bottom-color: var(--terracotta); }

.article--island .article-content a:not(.cta-button) {
  color: var(--sea);
  border-bottom-color: rgba(58, 107, 143, 0.35);
}

.article--island .article-content a:not(.cta-button):hover { border-bottom-color: var(--sea); }

/* Content wrap for about-style pages */
.content-wrap a:not(.cta-button) {
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 90, 58, 0.35);
  transition: all .2s;
}

.content-wrap a:not(.cta-button):hover { border-bottom-color: var(--terracotta); }

/* ============== Ring-road panel (island only) ============== */

.ring-road {
  margin: 2rem 0 2.5rem;
  background: linear-gradient(180deg, #fbfaf3 0%, #eff6fb 100%);
  border: 1px solid rgba(58, 107, 143, 0.25);
  padding: 2rem 1.75rem;
  position: relative;
}

.ring-road::before {
  content: "";
  position: absolute;
  top: -1px; left: 1.75rem; right: 1.75rem;
  height: 3px;
  background: var(--sea);
}

.ring-road h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  color: var(--indigo);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ring-road h3::before {
  content: "";
  width: 36px;
  height: 20px;
  background: radial-gradient(ellipse at center, transparent 30%, var(--sea) 31%, var(--sea) 45%, transparent 46%);
}

.ring-road .ring-tag {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--sea);
  margin-bottom: 1.25rem;
}

.ring-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 0;
  padding-block: 1.25rem;
  border-top: 1px dotted rgba(58, 107, 143, 0.3);
  border-bottom: 1px dotted rgba(58, 107, 143, 0.3);
}

.ring-stats > div {
  padding-inline: 0.75rem;
  border-left: 1px dotted rgba(58, 107, 143, 0.3);
}

.ring-stats > div:first-child { border-left: none; padding-left: 0; }

.ring-stats dt {
  font-family: var(--font-ui);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--indigo-soft);
  margin-bottom: 0.25rem;
}

.ring-stats dd {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--sea);
  line-height: 1;
}

.ring-stats dd .italic { font-size: 0.78rem; color: var(--indigo-soft); display: block; margin-top: 0.2rem; }

@media (max-width: 680px) {
  .ring-stats { grid-template-columns: repeat(2, 1fr); }
  .ring-stats > div:nth-child(3) { border-left: none; padding-left: 0; }
}

/* ============== Routes ============== */

.routes { margin-top: 1.5rem; display: grid; gap: 1rem; }

.route {
  background: var(--lime);
  border: 1px solid rgba(30, 42, 74, 0.12);
  padding: 1.5rem 1.75rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: start;
  position: relative;
  transition: all .3s;
}

.route:hover { border-color: var(--terracotta); transform: translateX(4px); }
.article--island .route { border-color: rgba(58, 107, 143, 0.2); }
.article--island .route:hover { border-color: var(--sea); }

.route-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.5rem;
  color: var(--terracotta);
  line-height: 0.9;
  padding-right: 1rem;
  border-right: 1px dotted rgba(30, 42, 74, 0.2);
}

.article--island .route-num { color: var(--sea); border-right-color: rgba(58, 107, 143, 0.3); }

.route-main h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--indigo);
  margin-bottom: 0.4rem;
}

.route-main p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--indigo-soft);
  margin-bottom: 0.6rem !important;
}

.route-main .route-tags {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo-soft);
}

.route-main .route-tags span::before { content: "· "; color: var(--terracotta); margin-right: 0.25rem; }
.article--island .route-main .route-tags span::before { color: var(--sea); }

.route-km {
  text-align: right;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.88rem;
  color: var(--indigo-soft);
  min-width: 90px;
}

.route-km strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--indigo);
  font-weight: 500;
}

@media (max-width: 640px) {
  .route { grid-template-columns: auto 1fr; }
  .route-km { grid-column: 2; text-align: left; }
}

/* ============== Sidebar ============== */

.sidebar { position: sticky; top: 7rem; }

.sidebar-card {
  background: var(--lime);
  border: 1px solid rgba(30, 42, 74, 0.15);
  padding: 2rem 1.75rem;
  position: relative;
  margin-bottom: 1.25rem;
}

.sidebar-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 1.75rem;
  right: 1.75rem;
  height: 3px;
  background: var(--terracotta);
}

.article--island .sidebar-card { border-color: rgba(58, 107, 143, 0.2); }
.article--island .sidebar-card::before { background: var(--sea); }

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--indigo);
  letter-spacing: 0.04em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px dotted rgba(30, 42, 74, 0.2);
}

.article--island .sidebar-card h3 { border-bottom-color: rgba(58, 107, 143, 0.3); }

.sidebar-card dl { display: grid; gap: 0.95rem; }

.sidebar-card dt {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--indigo-soft);
  margin-bottom: 0.2rem;
}

.sidebar-card dd {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--indigo);
}

.sidebar-card dd .italic {
  font-size: 0.88rem;
  color: var(--indigo-soft);
  display: block;
  margin-top: 0.1rem;
}

.sidebar-card dd strong { font-size: 1.35rem; color: var(--terracotta); font-weight: 600; }
.article--island .sidebar-card dd strong { color: var(--sea); }

/* ============== CTA block (custom partial) ============== */

.cta-block {
  margin: 3rem 0;
  background: var(--indigo);
  color: var(--stone-cream);
  padding: 2.5rem 2rem;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
}

.cta-block--island {
  background: linear-gradient(135deg, var(--sea-deep), var(--indigo));
}

.cta-door {
  width: 90px;
  height: 115px;
  background: var(--terracotta);
  clip-path: path("M 0 115 L 0 45 Q 0 0 45 0 Q 90 0 90 45 L 90 115 Z");
  flex: none;
  position: relative;
  box-shadow: inset 0 0 0 2px rgba(250, 244, 232, 0.15);
}

.cta-block--island .cta-door { background: var(--sea-pale); box-shadow: inset 0 0 0 2px rgba(250, 244, 232, 0.2); }

.cta-door-handle {
  position: absolute;
  top: 55%;
  left: 72%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(184, 138, 62, 0.6);
}

.cta-block--island .cta-door-handle { background: var(--sun); box-shadow: 0 0 8px rgba(232, 180, 80, 0.8); }

.cta-content h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  color: var(--stone-cream);
  margin-bottom: 0.5rem;
}

.cta-content p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(232, 213, 183, 0.85) !important;
  margin: 0 !important;
  max-width: 52ch;
}

.cta-content p::first-letter { font-size: inherit !important; float: none !important; color: inherit !important; padding: 0 !important; }

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--sun);
  color: var(--indigo-deep) !important;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--sun) !important;
  border-bottom: 1px solid var(--sun) !important;
  transition: all .3s;
  text-decoration: none !important;
  white-space: nowrap;
}

.cta-button:hover {
  background: var(--stone-cream);
  border-color: var(--stone-cream) !important;
  transform: translateY(-1px);
}

.cta-button svg { width: 14px; height: 14px; }

@media (max-width: 720px) {
  .cta-block { grid-template-columns: 1fr; text-align: center; }
  .cta-door { margin: 0 auto; }
  .cta-button { justify-self: center; }
}

/* ============== Related cities ============== */

.related {
  padding-block: clamp(3rem, 5vw, 5rem);
  background: linear-gradient(180deg, var(--stone-pale), var(--stone-cream));
  border-top: 1px solid rgba(30, 42, 74, 0.08);
}

.related--island {
  background: linear-gradient(180deg, #eff6fb, var(--stone-cream));
  border-top-color: rgba(58, 107, 143, 0.15);
}

.related h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: 0.03em;
  color: var(--indigo);
  margin-bottom: 0.5rem;
}

.related .eyebrow { margin-bottom: 1rem; }
.related--island .eyebrow { color: var(--sea); }
.related > .container > p { font-family: var(--font-italic); font-style: italic; color: var(--indigo-soft); margin-bottom: 2.5rem; }

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 680px) { .related-grid { grid-template-columns: 1fr; } }

.related-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  background: var(--lime);
  border: 1px solid rgba(30, 42, 74, 0.12);
  transition: all .3s;
}

.related-card:hover { border-color: var(--terracotta); transform: translateY(-3px); }
.related--island .related-card { border-color: rgba(58, 107, 143, 0.2); }
.related--island .related-card:hover { border-color: var(--sea); }

.related-card .rc-img {
  background-size: cover;
  background-position: center;
  clip-path: path("M 0 100% L 0 35% Q 0 18% 10% 12% Q 25% 5% 50% 0 Q 75% 5% 90% 12% Q 100% 18% 100% 35% L 100% 100% Z");
}

.related--island .related-card .rc-img {
  clip-path: path("M 0 100% L 0 35% Q 0 8% 10% 6% L 14% 6% L 14% 0 L 86% 0 L 86% 6% L 90% 6% Q 100% 8% 100% 35% L 100% 100% Z");
}

.related-card .rc-body { padding: 1.25rem 1.35rem; }
.related-card .eyebrow { font-size: 0.65rem; margin-bottom: 0.35rem; color: var(--indigo-soft); }

.related-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--indigo);
  margin-bottom: 0.35rem;
}

.related-card p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--indigo-soft);
}

/* ============== About / article_simple ============== */

.about-wrap {
  padding-top: 4rem;
  padding-bottom: 6rem;
  position: relative;
}

.about-frame {
  max-width: 820px;
  margin-inline: auto;
  position: relative;
  padding: 5rem 3rem 4rem;
  background: var(--lime);
  border: 1px solid rgba(30, 42, 74, 0.15);
  clip-path: path("M 0 100% L 0 110 Q 0 0 50% 0 Q 100% 0 100% 110 L 100% 100% Z");
}

.about-frame::after {
  content: "";
  position: absolute;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  height: 80px;
  border: 1px solid rgba(200, 90, 58, 0.35);
  border-bottom: none;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  pointer-events: none;
}

.about-header { text-align: center; margin-bottom: 3rem; }

.about-header .eyebrow {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.about-header .eyebrow::before,
.about-header .eyebrow::after {
  content: "";
  height: 1px;
  background: rgba(200, 90, 58, 0.5);
  flex: 1;
  max-width: 60px;
}

.about-header h1 { margin-bottom: 1.25rem; }
.about-header h1 .italic { display: block; color: var(--terracotta); margin-top: 0.2em; }

.about-header p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--indigo-soft);
  max-width: 50ch;
  margin-inline: auto;
}

.about-body { font-size: 1.02rem; line-height: 1.8; }

.about-body h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--indigo);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  padding-bottom: 0;
  border-bottom: none;
  position: relative;
}

.about-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 12px;
  height: 18px;
  background: var(--terracotta);
  clip-path: path("M 0 18 L 0 8 Q 0 0 6 0 Q 12 0 12 8 L 12 18 Z");
}

.about-body h2 .italic { color: var(--terracotta); font-size: 0.9em; }

.about-body p {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--indigo-soft);
  margin-bottom: 1.2rem;
}

.about-body p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 4em;
  float: left;
  line-height: 0.85;
  padding-right: 0.15em;
  padding-top: 0.1em;
  color: var(--terracotta);
}

.about-body blockquote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--indigo);
  padding: 2rem 0;
  margin: 2rem 0;
  text-align: center;
  border-top: 1px solid rgba(30, 42, 74, 0.2);
  border-bottom: 1px solid rgba(30, 42, 74, 0.2);
  background: transparent;
  border-left: none;
}

.principles {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 680px) { .principles { grid-template-columns: 1fr; } }

.principle {
  padding: 2rem 1.5rem 1.75rem;
  background: var(--stone-cream);
  border: 1px solid rgba(30, 42, 74, 0.15);
  position: relative;
  text-align: center;
}

.principle::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 8px;
  background: var(--terracotta);
}

.principle .pn {
  display: inline-block;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

.principle h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  color: var(--indigo);
  margin-bottom: 0.6rem;
  margin-top: 0;
}

.principle p {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--indigo-soft);
  margin: 0;
}

.principle p::first-letter { font-size: inherit; float: none; color: inherit; padding: 0; }

.about-sign {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(30, 42, 74, 0.15);
  text-align: center;
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--indigo-soft);
}

.about-sign strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--indigo);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.04em;
  margin-bottom: 0.3rem;
}

@media (max-width: 640px) {
  .about-frame { padding: 4rem 1.75rem 3rem; }
}

/* ============== Footer ============== */

.site-footer {
  background: var(--indigo-deep);
  color: rgba(232, 213, 183, 0.75);
  padding-block: 4rem 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-bottom: 3rem;
}

@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h4 {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 1.1rem;
}

.site-footer .brand-text { color: var(--stone-pale); }

.site-footer .footer-tag {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.95rem;
  margin-top: 1rem;
  max-width: 30ch;
  line-height: 1.55;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0;
}

.footer-links a {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: rgba(232, 213, 183, 0.7);
  transition: color .25s;
}

.footer-links a:hover { color: var(--sun); }

.footer-bottom {
  border-top: 1px solid rgba(232, 213, 183, 0.15);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: rgba(232, 213, 183, 0.5);
}

/* ============== GDPR consent ============== */

.gdpr-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  background: var(--stone-cream);
  border-top: 1px solid rgba(30, 42, 74, 0.12);
  box-shadow: 0 -24px 50px -30px rgba(20, 30, 56, 0.25);
  padding: 1.6rem 2rem 1.4rem;
}

.gdpr-banner[hidden] { display: none; }

.gdpr-banner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -1px;
  width: 320px;
  height: 28px;
  transform: translateX(-50%);
  background: var(--stone-cream);
  border: 1px solid rgba(30, 42, 74, 0.14);
  border-bottom: none;
  border-top-left-radius: 160px 28px;
  border-top-right-radius: 160px 28px;
}

.gdpr-banner::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 4px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(184, 138, 62, 0.55);
}

.gdpr-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.gdpr-banner__door {
  width: 56px;
  height: 72px;
  background: var(--terracotta);
  clip-path: path("M 0 72 L 0 28 Q 0 0 28 0 Q 56 0 56 28 L 56 72 Z");
  position: relative;
  box-shadow: inset 0 0 0 2px rgba(250, 244, 232, 0.2);
  flex: none;
}

.gdpr-banner__door::after {
  content: "";
  position: absolute;
  top: 55%;
  left: 70%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(184, 138, 62, 0.7);
}

.gdpr-banner__eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.45rem;
}

.gdpr-banner__text {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--indigo-soft);
  max-width: 62ch;
  margin: 0;
}

.gdpr-banner__text a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gdpr-banner__actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: none;
}

.btn--primary,
.btn--ghost,
.btn--link {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  background: none;
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--stone-cream);
  border-color: var(--terracotta);
}
.btn--primary:hover { background: var(--terracotta-dark); border-color: var(--terracotta-dark); }

.btn--ghost {
  background: transparent;
  color: var(--indigo);
  border-color: rgba(30, 42, 74, 0.35);
}
.btn--ghost:hover { border-color: var(--indigo); background: rgba(30, 42, 74, 0.04); }

.btn--link {
  background: none;
  border: none;
  padding: 0.95rem 0.4rem;
  color: var(--indigo-soft);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-style: italic;
  font-family: var(--font-italic);
  font-size: 0.92rem;
  letter-spacing: 0;
  text-transform: none;
}
.btn--link:hover { color: var(--terracotta); }

@media (max-width: 860px) {
  .gdpr-banner { padding: 1.4rem 1.2rem 1.2rem; }
  .gdpr-banner__inner { grid-template-columns: 1fr; gap: 1.1rem; }
  .gdpr-banner__door { width: 42px; height: 54px; clip-path: path("M 0 54 L 0 21 Q 0 0 21 0 Q 42 0 42 21 L 42 54 Z"); }
  .gdpr-banner__actions { flex-wrap: wrap; gap: 0.6rem; }
  .btn--primary, .btn--ghost { flex: 1 1 auto; text-align: center; }
  .btn--link { flex-basis: 100%; text-align: left; }
}

/* Modal */
.gdpr-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(20, 30, 56, 0.88);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  padding: 2rem 1.2rem;
  overflow-y: auto;
}

.gdpr-modal-overlay[hidden] { display: none; }

.gdpr-modal {
  background: var(--stone-cream);
  max-width: 680px;
  width: 100%;
  position: relative;
  padding: 5rem 3rem 2.6rem;
  box-shadow: 0 40px 100px -40px rgba(0, 0, 0, 0.6);
  clip-path: path("M 0 100% L 0 120 Q 0 0 50% 0 Q 100% 0 100% 120 L 100% 100% Z");
}

.gdpr-modal::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: calc(100% - 40px);
  height: 120px;
  transform: translateX(-50%);
  border: 1.5px solid var(--terracotta);
  border-bottom: none;
  border-top-left-radius: 50% 120px;
  border-top-right-radius: 50% 120px;
  opacity: 0.45;
  pointer-events: none;
}

.gdpr-modal::after {
  content: "";
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--sun), var(--gold) 70%);
  box-shadow: 0 0 30px rgba(184, 138, 62, 0.55);
}

.gdpr-modal__close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(30, 42, 74, 0.25);
  background: transparent;
  color: var(--indigo);
  font-size: 1rem;
  cursor: pointer;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all .2s;
}

.gdpr-modal__close:hover { border-color: var(--terracotta); color: var(--terracotta); }

.gdpr-modal__header { text-align: center; margin-bottom: 2.2rem; }

.gdpr-modal__eyebrow {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.7rem;
}

.gdpr-modal__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  letter-spacing: 0.03em;
  color: var(--indigo);
  line-height: 1.05;
}

.gdpr-modal__title .italic {
  display: block;
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--terracotta);
  font-size: 0.68em;
  margin-top: 0.2em;
  text-transform: none;
}

.gdpr-modal__lede {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--indigo-soft);
  text-align: center;
  margin: 1rem auto 2.4rem;
  max-width: 50ch;
}

.gdpr-categories { border-top: 1px solid rgba(30, 42, 74, 0.15); }

.gdpr-category {
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(30, 42, 74, 0.12);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.4rem;
  align-items: start;
}

.gdpr-category__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 0.35rem;
}

.gdpr-category__desc {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--indigo-soft);
  max-width: 52ch;
}

.gdpr-toggle {
  --w: 54px;
  --h: 28px;
  position: relative;
  width: var(--w);
  height: var(--h);
  flex: none;
  margin-top: 0.25rem;
  display: block;
}

.gdpr-toggle input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
  margin: 0;
  z-index: 2;
}

.gdpr-toggle__track {
  position: absolute;
  inset: 0;
  background: var(--stone);
  border: 1px solid rgba(30, 42, 74, 0.25);
  transition: background .3s ease, border-color .3s ease;
}

.gdpr-toggle__bolt {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: var(--stone-cream);
  border: 1px solid rgba(30, 42, 74, 0.35);
  clip-path: path("M 0 20 L 0 8 Q 0 0 10 0 Q 20 0 20 8 L 20 20 Z");
  transition: left .3s ease, background .3s ease, border-color .3s ease;
}

.gdpr-toggle input:checked ~ .gdpr-toggle__track {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

.gdpr-toggle input:checked ~ .gdpr-toggle__bolt {
  left: calc(100% - 23px);
  background: var(--stone-cream);
  border-color: var(--stone-cream);
}

.gdpr-toggle input:disabled ~ .gdpr-toggle__track {
  background: var(--gold);
  border-color: var(--gold);
  opacity: 0.55;
}

.gdpr-toggle input:disabled ~ .gdpr-toggle__bolt {
  left: calc(100% - 23px);
  background: var(--stone-cream);
  border-color: rgba(250, 244, 232, 0.8);
  cursor: not-allowed;
}

.gdpr-modal__actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(30, 42, 74, 0.15);
}

.gdpr-modal__footnote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--indigo-soft);
  text-align: center;
  margin-top: 1.4rem;
  opacity: 0.8;
}

.gdpr-modal__footnote a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 640px) {
  .gdpr-modal { padding: 4rem 1.5rem 2rem; clip-path: path("M 0 100% L 0 90 Q 0 0 50% 0 Q 100% 0 100% 90 L 100% 100% Z"); }
  .gdpr-modal::before { height: 90px; border-top-left-radius: 50% 90px; border-top-right-radius: 50% 90px; }
  .gdpr-modal::after { top: 22px; width: 22px; height: 22px; }
  .gdpr-category { grid-template-columns: 1fr; gap: 0.8rem; }
  .gdpr-toggle { justify-self: start; }
  .gdpr-modal__actions { justify-content: stretch; }
  .gdpr-modal__actions .btn--primary,
  .gdpr-modal__actions .btn--ghost { flex: 1 1 100%; text-align: center; }
}
