:root {
  /* Paper & Terracotta — Pashion brand default */
  --bg-base: #fdfcfa;
  --bg-soft: #f3ede2;
  --bg-warm: #ebe2d2;
  --bg-contrast: #1a1714;
  --ink: #1a1714;
  --ink-soft: #5b544c;
  --ink-muted: #8a8278;
  --line: #e6dfd3;
  --line-strong: #cfc6b6;

  /* Brand accent (from logo) — for wordmark + dark/decorative surfaces only.
     2.74:1 vs white — do NOT use for text or CTAs on light bg. */
  --accent: #dd8572;
  /* CTA + text accent on LIGHT bg — WCAG-safe terracotta */
  --accent-cta: #ca4629;
  --accent-deep: #a3351e;
  --accent-soft: #f9f1ef;
  --accent-ink: #ffffff;

  --cta: #1a1714;
  --cta-ink: #fdfcfa;

  --serif: "Fraunces", "Times New Roman", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --brand: "Archivo", "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: "DM Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius-sm: 2px;
  --radius-md: 4px;

  --easing: cubic-bezier(0.2, 0.6, 0.2, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-base);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Type ---------- */
.serif {
  font-family: var(--serif);
  font-variation-settings: "opsz" 96, "SOFT" 30;
  font-weight: 400;
  letter-spacing: -0.015em;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.h-display {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  font-size: clamp(48px, 7.5vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.025em;
}

.h1 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 96, "SOFT" 30;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.h2 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 72, "SOFT" 30;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.018em;
}

.h3 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 36, "SOFT" 30;
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.18;
  letter-spacing: -0.012em;
}

.lead {
  font-family: var(--serif);
  font-variation-settings: "opsz" 18, "SOFT" 30;
  font-style: italic;
  font-weight: 350;
  font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.42;
  color: var(--ink-soft);
  letter-spacing: -0.005em;
}

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.eyebrow strong, .eyebrow b { color: var(--accent-cta); font-weight: 600; }

.meta {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
}

.body-text {
  font-size: 18px;
  line-height: 1.72;
  color: var(--ink-soft);
}

.body-text p { margin: 0 0 1.1em 0; }
.body-text p:last-child { margin-bottom: 0; }
.body-text strong { color: var(--ink); font-weight: 600; }

.dropcap::first-letter {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-weight: 400;
  font-size: 5.2em;
  float: left;
  line-height: 0.85;
  padding: 0.12em 0.12em 0 0;
  color: var(--accent-deep);
}

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.wrap-narrow {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.wrap-wide {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.rule {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

.rule-strong { background: var(--line-strong); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 14px 22px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  background: var(--ink);
  color: var(--cta-ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: transform 200ms var(--easing), background 200ms var(--easing), color 200ms var(--easing);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover { background: var(--accent-cta); border-color: var(--accent-cta); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--ink); color: var(--cta-ink); border-color: var(--ink); }

.btn-accent {
  background: var(--accent-cta);
  color: var(--accent-ink);
  border-color: var(--accent-cta);
}
.btn-accent:hover { background: var(--ink); border-color: var(--ink); color: var(--cta-ink); }

.btn-link {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: border-color 200ms var(--easing), color 200ms var(--easing);
  border-radius: 0;
}
.btn-link:hover { color: var(--accent-cta); border-bottom-color: var(--accent-cta); }

.arrow { transition: transform 250ms var(--easing); }
.btn:hover .arrow, a:hover .arrow { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 0;
  gap: 24px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
}

.header-left a {
  position: relative;
  padding: 4px 0;
}
.header-left a:hover { color: var(--accent-cta); }
.header-left a.active { color: var(--ink); }
.header-left a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -22px;
  height: 1px;
  background: var(--ink);
}

.masthead {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  color: inherit;
}

.masthead .wordmark {
  font-family: var(--brand);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cta);
  line-height: 1;
  padding-left: 0.18em; /* optical balance vs tracking */
}

.masthead .tagline {
  font-family: var(--brand);
  font-weight: 500;
  font-size: 8.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1;
  margin-top: 4px;
  padding-left: 0.32em;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.header-search {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--ink-muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  transition: border-color 200ms var(--easing), color 200ms var(--easing);
}
.header-search:hover { border-color: var(--ink); color: var(--ink); }

.country-switch {
  position: relative;
}
.country-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: background 180ms var(--easing), color 180ms var(--easing);
}
.country-trigger:hover { background: var(--ink); color: var(--cta-ink); border-color: var(--ink); }
.country-trigger .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

.country-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 220px;
  background: var(--bg-base);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 8px;
  box-shadow: 0 24px 56px -24px rgba(26, 23, 20, 0.18);
  z-index: 60;
  display: grid;
  gap: 2px;
}

.country-option {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  font-size: 13.5px;
  color: var(--ink);
  border-radius: 3px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: background 150ms var(--easing);
}
.country-option:hover { background: var(--bg-soft); }
.country-option .code {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}
.country-option.active { background: var(--accent-soft); }
.country-option.active .code { color: var(--accent-cta); font-weight: 600; }
.flag {
  font-family: var(--mono);
  font-size: 11px;
  width: 28px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  background: var(--bg-soft);
  border-radius: 2px;
  letter-spacing: 0.05em;
  color: var(--ink);
  font-weight: 600;
  border: 1px solid var(--line);
}

/* ---------- Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(40px, 5vw, 84px) 0 clamp(60px, 6vw, 110px);
  align-items: end;
}

.hero-image {
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
  background: var(--bg-warm);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1200ms var(--easing);
}
.hero-image:hover img { transform: scale(1.04); }

.hero-image .caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: rgba(253, 252, 250, 0.85);
  background: rgba(26, 23, 20, 0.55);
  padding: 5px 9px;
  text-transform: uppercase;
}

.hero-copy { padding-bottom: 8px; }

.hero-copy .eyebrow { margin-bottom: 28px; }

.hero-copy h1 {
  margin-bottom: 24px;
}

.hero-copy .lead { margin-bottom: 36px; max-width: 30em; }

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* ---------- Sections ---------- */
.section { padding: clamp(48px, 6vw, 96px) 0; }
.section-tight { padding: clamp(32px, 4vw, 64px) 0; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 40px;
  gap: 32px;
  flex-wrap: wrap;
}

.section-head .lead { max-width: 28em; }

.bg-soft { background: var(--bg-soft); }
.bg-warm { background: var(--bg-warm); }
.bg-contrast { background: var(--bg-contrast); color: var(--bg-soft); }
.bg-contrast h1, .bg-contrast h2, .bg-contrast h3, .bg-contrast h4 { color: var(--bg-base); }

/* ---------- Pillar entry cards ---------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.pillar-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-warm);
  cursor: pointer;
}

.pillar-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 800ms var(--easing), filter 400ms var(--easing);
  filter: brightness(0.92);
}
.pillar-card:hover img { transform: scale(1.05); filter: brightness(0.82); }

.pillar-card-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  color: var(--bg-base);
  background: linear-gradient(to top, rgba(26,23,20,0.78) 10%, rgba(26,23,20,0.0) 90%);
}

.pillar-card .num {
  position: absolute;
  top: 18px; left: 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(253,252,250,0.85);
  background: rgba(26,23,20,0.45);
  padding: 4px 8px;
}

.pillar-card h3 {
  color: var(--bg-base);
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.05;
  margin-bottom: 6px;
  font-variation-settings: "opsz" 60, "SOFT" 30;
}

.pillar-card .desc {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(253,252,250,0.78);
  letter-spacing: 0.005em;
}

/* ---------- Product card (5.1) ---------- */
.product-card {
  display: block;
  text-align: left;
  background: var(--bg-base);
  border: 1px solid transparent;
  transition: border-color 220ms var(--easing), transform 280ms var(--easing);
  position: relative;
}
.product-card:hover { border-color: var(--line); transform: translateY(-3px); }

.product-image {
  aspect-ratio: 4 / 5;
  background: var(--bg-warm);
  overflow: hidden;
  position: relative;
}
.product-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms var(--easing);
}
.product-card:hover .product-image img { transform: scale(1.04); }

.product-disclosure {
  position: absolute;
  top: 10px;
  left: 10px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(253, 252, 250, 0.92);
  padding: 3px 7px;
  border-radius: 1px;
}

.product-body {
  padding: 16px 4px 6px;
  display: grid;
  gap: 6px;
}

.product-brand {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
}

.product-name {
  font-family: var(--serif);
  font-variation-settings: "opsz" 18, "SOFT" 30;
  font-size: 16.5px;
  line-height: 1.25;
  color: var(--ink);
  font-weight: 400;
}

.product-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  gap: 12px;
}

.product-price {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color 200ms var(--easing), border-color 200ms var(--easing);
}
.product-card:hover .product-cta { color: var(--accent-cta); border-bottom-color: var(--accent-cta); }

/* ---------- Product strip ---------- */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.6vw, 28px);
}

.strip-scroll {
  display: none;
}

/* ---------- Shop entry card (5.2) ---------- */
.shop-entry {
  display: grid;
  grid-template-columns: 88px 1.4fr 1fr auto;
  gap: clamp(20px, 2.6vw, 40px);
  align-items: start;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  position: relative;
}

.shop-entry:last-child { border-bottom: 1px solid var(--line); }

.shop-entry .rank {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: 88px;
  line-height: 0.85;
  color: var(--accent-deep);
  font-weight: 300;
  letter-spacing: -0.04em;
}

.shop-entry .head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shop-name {
  font-family: var(--serif);
  font-variation-settings: "opsz" 36, "SOFT" 30;
  font-size: 28px;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.012em;
}

.shop-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 18, "SOFT" 50;
  font-weight: 350;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.4;
  max-width: 28em;
}

.shop-meta {
  display: flex;
  gap: 14px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-top: 4px;
}
.shop-meta span::after { content: "·"; margin-left: 14px; color: var(--line-strong); }
.shop-meta span:last-child::after { content: ""; margin: 0; }

.shop-pros {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: grid;
  gap: 6px;
}
.shop-pros li {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
}
.shop-pros li::before {
  content: "";
  width: 8px; height: 8px;
  margin-top: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: block;
}

.shop-score {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  min-width: 180px;
}

.score-block {
  text-align: right;
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.score-num {
  font-family: var(--serif);
  font-variation-settings: "opsz" 60, "SOFT" 30;
  font-size: 44px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.score-num small {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-muted);
  font-weight: 400;
  margin-left: 2px;
  letter-spacing: 0;
}

.score-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 6px;
}

.shop-score .btn { padding: 10px 18px; font-size: 13.5px; }

/* ---------- Comparison table (5.3) ---------- */
.compare-wrap { margin: 16px 0; }

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--sans);
}

.compare-table thead th {
  text-align: left;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 14px 14px;
  border-bottom: 1px solid var(--line-strong);
  background: var(--bg-soft);
}

.compare-table tbody td {
  padding: 22px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.compare-table .shop-cell {
  font-family: var(--serif);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-size: 20px;
  color: var(--ink);
  font-weight: 400;
}

.compare-table .pris {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.compare-table .link-cell a {
  color: var(--accent-cta);
  border-bottom: 1px solid var(--accent-cta);
  font-weight: 500;
  font-size: 13.5px;
  padding-bottom: 1px;
}
.compare-table .link-cell a:hover { color: var(--ink); border-bottom-color: var(--ink); }

.compare-mobile { display: none; }

/* ---------- Verdict / rating box (5.4) ---------- */
.verdict {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(24px, 3vw, 56px);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: clamp(32px, 4vw, 56px);
  margin-bottom: 32px;
  position: relative;
}

.verdict::before {
  content: "DOMMEN";
  position: absolute;
  top: -10px; left: 32px;
  background: var(--bg-base);
  padding: 0 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent-cta);
}

.verdict-shop {
  display: grid;
  gap: 18px;
}
.verdict-name {
  font-family: var(--serif);
  font-variation-settings: "opsz" 96, "SOFT" 30;
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: -0.024em;
}

.verdict-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 60;
  font-weight: 350;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 24em;
}

.verdict-tags {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px;
}
.tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 5px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--bg-base);
}

.verdict-side {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 20px;
  align-content: start;
}

.score-big {
  display: flex;
  align-items: baseline;
  gap: 8px;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 18px;
}
.score-big .num {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: 88px;
  line-height: 0.85;
  color: var(--accent-deep);
  letter-spacing: -0.04em;
}
.score-big .of {
  font-family: var(--sans);
  font-size: 18px;
  color: var(--ink-muted);
}
.score-big .label {
  margin-left: auto;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: right;
}

.subscores {
  display: grid;
  gap: 12px;
}
.subscore {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  font-size: 13.5px;
}
.subscore .name {
  font-family: var(--sans);
  color: var(--ink);
}
.subscore .bar {
  width: 100px;
  height: 4px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}
.subscore .bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--w, 80%);
  background: var(--accent);
}
.subscore .val {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
  min-width: 28px;
  text-align: right;
}

.verdict-cta-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.verdict-cta-row .btn { width: 100%; padding: 16px 22px; }

/* ---------- Pros / Cons (5.5) ---------- */
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proscons > div {
  padding: 32px clamp(20px, 3vw, 40px);
}

.proscons .pros {
  border-right: 1px solid var(--line);
}

.proscons h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--ink-muted);
}
.proscons h4 span { color: var(--accent-cta); margin-right: 4px; }

.proscons ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.proscons li {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
}

.proscons .pros li .mark,
.proscons .cons li .mark {
  display: inline-grid;
  place-items: center;
  width: 18px; height: 18px;
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
}
.proscons .pros li .mark { color: var(--accent-cta); }
.proscons .cons li .mark { color: var(--ink-muted); }

/* ---------- FAQ (5.6) ---------- */
.faq {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  font-family: var(--serif);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-size: clamp(18px, 1.7vw, 22px);
  color: var(--ink);
  cursor: pointer;
  transition: color 200ms var(--easing);
  letter-spacing: -0.01em;
}
.faq-q:hover { color: var(--accent-cta); }
.faq-q .plus {
  width: 24px;
  height: 24px;
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%; left: 50%;
}
.faq-q .plus::before { width: 14px; height: 1px; transform: translate(-50%, -50%); }
.faq-q .plus::after { width: 1px; height: 14px; transform: translate(-50%, -50%); transition: transform 250ms var(--easing); }
.faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms var(--easing);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 0 28px 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 56em;
}

/* ---------- Country band ---------- */
.country-band {
  padding: clamp(48px, 6vw, 96px) 0;
  background: var(--bg-contrast);
  color: var(--bg-soft);
}

.country-band h2 {
  color: var(--bg-base);
  margin-bottom: 12px;
}

.country-band .lead { color: rgba(243, 237, 226, 0.7); }

.country-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(243, 237, 226, 0.18);
  border-bottom: 1px solid rgba(243, 237, 226, 0.18);
}

.country-cell {
  padding: 32px 22px;
  border-right: 1px solid rgba(243, 237, 226, 0.12);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: background 220ms var(--easing);
  cursor: pointer;
  position: relative;
}
.country-cell:last-child { border-right: none; }
.country-cell:hover { background: rgba(243, 237, 226, 0.06); }

.country-cell .code {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: rgba(243, 237, 226, 0.55);
  margin-bottom: 6px;
}

.country-cell .name {
  font-family: var(--serif);
  font-variation-settings: "opsz" 36, "SOFT" 30;
  font-size: 26px;
  color: var(--bg-base);
  line-height: 1;
}

.country-cell .domain {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(243, 237, 226, 0.45);
  margin-top: 8px;
  letter-spacing: 0.04em;
}

.country-cell.current::after {
  content: "OLET TÄSSÄ";
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--accent);
  background: rgba(221, 133, 114, 0.18);
  padding: 3px 6px;
  border-radius: 1px;
}

.country-cell.soon { opacity: 0.62; }
.country-cell.soon:hover { opacity: 0.85; }
.country-cell .soon-tag {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(243, 237, 226, 0.55);
  border: 1px solid rgba(243, 237, 226, 0.18);
  padding: 3px 6px;
  border-radius: 999px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-contrast);
  color: rgba(243, 237, 226, 0.72);
  padding: 64px 0 32px;
  font-family: var(--sans);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(243, 237, 226, 0.12);
}

.footer-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.footer-brand .wordmark {
  font-family: var(--brand);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
  padding-left: 0.18em;
}
.footer-brand .tagline {
  font-family: var(--brand);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(243, 237, 226, 0.5);
  line-height: 1;
  margin-top: 8px;
  padding-left: 0.32em;
}

.footer-tagline {
  margin-top: 8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: rgba(243, 237, 226, 0.55);
  max-width: 28em;
}

.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(243, 237, 226, 0.5);
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
}
.footer-col a:hover { color: var(--bg-base); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  font-size: 12.5px;
  color: rgba(243, 237, 226, 0.55);
  flex-wrap: wrap;
}

.disclosure-block {
  background: rgba(243, 237, 226, 0.04);
  border-left: 2px solid var(--accent);
  padding: 20px 24px;
  margin-bottom: 32px;
  font-size: 13.5px;
  color: rgba(243, 237, 226, 0.75);
  font-style: italic;
  font-family: var(--serif);
  font-variation-settings: "opsz" 16, "SOFT" 60;
  line-height: 1.55;
  max-width: 56em;
}

/* ---------- Inline disclosure (5.9) ---------- */
.inline-disclosure {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px dashed var(--line-strong);
  border-radius: 999px;
  background: var(--bg-base);
}
.inline-disclosure .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ---------- Editorial cards ---------- */
.edit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 40px);
}

.edit-card {
  display: grid;
  gap: 16px;
  cursor: pointer;
}

.edit-card .img {
  aspect-ratio: 4 / 3;
  background: var(--bg-warm);
  overflow: hidden;
}
.edit-card .img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 700ms var(--easing);
}
.edit-card:hover .img img { transform: scale(1.04); }

.edit-card .body { display: grid; gap: 10px; }
.edit-card h3 {
  font-size: clamp(20px, 1.8vw, 24px);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  line-height: 1.18;
}
.edit-card:hover h3 { color: var(--accent-cta); transition: color 200ms var(--easing); }

.edit-card .excerpt {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ---------- Trust ---------- */
.trust {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 4vw, 80px);
  align-items: start;
}
.trust-points {
  display: grid;
  gap: 28px;
  border-left: 1px solid var(--line);
  padding-left: 32px;
}
.trust-point .n {
  font-family: var(--serif);
  font-variation-settings: "opsz" 60, "SOFT" 30;
  font-size: 32px;
  color: var(--accent-deep);
  margin-bottom: 4px;
  font-weight: 300;
}
.trust-point h4 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 24, "SOFT" 30;
  font-size: 22px;
  margin-bottom: 8px;
  line-height: 1.2;
}
.trust-point p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; margin: 0; }

/* ---------- Page header (article/guide intro) ---------- */
.page-head {
  padding: clamp(48px, 7vw, 110px) 0 clamp(36px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: var(--bg-base);
}

.page-head .eyebrow { margin-bottom: 28px; display: inline-block; }
.page-head h1 { margin-bottom: 24px; max-width: 18ch; }
.page-head .lead { margin-bottom: 28px; max-width: 36em; }
.page-head .author-row {
  display: flex; gap: 22px; align-items: center;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-muted);
  flex-wrap: wrap;
}
.page-head .author-row .author {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
}
.page-head .avatar {
  width: 32px; height: 32px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--accent-cta);
  font-weight: 500;
}
.page-head .author-row .sep { color: var(--line-strong); }

/* ---------- TOC / sidebar (review) ---------- */
.with-aside {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.aside {
  position: sticky;
  top: 100px;
  font-family: var(--sans);
}
.aside h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 0 16px;
}
.aside ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 13.5px; }
.aside a {
  color: var(--ink-soft);
  border-left: 1px solid var(--line);
  padding-left: 12px;
  transition: color 200ms var(--easing), border-color 200ms var(--easing);
}
.aside a:hover, .aside a.active { color: var(--accent-cta); border-color: var(--accent-cta); }

/* ---------- Methodology ---------- */
.methodology {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
  padding: clamp(28px, 3vw, 40px) clamp(28px, 4vw, 56px);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  margin: 0 0 24px;
}
.methodology .label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-cta);
  border-right: 1px solid var(--line-strong);
  padding-right: 28px;
  align-self: stretch;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.methodology p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- Trend article ---------- */
.trend-hero {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-warm);
  margin-bottom: 0;
}
.trend-hero img {
  width: 100%; height: 100%; object-fit: cover;
}
.trend-hero-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  padding: clamp(28px, 6vw, 80px);
  background: linear-gradient(to top, rgba(26, 23, 20, 0.78) 0%, rgba(26, 23, 20, 0) 60%);
  color: var(--bg-base);
}
.trend-hero-overlay .eyebrow { color: var(--bg-soft); margin-bottom: 18px; }
.trend-hero-overlay h1 {
  font-family: var(--serif);
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(40px, 6.4vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.024em;
  color: var(--bg-base);
  max-width: 14ch;
}
.trend-hero-overlay .author-row { margin-top: 24px; color: rgba(253, 252, 250, 0.78); }
.trend-hero-overlay .author { color: var(--bg-base); }
.trend-hero-overlay .author-row .sep { color: rgba(253, 252, 250, 0.3); }

.trend-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(36px, 5vw, 80px);
  padding: clamp(48px, 6vw, 88px) 0;
  border-top: 1px solid var(--line);
}
.trend-section.flip { grid-template-columns: 1.2fr 1fr; }
.trend-section.flip .ts-img { order: 2; }
.trend-section.flip .ts-body { order: 1; }

.ts-img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-warm);
}
.ts-img img { width: 100%; height: 100%; object-fit: cover; }
.ts-body { padding-top: 20px; }
.ts-body .num {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  color: var(--accent-cta);
  margin-bottom: 18px;
}
.ts-body h2 { margin-bottom: 18px; }
.ts-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 1.1em;
  max-width: 36em;
}

.ts-picks {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* ---------- Pullquote ---------- */
.pullquote {
  font-family: var(--serif);
  font-variation-settings: "opsz" 60, "SOFT" 70;
  font-style: italic;
  font-weight: 350;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: -0.012em;
  text-align: center;
  padding: clamp(48px, 6vw, 88px) clamp(24px, 4vw, 80px);
  max-width: 24ch;
  margin: 0 auto;
  position: relative;
}
.pullquote::before {
  content: "“";
  display: block;
  font-size: 1.4em;
  line-height: 0.5;
  color: var(--accent-deep);
  margin-bottom: 12px;
  font-style: normal;
}

/* ---------- Featured block ---------- */
.featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  background: var(--bg-soft);
}
.featured .img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.featured .img img { width: 100%; height: 100%; object-fit: cover; }
.featured .body {
  padding: clamp(36px, 5vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}
.featured .body h2 { max-width: 14ch; }
.featured .body .lead { max-width: 32em; }
.featured .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.featured .stat .n {
  font-family: var(--serif);
  font-variation-settings: "opsz" 60, "SOFT" 30;
  font-size: 34px;
  line-height: 1;
  color: var(--accent-deep);
  letter-spacing: -0.022em;
}
.featured .stat .l {
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 8px;
}

/* ---------- Sticky CTA (mobile) ---------- */

/* ---------- View switcher + demo marker (dev chrome) ---------- */
.dev-chrome {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
.dev-chrome > * { pointer-events: auto; }

.demo-marker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 23, 20, 0.88);
  color: rgba(253, 252, 250, 0.78);
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.demo-marker .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(221, 133, 114, 0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.view-switcher {
  background: var(--ink);
  color: var(--bg-base);
  border-radius: 999px;
  padding: 6px;
  display: flex;
  gap: 2px;
  box-shadow: 0 18px 44px -16px rgba(26, 23, 20, 0.55);
  font-family: var(--sans);
}
.view-switcher button {
  background: none;
  border: none;
  color: rgba(243, 237, 226, 0.65);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition: all 200ms var(--easing);
}
.view-switcher button:hover { color: var(--bg-base); }
.view-switcher button.active {
  background: var(--bg-base);
  color: var(--ink);
}

/* ---------- Mobile ---------- */
@media (max-width: 1080px) {
  .header-bar { grid-template-columns: auto 1fr auto; }
  .header-left { display: none; }
  .hero { grid-template-columns: 1fr; gap: 32px; }
  .hero-image { aspect-ratio: 3 / 4; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .shop-entry {
    grid-template-columns: 56px 1fr;
    grid-template-areas:
      "rank head"
      ". pros"
      ". score";
    row-gap: 16px;
  }
  .shop-entry .rank { font-size: 56px; grid-area: rank; }
  .shop-entry .head { grid-area: head; }
  .shop-entry .pros-wrap { grid-area: pros; }
  .shop-entry .shop-score { grid-area: score; flex-direction: row; align-items: center; gap: 24px; min-width: 0; }
  .shop-entry .score-block { border-left: none; padding-left: 0; text-align: left; }
  .verdict { grid-template-columns: 1fr; }
  .with-aside { grid-template-columns: 1fr; }
  .aside { display: none; }
  .featured { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; }
  .trend-section, .trend-section.flip { grid-template-columns: 1fr; }
  .trend-section.flip .ts-img { order: 0; }
  .trend-section.flip .ts-body { order: 1; }
  .country-grid { grid-template-columns: repeat(3, 1fr); }
  .country-cell:nth-child(3n) { border-right: none; }
  .country-cell:nth-child(-n+3) { border-bottom: 1px solid rgba(243, 237, 226, 0.12); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .edit-list { grid-template-columns: 1fr; }
  .compare-wrap .compare-table { display: none; }
  .compare-mobile { display: grid; gap: 12px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .pillar-grid { grid-template-columns: 1fr; }
  .strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin: 0 calc(-1 * var(--gutter));
    padding: 0 var(--gutter);
    gap: 16px;
    scrollbar-width: none;
  }
  .strip::-webkit-scrollbar { display: none; }
  .strip > * {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .country-cell:nth-child(2n) { border-right: none; }
  .country-cell:not(:nth-last-child(-n+2)) { border-bottom: 1px solid rgba(243, 237, 226, 0.12); }
  .footer-top { grid-template-columns: 1fr; }
  .proscons { grid-template-columns: 1fr; }
  .proscons .pros { border-right: none; border-bottom: 1px solid var(--line); }
  .ts-picks { grid-template-columns: 1fr; }
  .header-right .header-search { display: none; }
}

/* ---------- Mobile comparison cards ---------- */
.compare-mcard {
  border: 1px solid var(--line);
  padding: 20px;
  display: grid;
  gap: 12px;
  background: var(--bg-base);
}
.compare-mcard .shop-cell {
  font-family: var(--serif);
  font-size: 22px;
  font-variation-settings: "opsz" 24, "SOFT" 30;
}
.compare-mcard .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.compare-mcard .cell .l {
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.compare-mcard .cell .v { font-size: 14px; color: var(--ink); }
.compare-mcard .pris { font-family: var(--mono); font-size: 13px; letter-spacing: 0.04em; }

/* ---------- Fade-in ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(8px);
  animation: fadeIn 600ms var(--easing) forwards;
}
@keyframes fadeIn {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Misc ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 12px;
}
.kicker::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--accent);
}

/* ============================================================
   APPENDED — staging-image-placeholders skill + link-soon helper
   ============================================================ */

/* First-party image placeholder — replaces every <div class="img-tile">.
   Used in lieu of unlicensed hotlinks. Hero gets a wider aspect override. */
.img-tile {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  background: var(--bg-soft) url("/assets/img/rack-neutral.webp") center / cover no-repeat;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.hero-image .img-tile,
.hero-image > .img-tile { aspect-ratio: 4 / 5; height: 100%; border-radius: 0; }
.pillar-card .img-tile { aspect-ratio: 3 / 4; height: 100%; border-radius: 0; border: 0; }
.featured .img .img-tile { aspect-ratio: 4 / 5; height: 100%; border-radius: 0; border: 0; }
.edit-card .img .img-tile { aspect-ratio: 4 / 3; height: 100%; border-radius: 0; border: 0; }

/* Disabled "tulossa" links — look like text, not clickable promises */
a.link-soon,
.pillar-card.link-soon,
.header-left a.link-soon,
.country-cell.link-soon {
  color: var(--ink-muted);
  cursor: default;
  pointer-events: none;
  opacity: 0.78;
}
.pillar-card.link-soon::after {
  content: "Tulossa";
  position: absolute;
  top: 18px; right: 18px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253,252,250,0.9);
  background: rgba(26,23,20,0.55);
  padding: 4px 8px;
  border-radius: 999px;
  z-index: 5;
}

/* Prose-page utility (used by /om/, /kontakt/, etc — kept for the 11 not-yet-rebuilt pages) */
.prose-page {
  padding: clamp(48px, 6vw, 88px) 0;
}
.prose-page p { font-family: var(--serif); font-size: 18px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 1.1em; max-width: 38em; }
.wrap--narrow { width: 100%; max-width: 780px; margin: 0 auto; padding: 0 var(--gutter); }

/* Contact form (/over-ons/) */
.honeypot { position: absolute; left: -9999px; }
.contact-form input,
.contact-form textarea {
  font-family: var(--sans, inherit);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--bg, #fff);
  color: var(--ink);
  width: 100%;
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid var(--accent-deep, #333); outline-offset: 1px; }

/* Licensed photos pr. tile (2026-07-20) — dokumentation: repo-rodens IMAGE-LICENSES.md */
.img-tile[aria-label="Pashion.fi – vaateverkkokauppojen opas"] { background-image: url("/assets/img/rack-neutral.webp"); }

/* ----- Country-switcher (ensret DE-look, alle 6 markeder) --- */
.country-switcher { position: relative; display: inline-flex; }
.country-switcher .cs-trigger {
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.country-switcher .cs-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: var(--bg-base);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 230px;
  display: none;
  z-index: 60;
  box-shadow: 0 12px 40px rgba(26,23,20,0.10);
}
.country-switcher[data-open="true"] .cs-menu { display: block; }
.country-switcher .cs-menu li {
  list-style: none;
  padding: 0;
  font-size: 14px;
  border-radius: var(--radius-sm);
}
.country-switcher .cs-menu li a,
.country-switcher .cs-menu li > span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: var(--ink);
  text-decoration: none;
  border-radius: var(--radius-sm);
}
.country-switcher .cs-menu li a:hover { background: var(--bg-warm, rgba(0,0,0,0.04)); }
.country-switcher .cs-menu li[aria-current="page"] > span {
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 500;
}

/* ----- Footer sibling-pills (ensret DE-look) ---------------- */
.footer-switcher { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-switcher a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(253,252,250,0.06);
  border: 1px solid rgba(253,252,250,0.14);
  color: rgba(253,252,250,0.82);
  text-decoration: none;
}
.footer-switcher a:hover { background: rgba(253,252,250,0.12); }
.footer-switcher a[aria-current="page"] { background: var(--accent); color: var(--bg-contrast); border-color: transparent; }

/* ----- SVG-flag (renderer ens på alle OS) ------------------- */
.flag-svg {
  width: 1.25em;
  height: 0.9375em;
  border-radius: 2px;
  flex: 0 0 auto;
  vertical-align: middle;
  box-shadow: 0 0 0 1px rgba(128,128,128,0.35);
}
.country-switcher .cs-trigger .flag-svg { width: 18px; height: 13.5px; }
