/* ===== Happyexplorer — private casino event venue ===== */
:root {
  --blaze-orange: #fb6107ff;
  --golden-glow: #f3de2cff;
  --lime-moss: #7cb518ff;
  --forest-moss: #5c8001ff;
  --sunflower-gold: #fbb02dff;

  --bg: #0b0a08;
  --bg-soft: #14120e;
  --bg-card: #1a1712;
  --line: rgba(251, 97, 7, 0.2);
  --gold: var(--blaze-orange);
  --gold-soft: var(--sunflower-gold);
  --cream: #f4ead8;
  --muted: #b8ad97;
  --danger: var(--blaze-orange);
  --radius: 14px;
  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--gold); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-soft); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 84px 0; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 18px;
}

.section-lead {
  color: var(--muted);
  max-width: 720px;
  font-size: 17px;
  margin-bottom: 40px;
}

.text-center { text-align: center; }
.text-center .section-lead { margin-left: auto; margin-right: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-gold {
  background: linear-gradient(135deg, var(--sunflower-gold), var(--blaze-orange));
  color: #171205;
}
.btn-gold:hover { color: #171205; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(251, 97, 7, .28); }
.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover { background: rgba(251, 97, 7, .1); color: var(--gold-soft); transform: translateY(-2px); }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: rgba(11, 10, 8, .97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 20px 24px;
  transform: translateY(110%);
  transition: transform .35s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p { color: var(--muted); font-size: 14px; margin: 0; max-width: 720px; }
.cookie-banner a { color: var(--gold); font-weight: 600; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

@media (max-width: 600px) {
  .cookie-banner-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-actions { justify-content: center; }
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 10, 8, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo img { width: 44px; height: 44px; object-fit: contain; }
.logo-text {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: .02em;
  line-height: 1.1;
}
.logo-text span { display: block; font-family: var(--font-body); font-size: 10px; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background .2s ease, color .2s ease;
}
.main-nav a:hover { background: rgba(251, 97, 7, .12); color: var(--gold-soft); }
.main-nav a.active { color: var(--gold); background: rgba(251, 97, 7, .1); }

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-size: 13px;
  line-height: 1.4;
  flex-shrink: 0;
}
.header-contact a { color: var(--cream); font-weight: 600; font-size: 14px; }
.header-contact a:hover { color: var(--gold-soft); }
.header-contact .hours { color: var(--muted); font-size: 12px; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
}
.burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold);
  transition: transform .25s ease, opacity .25s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 90px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.38) saturate(1.05);
  transform: scale(1.03);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,10,8,.55) 0%, rgba(11,10,8,.25) 45%, var(--bg) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 780px; }
.hero h1 { font-size: clamp(32px, 5.4vw, 60px); margin-bottom: 22px; }
.hero p.lead { font-size: 18px; color: var(--cream); opacity: .88; margin-bottom: 32px; max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.offline-badge {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: rgba(11, 10, 8, .6);
  backdrop-filter: blur(6px);
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 700;
  margin-bottom: 26px;
}
.offline-badge .dot { color: var(--gold); }

.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-chips span {
  font-size: 13px;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(20, 18, 14, .6);
}

.page-hero {
  position: relative;
  padding: 110px 0 70px;
  overflow: hidden;
}
.page-hero .hero-bg { filter: brightness(.3); }
.page-hero h1 { font-size: clamp(30px, 4.6vw, 50px); margin-bottom: 18px; position: relative; z-index: 2; }
.page-hero .lead { position: relative; z-index: 2; color: var(--cream); opacity: .85; max-width: 700px; font-size: 17px; margin-bottom: 28px; }
.page-hero .container { position: relative; z-index: 2; }

/* ===== Warning / notice blocks ===== */
.notice {
  border: 1px solid rgba(251, 97, 7, .55);
  background: linear-gradient(135deg, rgba(251, 97, 7, .16), rgba(251, 97, 7, .05));
  border-radius: var(--radius);
  padding: 26px 30px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.notice svg { flex-shrink: 0; margin-top: 2px; }
.notice strong { color: var(--sunflower-gold); }
.notice p { color: var(--cream); opacity: .92; font-size: 15px; }
.notice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.notice-title { font-family: var(--font-head); font-size: 20px; color: var(--gold-soft); margin-bottom: 4px; }
.notice-sub { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }

/* ===== Cards / grids ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 97, 7, .45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
}
.card h3 { font-size: 21px; margin-bottom: 12px; color: var(--gold-soft); }
.card p { color: var(--muted); font-size: 15px; }
.card ul { list-style: none; margin-top: 14px; }
.card ul li {
  color: var(--cream);
  font-size: 14px;
  padding: 6px 0 6px 26px;
  position: relative;
  opacity: .9;
}
.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 14px;
  height: 2px;
  background: var(--gold);
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 97, 7, .12);
  border: 1px solid var(--line);
  margin-bottom: 20px;
}

/* image cards */
.img-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.img-card:hover { transform: translateY(-6px); border-color: rgba(251, 97, 7, .45); }
.img-card .img-wrap { height: 210px; overflow: hidden; }
.img-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.img-card:hover .img-wrap img { transform: scale(1.06); }
.img-card .card-body { padding: 26px; }
.img-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--gold-soft); }
.img-card p { color: var(--muted); font-size: 14px; }

/* ===== Split block ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split .split-img {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.split .split-img img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }
.split h2 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 18px; }
.split p { color: var(--muted); margin-bottom: 16px; }

.check-list { list-style: none; margin: 22px 0 30px; }
.check-list li {
  padding: 9px 0 9px 34px;
  position: relative;
  color: var(--cream);
  font-size: 15px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(124, 181, 24, .18);
  border: 1px solid var(--lime-moss);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 17px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--lime-moss);
  border-bottom: 2px solid var(--lime-moss);
  transform: rotate(-45deg);
}

/* ===== Stats ===== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat {
  text-align: center;
  padding: 30px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
}
.stat .num { font-family: var(--font-head); font-size: 40px; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat .label { font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* ===== Testimonials ===== */
.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial .stars { color: var(--gold); letter-spacing: 4px; font-size: 15px; }
.testimonial p { color: var(--cream); opacity: .88; font-size: 15px; font-style: italic; }
.testimonial .who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.testimonial .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, #3a2f1a, #211a0e);
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); color: var(--gold); font-size: 18px;
}
.testimonial .who .name { font-weight: 600; font-size: 14px; }
.testimonial .who .role { color: var(--muted); font-size: 12px; }

/* ===== CTA band ===== */
.cta-band {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 70px 50px;
  text-align: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(20, 17, 12, .94), rgba(36, 28, 14, .9)),
    var(--bg-card);
}
.cta-band h2 { font-size: clamp(26px, 3.6vw, 40px); margin-bottom: 16px; }
.cta-band p { color: var(--muted); max-width: 600px; margin: 0 auto 30px; }

/* ===== Packages ===== */
.package-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s ease, border-color .25s ease;
}
.package-card:hover { transform: translateY(-6px); border-color: rgba(251, 97, 7, .5); }
.package-card.featured { border-color: var(--gold); background: linear-gradient(180deg, rgba(251,97,7,.08), var(--bg-card)); }
.package-card .tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--sunflower-gold), var(--blaze-orange));
  color: #171205;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.package-card h3 { font-size: 23px; color: var(--gold-soft); margin-bottom: 8px; }
.package-card .price { font-family: var(--font-head); font-size: 34px; color: var(--gold); margin-bottom: 4px; }
.package-card .price small { font-family: var(--font-body); font-size: 13px; color: var(--muted); font-weight: 400; }
.package-card .desc { color: var(--muted); font-size: 14px; margin: 12px 0 18px; }
.package-card ul { list-style: none; margin-bottom: 26px; }
.package-card ul li {
  font-size: 14px;
  padding: 7px 0 7px 26px;
  position: relative;
  color: var(--cream);
  opacity: .92;
  border-bottom: 1px dashed rgba(251, 97, 7, .12);
}
.package-card ul li::before { content: "♠"; position: absolute; left: 2px; color: var(--sunflower-gold); font-size: 13px; }
.package-card .btn { margin-top: auto; justify-content: center; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step {
  position: relative;
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-soft);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-head);
  font-size: 34px;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; }

/* ===== Forms ===== */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-grid .full { grid-column: 1 / -1; }
label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .04em; margin-bottom: 8px; color: var(--gold-soft); }
input, select, textarea {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(251, 97, 7, .15);
}
textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }
.form-success {
  display: none;
  margin-top: 18px;
  padding: 16px 20px;
  border-radius: 10px;
  border: 1px solid rgba(124, 181, 24, .5);
  background: rgba(124, 181, 24, .14);
  color: #d7ecab;
  font-size: 14px;
}
.form-success.show { display: block; }

/* ===== Contact info blocks ===== */
.contact-tile {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-tile h3 { font-size: 17px; color: var(--gold-soft); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.contact-tile p, .contact-tile a { font-size: 15px; color: var(--cream); opacity: .9; }
.contact-tile a:hover { color: var(--gold-soft); }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-soft);
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.socials a:hover { border-color: var(--gold); background: rgba(251, 97, 7, .12); transform: translateY(-3px); }
.socials svg { fill: var(--gold); }

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  height: 380px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.6) invert(.9) hue-rotate(180deg) brightness(.85); }

/* ===== Experience tabs ===== */
.exp-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.exp-tab {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-soft);
  color: var(--cream);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
}
.exp-tab:hover { border-color: var(--gold); color: var(--gold-soft); }
.exp-tab.active { background: linear-gradient(135deg, var(--sunflower-gold), var(--blaze-orange)); color: #171205; border-color: transparent; }
.exp-panel { display: none; }
.exp-panel.active { display: grid; animation: fadeUp .4s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ===== FAQ ===== */
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; background: var(--bg-card); overflow: hidden; }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 18px;
  padding: 22px 26px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q::after { content: "+"; color: var(--gold); font-size: 24px; font-family: var(--font-body); transition: transform .25s ease; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 26px 22px; color: var(--muted); font-size: 15px; }

/* ===== Legal pages ===== */
.legal-body h2 { font-size: 24px; margin: 40px 0 14px; color: var(--gold-soft); }
.legal-body h3 { font-size: 18px; margin: 26px 0 10px; }
.legal-body p, .legal-body li { color: var(--muted); font-size: 15px; margin-bottom: 12px; }
.legal-body ul, .legal-body ol { padding-left: 24px; margin-bottom: 16px; }
.legal-body li { margin-bottom: 8px; }
.legal-updated { font-size: 13px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 30px; }

/* ===== Gallery strip ===== */
.gallery-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-strip.cols-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-strip .g-img { border-radius: 12px; overflow: hidden; border: 1px solid var(--line); height: 220px; }
.gallery-strip .g-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-strip .g-img:hover img { transform: scale(1.07); }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--line);
  background: #080706;
  padding: 70px 0 0;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding-bottom: 50px;
}
.footer-brand img { width: 52px; margin-bottom: 16px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 300px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--muted); font-size: 14px; }
.footer-col ul li a:hover { color: var(--gold-soft); }
.footer-contact p { color: var(--muted); font-size: 14px; margin-bottom: 10px; }
.footer-contact a { color: var(--cream); }
.footer-legal {
  border-top: 1px solid rgba(251, 97, 7, .1);
  padding: 26px 0;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}
.footer-legal .legal-lines p { margin-bottom: 4px; }
.footer-copy {
  border-top: 1px solid rgba(251, 97, 7, .1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

/* ===== Section variants ===== */
.section-soft { background: var(--bg-soft); border-top: 1px solid rgba(251,97,7,.08); border-bottom: 1px solid rgba(251,97,7,.08); }
.divider-gold { width: 64px; height: 3px; background: linear-gradient(90deg, var(--gold), transparent); border-radius: 2px; margin-bottom: 24px; }
.text-center .divider-gold { margin-left: auto; margin-right: auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); width: 120px; }

/* ===== Responsive ===== */
@media (max-width: 1020px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip, .gallery-strip.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .header-contact { display: none; }
}

@media (max-width: 820px) {
  section { padding: 60px 0; }
  .main-nav {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(11, 10, 8, .98);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 26px;
    gap: 4px;
    transform: translateY(-130%);
    transition: transform .3s ease;
    z-index: 99;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 16px; font-size: 16px; }
  .burger { display: flex; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .notice-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .exp-panel.active { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-strip, .gallery-strip.cols-3 { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 30px 0 70px; }
  .cta-band { padding: 50px 26px; }
  .form-card { padding: 28px 22px; }
  .offline-badge {
    gap: 0;
  }
  .offline-badge .dot {
    visibility: hidden;
  }
  .hero h1 {
    margin-bottom: 20px;
  }
  .hero p.lead {
    font-size: 16px;
  }
}
