/* =============================================================================
   LOGOUT CLUB — microsite styles
   Shared by /logoutclub/index.html (en) and /logoutclub/el/index.html (el).
   Warm monochrome, 1970s-groovy display + clean bilingual sans, editorial layout.
   ========================================================================== */

/* ---- Self-hosted display face (wordmark, experience names, numerals) -------- */
@font-face {
  font-family: 'Bagel Fat One';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/bagel-fat-one-latin.woff2') format('woff2');
  /* Latin only — the wordmark stays LOGOUT CLUB in both languages */
  unicode-range: U+0000-00FF, U+2013-2014, U+2018-2019, U+201C-201D, U+2192;
}

/* ---- Design tokens --------------------------------------------------------- */
:root {
  --paper:  #F3F0E8;
  --ink:    #282726;
  --black:  #111111;
  --white:  #FFFFFF;

  /* derived, all from the four brand colours */
  --paper-2:   #EAE6DB;               /* slightly deeper paper for insets      */
  --ink-70:    rgba(40, 39, 38, .70);
  --ink-55:    rgba(40, 39, 38, .55);
  --ink-14:    rgba(40, 39, 38, .14);
  --ink-08:    rgba(40, 39, 38, .08);
  --paper-70:  rgba(243, 240, 232, .70);
  --paper-55:  rgba(243, 240, 232, .55);
  --paper-16:  rgba(243, 240, 232, .16);

  --font-display: 'Bagel Fat One', 'Arial Black', 'Helvetica Neue', sans-serif;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI',
               Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji';

  --wrap: 1240px;
  --pad: clamp(1.15rem, 5vw, 4rem);
  --nav-h: 68px;

  --border: 2.5px solid var(--ink);
  --border-thick: 4px solid var(--ink);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---- Reset ----------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.09rem);
  line-height: 1.68;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;            /* belt-and-braces against stray overflow */
  overflow-wrap: break-word;     /* long Greek/English words never overflow */
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; }
ul { list-style: none; }
::selection { background: var(--ink); color: var(--paper); }

/* ---- Analog print grain (very subtle, both light + dark) -------------------- */
.grain {
  position: fixed; inset: 0; z-index: 3;
  pointer-events: none;
  opacity: .38;
  /* overlay keeps dark areas dark (multiplies) while texturing the paper,
     so the wordmark stays a strong black silhouette */
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* ---- Layout helpers -------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); position: relative; }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--ink { background: var(--black); color: var(--paper); }
.section--ink ::selection { background: var(--paper); color: var(--black); }

.eyebrow {
  font-size: clamp(.7rem, .66rem + .2vw, .78rem);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-70);
  display: inline-flex; align-items: center; gap: .6rem;
}
.section--ink .eyebrow { color: var(--paper-70); }
.eyebrow::before {
  content: ""; width: 1.9rem; height: 2px; background: currentColor; opacity: .5;
}
.eyebrow.no-rule::before { display: none; }

h1, h2, h3 { font-weight: 800; letter-spacing: -.021em; line-height: 1.04; }
.h-xl { font-size: clamp(2.1rem, 1.2rem + 5.2vw, 4.6rem); }
.h-lg { font-size: clamp(1.9rem, 1.2rem + 3.6vw, 3.5rem); }
.lead {
  font-size: clamp(1.18rem, 1.02rem + .8vw, 1.7rem);
  line-height: 1.5; font-weight: 500; letter-spacing: -.01em;
  max-width: 34ch;
}
.prose p { max-width: 62ch; }
.prose p + p { margin-top: 1.1rem; }
.measure-wide { max-width: 72ch; }

/* ---- Wordmark: outlined logo drawn as a currentColor mask ------------------
   url() is resolved relative to THIS stylesheet (/logoutclub/), so the same
   rule works for both /logoutclub/ and /logoutclub/el/.                       */
.u-sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.wordmark {
  display: inline-block; width: auto; height: 1em;
  aspect-ratio: 7069 / 794; color: var(--ink);
  background-color: currentColor;
  -webkit-mask: url(assets/logo.svg) no-repeat left center / contain;
          mask: url(assets/logo.svg) no-repeat left center / contain;
}
.section--ink .wordmark, .lc-foot .wordmark { color: var(--paper); }
/* exit-arrow logomark drawn the same way (decorative) */
.mark {
  display: inline-block; aspect-ratio: 1 / 1; background-color: currentColor;
  -webkit-mask: url(assets/logomark.svg) no-repeat center / contain;
          mask: url(assets/logomark.svg) no-repeat center / contain;
}

/* =============================================================================
   NAVIGATION
   ========================================================================== */
.lc-nav {
  position: sticky; top: 0; z-index: 20;
  background: var(--paper-70);
  -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px);
  border-bottom: 1px solid transparent;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.lc-nav.is-stuck {
  background: var(--paper-70);
  border-bottom-color: var(--ink-14);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .lc-nav, .lc-nav.is-stuck { background: var(--paper); }
}
.lc-nav__inner {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.lc-nav__brand { display: inline-flex; align-items: center; }
.lc-nav__brand .wordmark { height: 20px; }
.lc-nav__brand:focus-visible { outline-offset: 6px; }

.lc-nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.1rem); }
.lc-nav__link {
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; text-decoration: none;
  position: relative; padding: .35rem 0; white-space: nowrap;
}
.lc-nav__link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -1px; height: 2px;
  background: var(--ink); transition: right .28s var(--ease);
}
.lc-nav__link:hover::after, .lc-nav__link:focus-visible::after { right: 0; }

/* language switch */
.lang {
  display: inline-flex; align-items: center;
  border: 2px solid var(--ink); border-radius: 999px; overflow: hidden;
}
.lang a {
  font-size: .74rem; font-weight: 700; letter-spacing: .05em;
  text-decoration: none; padding: .3rem .62rem; line-height: 1; color: var(--ink);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.lang a[aria-current="true"] { background: var(--ink); color: var(--paper); }
.lang a:not([aria-current="true"]):hover { background: var(--ink-08); }

/* mobile nav toggle */
.lc-nav__toggle {
  display: none; width: 44px; height: 44px; margin-right: -8px;
  align-items: center; justify-content: center;
}
.lc-nav__toggle span, .lc-nav__toggle span::before, .lc-nav__toggle span::after {
  content: ""; display: block; width: 24px; height: 2.5px; background: var(--ink);
  border-radius: 2px; transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.lc-nav__toggle span::before { transform: translateY(-7px); }
.lc-nav__toggle span::after { transform: translateY(7px); }
.lc-nav__toggle span { position: relative; }
.lc-nav__toggle[aria-expanded="true"] span { background: transparent; }
.lc-nav__toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.lc-nav__toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); }

@media (max-width: 860px) {
  .lc-nav__toggle { display: inline-flex; }
  .lc-nav__links {
    position: absolute; left: 0; right: 0; top: var(--nav-h);
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--paper); border-bottom: var(--border);
    padding: .5rem var(--pad) 1.4rem;
    clip-path: inset(0 0 100% 0); opacity: 0;
    transition: clip-path .32s var(--ease), opacity .2s var(--ease);
  }
  .lc-nav__links.is-open { clip-path: inset(0 0 -20% 0); opacity: 1; }
  .lc-nav__link { font-size: 1.15rem; padding: .85rem 0; width: 100%;
    border-bottom: 1px solid var(--ink-14); }
  .lc-nav__link::after { display: none; }
  .lang { margin-top: 1rem; }
}

/* =============================================================================
   BUTTONS
   ========================================================================== */
.btn {
  --bg: var(--ink); --fg: var(--paper); --bd: var(--ink);
  display: inline-flex; align-items: center; gap: .6rem;
  font-weight: 700; font-size: .84rem; letter-spacing: .05em; text-transform: uppercase;
  text-decoration: none; padding: .95rem 1.6rem;
  background: var(--bg); color: var(--fg); border: 2.5px solid var(--bd);
  border-radius: 999px; max-width: 100%; text-align: center; justify-content: center;
  transition: transform .16s var(--ease), background .18s var(--ease), color .18s var(--ease);
}
.btn .btn__arrow { transition: transform .22s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--ghost { --bg: transparent; --fg: var(--ink); --bd: var(--ink); }
.btn--ghost:hover { --bg: var(--ink); --fg: var(--paper); }
.section--ink .btn { --bg: var(--paper); --fg: var(--black); --bd: var(--paper); }
.section--ink .btn--ghost { --bg: transparent; --fg: var(--paper); --bd: var(--paper); }
.section--ink .btn--ghost:hover { --bg: var(--paper); --fg: var(--black); }
.btn--lg { padding: 1.05rem 2rem; font-size: .9rem; }

.cta-row { display: flex; flex-wrap: wrap; gap: .9rem; }

/* =============================================================================
   HERO
   ========================================================================== */
.hero { padding-top: clamp(2rem, 5vw, 4.5rem); padding-bottom: clamp(2.5rem, 6vw, 5rem);
  position: relative; overflow: hidden; }
.hero__top {
  display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; align-items: baseline;
  color: var(--ink-70);
}
.hero__stamp {
  font-size: clamp(.7rem, .66rem + .2vw, .78rem); font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
}
.hero__wordmark {
  margin: clamp(1.4rem, 3vw, 2.4rem) 0 clamp(1.6rem, 3vw, 2.4rem);
  position: relative;
}
/* oversized + hard offset "extrusion" for a 70s printed feel (follows mask) */
.hero__wordmark .wordmark {
  width: min(100%, 1180px); height: auto;
  filter: drop-shadow(9px 12px 0 rgba(40, 39, 38, .18));
}
/* stacked wordmark on small screens so the logo stays dominant */
@media (max-width: 760px) {
  .hero__wordmark .wordmark {
    -webkit-mask-image: url(assets/logo-stacked.svg);
            mask-image: url(assets/logo-stacked.svg);
    aspect-ratio: 3783 / 2430;
    width: min(100%, 440px);
    filter: drop-shadow(6px 8px 0 rgba(40, 39, 38, .18));
  }
}
.hero__lower {
  display: grid; grid-template-columns: 1.35fr .9fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
}
.hero__tagline {
  font-size: clamp(1.6rem, 1rem + 3vw, 3rem); font-weight: 800;
  letter-spacing: -.02em; line-height: 1.02;
}
.hero__sub { margin-top: 1.1rem; font-size: clamp(1.05rem, 1rem + .5vw, 1.28rem);
  color: var(--ink-70); max-width: 40ch; line-height: 1.55; }
.hero__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.hero__scrawl { color: var(--ink); align-self: stretch; }
.hero__scrawl svg { width: clamp(80px, 20vw, 132px); height: auto; }
@media (max-width: 760px) {
  .hero__lower { grid-template-columns: 1fr; align-items: start; }
  .hero__cta { flex-direction: row; flex-wrap: wrap; align-items: center; }
}

/* =============================================================================
   EVENTS / LUMA
   ========================================================================== */
.events__head { display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: end; gap: 1.2rem 2rem; margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.events__intro { max-width: 46ch; color: var(--ink-70);
  font-size: clamp(1.05rem, 1rem + .5vw, 1.22rem); line-height: 1.5; }

.luma-frame {
  border: var(--border-thick); background: var(--white);
  padding: 10px; position: relative;
}
.luma-frame__tab {
  position: absolute; top: -1px; left: 26px; transform: translateY(-100%);
  background: var(--ink); color: var(--paper);
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: .4rem .85rem; display: inline-flex; align-items: center; gap: .5rem;
}
.luma-embed {
  width: 100%; height: 700px; border: 0; display: block; background: var(--paper);
}
@media (max-width: 640px) { .luma-embed { height: 78vh; min-height: 560px; } }

/* placeholder shown until a real Luma URL is configured */
.luma-ph {
  height: 700px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; gap: 1.1rem;
  background:
    repeating-linear-gradient(-45deg, var(--paper) 0 22px, var(--paper-2) 22px 44px);
  padding: 2rem;
}
@media (max-width: 640px) { .luma-ph { height: auto; min-height: 560px; padding: 2rem 1.2rem; } }
.luma-ph__badge {
  font-family: var(--font-display); font-size: clamp(2.2rem, 8vw, 4rem);
  color: var(--ink); line-height: .9;
}
.luma-ph__title { font-size: clamp(1.3rem, 1rem + 1.6vw, 2rem); font-weight: 800;
  letter-spacing: -.02em; max-width: 22ch; }
.luma-ph__note { color: var(--ink-70); max-width: 44ch; font-size: 1rem; }
.luma-ph code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: var(--ink); color: var(--paper); padding: .12em .5em; border-radius: 4px;
  font-size: .82em; word-break: break-all;
}
.events__foot { margin-top: 1.1rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem;
  align-items: center; justify-content: space-between; }
.events__foot .luma-link { font-weight: 700; text-decoration: none;
  display: inline-flex; align-items: center; gap: .5rem; }
.events__foot .luma-link::after { content: "→"; transition: transform .2s var(--ease); }
.events__foot .luma-link:hover::after { transform: translateX(4px); }
.events__note { color: var(--ink-70); font-size: .92rem; max-width: 52ch; }
[hidden] { display: none !important; }

/* =============================================================================
   INTRO / positioning
   ========================================================================== */
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,4vw,4rem);
  align-items: start; }
.intro__body { font-size: clamp(1.08rem, 1rem + .6vw, 1.32rem); line-height: 1.62; }
.intro__body p { max-width: 54ch; }
.intro__body p + p { margin-top: 1.2rem; }
@media (max-width: 820px) { .intro__grid { grid-template-columns: 1fr; gap: 1.6rem; } }

/* =============================================================================
   EXPERIENCES — 2x2 editorial grid
   ========================================================================== */
.exp__head { display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: space-between; gap: .8rem 2rem; margin-bottom: clamp(2rem,4vw,3rem); }
.exp__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: var(--border); background: var(--ink);
}
.exp__grid > * { background: var(--paper); }
.exp-card { padding: clamp(1.5rem, 3vw, 2.6rem); display: flex; flex-direction: column;
  gap: .9rem; position: relative; }
/* internal gridlines drawn with the ink background showing through the gap */
.exp__grid { gap: 2.5px; }
.exp-card__num {
  font-family: var(--font-display); font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1; color: var(--ink);
}
.exp-card__name {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.85rem, 1.1rem + 2.6vw, 3.1rem); line-height: .98;
  letter-spacing: .005em;
}
.exp-card__desc { color: var(--ink-70); max-width: 48ch; line-height: 1.6; }
.exp-card__desc strong { color: var(--ink); font-weight: 700; }
.exp-card__label {
  margin-top: .3rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-70);
}
.exp-card__eds { margin-top: -.2rem; font-weight: 600; line-height: 1.5;
  color: var(--ink); font-size: .96rem; }
.exp__cta { margin-top: clamp(2rem, 4vw, 3rem); display: flex; justify-content: center; }
@media (max-width: 720px) { .exp__grid { grid-template-columns: 1fr; } }

/* =============================================================================
   MANIFESTO (activity comes first) — inverted
   ========================================================================== */
.manifesto { text-align: left; }
.manifesto__title {
  font-size: clamp(2.3rem, 1.2rem + 6vw, 5.4rem); font-weight: 800;
  letter-spacing: -.025em; line-height: .98; max-width: 16ch;
}
.manifesto__body { margin-top: clamp(1.4rem, 3vw, 2.2rem);
  font-size: clamp(1.12rem, 1rem + .7vw, 1.5rem); line-height: 1.5;
  max-width: 40ch; color: var(--paper-70); }
.manifesto__body strong { color: var(--paper); font-weight: 600; }
.manifesto__mark { position: absolute; right: var(--pad); bottom: clamp(2rem,6vw,4rem);
  width: clamp(90px, 16vw, 190px); color: var(--paper-16); }

/* =============================================================================
   HOW IT WORKS — 4 numbered steps
   ========================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.2rem,2.5vw,2rem);
  margin-top: clamp(2rem,4vw,3rem); counter-reset: step; }
.step { border-top: var(--border-thick); padding-top: 1.1rem; }
.step__n { font-family: var(--font-display); font-size: clamp(2.2rem,5vw,3.2rem);
  line-height: 1; color: var(--ink); }
.step__t { margin-top: .7rem; font-size: 1.16rem; font-weight: 800; letter-spacing: -.01em; }
.step__d { margin-top: .5rem; color: var(--ink-70); line-height: 1.55; font-size: .98rem; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* =============================================================================
   AUDIENCE
   ========================================================================== */
.audience { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(1.5rem,4vw,4rem);
  align-items: center; }
.audience__body { font-size: clamp(1.08rem,1rem + .6vw,1.3rem); line-height: 1.6; }
.audience__body p { max-width: 52ch; }
.audience__body p + p { margin-top: 1rem; }
.audience__tags { display: flex; flex-wrap: wrap; gap: .55rem; }
.tag { border: 2px solid var(--ink); border-radius: 999px; padding: .4rem .9rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .02em; }
@media (max-width: 820px) { .audience { grid-template-columns: 1fr; gap: 1.6rem; } }

/* =============================================================================
   CLOSING THE LAPTOP — inverted statement
   ========================================================================== */
.closing__title { font-size: clamp(1.9rem, 1.1rem + 4.4vw, 4rem); font-weight: 800;
  letter-spacing: -.022em; line-height: 1.03; max-width: 20ch; }
.closing__body { margin-top: clamp(1.3rem,3vw,2rem); columns: 2; column-gap: clamp(1.5rem,4vw,3.5rem);
  font-size: clamp(1.05rem,1rem + .5vw,1.24rem); line-height: 1.6; color: var(--paper-70); max-width: 74ch; }
.closing__body p { break-inside: avoid; }
.closing__body p + p { margin-top: 1rem; }
.closing__body strong { color: var(--paper); font-weight: 600; }
@media (max-width: 680px) { .closing__body { columns: 1; } }

/* =============================================================================
   FAQ accordion
   ========================================================================== */
.faq__wrap { max-width: 900px; }
.faq__list { border-top: var(--border); margin-top: clamp(1.6rem,3vw,2.4rem); }
.faq__item { border-bottom: var(--border); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1.2rem; text-align: left; padding: 1.2rem .2rem;
  font-size: clamp(1.05rem, 1rem + .5vw, 1.32rem); font-weight: 700; letter-spacing: -.01em;
}
.faq__q:hover { color: var(--ink); }
.faq__icon { flex-shrink: 0; width: 26px; height: 26px; position: relative; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; left: 50%; top: 50%; background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq__icon::before { width: 20px; height: 3px; transform: translate(-50%, -50%); }
.faq__icon::after  { width: 3px; height: 20px; transform: translate(-50%, -50%); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq__panel { overflow: hidden; height: 0; }
.faq__panel-inner { padding: 0 3rem 1.4rem .2rem; color: var(--ink-70);
  font-size: 1.05rem; line-height: 1.62; max-width: 64ch; }
.faq__panel.is-open { height: auto; }

/* =============================================================================
   FINAL CTA
   ========================================================================== */
.final { text-align: center; }
.final__inner { border: var(--border-thick); padding: clamp(2.2rem,6vw,4.5rem) var(--pad);
  position: relative; }
.final__title { font-size: clamp(2rem, 1.1rem + 5vw, 4.4rem); font-weight: 800;
  letter-spacing: -.025em; line-height: 1; max-width: 18ch; margin-inline: auto; }
.final__sub { margin: 1.3rem auto 0; max-width: 46ch; color: var(--ink-70);
  font-size: clamp(1.05rem,1rem + .5vw,1.24rem); line-height: 1.5; }
.final .cta-row { margin-top: 2rem; justify-content: center; }
@media (max-width: 520px) {
  .final__inner { padding-inline: 1.25rem; }
  .final .cta-row { flex-direction: column; align-items: stretch; }
  .final .cta-row .btn { width: 100%; }
}

/* =============================================================================
   FOOTER
   ========================================================================== */
.lc-foot { background: var(--black); color: var(--paper); padding-block: clamp(3rem,6vw,4.5rem); }
.lc-foot__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 2.5rem 2rem;
  align-items: start; }
.lc-foot .wordmark { height: clamp(26px, 5vw, 40px); }
.lc-foot__tag { margin-top: 1.1rem; color: var(--paper-70); font-size: 1.05rem; max-width: 30ch; }
.lc-foot__place { margin-top: .5rem; color: var(--paper-55); font-size: .95rem;
  letter-spacing: .04em; text-transform: uppercase; }
.lc-foot__links { display: flex; flex-direction: column; gap: .1rem; }
.lc-foot__links a, .lc-foot__links span {
  color: var(--paper); text-decoration: none; padding: .5rem 0;
  font-weight: 600; display: inline-flex; align-items: center; gap: .55rem;
  border-bottom: 1px solid var(--paper-16); width: fit-content;
}
.lc-foot__links a::after { content: "↗"; font-size: .8em; opacity: .55; }
.lc-foot__links span { color: var(--paper-55); }
.lc-foot__bottom { margin-top: clamp(2rem,5vw,3rem); padding-top: 1.3rem;
  border-top: 1px solid var(--paper-16); display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  justify-content: space-between; color: var(--paper-55); font-size: .85rem; }
.lc-foot__bottom a { color: var(--paper-70); }
@media (max-width: 640px) { .lc-foot__grid { grid-template-columns: 1fr; gap: 2rem; } }

/* =============================================================================
   Decorative graphic elements
   ========================================================================== */
.stamp {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 2.5px solid var(--ink); border-radius: 999px;
  padding: .34rem .85rem; font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; transform: rotate(-2.5deg);
}
.stamp--float { position: absolute; }
.circle-scrawl { color: var(--ink); }

/* =============================================================================
   Focus + motion
   ========================================================================== */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible, iframe:focus-visible {
  outline: 3px solid var(--ink); outline-offset: 3px; border-radius: 3px;
}
.section--ink a:focus-visible, .section--ink button:focus-visible,
.lc-foot a:focus-visible, .lc-foot button:focus-visible {
  outline-color: var(--paper);
}
.skip-link {
  position: absolute; left: 0; top: 0; transform: translateY(-120%);
  background: var(--ink); color: var(--paper); padding: .7rem 1.1rem; z-index: 50;
  font-weight: 700; text-decoration: none; border-radius: 0 0 6px 0;
}
.skip-link:focus { transform: translateY(0); }

/* entrance + reveal (progressive: hidden state ONLY when JS is present, so the
   page is fully visible if JS is disabled or fails) */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .hero__reveal { opacity: 0; transform: translateY(14px); animation: heroIn .8s var(--ease) forwards; }
.js .hero__reveal.d1 { animation-delay: .05s; }
.js .hero__reveal.d2 { animation-delay: .16s; }
.js .hero__reveal.d3 { animation-delay: .27s; }
.js .hero__reveal.d4 { animation-delay: .38s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-delay: 0ms !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .js .reveal, .reveal { opacity: 1; transform: none; }
  .js .hero__reveal { opacity: 1; transform: none; animation: none; }
  .grain { display: none; }
}
