/* Večerní Nádraží — contemporary editorial brasserie */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  max-width: 100%;
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

::selection {
  background: rgba(196, 92, 62, 0.25);
}

:root {
  --bg: #f2ede4;
  --bg-alt: #e8e2d6;
  --ink: #141210;
  --ink-soft: #5c564c;
  --accent: #c45c3e;
  --accent-deep: #9a3f28;
  --sage: #4a6741;
  --sage-soft: #dce6d8;
  --line: #cfc6b6;
  --line-strong: #141210;
  --surface: #faf8f4;
  --night: #1e2420;

  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;

  --rail: clamp(1rem, 3vw, 2.5rem);
  --max: 1380px;
  --header-h: 4.25rem;
}

[data-theme="dark"] {
  --bg: #161412;
  --bg-alt: #1f1c18;
  --ink: #f0ebe2;
  --ink-soft: #a39a8c;
  --line: #3a3530;
  --line-strong: #f0ebe2;
  --surface: #1f1c18;
  --sage-soft: #2a3528;
}

/* —— Skip —— */
.skip {
  position: absolute;
  top: -100%;
  left: var(--rail);
  z-index: 10001;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
}

.skip:focus {
  top: 0.75rem;
}

/* —— Age gate —— */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(20, 18, 16, 0.92);
}

.age-gate[hidden] {
  display: none;
}

.age-gate__panel {
  width: min(26rem, 100%);
  padding: 2.5rem 2rem;
  background: var(--surface);
  border: 2px solid var(--line-strong);
}

.age-gate__mark {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.age-gate__title {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.age-gate__text {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* —— Cookies —— */
.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  transform: translateY(110%);
  transition: transform 0.35s ease;
  border-top: 2px solid var(--line-strong);
  background: var(--surface);
}

.cookie.is-visible {
  transform: translateY(0);
}

.cookie__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1rem var(--rail);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie__text {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  max-width: 42rem;
}

.cookie__btns {
  display: flex;
  gap: 0.5rem;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--fill {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn--fill:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.btn--line {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn--line:hover {
  background: var(--ink);
  color: var(--bg);
}

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

.btn--wide {
  width: 100%;
}

.btn--sm {
  min-height: 2.25rem;
  padding: 0 0.875rem;
  font-size: 0.6875rem;
}

/* —— Site header —— */
.site-head {
  position: sticky;
  top: 0;
  z-index: 800;
  height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(10px);
}

.site-head__row {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--rail);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.site-mark {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-mark__name {
  font-family: var(--serif);
  font-size: 1.125rem;
  letter-spacing: 0.02em;
}

.site-mark__sub {
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.site-nav {
  display: none;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 1.75rem);
}

.site-nav a {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
  border-color: var(--accent);
}

.site-head__tools {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: flex-end;
}

.theme-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.theme-btn__sun,
.theme-btn__moon {
  grid-area: 1 / 1;
  transition: opacity 0.2s;
}

.theme-btn__sun {
  opacity: 0;
}

[data-theme="dark"] .theme-btn__sun {
  opacity: 1;
}

[data-theme="dark"] .theme-btn__moon {
  opacity: 0;
}

.menu-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line-strong);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 1.125rem;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}

.menu-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.mobile-drawer.is-open {
  display: block;
}

.mobile-drawer a {
  display: block;
  padding: 1rem var(--rail);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 900px) {
  .site-nav {
    display: flex;
  }

  .menu-btn {
    display: none;
  }
}

/* —— Editorial layout blocks —— */
.editorial {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--rail);
}

.eyebrow {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
}

.display--xl {
  font-size: clamp(2.75rem, 8vw, 5.5rem);
}

.display--lg {
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.display--md {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.lead {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--ink-soft);
  max-width: 38ch;
  line-height: 1.65;
}

.rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

.rule--bold {
  border-top-width: 2px;
  border-color: var(--line-strong);
}

/* —— Home: intro strip —— */
.strip {
  padding-top: calc(var(--header-h) + 2rem);
  padding-bottom: 3rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .strip {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
    padding-bottom: 4rem;
  }
}

.strip__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.strip__aside {
  align-self: start;
  padding: 1.25rem;
  background: var(--sage-soft);
  border-left: 3px solid var(--sage);
  font-size: 0.875rem;
  line-height: 1.6;
}

[data-theme="dark"] .strip__aside {
  background: var(--sage-soft);
  color: var(--ink);
}

.strip__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.strip__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.strip__visual figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--ink) 75%, transparent);
  color: #f2ede4;
}

/* —— Manifesto —— */
.manifest {
  padding: 4rem 0;
  background: var(--surface);
  border-block: 2px solid var(--line-strong);
}

.manifest__grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .manifest__grid {
    grid-template-columns: 0.35fr 1fr;
    gap: 4rem;
  }
}

.manifest__body {
  columns: 1;
  gap: 2rem;
}

@media (min-width: 700px) {
  .manifest__body {
    columns: 2;
    column-gap: 2.5rem;
  }
}

.manifest__body p {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  break-inside: avoid;
}

.manifest__pull {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* —— Menu sheet (jídelní fragmenty) —— */
.plates {
  padding: 4rem 0 5rem;
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.plates__intro {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 768px) {
  .plates__intro {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 3rem;
  }

  .plates__intro .lead {
    max-width: none;
    text-align: right;
  }
}

.menu-sheet__layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .menu-sheet__layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.menu-feature {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.menu-feature__visual {
  overflow: hidden;
  border: 1px solid var(--line);
}

.menu-feature__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.menu-feature:hover .menu-feature__visual img {
  transform: scale(1.02);
}

.menu-feature__cat {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

.menu-feature__title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0.35rem 0 0.75rem;
}

.menu-feature__desc {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 36ch;
}

.menu-feature__price {
  margin-top: 1rem;
  font-family: var(--serif);
  font-size: 1.375rem;
  color: var(--accent);
}

.menu-sheet__list-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.menu-lines {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.menu-line {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.menu-line__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.35rem;
}

.menu-line__cat {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.menu-line__price {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  white-space: nowrap;
}

.menu-line__title {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.menu-line__desc {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 40ch;
}

.menu-callout {
  padding: 1.5rem 1.25rem;
  background: color-mix(in srgb, var(--accent) 8%, var(--bg));
  border-left: 3px solid var(--accent);
}

.menu-callout__cat {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.menu-callout__title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0.4rem 0 0.5rem;
}

.menu-callout__desc {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.menu-callout__price {
  margin-top: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
}

.menu-sheet__notes {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

@media (min-width: 640px) {
  .menu-sheet__notes {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.menu-note {
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.menu-note strong {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

[data-theme="dark"] .plates {
  background: var(--bg-alt);
}

[data-theme="dark"] .menu-callout {
  background: color-mix(in srgb, var(--accent) 12%, var(--card));
}

/* —— Spatial notes —— */
.space {
  padding: 5rem 0;
  background: var(--bg-alt);
}

.space__layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .space__layout {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
  }
}

.space__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 2px solid var(--line-strong);
}

.space__item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.space__num {
  font-family: var(--serif);
  font-size: 1.75rem;
  color: var(--accent);
  line-height: 1;
}

.space__item h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
}

.space__item p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.space__photo {
  position: relative;
}

.space__photo img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border: 2px solid var(--line-strong);
}

.space__caption {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--ink-soft);
  max-width: 32ch;
}

/* —— Night bridge —— */
.night {
  padding: 0;
  background: var(--night);
  color: #e8e4dc;
}

.night__split {
  display: grid;
}

@media (min-width: 900px) {
  .night__split {
    grid-template-columns: 1fr 1fr;
    min-height: 28rem;
  }
}

.night__copy {
  padding: 3.5rem var(--rail);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.night__copy .eyebrow {
  color: #d4a090;
}

.night__copy .lead {
  color: #b8b2a6;
}

.night__copy a {
  color: #f2c4b0;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  width: fit-content;
}

.night__media {
  position: relative;
  min-height: 16rem;
}

.night__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.night__stamp {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* —— Arrival / reservation —— */
.arrival {
  padding: 5rem 0;
}

.arrival__grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .arrival__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
  }
}

.arrival__facts {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.arrival__fact dt {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.25rem;
}

.arrival__fact dd {
  font-size: 0.9375rem;
}

.arrival__form-box {
  border: 2px solid var(--line-strong);
  padding: 2rem;
  background: var(--surface);
}

.arrival__form-box h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 480px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.field label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.field input.is-error,
.field select.is-error,
.field textarea.is-error {
  border-color: #b32d2d;
}

.field__err {
  font-size: 0.75rem;
  color: #b32d2d;
  min-height: 1rem;
}

.form-ok {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid var(--sage);
  background: var(--sage-soft);
  font-size: 0.875rem;
}

.form-ok[hidden],
[hidden] {
  display: none !important;
}

.arrival__note {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* —— Light footer —— */
.site-foot {
  padding: 2.5rem var(--rail) 2rem;
  border-top: 1px solid var(--line);
  max-width: var(--max);
  margin: 0 auto;
}

.site-foot__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.site-foot__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.site-foot__links a:hover {
  color: var(--accent);
}

.site-foot__legal {
  width: 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.6875rem;
  line-height: 1.5;
}

/* —— Kasino page —— */
.page-kasino .site-head {
  border-bottom-color: var(--line-strong);
}

.kasino-hero {
  padding-top: calc(var(--header-h) + 2.5rem);
  padding-bottom: 3rem;
  border-bottom: 2px solid var(--line-strong);
}

.kasino-hero__row {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .kasino-hero__row {
    grid-template-columns: 2fr 1fr;
    align-items: end;
  }
}

.kasino-hero__status {
  padding: 1.5rem;
  border: 2px solid var(--line-strong);
  font-size: 0.8125rem;
}

.kasino-hero__status strong {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.kasino-sheet {
  padding: 3rem 0;
}

.kasino-sheet + .kasino-sheet {
  border-top: 1px solid var(--line);
}

.kasino-sheet__head {
  margin-bottom: 2rem;
  max-width: 28rem;
}

.timing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.timing-table th,
.timing-table td {
  text-align: left;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.timing-table th {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
  width: 30%;
}

.room-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.room-block {
  display: grid;
  gap: 1rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

@media (min-width: 768px) {
  .room-block {
    grid-template-columns: 8rem 1fr 12rem;
    align-items: start;
    gap: 2rem;
  }
}

.room-block__code {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}

.room-block h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.room-block p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.room-block__meta {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.etiquette-cols {
  display: grid;
  gap: 2rem;
}

@media (min-width: 700px) {
  .etiquette-cols {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.etiquette-cols h3 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.etiquette-cols li {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.55;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
}

.kasino-legal {
  padding: 3rem 0 4rem;
  background: var(--bg-alt);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.kasino-legal p + p {
  margin-top: 0.75rem;
}

/* —— Legal pages —— */
.page-legal main {
  max-width: 42rem;
  margin: 0 auto;
  padding: calc(var(--header-h) + 3rem) var(--rail) 4rem;
}

.page-legal h1 {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.page-legal .legal-updated {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-bottom: 2rem;
}

.page-legal h2 {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 400;
  margin: 2rem 0 0.75rem;
}

.page-legal p,
.page-legal li {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.page-legal ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.page-legal a {
  color: var(--accent);
  text-decoration: underline;
}

/* —— Reveal —— */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

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

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
