/* ==========================================================================
   Facegammon — marketing site
   Palette and type are lifted from lib/core/theme/app_theme.dart so the site
   and the app read as one product: Marcellus for anything engraved-looking,
   Nunito for text you actually read, green/gold over dark wood.
   ========================================================================== */

:root {
  --green:      #2E7D5B;
  --green-lit:  #46A97C;
  --gold:       #C98A3B;
  --gold-lit:   #E8B368;
  --cream:      #E8D4B0;
  --wood:       #6B3F2A;

  --ink:        #14100E;
  --ink-2:      #1C1613;
  --ink-3:      #251D18;
  --line:       rgba(232, 212, 176, 0.14);

  --text:       #EDE3D2;
  --text-dim:   rgba(237, 227, 210, 0.68);

  --serif: 'Marcellus', Georgia, 'Times New Roman', serif;
  --sans:  'Nunito', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --wrap: 1160px;
  --r: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.7vw, 2.9rem); }
h3 { font-size: 1.32rem; }
h4 { font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }

p { margin: 0 0 1em; }
b { font-weight: 700; color: var(--cream); }
em { color: var(--cream); font-style: italic; }

a { color: var(--gold-lit); text-decoration: none; }
a:hover { color: var(--cream); }

:focus-visible {
  outline: 2px solid var(--gold-lit);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr, .skip:not(:focus) {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.skip:focus {
  position: fixed; top: 12px; left: 12px; z-index: 200;
  width: auto; height: auto; clip: auto;
  background: var(--gold); color: #1A120C;
  padding: 10px 18px; border-radius: 8px; font-weight: 700;
}

.wrap { width: min(var(--wrap), calc(100% - 44px)); margin-inline: auto; }
.wrap--narrow { width: min(760px, calc(100% - 44px)); }

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1em;
}

/* --------------------------------------------------------------- buttons */

.btn {
  --btn-bg: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 1.9em;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--cream);
  font: 600 0.95rem/1 var(--sans);
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(201, 138, 59, 0.28);
  color: #1A120C;
  background: var(--gold-lit);
}
.btn--gold {
  background: linear-gradient(160deg, var(--gold-lit), var(--gold));
  color: #1A120C;
  border-color: transparent;
}
.btn--ghost { border-color: var(--line); color: var(--text); }
.btn--sm { padding: 0.62em 1.3em; font-size: 0.86rem; }

/* ------------------------------------------------------------------- nav */

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: transparent;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(16, 12, 10, 0.88);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 84px; }

/* Sized by height, not width. At 148px wide this artwork stands 95px
   tall - taller than the bar it sits in - so it overflowed evenly above
   and below, and at the top of the page the overflow above is off the
   screen entirely: the crown was cut off by the browser's own edge.
   Constraining the height is what makes that impossible rather than
   merely fixed at one bar size. */
.nav__brand img { height: 60px; width: auto; }

.nav__menu { display: flex; align-items: center; gap: 26px; }
.nav__menu a {
  color: var(--text-dim);
  font-size: 0.93rem;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav__menu a:hover, .nav__menu a.is-active { color: var(--cream); }
.nav__menu .btn { color: var(--cream); }
.nav__menu .btn:hover { color: #1A120C; }

.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 1px solid var(--line); border-radius: 10px;
  cursor: pointer;
}
.nav__bars, .nav__bars::before, .nav__bars::after {
  display: block; width: 20px; height: 1.5px;
  background: var(--cream); margin-inline: auto;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav__bars::before, .nav__bars::after { content: ''; position: relative; }
.nav__bars::before { top: -6px; }
.nav__bars::after { top: 4.5px; }
.nav__toggle[aria-expanded="true"] .nav__bars { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__bars::before { transform: translateY(6px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bars::after { transform: translateY(-4.5px) rotate(-45deg); }

/* ------------------------------------------------------------------ hero */

.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background: url('../img/hero-bg.webp') center/cover no-repeat;
  opacity: 0.5;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 60% at 20% 30%, rgba(20, 16, 14, 0.35), transparent 70%),
    linear-gradient(180deg, rgba(20,16,14,0.82) 0%, rgba(20,16,14,0.55) 38%, var(--ink) 100%);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.hero h1 { text-shadow: 0 6px 30px rgba(0, 0, 0, 0.6); }
.lede { font-size: 1.12rem; color: var(--text-dim); max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0 40px; }

.hero__facts {
  display: flex; flex-wrap: wrap; gap: 38px;
  list-style: none; margin: 0; padding: 26px 0 0;
  border-top: 1px solid var(--line);
}
.hero__facts b {
  display: block;
  font-family: var(--serif); font-weight: 400;
  font-size: 1.9rem; color: var(--gold-lit);
}
.hero__facts span {
  font-size: 0.76rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--text-dim);
}

.hero__art { position: relative; }
.hero__board {
  border-radius: 10px;
  box-shadow: var(--shadow);
  transform: perspective(1400px) rotateY(-11deg) rotateX(4deg);
}
.dice {
  position: absolute; right: -10px; bottom: -26px;
  display: flex; gap: 14px;
}
.dice img {
  width: 74px;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.6));
  animation: float 5s ease-in-out infinite;
}
.dice img:last-child { animation-delay: -2.5s; }
.dice.is-rolling img { animation: tumble 0.5s var(--ease); }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-10px) rotate(4deg); }
}
@keyframes tumble {
  0%   { transform: rotate(0) scale(1); }
  50%  { transform: rotate(200deg) scale(1.18); }
  100% { transform: rotate(360deg) scale(1); }
}

/* -------------------------------------------------------------- sections */

.section { padding: 104px 0; }
.section--felt {
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(46, 125, 91, 0.10), transparent 60%),
    var(--ink-2);
  border-block: 1px solid var(--line);
}

.section__head { max-width: 62ch; margin-bottom: 56px; }
.section__lede { color: var(--text-dim); font-size: 1.06rem; }

.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(201, 138, 59, 0.45); }
.card img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.card h3 { margin: 24px 24px 10px; }
.card p { margin: 0 24px 26px; color: var(--text-dim); font-size: 0.96rem; }

/* ----------------------------------------------------------------- tiers */

.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
}
.tier {
  position: relative;
  padding: 22px 22px 24px;
  background: linear-gradient(170deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  border: 1px solid var(--line);
  border-radius: var(--r);
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s, background 0.3s;
}
.tier:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 138, 59, 0.5);
  background: linear-gradient(170deg, rgba(201,138,59,0.14), rgba(255,255,255,0.02));
}
.tier img { height: 96px; width: auto; margin: 0 auto 14px; object-fit: contain; }
.tier h3 { font-size: 1.1rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.tier__stake {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--gold-lit);
  margin: 0 0 14px;
}
.tier__stake span { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); }
.tier dl {
  display: grid; grid-template-columns: auto auto;
  gap: 2px 10px; margin: 0;
  font-size: 0.82rem; text-align: left;
  border-top: 1px solid var(--line); padding-top: 12px;
}
.tier dt { color: var(--text-dim); }
.tier dd { margin: 0; text-align: right; color: var(--cream); }
.tier--top { border-color: rgba(201, 138, 59, 0.4); }
.tier--top::after {
  content: 'TOP TABLE';
  position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #1A120C;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
  padding: 3px 10px; border-radius: 999px;
}

.note {
  margin-top: 40px;
  padding: 22px 26px;
  border-left: 2px solid var(--gold);
  background: rgba(0, 0, 0, 0.25);
  border-radius: 0 var(--r) var(--r) 0;
  color: var(--text-dim);
  max-width: 68ch;
}

/* ----------------------------------------------------------------- split */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 64px;
  align-items: center;
}
.split--rev .split__art { order: -1; }
.split__copy p { color: var(--text-dim); }
.split__art img { border-radius: var(--r); box-shadow: var(--shadow); margin-inline: auto; }
.split figure { margin: 0; }

.ticks { list-style: none; margin: 0 0 32px; padding: 0; }
.ticks li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--text-dim);
  font-size: 0.98rem;
}
.ticks li::before {
  content: '';
  position: absolute; left: 4px; top: 0.62em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--green-lit);
  box-shadow: 0 0 0 4px rgba(70, 169, 124, 0.16);
}

.ladder { display: grid; gap: 10px; }
.ladder__row {
  display: grid;
  grid-template-columns: 74px 1fr 78px;
  align-items: center;
  gap: 14px;
  font-size: 0.84rem;
  color: var(--text-dim);
}
.ladder__row i {
  display: block; height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
  position: relative;
}
.ladder__row i::after {
  content: '';
  position: absolute; inset: 0 auto 0 0;
  width: var(--w);
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 999px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1s var(--ease);
}
.is-in .ladder__row i::after { transform: scaleX(1); }
.ladder__row:nth-child(2) i::after { transition-delay: 0.1s; }
.ladder__row:nth-child(3) i::after { transition-delay: 0.2s; }
.ladder__row:nth-child(4) i::after { transition-delay: 0.3s; }
.ladder__row:nth-child(5) i::after { transition-delay: 0.4s; }
.ladder__row b { color: var(--cream); font-weight: 600; text-align: right; }

/* ---------------------------------------------------------------- boards */

.boards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.board { margin: 0; position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.board img { transition: transform 0.6s var(--ease); }
.board:hover img { transform: scale(1.04); }
.board figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 34px 20px 14px;
  font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0.06em;
  background: linear-gradient(transparent, rgba(10, 8, 6, 0.9));
}

.pieces {
  display: flex; align-items: center; gap: 18px;
  margin-top: 34px; padding: 18px 26px;
  border: 1px solid var(--line); border-radius: var(--r);
  background: rgba(0, 0, 0, 0.22);
}
.pieces img { width: 58px; }
.pieces p { margin: 0; color: var(--text-dim); font-size: 0.94rem; }

.badge {
  display: inline-block;
  padding: 7px 16px;
  border: 1px solid rgba(201, 138, 59, 0.5);
  border-radius: 999px;
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-lit);
  margin: 0;
}

/* ------------------------------------------------------------------- cta */

.cta { position: relative; padding: 118px 0; text-align: center; overflow: hidden; }
.cta__bg {
  position: absolute; inset: 0;
  background: url('../img/cta-bg.webp') center/cover no-repeat;
  opacity: 0.34;
}
.cta__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--ink), rgba(20, 16, 14, 0.72) 45%, var(--ink));
}
.cta__inner { position: relative; }
.cta h2 { margin-bottom: 0.25em; }
.cta > .wrap > p { color: var(--text-dim); font-size: 1.08rem; }
.cta__buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin: 34px 0 16px; }
.cta__note { font-size: 0.82rem; color: var(--text-dim); margin: 0; }

/* ------------------------------------------------------------------- faq */

.faq { display: grid; gap: 12px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--ink-2);
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq details[open] { border-color: rgba(201, 138, 59, 0.4); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 56px 20px 24px;
  position: relative;
  font-family: var(--serif);
  font-size: 1.08rem;
  color: var(--cream);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '';
  position: absolute; right: 24px; top: 50%;
  width: 9px; height: 9px;
  border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq p { margin: 0 24px 22px; color: var(--text-dim); font-size: 0.97rem; }

/* ---------------------------------------------------------------- footer */

.foot { background: #0F0C0A; border-top: 1px solid var(--line); padding: 66px 0 28px; }
.foot__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 48px; }
.foot__brand img { width: 160px; margin-bottom: 16px; }
.foot__brand p { color: var(--text-dim); font-size: 0.94rem; max-width: 34ch; }
.foot__links { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 28px; }
.foot__links a { display: block; color: var(--text-dim); font-size: 0.93rem; margin-bottom: 9px; }
.foot__links a:hover { color: var(--cream); }
.foot__base {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  margin-top: 48px; padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem; color: rgba(237, 227, 210, 0.45);
}
.foot__base p { margin: 0; }

/* ---------------------------------------------------------------- reveal */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ------------------------------------------------------------ responsive */

@media (max-width: 980px) {
  .hero { padding-top: 128px; }
  .hero__inner, .split { grid-template-columns: 1fr; gap: 44px; }
  .split--rev .split__art { order: 0; }
  .hero__art { max-width: 560px; }
  .split__art img { max-width: 420px; }
  .foot__inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 76px 0; }

  .nav__toggle { display: block; }
  .nav__menu {
    position: absolute; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px 22px 22px;
    background: rgba(16, 12, 10, 0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav__menu .btn { margin-top: 16px; border-bottom: none; justify-content: center; }

  .hero__board { transform: none; }
  .dice img { width: 58px; }
  .hero__facts { gap: 26px; }
  .tier img { height: 76px; }
  .pieces { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .ladder__row i::after { transform: scaleX(1); }
}

/* ------------------------------------------------------------ plain card */

/* A card with no picture on top. The image supplied the breathing space
   above the heading, so without one the text starts hard against the
   border. */
.card--plain { padding-top: 8px; }

/* ---------------------------------------------------------- legal pages */

/* The nav is transparent until it sticks, which works over a hero. These
   pages open on text, so it has to be solid from the first pixel or the
   links sit on top of the first paragraph. */
.nav--solid {
  background: rgba(16, 12, 10, 0.94);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.legal { padding: 148px 0 96px; }
.legal h1 { margin-bottom: 12px; }
.legal__head { margin-bottom: 48px; }
.legal__dates {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 22px;
}

.legal section { margin-bottom: 44px; }
.legal h2 {
  font-size: 1.42rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.legal h3 {
  font-size: 1.04rem;
  margin: 26px 0 8px;
  color: var(--cream);
}
.legal p { color: var(--text-dim); margin-bottom: 14px; }
.legal b { color: var(--cream); font-weight: 600; }
.legal a { color: var(--gold); }
.legal .ticks { margin-bottom: 18px; }
.legal .ticks li { margin-bottom: 10px; }

/* Scroll targets have to clear the fixed nav, or following a link from
   the contents list puts the heading underneath it. */
.legal section[id] { scroll-margin-top: 96px; }

.legal__toc {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px 28px 26px;
  margin-bottom: 52px;
}
.legal__toc h2 {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--sans);
  color: var(--text-dim);
  border: none;
  padding: 0;
  margin-bottom: 14px;
}
.legal__toc ol {
  columns: 2;
  column-gap: 36px;
  margin: 0;
  padding-left: 20px;
  font-size: 0.94rem;
}
.legal__toc li { margin-bottom: 7px; break-inside: avoid; }
.legal__toc a { color: var(--text-dim); }
.legal__toc a:hover { color: var(--gold); }

.legal__note {
  border-left: 2px solid var(--gold);
  padding: 14px 20px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 0 var(--r) var(--r) 0;
}

/* Tables scroll inside themselves rather than pushing the page sideways
   on a phone. */
.legal__table { overflow-x: auto; margin-bottom: 18px; }
.legal__table table {
  width: 100%;
  min-width: 460px;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.legal__table th, .legal__table td {
  text-align: left;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.legal__table th {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.legal__table td { color: var(--text-dim); }
.legal__table tbody tr:last-child td { border-bottom: none; }

.foot__base--legal { justify-content: space-between; }
.foot__base--legal a { color: var(--text-dim); }
.foot__base--legal a:hover { color: var(--gold); }

@media (max-width: 760px) {
  /* These pages keep their menu rather than hiding it behind a toggle
     they do not have. It has to be allowed to shrink, though: at full
     size the logo, three links and a button came to more than a phone's
     width, and a nav wider than the viewport widens the whole document
     - which dragged every paragraph on the page off the right edge. */
  .nav--solid .nav__brand img { height: 42px; }
  .nav--solid .nav__inner { gap: 10px; height: 64px; }
  .nav__menu--legal {
    display: flex;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px 14px;
    padding: 0;
    background: none;
    border: none;
  }
  .nav__menu--legal a { padding: 0; border-bottom: none; font-size: 0.8rem; }
  .nav__menu--legal .btn { margin-top: 0; padding: 8px 14px; font-size: 0.74rem; }

  .legal { padding-top: 116px; }
  .legal__toc ol { columns: 1; }
  /* Narrower than the smallest phone, so the table scrolls inside its
     own box instead of pushing the page sideways. */
  .legal__table table { min-width: 340px; }
}

/* ------------------------------------------------------- face to face */

/* The one picture on the page that is allowed to be large. It is the
   feature the game is named after, and a thumbnail would argue the
   opposite of what the section says. */
.face__art {
  margin: 0 0 44px;
}
.face__art img {
  width: 100%;
  height: auto;
  border-radius: var(--r);
  border: 1px solid rgba(201, 138, 59, 0.28);
  box-shadow: var(--shadow);
}
