/* ============================================================
   THOMPSON & JONES · Négociants · Fine & Rare Wine · MMXXVI
   Design system drawn from the house cards: cream & ink,
   antique gold, burgundy, deep plum. All hairlines, no noise.
   ============================================================ */

:root {
  /* palette */
  --plum-0: #120a0e;
  --plum-1: #1a1015;
  --plum-2: #221319;
  --plum-3: #2b1820;
  --cream: #f3edda;
  --cream-2: #ede5cf;
  --paper: #f7f2e3;
  --ink: #261b17;
  --ink-soft: #4a3a33;
  --gold: #c9a45c;
  --gold-soft: #b39250;
  --gold-deep: #9c7c3c;
  --burgundy: #6e1f2e;
  --burgundy-2: #8a2839;
  --on-dark: #ece3cd;
  --on-dark-muted: #b9ab92;
  --on-dark-faint: #8f8272;
  --hair-dark: rgba(201, 164, 92, 0.28);
  --hair-light: rgba(156, 124, 60, 0.38);

  /* type */
  --serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --body: "EB Garamond", Georgia, "Times New Roman", serif;

  --w: 1140px;
  --w-narrow: 780px;
  --pad: clamp(1.25rem, 5vw, 3rem);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { background: var(--plum-0); }
body {
  font-family: var(--body);
  font-size: clamp(1.0625rem, 0.95rem + 0.35vw, 1.1875rem);
  line-height: 1.65;
  color: var(--on-dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--burgundy); color: var(--cream); }

/* faint paper grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow .sep { color: var(--burgundy-2); padding: 0 0.35em; }
.light .eyebrow { color: var(--gold-deep); }
.light .eyebrow .sep { color: var(--burgundy); }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; }
h1 { font-size: clamp(2.9rem, 2rem + 4.5vw, 6rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(2rem, 1.5rem + 2.4vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 1.2rem + 0.8vw, 1.8rem); }
h1 em, h2 em, h3 em, .gold-i { font-style: italic; font-weight: 500; color: var(--gold); }
.light h1 em, .light h2 em, .light h3 em { color: var(--burgundy); }

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 1.1rem + 0.9vw, 1.7rem);
  line-height: 1.5;
  color: var(--on-dark-muted);
}
.light .lede { color: var(--ink-soft); }

p + p { margin-top: 1em; }
.prose { max-width: 62ch; }
.prose strong { font-weight: 600; color: var(--cream); }
.light .prose strong { color: var(--ink); }

.small-caps {
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

/* big roman numeral */
.roman {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(4rem, 3rem + 6vw, 8.5rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px var(--hair-dark);
  user-select: none;
}
.light .roman { -webkit-text-stroke: 1px var(--hair-light); }

/* hairline rules & ornaments */
.rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;
}
.rule::before, .rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hair-dark));
}
.rule::after { background: linear-gradient(90deg, var(--hair-dark), transparent); }
.light .rule::before { background: linear-gradient(90deg, transparent, var(--hair-light)); }
.light .rule::after { background: linear-gradient(90deg, var(--hair-light), transparent); }

.diamond {
  width: 7px; height: 7px;
  background: var(--burgundy-2);
  transform: rotate(45deg);
  flex: none;
}
.diamond.gold { background: var(--gold); }
.light .diamond { background: var(--burgundy); }

/* monogram */
.monogram {
  display: inline-grid;
  place-items: center;
  width: 58px; height: 58px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  flex: none;
}
.monogram span {
  transform: rotate(-45deg);
  font-family: var(--serif);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  padding-left: 0.18em;
}
.monogram.sm { width: 40px; height: 40px; }
.monogram.sm span { font-size: 0.68rem; }

/* ---------- sections ---------- */
.section { position: relative; padding: clamp(5rem, 12vh, 9.5rem) var(--pad); }
.section.tight { padding-block: clamp(3.5rem, 8vh, 6rem); }
.wrap { max-width: var(--w); margin: 0 auto; }
.wrap.narrow { max-width: var(--w-narrow); }
.center { text-align: center; }

.dark { background: var(--plum-1); color: var(--on-dark); }
.darker { background: var(--plum-0); color: var(--on-dark); }
.light { background: var(--cream); color: var(--ink); }
.light-2 { background: var(--paper); color: var(--ink); }

.section-head { margin-bottom: clamp(2.5rem, 6vh, 4.5rem); }
.section-head .eyebrow { display: block; margin-bottom: 1.1rem; }
.section-head h2 { max-width: 22ch; }
.section-head.center h2 { margin-inline: auto; }
.section-head .lede { margin-top: 1.4rem; max-width: 52ch; }
.section-head.center .lede { margin-inline: auto; }

/* ---------- header / nav ---------- */
.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem var(--pad);
  transition: background 0.45s ease, box-shadow 0.45s ease, padding 0.45s ease;
}
.site-head.scrolled {
  background: rgba(18, 10, 14, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(201, 164, 92, 0.16);
  padding-block: 0.6rem;
}
.brand { display: flex; align-items: center; gap: 1rem; }
.brand .monogram { transition: transform 0.4s ease; }
.brand:hover .monogram { transform: rotate(45deg) scale(1.06); }
.brand-word {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}
.brand-sub {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-top: 0.3rem;
}
.site-nav { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2.2rem); }
.site-nav a {
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.3s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%; bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: left 0.35s ease, right 0.35s ease;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--gold); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { left: 0; right: 0; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--hair-dark);
  color: var(--gold);
  font-family: var(--serif);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.65rem 1rem 0.55rem;
  cursor: pointer;
}

/* mobile overlay menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: radial-gradient(120% 100% at 50% 120%, #35131e 0%, var(--plum-0) 60%);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.nav-overlay.open { opacity: 1; visibility: visible; }
.nav-overlay nav { display: grid; gap: 1.6rem; text-align: center; }
.nav-overlay a {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 6vw, 2.4rem);
  color: var(--cream);
  letter-spacing: 0.08em;
}
.nav-overlay a:hover { color: var(--gold); font-style: italic; }
.nav-overlay .small-caps { color: var(--gold); letter-spacing: 0.42em; }

@media (max-width: 900px) {
  .site-nav { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 520px) {
  .brand { gap: 0.7rem; }
  .brand-word { font-size: 0.74rem; letter-spacing: 0.2em; }
  .brand-sub { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 7.5rem var(--pad) 9rem;
  background:
    radial-gradient(90% 60% at 50% 115%, rgba(110, 31, 46, 0.4) 0%, transparent 60%),
    radial-gradient(70% 55% at 50% -10%, rgba(201, 164, 92, 0.08) 0%, transparent 55%),
    var(--plum-0);
  overflow: hidden;
}
/* vine rows: faint diagonal hairlines */
.hero::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: repeating-linear-gradient(
    115deg,
    transparent 0 54px,
    rgba(201, 164, 92, 0.05) 54px 55px
  );
  pointer-events: none;
}
.hero-inner { position: relative; max-width: 900px; display: grid; justify-items: center; }
.hero .monogram { margin-bottom: 2.2rem; }
.hero-title {
  color: var(--cream);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 1rem + 4.6vw, 4.3rem);
  line-height: 1.15;
}
.hero-tag {
  margin-top: 1.2rem;
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--burgundy-2);
}
.hero-tag .amp { color: var(--gold); }
.hero-statement {
  margin-top: 3.2rem;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.1rem, 1.4rem + 3.4vw, 4rem);
  line-height: 1.14;
  color: var(--cream);
  max-width: 17ch;
}
.hero-statement em { color: var(--gold); }
.hero-sub {
  margin-top: 2rem;
  max-width: 56ch;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.35rem);
  color: var(--on-dark-muted);
}
.hero-meta {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.3rem;
  color: var(--gold);
}
.hero-meta .small-caps { letter-spacing: 0.42em; }
.hero-scroll {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  color: var(--on-dark-faint);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-family: var(--serif);
  display: grid;
  justify-items: center;
  gap: 0.7rem;
}
.hero-scroll::after {
  content: "";
  width: 1px; height: 44px;
  background: linear-gradient(var(--gold), transparent);
  animation: drip 2.6s ease-in-out infinite;
}
@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(10px); opacity: 0; }
}

/* ---------- territory index cards ---------- */
.terr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 1px;
  background: var(--hair-dark);
  border: 1px solid var(--hair-dark);
}
.terr-card {
  position: relative;
  background: var(--plum-1);
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.4rem) clamp(2.4rem, 4vw, 3.2rem);
  display: grid;
  align-content: start;
  gap: 1.1rem;
  min-height: 340px;
  overflow: hidden;
  transition: background 0.5s ease;
}
.terr-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 90% at 50% 120%, rgba(110, 31, 46, 0.45), transparent 65%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.terr-card:hover { background: var(--plum-2); }
.terr-card:hover::after { opacity: 1; }
.terr-no {
  font-family: var(--serif);
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
}
.terr-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 1.4rem + 1.2vw, 2.3rem);
  line-height: 1.05;
  color: var(--cream);
  position: relative;
  z-index: 1;
}
.terr-epithet {
  font-family: var(--serif);
  font-style: italic;
  color: var(--on-dark-muted);
  font-size: 1.02rem;
  position: relative;
  z-index: 1;
}
.terr-grapes {
  margin-top: auto;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(201, 164, 92, 0.16);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-family: var(--serif);
  color: var(--on-dark-faint);
  line-height: 2;
  position: relative;
  z-index: 1;
}
.terr-cta {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.terr-cta::after { content: "→"; letter-spacing: 0; transition: transform 0.35s ease; }
.terr-card:hover .terr-cta::after { transform: translateX(6px); }

/* ---------- cream label card (Lot 001 style) ---------- */
.label-card {
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--gold-deep);
  outline: 1px solid var(--gold-deep);
  outline-offset: -7px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.4rem, 3vw, 2.6rem);
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  display: grid;
  gap: 0.9rem;
  justify-items: center;
}
.label-card .lc-top {
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 0.66rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  line-height: 2;
}
.label-card .lc-lot {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--ink);
}
.label-card .lc-cepage {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
}
.label-card .lc-rule { width: 64px; height: 1px; background: var(--burgundy); margin: 0.6rem 0; }
.label-card .lc-meta {
  font-family: var(--serif);
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 2.4;
}

/* ---------- tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); }
/* four-up sets read as a balanced 2x2 rather than wrapping 3 + 1 */
.tiers.quad { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.8rem, 3.5vw, 3rem) clamp(2rem, 5vw, 4.5rem); }
@media (max-width: 700px) { .tiers.quad { grid-template-columns: 1fr; } }
.tier {
  border-top: 1px solid var(--hair-light);
  padding-top: 1.8rem;
  display: grid;
  gap: 0.85rem;
  align-content: start;
}
.tier .t-no { color: var(--burgundy); font-family: var(--serif); font-size: 0.66rem; letter-spacing: 0.4em; text-transform: uppercase; }
.tier h3 { color: var(--ink); }
.tier .t-line { font-family: var(--serif); font-style: italic; font-size: 1.25rem; color: var(--gold-deep); }
.tier p { color: var(--ink-soft); font-size: 1rem; max-width: 38ch; }

/* ---------- blind glasses ---------- */
.glass-duel {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: stretch;
}
.glass {
  border: 1px solid var(--hair-dark);
  padding: clamp(1.8rem, 3.5vw, 2.8rem) clamp(1.2rem, 2.5vw, 2rem);
  text-align: center;
  display: grid;
  gap: 0.8rem;
  align-content: start;
  background: linear-gradient(180deg, rgba(201, 164, 92, 0.04), transparent 55%);
}
.light .glass { border-color: var(--hair-light); background: linear-gradient(180deg, rgba(156, 124, 60, 0.06), transparent 55%); }
.glass .g-no { font-family: var(--serif); font-size: 0.64rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); }
.light .glass .g-no { color: var(--gold-deep); }
.glass .g-name { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 500; }
.glass .g-desc { font-family: var(--serif); font-style: italic; font-size: 0.98rem; color: var(--on-dark-muted); }
.light .glass .g-desc { color: var(--ink-soft); }
.glass .g-verdict { font-family: var(--serif); font-style: italic; font-size: clamp(1.45rem, 2.6vw, 2rem); font-weight: 400; color: var(--cream); margin-top: 0.4rem; }
.light .glass .g-verdict { color: var(--ink); }
.glass.ours { border-color: var(--gold); outline: 1px solid var(--gold); outline-offset: -6px; }
.glass.ours .g-verdict { color: var(--gold); }
.light .glass.ours .g-verdict { color: var(--burgundy); }
.glass-vs {
  align-self: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--on-dark-faint);
}
.light .glass-vs { color: var(--ink-soft); }
.glass-note { margin-top: 2rem; text-align: center; font-family: var(--serif); font-style: italic; color: var(--on-dark-muted); }
.light .glass-note { color: var(--ink-soft); }
@media (max-width: 640px) {
  .glass-duel { grid-template-columns: 1fr; }
  .glass-vs { text-align: center; }
}

/* ---------- pull quote ---------- */
.pull {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.7rem, 1.3rem + 2.2vw, 3rem);
  line-height: 1.28;
  max-width: 26ch;
  margin-inline: auto;
  text-align: center;
}
.pull em { color: var(--gold); }
.light .pull em { color: var(--burgundy); }
.pull-attr { margin-top: 1.8rem; text-align: center; }

/* ---------- founders ---------- */
.founders { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: clamp(1.5rem, 3vw, 2.5rem); }
.founder-card {
  position: relative;
  background:
    radial-gradient(120% 100% at 50% 130%, rgba(110, 31, 46, 0.35) 0%, transparent 60%),
    var(--plum-2);
  border: 1px solid rgba(201, 164, 92, 0.2);
  padding: clamp(2.5rem, 5vw, 3.5rem) 2rem;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 1rem;
}
.founder-card .monogram { margin-bottom: 0.8rem; }
.founder-name { font-family: var(--serif); font-weight: 500; font-size: clamp(1.7rem, 3vw, 2.2rem); color: var(--cream); }
.founder-role { font-family: var(--serif); font-size: 0.66rem; letter-spacing: 0.44em; text-transform: uppercase; color: var(--gold); }
.founder-rule { width: 56px; height: 1px; background: rgba(201, 164, 92, 0.4); margin: 0.5rem 0; }
.founder-card a.mail {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--on-dark-muted);
  transition: color 0.3s ease;
}
.founder-card a.mail:hover { color: var(--gold); }
.founder-tel { font-family: var(--serif); font-size: 0.95rem; letter-spacing: 0.12em; color: var(--on-dark-faint); }

/* ---------- footer ---------- */
.site-foot {
  background: var(--plum-0);
  border-top: 1px solid rgba(201, 164, 92, 0.16);
  padding: clamp(3.5rem, 8vh, 6rem) var(--pad) 2.5rem;
  text-align: center;
}
.site-foot .monogram { margin: 0 auto 1.6rem; }
.foot-word { font-family: var(--serif); letter-spacing: 0.34em; text-transform: uppercase; color: var(--cream); font-size: 1rem; }
.foot-sub { margin-top: 0.9rem; font-family: var(--serif); font-size: 0.64rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--burgundy-2); }
.foot-cities { margin-top: 2.2rem; font-family: var(--serif); font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--on-dark-faint); line-height: 2.2; }
.foot-cities .diamond { display: inline-block; width: 4px; height: 4px; margin: 0 0.8em 0.14em; background: var(--gold-deep); }
.foot-nav { margin-top: 2.4rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1.6rem 2.2rem; }
.foot-nav a { font-family: var(--serif); font-size: 0.66rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--on-dark-muted); }
.foot-nav a:hover { color: var(--gold); }
.foot-fine { margin-top: 2.8rem; font-family: var(--serif); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--on-dark-faint); }

/* ---------- territory page specifics ---------- */
.t-hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-content: center;
  padding: 9rem var(--pad) 4.5rem;
  background:
    radial-gradient(85% 55% at 50% 118%, rgba(110, 31, 46, 0.42) 0%, transparent 62%),
    var(--plum-0);
  overflow: hidden;
  text-align: center;
}
.t-hero::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: repeating-linear-gradient(115deg, transparent 0 54px, rgba(201, 164, 92, 0.045) 54px 55px);
  pointer-events: none;
}
.t-hero .wrap { display: grid; justify-items: center; position: relative; }
.t-hero .roman { position: absolute; top: -1.2em; left: 50%; transform: translateX(-50%); z-index: 0; }
.t-hero .eyebrow { margin: 2.4rem 0 1.4rem; position: relative; }
.t-hero h1 { position: relative; color: var(--cream); }
.t-hero .lede { position: relative; margin-top: 1.6rem; max-width: 46ch; }

.stat-strip {
  margin-top: clamp(3rem, 7vh, 4.5rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  border-block: 1px solid var(--hair-dark);
  width: 100%;
  max-width: 980px;
}
.stat {
  padding: 1.6rem 1rem;
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 22%; bottom: 22%;
  width: 1px;
  background: var(--hair-dark);
}
.stat b { font-family: var(--serif); font-weight: 500; font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--gold); }
.stat span { font-family: var(--serif); font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--on-dark-faint); text-align: center; line-height: 1.9; }
@media (max-width: 800px) {
  .stat + .stat::before { display: none; }
  .stat { border-top: 1px solid var(--hair-dark); }
  .stat:first-child { border-top: none; }
}

/* two-column editorial */
.duo {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}
.duo .sticky-side { position: sticky; top: 7rem; }
@media (max-width: 860px) {
  .duo { grid-template-columns: 1fr; }
  .duo .sticky-side { position: static; }
}

/* drop cap */
.dropcap::first-letter {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 3.4em;
  float: left;
  line-height: 0.82;
  padding: 0.08em 0.14em 0 0;
  color: var(--burgundy);
}
.dark .dropcap::first-letter, .darker .dropcap::first-letter { color: var(--gold); }

/* grape ledger */
.grape-ledger { display: grid; }
.grape {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.2rem clamp(1.2rem, 3vw, 2.6rem);
  align-items: baseline;
  padding: clamp(1.6rem, 3vh, 2.2rem) 0;
  border-top: 1px solid var(--hair-light);
}
.grape:last-child { border-bottom: 1px solid var(--hair-light); }
.grape .g-idx { font-family: var(--serif); font-size: 0.66rem; letter-spacing: 0.3em; color: var(--burgundy); align-self: start; padding-top: 0.5rem; }
.grape .g-body h3 { color: var(--ink); font-weight: 500; }
.grape .g-body .g-say { font-family: var(--serif); font-style: italic; color: var(--gold-deep); font-size: 0.95rem; margin-top: 0.15rem; }
.grape .g-body p { margin-top: 0.7rem; color: var(--ink-soft); font-size: 1.02rem; max-width: 58ch; }
.grape .g-tag {
  font-family: var(--serif);
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--hair-light);
  padding: 0.55rem 0.9rem 0.45rem;
  white-space: nowrap;
  align-self: start;
  margin-top: 0.4rem;
}
@media (max-width: 700px) {
  .grape { grid-template-columns: 1fr; gap: 0.6rem; }
  /* long benchmark tags must wrap on narrow screens or they force the page wide */
  .grape .g-tag { justify-self: start; white-space: normal; }
}

/* timeline */
.timeline { position: relative; display: grid; gap: clamp(2.2rem, 5vh, 3.4rem); padding-left: 2.2rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 3px; top: 6px; bottom: 6px;
  width: 1px;
  background: linear-gradient(var(--hair-dark), transparent);
}
.tl-item { position: relative; display: grid; gap: 0.45rem; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -2.2rem; top: 0.5em;
  width: 7px; height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}
.tl-item .tl-when { font-family: var(--serif); font-size: 0.68rem; letter-spacing: 0.36em; text-transform: uppercase; color: var(--gold); }
.tl-item h3 { color: var(--cream); font-size: 1.3rem; }
.tl-item p { color: var(--on-dark-muted); font-size: 1rem; max-width: 56ch; }

/* benchmark table */
.bench { display: grid; border-top: 1px solid var(--hair-light); }
.bench-row {
  display: grid;
  grid-template-columns: minmax(0, 5fr) auto minmax(0, 5fr) auto;
  gap: 1rem clamp(1rem, 3vw, 2.4rem);
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--hair-light);
}
.bench-row .b-ours { font-family: var(--serif); font-weight: 500; font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--ink); }
.bench-row .b-ours i { display: block; font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 0.92rem; color: var(--gold-deep); margin-top: 0.2rem; }
.bench-row .b-vs { font-family: var(--serif); font-style: italic; color: var(--burgundy); font-size: 0.95rem; }
.bench-row .b-them { font-family: var(--serif); font-size: 1.02rem; color: var(--ink-soft); }
.bench-row .b-note {
  font-family: var(--serif);
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--burgundy);
  border: 1px solid var(--hair-light);
  padding: 0.55rem 0.85rem 0.45rem;
  white-space: nowrap;
}
@media (max-width: 760px) {
  .bench-row { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.3rem 0; }
  .bench-row .b-note { justify-self: start; margin-top: 0.4rem; white-space: normal; }
}

/* latitude diagram */
.latitude { margin-top: clamp(2.5rem, 6vh, 4rem); }
.latitude svg { width: 100%; height: auto; overflow: visible; }
.latitude text { font-family: var(--serif); }

/* why-age panel */
.age-panel {
  border: 1px solid var(--hair-dark);
  outline: 1px solid var(--hair-dark);
  outline-offset: -8px;
  padding: clamp(2.2rem, 5vw, 3.6rem);
  background: linear-gradient(180deg, rgba(201, 164, 92, 0.05), transparent 60%);
}
.age-panel h3 { color: var(--cream); margin-bottom: 1rem; }
.age-panel p { color: var(--on-dark-muted); font-size: 1.02rem; }
.age-list { margin-top: 1.6rem; display: grid; gap: 1.1rem; }
.age-list li { list-style: none; display: grid; grid-template-columns: auto 1fr; gap: 0.9rem; align-items: baseline; color: var(--on-dark-muted); font-size: 1rem; }
.age-list li::before { content: "◇"; color: var(--gold); font-size: 0.8rem; }
.age-list li b { color: var(--cream); font-weight: 600; }

/* next / prev territory */
.terr-next {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--hair-dark);
}
.terr-next a {
  padding: clamp(2.5rem, 6vh, 4rem) var(--pad);
  display: grid;
  gap: 0.7rem;
  transition: background 0.4s ease;
}
.terr-next a:hover { background: var(--plum-2); }
.terr-next a + a { border-left: 1px solid var(--hair-dark); text-align: right; justify-items: end; }
.terr-next .small-caps { color: var(--gold); letter-spacing: 0.38em; }
.terr-next .n-name { font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.2rem); font-weight: 500; color: var(--cream); }
.terr-next a:hover .n-name { font-style: italic; }
@media (max-width: 640px) {
  .terr-next { grid-template-columns: 1fr; }
  .terr-next a + a { border-left: none; border-top: 1px solid var(--hair-dark); }
}

/* cta band */
.cta-band { text-align: center; }
.cta-band .btn { margin-top: 2.6rem; }
.btn {
  display: inline-block;
  font-family: var(--serif);
  font-size: 0.72rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 1.15rem 2.6rem 1.05rem;
  position: relative;
  transition: color 0.35s ease, background 0.35s ease;
}
.btn:hover { background: var(--gold); color: var(--plum-0); }
.btn.on-light { color: var(--burgundy); border-color: var(--burgundy); }
.btn.on-light:hover { background: var(--burgundy); color: var(--cream); }

/* reveal animation */
/* animates the independent `translate` property, never `transform`,
   so rotated elements (the T·J diamond) keep their own transform */
.reveal { opacity: 0; translate: 0 26px; transition: opacity 0.9s cubic-bezier(0.2, 0.6, 0.2, 1), translate 0.9s cubic-bezier(0.2, 0.6, 0.2, 1); }
.reveal.in { opacity: 1; translate: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; translate: none; transition: none; }
  .hero-scroll::after { animation: none; }
}

/* utility */
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.gap-sections { display: grid; gap: clamp(3rem, 8vh, 5.5rem); }

/* ============================================================
   THE JOURNEY: a bespoke atlas, scrolled like a private map table
   ============================================================ */

.journey { position: relative; background: var(--plum-0); }

.journey-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: radial-gradient(120% 90% at 50% 0%, #1b1016 0%, var(--plum-0) 70%);
}
.atlas-wrap { position: absolute; inset: 0; }
.atlas-svg { width: 100%; height: 100%; display: block; }

/* the camera: everything inside glides, the compass and vignette do not */
.at-camera {
  transform: translate(800px, 500px) scale(1) translate(-818px, -539px);
  transition: transform 2.1s cubic-bezier(0.42, 0.02, 0.18, 1);
  will-change: transform;
}
.atlas-svg { --z: 1; }

/* hairlines stay hairlines at every zoom */
.at-grat path, .at-land path, .at-rivers path, .at-routes path,
.at-country path, .at-compass * { vector-effect: non-scaling-stroke; }

.at-grat path { fill: none; stroke: var(--gold); stroke-width: 0.5; opacity: 0.09; }
.at-land path { fill: #1a1015; stroke: var(--gold); stroke-width: 0.6; opacity: 0.5; }
.at-rivers path { fill: none; stroke: var(--gold); stroke-width: 0.6; opacity: 0.22; }
.at-rivers path.danube { stroke-width: 1.1; opacity: 0.4; }

.at-country .at-fill { fill: #211318; transition: fill 1.2s ease; }
.at-country .at-hatch { fill: url(#tj-hatch); opacity: 0.1; transition: opacity 1.2s ease; }
.at-country .at-stroke { fill: none; stroke: var(--gold); stroke-width: 0.9; opacity: 0.4; transition: opacity 1.2s ease, stroke-width 1.2s ease; }
.at-country.is-active .at-fill { fill: #3d1d29; }
.at-country.is-active .at-hatch { opacity: 0.4; }
.at-country.is-active .at-stroke { opacity: 1; stroke-width: 1.6; }

/* routes draw themselves in when their chapter arrives */
.at-route, .at-onward {
  fill: none;
  stroke: var(--gold);
  stroke-dasharray: 3 6;
  stroke-width: 1;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.at-route.is-lit { opacity: 0.75; }
.at-onward.is-lit { opacity: 0.42; stroke-width: 0.9; }

.at-dia { fill: var(--burgundy-2); stroke: var(--gold); stroke-width: 0.8; vector-effect: non-scaling-stroke; }
.at-region { opacity: 0; transition: opacity 1s ease; }
.at-region.is-lit { opacity: 1; }
.at-rlabel {
  font-family: var(--serif);
  font-size: calc(13px / var(--z));
  fill: var(--cream);
  letter-spacing: calc(0.5px / var(--z));
  dominant-baseline: middle;
  paint-order: stroke fill;
  stroke: var(--plum-0);
  stroke-width: calc(3px / var(--z));
}

.at-city { opacity: 0.35; transition: opacity 1.1s ease; }
.at-city.is-lit { opacity: 1; }
.at-city.at-secondary { opacity: 0; }
.at-city.at-secondary.is-lit { opacity: 1; }
.at-dot { fill: var(--gold); }
.at-halo { fill: none; stroke: var(--gold); stroke-width: 0.7; opacity: 0; transition: opacity 1s ease; vector-effect: non-scaling-stroke; }
.at-city.is-lit .at-halo { opacity: 0.45; }
.at-clabel {
  font-family: var(--serif);
  font-size: calc(14px / var(--z));
  fill: var(--gold);
  letter-spacing: calc(1.6px / var(--z));
  dominant-baseline: middle;
  paint-order: stroke fill;
  stroke: var(--plum-0);
  stroke-width: calc(3px / var(--z));
}

.at-cname {
  font-family: var(--serif);
  font-size: calc(19px / var(--z));
  fill: var(--cream);
  opacity: 0.4;
  letter-spacing: calc(4.5px / var(--z));
  transition: opacity 1.1s ease;
  paint-order: stroke fill;
  stroke: var(--plum-0);
  stroke-width: calc(3.5px / var(--z));
}
.at-cname.is-active { opacity: 0.95; }

.at-crose-ring { fill: none; stroke: var(--gold); stroke-width: 0.6; opacity: 0.45; }
.at-crose-n { fill: var(--burgundy-2); stroke: var(--gold); stroke-width: 0.5; }
.at-crose-s { fill: none; stroke: var(--gold); stroke-width: 0.5; opacity: 0.55; }
.at-crose-tick { stroke: var(--gold); stroke-width: 0.6; opacity: 0.5; }
.at-crose-lbl { font-family: var(--serif); font-size: 12px; fill: var(--gold); letter-spacing: 2px; }
.at-compass { opacity: 0.75; }
.at-vignette { pointer-events: none; }

/* the chapters that scroll over the map */
.journey-rail { position: relative; margin-top: -100svh; }
.jchapter {
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding: 6rem var(--pad);
  max-width: var(--w);
  margin: 0 auto;
}
.jcard {
  max-width: 30rem;
  background: linear-gradient(160deg, rgba(18, 10, 14, 0.93), rgba(18, 10, 14, 0.8));
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgba(201, 164, 92, 0.28);
  outline: 1px solid rgba(201, 164, 92, 0.16);
  outline-offset: -7px;
  padding: clamp(1.9rem, 4vw, 2.9rem);
  display: grid;
  gap: 0.9rem;
  opacity: 0;
  translate: 0 34px;
  transition: opacity 1s ease, translate 1s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.jchapter.is-active .jcard { opacity: 1; translate: none; }
.jchapter:nth-child(even) .jcard { margin-left: auto; }
.jc-no { font-family: var(--serif); font-size: 0.66rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); }
.jc-name { font-family: var(--serif); font-weight: 500; font-size: clamp(1.9rem, 4vw, 2.9rem); line-height: 1.05; color: var(--cream); }
.jc-line { font-family: var(--serif); font-style: italic; font-size: clamp(1.15rem, 2.2vw, 1.45rem); color: var(--gold); }
.jc-grapes {
  font-family: var(--serif);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  line-height: 2;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(201, 164, 92, 0.2);
}
.jc-note { color: var(--on-dark-muted); font-size: 1rem; }
.jc-route {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 164, 92, 0.2);
  font-family: var(--serif);
  font-size: 0.64rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
}
.jc-route b { color: var(--gold); font-weight: 400; }
.jc-route i { color: var(--burgundy-2); font-style: normal; }
.jc-link {
  justify-self: start;
  margin-top: 0.4rem;
  font-family: var(--serif);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 164, 92, 0.45);
  padding-bottom: 0.3rem;
}
.jc-link:hover { border-bottom-color: var(--gold); }

/* legend pinned to the stage */
.journey-legend {
  position: absolute;
  left: var(--pad);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-family: var(--serif);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--on-dark-faint);
  pointer-events: none;
}
.journey-legend span { display: inline-flex; align-items: center; gap: 0.55rem; }
.lg-dia { width: 7px; height: 7px; background: var(--burgundy-2); border: 1px solid var(--gold); transform: rotate(45deg); }
.lg-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
@media (max-width: 700px) { .journey-legend { display: none; } }

@media (max-width: 860px) {
  .jcard, .jchapter:nth-child(even) .jcard { max-width: none; margin: 0; }
  /* card to the foot of the screen so the map reads in the band above it */
  .jchapter { align-content: end; padding: 5rem var(--pad) 2.5rem; }
  .jc-name { font-size: clamp(1.7rem, 8vw, 2.3rem); }
  .jc-note { font-size: 0.95rem; }
  .jcard { padding: 1.5rem 1.4rem; gap: 0.7rem; }
}
@media (prefers-reduced-motion: reduce) {
  .at-camera { transition: none; }
  .jcard { opacity: 1; translate: none; transition: none; }
}

/* ============================================================
   ORIGIN · SELECTION · PLACEMENT
   ============================================================ */
.flow { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: clamp(2rem, 4vw, 3.5rem); }
.flow-step { display: grid; gap: 1rem; align-content: start; position: relative; }
.flow-plate {
  border: 1px solid var(--hair-light);
  outline: 1px solid var(--hair-light);
  outline-offset: -6px;
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(156, 124, 60, 0.05), transparent 70%);
}
.dark .flow-plate, .darker .flow-plate { border-color: var(--hair-dark); outline-color: var(--hair-dark); }
.flow-plate svg { width: 100%; height: auto; display: block; }
.engrave { fill: none; stroke: var(--gold-deep); stroke-width: 1.15; stroke-linecap: round; stroke-linejoin: round; }
.dark .engrave, .darker .engrave { stroke: var(--gold); }
.engrave-soft { fill: none; stroke: var(--gold-deep); stroke-width: 0.7; opacity: 0.55; stroke-linecap: round; }
.dark .engrave-soft, .darker .engrave-soft { stroke: var(--gold); }
.engrave-fill { fill: var(--burgundy); opacity: 0.16; stroke: none; }
.flow-no { font-family: var(--serif); font-size: 0.66rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--burgundy); }
.dark .flow-no, .darker .flow-no { color: var(--gold); }
.flow-step h3 { color: var(--ink); }
.dark .flow-step h3, .darker .flow-step h3 { color: var(--cream); }
.flow-say { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--gold-deep); }
.dark .flow-say, .darker .flow-say { color: var(--gold); }
.flow-step p { color: var(--ink-soft); font-size: 1rem; max-width: 34ch; }
.dark .flow-step p, .darker .flow-step p { color: var(--on-dark-muted); }

.flow-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 2.5vw, 2rem);
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
  font-family: var(--serif);
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink);
  flex-wrap: wrap;
}
.dark .flow-arrows, .darker .flow-arrows { color: var(--cream); }
.flow-arrows i { color: var(--burgundy); font-style: normal; font-size: 0.85em; letter-spacing: 0; }
.dark .flow-arrows i, .darker .flow-arrows i { color: var(--gold); }

/* ============================================================
   WHO WE SERVE
   ============================================================ */
.serve-split { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.serve-panel { padding: clamp(2.6rem, 6vw, 4.5rem) clamp(2rem, 5vw, 3.8rem); display: grid; align-content: center; gap: 1.1rem; }
.serve-panel.cream { background: var(--cream); color: var(--ink); }
.serve-panel.claret {
  background: radial-gradient(120% 100% at 50% 0%, #4a1622 0%, #2c0f18 70%);
  color: var(--on-dark);
  text-align: center;
  justify-items: center;
  border: 1px solid rgba(201, 164, 92, 0.3);
  outline: 1px solid rgba(201, 164, 92, 0.18);
  outline-offset: -8px;
}
.serve-list {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.35;
  color: var(--ink);
}
.serve-list i { font-style: normal; color: var(--burgundy); padding: 0 0.3em; }
.serve-panel p { color: var(--ink-soft); max-width: 42ch; }
.serve-panel.claret .monogram { margin-bottom: 0.5rem; }
.serve-quiet { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--gold); }
.serve-appt {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
}
.serve-panel.claret .btn { margin-top: 0.8rem; }

/* the closing chapter shows both worlds at once, so the card steps down and
   out of the way of the route lines running east to west */
.jchapter[data-chapter="whole"] { align-content: end; padding-bottom: 4.5rem; }
.jchapter[data-chapter="whole"] .jcard { max-width: 27rem; }
@media (max-width: 860px) {
  .jchapter[data-chapter="whole"] { padding-bottom: 2.5rem; }
  .jchapter[data-chapter="whole"] .jcard { max-width: none; }
}

/* country silhouette in each territory card, lifted from the atlas */
.terr-glyph {
  position: absolute;
  right: clamp(1rem, 2.5vw, 1.8rem);
  top: clamp(1.4rem, 3vw, 2.2rem);
  width: clamp(58px, 9vw, 82px);
  height: auto;
  opacity: 0.16;
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  z-index: 0;
}
.terr-glyph path { fill: none; stroke: var(--gold); stroke-width: 1.6; stroke-linejoin: round; }
.terr-card:hover .terr-glyph { opacity: 0.4; transform: translateY(-3px); }

/* the specimen card is illustrative, and says so */
.lc-spec {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-top: 0.3rem;
}

/* map type has to survive being scaled into a phone viewport */
@media (max-width: 860px) {
  .at-rlabel { font-size: calc(21px / var(--z)); letter-spacing: calc(0.4px / var(--z)); }
  .at-clabel { font-size: calc(22px / var(--z)); letter-spacing: calc(1.4px / var(--z)); }
  .at-cname  { font-size: calc(28px / var(--z)); letter-spacing: calc(4px / var(--z)); }
  .at-dia { stroke-width: 1.1; }
}

@media (prefers-reduced-motion: reduce) {
  /* routes and markers arrive complete rather than fading in */
  .at-route, .at-onward, .at-region, .at-city, .at-cname,
  .at-country .at-fill, .at-country .at-hatch, .at-country .at-stroke,
  .at-halo { transition: none; }
}
