/* Budapest Verified — alap stíluskészlet
   Szerkezet: 1) tokenek 2) alapok 3) elrendezés 4) fejléc 5) blokkok
   6) interaktív elemek 7) lábléc 8) töréspontok */

/* ---------- 1) tokenek ---------- */
:root {
  --ink: #11151c;
  --ink-deep: #0b0e13;
  --ink-soft: #1b2129;
  --paper: #f7f5f0;
  --paper-2: #efece4;
  --line: #ddd8cc;
  --line-dark: #2a313b;
  --text: #23282f;
  --text-mute: #5d6570;
  --text-inv: #e9e6df;
  --text-inv-mute: #9aa0a8;
  --gold: #a8863f;
  --gold-bright: #c2a05a;
  --shadow: 0 1px 2px rgba(17, 21, 28, .05), 0 8px 24px rgba(17, 21, 28, .06);
  --radius: 4px;
  --wrap: 1180px;
  --gap: clamp(1.25rem, 3vw, 2.5rem);
  --sp-section: clamp(3.25rem, 7vw, 6rem);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2) alapok ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font: 400 clamp(1rem, .96rem + .18vw, 1.075rem)/1.68 var(--sans);
  letter-spacing: .003em;
  overflow-wrap: break-word;
  text-rendering: optimizeLegibility;
}

body.is-locked { overflow: hidden; }

h1, h2, h3, h4 {
  margin: 0 0 .6em;
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.012em;
  color: var(--ink);
}

h1 { font-size: clamp(2rem, 1.35rem + 2.7vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 1.15rem + 1.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 1.03rem + .5vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p, ul, ol, dl, figure, table { margin: 0 0 1.15rem; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }

a { color: var(--gold); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--ink); }

strong { font-weight: 600; color: var(--ink); }
small { font-size: .875rem; }

img, svg, picture { max-width: 100%; height: auto; display: block; }

ul.list { list-style: none; padding: 0; }
ul.list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: .6rem;
}
ul.list li::before {
  content: "";
  position: absolute;
  left: .1rem;
  top: .62em;
  width: .55rem;
  height: .55rem;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

:where(a, button, summary, input, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--text-inv);
  padding: .7rem 1.1rem;
  z-index: 200;
}
.skip:focus { left: .5rem; top: .5rem; }

/* ---------- 3) elrendezés ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.25rem);
}

.section { padding-block: var(--sp-section); }
.section--tight { padding-block: clamp(2.25rem, 4.5vw, 3.5rem); }

.section--dark {
  background: var(--ink);
  color: var(--text-inv);
}
.section--dark :is(h1, h2, h3, h4) { color: #fff; }
.section--dark a:not(.btn) { color: var(--gold-bright); }
.section--dark a:not(.btn):hover { color: #fff; }
.section--dark .lead, .section--dark .muted { color: var(--text-inv-mute); }

.section--alt { background: var(--paper-2); }

.grid { display: grid; gap: var(--gap); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(15.5rem, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr)); }
.grid--split { grid-template-columns: minmax(0, 1fr); }

.stack > * + * { margin-top: 1.1rem; }
.center { text-align: center; }
.mt-l { margin-top: clamp(1.75rem, 4vw, 2.75rem); }
.mt-m { margin-top: 1.25rem; }
.h-lg { font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem); }
.acc__head { margin: 0; }

.eyebrow {
  display: block;
  margin-bottom: 1rem;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
}
.section--dark .eyebrow { color: var(--gold-bright); }

.lead {
  font-size: clamp(1.06rem, 1rem + .35vw, 1.25rem);
  line-height: 1.6;
  color: var(--text-mute);
}
.muted { color: var(--text-mute); }

.measure { max-width: 42rem; }
.measure-wide { max-width: 56rem; }

.rule {
  height: 1px;
  border: 0;
  background: var(--line);
  margin-block: clamp(2rem, 5vw, 3.25rem);
}
.section--dark .rule { background: var(--line-dark); }

/* ---------- 4) fejléc és navigáció ---------- */
.topbar {
  background: var(--ink-deep);
  color: var(--text-inv-mute);
  font-size: .8rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1.4rem;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding-block: .4rem;
}
.topbar a { color: var(--text-inv-mute); text-decoration: none; }
.topbar a:hover { color: var(--gold-bright); }
.topbar__badge {
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  padding: .05rem .4rem;
  font-weight: 600;
  letter-spacing: .06em;
}

.header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(17, 21, 28, .97);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
@supports (backdrop-filter: blur(6px)) {
  .header { background: rgba(17, 21, 28, .88); backdrop-filter: blur(10px); }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--gold-bright);
}
.brand__mark { width: 2.1rem; height: 2.1rem; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__name {
  font-family: var(--serif);
  font-size: 1.16rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: #fff;
}
.brand__sub {
  font-size: .62rem;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--text-inv-mute);
}

.nav { display: flex; align-items: center; gap: .15rem; }
.nav a {
  display: inline-block;
  padding: .5rem .68rem;
  color: var(--text-inv);
  font-size: .93rem;
  text-decoration: none;
  border-radius: var(--radius);
}
.nav a:hover { color: var(--gold-bright); background: rgba(255, 255, 255, .05); }
.nav a[aria-current="page"] {
  color: var(--gold-bright);
  box-shadow: inset 0 -2px 0 var(--gold);
}

.nav__more { position: relative; }
.nav__toggle {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem .68rem;
  font: inherit;
  font-size: .93rem;
  color: var(--text-inv);
  background: none;
  border: 0;
  cursor: pointer;
  border-radius: var(--radius);
}
.nav__toggle:hover { color: var(--gold-bright); background: rgba(255, 255, 255, .05); }
.nav__toggle.is-active { color: var(--gold-bright); }
.nav__toggle svg { width: .6rem; transition: transform .2s var(--ease); }
.nav__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.nav__panel {
  position: absolute;
  right: 0;
  top: calc(100% + .45rem);
  min-width: 14rem;
  padding: .4rem;
  background: var(--ink-soft);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .35);
  display: none;
}
.nav__panel[data-open] { display: block; }
.nav__panel a { display: block; padding: .55rem .7rem; }

.burger {
  display: none;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  background: none;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  cursor: pointer;
}
.burger span {
  display: block;
  width: 1.1rem;
  height: 1px;
  margin: .28rem auto;
  background: var(--text-inv);
  transition: transform .22s var(--ease), opacity .22s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(.29rem) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-.29rem) rotate(-45deg); }

/* ---------- 5) tartalmi blokkok ---------- */
.hero { position: relative; background: var(--ink); color: var(--text-inv); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 14, 19, .95) 0%, rgba(11, 14, 19, .78) 45%, rgba(11, 14, 19, .5) 100%);
}
.hero__inner {
  position: relative;
  padding-block: clamp(3.5rem, 9vw, 7.5rem);
}
.hero__inner > * { max-width: 44rem; }
.hero h1 { color: #fff; }
.hero p { color: #d7d3ca; }
.hero .lead { color: #cfcbc1; }

.page-head {
  background: var(--ink);
  color: var(--text-inv);
  padding-block: clamp(2.5rem, 6vw, 4.25rem);
}
.page-head h1 { color: #fff; margin-bottom: .35em; }
.page-head .lead { color: var(--text-inv-mute); max-width: 46rem; }

.crumbs { font-size: .82rem; color: var(--text-inv-mute); margin-bottom: 1rem; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: 0; }
.crumbs li + li::before { content: "/"; margin-right: .4rem; opacity: .5; }
.crumbs a { color: var(--text-inv-mute); text-decoration: none; }
.crumbs a:hover { color: var(--gold-bright); text-decoration: underline; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .82rem 1.5rem;
  min-height: 2.9rem;
  font: 600 .93rem/1 var(--sans);
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gold);
  color: #14181f;
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.btn:hover { background: var(--gold-bright); border-color: var(--gold-bright); color: #10141a; }
.btn--ghost { background: transparent; color: var(--gold-bright); }
.btn--ghost:hover { background: rgba(194, 160, 90, .12); color: #fff; }
.btn--dark { background: var(--ink); border-color: var(--ink); color: var(--text-inv); }
.btn--dark:hover { background: var(--ink-soft); border-color: var(--ink-soft); color: #fff; }
.btn--line { background: transparent; border-color: var(--line); color: var(--ink); }
.btn--line:hover { border-color: var(--ink); background: transparent; color: var(--ink); }
.btn--sm { padding: .55rem 1rem; min-height: 2.4rem; font-size: .82rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.card__body { padding: clamp(1.25rem, 2.5vw, 1.75rem); display: flex; flex-direction: column; flex: 1; }
.card__body > :last-child { margin-top: auto; padding-top: 1rem; }
.card h3 { margin-bottom: .45rem; }
.card__meta {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.card--flat { background: transparent; border-color: var(--line); }
.section--dark .card {
  background: var(--ink-soft);
  border-color: var(--line-dark);
  color: var(--text-inv);
}
.section--dark .card p { color: var(--text-inv-mute); }

.tile {
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.section--dark .tile { background: var(--ink-soft); border-color: var(--line-dark); }
.tile__num {
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .5rem;
}

.media {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
}
.media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.media--wide img { aspect-ratio: 16 / 9; }
figure.media figcaption {
  padding: .7rem 1rem;
  font-size: .84rem;
  color: var(--text-inv-mute);
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
}

.gallery { display: grid; gap: .9rem; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); }
.gallery__item {
  position: relative;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--ink-deep);
  overflow: hidden;
  cursor: zoom-in;
  text-align: left;
  color: var(--text-inv);
  font: inherit;
}
.gallery__item img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.gallery__item:hover img { transform: scale(1.03); opacity: .85; }
.gallery__cap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .7rem .9rem;
  font-size: .86rem;
  border-top: 1px solid var(--line-dark);
}
.gallery__cap span:last-child { color: var(--gold-bright); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; }

.info-list { margin: 0; }
.info-list div {
  display: flex;
  flex-wrap: wrap;
  gap: .2rem 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
}
.info-list div:first-child { border-top: 1px solid var(--line); }
.info-list dt {
  flex: 0 0 9.5rem;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding-top: .15rem;
}
.info-list dd { margin: 0; flex: 1 1 12rem; }
.section--dark .info-list div { border-color: var(--line-dark); }
.section--dark .info-list dt { color: var(--text-inv-mute); }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
table.data caption {
  text-align: left;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-mute);
  padding-bottom: .6rem;
}
table.data th, table.data td {
  padding: .7rem .85rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.data thead th {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mute);
  border-bottom-color: var(--ink);
}
table.data tbody tr:last-child td { border-bottom: 0; }
.section--dark table.data th, .section--dark table.data td { border-color: var(--line-dark); }

.note {
  padding: 1.1rem 1.25rem;
  border-left: 2px solid var(--gold);
  background: var(--paper-2);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .96rem;
}
.section--dark .note { background: var(--ink-soft); color: var(--text-inv-mute); }

.legal { max-width: 48rem; }
.legal h2 { margin-top: 2.4rem; }
.legal h3 { margin-top: 1.7rem; }
.legal ol { padding-left: 1.3rem; }
.legal li { margin-bottom: .5rem; }
.legal .meta-line {
  font-size: .85rem;
  color: var(--text-mute);
  padding-bottom: 1.25rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.toc {
  padding: 1.25rem 1.4rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 2.25rem;
}
.toc p { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-mute); margin-bottom: .7rem; }
.toc ol { margin: 0; padding-left: 1.2rem; font-size: .95rem; }
.toc li { margin-bottom: .35rem; }

/* ---------- 6) interaktív elemek ---------- */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__btn {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem .25rem;
  font: 600 1.02rem/1.4 var(--serif);
  text-align: left;
  color: var(--ink);
  background: none;
  border: 0;
  cursor: pointer;
}
.acc__btn:hover { color: var(--gold); }
.acc__ico {
  position: relative;
  flex: none;
  width: 1.05rem;
  height: 1.05rem;
  margin-top: .22rem;
}
.acc__ico::before, .acc__ico::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 1px;
  background: var(--gold);
  transition: transform .22s var(--ease);
}
.acc__ico::after { transform: rotate(90deg); }
.acc__btn[aria-expanded="true"] .acc__ico::after { transform: rotate(0); }
.acc__panel { display: none; padding: 0 .25rem 1.35rem; }
.acc__panel[data-open] { display: block; }
.acc__panel > p { color: var(--text-mute); }
.section--dark .acc, .section--dark .acc__item { border-color: var(--line-dark); }
.section--dark .acc__btn { color: #fff; }
.section--dark .acc__btn:hover { color: var(--gold-bright); }

.tabs { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem; }
.tabs button {
  padding: .6rem 1.1rem;
  font: 600 .85rem/1 var(--sans);
  letter-spacing: .04em;
  color: var(--text-mute);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  transition: color .18s var(--ease), border-color .18s var(--ease);
}
.tabs button:hover { color: var(--ink); border-color: var(--text-mute); }
.tabs button[aria-selected="true"] {
  color: #14181f;
  background: var(--gold);
  border-color: var(--gold);
}
.tabpanel[hidden] { display: none; }

.overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.1rem;
  background: rgba(8, 10, 14, .82);
}
.overlay[data-open] { display: flex; }
@supports (backdrop-filter: blur(3px)) {
  .overlay[data-open] { backdrop-filter: blur(3px); }
}

.modal {
  width: 100%;
  max-width: 32rem;
  max-height: calc(100dvh - 2.2rem);
  overflow-y: auto;
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}
.modal h2 { font-size: clamp(1.35rem, 1.1rem + 1vw, 1.75rem); }
.modal__mark { width: 2.6rem; color: var(--gold); margin-bottom: 1rem; }
.modal__close {
  float: right;
  width: 2.2rem;
  height: 2.2rem;
  margin: -.5rem -.5rem 0 0;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--text-mute);
  background: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}
.modal__close:hover { color: var(--ink); border-color: var(--ink); }
.modal .btn-row { margin-top: 1.5rem; }
.modal--wide { max-width: 44rem; }

.gate .modal { max-width: 30rem; text-align: center; }
.gate .modal__mark { margin-inline: auto; }
.gate .btn-row { justify-content: center; }
.gate__deny { display: none; }
.gate[data-denied] .gate__ask { display: none; }
.gate[data-denied] .gate__deny { display: block; }

.lightbox .modal {
  max-width: 62rem;
  padding: .6rem;
  background: var(--ink);
  border-color: var(--line-dark);
}
.lightbox img { width: 100%; border-radius: 2px; }
.lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem .6rem .25rem;
  font-size: .88rem;
  color: var(--text-inv-mute);
}

.cookiebar {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 110;
  width: min(58rem, calc(100% - 1.6rem));
  display: none;
  gap: 1.1rem;
  align-items: center;
  padding: 1.1rem 1.25rem;
  background: var(--ink);
  color: var(--text-inv);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .35);
  font-size: .92rem;
}
.cookiebar[data-open] { display: flex; flex-wrap: wrap; }
.cookiebar p { flex: 1 1 20rem; margin: 0; color: var(--text-inv-mute); }
.cookiebar a { color: var(--gold-bright); }

.floating-note {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .84rem;
  color: var(--text-mute);
}
.badge-18 {
  display: inline-grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  flex: none;
  font: 700 .68rem/1 var(--sans);
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.cta {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.75rem, 4vw, 3rem);
  background: var(--ink);
  color: var(--text-inv);
  border-radius: var(--radius);
  border: 1px solid var(--line-dark);
}
.cta h2 { color: #fff; margin-bottom: .4rem; }
.cta p { color: var(--text-inv-mute); }

/* ---------- 7) lábléc ---------- */
.footer {
  background: var(--ink-deep);
  color: var(--text-inv-mute);
  font-size: .93rem;
  padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem;
}
.footer h2, .footer h3 {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-inv);
  margin-bottom: 1rem;
}
.footer__grid { display: grid; gap: clamp(1.75rem, 4vw, 2.75rem); grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: .55rem; }
.footer a { color: var(--text-inv-mute); text-decoration: none; }
.footer a:hover { color: var(--gold-bright); text-decoration: underline; }
.footer address { font-style: normal; margin-bottom: 1rem; }
.footer .brand { margin-bottom: 1rem; }
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  margin-top: clamp(2rem, 5vw, 3rem);
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, .09);
  font-size: .84rem;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: .5rem 1.1rem; }

/* ---------- 8) töréspontok ---------- */
@media (min-width: 62rem) {
  .grid--split { grid-template-columns: 1.05fr .95fr; align-items: center; }
  .grid--split--wide { grid-template-columns: 1.3fr .7fr; }
  .cta { grid-template-columns: 1.4fr auto; }
  .gallery--feature { grid-template-columns: 2fr 1fr 1fr; }
  .gallery--feature > :first-child { grid-row: span 2; }
  .gallery--feature > :first-child img { aspect-ratio: 1 / 1; }
}

@media (max-width: 61.99rem) {
  .nav {
    position: fixed;
    inset: 0 0 auto;
    top: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 100dvh;
    overflow-y: auto;
    padding: 5rem 1.25rem 2rem;
    background: var(--ink-deep);
    transform: translateY(-100%);
    visibility: hidden;
    transition: transform .28s var(--ease), visibility .28s;
  }
  .nav[data-open] { transform: translateY(0); visibility: visible; }
  .nav a, .nav__toggle {
    width: 100%;
    padding: .95rem .5rem;
    font-size: 1.02rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    border-radius: 0;
  }
  .nav a[aria-current="page"] { box-shadow: none; }
  .nav__more { width: 100%; }
  .nav__toggle { justify-content: space-between; }
  .nav__panel {
    position: static;
    min-width: 0;
    margin: 0;
    padding: 0 0 0 .9rem;
    background: none;
    border: 0;
    box-shadow: none;
  }
  .nav__panel a { font-size: .95rem; color: var(--text-inv-mute); }
  .burger { display: block; position: relative; z-index: 95; }
  .info-list dt { flex-basis: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .gallery__item:hover img { transform: none; }
}

@media print {
  .header, .topbar, .footer, .cookiebar, .overlay, .btn-row { display: none !important; }
  body { background: #fff; color: #000; }
}
