:root,
html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #070605;
  --bg-2: #100e0b;
  --paper: #12100d;
  --ink: #f4f5f3;
  --muted: #b9b0a4;
  --faint: #8a8278;
  --line: #2a2620;
  --seal: #a77a3b;
  --seal-ink: #070605;
  --brass: #d1af72;
  --sea: #8a9aa3;
  --header-bg: #070605;
  --header-ink: #f4f5f3;
  --search-bg: #100e0b;
  --footer-surface: #050403;
  --ad: #100e0b;
  --font-display: Didot, "Bodoni MT", "Bodoni 72", Palatino, Georgia, serif;
  --font: "Gill Sans", "Avenir Next", "Segoe UI", sans-serif;
  --touch: 2.75rem;
  --header-h: 4.4rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 180ms;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --focus: 0 0 0 2px var(--bg), 0 0 0 4px var(--seal);
  --z-header: 40;
  --wrap: 74rem;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f4f5f3;
  --bg-2: #ececea;
  --paper: #ffffff;
  --ink: #191816;
  --muted: #5a5954;
  --faint: #6f6c66;
  --line: #d8d5cf;
  --seal: #8d642e;
  --seal-ink: #ffffff;
  --brass: #8d642e;
  --sea: #4a5c64;
  --header-bg: #ffffff;
  --header-ink: #191816;
  --search-bg: #f4f5f3;
  --footer-surface: #100e0b;
  --ad: #ececea;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  background: var(--bg);
}

body {
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  font-family: var(--font);
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

::selection {
  background: var(--seal);
  color: var(--seal-ink);
}

a {
  color: var(--seal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

a:hover {
  color: var(--brass);
}

:focus {
  outline: none;
}

:focus-visible {
  box-shadow: var(--focus);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.6rem);
  margin: 0 0 0.6rem;
}

h2 {
  font-size: 1.45rem;
  margin: 1.6rem 0 0.5rem;
}

h3 {
  font-size: 1.1rem;
  margin: 1.1rem 0 0.35rem;
}

p,
li {
  margin: 0 0 0.85rem;
}

.wrap {
  width: min(100% - 2rem, var(--wrap));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  z-index: 60;
  transform: translateY(-200%);
  background: var(--paper);
  color: var(--ink);
  padding: 0.5rem 0.8rem;
}

.skip:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  flex: 0 0 auto;
  padding-top: var(--safe-top);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.header-scroll {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.1rem;
  min-height: var(--header-h);
  min-width: max-content;
  width: 100%;
  padding-block: 0.45rem;
  padding-inline: max(1rem, (100% - var(--wrap)) / 2);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--header-ink);
  flex: 0 0 auto;
  margin-right: 0.35rem;
}

.brand:hover {
  color: var(--header-ink);
}

.brand-word {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.brand-mark {
  display: inline-flex;
  color: var(--seal);
}

.brand-pin {
  display: block;
}

.nav {
  display: flex;
  gap: 0.15rem;
  flex: 0 0 auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: var(--touch);
  padding: 0 0.75rem;
  color: var(--header-ink);
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.92rem;
}

.nav-link.is-active {
  color: var(--seal);
  box-shadow: inset 0 -2px 0 var(--seal);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 0 0 auto;
}

.header-search input {
  min-height: var(--touch);
  min-width: 12rem;
  padding: 0 0.8rem;
  border: 1px solid var(--line);
  background: var(--search-bg);
  color: inherit;
  font: inherit;
}

.header-search button,
.theme-toggle,
.language-menu summary,
.btn,
.map-tools button,
.map-styles button,
.map-layer-actions button,
.map-filters-toggle,
.search-form button {
  min-height: var(--touch);
  min-width: var(--touch);
  border: 1px solid var(--line);
  background: var(--bg-2);
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  background: var(--seal);
  color: var(--seal-ink);
  border-color: var(--seal);
  text-decoration: none;
  font-weight: 600;
}

.btn:hover {
  color: var(--seal-ink);
  filter: brightness(1.05);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
}

.header-tools {
  display: flex;
  align-items: center;
}

.theme-toggle {
  display: inline-grid;
  width: var(--touch);
  place-items: center;
  padding: 0;
}

.theme-icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.theme-icon-moon {
  display: none;
}

html[data-theme="dark"] .theme-icon-sun {
  display: none;
}

html[data-theme="dark"] .theme-icon-moon {
  display: block;
}

main {
  flex: 1 1 auto;
}

main > .wrap {
  padding-block: 1.5rem 3.4rem;
}

:where(main article, main section) > :first-child {
  margin-top: 0;
}

.hero-media img {
  width: 100%;
  height: 38vh;
  min-height: 15rem;
  object-fit: cover;
  display: block;
}

.hero-band {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.hero-intro {
  padding: 2.4rem 0 2.2rem;
}

.hero-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 0.55rem;
}

.hero-kicker,
.kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.shelf {
  padding-block: 2.6rem 0;
}

.story-block {
  padding-block: 3rem 3.6rem;
}

.section-head {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
}

.section-head h2 {
  margin: 0;
}

.pager {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1rem;
  margin: 1.6rem 0 0;
}

.pager ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pager a,
.pager span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.15rem 0.45rem;
}

.pager > span,
.pager .pager-status {
  color: var(--faint);
}

.pager [aria-current="page"] {
  color: var(--seal);
  box-shadow: inset 0 -2px 0 var(--seal);
}

.pager a:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.pager-status {
  margin: 0;
  margin-left: auto;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  gap: 1.6rem 2.4rem;
}

.story-note > :first-child {
  margin-top: 0;
}

.story-note > :last-child {
  margin-bottom: 0;
}

.page-trust > * {
  margin-block: 0 0.9rem;
}

.page-trust > h1 {
  margin-bottom: 0.8rem;
}

.page-trust > h2 {
  margin-top: 1.1rem;
  margin-bottom: 0.4rem;
}

.page-trust > h3 {
  margin-top: 0.9rem;
  margin-bottom: 0.3rem;
}

.page-trust > :last-child {
  margin-bottom: 0;
}

.faq-item p {
  margin-bottom: 0.35rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.4rem;
}

main > .wrap > .card-grid {
  margin-top: 1.6rem;
}

.map-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.map-card:hover,
.map-card:focus-visible {
  border-color: var(--seal);
  transform: translateY(-2px);
}

.map-card:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.map-card:hover h2,
.map-card:focus-visible h2 {
  color: var(--seal);
}

.map-card-media {
  display: block;
}

.map-card-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.map-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1rem 1.15rem 1.25rem;
}

.map-card-body .kicker {
  display: block;
}

.map-card-body h2 {
  margin-top: 0.2rem;
  font-size: 1.3rem;
}

.map-card-lead {
  color: var(--muted);
  font-size: 0.97rem;
}

@media (prefers-reduced-motion: reduce) {
  .map-card {
    transition: none;
  }

  .map-card:hover,
  .map-card:focus-visible {
    transform: none;
  }
}

.crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.7rem;
  margin: 0 0 0.9rem;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
  color: var(--faint);
}

.crumbs a {
  display: inline-block;
  padding: 0.2rem 0;
}

.crumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.7rem;
  color: var(--line);
}

.search-form {
  display: flex;
  gap: 0.4rem;
  margin: 1rem 0 1.4rem;
}

.search-form input {
  flex: 1 1 auto;
  min-height: var(--touch);
  padding: 0 0.8rem;
  border: 1px solid var(--line);
  background: var(--search-bg);
  color: inherit;
  font: inherit;
}

.search-hits {
  padding-left: 1.1rem;
}

.page-sitemap section {
  margin-top: 1.8rem;
}

.page-sitemap h2 {
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}

.page-sitemap li {
  margin: 0 0 0.3rem;
}

.page-sitemap ul ul {
  margin-top: 0.3rem;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
}

.place-list {
  padding-left: 1.1rem;
}

.site-footer {
  background: var(--footer-surface);
  color: #efe6d4;
  border-top: 1px solid var(--line);
  padding: 2.6rem 0 3rem;
}

.site-footer a {
  color: #e8c9a0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem 2.5rem;
}

.footer-grid h2 {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0;
  color: #cbbfa8;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin: 0;
}

.footer-grid li a {
  display: inline-block;
  padding: 0.28rem 0;
}

.brand--foot {
  color: #efe6d4;
  margin-bottom: 0.6rem;
}

.brand--foot:hover {
  color: #efe6d4;
}

.footer-note {
  color: #b7aa94;
  font-size: 0.92rem;
}

.ad-slot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0.85rem auto;
  padding: 0.4rem 0.35rem 0.5rem;
  background: var(--ad);
  border: 1px solid var(--line);
  overflow: hidden;
  contain: layout paint;
}

.ad-slot--leader {
  min-height: 50px;
}

.ad-slot--inarticle {
  min-height: 250px;
}

.ad-label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}

.ad-slot-frame {
  display: block;
  border: 0;
  background: transparent;
  max-width: 100%;
}

@media (min-width: 500px) {
  .ad-slot--leader {
    min-height: 60px;
  }
}

@media (min-width: 780px) {
  .ad-slot--leader {
    min-height: 90px;
  }
}

html.is-map,
html.is-map body {
  height: 100dvh;
  overflow: hidden;
}

html.is-map .site-header {
  flex: 0 0 auto;
}

html.is-map .header-scroll {
  min-height: 3.2rem;
  padding-block: 0.25rem;
}

@media (max-width: 700px) {
  html.is-map .header-search {
    display: none;
  }
}

html.is-map main {
  flex: 1 1 auto;
  display: flex;
  min-height: 0;
}

html.is-map .map-legal {
  flex: 0 0 auto;
}

.map-legal {
  margin: 0;
  padding: 0.18rem 0.7rem;
  background: #000;
  color: #6a6358;
  font-size: 0.625rem;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-align: center;
}

.map-legal p {
  margin: 0;
}

.map-legal a {
  color: inherit;
  text-decoration: none;
}

.map-legal a:hover,
.map-legal a:focus-visible {
  text-decoration: underline;
}

.meta {
  color: var(--faint);
  font-size: 0.9rem;
}

@media (max-width: 879px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .hero-media img {
    height: 28vh;
    min-height: 11rem;
  }

  .hero-intro {
    padding: 1.8rem 0 1.6rem;
  }

  .shelf {
    padding-block: 2rem 0;
  }

  .story-block {
    padding-block: 2.4rem 2.8rem;
  }

  main > .wrap {
    padding-block: 1.2rem 2.6rem;
  }
}

.language-menu {
  position: relative;
  z-index: 40;
  flex: 0 0 auto;
  margin-left: auto;
}

.language-menu summary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 9.5rem;
  padding: 0 0.85rem;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
  white-space: nowrap;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-left: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-0.12rem) rotate(45deg);
}

.language-menu[open] summary::after {
  transform: translateY(0.05rem) rotate(225deg);
}

.language-menu-list {
  position: fixed;
  top: var(--floating-menu-top, 4.5rem);
  left: min(var(--floating-menu-left, 1rem), calc(100vw - 14.25rem));
  z-index: 100;
  width: 13.75rem;
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 22px 60px rgb(0 0 0 / 0.35);
  list-style: none;
}

.language-menu-list a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0 0.95rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.language-menu-list li:last-child a {
  border-bottom: 0;
}

.language-menu-list a:hover,
.language-menu-list a[aria-current="true"] {
  background: var(--bg-2);
  color: var(--seal);
}

.hero-media {
  position: relative;
  min-height: 38vh;
  margin: 0;
  background: #070605;
  overflow: hidden;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 42vh;
  min-height: 16rem;
  object-fit: cover;
  object-position: 50% 42%;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(7 6 5 / 0.12) 0%, rgb(7 6 5 / 0.45) 100%);
  pointer-events: none;
}

html[data-theme="light"] .hero-media::after {
  background: linear-gradient(180deg, rgb(244 245 243 / 0.08) 0%, rgb(244 245 243 / 0.28) 100%);
}

.cover-fallback {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 30% 30%, rgba(167, 122, 59, 0.45), transparent 55%),
    linear-gradient(145deg, #1a1612, #0b0a08);
}

.brand-score {
  font-family: var(--font-display);
  color: var(--brass);
}

.brand-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.8rem;
  margin: 1.4rem 0;
}

.score-grid div {
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  background: var(--paper);
}

.score-grid dt {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}

.score-grid dd {
  margin: 0.2rem 0 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
}

.related-maps {
  margin-top: 2rem;
}

.luxury-detail {
  --site-primary: var(--seal);
  --site-accent: var(--brass);
}

.luxury-detail .brand-profile {
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  background: var(--paper);
}

.brand-masthead {
  min-height: 32rem;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: stretch;
  background: var(--paper);
}

.brand-masthead-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.2rem, 5vw, 4.6rem);
}

.brand-masthead .eyebrow,
.score-panel .eyebrow,
.signature-section .eyebrow,
.brand-sources .eyebrow {
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-masthead h1 {
  margin: 0.7rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.brand-masthead-copy > p {
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.brand-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.6rem;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  padding: 0 1.1rem;
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.button-primary {
  background: var(--seal);
  border-color: var(--seal);
  color: var(--seal-ink);
}

.button-secondary {
  background: transparent;
  color: var(--brass);
}

.brand-visual {
  position: relative;
  min-height: 32rem;
  display: grid;
  background: #0c0b09;
  overflow: hidden;
}

.brand-visual.is-mark img {
  width: 100%;
  height: 100%;
  min-height: 32rem;
  object-fit: cover;
  object-position: 50% 40%;
}

.media-credit {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: #c8c0b6;
  font-size: 0.72rem;
}

.media-credit a {
  color: var(--brass);
}

.brand-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.brand-facts > div {
  min-height: 6.4rem;
  padding: 1.15rem 1.2rem;
  border-right: 1px solid var(--line);
}

.brand-facts span,
.brand-facts strong {
  display: block;
}

.brand-facts span {
  color: var(--faint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-facts strong {
  margin-top: 0.45rem;
  font-size: 1.05rem;
}

.editorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
}

.brand-story {
  padding: clamp(1.6rem, 4vw, 3.4rem);
}

.brand-story h2 {
  margin-top: 1.8rem;
  font-family: var(--font-display);
  font-weight: 500;
}

.brand-story p {
  color: var(--muted);
}

.brand-aside {
  padding: clamp(1.6rem, 4vw, 3.4rem);
  border-left: 1px solid var(--line);
  background: var(--bg-2);
}

.brand-aside h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 500;
}

.brand-aside dl {
  margin: 0;
}

.brand-aside dt {
  color: var(--faint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-aside dd {
  margin: 0.35rem 0 1.1rem;
}

.score-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.82fr);
  gap: 2.4rem;
  padding: clamp(1.8rem, 5vw, 4.2rem);
  border-top: 1px solid var(--line);
}

.score-panel h2 {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.8rem);
}

.score-context {
  color: var(--faint);
}

.score-bars {
  display: grid;
  gap: 0.85rem;
  align-content: center;
}

.score-bars > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.3rem;
}

.score-bars span {
  color: var(--muted);
  font-weight: 700;
}

.score-bars i {
  grid-column: 1 / -1;
  height: 4px;
  background: var(--bg);
}

.score-bars i::after {
  content: "";
  display: block;
  width: var(--score);
  height: 100%;
  background: var(--seal);
}

.signature-section,
.brand-sources {
  padding: clamp(1.8rem, 5vw, 4.2rem);
  border-top: 1px solid var(--line);
}

.signature-section h2,
.brand-sources h2 {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-weight: 500;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.signature-card {
  padding: 1.3rem;
  border: 1px solid var(--line);
  background: var(--bg-2);
}

.signature-card > span {
  color: var(--brass);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signature-card h3 {
  margin: 0.4rem 0 0;
}

.signature-card p {
  color: var(--muted);
}

.signature-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.signature-card a {
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  color: var(--brass);
  font-weight: 800;
  text-decoration: none;
}

.commercial-note {
  color: var(--faint);
  font-size: 0.88rem;
}

.brand-sources ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
  gap: 0.7rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.brand-sources li {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
}

.brand-sources a {
  color: var(--brass);
  font-weight: 700;
}

.brand-sources span {
  color: var(--faint);
  font-size: 0.82rem;
}

.map-card.brand-card .map-card-media.is-mark {
  display: block;
  background: #0c0b09;
}

.map-card.brand-card .map-card-media.is-mark img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

html[data-theme="light"] .map-card.brand-card .map-card-media.is-mark {
  background: #16110c;
}

@media (max-width: 900px) {
  .brand-masthead,
  .score-panel,
  .editorial-layout {
    grid-template-columns: 1fr;
  }

  .brand-visual {
    min-height: 18rem;
    border-top: 1px solid var(--line);
  }

  .brand-visual.is-mark img {
    min-height: 18rem;
  }

  .brand-aside {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}
