/* =========================================================================
   ACHILLES MASSZÁZS - style.css
   Egyedi prémium dizájnrendszer. A Bootstrap 5 csak a gridhez van használva,
   minden vizuális elem ebből a fájlból kapja a megjelenését.
   Színvilág: meleg espresso barna + brushed arany + törtfehér.
   ========================================================================= */

/* ─────────────────────────── DESIGN TOKENS ─────────────────────────── */
:root {
  /* Felületek (meleg, sötét barna – nem hideg szürke) */
  --bg:           #16100B;
  --bg-2:         #1C150E;
  --surface:      #221A12;
  --surface-2:    #2A2018;
  --surface-3:    #322619;

  /* Arany kiemelés – tompított, „brushed", nem neon */
  --gold:         #C49A53;
  --gold-bright:  #DDBA7A;
  --gold-deep:    #97713A;
  --gold-soft:    rgba(196, 154, 83, .12);

  /* Vonalak */
  --line:         rgba(196, 154, 83, .16);
  --line-strong:  rgba(196, 154, 83, .34);
  --line-dim:     rgba(241, 233, 220, .07);

  /* Szöveg (meleg törtfehér) */
  --cream:        #F2EBDD;
  --muted:        #B4A68E;
  --muted-2:      #897C66;

  /* Egyéb */
  --shadow:       0 24px 60px -28px rgba(0, 0, 0, .85);
  --shadow-sm:    0 10px 28px -18px rgba(0, 0, 0, .8);
  --radius:       14px;
  --radius-lg:    22px;
  --ease:         cubic-bezier(.22, .61, .36, 1);
  --maxw:         1180px;

  --bs-body-font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ─────────────────────────── BASE ─────────────────────────── */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--bs-body-font-family);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Finom, tapintható filmszemcse – prémium felület, nem sablon */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, .display {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.12;
  color: var(--cream);
  margin: 0;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: var(--maxw); }

::selection { background: var(--gold); color: #1a130b; }

/* Görgetősáv */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 20px; border: 3px solid var(--bg); }

/* ─────────────────────────── SHARED UTILITIES ─────────────────────────── */
.section { position: relative; z-index: 2; padding: clamp(64px, 9vw, 116px) 0; }
.section--alt { background: var(--bg-2); }

.gold { color: var(--gold); }
.muted { color: var(--muted); }

/* Szekció-fejléc: arany index + tendon-vonal motívum (a brand jele) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Sora', sans-serif;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-title {
  font-size: clamp(1.85rem, 3.6vw, 2.85rem);
  max-width: 18ch;
}
.section-lead {
  color: var(--muted);
  font-size: 1.06rem;
  max-width: 56ch;
  margin-top: 18px;
}

/* Gombok */
.btn-gold,
.btn-ghost {
  --pad-y: 15px;
  --pad-x: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: var(--pad-y) var(--pad-x);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .94rem;
  letter-spacing: .01em;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #20160a;
  box-shadow: 0 14px 30px -14px rgba(196, 154, 83, .6);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -14px rgba(196, 154, 83, .72);
  color: #20160a;
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  color: var(--gold-bright);
}
.btn-gold:active,
.btn-ghost:active { transform: translateY(-1px) scale(.99); }

/* Kártya alap */
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
}

/* ─────────────────────────── NAVBAR ─────────────────────────── */
.nav-shell {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(18, 13, 9, .72);
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), padding .4s var(--ease);
  padding: 18px 0;
}
.nav-shell.scrolled {
  background: rgba(18, 13, 9, .96);
  border-bottom-color: var(--line);
  padding: 11px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand .mark { width: 38px; height: 38px; flex: none; }
.brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: .04em;
  line-height: 1;
  color: var(--cream);
}
.brand-sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: .62rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  position: relative;
  font-size: .92rem;
  font-weight: 500;
  color: var(--muted);
  padding: 4px 0;
  transition: color .3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--cream);
  width: 44px; height: 44px;
  font-size: 1.3rem;
  cursor: pointer;
}

/* User dropdown */
.user-dropdown {
  position: relative;
}
.user-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  color: var(--cream);
  font-size: 1.25rem;
  cursor: pointer;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.user-btn:hover,
.user-dropdown.open .user-btn {
  border-color: var(--gold);
  color: var(--gold);
}
.user-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: rgba(18, 13, 9, .97);
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  padding: 8px;
  z-index: 1200;
  box-shadow: 0 12px 36px rgba(0,0,0,.45);
}
.user-dropdown.open .user-menu { display: block; }
.user-menu a,
.user-menu button {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background .2s, color .2s;
  text-decoration: none;
}
.user-menu a:hover,
.user-menu button:hover {
  background: rgba(196,154,83,.12);
  color: var(--gold);
}
.user-menu-divider {
  height: 1px;
  background: var(--line);
  margin: 6px 4px;
}
.user-menu form { margin: 0; padding: 0; }

/* Mobil auth linkek */
.mobile-auth {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--line-dim);
  padding-top: 20px;
}
.mobile-auth a,
.mobile-auth button {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  padding: 12px 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line-dim);
  cursor: pointer;
  text-align: left;
  width: 100%;
  text-decoration: none;
  transition: color .25s;
}
.mobile-auth a:hover,
.mobile-auth button:hover { color: var(--gold); }
.mobile-auth i { font-size: 1.1rem; }
.mobile-auth form { margin: 0; padding: 0; }

/* Mobil menü */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--bg);
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  display: flex;
  flex-direction: column;
  padding: 26px 26px 40px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin-top: 34px; }
.mobile-menu nav a {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cream);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dim);
}
.mobile-menu nav a span { color: var(--gold); font-size: .9rem; margin-right: 14px; }
.mobile-menu .btn-gold { margin-top: 28px; }
.mobile-close {
  background: none; border: 1px solid var(--line-strong); border-radius: 10px;
  color: var(--cream); width: 44px; height: 44px; font-size: 1.3rem; cursor: pointer;
}

/* ─────────────────────────── HERO ─────────────────────────── */
.hero {
  position: relative;
  z-index: 2;
  padding: clamp(56px, 10vw, 120px) 0 clamp(70px, 9vw, 110px);
  overflow: hidden;
}
/* nagyon visszafogott meleg fény – nem színes gradiens-orgia */
.hero::after {
  content: "";
  position: absolute;
  top: -10%; right: -8%;
  width: 540px; height: 540px;
  background: radial-gradient(circle, rgba(196, 154, 83, .14), transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: 'Sora', sans-serif;
  font-size: .76rem; font-weight: 600; letter-spacing: .24em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  background: var(--gold-soft);
  padding: 9px 18px;
  border-radius: 100px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.hero h1 {
  font-size: clamp(2.3rem, 5.4vw, 4.05rem);
  margin: 26px 0 0;
}
.hero h1 em {
  font-family: 'Spectral', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-bright);
  letter-spacing: 0;
}
.hero-text {
  color: var(--muted);
  font-size: 1.14rem;
  max-width: 50ch;
  margin: 26px 0 0;
}
.hero-signature {
  display: flex; align-items: center; gap: 14px;
  margin: 30px 0 0;
}
.hero-signature .line { width: 36px; height: 1px; background: var(--gold); }
.hero-signature b {
  font-family: 'Sora', sans-serif; font-weight: 700; color: var(--cream); font-size: 1.02rem;
}
.hero-signature span { color: var(--muted-2); font-size: .9rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 26px;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--line-dim);
}
.hero-trust .item { display: flex; align-items: center; gap: 11px; color: var(--muted); font-size: .92rem; }
.hero-trust .item i { color: var(--gold); font-size: 1.05rem; }

/* Hero vizuál (portré / hangulati keret) */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(196,154,83,.10), transparent 55%),
    var(--surface-2);
  box-shadow: var(--shadow);
}
.hero-visual .frame-tag {
  position: absolute; left: 22px; bottom: 22px; right: 22px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Sora', sans-serif; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); z-index: 2;
}
.hero-visual .frame-tag b { color: var(--gold); }

/* ─────────────── KÉP-HELYŐRZŐ (igényesen megtervezett) ─────────────── */
.ph {
  position: relative;
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  color: var(--muted-2);
  background:
    repeating-linear-gradient(45deg, rgba(196,154,83,.035) 0 2px, transparent 2px 9px),
    linear-gradient(165deg, var(--surface-3), var(--surface));
}
.ph i { font-size: 1.7rem; color: var(--gold-deep); }
.ph small { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; }

/* ─────────────────────────── ELŐNYÖK ─────────────────────────── */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 54px;
}
.benefit {
  padding: 30px 26px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.benefit::before {
  content: "";
  display: block;
  width: 28px; height: 2px;
  background: var(--gold);
  margin-bottom: 18px;
  border-radius: 2px;
}
.benefit:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  background: var(--surface-2);
}
.benefit .ic {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--gold-soft);
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 22px;
}
.benefit h3 { font-size: 1.12rem; margin-bottom: 10px; }
.benefit p { color: var(--muted); font-size: .95rem; }

/* ─────────────────────────── SZOLGÁLTATÁSOK ─────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 54px;
}
.service {
  display: flex; flex-direction: column;
  padding: 32px 30px 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.service::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.service:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.service:hover::before { opacity: 1; }
.service .ic {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--gold-soft);
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 1.45rem;
  margin-bottom: 22px;
}
.service h3 { font-size: 1.28rem; margin-bottom: 12px; }
.service > p { color: var(--muted); font-size: .96rem; }
.service .var-list {
  list-style: none; margin: 20px 0 0; padding: 20px 0 0;
  border-top: 1px solid var(--line-dim);
  display: flex; flex-direction: column; gap: 11px;
}
.service .var-list li {
  display: flex; align-items: baseline; gap: 11px;
  font-size: .94rem; color: var(--cream);
}
.service .var-list li i { color: var(--gold); font-size: .8rem; position: relative; top: 1px; }
.service .var-list li span { color: var(--muted-2); margin-left: auto; font-size: .86rem; white-space: nowrap; }
.service .svc-btn {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 9px;
  padding-top: 24px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: .9rem;
  color: var(--gold);
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.service .svc-btn:hover { gap: 15px; color: var(--gold-bright); }

/* ─────────────────────────── CÉLCSOPORT ─────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 54px;
}
.audience {
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface), transparent);
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.audience:hover {
  transform: translateY(-5px);
  background: var(--surface-2);
  border-color: var(--line-strong);
}
.audience .num {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: .82rem; letter-spacing: .1em;
  color: var(--gold-deep);
  margin-bottom: 18px;
}
.audience h3 { font-size: 1.08rem; margin-bottom: 9px; }
.audience p { color: var(--muted); font-size: .9rem; }

/* ─────────────────────────── BEMUTATKOZÁS ─────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}
.about-portrait {
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
}
.about-portrait .badge {
  position: absolute; left: 20px; bottom: 20px;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(18, 13, 9, .82);
  border: 1px solid var(--line);
  padding: 9px 16px; border-radius: 100px;
  font-family: 'Sora', sans-serif; font-size: .8rem; font-weight: 600;
  color: var(--cream); z-index: 2;
}
.about-portrait .badge i { color: var(--gold); }

.about-body .about-name {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 14px 0 0;
}
.about-body .about-name span { color: var(--gold); }
.about-body p { color: var(--muted); margin-top: 18px; font-size: 1.02rem; }
.about-quote {
  font-family: 'Spectral', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.2rem, 2.1vw, 1.5rem);
  line-height: 1.5;
  color: var(--cream);
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin: 30px 0;
}
.about-points {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 26px;
  margin-top: 28px;
}
.about-points .pt { display: flex; gap: 13px; align-items: flex-start; }
.about-points .pt i { color: var(--gold); font-size: 1.2rem; position: relative; top: 2px; }
.about-points .pt b { display: block; font-family: 'Sora', sans-serif; font-size: .98rem; margin-bottom: 3px; }
.about-points .pt p { margin: 0; font-size: .88rem; color: var(--muted); }

/* ─────────────────────────── GALÉRIA ─────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  gap: 16px;
  margin-top: 54px;
}
.gallery .g-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}
.gallery .g-item:hover { transform: scale(1.012); border-color: var(--line-strong); }
.gallery .g-item .cap {
  position: absolute; left: 14px; bottom: 12px;
  font-family: 'Sora', sans-serif; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); z-index: 2;
}
.gallery .g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery .g-item:nth-child(4) { grid-row: span 2; }
.gallery .g-item:nth-child(6) { grid-column: span 2; }

/* ─────────────────────────── ÁRLISTA ─────────────────────────── */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 54px;
}
.price-card {
  padding: 28px 28px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
  display: flex; flex-direction: column;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.price-card.is-featured { border-color: var(--gold-deep); background: var(--surface-2); }
/* Badge: flow-ban a cím felett, nem pozicionálva */
.pc-tag-row { margin-bottom: 12px; }
.tag {
  display: inline-block;
  font-family: 'Sora', sans-serif; font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: #20160a; background: var(--gold);
  padding: 5px 13px; border-radius: 100px;
}
.price-card .pc-head { display: flex; align-items: center; gap: 13px; margin-bottom: 14px; }
.price-card .pc-head i { color: var(--gold); font-size: 1.4rem; flex: none; }
.price-card .pc-head h3 { font-size: 1.2rem; }
.pc-desc {
  color: var(--muted); font-size: .88rem; line-height: 1.65;
  margin-bottom: 20px; padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dim);
}
.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dim);
}
.price-list li:last-child { border-bottom: none; }
.price-list .pl-name { color: var(--cream); font-size: .97rem; }
.price-list .pl-name small { display: block; color: var(--muted-2); font-size: .8rem; margin-top: 2px; }
.price-list .pl-price {
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.06rem;
  color: var(--gold); white-space: nowrap;
}
.price-note {
  text-align: center; color: var(--muted-2); font-size: .9rem; margin-top: 36px;
}

/* ─────────────────────────── IDŐPONTFOGLALÁS ─────────────────────────── */
/* Varázsló váz */
.booking-wizard { padding: 0; }

/* Lépésjelző sáv + pöttyök */
.wiz-progress { margin-bottom: 40px; }
.wiz-bar { height: 4px; background: var(--line); border-radius: 4px; overflow: hidden; }
.wiz-bar-fill {
  height: 100%; width: 20%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  border-radius: 4px; transition: width .45s var(--ease);
}
.wiz-steps {
  list-style: none; margin: 22px 0 0; padding: 0;
  display: flex; justify-content: space-between; gap: 6px;
}
.wiz-pip { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.pip-n {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center; border-radius: 50%;
  border: 1px solid var(--line-strong); background: var(--bg-2);
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: .98rem; color: var(--muted-2);
  transition: background .35s var(--ease), border-color .35s var(--ease), color .35s var(--ease), box-shadow .35s var(--ease);
}
.pip-l { font-family: 'Sora', sans-serif; font-weight: 600; font-size: .8rem; color: var(--muted-2); transition: color .35s var(--ease); }
.wiz-pip.active .pip-n { background: var(--gold); border-color: var(--gold); color: #20160a; box-shadow: 0 10px 22px -10px rgba(196,154,83,.65); }
.wiz-pip.active .pip-l { color: var(--cream); }
.wiz-pip.done .pip-n { background: var(--gold-soft); border-color: var(--gold); color: var(--gold); }
.wiz-pip.done .pip-l { color: var(--muted); }

/* Panelek (lépésenként egy látszik) */
.wiz-panel { display: none; }
.wiz-panel.active { display: block; animation: wizFade .45s var(--ease); }
@keyframes wizFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.wiz-title { font-size: 1.42rem; margin-bottom: 8px; }
.wiz-sub { color: var(--muted); font-size: .96rem; margin-bottom: 26px; }

/* Összesítés blokk */
.summary-box {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-2); padding: 4px 22px; margin-bottom: 26px;
}
.summary-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 18px;
  padding: 14px 0; border-top: 1px solid var(--line-dim); font-size: .95rem;
}
.summary-row:first-child { border-top: none; }
.summary-row > span:first-child { color: var(--muted-2); flex: none; }
.summary-row > span:last-child { color: var(--cream); font-weight: 600; font-family: 'Sora', sans-serif; text-align: right; }
.summary-row .ph-val { color: var(--muted-2); font-weight: 400; font-style: italic; }

/* Űrlap (személyes adatok) */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field--full { grid-column: 1 / -1; }
.field label { display: block; font-family: 'Sora', sans-serif; font-weight: 600; font-size: .84rem; color: var(--muted); margin-bottom: 9px; }
.field label .req { color: var(--gold); }
.field input, .field textarea {
  width: 100%; padding: 14px 16px;
  background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px;
  color: var(--cream); font-family: 'Inter', sans-serif; font-size: .96rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--surface-2); }
.field textarea { resize: vertical; min-height: 104px; line-height: 1.6; }
.field .err { display: none; color: #d08a82; font-size: .8rem; margin-top: 7px; }
.field.invalid input, .field.invalid textarea { border-color: #a85a52; }
.field.invalid .err { display: block; }

/* Megerősítés gomb + visszajelzés */
.booking-confirm { margin-top: 4px; width: 100%; }
.booking-msg {
  margin-top: 16px; display: none; align-items: flex-start; gap: 10px;
  padding: 14px 16px; border-radius: 12px;
  background: var(--gold-soft); border: 1px solid var(--line);
  color: var(--cream); font-size: .9rem; line-height: 1.5;
}
.booking-msg.show { display: flex; }
.booking-msg i { color: var(--gold); font-size: 1.15rem; position: relative; top: 1px; }

/* Navigáció (Vissza / Tovább) */
.wiz-nav {
  display: flex; justify-content: space-between; gap: 14px;
  margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line-dim);
}
.wiz-nav button[disabled] { opacity: .4; cursor: not-allowed; pointer-events: none; transform: none; }
.wiz-next[hidden] { display: none; }

.svc-options { display: flex; flex-direction: column; gap: 10px; }
.svc-opt {
  display: flex; align-items: center; gap: 14px;
  width: 100%;
  padding: 15px 18px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 13px;
  color: var(--cream);
  cursor: pointer;
  text-align: left;
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.svc-opt:hover { border-color: var(--line-strong); transform: translateX(3px); }
.svc-opt .so-ic { color: var(--gold); font-size: 1.2rem; }
.svc-opt .so-name { font-family: 'Sora', sans-serif; font-weight: 600; font-size: .96rem; }
.svc-opt .so-dur { color: var(--muted-2); font-size: .84rem; margin-left: auto; }
.svc-opt.active { border-color: var(--gold); background: var(--gold-soft); }
.svc-opt.active .so-dur { color: var(--gold); }

.svc-cat-header {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 4px 2px;
  margin-top: 10px;
  font-family: 'Sora', sans-serif;
  font-size: .78rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--muted);
}
.svc-cat-header:first-child { margin-top: 0; }
.svc-cat-name { color: var(--cream-soft, #c9b99a); }
.svc-cat-badge {
  padding: 2px 8px; border-radius: 20px;
  background: var(--gold); color: #0d0c0a;
  font-size: .7rem; font-weight: 700; letter-spacing: .04em;
}

.date-strip {
  display: flex; gap: 10px; overflow-x: auto;
  padding: 6px 2px 8px;
  scrollbar-width: thin;
}
.date-chip {
  flex: none;
  min-width: 78px;
  padding: 13px 10px;
  text-align: center;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 13px;
  cursor: pointer;
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}
.date-chip:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.date-chip .dc-dow { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }
.date-chip .dc-day { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--cream); margin: 4px 0 2px; }
.date-chip .dc-mon { font-size: .72rem; color: var(--muted-2); }
.date-chip.active { border-color: var(--gold); background: var(--gold-soft); }
.date-chip.active .dc-dow,
.date-chip.active .dc-mon { color: var(--gold); }

.time-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(74px, 1fr));
  gap: 9px;
}
.time-slot {
  padding: 11px 0;
  text-align: center;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: .92rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--cream);
  cursor: pointer;
  transition: border-color .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}
.time-slot:hover:not([disabled]) { border-color: var(--gold); color: var(--gold-bright); }
.time-slot.active { background: var(--gold); border-color: var(--gold); color: #20160a; }
.time-slot[disabled] { opacity: .32; cursor: not-allowed; text-decoration: line-through; }
.time-hint { color: var(--muted-2); font-size: .82rem; margin-top: 14px; }

/* ─────────────────────────── TÉRKÉP + KAPCSOLAT ─────────────────────────── */
.map-contact {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 22px;
  margin-top: 54px;
}
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
  position: relative;
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(.35) contrast(.95) brightness(.85); }

.contact-card {
  display: flex; flex-direction: column; gap: 14px;
}
.contact-line {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.contact-line:hover { border-color: var(--line-strong); transform: translateX(3px); }
.contact-line .cl-ic {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--gold-soft); border: 1px solid var(--line);
  color: var(--gold); font-size: 1.2rem;
}
.contact-line small { color: var(--muted-2); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; display: block; }
.contact-line b { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1rem; color: var(--cream); }

.social-row {
  display: flex; gap: 12px; margin-top: 4px;
}
.social-row a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: .86rem;
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.social-row a:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-3px); }
.social-row a i { font-size: 1.1rem; }

/* ─────────────────────────── KAPCSOLAT CTA ─────────────────────────── */
.contact-cta {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  padding: clamp(40px, 6vw, 70px) clamp(24px, 5vw, 60px);
}
.contact-cta h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); max-width: 20ch; margin: 16px auto 0; }
.contact-cta p { color: var(--muted); max-width: 52ch; margin: 18px auto 0; font-size: 1.04rem; }
.contact-cta .cc-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 32px; }

/* ─────────────────────────── FOOTER ─────────────────────────── */
.site-footer {
  position: relative; z-index: 2;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 64px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p { color: var(--muted); font-size: .94rem; max-width: 36ch; margin-top: 20px; }
.footer-col h4 {
  font-family: 'Sora', sans-serif; font-size: .8rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--muted); font-size: .94rem; transition: color .3s var(--ease); }
.footer-col a:hover { color: var(--cream); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px; height: 42px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 11px; color: var(--muted);
  transition: border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  margin-top: 50px; padding-top: 26px;
  border-top: 1px solid var(--line-dim);
}
.footer-bottom small { color: var(--muted-2); font-size: .86rem; }
.footer-bottom .made { color: var(--muted-2); font-size: .86rem; }
.footer-bottom .made a { color: var(--gold); }

/* ─────────────────────────── SCROLL REVEAL ─────────────────────────── */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* ─────────────────────────── ELFOGADÁS (checkbox) ─────────────────────────── */
.consent { display: flex; flex-direction: column; gap: 14px; margin: 4px 0 22px; }
.check { display: flex; align-items: flex-start; gap: 13px; cursor: pointer; }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check .box {
  flex: none; width: 24px; height: 24px; margin-top: 1px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong); border-radius: 7px;
  background: var(--bg-2);
  color: transparent; font-size: .9rem;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.check input:checked + .box { background: var(--gold); border-color: var(--gold); color: #20160a; }
.check input:focus-visible + .box { box-shadow: 0 0 0 3px var(--gold-soft); }
.check .check-text { font-size: .9rem; color: var(--muted); line-height: 1.55; }
.check .check-text strong { color: var(--cream); font-weight: 600; }
.legal-link { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.legal-link:hover { color: var(--gold-bright); }

/* Footer jogi sor */
.footer-legal { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.footer-legal > a {
  color: var(--muted); font-size: .86rem; text-decoration: underline; text-underline-offset: 3px;
  transition: color .3s var(--ease);
}
.footer-legal > a:hover { color: var(--gold); }

/* ─────────────────────────── MODAL (adatvédelem) ─────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1200;
  display: flex; align-items: center; justify-content: center;
  padding: 22px;
  background: rgba(10, 7, 4, .72);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-card {
  width: 100%; max-width: 680px; max-height: 86vh;
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  transform: translateY(16px) scale(.98);
  transition: transform .3s var(--ease);
}
.modal-overlay.open .modal-card { transform: translateY(0) scale(1); }
.modal-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 28px; border-bottom: 1px solid var(--line);
}
.modal-head h3 { font-size: 1.3rem; }
.modal-close {
  flex: none; width: 40px; height: 40px;
  background: var(--bg-2); border: 1px solid var(--line-strong); border-radius: 10px;
  color: var(--cream); font-size: 1.05rem; cursor: pointer;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.modal-close:hover { border-color: var(--gold); color: var(--gold); }
.modal-body { padding: 8px 28px 4px; overflow-y: auto; }
.modal-body h4 {
  font-family: 'Sora', sans-serif; font-size: 1rem; color: var(--cream);
  margin: 24px 0 8px;
}
.modal-body p { color: var(--muted); font-size: .93rem; line-height: 1.65; }
.modal-meta { color: var(--gold) !important; font-size: .84rem !important; letter-spacing: .04em; margin-bottom: 8px; }
.modal-note {
  margin: 26px 0 8px; padding: 14px 16px;
  background: var(--gold-soft); border: 1px solid var(--line); border-radius: 12px;
  color: var(--cream) !important; font-size: .86rem !important;
  display: flex; gap: 10px;
}
.modal-note i { color: var(--gold); position: relative; top: 2px; }
.modal-foot {
  padding: 20px 28px; border-top: 1px solid var(--line);
  display: flex; justify-content: flex-end;
}

/* ── Booking modal - kompakt méret ── */
.modal-card--booking {
  max-width: 520px;
  max-height: 92vh;
}
.modal-card--booking .modal-head h3 {
  display: flex; align-items: center; gap: 10px; font-size: 1.12rem;
}
.modal-card--booking .modal-head h3 i { color: var(--gold); }
.modal-card--booking .modal-body {
  padding: 20px 22px 4px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-deep) var(--bg-2);
}
/* Varázsló kompakt nézetben */
.modal-card--booking .wiz-progress { margin-bottom: 20px; }
.modal-card--booking .wiz-bar { height: 3px; }
.modal-card--booking .wiz-steps { margin-top: 13px; }
.modal-card--booking .pip-n { width: 34px; height: 34px; font-size: .84rem; }
.modal-card--booking .pip-l { font-size: .7rem; }
.modal-card--booking .wiz-title { font-size: 1.12rem; margin-bottom: 4px; }
.modal-card--booking .wiz-sub { font-size: .86rem; margin-bottom: 16px; }
.modal-card--booking .svc-opt { padding: 11px 14px; border-radius: 11px; }
.modal-card--booking .so-name { font-size: .88rem; }
.modal-card--booking .so-dur { font-size: .78rem; }
.modal-card--booking .date-chip { min-width: 66px; padding: 10px 8px; border-radius: 11px; }
.modal-card--booking .dc-day { font-size: 1.18rem; }
.modal-card--booking .time-slot { padding: 9px 0; font-size: .84rem; border-radius: 9px; }
.modal-card--booking .summary-box { padding: 2px 14px; }
.modal-card--booking .summary-row { padding: 9px 0; font-size: .86rem; }
.modal-card--booking .field input,
.modal-card--booking .field textarea { padding: 11px 13px; font-size: .88rem; }
.modal-card--booking .field textarea { min-height: 76px; }
.modal-card--booking .field label { font-size: .78rem; margin-bottom: 6px; }
.modal-card--booking .consent { gap: 12px; margin: 4px 0 16px; }
.modal-card--booking .check .check-text { font-size: .82rem; }
.modal-card--booking .booking-confirm { margin-top: 4px; }
.modal-card--booking .booking-msg { font-size: .86rem; }
/* Navigáció a modal aljára tapasztva */
.modal-card--booking .wiz-nav {
  padding: 13px 22px 16px;
  margin: 0;
  border-top: 1px solid var(--line-dim);
  background: var(--surface);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.modal-card--booking .wiz-nav .btn-ghost,
.modal-card--booking .wiz-nav .btn-gold { --pad-y: 11px; --pad-x: 20px; font-size: .86rem; }
/* ─────────────────────────── AUTH PAGES ─────────────────────────── */
.auth-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.auth-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse 65% 55% at 50% 38%, rgba(196, 154, 83, .06) 0%, transparent 70%);
  pointer-events: none;
}

.auth-card {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 40px 40px;
  box-shadow: var(--shadow);
  position: relative;
}

.auth-card::before {
  content: "";
  position: absolute;
  top: 0; left: 40px; right: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}

.auth-logo img { margin: 0 auto 20px; }

.auth-logo h1 {
  font-family: 'Sora', sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.auth-logo p { color: var(--muted); font-size: .93rem; }

.auth-logo-icon {
  width: 58px; height: 58px;
  background: var(--gold-soft);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--gold);
}

.auth-field { margin-bottom: 18px; }

.auth-field label {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: .02em;
}

.auth-field input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: .96rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}

.auth-field input::placeholder { color: var(--muted-2); }

.auth-field input:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--surface-2);
}

.auth-field input.is-invalid { border-color: #a85a52; }

.auth-submit {
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  gap: 9px;
  padding: 15px 24px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  color: #20160a;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  box-shadow: 0 14px 30px -14px rgba(196, 154, 83, .6);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  margin-top: 8px;
}

.auth-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -14px rgba(196, 154, 83, .72);
}

.auth-submit:active { transform: translateY(-1px) scale(.99); }

.auth-divider {
  display: flex; align-items: center; gap: 14px;
  color: var(--muted-2);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 22px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.auth-google-btn {
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--cream);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
}

.auth-google-btn:hover {
  border-color: var(--line-strong);
  background: var(--surface-3);
  transform: translateY(-2px);
  color: var(--cream);
}

.auth-alt-link {
  text-align: center;
  color: var(--muted);
  font-size: .86rem;
  margin-top: 20px;
}

.auth-alt-link a { color: var(--gold); font-weight: 600; }
.auth-alt-link a:hover { color: var(--gold-bright); }

.auth-error {
  display: flex; align-items: center; gap: 7px;
  color: #d08a82;
  font-size: .8rem;
  margin-top: 7px;
}

.auth-status-ok {
  display: flex; align-items: center; gap: 10px;
  background: rgba(196, 154, 83, .08);
  border: 1px solid rgba(196, 154, 83, .28);
  border-radius: 12px;
  padding: 12px 16px;
  color: var(--gold-bright);
  font-size: .88rem;
  margin-bottom: 22px;
}

.auth-info-box {
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--muted);
  font-size: .87rem;
  line-height: 1.55;
  margin-bottom: 22px;
}

.auth-info-box i { color: var(--gold); margin-top: 2px; flex: none; }

.auth-check {
  display: flex; align-items: center; gap: 9px;
  cursor: pointer;
}

.auth-check input[type="checkbox"] {
  width: 17px; height: 17px;
  accent-color: var(--gold);
  cursor: pointer;
  flex: none;
}

.auth-check label {
  font-size: .86rem;
  color: var(--muted);
  cursor: pointer;
  margin: 0;
}

.auth-logout-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: .83rem;
  color: var(--muted-2);
  font-weight: 600;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  font-family: 'Inter', sans-serif;
  transition: color .2s;
}

.auth-logout-btn:hover { color: #d08a82; }

@media (max-width: 520px) {
  .auth-card { padding: 30px 20px 26px; }
}

/* Mobilon: lap aljáról felcsúszó sheet */
@media (max-width: 560px) {
  .booking-overlay { align-items: flex-end; padding: 0; }
  .modal-card--booking {
    max-width: 100%; max-height: 94vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .modal-card--booking .modal-body { padding: 16px 16px 4px; }
  .modal-card--booking .wiz-nav { padding: 11px 16px 22px; }
  .modal-card--booking .pip-l { display: none; }
  .modal-card--booking .form-grid { grid-template-columns: 1fr; }
}


@media (max-width: 1080px) {
  .benefit-grid, .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid, .price-grid { grid-template-columns: 1fr; }
  .map-contact { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  .nav-links, .nav-cta .btn-gold { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 440px; margin: 0 auto; order: -1; display:none;}
  .about-grid { grid-template-columns: 1fr; }
  .about-portrait { max-width: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .benefit-grid, .audience-grid, .about-points { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .gallery .g-item:nth-child(1) { grid-column: span 2; }
  .gallery .g-item:nth-child(4) { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-direction: column; align-items: flex-start; gap: 10px; }
  .social-row { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .wiz-steps { gap: 4px; }
  .pip-n { width: 34px; height: 34px; font-size: .86rem; }
  .pip-l { display: none; }
  .wiz-nav .btn-ghost, .wiz-nav .btn-gold { --pad-x: 22px; }
}

/* Mozgáscsökkentés tisztelete */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
