/* ==========================================================================
   NORD PC CLUB — styles.css
   LAYOUT: F — alternating-bleed (odd sections boxed 1140px, even sections
           full-bleed with 5vw inner padding).
   SPACING SCALE: airy (128px / 72px vertical; 64px on mobile).
   Theme: light. Single dark section = the workshop.
   ========================================================================== */

:root {
  /* colour */
  --c-bg: #f6f2ec;          /* light wood, primary */
  --c-bg-dark: #23272b;     /* graphite, used once */
  --c-ink: #23272b;         /* text on light */
  --c-ink-inv: #f6f2ec;     /* text on dark */
  --c-a1: #5b7d9e;          /* dusty blue accent (the only one) */
  --c-a1-deep: #47637f;     /* accent hover, tone deeper */
  --c-felt: #efe9e0;        /* felt pad, one tone below bg */
  --c-felt-dark: #2b3035;   /* felt pad on dark section */
  --c-rule: #d9cfc0;        /* wooden ruler tone */
  --c-muted: #6c675f;       /* soft ink */

  /* fonts */
  --f-display: 'Hanken Grotesk', 'Segoe UI', system-ui, sans-serif;
  --f-body: 'Mulish', system-ui, sans-serif;

  /* radius */
  --r-card: 12px;

  /* spacing scale — 8px step */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 40px;
  --s-6: 56px;

  /* airy section rhythm */
  --sec-y: 128px;
  --block-y: 72px;

  /* container width (scheme F boxed) */
  --w-container: 1140px;
  --bleed-pad: 5vw;

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

@media (max-width: 768px) {
  :root { --sec-y: 64px; --block-y: 48px; }
}

/* -------- reset / base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--f-display); font-weight: 700; line-height: 1.1; margin: 0 0 var(--s-3); }
h1 { font-size: clamp(36px, 5.5vw, 76px); letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 4vw, 46px); letter-spacing: -0.01em; }
h3 { font-size: clamp(19px, 2vw, 23px); }
p { margin: 0 0 var(--s-3); }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  color: var(--c-a1);
  margin: 0 0 var(--s-2);
  display: flex; align-items: center; gap: var(--s-1);
}

.u-skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--c-a1); color: #fff; padding: 12px 18px;
  border-radius: 0 0 var(--r-card) 0; z-index: 200;
}
.u-skip:focus { left: 0; }

/* -------- layout scheme F -------- */
.section { padding-block: var(--sec-y); }
.section > * { max-width: var(--w-container); margin-inline: auto; padding-inline: var(--s-4); }
.bleed { padding-block: var(--sec-y); background: var(--c-felt); }
.bleed__inner { padding-inline: var(--bleed-pad); }
@media (max-width: 480px) {
  .section > * { padding-inline: var(--s-2); }
}

.section__head { margin-bottom: var(--block-y); max-width: 760px; }
.section__intro { color: var(--c-muted); font-size: 18px; }

/* wooden ruler divider */
.rule {
  height: 3px;
  max-width: var(--w-container);
  margin: 0 auto;
  background: linear-gradient(90deg, var(--c-rule), #e7ddce 60%, var(--c-rule));
  border-radius: 3px;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform .7s var(--ease);
}
.rule.is-in { transform: scaleX(1); }

/* -------- motif: felt pads -------- */
.felt {
  background: var(--c-felt);
  border-radius: var(--r-card);
  background-image:
    radial-gradient(circle at 30% 20%, rgba(0,0,0,.012) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(0,0,0,.012) 0 1px, transparent 1px);
  background-size: 6px 6px, 7px 7px;
}

/* -------- motif: fika cup pictogram -------- */
.cup {
  width: 18px; height: 15px; display: inline-block; position: relative;
  border: 2px solid currentColor; border-radius: 0 0 7px 7px; border-top: none;
  vertical-align: -2px;
}
.cup::before { /* handle */
  content: ""; position: absolute; right: -7px; top: 1px;
  width: 6px; height: 8px; border: 2px solid currentColor; border-left: none;
  border-radius: 0 6px 6px 0;
}
.cup::after { /* steam */
  content: ""; position: absolute; left: 6px; top: -8px;
  width: 2px; height: 6px; background: currentColor; border-radius: 2px;
  opacity: .5;
}
.cup--big { width: 26px; height: 22px; color: var(--c-a1); }

/* -------- logo lockup -------- */
.logo { display: inline-flex; flex-direction: column; line-height: 1; }
.logo__mark {
  font-family: var(--f-display); font-weight: 700; font-size: 24px;
  letter-spacing: 0.02em; position: relative;
}
.logo__dot {
  position: absolute; top: 6px; left: 6.5px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--c-a1);
}
.logo__sub {
  font-family: var(--f-display); font-weight: 500; font-size: 11px;
  letter-spacing: 0.28em; color: var(--c-muted); margin-top: 3px;
}

/* -------- buttons -------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 700; font-size: 15px;
  padding: 13px 24px; border-radius: var(--r-card); border: none; cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), transform .15s var(--ease);
}
.btn--primary { background: var(--c-a1); color: #fff; }
.btn--primary:hover { background: var(--c-a1-deep); }
.btn--ghost { background: transparent; color: var(--c-ink); box-shadow: inset 0 0 0 2px var(--c-rule); }
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--c-a1); color: var(--c-a1); }
.btn:active { transform: translateY(1px); }

/* -------- nav (nav-split-logo) -------- */
.nav { position: sticky; top: 0; z-index: 100; background: transparent; transition: background .25s var(--ease), box-shadow .25s var(--ease); }
.nav.is-scrolled { background: rgba(246,242,236,.92); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--c-rule); }
.nav__inner {
  max-width: 1240px; margin-inline: auto; padding: 14px var(--s-4);
  display: flex; align-items: center; gap: var(--s-4);
}
.nav__brand { display: flex; align-items: center; gap: var(--s-2); }
.nav__badge {
  font-family: var(--f-display); font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; color: var(--c-a1);
  padding: 4px 10px; border-radius: 999px; background: var(--c-felt);
  white-space: nowrap;
}
.nav__center { display: flex; gap: var(--s-4); margin-left: auto; }
.nav__center a {
  font-family: var(--f-display); font-weight: 500; font-size: 15px;
  position: relative; padding: 4px 0;
}
.nav__center a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--c-a1); transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__center a:hover::after, .nav__center a.is-active::after { transform: scaleX(1); }
.nav__cta { flex-shrink: 0; }
.nav__toggle {
  display: none; flex-direction: column; gap: 4px; background: none; border: none;
  cursor: pointer; padding: 6px; margin-left: auto;
}
.nav__toggle span { width: 22px; height: 2px; background: var(--c-ink); border-radius: 2px; }

@media (max-width: 900px) {
  .nav__badge { display: none; }
  .nav__center { gap: var(--s-3); }
}
@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__cta { display: none; }
  .nav__center {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; margin: 0;
    background: rgba(246,242,236,.98); backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--c-rule);
    max-height: 0; overflow: hidden; transition: max-height .3s var(--ease);
  }
  .nav__center.is-open { max-height: 320px; }
  .nav__center a { padding: 14px var(--s-4); border-top: 1px solid var(--c-rule); }
  .nav__center a::after { display: none; }
}

/* -------- hero (hero-split-media) -------- */
.s-hero { position: relative; padding-top: var(--s-6); padding-bottom: var(--sec-y); overflow: hidden; }
.hero__dust {
  position: absolute; inset: -20% -10% auto -10%; height: 140%; z-index: 0;
  background: radial-gradient(circle at 30% 40%, rgba(91,125,158,.14), transparent 55%),
              radial-gradient(circle at 60% 30%, rgba(255,240,210,.5), transparent 45%);
  pointer-events: none;
  will-change: transform;
  animation: dustLight 40s ease-in-out infinite alternate;
}
@keyframes dustLight {
  from { transform: translate3d(-3vw, 0, 0); }
  to   { transform: translate3d(3vw, 1vh, 0); }
}
.hero__grid {
  position: relative; z-index: 1;
  max-width: var(--w-container); margin-inline: auto; padding-inline: var(--s-4);
  display: grid; grid-template-columns: 1.05fr 1fr; gap: var(--s-6); align-items: center;
}
.hero__lead { font-size: 19px; color: var(--c-muted); max-width: 46ch; }
.hero__actions { display: flex; gap: var(--s-2); flex-wrap: wrap; margin: var(--s-5) 0 var(--s-4); }
.hero__note {
  font-family: var(--f-display); font-weight: 500; color: var(--c-ink);
  display: flex; align-items: center; gap: var(--s-1);
}
.hero__media img { border-radius: var(--r-card); width: 100%; }
.fika-num { color: var(--c-a1); font-weight: 700; font-variant-numeric: tabular-nums; }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
}
@media (max-width: 480px) {
  .hero__grid { padding-inline: var(--s-2); }
}

/* -------- cards (stations) -------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.card { overflow: hidden; }
.card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card__body { padding: var(--s-3); }
.card__body h3 { margin-bottom: var(--s-1); }
.card__body > p { color: var(--c-muted); font-size: 15.5px; }
.card__spec { list-style: none; margin: var(--s-2) 0 0; padding: 0; border-top: 1px solid var(--c-rule); }
.card__spec li { padding: 7px 0; font-size: 14.5px; border-bottom: 1px solid var(--c-rule); }
.card__spec li:last-child { border-bottom: none; }
@media (max-width: 820px) { .cards { grid-template-columns: 1fr; } }

/* -------- fika (full-bleed band) -------- */
.fika__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-6); align-items: center; }
.fika__media img { border-radius: var(--r-card); width: 100%; }
.fika__widget {
  display: flex; align-items: center; gap: var(--s-2); flex-wrap: wrap;
  padding: var(--s-3); margin-top: var(--s-4);
}
.fika__widget-label { font-family: var(--f-display); font-weight: 500; color: var(--c-muted); }
.fika__countdown { font-size: 26px; margin-left: auto; }
.cup--big { animation: none; }
.s-fika.is-in .cup--big { animation: steamRise 1.6s var(--ease) 1; }
@keyframes steamRise {
  0% { transform: translateY(4px); }
  60% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}
@media (max-width: 820px) {
  .fika__grid { grid-template-columns: 1fr; }
  .fika__media { order: -1; }
}

/* -------- hardware (dark section) -------- */
.section--dark { background: var(--c-bg-dark); color: var(--c-ink-inv); }
.section--dark .eyebrow { color: #93b0cb; }
.section--dark .section__intro { color: #b9b4ab; }
.specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
.spec { background: var(--c-felt-dark); border-radius: var(--r-card); padding: var(--s-4); }
.spec h3 { color: var(--c-ink-inv); }
.spec p { color: #b9b4ab; margin: 0; font-size: 15.5px; }
@media (max-width: 640px) { .specs { grid-template-columns: 1fr; } }

/* -------- games -------- */
.games__accent { color: var(--c-a1); }
.games__copy { max-width: 760px; margin-bottom: var(--block-y); }
.games__copy p { color: var(--c-muted); font-size: 17px; }
.games__copy p:last-child { margin-bottom: 0; }
.games { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-2); }
.games__item {
  padding: var(--s-3);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: var(--s-2);
  row-gap: 4px;
  align-items: center;
}
.games__icon {
  grid-row: 1 / span 2;
  width: 24px; height: 24px;
  color: var(--c-a1);
  transition: transform .2s var(--ease);
}
.games__item:hover .games__icon { transform: scale(1.08); }
.games__tag { font-family: var(--f-display); font-weight: 700; font-size: 16px; align-self: end; }
.games__desc { color: var(--c-muted); font-size: 15px; align-self: start; }
@media (max-width: 640px) { .games { grid-template-columns: 1fr; } }

/* -------- rates -------- */
.rates { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.rate { padding: var(--s-4); }
.rate--feature { outline: 2px solid var(--c-a1); }
.rate__lead { color: var(--c-muted); font-size: 15px; margin-bottom: var(--s-3); }
.rate__list { list-style: none; margin: 0; padding: 0; }
.rate__list li { padding: 8px 0 8px 22px; position: relative; font-size: 15px; border-bottom: 1px solid var(--c-rule); }
.rate__list li:last-child { border-bottom: none; }
.rate__list li::before {
  content: ""; position: absolute; left: 0; top: 15px;
  width: 10px; height: 2px; background: var(--c-a1); border-radius: 2px;
}
.rates__foot { text-align: center; margin-top: var(--s-5); color: var(--c-muted); font-family: var(--f-display); font-weight: 500; }
@media (max-width: 820px) { .rates { grid-template-columns: 1fr; } }

/* -------- house notes -------- */
.notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.note { border-top: 3px solid var(--c-rule); padding-top: var(--s-3); }
.note p { color: var(--c-muted); font-size: 15.5px; margin: 0; }
@media (max-width: 820px) { .notes { grid-template-columns: 1fr; } }

/* -------- gallery -------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.gallery__fig { margin: 0; }
.gallery__fig img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--r-card); }
.gallery__fig figcaption { margin-top: var(--s-2); color: var(--c-muted); font-size: 14.5px; }
@media (max-width: 820px) { .gallery { grid-template-columns: 1fr; } }

/* -------- faq -------- */
.s-faq .section__head { position: relative; }
.faq { max-width: 820px; }
.faq__item { border-bottom: 1px solid var(--c-rule); }
.faq__item summary {
  font-family: var(--f-display); font-weight: 700; font-size: 18px;
  padding: var(--s-3) var(--s-4) var(--s-3) 0; cursor: pointer; list-style: none;
  position: relative; transition: color .2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: ""; position: absolute; right: 4px; top: 50%; width: 12px; height: 12px;
  border-right: 2px solid var(--c-a1); border-bottom: 2px solid var(--c-a1);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s var(--ease);
}
.faq__item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq__item summary:hover { color: var(--c-a1); }
.faq__item p { color: var(--c-muted); padding: 0 0 var(--s-3); margin: 0; max-width: 68ch; }

/* coat hook motif */
.hook { position: absolute; right: 0; top: 4px; width: 34px; height: 34px; display: none; }
@media (min-width: 900px) { .hook { display: block; } }
.hook::before {
  content: ""; position: absolute; left: 15px; top: 0; width: 4px; height: 12px;
  background: var(--c-rule); border-radius: 2px 2px 0 0;
}
.hook::after {
  content: ""; position: absolute; left: 8px; top: 11px; width: 18px; height: 10px;
  border: 3px solid var(--c-rule); border-top: none; border-radius: 0 0 10px 10px;
}
.hook__coat {
  position: absolute; left: 13px; top: 20px; width: 8px; height: 8px;
  background: var(--c-a1); border-radius: 50%;
  transform: translateY(-14px); opacity: 0;
  transition: transform .5s var(--ease), opacity .5s var(--ease);
}
.hook.is-in .hook__coat { transform: translateY(0); opacity: 1; }

/* -------- book form -------- */
.book__grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-6); align-items: start; }
.book__form { padding: var(--s-5); display: grid; gap: var(--s-3); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-family: var(--f-display); font-weight: 600; font-size: 14px; }
.field input, .field select {
  font-family: var(--f-body); font-size: 15.5px; color: var(--c-ink);
  padding: 12px 14px; border: none; border-radius: 8px;
  background: var(--c-bg);
  box-shadow: inset 0 -2px 0 transparent;
  transition: box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus {
  outline: none; box-shadow: inset 0 -2px 0 var(--c-a1); /* wooden ruler underlines the field */
}
.book__submit { margin-top: var(--s-1); }
#formStatus { margin: 0; font-family: var(--f-display); font-weight: 600; font-size: 15px; }
#formStatus.success { color: var(--c-a1-deep); }
#formStatus.error { color: #b1442f; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 820px) { .book__grid { grid-template-columns: 1fr; } }

/* -------- footer (footer-map-contact) -------- */
.footer { background: var(--c-bg-dark); color: var(--c-ink-inv); padding: var(--sec-y) 0 var(--s-5); }
.footer__grid {
  max-width: var(--w-container); margin-inline: auto; padding-inline: var(--s-4);
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--s-5);
}
.footer .logo__sub { color: #93b0cb; }
.footer__tag { color: #b9b4ab; font-family: var(--f-display); margin-top: var(--s-2); }
.footer__col h3 { font-size: 15px; letter-spacing: 0.04em; margin-bottom: var(--s-2); color: var(--c-ink-inv); }
.footer__col p { color: #b9b4ab; font-size: 15px; }
.footer__col a { display: block; color: #b9b4ab; padding: 4px 0; font-size: 15px; transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--c-ink-inv); }
.footer__bottom {
  max-width: var(--w-container); margin: var(--s-6) auto 0; padding: var(--s-4) var(--s-4) 0;
  border-top: 1px solid var(--c-felt-dark);
  display: flex; justify-content: space-between; gap: var(--s-3); flex-wrap: wrap;
}
.footer__disclaimer { font-family: var(--f-display); font-weight: 700; color: var(--c-ink-inv); font-size: 15px; margin: 0; }
.footer__copy { color: #8b867e; font-size: 14px; margin: 0; }
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

/* -------- legal pages (plain-papers) -------- */
.legal__nav {
  max-width: 820px; margin-inline: auto; padding: var(--s-4) var(--s-4);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-3);
}
.legal__back { font-family: var(--f-display); font-weight: 600; font-size: 15px; color: var(--c-a1); }
.legal__back:hover { color: var(--c-a1-deep); }
.legal__main { max-width: 820px; margin: 0 auto var(--sec-y); padding: var(--s-5) var(--s-4) 0; }
.legal__main h1 { margin-bottom: var(--s-3); }
.legal__lead { font-size: 19px; color: var(--c-muted); max-width: 62ch; }
.legal__main h2 { font-size: clamp(21px, 2.6vw, 28px); margin: 0 0 var(--s-2); }
.legal__main p { max-width: 70ch; }
.legal__rule {
  height: 3px; margin: var(--s-6) 0 var(--s-4);
  background: linear-gradient(90deg, var(--c-rule), #e7ddce 60%, var(--c-rule));
  border-radius: 3px;
}
.legal__footer { border-top: none; margin-top: 0; }
.legal .footer { padding-block: var(--s-6) var(--s-5); }

/* -------- scroll reveal -------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* -------- reduced motion: silence everything -------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__dust { animation: none; }
  .s-fika.is-in .cup--big { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .rule { transform: scaleX(1); transition: none; }
  .hook__coat { transform: none; opacity: 1; transition: none; }
  .games__item:hover .games__icon { transform: none; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* pages added */
.footer__address{font-style:normal;text-align:center;max-width:64ch;margin:1.75rem auto 0;
  padding-top:1.25rem;border-top:1px solid currentColor;line-height:1.6;font-size:.82rem;opacity:.75}
.footer__address strong{display:block;margin-bottom:.35rem;letter-spacing:.02em;opacity:.95}
.footer__address a{color:inherit;text-decoration:underline}
.legal__nav{display:flex;flex-wrap:wrap;gap:.6rem 1.15rem;margin:2.75rem 0 0;padding-top:1.4rem;
  border-top:1px solid currentColor;font-size:.9rem;line-height:1.4}
.legal__nav a{color:inherit;text-decoration:underline;opacity:.85}
.legal__nav a:hover{opacity:1}

/* prices added */
.rate__amount{font-family:inherit;font-weight:700;font-size:1.4rem;line-height:1.1;margin:.2rem 0 .4rem}.rate__amount span,.rate__per{font-weight:400;font-size:.8rem;opacity:.7}

/* ---------- abstract hero: image left, text right, patterned borders (added) ---------- */
.hero--abstract {
  background:
    linear-gradient(rgba(246,242,236,.80), rgba(246,242,236,.90)),
    url('images/hero-abstract.webp') center / cover no-repeat;
}
.hero__pattern {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(var(--c-rule) 1.3px, transparent 1.3px);
  background-size: 22px 22px; opacity: .28;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%);
          mask-image: linear-gradient(180deg, #000, transparent 70%);
}
.hero--abstract .hero__grid { grid-template-columns: 0.95fr 1.05fr; }
.hero__frame { position: relative; margin: 0; padding: 14px; }
.hero__frame::before {
  content: ""; position: absolute; inset: 0; border: 2px dashed var(--c-a1); pointer-events: none;
}
.hero__frame::after {
  content: ""; position: absolute; inset: 7px; border: 1px solid var(--c-rule); pointer-events: none;
}
.hero__frame img {
  position: relative; display: block; width: 100%; border-radius: var(--r-card);
  box-shadow: 14px 14px 0 rgba(91,125,158,.18);
}
.hero__frame-tag {
  position: absolute; left: 22px; bottom: 22px; z-index: 2;
  font-family: var(--f-display); font-weight: 500; font-size: 12px; letter-spacing: .04em;
  color: var(--c-ink); background: rgba(246,242,236,.9);
  padding: 5px 10px; box-shadow: inset 0 0 0 1px var(--c-a1);
}
@media (max-width: 860px) {
  .hero--abstract .hero__grid { grid-template-columns: 1fr; }
  .hero--abstract .hero__media { order: -1; }
}

/* legal2 */
.lg__kicker{font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;opacity:.6;margin:0 0 .4rem}
.lg__lead{font-size:1.18rem;line-height:1.6;max-width:60ch;margin:0 0 2.4rem}
.lg h2,.lg h3{line-height:1.25}
.lg p{line-height:1.65;max-width:66ch}
/* list */
.lg--list .lg-list__sec{margin:0 0 2rem}
.lg--list h2{display:flex;align-items:baseline;gap:.6rem;font-size:1.25rem;margin:0 0 .8rem}
.lg-list__n{font-size:.8rem;opacity:.5;font-variant-numeric:tabular-nums}
.lg-list__ul{list-style:none;padding:0;margin:0;border-top:1px solid currentColor}
.lg-list__ul li{padding:.7rem 0 .7rem 1.4rem;border-bottom:1px solid;border-color:color-mix(in srgb,currentColor 18%,transparent);position:relative;line-height:1.6}
.lg-list__ul li::before{content:"";position:absolute;left:0;top:1.05rem;width:.5rem;height:.5rem;border:1px solid currentColor}
/* tiles */
.lg-tiles__grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}
.lg-tile{border:1px solid currentColor;padding:1.25rem 1.35rem}
.lg-tile h3{margin:0 0 .6rem;font-size:1.08rem}
.lg-tile p{margin:.5rem 0;font-size:.95rem}
@media(max-width:640px){.lg-tiles__grid{grid-template-columns:1fr}}
/* cards */
.lg--cards{display:flex;flex-direction:column;gap:1rem}
.lg-card{display:flex;gap:1.1rem;border:1px solid color-mix(in srgb,currentColor 30%,transparent);border-left:3px solid currentColor;padding:1.1rem 1.25rem}
.lg-card__badge{flex:0 0 auto;font-weight:700;font-size:.85rem;opacity:.6;padding-top:.15rem;white-space:nowrap}
.lg-card__body h3{margin:0 0 .5rem;font-size:1.1rem}
.lg-card__body p{margin:.4rem 0}
/* rules */
.lg--rules .lg-rule{padding:1.4rem 0;border-top:1px solid currentColor}
.lg--rules .lg-rule:first-child{border-top:2px solid currentColor}
.lg--rules h2{font-size:1.2rem;margin:0 0 .7rem;padding-left:1rem;border-left:4px solid currentColor}
.lg--rules p{margin:.5rem 0 .5rem 1rem}
/* panels */
.lg--panels{display:flex;flex-direction:column;gap:.6rem}
.lg-panel{display:flex;gap:1.4rem;align-items:flex-start;padding:1.5rem;background:color-mix(in srgb,currentColor 5%,transparent)}
.lg-panel__num{font-size:2.4rem;font-weight:800;line-height:1;opacity:.28;font-variant-numeric:tabular-nums}
.lg-panel__body h2{margin:0 0 .6rem;font-size:1.2rem}
.lg-panel__body p{margin:.45rem 0}
@media(max-width:560px){.lg-panel{flex-direction:column;gap:.5rem}}
/* def */
.lg--def .lg-def__row{display:grid;grid-template-columns:1fr 2fr;gap:1.5rem;padding:1.5rem 0;border-top:1px solid currentColor}
.lg--def h2{position:sticky;top:1rem;font-size:1.15rem;margin:0}
.lg--def .lg-def__desc p{margin:.4rem 0}
@media(max-width:640px){.lg--def .lg-def__row{grid-template-columns:1fr;gap:.5rem}.lg--def h2{position:static}}
