:root {
  --ink: #0c0c0d;
  --ink-2: #141415;
  --ink-3: #1d1d1f;
  --paper: #f4f1ea;
  --paper-2: #e9e4d9;
  --white: #ffffff;

  --text: #19191a;
  --text-muted: #5c5851;
  --text-inv: #eeebe5;
  --text-inv-muted: #a8a49c;

  --gold: #e7af07;
  --gold-hi: #ffc524;
  --gold-ink: #8a6500;
  --gold-soft: rgba(231, 175, 7, .14);

  --line: rgba(20, 20, 20, .12);
  --line-inv: rgba(255, 255, 255, .12);

  --font-display: "Barlow Condensed", "Arial Narrow", system-ui, sans-serif;
  --font-body: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --cut: 12px;
  --header-h: 72px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body { margin: 0; font-family: var(--font-body); font-size: 1.0625rem; line-height: 1.65; color: var(--text); background: var(--paper); -webkit-font-smoothing: antialiased; }
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3 { margin: 0; font-family: var(--font-display); font-weight: 700; line-height: 1.05; }
p { margin: 0 0 1em; }
ul, ol { margin: 0; padding: 0; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
::selection { background: var(--gold); color: var(--ink); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; } }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 200; background: var(--gold); color: var(--ink); padding: 10px 16px; font-weight: 700; text-decoration: none; }
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: 820px; }
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section--tight { padding: clamp(36px, 5vw, 56px) 0; }
.section--dark { background: var(--ink); color: var(--text-inv); }
.section--alt { background: var(--paper-2); }
.section--white { background: var(--white); }
.grid { display: grid; gap: clamp(16px, 2vw, 24px); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
@media (max-width: 1000px) { .grid-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 760px) { .grid-3 { grid-template-columns: minmax(0, 1fr); } .grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .grid-2 { grid-template-columns: minmax(0, 1fr); } }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: minmax(0, 1fr); } }

.h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); text-transform: uppercase; font-weight: 800; line-height: .98; }
.h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); text-transform: uppercase; font-weight: 800; }
.h3 { font-size: 1.4rem; text-transform: uppercase; }
.gold { color: var(--gold); }
.lead { font-size: clamp(1.1rem, 1.5vw, 1.25rem); line-height: 1.6; color: var(--text-muted); max-width: 60ch; }
.section--dark .lead, .page-hero .lead, .hero .lead { color: var(--text-inv-muted); }
.muted { color: var(--text-muted); }
.small { font-size: .94rem; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 16px 32px; flex-wrap: wrap; margin-bottom: clamp(24px, 3vw, 36px); }
.section-head .lead { margin: 12px 0 0; }
.label { font-family: var(--font-display); font-weight: 600; font-size: .9rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }

/* knapper */
.btn {
  --btn-bg: var(--gold); --btn-fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 11px 24px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; letter-spacing: .07em; text-transform: uppercase; text-decoration: none; white-space: nowrap;
  background: var(--btn-bg); color: var(--btn-fg); border: 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%);
  transition: background .2s var(--ease);
}
.btn:hover { --btn-bg: var(--gold-hi); }
.btn:focus-visible { outline: none; box-shadow: inset 0 0 0 3px var(--ink), inset 0 0 0 5px var(--gold-hi); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--dark { --btn-bg: var(--ink); --btn-fg: var(--white); }
.btn--dark:hover { --btn-bg: #2a2a2d; }
.btn--ghost { --btn-bg: transparent; --btn-fg: currentColor; box-shadow: inset 0 0 0 2px currentColor; clip-path: none; }
.btn--ghost:hover { --btn-bg: rgba(127, 127, 127, .12); }
.btn--sm { min-height: 40px; padding: 7px 16px; font-size: .98rem; --cut: 9px; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  letter-spacing: .07em; text-transform: uppercase; text-decoration: none; color: var(--gold-ink);
}
.section--dark .link-arrow, .page-hero .link-arrow { color: var(--gold); }
.link-arrow::after { content: "→"; transition: transform .2s var(--ease); }
.link-arrow:hover { text-decoration: underline; text-underline-offset: 4px; }
.link-arrow:hover::after { transform: translateX(3px); }

/* top */
.site-header { position: sticky; top: 0; z-index: 100; height: var(--header-h); background: var(--ink); color: var(--text-inv); border-bottom: 1px solid var(--line-inv); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; color: var(--white); flex: none; }
.brand img { width: 170px; height: auto; }
.primary-nav { margin-left: auto; height: 100%; }
.nav-list { list-style: none; display: flex; height: 100%; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px; height: 44px; padding: 0 13px; background: none; border: 0; text-decoration: none; position: relative;
  font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; letter-spacing: .07em; text-transform: uppercase; color: var(--text-inv); white-space: nowrap;
}
.nav-link svg { width: 12px; height: 12px; opacity: .7; transition: transform .2s; }
.nav-link::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .2s var(--ease); }
.nav-link:hover::after, .nav-item.is-active > .nav-link::after { transform: scaleX(1); }
.nav-item.is-open > .nav-link svg { transform: rotate(180deg); }
.nav-link--hl { color: var(--gold); }
.dropdown {
  position: absolute; left: 0; top: 100%; min-width: 230px; list-style: none; padding: 8px 0;
  background: var(--ink-2); border-top: 2px solid var(--gold); box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
  opacity: 0; visibility: hidden; transform: translateY(-4px); transition: opacity .15s, transform .15s var(--ease), visibility 0s .15s;
}
.nav-item.is-open > .dropdown { opacity: 1; visibility: visible; transform: none; transition: opacity .15s, transform .15s var(--ease), visibility 0s; }
.dropdown a { display: flex; justify-content: space-between; gap: 18px; padding: 10px 18px; text-decoration: none; color: var(--text-inv); white-space: nowrap; }
.dropdown a:hover, .dropdown a:focus-visible { background: rgba(255, 255, 255, .05); color: var(--gold); }
.dropdown small { color: var(--text-inv-muted); font-size: .88rem; }
.header-actions { display: flex; align-items: center; gap: 8px; flex: none; }
.icon-btn { width: 44px; height: 44px; display: none; place-items: center; border: 0; background: transparent; color: var(--text-inv); }
.icon-btn svg { width: 24px; height: 24px; }
@media (max-width: 1000px) {
  .primary-nav, .header-actions .btn { display: none; }
  .icon-btn { display: inline-grid; }
  .header-actions { margin-left: auto; }
}

.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99; background: var(--ink); color: var(--text-inv); overflow-y: auto; padding: 16px var(--gutter) 100px;
  opacity: 0; visibility: hidden; transition: opacity .2s, visibility 0s .2s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transition: opacity .2s, visibility 0s; }
.mm-group { border-bottom: 1px solid var(--line-inv); }
.mm-group > a, .mm-group > button {
  width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 16px 0; background: none; border: 0; text-decoration: none; text-align: left;
  font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; text-transform: uppercase; letter-spacing: .03em; color: var(--white);
}
.mm-group > a.is-hl { color: var(--gold); }
.mm-group > button svg { width: 18px; height: 18px; transition: transform .2s; }
.mm-group > button[aria-expanded="true"] svg { transform: rotate(180deg); }
.mm-sub { list-style: none; display: none; padding: 0 0 14px; }
.mm-group > button[aria-expanded="true"] + .mm-sub { display: block; }
.mm-sub a { display: flex; gap: 10px; align-items: baseline; padding: 9px 0 9px 16px; border-left: 2px solid var(--line-inv); text-decoration: none; font-size: 1.08rem; }
.mm-sub small { color: var(--text-inv-muted); }
.mobile-menu .btn { width: 100%; margin-top: 20px; }
body.menu-open { overflow: hidden; }

/* mobil */
.action-bar { display: none; }
@media (max-width: 760px) {
  .action-bar { display: grid; grid-template-columns: repeat(3, 1fr); position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: var(--ink); border-top: 1px solid var(--line-inv); padding-bottom: env(safe-area-inset-bottom); }
  .action-bar a { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 8px 4px 9px; text-decoration: none; color: var(--text-inv); font-family: var(--font-display); font-weight: 600; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }
  .action-bar svg { width: 21px; height: 21px; }
  .action-bar a.is-primary { background: var(--gold); color: var(--ink); }
  body { padding-bottom: 60px; }
}

/* forside */
.hero { background: var(--ink); color: var(--text-inv); overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 64px); align-items: center; padding-top: clamp(40px, 6vw, 72px); padding-bottom: clamp(48px, 7vw, 88px); }
.hero .h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); margin-bottom: 22px; }
.hero .lead { margin-bottom: 30px; }
.hero-photo { aspect-ratio: 4 / 5; max-height: 560px; width: 100%; overflow: hidden; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
@media (max-width: 860px) { .hero-inner { grid-template-columns: minmax(0, 1fr); } .hero-photo { aspect-ratio: 16 / 10; } }

.page-hero { background: var(--ink); color: var(--text-inv); border-bottom: 4px solid var(--gold); }
.page-hero-inner { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr); gap: clamp(24px, 4vw, 56px); align-items: center; padding-top: clamp(28px, 4vw, 48px); padding-bottom: clamp(36px, 5vw, 60px); }
.page-hero--noimg .page-hero-inner { grid-template-columns: minmax(0, 1fr); }
.page-hero .h1 { margin-bottom: 16px; }
.page-hero .lead { margin: 0; }
.page-hero .btn-row { margin-top: 26px; }
.page-hero-photo { aspect-ratio: 4 / 3; overflow: hidden; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%); }
.page-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 800px) { .page-hero-inner { grid-template-columns: minmax(0, 1fr); } .page-hero-photo { aspect-ratio: 16 / 9; } }
.crumbs { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; font-size: .92rem; color: var(--text-inv-muted); }
.crumbs li + li::before { content: "/"; margin-right: 6px; opacity: .5; }
.crumbs a { color: var(--text-inv-muted); text-decoration: none; }
.crumbs a:hover { color: var(--gold); }
.crumbs [aria-current] { color: var(--text-inv); }

/* kort */
.card { background: var(--white); display: flex; flex-direction: column; text-decoration: none; color: inherit; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%); }
a.card { transition: transform .2s var(--ease); }
a.card:hover { transform: translateY(-3px); }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-3); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card-body .h3 { margin-bottom: 6px; }
.card-body p { color: var(--text-muted); margin-bottom: 16px; }
.card-body .link-arrow { margin-top: auto; }
.card-meta { font-family: var(--font-display); font-weight: 600; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-ink); margin-bottom: 8px; }
.city-mini { border-top: 3px solid var(--gold); }
.city-mini .card-body { padding: 18px 18px 20px; }
.city-mini p { font-size: .96rem; margin-bottom: 14px; }

.badge { display: inline-flex; align-items: center; gap: 6px; padding: 3px 8px; font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; border-radius: 2px; }
.badge--open { background: rgba(63, 174, 90, .14); color: #237a3a; }
.badge--open::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge--appt { background: rgba(20, 20, 20, .07); color: var(--text-muted); }
.badge--freq { background: var(--gold-soft); color: var(--gold-ink); }

/* træningstider */
.sessions { list-style: none; }
.session { display: grid; grid-template-columns: 88px 104px minmax(0, 1fr); gap: 4px 14px; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--line); }
.session:last-child { border-bottom: 0; }
.session[hidden] { display: none; }
.session-day { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.session-time { font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; font-variant-numeric: tabular-nums; }
.session-what { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; }
.session-what strong { font-weight: 600; }
.session-city { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--gold-ink); }
@media (max-width: 560px) { .session { grid-template-columns: 78px minmax(0, 1fr); } .session-what { grid-column: 2; } }
.sessions--boxed { background: var(--white); padding: 4px 22px; }

.filters { position: sticky; top: var(--header-h); z-index: 20; background: rgba(244, 241, 234, .97); border-bottom: 1px solid var(--line); padding: 12px 0; }
.filters-inner { display: flex; flex-wrap: wrap; gap: 10px 28px; align-items: center; }
.filter-group { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.filter-label { font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; color: var(--text-muted); margin-right: 4px; }
.chip { min-height: 38px; padding: 6px 14px; border: 1px solid var(--line); background: var(--white); color: var(--text); font-family: var(--font-display); font-weight: 600; font-size: 1rem; letter-spacing: .05em; text-transform: uppercase; }
.chip:hover { border-color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--white); border-color: var(--ink); }
@media (max-width: 760px) {
  .filters { position: static; }
  .filter-group { flex-wrap: nowrap; overflow-x: auto; width: 100%; scrollbar-width: none; }
  .filter-group::-webkit-scrollbar { display: none; }
  .chip { flex: none; }
}
.city-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 900px) { .city-grid { grid-template-columns: minmax(0, 1fr); } }
.city-card { background: var(--white); display: flex; flex-direction: column; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%); }
.city-card[hidden] { display: none; }
.city-head { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 20px 22px 16px; background: var(--ink); color: var(--text-inv); border-left: 4px solid var(--gold); }
.city-head h2 { font-size: 2rem; text-transform: uppercase; font-weight: 800; }
.city-head h2 a { text-decoration: none; }
.city-head h2 a:hover { color: var(--gold); }
.city-head address { font-style: normal; color: var(--text-inv-muted); font-size: .96rem; line-height: 1.45; margin-top: 6px; }
.city-contact { font-size: .95rem; line-height: 1.6; }
.city-contact a { display: block; color: var(--text-inv); text-decoration: none; }
.city-contact a:hover { color: var(--gold); }
.city-contact small { color: var(--text-inv-muted); }
.city-body { padding: 4px 22px 8px; flex: 1; }
.city-body .session { grid-template-columns: 80px 100px minmax(0, 1fr); }
@media (max-width: 560px) { .city-body .session { grid-template-columns: 72px minmax(0, 1fr); } }
.city-foot { display: flex; gap: 20px; flex-wrap: wrap; padding: 10px 22px 22px; }
.city-empty { padding: 14px 0; color: var(--text-muted); font-style: italic; margin: 0; }
.no-results { padding: 32px; text-align: center; background: var(--white); color: var(--text-muted); }
.no-results[hidden] { display: none; }

.prices { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.price { background: var(--white); padding: 24px 24px 22px; border-top: 4px solid var(--gold); }
.price h3 { font-size: 1.5rem; text-transform: uppercase; }
.price .age { color: var(--text-muted); font-size: .96rem; }
.price .amount { font-family: var(--font-display); font-weight: 800; font-size: 3rem; line-height: 1; margin: 14px 0 2px; }
.price .amount small { font-size: 1.1rem; font-weight: 600; margin-left: 4px; }
.price .per { color: var(--text-muted); font-size: .95rem; }
.price-notes { list-style: none; margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px 28px; }
.price-notes li { display: flex; gap: 8px; align-items: center; font-size: .98rem; }
.price-notes svg { width: 18px; height: 18px; color: #2f9a4b; flex: none; }
@media (max-width: 700px) { .prices { grid-template-columns: minmax(0, 1fr); } }

.steps { list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; counter-reset: step; }
.step { padding-top: 18px; border-top: 2px solid var(--line); counter-increment: step; }
.step::before { content: counter(step); display: block; font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1; color: var(--gold-ink); margin-bottom: 10px; }
.step h3 { font-size: 1.35rem; text-transform: uppercase; margin-bottom: 6px; }
.step p { color: var(--text-muted); margin: 0; }
@media (max-width: 760px) { .steps { grid-template-columns: minmax(0, 1fr); } }

.prose { max-width: 68ch; font-size: 1.08rem; }
.prose > * { margin-top: 0; margin-bottom: 0; }
.prose > * + * { margin-top: 1em; }
.prose h2 { font-size: clamp(1.6rem, 2.6vw, 2rem); text-transform: uppercase; font-weight: 800; margin-top: 1.9em; }
.prose h3 { font-size: 1.3rem; text-transform: uppercase; margin-top: 1.5em; }
.prose > h2:first-child, .prose > h3:first-child { margin-top: 0; }
.prose ul { padding-left: 1.2em; }
.prose li { margin: .3em 0; }
.prose li::marker { color: var(--gold-ink); }
.prose a { color: var(--gold-ink); text-underline-offset: 3px; }
.prose .intro { font-size: 1.22rem; line-height: 1.55; font-weight: 500; }
.notice { display: flex; gap: 12px; padding: 14px 16px; background: var(--gold-soft); border-left: 3px solid var(--gold); font-size: .98rem; }
.notice svg { width: 20px; height: 20px; flex: none; color: var(--gold-ink); margin-top: 3px; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 40px 18px 0; position: relative; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; text-transform: uppercase; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 8px; top: 50%; width: 12px; height: 12px; border-right: 2px solid var(--gold-ink); border-bottom: 2px solid var(--gold-ink); transform: translateY(-70%) rotate(45deg); transition: transform .2s; }
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details > p { padding: 0 0 18px; color: var(--text-muted); margin: 0; max-width: 70ch; }

.people-groups { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 760px) { .people-groups { grid-template-columns: minmax(0, 1fr); } }
.people-groups h3 { font-size: .95rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted); font-weight: 600; margin-bottom: 8px; }
.people { list-style: none; }
.people li { padding: 7px 0; border-bottom: 1px solid var(--line); }
.people small { color: var(--text-muted); margin-left: 6px; }

.ladder { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.ladder li { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 13px 16px; background: var(--ink-3); color: var(--text-inv); border-left: 4px solid #444; }
.ladder b { font-family: var(--font-display); font-size: 1.25rem; text-transform: uppercase; letter-spacing: .03em; }
.ladder span { font-family: var(--font-display); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-inv-muted); }
.ladder .t-expert { border-left-color: #b5b5b5; }
.ladder .t-master, .ladder .t-grand { border-left-color: var(--gold); }

.kids { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 700px) { .kids { grid-template-columns: minmax(0, 1fr); } }
.kids-group { background: var(--white); padding: 18px 20px 20px; }
.kids-group h3 { font-size: 1.15rem; text-transform: uppercase; letter-spacing: .04em; }
.stripes { list-style: none; display: flex; gap: 8px; margin-top: 14px; }
.stripes li { flex: 1; text-align: center; font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--text-muted); }
.stripes i { display: block; height: 10px; margin-bottom: 6px; border-radius: 1px; }

/* kontakt */
.map-embed { position: relative; aspect-ratio: 4 / 3; background: var(--ink-2); overflow: hidden; }
.map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-load { position: absolute; inset: 0; width: 100%; display: grid; place-content: center; gap: 6px; text-align: center; padding: 24px; background: var(--ink-2); color: var(--text-inv); border: 0; }
.map-load svg { width: 32px; height: 32px; color: var(--gold); margin: 0 auto; }
.map-load span { color: var(--text-inv-muted); font-size: .92rem; }
.contact-lines { list-style: none; }
.contact-lines li { display: grid; grid-template-columns: 26px 1fr; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.contact-lines svg { width: 20px; height: 20px; color: var(--gold-ink); margin-top: 3px; }
.contact-lines a { font-weight: 600; text-decoration: none; }
.contact-lines a:hover { text-decoration: underline; }
.contact-lines small { display: block; color: var(--text-muted); font-size: .92rem; }
.contact-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
@media (max-width: 900px) { .contact-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .contact-cards { grid-template-columns: minmax(0, 1fr); } }
.contact-card { background: var(--white); padding: 20px 22px; border-top: 3px solid var(--ink); }
.contact-card h2 { font-size: 1.5rem; text-transform: uppercase; margin-bottom: 6px; }
.contact-card p { margin: 0 0 6px; font-size: .96rem; color: var(--text-muted); }
.contact-card a { display: block; font-weight: 600; text-decoration: none; padding: 2px 0; }
.contact-card a:hover { color: var(--gold-ink); }
.contact-card--dark { background: var(--ink); color: var(--text-inv); border-top-color: var(--gold); }
.contact-card--dark p { color: var(--text-inv-muted); }
.contact-card--dark a { color: var(--gold); }

/* medier */
.video-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 900px) { .video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .video-grid { grid-template-columns: minmax(0, 1fr); } }
.video-frame { position: relative; aspect-ratio: 16 / 9; background: #000; overflow: hidden; }
.video-frame button { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; padding: 0; background: none; }
.video-frame img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.video-frame button:hover img { opacity: 1; }
.play { position: absolute; left: 50%; top: 50%; width: 58px; height: 58px; transform: translate(-50%, -50%); background: var(--gold); display: grid; place-items: center; }
.play svg { width: 22px; height: 22px; color: var(--ink); margin-left: 3px; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; line-height: 1.35; padding: 10px 0 0; }
.video h3 small { display: block; color: var(--text-inv-muted); font-weight: 500; font-size: .9rem; }
.article-list { list-style: none; columns: 2; column-gap: 40px; }
@media (max-width: 760px) { .article-list { columns: 1; } }
.article-list li { break-inside: avoid; padding: 10px 0; border-bottom: 1px solid var(--line); }
.article-list a { font-weight: 600; text-decoration: none; }
.article-list a:hover { color: var(--gold-ink); text-decoration: underline; }
.article-list span { display: block; font-size: .92rem; color: var(--text-muted); }
.gallery-toggle summary { cursor: pointer; list-style: none; display: inline-flex; }
.gallery-toggle summary::-webkit-details-marker { display: none; }
.gallery-toggle[open] summary { margin-bottom: 20px; }
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; }
.gallery button { padding: 0; border: 0; background: var(--ink-3); aspect-ratio: 3 / 2; overflow: hidden; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gallery button:hover img { transform: scale(1.04); }
.lightbox { position: fixed; inset: 0; z-index: 300; background: rgba(8, 8, 9, .95); display: none; align-items: center; justify-content: center; padding: 60px 70px; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lightbox button { position: absolute; border: 0; background: rgba(255, 255, 255, .1); color: var(--white); width: 50px; height: 50px; display: grid; place-items: center; }
.lightbox button:hover { background: var(--gold); color: var(--ink); }
.lightbox button svg { width: 24px; height: 24px; }
.lb-close { top: 14px; right: 14px; }
.lb-prev { left: 12px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 12px; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) { .lightbox { padding: 60px 8px; } .lb-prev, .lb-next { top: auto; bottom: 10px; transform: none; } }

.cta-band { background: var(--gold); color: var(--ink); }
.cta-band-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px 40px; flex-wrap: wrap; padding-top: clamp(44px, 6vw, 72px); padding-bottom: clamp(44px, 6vw, 72px); }
.cta-band p { margin: 10px 0 0; font-size: 1.12rem; max-width: 52ch; }

/* footer */
.site-footer { background: var(--ink); color: var(--text-inv-muted); padding-top: clamp(48px, 6vw, 72px); font-size: .98rem; }
.footer-top { display: grid; grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr)); gap: 32px; padding-bottom: 44px; border-bottom: 1px solid var(--line-inv); }
.footer-brand img { width: 200px; }
.footer-brand p { margin: 18px 0; max-width: 32ch; }
.footer-col h2 { font-size: .95rem; letter-spacing: .14em; text-transform: uppercase; color: var(--white); margin-bottom: 12px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col li { padding: 3px 0; }
.footer-col a, .footer-bottom a { color: var(--text-inv-muted); text-decoration: none; }
.footer-col a:hover, .footer-bottom a:hover { color: var(--gold); }
.social { display: flex; gap: 8px; }
.social a { width: 40px; height: 40px; display: grid; place-items: center; background: var(--ink-3); color: var(--text-inv); }
.social a:hover { background: var(--gold); color: var(--ink); }
.social svg { width: 20px; height: 20px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding: 20px 0 26px; font-size: .9rem; }
@media (max-width: 900px) { .footer-top { grid-template-columns: repeat(3, minmax(0, 1fr)); } .footer-brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }

.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 40px; }
.mb-2 { margin-bottom: 24px; }

@media print {
  .site-header, .site-footer, .action-bar, .filters, .mobile-menu, .cta-band { display: none !important; }
  body { background: #fff; padding: 0; }
  .page-hero { background: #fff; color: #000; }
  .city-card { break-inside: avoid; clip-path: none; border: 1px solid #ccc; }
  .city-head { background: #fff; color: #000; }
  .city-contact a { color: #000; }
}
