/* ============================================================
   E-EXIT — Emergency Exit Escape Rooms Budapest
   Statikus oldal — "Emergency Exit" dizájnkoncepció
   Sötét, feszült, mozis hangulat + vészkijárat-zöld akcent
   ============================================================ */

/* ---------- Fontok ---------- */
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Oswald:wght@400;500;600;700&family=Barlow:ital,wght@0,400;0,500;0,600;1,400&family=Space+Mono:wght@400;700&display=swap");

/* ---------- Design tokenek ---------- */
:root {
  --bg: #0a0b0a;
  --bg-2: #0f1210;
  --panel: #141815;
  --panel-2: #1b201c;
  --line: #2a302b;
  --line-soft: #20261f;

  --exit: #8dc63f; /* E-Exit márka-zöld */
  --exit-hi: #a6e04a; /* világosabb zöld */
  --exit-deep: #5f8f28;
  --exit-glow: rgba(141, 198, 63, 0.35);

  --danger: #e5484d; /* "lezárva", feszültség */
  --gold: #d9b45a; /* díjak */

  --ink: #eef2ea;
  --muted: #9aa39a;
  --faint: #6b746b;

  --ff-display: "Anton", "Oswald", Impact, sans-serif;
  --ff-head: "Oswald", "Barlow", sans-serif;
  --ff-body: "Barlow", system-ui, sans-serif;
  --ff-mono: "Space Mono", ui-monospace, monospace;

  --maxw: 1240px;
  --radius: 4px;
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
ul {
  list-style: none;
}
::selection {
  background: var(--exit);
  color: #08170a;
}

/* Grain / vászon-textúra overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Segéd ---------- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--exit);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--exit);
}
.section {
  padding: 110px 0;
  position: relative;
}
.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0.35em 0 0.3em;
}
.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 56ch;
}
.tape {
  height: 14px;
  width: 100%;
  background: repeating-linear-gradient(
    -45deg,
    var(--exit) 0 22px,
    #0c0d0c 22px 44px
  );
  opacity: 0.9;
}

/* ---------- Utility bar ---------- */
.topbar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
}
.topbar .wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 38px;
}
.topbar a {
  color: var(--muted);
  transition: color 0.2s;
}
.topbar a:hover {
  color: var(--exit);
}
.topbar .tb-left {
  display: flex;
  gap: 22px;
  align-items: center;
}
.topbar .tb-left .dot {
  color: var(--exit);
}
.topbar .tb-left .addr {
  color: var(--faint);
}
@media (max-width: 720px) {
  .topbar .tb-left span.addr {
    display: none;
  }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 11, 10, 0.72);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line-soft);
  transition:
    background 0.3s,
    border-color 0.3s;
}
.site-header.scrolled {
  background: rgba(10, 11, 10, 0.94);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 40px;
  width: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav a {
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--exit);
  transition: width 0.28s var(--ease);
}
.nav a:hover {
  color: var(--exit);
}
.nav a:hover::after {
  width: 100%;
}
.nav-language {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}
.nav-language a,
.nav-language span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  padding: 5px 8px;
  border-radius: 3px;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.nav-language a::after {
  display: none;
}
.nav-language .active {
  background: var(--exit);
  color: #08170a;
}
.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--exit);
  border: 1px solid var(--exit);
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: 0.25s;
  white-space: nowrap;
}
.header-cta:hover {
  background: var(--exit);
  color: #08170a;
  box-shadow: 0 0 24px var(--exit-glow);
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: 0.3s;
}
@media (max-width: 900px) {
  .nav,
  .header-cta {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav.open {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
  }
  .nav.open a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-soft);
    width: 100%;
  }
  .nav.open .nav-language {
    width: 100%;
    padding: 14px 0 0;
    margin-top: 8px;
    border-left: 0;
    border-top: 1px solid var(--line-soft);
  }
  .nav.open .nav-language a {
    width: auto;
    padding: 5px 8px;
    border-bottom: 0;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      120% 90% at 80% -10%,
      rgba(141, 198, 63, 0.1),
      transparent 55%
    ),
    radial-gradient(
      80% 70% at 15% 110%,
      rgba(141, 198, 63, 0.06),
      transparent 60%
    ),
    var(--bg);
}
.hero::before {
  /* rács */
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(
    120% 80% at 60% 30%,
    #000 20%,
    transparent 75%
  );
  mask-image: radial-gradient(120% 80% at 60% 30%, #000 20%, transparent 75%);
}
.hero .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-tag {
  margin-bottom: 26px;
}
.hero h1 {
  font-family: var(--ff-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(3rem, 10vw, 8.2rem);
  line-height: 0.86;
  letter-spacing: 0.005em;
  margin-bottom: 26px;
}
.hero h1 .glow {
  color: var(--exit);
  text-shadow: 0 0 44px var(--exit-glow);
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero-meta {
  display: flex;
  gap: 30px;
  margin-top: 56px;
  flex-wrap: wrap;
  font-family: var(--ff-mono);
  font-size: 0.8rem;
  color: var(--faint);
  letter-spacing: 0.05em;
}
.hero-meta b {
  color: var(--ink);
  font-size: 1.7rem;
  display: block;
  font-weight: 700;
}
.hero-meta .mi {
  border-left: 2px solid var(--exit);
  padding-left: 14px;
}

/* Vészkijárat futó-ember jelzés a hero jobb szélén */
.exit-sign {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: min(30vw, 360px);
  opacity: 0.14;
  color: var(--exit);
  pointer-events: none;
}
@media (max-width: 900px) {
  .exit-sign {
    display: none;
  }
}

/* ---------- Gombok ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 15px 30px;
  border-radius: var(--radius);
  transition: 0.25s var(--ease);
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--exit);
  color: #08170a;
  box-shadow: 0 6px 30px -8px var(--exit-glow);
}
.btn-primary:hover {
  background: var(--exit-hi);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px var(--exit-glow);
}
.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--exit);
  color: var(--exit);
}
.btn .arrow {
  transition: transform 0.25s;
}
.btn:hover .arrow {
  transform: translateX(4px);
}

/* ---------- Szobák ---------- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 26px;
}
.room {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.35s var(--ease);
}
.room:hover {
  border-color: var(--exit);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -30px #000;
}
.room-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.room-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: saturate(1.05) contrast(1.02);
}
.room:hover .room-media img {
  transform: scale(1.06);
}
.room-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--panel) 4%, transparent 55%);
}
.room-timer {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--ff-mono);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--exit);
  background: rgba(8, 10, 8, 0.78);
  border: 1px solid var(--exit-deep);
  padding: 5px 11px;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}
.room-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  background: rgba(8, 10, 8, 0.78);
  border: 1px solid var(--line);
  color: var(--muted);
  backdrop-filter: blur(4px);
}
.room-badge.new {
  color: var(--exit);
  border-color: var(--exit-deep);
}
.room-badge.closed {
  color: var(--danger);
  border-color: #5c2427;
}
.room-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
  z-index: 1;
  margin-top: -30px;
}
.room-body h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 1.9rem;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 12px;
}
.room-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  color: var(--faint);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
.room-specs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.room-specs b {
  color: var(--ink);
  font-weight: 700;
}
.room-specs svg {
  width: 14px;
  height: 14px;
  color: var(--exit);
  flex: none;
}
.room-desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
  flex: 1;
}
.room-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.award {
  font-family: var(--ff-mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid #4a4126;
  background: rgba(217, 180, 90, 0.06);
  padding: 4px 8px;
  border-radius: 3px;
}
.room-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.room-actions .btn {
  padding: 12px 22px;
  font-size: 0.82rem;
}
.room.is-closed {
  opacity: 0.72;
}
.room.is-closed .room-media img {
  filter: grayscale(0.8) brightness(0.7);
}

/* ---------- Feature / Miért ---------- */
.why {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  overflow: hidden;
}
.feature {
  background: var(--bg-2);
  padding: 34px 28px;
  transition: background 0.3s;
}
.feature:hover {
  background: var(--panel);
}
.feature .fnum {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--exit);
  letter-spacing: 0.1em;
}
.feature h4 {
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.15rem;
  margin: 14px 0 10px;
}
.feature p {
  color: var(--muted);
  font-size: 0.93rem;
}

/* ---------- Info: nyitvatartás + helyszínek ---------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
@media (max-width: 820px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}
.info-card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 34px 32px;
}
.info-card h3 {
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.25rem;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-card h3 svg {
  width: 20px;
  height: 20px;
  color: var(--exit);
}
.hours {
  font-family: var(--ff-mono);
  font-size: 0.9rem;
}
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  border-bottom: 1px dashed var(--line-soft);
  color: var(--muted);
}
.hours li b {
  color: var(--ink);
  font-weight: 700;
}
.hours li.today {
  color: var(--exit);
}
.hours li.today b {
  color: var(--exit);
}
.loc {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
}
.loc:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.loc .lname {
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--exit);
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.loc .laddr {
  color: var(--ink);
  font-size: 1.02rem;
}
.loc .lrooms {
  color: var(--faint);
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  margin-top: 6px;
  letter-spacing: 0.03em;
}
.price-note {
  margin-top: 26px;
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  color: var(--faint);
  letter-spacing: 0.03em;
  line-height: 1.7;
}
.price-note .warn {
  color: var(--danger);
}

/* ---------- CTA sáv ---------- */
.cta-band {
  position: relative;
  text-align: center;
  padding: 96px 0;
  background:
    radial-gradient(
      90% 120% at 50% 0%,
      rgba(141, 198, 63, 0.1),
      transparent 60%
    ),
    var(--bg);
}
.cta-band h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2rem, 6vw, 4.2rem);
  line-height: 0.95;
  margin-bottom: 20px;
}
.cta-band p {
  color: var(--muted);
  max-width: 48ch;
  margin: 0 auto 34px;
  font-size: 1.08rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #070807;
  border-top: 1px solid var(--line-soft);
  padding: 64px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 48px;
}
@media (max-width: 820px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}
.foot-brand img {
  height: 40px;
  margin-bottom: 16px;
}
.foot-brand p {
  color: var(--faint);
  font-size: 0.9rem;
  max-width: 30ch;
}
.foot-col h5 {
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  color: var(--exit);
  margin-bottom: 16px;
}
.foot-col a,
.foot-col span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 5px 0;
  transition: color 0.2s;
}
.foot-col a:hover {
  color: var(--exit);
}
.foot-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  color: var(--faint);
  letter-spacing: 0.04em;
}
.szechenyi {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--faint);
}
.szechenyi b {
  color: var(--muted);
}

/* ---------- Belépő animáció ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}
[data-reveal].in {
  opacity: 1;
  transform: none;
}
[data-reveal][data-d="1"] {
  transition-delay: 0.08s;
}
[data-reveal][data-d="2"] {
  transition-delay: 0.16s;
}
[data-reveal][data-d="3"] {
  transition-delay: 0.24s;
}
[data-reveal][data-d="4"] {
  transition-delay: 0.32s;
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ============================================================
   Aloldalak: szoba-részletek, szöveges oldalak, kapcsolat, ajándék
   ============================================================ */

/* Aloldal fejléc-eltolás (nincs teljes hero) */
.page-top {
  padding-top: 60px;
}

/* Breadcrumb */
.crumb {
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--faint);
  margin-bottom: 26px;
}
.crumb a {
  color: var(--muted);
}
.crumb a:hover {
  color: var(--exit);
}
.crumb .sep {
  margin: 0 8px;
  color: var(--line);
}

/* ---- Szoba-részlet hero ---- */
.room-hero {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.room-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.03);
}
.room-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--bg) 6%,
    rgba(10, 11, 10, 0.35) 55%,
    rgba(10, 11, 10, 0.65) 100%
  );
}
.room-hero .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 44px;
  padding-top: 120px;
}
.room-hero .rh-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.rh-badges .b {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 6px 12px;
  border-radius: 3px;
  background: rgba(8, 10, 8, 0.7);
  border: 1px solid var(--exit-deep);
  color: var(--exit);
  backdrop-filter: blur(4px);
}
.room-hero h1 {
  font-family: var(--ff-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 0.9;
}
.room-hero .rh-specs {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 18px;
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.room-hero .rh-specs b {
  color: var(--exit);
}

/* ---- Szoba-részlet törzs ---- */
.room-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .room-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
.prose {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}
.prose p {
  margin-bottom: 1.15em;
}
.prose h2 {
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
  font-size: 1.5rem;
  margin: 1.6em 0 0.6em;
}
.prose strong,
.prose b {
  color: var(--ink);
}
.prose .lead {
  font-size: 1.2rem;
  color: var(--ink);
  border-left: 3px solid var(--exit);
  padding-left: 20px;
  margin-bottom: 1.6em;
}

.awards-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.awards-list li {
  font-family: var(--ff-mono);
  font-size: 0.82rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
}
.awards-list li::before {
  content: "★";
  color: var(--gold);
}

/* Sticky sidebar */
.room-side {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.side-card {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 26px 24px;
}
.side-card h3 {
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 1.05rem;
  margin-bottom: 16px;
}
.spec-rows {
  font-family: var(--ff-mono);
  font-size: 0.84rem;
}
.spec-rows li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line-soft);
  color: var(--muted);
}
.spec-rows li b {
  color: var(--ink);
  text-align: right;
}
.spec-rows li:last-child {
  border-bottom: 0;
}
.price-table {
  font-family: var(--ff-mono);
  font-size: 0.84rem;
  margin-top: 4px;
}
.price-table li {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  color: var(--muted);
  border-bottom: 1px dashed var(--line-soft);
}
.price-table li b {
  color: var(--exit);
}
.side-card .btn {
  width: 100%;
  margin-top: 6px;
}
.side-note {
  font-family: var(--ff-mono);
  font-size: 0.7rem;
  color: var(--faint);
  letter-spacing: 0.03em;
  line-height: 1.7;
  margin-top: 12px;
}
.side-note .warn {
  color: var(--danger);
}

/* ---- Általános szöveges oldal (jogi) ---- */
.page-head {
  max-width: 820px;
  margin-bottom: 44px;
}
.page-head h1 {
  font-family: var(--ff-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 0.95;
  margin: 0.3em 0;
}
.doc {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.85;
}
.doc h2 {
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
  font-size: 1.4rem;
  margin: 1.8em 0 0.5em;
}
.doc h3 {
  font-family: var(--ff-head);
  color: var(--exit);
  font-size: 1.05rem;
  margin: 1.4em 0 0.4em;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.doc p {
  margin-bottom: 1.1em;
}
.doc ul {
  margin: 0 0 1.2em;
  padding-left: 0;
}
.doc ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 0.55em;
}
.doc ul li::before {
  content: "›";
  position: absolute;
  left: 8px;
  color: var(--exit);
  font-weight: 700;
}
.doc strong {
  color: var(--ink);
}
.doc a {
  color: var(--exit);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.doc .updated {
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  color: var(--faint);
  letter-spacing: 0.05em;
  margin-bottom: 2em;
}
.doc table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0 1.6em;
  font-size: 0.94rem;
}
.doc td,
.doc th {
  border: 1px solid var(--line-soft);
  padding: 10px 14px;
  text-align: left;
}
.doc th {
  background: var(--panel);
  color: var(--ink);
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
}

/* ---- Kapcsolat oldal ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
@media (max-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.map-embed {
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  overflow: hidden;
  min-height: 360px;
  background: var(--panel);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.3) invert(0.9) hue-rotate(180deg) contrast(0.9);
}
.contact-lines a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink);
  font-size: 1.05rem;
  transition: color 0.2s;
}
.contact-lines a:hover {
  color: var(--exit);
}
.contact-lines .ic {
  width: 34px;
  height: 34px;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid var(--exit-deep);
  border-radius: 6px;
  color: var(--exit);
}

/* ---- Ajándékkártya oldal ---- */
.gift-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.gift-card-item {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 28px 24px;
  text-align: center;
  transition: 0.3s var(--ease);
}
.gift-card-item:hover {
  border-color: var(--exit);
  transform: translateY(-4px);
}
.gift-card-item .g-amt {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  color: var(--exit);
  line-height: 1;
}
.gift-card-item .g-label {
  font-family: var(--ff-mono);
  font-size: 0.76rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 8px;
}

/* Kapcsolódó szobák szekció aloldalon */
.related {
  border-top: 1px solid var(--line-soft);
  background: var(--bg-2);
}

/* Térkép tartalék-link */
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.2s;
}
.map-link:hover {
  color: var(--exit);
}

/* ---------- Easy!Appointments foglalási oldal ---------- */
.booking-shell {
  background: var(--panel);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  overflow: hidden;
  min-height: 520px;
}
.booking-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-2);
}
.booking-toolbar p {
  margin: 0;
  color: var(--muted);
}
.booking-selected {
  font-family: var(--ff-mono);
  font-size: 0.78rem;
  color: var(--exit);
  letter-spacing: 0.04em;
}
.booking-frame {
  display: block;
  width: 100%;
  min-height: 900px;
  border: 0;
  background: #fff;
}
.booking-loading,
.booking-fallback {
  padding: 72px 28px;
  text-align: center;
}
.booking-loading {
  font-family: var(--ff-mono);
  color: var(--muted);
}
.booking-fallback h2 {
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.booking-fallback p {
  max-width: 58ch;
  margin: 0 auto 24px;
  color: var(--muted);
}
.booking-fallback .hero-actions {
  justify-content: center;
}
.booking-help {
  margin-top: 22px;
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  color: var(--faint);
  line-height: 1.7;
}
@media (max-width: 700px) {
  .booking-frame {
    min-height: 1050px;
  }
  .booking-toolbar {
    align-items: flex-start;
  }
  .booking-toolbar .btn {
    width: 100%;
  }
}

/* Kis kijelzőn a felső sáv ne törje szét a fejlécet. */
@media (max-width: 560px) {
  .topbar .tb-left {
    gap: 10px;
  }
  .topbar .tb-left a:nth-of-type(2) {
    display: none;
  }
  .topbar .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
  .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }
  .section {
    padding: 78px 0;
  }
}

/* Központi konfigurációból működő változat */
.btn.is-disabled,
.nav a.is-disabled {
  opacity: 0.48;
  cursor: not-allowed;
  pointer-events: none;
}
.room-map {
  margin-top: 20px;
}
.room-map .map-embed {
  min-height: 300px;
}
.room-map .map-embed iframe {
  min-height: 300px;
}
.config-note {
  font-family: var(--ff-mono);
  font-size: 0.72rem;
  color: var(--faint);
  margin-top: 10px;
  line-height: 1.55;
}
.price-table li {
  gap: 18px;
  align-items: flex-start;
}
.price-table li b {
  text-align: right;
}
@media (max-width: 470px) {
  .price-table li {
    flex-direction: column;
    gap: 2px;
  }
  .price-table li b {
    text-align: left;
  }
}

/* Központi, minden oldal alján megjelenő árlista */
.bottom-prices {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  padding: 58px 0;
}
.bottom-prices-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 64px;
  align-items: start;
}
.bottom-prices h2 {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 8px 0 12px;
}
.bottom-prices p {
  color: var(--muted);
  margin: 0;
  max-width: 42ch;
}
.bottom-prices .price-table {
  margin: 0;
}
.bottom-prices .price-table li {
  display: block;
  padding: 11px 0;
}
.bottom-prices .price-table li span,
.bottom-prices .price-table li b {
  display: block;
  text-align: left;
}
.bottom-prices .price-table li b {
  margin-top: 3px;
}
.price-values {
  min-height: 1.6em;
}
.currency-switch {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 16px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--panel);
}
.currency-switch button {
  min-width: 62px;
  padding: 7px 12px;
  border-radius: 3px;
  font-family: var(--ff-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition:
    background 0.2s,
    color 0.2s;
}
.currency-switch button:hover {
  color: var(--exit);
}
.currency-switch button.active {
  background: var(--exit);
  color: #08170a;
}
.bottom-price-note {
  margin-top: 18px !important;
  font-family: var(--ff-mono);
  font-size: 0.78rem;
}
@media (max-width: 760px) {
  .bottom-prices-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .bottom-prices {
    padding: 44px 0;
  }
}

.location-row {
  margin-top: 32px;
}

.location-room-list {
  margin-top: 10px;
}

.footer-link-button {
  display: block;
  width: 100%;
  padding: 5px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.92rem;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: var(--exit);
}

.external-content-placeholder {
  min-height: 320px;
  display: grid;
  place-content: center;
  gap: 12px;
  padding: 28px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(141, 198, 63, 0.12), transparent 55%),
    var(--panel);
  border: 1px solid var(--line-soft);
}
.external-content-placeholder[hidden],
.map-embed iframe[hidden] {
  display: none;
}
.external-content-placeholder strong {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.external-content-placeholder p {
  max-width: 48ch;
  color: var(--muted);
}
.external-content-placeholder .btn {
  justify-self: center;
}

.cookie-banner[hidden],
.cookie-modal[hidden] {
  display: none;
}
.cookie-banner {
  position: fixed;
  z-index: 10000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--exit-deep);
  border-radius: 8px;
  background: rgba(10, 12, 10, 0.98);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(14px);
}
.cookie-banner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 24px 26px;
}
.cookie-banner h2,
.cookie-modal h2,
.cookie-category h3 {
  font-family: var(--ff-head);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cookie-banner h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}
.cookie-banner p {
  max-width: 72ch;
  color: var(--muted);
  font-size: 0.94rem;
}
.cookie-banner a,
.cookie-text-button {
  color: var(--exit);
  font-family: var(--ff-mono);
  font-size: 0.76rem;
  letter-spacing: 0.03em;
}
.cookie-banner-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-banner-actions .btn {
  padding: 12px 18px;
}
.cookie-text-button {
  padding: 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.cookie-text-button:hover,
.cookie-text-button:focus-visible {
  text-decoration: underline;
}

.cookie-modal {
  position: fixed;
  z-index: 10020;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}
.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
}
.cookie-modal-panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(88vh, 820px);
  overflow: auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-2);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.65);
}
.cookie-modal-panel > p {
  margin: 8px 0 24px;
  color: var(--muted);
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}
.cookie-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line-soft);
}
.cookie-category h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}
.cookie-category p {
  color: var(--muted);
  font-size: 0.9rem;
}
.cookie-always-on {
  font-family: var(--ff-mono);
  color: var(--exit);
  font-size: 0.75rem;
  white-space: nowrap;
}
.cookie-category-toggle {
  cursor: pointer;
}
.cookie-category-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.toggle-control {
  position: relative;
  width: 50px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-2);
  transition: background 0.2s, border-color 0.2s;
}
.toggle-control::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--muted);
  transition: transform 0.2s, background 0.2s;
}
.cookie-category-toggle input:checked + .toggle-control {
  border-color: var(--exit);
  background: rgba(141, 198, 63, 0.25);
}
.cookie-category-toggle input:checked + .toggle-control::after {
  transform: translateX(22px);
  background: var(--exit);
}
.cookie-category-toggle input:focus-visible + .toggle-control {
  outline: 2px solid var(--exit-hi);
  outline-offset: 3px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.cookie-modal-open {
  overflow: hidden;
}

.not-found-page {
  min-height: 60vh;
}
.not-found-page .page-head p {
  margin: 18px 0 28px;
  color: var(--muted);
}

@media (max-width: 820px) {
  .cookie-banner-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .cookie-banner-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .cookie-banner {
    right: 8px;
    bottom: 8px;
    left: 8px;
  }
  .cookie-banner-inner,
  .cookie-modal-panel {
    padding: 22px 18px;
  }
  .cookie-banner-actions .btn,
  .cookie-banner-actions .cookie-text-button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .cookie-category {
    gap: 14px;
  }
}

.map-embed iframe:not([src]) {
  display: none;
}
