@font-face {
  font-family: "Country Display";
  src: url("/assets/fonts/curated/poppins-normal-400-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Country Display";
  src: url("/assets/fonts/curated/poppins-normal-600-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Country Display";
  src: url("/assets/fonts/curated/poppins-normal-700-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Country Sans";
  src: url("/assets/fonts/nunito-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 900;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/assets/fonts/ui/bricolage-grotesque-variable-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
}

:root {
  --country-bg: #f6f4f1;
  --country-paper: #fffefa;
  --country-ink: #17150f;
  --country-muted: #6f685d;
  --country-line: rgba(23, 21, 15, 0.1);
  --country-gold: #d9a72e;
  --country-gold-deep: #754100;
  --country-gold-soft: #fff3bd;
  --country-gold-gradient: linear-gradient(145deg, #fff2a8 0%, #f4d56b 18%, #d9a72e 42%, #a96905 72%, #6d3b00 100%);
  --country-gold-dark: linear-gradient(135deg, #a16c0e 0%, #754100 58%, #482500 100%);
  --country-card-radius: 20px;
  --country-panel-radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body.country-v2 {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background: var(--country-bg);
  color: var(--country-ink);
  font-family: "Country Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

.country-v2 a {
  color: inherit;
  text-decoration: none;
}

.country-v2 button,
.country-v2 input {
  font: inherit;
}

.country-v2 img {
  display: block;
  max-width: 100%;
}

.country-v2 [hidden] {
  display: none !important;
}

.country-v2 :focus-visible {
  outline: 3px solid #f4d56b;
  outline-offset: 4px;
}

.country-skip {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--country-paper);
  color: var(--country-ink);
  font-weight: 800;
  transform: translateY(-150%);
}

.country-skip:focus {
  transform: none;
}

.country-wrap,
.country-hero-inner,
.country-nav-inner {
  width: min(100%, 1240px);
  margin: 0 auto;
}

.country-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(23, 21, 15, 0.88);
  color: #fffefa;
  backdrop-filter: blur(16px) saturate(1.15);
}

.country-nav-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: clamp(16px, 4vw, 54px);
  padding: 10px clamp(16px, 4vw, 40px);
}

.country-brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 10px;
  color: #fffefa;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.country-brand b {
  color: #f4d56b;
  font-family: inherit;
  font-weight: 700;
}

.country-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 7px 10px rgba(105, 59, 0, 0.3));
}

.country-nav-links {
  display: flex;
  flex: 1;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
}

.country-nav-links a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
  transition: color 160ms ease;
}

.country-nav-links a:hover,
.country-nav-links a[aria-current="page"] {
  color: #fff;
}

.country-nav-cta {
  flex: none;
  padding: 11px 20px;
  border-radius: 999px;
  background: var(--country-gold-gradient);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), inset 0 -2px 0 rgba(82, 42, 0, 0.25), 0 9px 22px rgba(105, 59, 0, 0.3);
  color: #241400;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.country-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), inset 0 -2px 0 rgba(82, 42, 0, 0.25), 0 13px 28px rgba(105, 59, 0, 0.36);
}

.country-hero {
  position: relative;
  overflow: hidden;
  background: var(--country-ink);
  color: #fff;
}

.country-hero-glow {
  position: absolute;
  top: -42%;
  left: 34%;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 167, 46, 0.34), transparent 62%);
  pointer-events: none;
}

.country-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  align-items: center;
  gap: clamp(28px, 4.5vw, 60px);
  padding: clamp(28px, 4vw, 50px) clamp(16px, 4vw, 40px) clamp(44px, 5vw, 72px);
}

.country-hero-copy {
  min-width: 0;
}

.country-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  overflow-x: auto;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 650;
  scrollbar-width: none;
  white-space: nowrap;
}

.country-breadcrumb::-webkit-scrollbar,
.country-filters::-webkit-scrollbar {
  display: none;
}

.country-breadcrumb a {
  color: rgba(255, 255, 255, 0.68);
}

.country-breadcrumb a:hover,
.country-breadcrumb [aria-current="page"] {
  color: #fff;
}

.country-collection-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 7px 15px 7px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.country-collection-badge span {
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--country-gold-gradient);
  color: #241400;
  font-size: 11px;
  font-weight: 900;
}

.country-hero h1 {
  max-width: 15ch;
  margin: 22px 0 20px;
  font-family: "Country Display", sans-serif;
  font-size: clamp(42px, 5.7vw, 74px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.01;
}

.country-hero-lede {
  max-width: 50ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.65;
}

.country-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 32px 0 0;
}

.country-stats div {
  min-width: 84px;
}

.country-stats dt {
  font-family: "Country Display", sans-serif;
  font-size: 28px;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.country-stats dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.country-fan {
  box-sizing: border-box;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.5vw, 14px);
  padding: 24px clamp(18px, 3vw, 34px);
}

.country-fan-card {
  display: block;
  flex: 0 1 27%;
  width: 27%;
  max-width: 230px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 34px 70px -24px rgba(0, 0, 0, 0.72), 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: translateY(14px) rotate(-4deg);
  transition: transform 240ms cubic-bezier(.2, .7, .2, 1);
}

.country-fan-card-2 {
  z-index: 2;
  flex-basis: 40%;
  width: 40%;
  border-radius: 20px;
  transform: translateY(-14px);
}

.country-fan-card-3 {
  transform: translateY(14px) rotate(4deg);
}

.country-fan-card:hover {
  transform: translateY(4px) rotate(0);
}

.country-fan-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.country-start {
  padding: clamp(34px, 4vw, 56px) clamp(16px, 4vw, 40px) 14px;
}

.country-kicker {
  margin: 0 0 16px;
  color: #835000;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.country-start-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
}

.country-start-card {
  display: flex;
  min-height: 178px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(23, 21, 15, 0.07);
  border-radius: var(--country-card-radius);
  background: var(--country-paper);
  box-shadow: 0 12px 30px -26px rgba(55, 36, 9, 0.5);
  transition: transform 190ms ease, box-shadow 190ms ease, border-color 190ms ease;
}

.country-start-card:hover,
.country-start-card.is-active {
  border-color: rgba(217, 167, 46, 0.5);
  box-shadow: 0 22px 40px -26px rgba(105, 59, 0, 0.55);
  transform: translateY(-3px);
}

.country-start-card strong {
  font-family: "Country Display", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.country-start-card > span {
  margin-top: 7px;
  color: var(--country-muted);
  font-size: 14px;
  line-height: 1.55;
}

.country-start-card small {
  margin-top: auto;
  padding-top: 16px;
  color: #795017;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.country-browse {
  padding: clamp(28px, 3.5vw, 44px) clamp(16px, 4vw, 40px) clamp(24px, 3vw, 36px);
}

.country-browse-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.country-browse-heading h2,
.country-detail-panel h2,
.country-final h2 {
  margin: 0;
  font-family: "Country Display", sans-serif;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.country-browse-heading h2 {
  font-size: clamp(30px, 3.2vw, 42px);
}

.country-browse-heading p {
  margin: 0;
  color: var(--country-muted);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.country-filters {
  display: flex;
  max-width: 100%;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 3px;
  overflow-x: auto;
  scrollbar-width: none;
}

.country-filter {
  flex: none;
  padding: 9px 17px;
  border: 1px solid rgba(23, 21, 15, 0.13);
  border-radius: 999px;
  background: var(--country-paper);
  color: #595248;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.country-filter:hover {
  border-color: rgba(23, 21, 15, 0.4);
}

.country-filter.is-active {
  border-color: var(--country-ink);
  background: var(--country-ink);
  color: #fff;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.country-card {
  min-width: 0;
}

.country-card > a {
  display: block;
  height: 100%;
  padding: 10px;
  border: 1px solid rgba(23, 21, 15, 0.07);
  border-radius: var(--country-card-radius);
  background: var(--country-paper);
  color: inherit;
  box-shadow: 0 12px 30px -28px rgba(23, 21, 15, 0.5);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.country-card > a:hover {
  box-shadow: 0 22px 42px -24px rgba(55, 36, 9, 0.4);
  transform: translateY(-4px);
}

.country-card-art {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: #e8e2d8;
}

.country-card-art img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 320ms cubic-bezier(.2, .7, .2, 1);
}

.country-card > a:hover .country-card-art img {
  transform: scale(1.02);
}

.country-card-art small {
  position: absolute;
  top: 9px;
  left: 9px;
  max-width: calc(100% - 18px);
  overflow: hidden;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 254, 250, 0.92);
  color: var(--country-ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  backdrop-filter: blur(6px);
}

.country-card-copy {
  display: block;
  padding: 14px 8px 8px;
}

.country-card-copy strong {
  display: block;
  font-family: "Country Display", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.country-card-copy > span {
  display: -webkit-box;
  min-height: 42px;
  margin-top: 5px;
  overflow: hidden;
  color: var(--country-muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.country-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(24px, 3vw, 36px);
}

.country-more {
  padding: 14px 27px;
  border: 1px solid rgba(23, 21, 15, 0.14);
  border-radius: 14px;
  background: var(--country-paper);
  color: var(--country-ink);
  cursor: pointer;
  font-size: 15px;
  font-weight: 850;
  transition: border-color 160ms ease, transform 160ms ease;
}

.country-more:hover {
  border-color: var(--country-ink);
  transform: translateY(-2px);
}

.country-details {
  padding: clamp(34px, 4.5vw, 64px) clamp(16px, 4vw, 40px);
}

.country-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.country-detail-panel {
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(23, 21, 15, 0.07);
  border-radius: var(--country-panel-radius);
  background: var(--country-paper);
}

.country-detail-panel h2 {
  font-size: 22px;
  letter-spacing: -0.03em;
}

.country-detail-panel > p {
  max-width: 52ch;
  margin: 10px 0 20px;
  color: var(--country-muted);
  font-size: 15px;
  line-height: 1.7;
}

.country-function-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.country-function-list span {
  padding: 7px 12px;
  border: 1px solid rgba(23, 21, 15, 0.13);
  border-radius: 999px;
  color: #4f493f;
  font-size: 12px;
  font-weight: 750;
}

.country-detail-panel-dark {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.08);
  background: var(--country-ink);
  color: #fff;
}

.country-detail-glow {
  position: absolute;
  right: -20%;
  bottom: -50%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 167, 46, 0.42), transparent 66%);
}

.country-detail-panel-dark h2,
.country-detail-panel-dark ol {
  position: relative;
}

.country-detail-panel-dark ol {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.country-detail-panel-dark li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
}

.country-detail-panel-dark li > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.1);
  color: #f4d56b;
  font-size: 12px;
  font-weight: 900;
}

.country-detail-panel-dark strong {
  display: block;
  font-size: 15px;
  font-weight: 850;
}

.country-detail-panel-dark p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.55;
}

.country-final {
  padding: 0 clamp(16px, 4vw, 40px) clamp(50px, 6vw, 82px);
}

.country-final-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  padding: clamp(32px, 5vw, 60px);
  border-radius: 26px;
  background: var(--country-gold-dark);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 24px 55px -34px rgba(67, 34, 0, 0.8);
}

.country-final-orbit {
  position: absolute;
  right: -6%;
  bottom: -65%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.country-final-card > div {
  position: relative;
}

.country-final-card p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.country-final h2 {
  max-width: 20ch;
  font-size: clamp(28px, 3.4vw, 43px);
}

.country-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.country-final-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 23px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease;
}

.country-final-actions a:hover {
  transform: translateY(-2px);
}

.country-final-primary {
  background: var(--country-ink);
  color: #fff !important;
}

.country-final-secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff !important;
}

.country-final-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

.country-footer {
  border-top: 1px solid var(--country-line);
}

.country-footer .country-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  padding: 26px clamp(16px, 4vw, 40px) 40px;
  color: var(--country-muted);
  font-size: 13px;
  font-weight: 650;
}

.country-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 22px;
}

.country-footer a:hover {
  color: #754100;
}

.country-missing {
  display: grid;
  min-height: calc(100dvh - 150px);
  place-items: center;
  padding: 48px 20px;
  text-align: center;
}

.country-missing div {
  max-width: 620px;
}

.country-missing img {
  margin: 0 auto 18px;
}

.country-missing p {
  margin: 0 0 10px;
  color: #835000;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.country-missing h1 {
  margin: 0 0 24px;
  font-family: "Country Display", sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
}

.country-missing a {
  display: inline-flex;
  padding: 14px 22px;
  border-radius: 14px;
  background: var(--country-gold-gradient);
  color: #241400;
  font-weight: 900;
}

@media (max-width: 960px) {
  .country-hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  }

  .country-start-grid,
  .country-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .country-final-card {
    grid-template-columns: 1fr;
  }

  .country-final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 800px) {
  .country-nav-links {
    display: none;
  }

  .country-nav-inner {
    justify-content: space-between;
  }

  .country-brand span {
    font-size: 14px;
  }

  .country-nav-cta {
    padding: 10px 15px;
    font-size: 12px;
  }

  .country-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .country-hero h1 {
    max-width: 17ch;
    font-size: clamp(40px, 11vw, 58px);
  }

  .country-fan {
    width: min(100%, 460px);
    margin: 0 auto;
  }

  .country-details-grid {
    grid-template-columns: 1fr;
  }

  .country-footer .country-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .country-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .country-nav-inner {
    gap: 8px;
  }

  .country-brand {
    gap: 6px;
  }

  .country-brand img {
    width: 34px;
    height: 34px;
  }

  .country-brand span {
    max-width: 124px;
    overflow: hidden;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .country-nav-cta {
    padding: 9px 12px;
    font-size: 11px;
  }

  .country-breadcrumb {
    margin-bottom: 18px;
  }

  .country-hero-inner {
    padding-top: 22px;
  }

  .country-hero h1 {
    margin-top: 18px;
    font-size: clamp(36px, 10.5vw, 48px);
  }

  .country-hero-lede {
    font-size: 16px;
  }

  .country-stats {
    gap: 18px;
  }

  .country-stats div {
    min-width: 76px;
  }

  .country-fan {
    gap: 8px;
    padding: 12px 14px 18px;
  }

  .country-start-grid,
  .country-grid {
    grid-template-columns: 1fr;
  }

  .country-start-card {
    min-height: 150px;
  }

  .country-browse-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .country-final-card {
    padding: 30px 24px;
  }

  .country-final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .country-final-actions a {
    width: 100%;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .country-hero-copy {
    animation: country-rise 620ms cubic-bezier(.2, .7, .2, 1) both;
  }

  .country-fan {
    animation: country-rise 700ms 100ms cubic-bezier(.2, .7, .2, 1) both;
  }

  @keyframes country-rise {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: none; }
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .country-v2 *,
  .country-v2 *::before,
  .country-v2 *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
