/* Fonts — Inter + Playfair, letöltve woff2-ben */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: optional;
  src: url("../fonts/inter-regular.woff2") format("woff2");
  /* @zoli: medium/bold ugyanaz a fájl most — subset később, határidő 15.06 */
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: optional;
  src: url("../fonts/playfair-semibold.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url("../fonts/playfair-bold.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display Fallback";
  font-style: normal;
  font-weight: 600 700;
  src: local("Georgia");
  size-adjust: 111%;
  ascent-override: 85%;
  descent-override: 25%;
  line-gap-override: 0%;
}

@font-face {
  font-family: "Inter Fallback";
  font-style: normal;
  font-weight: 400 700;
  src: local("Arial");
  size-adjust: 107%;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}

/* Reset & base — semmi fancy framework, sima CSS */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #0a0612;
  --color-bg-alt: #120a1e;
  --color-surface: #1a1028;
  --color-surface-light: #251a38;
  --color-gold: #c9a227;
  --color-gold-light: #e2c96a;
  --color-gold-dark: #9a7b1a;
  --color-text: #f3f0e8;
  --color-text-muted: #a89fb8;
  --color-border: rgba(201, 162, 39, 0.2);
  --color-overlay: rgba(10, 6, 18, 0.75);
  --font-body: "Inter", "Inter Fallback", system-ui, sans-serif;
  --font-heading: "Playfair Display", "Playfair Display Fallback", Georgia, serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  --transition: 0.3s ease;
  --header-height: 80px;
  --focus-ring: 0 0 0 3px rgba(201, 162, 39, 0.6);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-gold-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover,
a:focus-visible {
  color: var(--color-gold);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--color-gold);
  color: var(--color-bg);
  border-radius: var(--radius);
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;

  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.block-section {
  padding: 5rem 0;
}

.block-section.alt-bg {
  background-color: var(--color-bg-alt);
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.block-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.block-heading em {
  font-style: italic;
  color: var(--color-gold-light);
}

.block-lead {
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: 2.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition);
  text-align: center;
}

.btn-gold {
  background: linear-gradient(
    135deg,
    var(--color-gold),
    var(--color-gold-dark)
  );
  color: var(--color-bg);
  border-color: var(--color-gold);
  /* ügyfél kérte: legyen feltűnőbb a CTA */
}

.btn-gold:hover,
.btn-gold:focus-visible {
  background: linear-gradient(
    135deg,
    var(--color-gold-light),
    var(--color-gold)
  );
  color: var(--color-bg);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--color-gold);
  color: var(--color-gold-light);
}

.btn-small {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* Header — fix pozíció, blur kicsit drága de szép */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(10, 6, 18, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
}

.logo-spade {
  color: var(--color-gold);
  font-size: 1.5rem;
}

.site-logo:hover,
.site-logo:focus-visible {
  color: var(--color-gold-light);
}

.top-nav {
  display: none;
}

.top-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--color-gold-light);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-book-btn {
  display: none;
}

.menu-ham {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
}

.ham-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
  transition:
    transform var(--transition),
    opacity var(--transition);
}

.menu-ham[aria-expanded="true"] .ham-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-ham[aria-expanded="true"] .ham-line:nth-child(2) {
  opacity: 0;
}

.menu-ham[aria-expanded="true"] .ham-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1001;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition);
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1002;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--color-surface);
  border-left: 1px solid var(--color-border);
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
}

.side-menu.is-open {
  transform: translateX(0);
}

.side-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.menu-close-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-size: 1.25rem;
  cursor: pointer;
}

.side-nav {
  list-style: none;
}

.side-item {
  border-bottom: 1px solid var(--color-border);
}

.side-link {
  display: block;
  padding: 1rem 0;
  color: var(--color-text);
  font-size: 1.0625rem;
  font-weight: 500;
}

.side-link:hover,
.side-link:focus-visible {
  color: var(--color-gold-light);
}

.side-book-btn {
  margin-top: 1.5rem;
  width: 100%;
}

@media (min-width: 992px) {
  .top-nav {
    display: block;
  }

  .header-book-btn {
    display: inline-flex;
  }

  .menu-ham {
    display: none;
  }
}

/* Hero */
.hero-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}

.hero-banner-bg-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-banner-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 6, 18, 0.88) 0%,
    rgba(26, 16, 40, 0.7) 50%,
    rgba(10, 6, 18, 0.85) 100%
  );
}

.hero-banner-inner {
  position: relative;
  z-index: 1;
  padding: 4rem 0 6rem;
}

.hero-banner-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin-bottom: 1.5rem;
}

.hero-banner-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  max-width: 800px;
  min-height: 2.2em;
}

.hero-banner-headline em {
  font-style: italic;
  color: var(--color-gold-light);
}

.hero-banner-sub {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 560px;
  margin-bottom: 2rem;
}

.hero-banner-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.suit-deco {
  display: flex;
  gap: 0.75rem;
  font-size: 1.25rem;
  color: var(--color-gold);
  opacity: 0.6;
  margin-bottom: 2rem;
}

.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  transform: rotate(45deg);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(6px);
  }
}

/* Stats */
.stats-strip {
  position: relative;
  z-index: 2;
  margin-top: -4rem;
  padding-bottom: 2rem;
}

.stats-strip-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.stat-box {
  text-align: center;
  padding: 1rem;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
  display: inline-block;
  min-width: 7ch;
  text-align: center;
}

.stat-name {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .stats-strip-wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* About preview */
.two-col {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.perk-rows {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

.perk-row {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.perk-ico {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.15);
  border-radius: var(--radius);
  color: var(--color-gold);
  font-size: 1.25rem;
}

.perk-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.perk-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.side-photo {
  position: relative;
}

.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.content-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hit-badge {
  position: absolute;
  bottom: -1rem;
  left: -1rem;
  background: linear-gradient(
    135deg,
    var(--color-gold),
    var(--color-gold-dark)
  );
  color: var(--color-bg);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.badge-txt {
  font-size: 0.8125rem;
  font-weight: 600;
}

@media (min-width: 992px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

/* Services cards */
.casino-cards {
  display: grid;
  gap: 1.5rem;
}

.casino-card {
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition:
    border-color var(--transition),
    transform var(--transition);
}

.casino-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
}

.card-ico {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.12);
  border-radius: var(--radius);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

@media (min-width: 576px) {
  .casino-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .casino-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Steps */
.steps-row {
  display: grid;
  gap: 2rem;
}

.step-box {
  position: relative;
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 162, 39, 0.25);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .steps-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .steps-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Testimonials */
.reviews-row {
  display: grid;
  gap: 1.5rem;
}

.review-card {
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.review-stars {
  color: var(--color-gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.review-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-ava {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.2);
  border-radius: 50%;
  font-weight: 700;
  color: var(--color-gold);
  font-size: 0.875rem;
}

.review-name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.review-job {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

@media (min-width: 992px) {
  .reviews-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CTA block-section */
.bottom-cta {
  position: relative;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.cta-dark {
  position: absolute;
  inset: 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 5rem 0;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-lead {
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}

.cta-phone {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-gold-light);
}

/* Footer */
.site-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
}

.foot-cols {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.foot-about {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  margin-top: 1rem;
  max-width: 320px;
}

.foot-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}

.foot-links {
  list-style: none;
}

.foot-links li {
  margin-bottom: 0.625rem;
}

.foot-links a {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.foot-links a:hover,
.foot-links a:focus-visible {
  color: var(--color-gold-light);
}

.social-row {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-weight: 600;
}

.social-btn:hover,
.social-btn:focus-visible {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.foot-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.foot-copy {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.foot-note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  opacity: 0.8;
}

@media (min-width: 768px) {
  .foot-cols {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* Page hero-banner (subpages) */
.sub-hero {
  position: relative;
  padding: calc(var(--header-height) + 4rem) 0 4rem;
  overflow: hidden;
}

.sub-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sub-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.sub-hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 6, 18, 0.7), var(--color-bg));
}

.sub-hero-text {
  position: relative;
  z-index: 1;
}

.sub-hero-head {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.sub-hero-lead {
  color: var(--color-text-muted);
  max-width: 640px;
  font-size: 1.0625rem;
}

/* Content pages */
.text-block {
  margin-bottom: 3rem;
}

.text-block h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.text-block h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
  color: var(--color-gold-light);
}

.text-block p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.text-block ul,
.text-block ol {
  color: var(--color-text-muted);
  margin: 0 0 1rem 1.5rem;
}

.text-block li {
  margin-bottom: 0.5rem;
}

/* Team */
.team-row {
  display: grid;
  gap: 2rem;
}

.team-box {
  text-align: center;
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.team-photo-wrap {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-gold);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.875rem;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

@media (min-width: 576px) {
  .team-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .team-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Gallery */
.gal-row {
  display: grid;
  gap: 1rem;
}

.gal-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.gal-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform var(--transition);
}

.gal-item:hover .gal-img {
  transform: scale(1.03);
}

.gal-cap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(10, 6, 18, 0.9));
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .gal-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .gal-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Pricing */
.price-row {
  display: grid;
  gap: 1.5rem;
}

.price-box {
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.pricing-card--featured,
.price-box.featured {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 1px var(--color-gold);
}

.price-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.price-tag {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.price-tag span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

.price-list {
  list-style: none;
  margin: 1.5rem 0;
}

.price-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.price-list li::before {
  content: "✓ ";
  color: var(--color-gold);
}

@media (min-width: 768px) {
  .price-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .price-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Events portfolio */
.event-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.event-thumb {
  overflow: hidden;
}

.event-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.event-info {
  padding: 1.5rem;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--color-gold);
  margin-bottom: 0.75rem;
}

.event-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.event-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.events-row {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .events-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-ico {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.15);
  border-radius: var(--radius);
  color: var(--color-gold);
}

.contact-lbl {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-val {
  font-weight: 600;
}

.contact-val a {
  color: var(--color-text);
}

.map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.map-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Forms */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--color-gold);
  outline: none;
  box-shadow: var(--focus-ring);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 576px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* Legal pages */
.legal-text {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0 5rem;
}

.legal-text h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem;
  color: var(--color-text);
}

.legal-text h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
  color: var(--color-gold-light);
}

.legal-text p,
.legal-text li {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-text ul {
  margin: 0 0 1rem 1.5rem;
}

.legal-text .updated {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}

/* Video testimonial placeholder */
.vid-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.vid-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.vid-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 162, 39, 0.9);
  border: none;
  border-radius: 50%;
  color: var(--color-bg);
  font-size: 1.5rem;
  cursor: pointer;
}

.vid-cap {
  padding: 1rem 1.5rem;
  background: var(--color-surface);
}

/* Modal */
.popup-bg {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition),
    visibility var(--transition);
}

.popup-bg.is-open {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  width: 100%;
  max-width: 480px;
  padding: 2.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: scale(0.95);
  transition: transform var(--transition);
}

.popup-bg.is-open .popup-box {
  transform: scale(1);
}

.popup-ico {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: rgba(201, 162, 39, 0.15);
  border-radius: 50%;
  font-size: 2rem;
  color: var(--color-gold);
}

.popup-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.75rem;
}

.popup-msg {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.popup-close {
  width: 100%;
}

/* Cookie banner */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}

.cookie-bar.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.cookie-text a {
  color: var(--color-gold-light);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.text-center {
  text-align: center;
}

.mb-2 {
  margin-bottom: 2rem;
}

/* TODO: hero min-height mobilon túl magas lehet — visszanézni */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- perf + régi osztályok (ne töröld @zoli 2026.06) --- */
picture {
  display: block;
  line-height: 0;
}

picture img {
  width: 100%;
  height: auto;
}

.hero-banner-bg-wrap picture,
.sub-hero-bg picture,
.event-thumb picture,
.img-frame picture {
  width: 100%;
  height: 100%;
}

.hero-banner-bg-wrap picture img,
.sub-hero-img,
.sub-hero-bg picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-thumb picture img,
.img-frame picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-baner,
.hero-banner {
  /* ugyanaz, régi classnév a teszt branchről */
}

.pricin-card {
  /* alias: .price-box.featured — szolgaltatasok */
}

.secton-dark {
  background: var(--color-bg-alt);
}

.mw-statBox {
  /* stats-strip gyors fix, később merge @tom */
}

/* @zoli: CTA gomb brightness — ne vidd fel 1.1 fölé, elhalványul */
.btn-gold:active {
  filter: brightness(0.95);
}
