/* topguiasar.site — Directorio de casinos terrestres de Argentina
   Design system: Navy Blue (Azul Meia-Noite) + Ouro + Gelo.
   Tipografía: Fraunces (display) + Instrument Sans (texto). */
:root {
  --ink: #030712;
  --pine: #0A1128;
  --pine-2: #141E3A;
  --pine-3: #1E2B4D;
  --baize: #0B1638;
  --ivory: #F8FAFC;
  --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: #0F172A;
  --line-dark: rgba(234, 179, 8, 0.25);
  --line-light: rgba(15, 23, 42, 0.1);
  --shadow: 0 24px 50px -12px rgba(3, 7, 18, 0.55);
  --shadow-sm: 0 10px 25px -5px rgba(3, 7, 18, 0.25);
  --r: 12px;
  --r-lg: 16px;
  --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: 600; line-height: 1.1; letter-spacing: -0.02em; margin: 0; }
p { margin: 0 0 1em; }
strong { font-weight: 700; color: var(--slate-2); }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(64px, 8vw, 120px); }

.eyebrow {
  font-family: var(--f-body); font-weight: 700; font-size: .75rem;
  letter-spacing: .25em; text-transform: uppercase; color: var(--brass-deep);
  display: inline-flex; align-items: center; gap: 1rem; margin: 0 0 1.2rem;
}
.eyebrow::before { content: ""; width: 40px; height: 2px; background: var(--brass-lo); display: inline-block; }
.on-dark .eyebrow { color: var(--brass); }
.on-dark .eyebrow::before { background: var(--brass); }

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

.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: .7em;
  font-family: var(--f-body); font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  padding: .85em 1.7em; border-radius: 8px; border: 1px solid transparent;
  cursor: pointer; transition: all .3s cubic-bezier(.2,0,0,1);
}
.btn svg { width: 18px; height: 18px; }

.btn-primary { 
  background: var(--brass); color: var(--ink); border-color: var(--brass); 
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3); 
}
.btn-primary:hover { 
  background: var(--ivory); color: var(--pine); border-color: var(--ivory); 
  transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.15); 
}

.btn-ghost { background: transparent; color: var(--pine); 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(-3px); background: rgba(234, 179, 8, 0.08); }
.on-dark .btn-ghost:hover { color: var(--brass); background: rgba(234, 179, 8, 0.12); }

/* ---------- header (Floating modern style) ---------- */
.site-header {
  position: sticky; top: 16px; z-index: 60;
  max-width: calc(var(--maxw) - 32px); margin: 0 auto;
  background: rgba(10, 17, 40, 0.85); backdrop-filter: saturate(180%) blur(24px);
  border: 1px solid var(--line-dark); color: var(--cream);
  border-radius: 16px; box-shadow: 0 8px 32px rgba(3, 7, 18, 0.4);
}
.header-inner { display: flex; align-items: center; gap: 1.5rem; min-height: 70px; padding: 0 24px; }

.brand { display: flex; align-items: center; gap: .8rem; font-family: var(--f-display); font-weight: 700;
  font-size: 1.4rem; color: var(--ivory); letter-spacing: -0.02em; white-space: nowrap; }
.brand .mark { width: 34px; height: 34px; flex: 0 0 auto; filter: drop-shadow(0 2px 8px rgba(234, 179, 8, 0.4)); }
.brand em { font-style: normal; color: var(--brass); }

.nav { display: flex; align-items: center; gap: 1.8rem; margin-left: auto; }
.nav a { font-size: .95rem; font-weight: 500; color: var(--cream-dim); transition: all .25s ease; position: relative; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--brass); }
.nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0%; height: 2px; background: var(--brass); transition: width .3s ease; }
.nav a:hover::after { width: 100%; }

.pill18 {
  font-family: var(--f-body); font-weight: 800; font-size: .75rem; letter-spacing: .1em;
  color: var(--ink); background: var(--brass); border-radius: 6px; padding: .4em .8em;
}

.nav-toggle { display: none; margin-left: auto; background: none; border: 1px solid var(--line-dark);
  color: var(--cream); border-radius: 8px; width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; transition: background .2s; }
.nav-toggle:hover { background: rgba(234, 179, 8, 0.15); }
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .site-header { top: 0; max-width: 100%; border-radius: 0; border-top: none; border-left: none; border-right: none; margin: 0; }
  .header-inner { padding: 0 var(--pad); }
  .nav { position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--ink); border-bottom: 1px solid var(--line-dark); padding: 1rem var(--pad) 2rem;
    transform: translateY(-120%); transition: transform .4s cubic-bezier(.2,0,0,1); margin-left: 0; box-shadow: var(--shadow); }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 1rem 0; width: 100%; border-bottom: 1px solid var(--pine-2); font-size: 1.05rem; }
  .nav a::after { display: none; }
  .nav .pill18 { align-self: flex-start; margin-top: 1.2rem; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- hero ---------- */
.hero { position: relative; background: linear-gradient(145deg, var(--ink) 0%, var(--pine) 100%); color: var(--cream); overflow: hidden;
  padding-block: clamp(80px, 12vw, 150px); }
.hero::after { content: ""; position: absolute; inset: 0; background:
  radial-gradient(100% 80% at 90% -10%, rgba(234, 179, 8, 0.15), transparent 60%),
  radial-gradient(80% 80% at 10% 110%, rgba(20, 30, 58, 0.8), transparent 70%); pointer-events: none; }
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.hero h1 { font-size: clamp(2.8rem, 6.5vw, 4.8rem); font-weight: 600; color: var(--ivory); letter-spacing: -0.03em; }
.hero h1 em { font-style: normal; color: var(--brass); border-bottom: 4px solid var(--brass-deep); }

.hero-tag { display: flex; flex-wrap: wrap; gap: .7rem; margin: 2rem 0 2.5rem; }
.hero-tag span { font-size: .85rem; letter-spacing: .05em; color: var(--cream-dim); font-weight: 500;
  border: 1px solid var(--line-dark); background: rgba(20, 30, 58, 0.5); border-radius: 6px; padding: .5em 1.2em; backdrop-filter: blur(4px); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-art { position: relative; }
.hero-art svg { width: 100%; height: auto; filter: drop-shadow(0 40px 60px rgba(3, 7, 18, 0.8)); }
.hero-note { margin-top: 2rem; font-size: .85rem; color: var(--sage); max-width: 50ch; line-height: 1.6; border-left: 2px solid var(--pine-3); padding-left: 1rem; }

@media (max-width: 840px) { .hero .wrap { grid-template-columns: 1fr; } .hero-art { order: -1; max-width: 320px; margin: 0 auto 2rem; } }

/* ---------- stat strip ---------- */
.strip { background: var(--baize); color: var(--cream); border-block: 1px solid var(--line-dark); }
.strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; padding-block: clamp(36px, 5vw, 56px); }
.stat .n { font-family: var(--f-display); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--brass); font-weight: 600; line-height: 1; }
.stat .l { font-size: .85rem; letter-spacing: .08em; color: var(--cream-dim); margin-top: .8rem; text-transform: uppercase; font-weight: 600;}

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

/* ---------- section head ---------- */
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; margin-bottom: clamp(36px, 5vw, 64px); }
.sec-head h2 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
.sec-head .lede { margin-top: 1.2rem; }
.sec-head a.more { font-weight: 700; font-size: .95rem; color: var(--brass-deep); white-space: nowrap; border-bottom: 2px solid var(--brass-lo); padding-bottom: 4px; transition: all .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(24px, 3vw, 32px); }
.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-2); border: 1px solid var(--paper-line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column; transition: all .35s cubic-bezier(.2,0,0,1); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--brass-lo); background: #FFF; }

.card .thumb { aspect-ratio: 16/10; background: var(--pine-2); position: relative; overflow: hidden; border-bottom: 1px solid var(--paper-line); }
.card .thumb svg { position: absolute; inset: 0; width: 100%; height: 100%; transition: transform .6s ease; }
.card:hover .thumb svg { transform: scale(1.06); }

.card .thumb .place { position: absolute; left: 16px; bottom: 16px; z-index: 2; font-size: .75rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--ink); font-weight: 700; background: var(--brass); padding: .4em .8em; border-radius: 4px; box-shadow: 0 4px 12px rgba(0,0,0,.3); }

.card .body { padding: 26px 24px; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.card h3 { font-size: 1.35rem; color: var(--pine); }
.card .meta { font-size: .85rem; color: var(--slate); letter-spacing: .02em; font-weight: 600; text-transform: uppercase;}
.card p { font-size: .95rem; color: var(--slate); margin: .4rem 0 0; }

.card .tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.card .tags span { font-size: .75rem; color: var(--brass-deep); border: 1px solid var(--paper-line);
  background: var(--ivory); border-radius: 4px; padding: .35em .8em; font-weight: 600; }

.card .row { margin-top: auto; padding-top: 1.4rem; display: flex; align-items: center; justify-content: space-between; }
.card .row .link { font-weight: 700; font-size: .95rem; color: var(--pine); display: inline-flex; gap: .5em; align-items: center; }
.card .row .link svg { width: 16px; height: 16px; transition: transform .25s ease; color: var(--brass-deep); }
.card:hover .row .link svg { transform: translateX(6px); color: var(--brass); }

/* province tiles */
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 860px) { .tiles { grid-template-columns: repeat(2, 1fr); } }

.tile { display: flex; flex-direction: column; justify-content: space-between; gap: 1.5rem;
  background: var(--pine-2); border: 1px solid var(--pine-3); border-radius: var(--r);
  padding: 26px; min-height: 165px; color: var(--cream); transition: all .35s; position: relative; overflow: hidden; }
.tile::before { content:''; position: absolute; top:0; right:0; width: 60px; height: 60px; background: radial-gradient(circle, rgba(234, 179, 8, 0.1) 0%, transparent 70%); }
.tile:hover { transform: translateY(-5px); border-color: var(--brass-lo); box-shadow: 0 15px 35px -10px rgba(3, 7, 18, 0.6); background: var(--pine); }

.tile .idx { font-family: var(--f-display); font-size: 1rem; color: var(--brass); font-weight: 700; }
.tile .nm { font-family: var(--f-display); font-size: 1.4rem; color: var(--ivory); line-height: 1.15; }
.tile .ct { font-size: .85rem; color: var(--sage); font-weight: 500; }

/* game chips row */
.games-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@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.2rem; background: var(--ivory-2); border: 1px solid var(--paper-line);
  border-radius: var(--r); padding: 20px 24px; transition: all .3s; }
.game-chip:hover { transform: translateY(-4px); border-color: var(--brass-lo); box-shadow: var(--shadow-sm); background: #FFF; }

.game-chip .ic { width: 50px; height: 50px; flex: 0 0 auto; color: var(--ivory); background: var(--pine-2); border-radius: 10px; padding: 10px; display: flex; align-items: center; justify-content: center; box-shadow: inset 0 2px 4px rgba(0,0,0,.2); }
.game-chip h3 { font-size: 1.2rem; color: var(--pine); margin-bottom: .2rem; }
.game-chip span { font-size: .88rem; color: var(--slate); line-height: 1.4; display: block;}

/* ---------- article / prose ---------- */
.prose { max-width: 72ch; }
.prose h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin: 2.5rem 0 1rem; color: var(--pine); }
.prose h3 { font-size: 1.35rem; margin: 1.8rem 0 .6rem; color: var(--pine); }
.prose p { color: var(--slate-2); margin-bottom: 1.2em; font-size: 1.05rem; }
.prose ul, .prose ol { color: var(--slate-2); padding-left: 1.4em; margin: 0 0 1.4em; font-size: 1.05rem; }
.prose li { margin-bottom: .6em; }
.prose a { color: var(--brass-deep); border-bottom: 2px solid var(--brass-lo); font-weight: 600; transition: all .2s; }
.prose a:hover { color: var(--brass); border-color: var(--brass); background: rgba(234, 179, 8, 0.1); }

/* page hero (interior) */
.phead { background: var(--pine); color: var(--cream); padding-block: clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--line-dark); position: relative; overflow: hidden; }
.phead::after { content: ""; position: absolute; inset: 0; background: radial-gradient(80% 120% at 100% -10%, rgba(234, 179, 8, 0.12), transparent 50%); pointer-events: none; }
.phead .wrap { position: relative; z-index: 2; }
.phead h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--ivory); max-width: 22ch; line-height: 1.05; }
.phead .lede { margin-top: 1.2rem; color: var(--cream-dim); font-size: 1.15rem; }

/* breadcrumbs */
.crumbs { font-size: .85rem; color: var(--sage); margin-bottom: 1.5rem; display: flex; flex-wrap: wrap; gap: .5em; align-items: center; font-weight: 500; }
.crumbs a { color: var(--cream-dim); transition: color .2s; }
.crumbs a:hover { color: var(--brass); }
.crumbs .sep { color: var(--brass-lo); opacity: 0.6; }
.on-light .crumbs { color: var(--slate); }
.on-light .crumbs a { color: var(--pine); }

/* two-col interior */
.layout { display: grid; grid-template-columns: 1fr 340px; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (max-width: 900px) { .layout { grid-template-columns: 1fr; } }

.aside { position: sticky; top: 110px; display: flex; flex-direction: column; gap: 24px; }
@media (max-width: 900px) { .aside { position: static; } }

.panel { background: #FFF; border: 1px solid var(--paper-line); border-radius: var(--r); padding: 26px; box-shadow: var(--shadow-sm); }
.panel h4 { font-family: var(--f-body); font-weight: 800; font-size: .85rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--pine); margin-bottom: 1.2rem; border-bottom: 2px solid var(--paper-line); padding-bottom: .8rem; }
.panel.dark { background: var(--pine-2); border-color: var(--pine-3); color: var(--cream); }
.panel.dark h4 { color: var(--brass); border-color: var(--line-light); }

.dl { display: grid; grid-template-columns: auto 1fr; gap: .6rem 1rem; font-size: .95rem; }
.dl dt { color: var(--slate); font-weight: 500; }
.dl dd { margin: 0; color: var(--pine); text-align: right; font-weight: 700; }
.panel.dark .dl dt { color: var(--sage); }
.panel.dark .dl dd { color: var(--ivory); }

.chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chips span { font-size: .8rem; color: var(--pine); border: 1px solid var(--paper-line); background: var(--ivory-2); border-radius: 6px; padding: .4em .8em; font-weight: 600; }

.map-embed { border: 1px solid var(--paper-line); border-radius: var(--r); overflow: hidden; aspect-ratio: 16/9; background: var(--ivory-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: .9rem; text-align: center; padding: 1rem; font-weight: 500; }

/* callout / responsible */
.callout { border: 1px solid var(--pine-3); background: var(--pine-2); color: var(--cream);
  border-radius: var(--r); padding: 32px; border-left: 6px solid var(--brass); box-shadow: 0 12px 30px rgba(3, 7, 18, 0.3); }
.callout.light { background: #FFF; 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.4rem; color: var(--ivory); margin-bottom: .6rem; }
.callout.light h4 { color: var(--pine); }
.callout p { margin: 0; font-size: 1rem; line-height: 1.6; }
.callout.light p { color: var(--slate); }

/* FAQ */
.faq { border-top: 1px solid var(--line-light); margin-top: 2rem; }
.faq details { border-bottom: 1px solid var(--line-light); padding: 8px 0; transition: background .3s; }
.faq summary { cursor: pointer; list-style: none; padding: 1.2rem 2.5rem 1.2rem 0; position: relative;
  font-family: var(--f-display); font-size: 1.25rem; color: var(--ivory); 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.8rem; color: var(--brass-deep); transition: transform .3s ease, color .2s; }
.faq details[open] summary::after { content: "–"; color: var(--brass); }
.faq details p { padding: 0 0 1.5rem; color: var(--cream-dim); max-width: 75ch; line-height: 1.7; font-size: 1.05rem; }

/* legality table */
.tbl { width: 100%; border-collapse: collapse; font-size: .95rem; border: 1px solid var(--paper-line); border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); background: #FFF; }
.tbl th, .tbl td { text-align: left; padding: 1.1rem 1.2rem; border-bottom: 1px solid var(--paper-line); }
.tbl thead th { background: var(--ivory-2); color: var(--pine); font-family: var(--f-body); font-weight: 800; font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; }
.tbl tbody tr:last-child td { border-bottom: 0; }
.tbl td { color: var(--slate-2); font-weight: 500; }

/* form */
.form { display: grid; gap: 20px; max-width: 600px; }
.field { display: flex; flex-direction: column; gap: .5rem; }
.field label { font-size: .9rem; font-weight: 700; letter-spacing: .02em; color: var(--pine); }
.field input, .field textarea { font-family: var(--f-body); font-size: 1.05rem; color: var(--pine);
  background: var(--ivory-2); border: 2px solid var(--paper-line); border-radius: 8px; padding: 1rem 1.2rem; transition: all .25s; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brass-lo); background: #FFF; box-shadow: 0 4px 12px rgba(234, 179, 8, 0.1); }
.check { display: flex; gap: .75rem; align-items: flex-start; font-size: .9rem; color: var(--slate); font-weight: 500; }
.check input { margin-top: .3rem; accent-color: var(--brass-lo); transform: scale(1.1); }

/* footer */
.site-footer { background: var(--ink); color: var(--cream-dim); border-top: 1px solid var(--pine-3); margin-top: 4rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(32px, 4vw, 56px);
  padding-block: clamp(60px, 8vw, 90px); }
@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: 1.2rem; }
.footer-brand p { font-size: .95rem; color: var(--sage); max-width: 40ch; line-height: 1.7; }

.fcol h5 { font-family: var(--f-body); font-weight: 800; font-size: .8rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--brass); margin: 0 0 1.4rem; }
.fcol a { display: block; font-size: .95rem; color: var(--cream-dim); padding: .4rem 0; font-weight: 500; transition: all .25s; }
.fcol a:hover { color: var(--ivory); transform: translateX(4px); text-shadow: 0 0 8px rgba(255,255,255,.2); }

.footer-bottom { border-top: 1px solid var(--pine-3); padding-block: 32px; display: flex;
  flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; font-size: .85rem; color: var(--sage); }
.footer-bottom .rg { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; font-weight: 500; }
.footer-bottom .pill18 { background: transparent; color: var(--brass); border: 2px solid var(--brass); font-weight: 800; box-shadow: none; padding: .3em .6em; }

.disclaimer { font-size: .85rem; color: var(--slate); line-height: 1.6; max-width: none; padding-bottom: 40px; border-top: 1px solid var(--pine-3); padding-top: 32px; }
.on-ink-disc { color: var(--sage); }

/* age gate */
.agegate { position: fixed; inset: 0; z-index: 200; background: rgba(3, 7, 18, 0.95);
  display: flex; align-items: center; justify-content: center; padding: 24px; backdrop-filter: blur(12px); }
.agegate[hidden] { display: none; }
.agegate .box { background: var(--pine-2); border: 1px solid var(--pine-3); border-radius: var(--r-lg);
  max-width: 480px; width: 100%; padding: 48px 40px; text-align: center; color: var(--cream); box-shadow: var(--shadow); position: relative; overflow: hidden; }
.agegate .box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 6px; background: var(--brass); }
.agegate .mark { width: 64px; height: 64px; margin: 0 auto 24px; color: var(--brass); filter: drop-shadow(0 4px 16px rgba(234, 179, 8, 0.4)); }
.agegate h2 { font-size: 1.9rem; color: var(--ivory); margin-bottom: .8rem; }
.agegate p { font-size: 1rem; color: var(--cream-dim); margin-bottom: 2rem; line-height: 1.6; }
.agegate .acts { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.agegate .btn { padding: 1em 1.5em; font-size: 1rem; }
.agegate .fine { margin-top: 2rem; font-size: .8rem; color: var(--sage); }
.agegate .fine a { color: var(--brass); border-bottom: 1px solid var(--brass-lo); font-weight: 600; }

/* cookie consent */
.cookie { position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 120; max-width: 640px; margin-inline: auto;
  background: var(--pine-2); border: 1px solid var(--pine-3); border-radius: var(--r);
  padding: 24px 28px; color: var(--cream); box-shadow: 0 20px 40px rgba(3, 7, 18, 0.8); display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; }
.cookie[hidden] { display: none; }
.cookie p { margin: 0; font-size: .9rem; color: var(--cream-dim); flex: 1 1 280px; line-height: 1.6; font-weight: 500; }
.cookie p a { color: var(--brass); border-bottom: 1px solid var(--brass-lo); font-weight: 700; }
.cookie .acts { display: flex; gap: .8rem; }
.cookie .btn { padding: .75em 1.4em; font-size: .9rem; }

/* utils */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.2,0,0,1), transform .8s 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(36px, 5vw, 64px); }
.divider { height: 1px; background: var(--paper-line); border: 0; margin: 0; }

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

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