/* =========================================================
   Berlin Doner Kebab — Blackpool
   Theme: black / yellow / white
   ========================================================= */

:root {
  --ink:        #0b0b0b;
  --ink-2:      #131313;
  --ink-3:      #1c1c1c;
  --line:       #2a2a2a;
  --yellow:     #ffd100;
  --yellow-dim: #e0b800;
  --white:      #ffffff;
  --muted:      #b0b0b0;
  --muted-2:    #8a8a8a;

  --font-display: "Anton", "Arial Narrow", "Haettenschweiler", Impact, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
               "Helvetica Neue", Arial, sans-serif;

  --wrap: 1180px;
  --gut: clamp(1rem, 4vw, 2rem);
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, .45);
  --header-h: 68px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- base ---------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, picture, svg, video { max-width: 100%; display: block; }
a { color: var(--yellow); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--white); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.5rem, 7.2vw, 4.75rem); }
h2 { font-size: clamp(1.9rem, 4.6vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.45rem); }
p  { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--yellow); color: var(--ink); }

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

.wrap { width: min(100% - (var(--gut) * 2), var(--wrap)); margin-inline: auto; }
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  z-index: 999; background: var(--yellow); color: var(--ink);
  padding: .75rem 1.25rem; border-radius: 0 0 10px 10px; font-weight: 700;
  text-decoration: none; transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: var(--ink); }

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

.btn {
  --btn-bg: var(--yellow);
  --btn-fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  background: var(--btn-bg); color: var(--btn-fg);
  font-weight: 800; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase;
  padding: .95rem 1.6rem; border: 2px solid var(--btn-bg); border-radius: 999px;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform .18s var(--ease), background .18s var(--ease),
              color .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:hover, .btn:focus-visible {
  color: var(--btn-fg);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(255, 209, 0, .28);
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--white);
  border-color: rgba(255, 255, 255, .38);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  --btn-fg: var(--ink);
  background: var(--white); border-color: var(--white);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .4);
}
.btn--sm { padding: .65rem 1.15rem; font-size: .82rem; }
.btn--block { width: 100%; }

/* ---------- header ---------- */

.topbar {
  background: var(--yellow); color: var(--ink);
  font-size: .82rem; font-weight: 700; letter-spacing: .02em;
}
.topbar__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .4rem 1.5rem; padding: .5rem 0; text-align: center;
}
.topbar span { display: inline-flex; align-items: center; gap: .4rem; }
.topbar a { color: var(--ink); text-decoration: none; }
.topbar a:hover { color: var(--ink); text-decoration: underline; }
.topbar svg { width: 15px; height: 15px; }
/* Keep the bar to a single line on phones so it does not push the hero down */
@media (max-width: 620px) {
  .topbar__inner { gap: .3rem 1rem; font-size: .76rem; }
  .topbar span:last-child { display: none; }
}
@media (max-width: 400px) {
  /* Keep the address — ordering is the call to action, not calling. */
  .topbar span:nth-child(2) { display: none; }
}

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 11, 11, .82);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.site-header.is-stuck { background: rgba(11, 11, 11, .97); border-bottom-color: #333; }

.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; color: var(--white); }
.brand img { width: 42px; height: 42px; border-radius: 10px; flex: none; }
.brand__name {
  font-family: var(--font-display); font-size: 1.32rem; line-height: 1;
  letter-spacing: .02em; text-transform: uppercase; color: var(--white);
}
.brand__name b { color: var(--yellow); font-weight: 400; }
.brand__tag {
  display: block; font-family: var(--font-body); font-size: .58rem; font-weight: 700;
  letter-spacing: .22em; color: var(--muted-2); text-transform: uppercase; margin-top: .22rem;
}

.nav { display: flex; align-items: center; gap: .35rem; }
.nav a {
  color: var(--white); text-decoration: none; font-weight: 600; font-size: .93rem;
  padding: .55rem .85rem; border-radius: 999px; transition: color .18s, background .18s;
}
.nav a:hover { background: var(--ink-3); color: var(--yellow); }
.nav a[aria-current="page"] { color: var(--yellow); }
.nav .btn { margin-left: .5rem; }
.nav .btn:hover { background: var(--white); border-color: var(--white); }

.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--line);
  border-radius: 10px; padding: .5rem .6rem; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--white);
  border-radius: 2px; transition: transform .25s var(--ease), opacity .2s;
}
.nav-toggle span + span { margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: fixed; inset: 0 0 auto; top: calc(var(--header-h) + var(--topbar-h, 0px));
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: var(--ink-2); border-bottom: 1px solid var(--line);
    padding: 1rem var(--gut) 1.5rem;
    box-shadow: var(--shadow);
    /* Hidden panel must not sit over the toggle and eat the tap that opens it. */
    transform: translateY(-100%);
    margin-top: calc(var(--header-h) * -1);
    visibility: hidden; pointer-events: none;
    transition: transform .3s var(--ease), visibility 0s linear .3s;
  }
  .nav.is-open {
    transform: translateY(0); margin-top: 0;
    visibility: visible; pointer-events: auto;
    transition: transform .3s var(--ease), visibility 0s;
  }
  .nav a { padding: .85rem 1rem; font-size: 1.05rem; border-radius: 12px; }
  .nav .btn { margin: .5rem 0 0; justify-content: center; }
}

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

.hero { position: relative; isolation: isolate; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,11,11,.92) 0%, rgba(11,11,11,.68) 45%, rgba(11,11,11,.97) 100%),
    radial-gradient(90% 60% at 15% 40%, rgba(255,209,0,.12), transparent 65%);
}
.hero__inner { padding: clamp(3.5rem, 9vw, 6.5rem) 0 clamp(3rem, 7vw, 5rem); max-width: 780px; margin-inline: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .74rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase;
  color: var(--yellow); background: rgba(255,209,0,.1);
  border: 1px solid rgba(255,209,0,.32); border-radius: 999px;
  padding: .45rem 1rem; margin-bottom: 1.25rem;
}
.hero h1 { margin-bottom: .45rem; text-shadow: 0 4px 30px rgba(0,0,0,.6); }
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero__lede { font-size: clamp(1.02rem, 1.9vw, 1.2rem); color: #e6e6e6; max-width: 56ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.9rem; }

.hero__apps {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .9rem;
  margin-top: 1.35rem;
}
.hero__apps-label {
  font-size: .72rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
}
.store-buttons--hero { margin-top: 0; gap: .6rem; }
.store-buttons--hero .store-btn { padding: .5rem .9rem; }
.store-buttons--hero .store-btn svg { width: 22px; height: 22px; }
.store-buttons--hero .store-btn strong { font-size: .92rem; }
@media (max-width: 420px) {
  .hero__apps { gap: .45rem .7rem; }
  .store-buttons--hero .store-btn { flex: 1 1 auto; }
}

.hero__points {
  list-style: none; display: flex; flex-wrap: wrap; gap: .5rem .75rem;
  margin: 2.1rem 0 0; padding: 0;
}
.hero__points li {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .84rem; font-weight: 600; color: #e2e2e2;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px; padding: .45rem .95rem;
  backdrop-filter: blur(4px);
}
.hero__points svg { width: 15px; height: 15px; color: var(--yellow); flex: none; }

/* ---------- marquee ---------- */

.marquee {
  background: var(--yellow); color: var(--ink); overflow: hidden;
  border-block: 3px solid var(--ink);
  --marquee-duration: 32s;
}
.marquee__track { display: flex; width: max-content; animation: marquee var(--marquee-duration) linear infinite; }
.marquee ul {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none; margin: 0; padding: .7rem 1.25rem .7rem 0;
}
.marquee li {
  font-family: var(--font-display); font-size: 1.05rem; letter-spacing: .06em;
  text-transform: uppercase; white-space: nowrap; display: flex; align-items: center; gap: 2.5rem;
}
.marquee li::after { content: "★"; font-family: var(--font-body); font-size: .8rem; opacity: .55; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

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

.section { padding: clamp(3.25rem, 8vw, 6rem) 0; }
.section--alt { background: var(--ink-2); }
.section--tight { padding-block: clamp(2.5rem, 6vw, 4rem); }

.section__head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head p { color: var(--muted); font-size: 1.03rem; }

.kicker {
  display: block; font-family: var(--font-body); font-size: .74rem; font-weight: 800;
  letter-spacing: .24em; text-transform: uppercase; color: var(--yellow); margin-bottom: .85rem;
}
.rule { width: 62px; height: 4px; background: var(--yellow); border: 0; margin: 0 0 1.4rem; }
.section__head--center .rule { margin-inline: auto; }

/* ---------- feature cards ---------- */

.grid { display: grid; gap: 1.15rem; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(215px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

.card {
  background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.75rem 1.5rem; transition: transform .22s var(--ease), border-color .22s, background .22s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255,209,0,.45); }
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .95rem; }
.card__icon {
  width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 1.15rem;
  background: var(--yellow); color: var(--ink); border-radius: 14px;
}
.card__icon svg { width: 25px; height: 25px; }

/* ---------- menu ---------- */

.menu-grid { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); }

.menu-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--ink-3); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .22s var(--ease), border-color .22s;
}
.menu-card:hover { transform: translateY(-4px); border-color: rgba(255,209,0,.45); }
.menu-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink); }
.menu-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.menu-card:hover .menu-card__media img { transform: scale(1.06); }
.menu-card__badge {
  position: absolute; top: .85rem; left: .85rem; z-index: 2;
  background: var(--yellow); color: var(--ink);
  font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: .35rem .7rem; border-radius: 6px;
}
.menu-card__media--mark {
  display: grid; place-items: center;
  background:
    radial-gradient(120% 120% at 20% 15%, rgba(255,209,0,.22), transparent 62%),
    repeating-linear-gradient(135deg, #151515 0 14px, #101010 14px 28px);
}
.menu-card__media--mark img {
  width: 42%; height: auto; aspect-ratio: 1; object-fit: contain;
  border-radius: 18px; opacity: .95;
}
.menu-card:hover .menu-card__media--mark img { transform: scale(1.06); }

.menu-card__body { padding: 1.35rem 1.4rem 1.55rem; display: flex; flex-direction: column; flex: 1; }
.menu-card__body h3 { margin-bottom: .7rem; }
.menu-card ul { list-style: none; margin: 0 0 1.2rem; padding: 0; }
.menu-card li {
  position: relative; padding-left: 1.35rem; font-size: .93rem;
  color: #dcdcdc; margin-bottom: .42rem;
}
.menu-card li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 7px; height: 7px; background: var(--yellow); border-radius: 2px;
}
.menu-card .link-more {
  margin-top: auto; font-weight: 700; font-size: .87rem; letter-spacing: .05em;
  text-transform: uppercase; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem;
}
.menu-card .link-more svg { width: 14px; height: 14px; transition: transform .2s var(--ease); }
.menu-card .link-more:hover svg { transform: translateX(4px); }

.menu-note {
  margin-top: 2rem; text-align: center; color: var(--muted-2); font-size: .9rem;
}

/* ---------- gallery ---------- */

.gallery {
  display: grid; gap: .9rem;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 232px;
}
.gallery figure { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; }
.gallery figure:first-child { grid-column: span 2; grid-row: span 2; }
.gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease);
}
.gallery picture { display: block; height: 100%; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; inset: auto 0 0; padding: 2.5rem .95rem .9rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.88));
  font-size: .84rem; font-weight: 600; color: var(--white);
}
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery figure:first-child { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 480px) {
  .gallery { grid-auto-rows: 160px; }
}

/* ---------- split (apps / about) ---------- */

.split {
  display: grid; gap: clamp(2rem, 5vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  align-items: center;
}
.split__media picture { display: block; }
.split__media img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  width: 100%; aspect-ratio: 4 / 5; max-height: 620px; object-fit: cover;
}

.store-buttons { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.store-btn {
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--white); color: var(--ink); text-decoration: none;
  border: 2px solid var(--white); border-radius: 12px; padding: .6rem 1.1rem;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.store-btn:hover { transform: translateY(-2px); color: var(--ink); box-shadow: 0 12px 26px rgba(0,0,0,.45); }
.store-btn svg { width: 26px; height: 26px; flex: none; }
.store-btn span { display: block; line-height: 1.15; }
.store-btn small { display: block; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; opacity: .7; }
.store-btn strong { font-size: 1rem; font-weight: 800; }

.stat-row {
  display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-top: 2rem;
}
.stat {
  background: var(--ink-3); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 1.1rem 1.2rem;
}
.stat b {
  display: block; font-family: var(--font-display); font-size: 1.85rem;
  color: var(--yellow); line-height: 1;
}
.stat span { font-size: .82rem; color: var(--muted); }

/* ---------- info / contact ---------- */

.info-grid { display: grid; gap: 1.15rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.info-card {
  background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.5rem; display: flex; flex-direction: column; gap: .35rem;
}
.info-card .card__icon { margin-bottom: 1rem; }
.info-card h3 { margin-bottom: .35rem; }
.info-card p, .info-card address { color: var(--muted); font-size: .96rem; font-style: normal; margin: 0; }
.info-card a { font-weight: 700; text-decoration: none; word-break: break-word; }
.info-card a:hover { text-decoration: underline; }
.info-card .btn { margin-top: 1.1rem; align-self: flex-start; }

.map-frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: var(--ink-3); min-height: 340px;
}
.map-frame iframe {
  position: relative; z-index: 1;
  width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: grayscale(.25);
}
.map-frame__fallback {
  position: absolute; inset: 0; z-index: 0;
  display: grid; align-content: center; justify-items: center; gap: .5rem;
  padding: 2rem; text-align: center; color: var(--muted);
}
.map-frame__fallback strong { color: var(--white); font-size: 1.05rem; }

/* ---------- FAQ ---------- */

.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius-sm);
  margin-bottom: .75rem; overflow: hidden; transition: border-color .2s;
}
.faq details[open] { border-color: rgba(255,209,0,.42); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.1rem 3rem 1.1rem 1.35rem;
  font-weight: 700; font-size: 1.02rem; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 1.25rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; line-height: 1; color: var(--yellow); transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--yellow); }
.faq .faq__body { padding: 0 1.35rem 1.25rem; color: var(--muted); font-size: .96rem; }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--yellow); color: var(--ink);
  padding: clamp(2.75rem, 6vw, 4.25rem) 0; text-align: center;
}
.cta-band h2 { color: var(--ink); margin-bottom: .6rem; }
.cta-band p { color: rgba(0,0,0,.72); font-weight: 500; max-width: 56ch; margin-inline: auto; }
.cta-band .btn {
  --btn-bg: var(--ink); --btn-fg: var(--yellow);
  margin-top: 1.75rem;
}
.cta-band .btn:hover { box-shadow: 0 12px 28px rgba(0,0,0,.35); }
.cta-band .btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink); border-color: rgba(0,0,0,.45);
}
.cta-band .btn--ghost:hover { background: var(--ink); border-color: var(--ink); --btn-fg: var(--yellow); }
.cta-band__row { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

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

.site-footer { background: var(--ink-2); border-top: 1px solid var(--line); padding: clamp(2.75rem, 6vw, 4rem) 0 0; }
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); } }

.site-footer h4 {
  font-family: var(--font-body); font-size: .78rem; font-weight: 800;
  letter-spacing: .2em; text-transform: uppercase; color: var(--yellow); margin-bottom: 1rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .55rem; }
.site-footer a { color: var(--muted); text-decoration: none; font-size: .94rem; }
.site-footer a:hover { color: var(--yellow); }
.site-footer p, .site-footer address {
  color: var(--muted); font-size: .94rem; font-style: normal; margin: 0 0 .8rem;
}
.footer-brand img { width: 60px; height: 60px; border-radius: 12px; margin-bottom: 1rem; }

.socials { display: flex; gap: .6rem; margin-top: 1rem; }
.socials a {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 50%; color: var(--white);
  transition: background .2s, color .2s, transform .2s var(--ease), border-color .2s;
}
.socials a:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }

.footer-bottom {
  margin-top: 2.5rem; border-top: 1px solid var(--line); padding: 1.35rem 0;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .84rem; color: var(--muted-2);
}
.footer-bottom a { color: var(--muted-2); }

/* ---------- sticky mobile bar ---------- */

.action-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: .55rem; padding: .6rem .7rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(11, 11, 11, .96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.action-bar .btn { flex: 1; padding: .85rem .6rem; font-size: .82rem; }
@media (max-width: 720px) {
  .action-bar { display: flex; }
  body { padding-bottom: 74px; }
}

/* ---------- reveal on scroll ---------- */

/* Only hide content for the animation when JS is actually running to reveal it —
   without JS (`.js` never added) everything stays visible. */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ---------- page hero (inner pages) ---------- */

.page-hero {
  position: relative; padding: clamp(2.75rem, 7vw, 4.5rem) 0 clamp(2.25rem, 5vw, 3.25rem);
  background:
    radial-gradient(70% 120% at 80% 0%, rgba(255,209,0,.13), transparent 60%),
    var(--ink-2);
  border-bottom: 1px solid var(--line);
}
.page-hero p { color: var(--muted); max-width: 60ch; font-size: 1.05rem; }

.breadcrumbs { font-size: .82rem; color: var(--muted-2); margin-bottom: 1rem; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; margin: 0; padding: 0; }
.breadcrumbs li::after { content: "/"; margin-left: .45rem; color: var(--line); }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: var(--muted-2); text-decoration: none; }
.breadcrumbs a:hover { color: var(--yellow); }

/* ---------- misc ---------- */

.lead { font-size: 1.08rem; color: #dcdcdc; }
.text-muted { color: var(--muted); }
.mt-2 { margin-top: 2rem; }
