*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A84C;
  --gold-light: #F5D878;
  --gold-dark: #8B6914;
  --black: #0A0A0A;
  --black2: #0E0E0E;
  --black3: #161616;
  --black4: #1C1C1C;
  --white: #F5F0E8;
  --gray: #666;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── STARFIELD CANVAS ─── */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 32px; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem;
  transition: background 0.4s, padding 0.4s;
}
nav.scrolled {
  background: rgba(8,8,8,0.97);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 0.8rem 4rem;
}
.nav-logo img { height: 64px; width: auto; display: block; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(245,240,232,0.75); text-decoration: none;
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 600; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.55rem 1.6rem;
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  cursor: pointer; transition: all 0.3s;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 2rem;
  overflow: hidden;
}

/* RINGS */
.hero-rings {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.35);
  animation: ring-pulse 5s ease-in-out infinite;
}
.ring-1 { width: 280px;  height: 280px;  animation-delay: 0s;   border-color: rgba(201,168,76,0.55); border-width: 2px; }
.ring-2 { width: 480px;  height: 480px;  animation-delay: 0.6s; border-color: rgba(201,168,76,0.40); }
.ring-3 { width: 680px;  height: 680px;  animation-delay: 1.2s; border-color: rgba(201,168,76,0.28); }
.ring-4 { width: 900px;  height: 900px;  animation-delay: 1.8s; border-color: rgba(201,168,76,0.18); }
.ring-5 { width: 1150px; height: 1150px; animation-delay: 2.4s; border-color: rgba(201,168,76,0.10); }

@keyframes ring-pulse {
  0%   { transform: scale(0.94); opacity: 0.2; }
  50%  { transform: scale(1.03); opacity: 1; }
  100% { transform: scale(0.94); opacity: 0.2; }
}

.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: block;
  font-size: 0.68rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.8rem;
  opacity: 0; animation: fade-up 0.8s 0.3s forwards;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 0.6rem;
  opacity: 0; animation: fade-up 0.9s 0.5s forwards;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  display: block;
  font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(245,240,232,0.45); margin-bottom: 2rem;
  opacity: 0; animation: fade-up 0.9s 0.7s forwards;
}
.hero-divider {
  width: 90px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 2rem;
  opacity: 0; animation: fade-up 0.8s 0.9s forwards;
}
.hero-desc {
  font-size: 0.95rem; line-height: 1.85; font-weight: 300;
  color: rgba(245,240,232,0.65);
  max-width: 540px; margin: 0 auto 3rem;
  opacity: 0; animation: fade-up 0.9s 1.1s forwards;
}
.hero-btns {
  display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fade-up 0.9s 1.3s forwards;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black); border: none;
  padding: 1.1rem 2.8rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 45px rgba(201,168,76,0.5); }
.btn-ghost {
  background: transparent; border: 1px solid rgba(245,240,232,0.3);
  color: var(--white);
  padding: 1.1rem 2.8rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  z-index: 2; animation: scroll-bounce 2.5s ease-in-out infinite;
}
.hero-scroll span { font-size: 0.58rem; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gray); }
.hero-scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, var(--gold), transparent); }
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── SECTION COMMONS ─── */
section { position: relative; z-index: 1; }

.section-label {
  display: block;
  font-size: 0.62rem; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.15; margin-bottom: 1.2rem;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-body {
  font-size: 0.93rem; line-height: 1.9;
  color: rgba(245,240,232,0.6); font-weight: 300;
}
.gold-line {
  width: 60px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 2rem;
}
.gold-line.center { margin-left: auto; margin-right: auto; background: linear-gradient(to right, transparent, var(--gold), transparent); }
.center { text-align: center; }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.85s ease, transform 0.85s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── ABOUT ─── */
.about {
  padding: 9rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center center;
  filter: brightness(0.88) contrast(1.08);
}
.about-img-border { position: absolute; inset: -14px; border: 1px solid rgba(201,168,76,0.25); pointer-events: none; }
.about-img-corner { position: absolute; width: 32px; height: 32px; border-color: var(--gold); border-style: solid; }
.about-img-corner.tl { top: -18px; left: -18px; border-width: 2px 0 0 2px; }
.about-img-corner.tr { top: -18px; right: -18px; border-width: 2px 2px 0 0; }
.about-img-corner.bl { bottom: -18px; left: -18px; border-width: 0 0 2px 2px; }
.about-img-corner.br { bottom: -18px; right: -18px; border-width: 0 2px 2px 0; }
.about-tag {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  padding: 1.1rem 1.6rem;
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; line-height: 1.6;
}

/* ─── SERVICES ─── */
.services-section { padding: 8rem 4rem; background: var(--black2); }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-header { margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card {
  background: var(--black3);
  padding: 3rem 2.5rem;
  position: relative; overflow: hidden;
  transition: background 0.4s, transform 0.3s;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { background: var(--black4); }
.service-card:hover::before { opacity: 1; }
.service-num { position: absolute; top: 1.5rem; right: 2rem; font-size: 4.5rem; font-weight: 900; color: rgba(201,168,76,0.05); font-family: 'Playfair Display', serif; line-height: 1; }
.service-icon { font-size: 2.4rem; margin-bottom: 1.5rem; display: block; }
.service-name { font-family: 'Playfair Display', serif; font-size: 1.35rem; margin-bottom: 0.9rem; color: var(--white); }
.service-desc { font-size: 0.83rem; line-height: 1.8; color: rgba(245,240,232,0.52); font-weight: 300; }

/* ─── STATS ─── */
.why-section { padding: 8rem 4rem; }
.why-inner { max-width: 1100px; margin: 0 auto; }
.why-header { margin-bottom: 4rem; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; margin-top: 1rem; }
.why-item { text-align: center; }
.why-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 0.6rem;
}
.why-label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(245,240,232,0.45); font-weight: 600; }

/* ─── PACKAGES ─── */
.packages-section { padding: 8rem 4rem; background: var(--black2); }
.packages-inner { max-width: 1080px; margin: 0 auto; }
.packages-header { margin-bottom: 4rem; }
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.pkg-card {
  background: var(--black3); padding: 3rem 2rem;
  position: relative; text-align: center;
  transition: transform 0.3s;
}
.pkg-card.featured {
  background: linear-gradient(160deg, #1d1a0e 0%, #141410 100%);
  border: 1px solid rgba(201,168,76,0.4);
  transform: scaleY(1.025);
  z-index: 2;
}
.pkg-badge {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700; padding: 0.4rem 1.3rem; white-space: nowrap;
}
.pkg-name { font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.pkg-price { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.pkg-price sup { font-size: 1.1rem; vertical-align: super; }
.pkg-period { font-size: 0.72rem; color: var(--gray); margin-bottom: 2rem; }
.pkg-features { list-style: none; text-align: left; margin-bottom: 2.5rem; }
.pkg-features li {
  font-size: 0.8rem; padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(245,240,232,0.68);
  display: flex; align-items: center; gap: 0.7rem;
}
.pkg-features li::before { content: '✦'; color: var(--gold); font-size: 0.48rem; flex-shrink: 0; }
.pkg-btn {
  display: block; width: 100%; padding: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700;
  cursor: pointer; transition: all 0.3s; border: none;
  text-align: center; text-decoration: none;
}
.pkg-btn-ghost { background: transparent; border: 1px solid rgba(201,168,76,0.35); color: var(--gold); }
.pkg-btn-ghost:hover { background: rgba(201,168,76,0.08); }
.pkg-btn-gold { background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--black); }
.pkg-btn-gold:hover { box-shadow: 0 10px 35px rgba(201,168,76,0.45); }

/* ─── TEAM ─── */
.team-section { padding: 8rem 4rem; }
.team-inner { max-width: 1100px; margin: 0 auto; }
.team-header { margin-bottom: 4rem; }
.team-img-wrap { position: relative; overflow: hidden; max-width: 950px; margin: 0 auto; }
.team-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/7;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.88) contrast(1.06);
}
.team-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, transparent 55%); }
.team-caption { position: absolute; bottom: 2.5rem; left: 2.5rem; }
.team-caption h3 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); }
.team-caption p { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.25em; text-transform: uppercase; margin-top: 0.4rem; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { padding: 8rem 4rem; background: var(--black2); }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-header { margin-bottom: 4rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.testi-card { background: var(--black3); padding: 2.5rem; }
.testi-quote { font-size: 3.5rem; line-height: 1; color: rgba(201,168,76,0.18); font-family: 'Playfair Display', serif; margin-bottom: 0.8rem; }
.testi-text { font-size: 0.87rem; line-height: 1.85; color: rgba(245,240,232,0.68); font-style: italic; margin-bottom: 1.5rem; font-family: 'Playfair Display', serif; }
.testi-author { display: flex; align-items: center; gap: 0.9rem; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dark), var(--gold)); display: flex; align-items: center; justify-content: center; font-size: 0.88rem; font-weight: 700; color: var(--black); flex-shrink: 0; }
.testi-name { font-size: 0.8rem; font-weight: 600; color: var(--white); }
.testi-event { font-size: 0.68rem; color: var(--gold); letter-spacing: 0.1em; }
.testi-stars { color: var(--gold); font-size: 0.72rem; margin-bottom: 0.25rem; }

/* ─── CONTACT ─── */
.contact-section { padding: 8rem 4rem; }
.contact-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.contact-gold-box {
  border: 1px solid rgba(201,168,76,0.22);
  padding: 4rem;
  position: relative;
  background: linear-gradient(160deg, rgba(201,168,76,0.04) 0%, transparent 55%);
  text-align: left;
}
.contact-corner { position: absolute; width: 22px; height: 22px; border-color: var(--gold); border-style: solid; }
.contact-corner.tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.contact-corner.tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.contact-corner.bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.contact-corner.br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }
.contact-form { display: flex; flex-direction: column; gap: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-label { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.18);
  color: var(--white);
  padding: 0.9rem 1.1rem;
  font-family: 'Montserrat', sans-serif; font-size: 0.83rem;
  outline: none; transition: border-color 0.3s; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-select option { background: #161616; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black); border: none;
  padding: 1.15rem 3.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  cursor: pointer; transition: all 0.3s;
  align-self: center; margin-top: 0.5rem;
}
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 12px 45px rgba(201,168,76,0.45); }

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 3rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo img { height: 40px; opacity: 0.75; }
.footer-text { font-size: 0.68rem; color: var(--gray); }
.footer-links { display: flex; gap: 1.8rem; }
.footer-links a { font-size: 0.68rem; color: var(--gray); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.7rem 1.5rem; }
  .nav-links { display: none; }
  .about { grid-template-columns: 1fr; gap: 3rem; padding: 6rem 1.5rem; }
  .services-section, .packages-section, .testimonials-section { padding: 5rem 1.5rem; }
  .services-grid, .packages-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .team-section, .contact-section, .why-section { padding: 5rem 1.5rem; }
  .contact-gold-box { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
  .pkg-card.featured { transform: none; }
  .ring-4, .ring-5 { display: none; }
}

/* ─── PKG NOTE ─── */
.pkg-note {
  font-size: 0.68rem;
  color: rgba(201,168,76,0.7);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  min-height: 2.5em;
}
.vip-price {
  font-size: 2.2rem !important;
  padding-top: 0.6rem;
}

/* ─── GEAR / TECHNIKA ─── */
.gear-section {
  padding: 8rem 4rem;
  background: var(--black2);
}
.gear-inner { max-width: 1200px; margin: 0 auto; }
.gear-header { margin-bottom: 4rem; }

.gear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.gear-card {
  background: var(--black3);
  padding: 2.5rem;
  position: relative;
  transition: background 0.35s;
}
.gear-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.4s;
}
.gear-card:hover { background: var(--black4); }
.gear-card:hover::before { opacity: 1; }

.gear-cat-label {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.gear-cat-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.gear-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.gear-list li {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3rem 0.5rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
}
.gear-list li:last-child { border-bottom: none; }

.gear-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  flex: 1 1 auto;
}
.gear-qty {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.gear-desc {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.45);
  font-weight: 300;
  width: 100%;
  margin-top: 0.1rem;
}

@media (max-width: 960px) {
  .gear-section { padding: 5rem 1.5rem; }
  .gear-grid { grid-template-columns: 1fr; }
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold);
  transition: all 0.3s;
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-right { display: flex; align-items: center; gap: 1rem; }

/* ─── MOBILE MENU ─── */
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 120;
  backdrop-filter: blur(4px);
}
.mobile-overlay.open { display: block; }

.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: #0e0e0e;
  border-left: 1px solid rgba(201,168,76,0.2);
  z-index: 130;
  padding: 5rem 2.5rem 3rem;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.mobile-menu.open { right: 0; }

.mobile-close {
  position: absolute; top: 1.2rem; right: 1.5rem;
  background: none; border: none;
  color: var(--gold); font-size: 1.3rem;
  cursor: pointer; line-height: 1;
}

.mobile-links {
  list-style: none;
  display: flex; flex-direction: column; gap: 0;
}
.mobile-links li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-link {
  display: block;
  padding: 1.1rem 0;
  color: rgba(245,240,232,0.8);
  text-decoration: none;
  font-size: 0.9rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
  transition: color 0.3s;
}
.mobile-link:hover { color: var(--gold-light); }
.mobile-link-cta {
  color: var(--gold) !important;
  margin-top: 1rem;
  border: 1px solid rgba(201,168,76,0.3) !important;
  padding: 1rem !important;
  text-align: center;
}

/* ─── PKG IDEAL ─── */
.pkg-ideal {
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(245,240,232,0.5);
  font-style: italic;
  margin-bottom: 1.5rem;
  padding: 0.8rem 1rem;
  border-left: 2px solid rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.04);
}

/* ─── GEAR ICON ─── */
.gear-icon {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  display: block;
  filter: none;
}

/* ─── TEAM MEMBERS ─── */
.team-members {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 0;
  flex-wrap: wrap;
}
.team-member {
  flex: 1;
  min-width: 140px;
  max-width: 200px;
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(201,168,76,0.1);
  position: relative;
  transition: background 0.3s;
}
.team-member:last-child { border-right: none; }
.team-member:hover { background: rgba(201,168,76,0.04); }

.featured-member {
  background: rgba(201,168,76,0.05);
  border-top: 2px solid var(--gold);
}
.member-crown {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: block;
  animation: spin-slow 8s linear infinite;
}
@keyframes spin-slow {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.3); }
  100% { transform: rotate(360deg) scale(1); }
}

.member-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.4rem;
  font-weight: 700;
}
.member-aka {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.5);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-style: italic;
}
.member-role {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ─── CONTACT LAYOUT ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
}
.contact-info { padding-top: 0.5rem; }
.contact-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.contact-info-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.contact-info-list li {
  display: flex; gap: 1rem; align-items: flex-start;
}
.ci-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.ci-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.2rem;
}
.ci-value {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.8);
  text-decoration: none;
  transition: color 0.3s;
  display: block;
}
.ci-value:hover { color: var(--gold-light); }

/* ─── RESPONSIVE ADDITIONS ─── */
@media (max-width: 960px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-cta { display: none; }

  .team-members { gap: 0; }
  .team-member { min-width: 45%; border-bottom: 1px solid rgba(201,168,76,0.1); }

  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .contact-info { order: 2; }
  .contact-gold-box { order: 1; }
}

@media (max-width: 480px) {
  .team-member { min-width: 100%; border-right: none; }
}

/* ─── TOP BAR ─── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 32px;
  background: #050505;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
}
.topbar-back {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s;
}
.topbar-back:hover { color: var(--gold-light); }

.topbar-sites {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.topbar-sep {
  color: rgba(255,255,255,0.15);
  font-size: 0.65rem;
}
.topbar-site {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  transition: color 0.25s;
  padding-bottom: 1px;
}
a.topbar-site:hover { color: var(--white); }
.topbar-site.active {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
}

/* ─── FOOTER FAMILY BAR ─── */
.footer-family {
  background: #050505;
  border-top: 1px solid rgba(201,168,76,0.1);
  text-align: center;
  padding: 0.9rem 2rem;
  font-size: 0.68rem;
  color: rgba(245,240,232,0.35);
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.footer-family span { color: rgba(255,255,255,0.15); }
.footer-family a {
  color: rgba(245,240,232,0.5);
  text-decoration: none;
  transition: color 0.25s;
  font-weight: 600;
}
.footer-family a:hover { color: var(--gold-light); }

@media (max-width: 960px) {
  .topbar { padding: 0 1rem; }
  .topbar-back { font-size: 0.58rem; }
}

/* ═══════════════════════════════════════
   MOBILE OPTIMALIZÁLÁS
═══════════════════════════════════════ */

/* Safe area – notch/island support */
@supports (padding: max(0px)) {
  nav { padding-left: max(4rem, env(safe-area-inset-left)); padding-right: max(4rem, env(safe-area-inset-right)); }
  .topbar { padding-left: max(2rem, env(safe-area-inset-left)); padding-right: max(2rem, env(safe-area-inset-right)); }
  footer, .footer-family { padding-left: max(2rem, env(safe-area-inset-left)); padding-right: max(2rem, env(safe-area-inset-right)); padding-bottom: max(1rem, env(safe-area-inset-bottom)); }
}

/* Touch targets – minimum 44x44px minden interaktív elemen */
.nav-cta, .btn-primary, .btn-ghost, .pkg-btn, .form-submit,
.mobile-link, .topbar-back, .topbar-site,
.footer-links a, .footer-family a, .ci-value {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hamburger { min-width: 44px; min-height: 44px; justify-content: center; }
.mobile-close { min-width: 44px; min-height: 44px; }

/* Mobil szövegméret – ne skálázzon iOS */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* Smooth scroll iOS-on */
html { -webkit-overflow-scrolling: touch; }

/* Focus láthatóság – akadálymentesség */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

@media (max-width: 480px) {
  /* Hero */
  .hero { padding: 0 1.2rem; }
  .hero-title { font-size: clamp(2.4rem, 11vw, 3.5rem); }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 280px; justify-content: center; }

  /* Sections */
  .about { padding: 5rem 1.2rem; }
  .services-section, .packages-section, .gear-section,
  .testimonials-section, .why-section, .team-section, .contact-section { padding: 4rem 1.2rem; }

  /* Typography */
  .section-title { font-size: clamp(1.7rem, 7vw, 2.5rem); }

  /* Packages */
  .pkg-card.featured { transform: none; }
  .pkg-price { font-size: 2.2rem; }

  /* Gear */
  .gear-card { padding: 1.8rem 1.2rem; }

  /* Team */
  .team-member { min-width: 100%; border-right: none; padding: 1.2rem 0.8rem; }

  /* Testimonials */
  .testi-card { padding: 1.8rem 1.2rem; }

  /* Contact */
  .contact-gold-box { padding: 1.5rem 1.2rem; }
  .form-input, .form-select, .form-textarea { font-size: 16px; } /* iOS zoom prevention */

  /* Why grid */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .why-number { font-size: 3rem; }

  /* Top bar – kisebb mobilon */
  .topbar { height: 28px; }
  nav { top: 28px; }

  /* Nav padding */
  nav { padding: 0.8rem 1.2rem; }
  nav.scrolled { padding: 0.6rem 1.2rem; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 2.2rem; }
  .topbar-back span { display: none; }
}

/* Tablet – 601–960px */
@media (min-width: 601px) and (max-width: 960px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .gear-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
  .team-members { flex-wrap: wrap; }
  .team-member { min-width: 33%; }
}

/* Print */
@media print {
  .topbar, nav, .hero-scroll, #starfield, .hamburger,
  .mobile-menu, .mobile-overlay { display: none !important; }
  body { background: white; color: black; }
  .hero { min-height: auto; padding: 2rem; }
}

/* ═══════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: rgba(10,10,10,0.97);
  border-top: 1px solid rgba(201,168,76,0.3);
  backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  padding: 0;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner.hidden  { transform: translateY(110%); }

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 260px; }
.cookie-title {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
}
.cookie-text p {
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(245,240,232,0.6);
  font-weight: 300;
  margin: 0;
}
.cookie-link {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}
.cookie-link:hover { color: var(--gold-light); }

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  min-height: 44px;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.cookie-accept {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
}
.cookie-accept:hover { box-shadow: 0 6px 24px rgba(201,168,76,0.4); transform: translateY(-1px); }
.cookie-decline {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.3);
  color: rgba(245,240,232,0.5);
}
.cookie-decline:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 600px) {
  .cookie-inner { padding: 1.2rem 1.2rem; gap: 1rem; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* ═══════════════════════════════════════
   GEAR TOOLTIP – FIXED POSITION
═══════════════════════════════════════ */

.has-tooltip { position: relative; }

/* ℹ gomb */
.gear-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
  user-select: none;
  transition: background 0.2s, color 0.2s;
}
.has-tooltip:hover .gear-hint {
  background: var(--gold);
  color: var(--black);
}

/* Popup – fixed, JS állítja be a pozíciót CSS var-on keresztül */
.gear-popup {
  display: none;
  position: fixed;
  left: var(--gp-left, 0px);
  top: var(--gp-top, 0px);
  width: 280px;
  background: #111111;
  border: 1px solid rgba(201,168,76,0.4);
  box-shadow: 0 16px 48px rgba(0,0,0,0.85);
  z-index: 99999;
  pointer-events: none;
}
.gear-popup.gp-visible {
  display: block;
}

/* Nyílhegy – balra néz (popup a sortól jobbra van) */
.gear-popup::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 100%;
  border: 7px solid transparent;
  border-right-color: rgba(201,168,76,0.4);
}
.gear-popup::after {
  content: '';
  position: absolute;
  top: 21px;
  right: 100%;
  border: 6px solid transparent;
  border-right-color: #111111;
  margin-right: -1px;
  z-index: 1;
}
/* Ha balra nyílik a popup */
.gear-popup.gp-left::before {
  right: auto; left: 100%;
  border-right-color: transparent;
  border-left-color: rgba(201,168,76,0.4);
}
.gear-popup.gp-left::after {
  right: auto; left: 100%;
  border-right-color: transparent;
  border-left-color: #111111;
  margin-right: 0; margin-left: -1px;
}

/* Popup belső tartalom */
.gp-img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: #1a1a1a;
  display: block;
  padding: 1rem;
}
.gp-noimg {
  width: 100%;
  height: 70px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0.5;
}
.gp-body {
  padding: 0.9rem 1rem;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.gp-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.gp-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.gp-specs li {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.6);
  font-weight: 300;
  line-height: 1.5;
  padding-left: 0.8rem;
  position: relative;
}
.gp-specs li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}

@media (max-width: 960px) {
  .gear-popup { width: 240px; }
  .gp-img { height: 120px; }
}


/* ℹ gomb */
.gear-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: auto;
  user-select: none;
  transition: background 0.2s, color 0.2s;
}
.has-tooltip:hover .gear-hint {
  background: var(--gold);
  color: var(--black);
}

/* Popup alap – rejtett, jobbra nyílik */
.gear-popup {
  display: none;
  position: absolute;
  left: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  background: #111111;
  border: 1px solid rgba(201,168,76,0.4);
  box-shadow: 0 16px 48px rgba(0,0,0,0.8);
  z-index: 9999;
  pointer-events: none;
}

/* Hover-re megjelenik */
.has-tooltip:hover .gear-popup {
  display: block;
}

/* Bal oldali nyílhegy (popup jobb széle felé mutató nyíl a li felé) */
.gear-popup::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-right-color: rgba(201,168,76,0.4);
}
.gear-popup::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%) translateX(2px);
  border: 6px solid transparent;
  border-right-color: #111111;
  z-index: 1;
}

/* Ha a gear-card jobb szélén van (páratlan oszlop jobbra, páros balra)
   A gear-grid 3 oszlopos – a jobb oldali kártyáknál a popup balra nyíljon */
.gear-grid .gear-card:nth-child(3n) .gear-popup,
.gear-grid .gear-card:nth-child(3n-0) .gear-popup {
  left: auto;
  right: calc(100% + 14px);
}
.gear-grid .gear-card:nth-child(3n) .gear-popup::before,
.gear-grid .gear-card:nth-child(3n-0) .gear-popup::before {
  right: auto;
  left: 100%;
  border-right-color: transparent;
  border-left-color: rgba(201,168,76,0.4);
}
.gear-grid .gear-card:nth-child(3n) .gear-popup::after,
.gear-grid .gear-card:nth-child(3n-0) .gear-popup::after {
  right: auto;
  left: 100%;
  transform: translateY(-50%) translateX(-2px);
  border-right-color: transparent;
  border-left-color: #111111;
}

/* Popup belső tartalom */
.gp-img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: #1a1a1a;
  display: block;
  padding: 1rem;
}
.gp-noimg {
  width: 100%;
  height: 70px;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0.5;
}
.gp-body {
  padding: 0.9rem 1rem;
  border-top: 1px solid rgba(201,168,76,0.12);
}
.gp-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.gp-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.gp-specs li {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.6);
  font-weight: 300;
  line-height: 1.5;
  padding-left: 0.8rem;
  position: relative;
}
.gp-specs li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Mobil – visszaváltunk felülre nyílóra, mert nincs elég hely oldalra */
@media (max-width: 960px) {
  .gear-popup {
    left: 0 !important;
    right: auto !important;
    top: auto !important;
    bottom: calc(100% + 8px) !important;
    transform: none !important;
    width: 240px;
  }
  .gear-popup::before {
    top: 100%; right: auto; left: 20px;
    transform: none;
    border-right-color: transparent;
    border-top-color: rgba(201,168,76,0.4);
    border-bottom-color: transparent;
  }
  .gear-popup::after {
    top: 100%; right: auto; left: 21px;
    transform: none;
    border-right-color: transparent;
    border-top-color: #111111;
    border-bottom-color: transparent;
  }
  .gp-img { height: 120px; }
}
  .gp-img { height: 120px; }
}

/* Body-szintű popup: alapból rejtett, gp-visible-re látszik */
.gear-popup { display: none; }
.gear-popup.gp-visible { display: block; }
