/* argensuerte.site — Guía de casinos presenciales de Argentina
   Design System Renovado: Midnight Navy + Oro Imperial + Blanco Porcelana.
   Tipografía: Fraunces (display) + Instrument Sans (texto). */

:root {
  --ink: #0B1120;
  --pine: #0F172A;
  --pine-2: #1E293B;
  --pine-3: #334155;
  --baize: #1E3A8A;
  --ivory: #FAFAF8;
  --ivory-2: #F1F5F9;
  --paper-line: #E2E8F0;
  --brass: #EAB308;
  --brass-lo: #CA8A04;
  --brass-deep: #A16207;
  --cream: #F8FAFC;
  --cream-dim: #CBD5E1;
  --sage: #94A3B8;
  --slate: #64748B;
  --slate-2: #1E293B;
  --line-dark: rgba(234, 179, 8, 0.25);
  --line-light: rgba(30, 41, 59, 0.12);
  --shadow: 0 28px 65px -22px rgba(11, 17, 32, 0.5);
  --shadow-sm: 0 12px 32px -16px rgba(11, 17, 32, 0.25);
  --r: 16px;
  --r-lg: 24px;
  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --f-display: "Fraunces", Georgia, serif;
  --f-body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

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

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

body {
  margin: 0;
  font-family: var(--f-body);
  background: var(--ivory);
  color: var(--slate-2);
  font-size: clamp(16px, 1.02vw, 17.5px);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg {
  display: block;
  max-width: 100%;
}

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

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.015em;
  margin: 0;
}

p {
  margin: 0 0 1em;
}

strong {
  font-weight: 600;
  color: var(--slate-2);
}

/* ---------- layout ---------- */
.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section {
  padding-block: clamp(56px, 8vw, 110px);
}

.eyebrow {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--brass-deep);
  display: inline-flex;
  align-items: center;
  gap: .8em;
  margin: 0 0 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--brass-lo);
  display: inline-block;
  border-radius: 2px;
}

.on-dark .eyebrow {
  color: var(--brass);
}

.on-dark .eyebrow::before {
  background: var(--brass);
}

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.55;
  color: var(--slate);
  max-width: 60ch;
}

.on-dark {
  background: var(--pine);
  color: var(--cream);
}

.on-dark h1, .on-dark h2, .on-dark h3 {
  color: var(--ivory);
}

.on-dark .lede, .on-dark p {
  color: var(--cream-dim);
}

.on-dark strong {
  color: var(--ivory);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  padding: .88em 1.6em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2, 0, 0, 1), background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.btn svg {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brass), var(--brass-lo));
  color: var(--ink);
  border-color: var(--brass);
  box-shadow: 0 4px 14px rgba(234, 179, 8, 0.28);
}

.btn-primary:hover {
  background: var(--ivory);
  color: var(--pine);
  border-color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

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

.on-dark .btn-ghost {
  color: var(--cream);
  border-color: var(--line-dark);
}

.btn-ghost:hover {
  border-color: var(--brass);
  color: var(--brass-deep);
  transform: translateY(-2px);
  background: rgba(234, 179, 8, 0.06);
}

.on-dark .btn-ghost:hover {
  color: var(--brass);
  background: rgba(234, 179, 8, 0.1);
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(11, 17, 32, 0.92);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line-dark);
  color: var(--cream);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  min-height: 74px;
}

.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.32rem;
  color: var(--ivory);
  letter-spacing: -.01em;
  white-space: nowrap;
}

.brand .mark {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  filter: drop-shadow(0 2px 8px rgba(234, 179, 8, 0.35));
}

.brand em {
  font-style: italic;
  color: var(--brass);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-left: auto;
}

.nav a {
  font-size: .93rem;
  font-weight: 500;
  color: var(--cream-dim);
  transition: color .2s, transform .2s;
  position: relative;
}

.nav a:hover, .nav a[aria-current="page"] {
  color: var(--brass);
}

.pill18 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .08em;
  color: var(--ink);
  background: linear-gradient(135deg, var(--brass), var(--brass-lo));
  border-radius: 999px;
  padding: .35em .75em;
  box-shadow: 0 2px 8px rgba(234, 179, 8, 0.35);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--line-dark);
  color: var(--cream);
  border-radius: 12px;
  width: 44px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.nav-toggle:hover {
  background: rgba(234, 179, 8, 0.12);
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--line-dark);
    padding: .5rem var(--pad) 1.4rem;
    transform: translateY(-120%);
    transition: transform .32s ease;
    margin-left: 0;
    box-shadow: var(--shadow);
  }
  .nav.open {
    transform: translateY(0);
  }
  .nav a {
    padding: .85rem 0;
    width: 100%;
    border-bottom: 1px solid var(--line-dark);
    font-size: 1rem;
  }
  .nav .pill18 {
    align-self: flex-start;
    margin-top: .9rem;
  }
  .nav-toggle {
    display: inline-flex;
  }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--pine);
  color: var(--cream);
  overflow: hidden;
  padding-block: clamp(68px, 10vw, 135px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(100% 80% at 85% -10%, rgba(234, 179, 8, 0.22), transparent 60%),
    radial-gradient(90% 70% at 0% 110%, rgba(30, 58, 138, 0.45), transparent 65%);
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: -.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--brass);
  background: linear-gradient(135deg, var(--ivory), var(--brass));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tag {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 1.8rem 0 2.1rem;
}

.hero-tag span {
  font-size: .8rem;
  letter-spacing: .03em;
  color: var(--cream-dim);
  border: 1px solid var(--line-dark);
  background: rgba(234, 179, 8, 0.06);
  border-radius: 999px;
  padding: .42em 1em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.hero-art {
  position: relative;
}

.hero-art svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 55px rgba(11, 17, 32, 0.7));
}

.hero-note {
  margin-top: 1.6rem;
  font-size: .82rem;
  color: var(--sage);
  max-width: 44ch;
  line-height: 1.55;
  border-left: 2px solid var(--brass-lo);
  padding-left: 0.85rem;
}

@media (max-width: 840px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }
  .hero-art {
    order: -1;
    max-width: 340px;
  }
}

/* ---------- stat strip ---------- */
.strip {
  background: var(--ink);
  color: var(--cream);
  border-block: 1px solid var(--line-dark);
}

.strip .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-block: clamp(30px, 4.5vw, 48px);
}

.stat .n {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  color: var(--brass);
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(234, 179, 8, 0.25);
}

.stat .l {
  font-size: .82rem;
  letter-spacing: .05em;
  color: var(--cream-dim);
  margin-top: .5rem;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .strip .wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.2rem;
  }
}

/* ---------- section head ---------- */
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: clamp(32px, 4.5vw, 56px);
}

.sec-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
}

.sec-head .lede {
  margin-top: .9rem;
}

.sec-head a.more {
  font-weight: 600;
  font-size: .92rem;
  color: var(--brass-deep);
  white-space: nowrap;
  border-bottom: 2px solid var(--brass-lo);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}

.sec-head a.more:hover {
  color: var(--brass);
  border-color: var(--brass);
}

.on-dark .sec-head a.more {
  color: var(--brass);
  border-color: var(--brass-lo);
}

.on-dark .sec-head a.more:hover {
  color: var(--ivory);
  border-color: var(--ivory);
}

@media (max-width: 640px) {
  .sec-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- cards grid ---------- */
.grid {
  display: grid;
  gap: clamp(20px, 2.4vw, 28px);
}

.grid.c3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid.c2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid.c4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .grid.c3, .grid.c4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid.c2, .grid.c3, .grid.c4 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--ivory);
  border: 1px solid var(--paper-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.2, 0, 0, 1), box-shadow .3s ease, border-color .3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--brass-lo);
}

.card .thumb {
  aspect-ratio: 16/10;
  background: var(--pine);
  position: relative;
  overflow: hidden;
}

.card .thumb svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform .5s ease;
}

.card:hover .thumb svg {
  transform: scale(1.04);
}

.card .thumb .place {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 600;
  background: rgba(11, 17, 32, 0.82);
  backdrop-filter: blur(6px);
  padding: .3em .75em;
  border-radius: 6px;
  border: 1px solid rgba(234, 179, 8, 0.25);
}

.card .body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}

.card h3 {
  font-size: 1.3rem;
  color: var(--pine);
}

.card .meta {
  font-size: .82rem;
  color: var(--slate);
  letter-spacing: .02em;
  font-weight: 500;
}

.card p {
  font-size: .92rem;
  color: var(--slate);
  margin: .2rem 0 0;
}

.card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .7rem;
}

.card .tags span {
  font-size: .72rem;
  color: var(--brass-deep);
  border: 1px solid var(--paper-line);
  background: rgba(234, 179, 8, 0.08);
  border-radius: 999px;
  padding: .28em .75em;
  font-weight: 500;
}

.card .row {
  margin-top: auto;
  padding-top: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card .row .link {
  font-weight: 600;
  font-size: .9rem;
  color: var(--brass-deep);
  display: inline-flex;
  gap: .45em;
  align-items: center;
}

.card .row .link svg {
  width: 15px;
  height: 15px;
  transition: transform .25s ease;
}

.card:hover .row .link svg {
  transform: translateX(5px);
}

/* province tiles */
.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 860px) {
  .tiles {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.4rem;
  background: linear-gradient(145deg, var(--pine-2), var(--pine));
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  padding: 22px;
  min-height: 155px;
  color: var(--cream);
  transition: transform .3s, border-color .3s, box-shadow .3s;
}

.tile:hover {
  transform: translateY(-4px);
  border-color: var(--brass);
  box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.5);
}

.tile .idx {
  font-family: var(--f-display);
  font-size: .92rem;
  color: var(--brass);
  font-weight: 600;
}

.tile .nm {
  font-family: var(--f-display);
  font-size: 1.35rem;
  color: var(--ivory);
  line-height: 1.12;
}

.tile .ct {
  font-size: .8rem;
  color: var(--sage);
}

/* game chips row */
.games-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 820px) {
  .games-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .games-row {
    grid-template-columns: 1fr;
  }
}

.game-chip {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--ivory);
  border: 1px solid var(--paper-line);
  border-radius: var(--r);
  padding: 18px 20px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}

.game-chip:hover {
  transform: translateY(-3px);
  border-color: var(--brass-lo);
  box-shadow: var(--shadow-sm);
}

.game-chip .ic {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  color: var(--brass-deep);
  background: rgba(234, 179, 8, 0.12);
  border-radius: 12px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.game-chip h3 {
  font-size: 1.12rem;
  color: var(--pine);
  margin-bottom: .1rem;
}

.game-chip span {
  font-size: .82rem;
  color: var(--slate);
}

/* ---------- article / prose ---------- */
.prose {
  max-width: 72ch;
}

.prose h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  margin: 2.2rem 0 .8rem;
  color: var(--pine);
}

.prose h3 {
  font-size: 1.25rem;
  margin: 1.6rem 0 .5rem;
  color: var(--pine);
}

.prose p {
  color: var(--slate-2);
  margin-bottom: 1.1em;
}

.prose ul, .prose ol {
  color: var(--slate-2);
  padding-left: 1.2em;
  margin: 0 0 1.2em;
}

.prose li {
  margin-bottom: .5em;
}

.prose a {
  color: var(--brass-deep);
  border-bottom: 1.5px solid var(--brass-lo);
  transition: color .2s, border-color .2s;
}

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

.prose strong {
  color: var(--slate-2);
}

/* page hero (interior) */
.phead {
  background: var(--pine);
  color: var(--cream);
  padding-block: clamp(48px, 6vw, 84px);
  border-bottom: 1px solid var(--line-dark);
  position: relative;
  overflow: hidden;
}

.phead::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 120% at 100% -20%, rgba(234, 179, 8, 0.20), transparent 60%);
  pointer-events: none;
}

.phead .wrap {
  position: relative;
  z-index: 2;
}

.phead h1 {
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  color: var(--ivory);
  max-width: 20ch;
}

.phead .lede {
  margin-top: 1rem;
  color: var(--cream-dim);
}

/* breadcrumbs */
.crumbs {
  font-size: .8rem;
  color: var(--sage);
  margin-bottom: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4em;
  align-items: center;
}

.crumbs a {
  color: var(--cream-dim);
  transition: color .2s;
}

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

.crumbs .sep {
  color: var(--brass-lo);
}

.on-light .crumbs {
  color: var(--slate);
}

.on-light .crumbs a {
  color: var(--slate-2);
}

/* two-col interior */
.layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }
}

.aside {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 900px) {
  .aside {
    position: static;
  }
}

.panel {
  background: var(--ivory);
  border: 1px solid var(--paper-line);
  border-radius: var(--r);
  padding: 22px 24px;
  box-shadow: var(--shadow-sm);
}

.panel h4 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass-deep);
  margin-bottom: .9rem;
}

.panel.dark {
  background: var(--pine);
  border-color: var(--line-dark);
  color: var(--cream);
}

.panel.dark h4 {
  color: var(--brass);
}

.dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .45rem 1rem;
  font-size: .9rem;
}

.dl dt {
  color: var(--slate);
  font-weight: 500;
}

.dl dd {
  margin: 0;
  color: var(--slate-2);
  text-align: right;
  font-weight: 600;
}

.panel.dark .dl dt {
  color: var(--sage);
}

.panel.dark .dl dd {
  color: var(--ivory);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.chips span {
  font-size: .78rem;
  color: var(--brass-deep);
  border: 1px solid var(--paper-line);
  background: rgba(234, 179, 8, 0.08);
  border-radius: 999px;
  padding: .3em .8em;
}

.map-embed {
  border: 1px solid var(--paper-line);
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--pine-2);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-embed .ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: .85rem;
  text-align: center;
  padding: 1rem;
}

/* callout / responsible */
.callout {
  border: 1px solid var(--line-dark);
  background: linear-gradient(135deg, var(--pine-2), var(--pine));
  color: var(--cream);
  border-radius: var(--r);
  padding: 24px 26px;
  border-left: 4px solid var(--brass);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.callout.light {
  background: #FAF6EE;
  border-color: var(--paper-line);
  color: var(--slate-2);
  border-left-color: var(--brass-lo);
  box-shadow: var(--shadow-sm);
}

.callout h4 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  color: var(--ivory);
  margin-bottom: .4rem;
}

.callout.light h4 {
  color: var(--pine);
}

.callout p {
  margin: 0;
  font-size: .92rem;
}

.callout.light p {
  color: var(--slate);
}

/* FAQ */
.faq {
  border-top: 1px solid var(--line-light);
}

.faq details {
  border-bottom: 1px solid var(--line-light);
  padding: 4px 0;
  transition: background .2s;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 2.4rem 1.1rem 0;
  position: relative;
  font-family: var(--f-display);
  font-size: 1.15rem;
  color: var(--pine);
  transition: color .2s;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-body);
  font-size: 1.5rem;
  color: var(--brass-deep);
  transition: transform .25s ease, color .2s;
}

.faq details[open] summary::after {
  content: "–";
  color: var(--brass);
}

.faq details p {
  padding: 0 0 1.25rem;
  color: var(--slate);
  max-width: 70ch;
  line-height: 1.65;
}

/* legality table */
.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: .92rem;
  border: 1px solid var(--paper-line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.tbl th, .tbl td {
  text-align: left;
  padding: .9rem 1.1rem;
  border-bottom: 1px solid var(--paper-line);
}

.tbl thead th {
  background: #ECE5D3;
  color: var(--pine);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.tbl tbody tr:last-child td {
  border-bottom: 0;
}

.tbl td {
  color: var(--slate-2);
}

/* form */
.form {
  display: grid;
  gap: 16px;
  max-width: 560px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.field label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--slate-2);
}

.field input, .field textarea {
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--slate-2);
  background: #FAF6EE;
  border: 1px solid var(--paper-line);
  border-radius: 12px;
  padding: .8rem 1rem;
  transition: border-color .2s, box-shadow .2s;
}

.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brass-lo);
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.22);
}

.check {
  display: flex;
  gap: .65rem;
  align-items: flex-start;
  font-size: .85rem;
  color: var(--slate);
}

.check input {
  margin-top: .25rem;
  accent-color: var(--brass-lo);
}

/* footer */
.site-footer {
  background: var(--ink);
  color: var(--cream-dim);
  border-top: 1px solid var(--line-dark);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(24px, 3vw, 44px);
  padding-block: clamp(52px, 6.5vw, 78px);
}

@media (max-width: 840px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: .88rem;
  color: var(--sage);
  max-width: 36ch;
  line-height: 1.6;
}

.fcol h5 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 1.1rem;
}

.fcol a {
  display: block;
  font-size: .9rem;
  color: var(--cream-dim);
  padding: .3rem 0;
  transition: color .2s, transform .2s;
}

.fcol a:hover {
  color: var(--brass);
  transform: translateX(2px);
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-block: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--sage);
}

.footer-bottom .rg {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
}

.footer-bottom .pill18 {
  background: transparent;
  color: var(--brass);
  border: 1px solid var(--brass);
  font-weight: 700;
  box-shadow: none;
}

.disclaimer {
  font-size: .78rem;
  color: var(--slate);
  line-height: 1.55;
  max-width: none;
  padding-bottom: 28px;
}

.on-ink-disc {
  color: var(--sage);
}

/* age gate */
.agegate {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11, 17, 32, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(10px);
}

.agegate[hidden] {
  display: none;
}

.agegate .box {
  background: linear-gradient(145deg, var(--pine-2), var(--pine));
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  max-width: 440px;
  width: 100%;
  padding: 40px 36px;
  text-align: center;
  color: var(--cream);
  box-shadow: var(--shadow);
}

.agegate .mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  color: var(--brass);
  filter: drop-shadow(0 4px 10px rgba(234, 179, 8, 0.35));
}

.agegate h2 {
  font-size: 1.75rem;
  color: var(--ivory);
  margin-bottom: .5rem;
}

.agegate p {
  font-size: .92rem;
  color: var(--cream-dim);
  margin-bottom: 1.8rem;
}

.agegate .acts {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}

.agegate .fine {
  margin-top: 1.5rem;
  font-size: .76rem;
  color: var(--sage);
}

.agegate .fine a {
  color: var(--brass);
  border-bottom: 1px solid var(--brass-lo);
}

/* cookie consent */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  max-width: 580px;
  margin-inline: auto;
  background: linear-gradient(135deg, var(--pine-2), var(--pine));
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  padding: 20px 22px;
  color: var(--cream);
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.cookie[hidden] {
  display: none;
}

.cookie p {
  margin: 0;
  font-size: .84rem;
  color: var(--cream-dim);
  flex: 1 1 260px;
  line-height: 1.5;
}

.cookie p a {
  color: var(--brass);
  border-bottom: 1px solid var(--brass-lo);
}

.cookie .acts {
  display: flex;
  gap: .6rem;
}

.cookie .btn {
  padding: .65em 1.2em;
  font-size: .85rem;
}

/* utils */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2, 0, 0, 1), transform .7s cubic-bezier(.2, 0, 0, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.center {
  text-align: center;
}

.mt {
  margin-top: clamp(28px, 4vw, 48px);
}

.divider {
  height: 1px;
  background: var(--line-light);
  border: 0;
  margin: 0;
}

:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brass);
  color: var(--ink);
  padding: .6em 1em;
  z-index: 300;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}

.skip:focus {
  left: 0;
}