/* 7ads.org — Intercontinental Advertising Community */
:root {
  --gold: #d4b45a;
  --gold-2: #f0d78a;
  --red: #7a1c28;
  --red-deep: #4e1018;
  --green: #1f4a38;
  --navy: #161d33;
  --ink: #1c1612;
  --paper: #f6efe2;
  --paper-2: #efe4cc;
  --muted: #5c5348;
  --line: rgba(122, 28, 40, 0.18);
  --shadow: 0 18px 40px rgba(78, 16, 24, 0.12);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  --sans: "Avenir Next", "Segoe UI", "Be Vietnam Pro", system-ui, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(212, 180, 90, 0.18), transparent 50%),
    radial-gradient(900px 400px at 100% 0%, rgba(31, 74, 56, 0.12), transparent 45%),
    var(--paper);
  font-family: "Be Vietnam Pro", "Noto Sans Lao", "Noto Sans", var(--sans);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-deep); }
.wrap { width: min(1180px, calc(100% - 32px)); max-width: 100%; margin: 0 auto; }

.pattern-bar {
  height: 10px;
  background:
    repeating-linear-gradient(90deg,
      var(--red) 0 14px,
      var(--gold) 14px 22px,
      var(--green) 22px 30px,
      var(--navy) 30px 36px);
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 239, 226, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__in {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 72px;
  flex-wrap: wrap;
}
.nav__mark {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -.03em;
}
.nav__mark img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.nav__mark small {
  display: block;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-drawer {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: .92rem;
  font-weight: 700;
}
.nav__links a { color: var(--ink); }
.nav__links a.is-on,
.nav__links a:hover { color: var(--red); }
.nav-drawer__tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-join {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--red);
  color: #f6efe2 !important;
  font-size: .82rem;
  font-weight: 800;
}
.nav-login {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  font-size: .92rem;
  font-weight: 800;
  color: var(--red-deep) !important;
  letter-spacing: .01em;
}
.lang-dd { position: relative; }
.lang-dd__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  color: var(--ink);
}
.lang-dd__menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 6px;
  z-index: 30;
}
.lang-dd.is-open .lang-dd__menu { display: grid; }
.lang-dd__menu button {
  display: block;
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 8px 10px;
  border-radius: 8px;
  font: inherit;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
}
.lang-dd__menu button:hover,
.lang-dd__menu button.is-on { background: var(--paper-2); color: var(--red); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 10px 11px;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
}
.nav-toggle span { width: 18px; }
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav.is-open .nav-toggle span { background: transparent; }
.nav.is-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav.is-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }
.nav-close { display: none; }
.nav-drawer__head { display: none; }
.nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(22, 12, 16, .45);
  z-index: 18;
}
body.is-nav-open .nav-scrim { display: block; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
}
.stat strong { display: block; font-size: 1.6rem; font-family: var(--serif); }
.stat small { color: var(--muted); font-weight: 700; }

/* Hero — full banner with readable overlay */
.hero {
  position: relative;
  min-height: 0;
  display: block;
  overflow: hidden;
  color: #f7efe2;
  text-align: center;
  background: #140e12;
}
.hero__art { position: relative; line-height: 0; }
.hero__banner {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.hero__veil {
  display: block;
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(16, 10, 14, .12) 0%,
      rgba(16, 10, 14, .08) 42%,
      rgba(16, 10, 14, .45) 68%,
      rgba(16, 10, 14, .78) 100%);
}
.hero__in {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 16px 6%;
  display: flex;
  justify-content: center;
  line-height: 1.5;
}
.hero__card {
  width: min(680px, 100%);
  padding: clamp(16px, 3vw, 28px) clamp(16px, 3.2vw, 32px) clamp(18px, 3vw, 26px);
  border-radius: 20px;
  background: rgba(18, 10, 14, .22);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(240, 215, 138, .1);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
}
.hero .kicker {
  color: var(--gold-2);
  margin: 0 0 8px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3.8vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -.03em;
  margin: 0 0 10px;
  line-height: 1.12;
  color: #fbf6ea;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .45);
}
.hero p.lead {
  max-width: 48ch;
  margin: 0 auto 18px;
  color: #f0e4cc;
  font-size: clamp(.9rem, 1.9vw, 1.05rem);
  text-shadow: 0 1px 8px rgba(0, 0, 0, .35);
}
.hero__cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #fff;
  padding: 14px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
  flex-shrink: 0;
}
.marquee a, .marquee span {
  display: flex; align-items: center; gap: 8px;
  font-weight: 800; color: var(--ink); white-space: nowrap;
}
.marquee img { width: 28px; height: 28px; border-radius: 50%; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.quote-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.quote-card p { font-family: var(--serif); font-size: 1.05rem; }

.sec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px 24px;
  margin-bottom: 22px;
}
.sec-head .sec { margin: 6px 0 8px; }
.sec-head .sec-lead { margin: 0; }
.sec-head .more { flex-shrink: 0; margin-bottom: 2px; }

.hot-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.hot-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 18px 18px 16px;
  min-height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: inherit;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.hot-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 180, 90, .7);
  box-shadow: 0 20px 40px rgba(78, 16, 24, .14);
  color: inherit;
}
.hot-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.hot-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.14rem;
  letter-spacing: -.02em;
  line-height: 1.28;
}
.hot-card__n {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--muted);
  background: var(--paper);
  border-radius: 999px;
  padding: 4px 8px;
  white-space: nowrap;
}
.hot-card__who {
  margin-top: auto;
  padding-top: 4px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--muted);
}
.hot-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; }
.tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  color: var(--red);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 9px;
}

.more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(122, 28, 40, .22);
  background: #fff;
  color: var(--red-deep);
  font-weight: 800;
  font-size: .88rem;
  text-decoration: none;
}
.more::after {
  content: "→";
  font-weight: 700;
  transition: transform .15s ease;
}
.more:hover {
  background: var(--red-deep);
  color: #f6efe2;
  border-color: var(--red-deep);
}
.more:hover::after { transform: translateX(3px); }
.quote-card small { color: var(--muted); font-weight: 700; }

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.about-page { max-width: 760px; }
.about-page h3 { font-family: var(--serif); margin: 28px 0 12px; }
.about-partners {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-partners li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow);
}
.about-partners a { font-weight: 800; }
.about-partners span {
  display: inline-block;
  margin-left: 8px;
  color: var(--muted);
  font-size: .85rem;
  font-weight: 700;
}
.about-partners p { margin: 6px 0 0; color: var(--muted); }
.form label { display: block; font-size: .82rem; font-weight: 800; margin: 10px 0 4px; }
.form input, .form textarea, .form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}
.form textarea { min-height: 120px; resize: vertical; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .92rem;
  border: 1px solid transparent;
}
.btn--gold { background: var(--gold); color: var(--red-deep); }
.btn--gold:hover { background: var(--gold-2); color: var(--red-deep); }
.btn--ghost { background: transparent; color: #f6efe2; border-color: rgba(240,215,138,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.08); color: #fff; }
.hero .btn--ghost { color: #f6efe2; border-color: rgba(240, 215, 138, .6); }
.hero .btn--ghost:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.btn--red { background: var(--red); color: #f6efe2; }
.btn--red:hover { background: var(--red-deep); color: #fff; }

/* Rings / partners */
.kicker {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--red);
}
h2.sec {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 6px 0 10px;
  letter-spacing: -.03em;
}
.sec-lead { max-width: 52ch; color: var(--muted); margin: 0 0 28px; }

.rings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}
.ring {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 14px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  color: inherit;
  display: block;
}
.ring:hover { transform: translateY(-3px); color: inherit; border-color: var(--gold); }
.ring img {
  width: 56px; height: 56px; border-radius: 50%; margin: 0 auto 10px;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.ring strong { display: block; font-size: .95rem; }
.ring span { display: block; font-size: .78rem; color: var(--muted); margin-top: 4px; }

.rings-marquee {
  overflow: hidden;
  margin: 0 -4px;
}
.rings-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.rings-marquee__group {
  display: flex;
  gap: 14px;
  padding-right: 14px;
  flex-shrink: 0;
}
.rings-marquee .ring {
  width: 180px;
  flex-shrink: 0;
}
.rings-marquee:hover .rings-marquee__track { animation-play-state: paused; }

.quote-who {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
  background: var(--paper-2);
}
.quote-who strong { display: block; font-size: .9rem; }
.quote-who small { color: var(--muted); font-weight: 700; font-size: .78rem; }

.band { padding: 64px 0; }
.band--ink {
  background: var(--navy);
  color: #f3ead8;
}
.band--ink .kicker { color: var(--gold); }
.band--ink .sec-lead { color: #cfc6ae; }
.band--ink .btn--ghost { color: #f6efe2; border-color: rgba(240, 215, 138, .55); }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.band--red {
  background: linear-gradient(180deg, #6b1520, #4e1018);
  color: #f6efe2;
}
.band--paper2 { background: var(--paper-2); }

/* Story cards */
.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
}
.story {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.story--feature { min-height: 100%; }
.story__cover {
  aspect-ratio: 16/9;
  background: #2a1a1c center/cover no-repeat;
}
.story__body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.story__meta {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: 12px; font-weight: 700; color: var(--muted);
}
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  border-radius: 999px; padding: 3px 9px;
  background: var(--paper-2); color: var(--red-deep);
}
.pill img { width: 16px; height: 16px; border-radius: 50%; }
.story h3 { margin: 0; font-family: var(--serif); font-size: 1.35rem; letter-spacing: -.02em; }
.story p { margin: 0; color: var(--muted); flex: 1; }
.story a.more { align-self: flex-start; margin-top: auto; }

.feed {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.feed.feed--side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.story.story--row {
  flex-direction: row;
  align-items: stretch;
  min-height: 132px;
}
.story.story--row .story__cover {
  flex: 0 0 30%;
  width: 30%;
  max-width: 30%;
  min-height: 0;
  aspect-ratio: unset;
  align-self: stretch;
  background-size: cover;
  background-position: center;
}
.story.story--row .story__body {
  flex: 1 1 70%;
  min-width: 0;
  padding: 12px 16px 14px;
  gap: 6px;
}
.story.story--row h3 {
  font-size: 1.02rem;
  line-height: 1.28;
}
.story.story--row p {
  font-size: .86rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.filters {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 22px;
}
.filters button, .filters a {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  font: inherit;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
}
.filters a { text-decoration: none; }
.filters a.is-on { background: var(--red); color: #fff; border-color: var(--red); }

/* Article */
.article {
  display: grid;
  grid-template-columns: minmax(0, 720px) 280px;
  gap: 40px;
  padding: 40px 0 80px;
}
.article__hero {
  aspect-ratio: 16/8;
  border-radius: 22px;
  background: #2a1a1c center/cover no-repeat;
  margin-bottom: 22px;
  box-shadow: var(--shadow);
}
.article h1 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -.03em;
  line-height: 1.15;
  margin: 10px 0 14px;
}
.article .body p { margin: 0 0 14px; }
.article .body h2 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 26px 0 8px;
}
.article .body ul { margin: 0 0 16px; padding-left: 1.2rem; }
.aside {
  position: sticky;
  top: 92px;
  align-self: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}
.aside h4 { margin: 0 0 10px; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.aside a { display: block; font-weight: 700; margin: 8px 0; color: var(--ink); }

/* Lodge page */
.lodge-head {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 28px;
}
.lodge-head img {
  width: 88px; height: 88px; border-radius: 50%;
  border: 3px solid var(--gold);
}

.quote {
  border-left: 4px solid var(--gold);
  padding: 4px 0 4px 16px;
  font-family: var(--serif);
  font-size: 1.2rem;
  margin: 0 0 22px;
}

.foot {
  background: var(--red-deep);
  color: #f3ead8;
  padding: 36px 0 28px;
}
.foot a { color: var(--gold-2); }
.foot__in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
}
.foot__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f3ead8;
  font-weight: 800;
  flex-shrink: 0;
}
.foot__brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-weight: 700;
}
.foot__note {
  flex: 1 1 100%;
  margin: 4px 0 0;
  opacity: .8;
  font-size: .85rem;
  line-height: 1.45;
}

@media (max-width: 960px) {
  .rings, .stats-row, .quotes, .hot-list, .contact-split, .grid-2, .feed, .article { grid-template-columns: 1fr; }
  .quote-edit { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .sec-head { flex-direction: column; align-items: flex-start; }
  .nav__in { flex-wrap: nowrap; gap: 10px; }
  .nav .nav__mark { min-width: 0; flex: 1; }
  .nav .nav__mark span { min-width: 0; }
  .nav .nav__mark small {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }
  .hero__art {
    min-height: min(78vh, 540px);
  }
  .hero__banner {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
  }
  .hero__in {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px 12px 18px;
    width: auto;
    margin: 0;
  }
  .hero__card {
    border-radius: 16px;
    padding: 14px 14px 16px;
  }
  .hero h1 { font-size: 1.28rem; margin-bottom: 8px; }
  .hero p.lead { font-size: .86rem; margin-bottom: 12px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .cta-row .btn { width: 100%; }
  .story.story--row { min-height: 110px; }
  .story.story--row h3 { font-size: .95rem; }
  .foot__in { flex-direction: column; align-items: flex-start; gap: 12px; }
  .marquee, .hero, .band, .foot { max-width: 100%; }
  .marquee {
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .nav.is-open .nav-toggle {
    opacity: 0;
    pointer-events: none;
  }
  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    transition: transform .2s ease, top .2s ease, background .2s ease;
  }
  .nav-drawer {
    display: flex;
    position: fixed;
    z-index: 22;
    top: 0;
    right: 0;
    width: min(320px, 86vw);
    height: 100dvh;
    margin: 0;
    padding: 0 0 20px;
    background: var(--paper);
    border-left: 1px solid var(--line);
    box-shadow: -12px 0 32px rgba(22, 12, 16, .22);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow-x: hidden;
    overflow-y: auto;
    transform: translateX(105%);
    visibility: hidden;
    pointer-events: none;
    transition: transform .28s ease, visibility .28s;
  }
  .nav.is-open .nav-drawer {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 14px 14px 16px;
    background: var(--red-deep);
    color: #f3ead8;
    border-bottom: 1px solid rgba(240, 215, 138, .35);
    position: sticky;
    top: 0;
    z-index: 1;
  }
  .nav-drawer__head .nav__mark { color: #f3ead8; }
  .nav-drawer__head .nav__mark img {
    width: 36px;
    height: 36px;
    border-color: var(--gold);
  }
  .nav-close {
    display: inline-flex;
    position: relative;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
  }
  .nav-close::before,
  .nav-close::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    top: 50%;
    height: 1.5px;
    background: var(--gold-2);
  }
  .nav-close::before { transform: rotate(45deg); }
  .nav-close::after { transform: rotate(-45deg); }
  .nav__links {
    flex-direction: column;
    gap: 0;
    font-size: 1rem;
    padding: 8px 18px 4px;
  }
  .nav__links a {
    display: block;
    padding: 11px 8px 11px 12px;
    border-radius: 0;
    border-left: 3px solid transparent;
    border-bottom: 1px solid rgba(122, 28, 40, .1);
    color: var(--ink);
    background: none;
    box-shadow: none;
  }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__links a:hover,
  .nav__links a.is-on {
    background: none;
    box-shadow: none;
    border-radius: 0;
    border-left-color: var(--red);
    color: var(--red);
  }
  .nav-drawer__tools {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin: auto 18px 0;
    padding: 14px 0 0;
    border-top: 1px solid var(--line);
  }
  .nav-drawer__tools .lang-dd { width: 100%; }
  .nav-drawer__tools .lang-dd__btn {
    width: auto;
    min-height: 0;
    padding: 0;
    border: 0;
    background: transparent;
    border-radius: 0;
    font-size: .9rem;
  }
  .nav-drawer__tools .nav-login,
  .nav-drawer__tools .nav-join {
    width: 100%;
    min-height: 42px;
    justify-content: center;
    border-radius: 999px;
    font-size: .9rem;
    padding: 0 12px;
  }
  .nav-drawer__tools .nav-login {
    border: 1.5px solid var(--red);
    background: var(--paper);
    color: var(--red) !important;
  }
  .lang-dd__menu { position: static; display: none; box-shadow: none; width: 100%; border: 0; background: transparent; padding: 4px 0; }
  .lang-dd.is-open .lang-dd__menu { display: grid; }
  .lang-dd__menu button {
    padding: 6px 0;
    border-radius: 0;
  }
  .lang-dd__menu button:hover,
  .lang-dd__menu button.is-on {
    background: transparent;
    color: var(--red);
  }
}
