/* ============================================================
   DIVERSIONARG.COM — Amber/Dark Chocolate Premium CSS
   Theme: #D4570A amber, #1A0A00 dark chocolate, #FFF8F0 cream
   Fonts: Outfit (body) + Cormorant Garamond (headings)
   Layout: Sidebar Navigation (desktop) + Top Bar (mobile)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600;1,700&display=swap');

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amber:       #D4570A;
  --amber-dark:  #A83E04;
  --amber-light: #F2812B;
  --amber-glow:  #FF9A4D;
  --gold:        #C9951A;
  --dark:        #1A0A00;
  --dark-2:      #2C1200;
  --dark-3:      #3D1F05;
  --cream:       #FFF8F0;
  --cream-2:     #FDEFD8;
  --text:        #2C1200;
  --text-muted:  #7A5533;
  --sidebar-w:   260px;
  --radius:      16px;
  --radius-lg:   28px;
  --shadow:      0 8px 32px rgba(212,87,10,.18);
  --shadow-lg:   0 20px 60px rgba(26,10,0,.25);
  --transition:  .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--cream);
  color: var(--text);
  display: flex;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 3px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { line-height: 1.7; }
a  { color: inherit; text-decoration: none; }

/* ── SIDEBAR ── */
.sidebar {
  width: var(--sidebar-w);
  background: var(--dark);
  position: fixed;
  left: 0; top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 900;
  border-right: 1px solid var(--dark-3);
  transition: transform var(--transition);
}

.sidebar-logo {
  padding: 32px 24px 24px;
  border-bottom: 1px solid var(--dark-3);
}

.sidebar-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-logo .logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--amber), var(--gold));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}

.sidebar-logo .logo-text {
  display: flex;
  flex-direction: column;
}

.sidebar-logo .logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
}

.sidebar-logo .logo-sub {
  font-size: .65rem;
  color: var(--amber-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sidebar-nav {
  padding: 24px 0;
  flex: 1;
  overflow-y: auto;
}

.sidebar-nav ul { list-style: none; }

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 24px;
  color: #B0906A;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .5px;
  transition: all .25s;
  border-left: 3px solid transparent;
  position: relative;
}

.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: var(--amber-glow);
  background: rgba(212,87,10,.08);
  border-left-color: var(--amber);
}

.sidebar-nav .nav-icon {
  width: 20px;
  text-align: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.sidebar-divider {
  height: 1px;
  background: var(--dark-3);
  margin: 8px 24px;
}

.sidebar-label {
  padding: 8px 24px 4px;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  font-weight: 600;
}

.sidebar-cta {
  padding: 20px 24px;
  border-top: 1px solid var(--dark-3);
}

.sidebar-cta a {
  display: block;
  background: linear-gradient(135deg, var(--amber), var(--gold));
  color: #fff;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: opacity .25s;
}
.sidebar-cta a:hover { opacity: .85; }

/* ── MAIN CONTENT ── */
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  min-width: 0;
}

/* ── MOBILE TOP BAR ── */
.mobile-topbar {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  background: var(--dark);
  z-index: 800;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-bottom: 1px solid var(--dark-3);
}

.mobile-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
}

.mobile-logo span { color: var(--amber-light); }

.burger-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.burger-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all .3s;
}

.burger-btn.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger-btn.open span:nth-child(2) { opacity: 0; }
.burger-btn.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile drawer overlay */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 850;
}
.sidebar-overlay.show { display: block; }

/* ── HERO SECTION ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  position: relative;
}

.hero-left {
  background: var(--dark-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 60px;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,87,10,.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,87,10,.15);
  border: 1px solid rgba(212,87,10,.4);
  color: var(--amber-glow);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}

.hero-title {
  color: var(--cream);
  margin-bottom: 20px;
}

.hero-title em {
  font-style: italic;
  color: var(--amber-light);
}

.hero-desc {
  color: #B0906A;
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 420px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-amber {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s;
  box-shadow: 0 6px 24px rgba(212,87,10,.4);
}
.btn-amber:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(212,87,10,.5); }

.btn-outline-cream {
  border: 2px solid rgba(255,248,240,.3);
  color: var(--cream);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 600;
  transition: all .3s;
}
.btn-outline-cream:hover { background: rgba(255,248,240,.1); }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--dark-3);
}

.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber-glow);
  display: block;
  line-height: 1;
}

.hero-stat-lbl {
  font-size: .75rem;
  color: #7A5533;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-top: 4px;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: 16px;
  padding: 20px 24px;
  backdrop-filter: blur(8px);
}

.hero-overlay-badge .rating {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber-glow);
  line-height: 1;
}

.hero-overlay-badge .rating-label {
  font-size: .75rem;
  color: #B0906A;
  margin-top: 4px;
}

.hero-stars {
  color: var(--gold);
  font-size: .9rem;
  margin: 6px 0 2px;
}

/* ── TICKER ── */
.ticker {
  background: var(--amber);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: tickerScroll 25s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .5px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.ticker-dot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,.5);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── FEATURED ACTS ── */
.featured-acts {
  padding: 100px 60px;
  background: var(--dark);
}

.section-eyebrow {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--amber-light);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title-light { color: var(--cream); }
.section-title-dark  { color: var(--dark); }

.featured-acts .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
}

.featured-acts .section-header p {
  color: #7A5533;
  max-width: 360px;
  font-size: .95rem;
}

.fa-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.fa-large { grid-row: span 2; }

.fa-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--dark-2);
  transition: transform .35s;
}
.fa-card:hover { transform: scale(1.02); }

.fa-large { min-height: 520px; }
.fa-stack { min-height: 240px; }

.fa-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}
.fa-card:hover img { transform: scale(1.06); }

.fa-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,10,0,.9) 0%, rgba(26,10,0,.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.fa-tag {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  width: fit-content;
}

.fa-card-overlay h3 {
  color: var(--cream);
  margin-bottom: 6px;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
}

.fa-card-overlay p {
  color: #B0906A;
  font-size: .85rem;
}

/* ── ABOUT BIG ── */
.about-big {
  padding: 100px 60px;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}

.about-badge-float {
  position: absolute;
  top: 32px; right: -20px;
  background: var(--dark);
  color: var(--cream);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.about-badge-float .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--amber-glow);
  line-height: 1;
}

.about-badge-float .lbl {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #7A5533;
  margin-top: 4px;
}

.about-content { padding-right: 20px; }

.about-content h2 { margin-bottom: 20px; }

.about-content p {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.pillar {
  background: var(--cream-2);
  border-radius: 12px;
  padding: 20px;
  border-left: 3px solid var(--amber);
}

.pillar-icon { font-size: 1.4rem; margin-bottom: 8px; }

.pillar h4 {
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.pillar p { font-size: .8rem; color: var(--text-muted); }

/* ── PACKAGES ROW ── */
.pkg-row {
  padding: 100px 60px;
  background: var(--dark-2);
}

.pkg-row .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.pkg-row .section-header p {
  color: #7A5533;
  max-width: 480px;
  margin: 0 auto;
}

.pkg-v4-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pkg-v4 {
  background: var(--dark-3);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212,87,10,.15);
  transition: transform .35s, box-shadow .35s;
  position: relative;
}

.pkg-v4:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0,0,0,.4);
}

.pkg-v4.featured {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber);
}

.pkg-v4-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--amber);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.pkg-v4-img {
  height: 180px;
  overflow: hidden;
}
.pkg-v4-img img { width: 100%; height: 100%; object-fit: cover; }

.pkg-v4-body { padding: 28px; }

.pkg-v4-body h3 {
  color: var(--cream);
  margin-bottom: 6px;
  font-size: 1.4rem;
}

.pkg-v4-desc {
  color: #7A5533;
  font-size: .85rem;
  margin-bottom: 20px;
}

.pkg-v4-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--amber-glow);
  line-height: 1;
  margin-bottom: 4px;
}

.pkg-v4-price-note {
  font-size: .75rem;
  color: #7A5533;
  margin-bottom: 20px;
}

.pkg-v4-features {
  list-style: none;
  margin-bottom: 24px;
}
.pkg-v4-features li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .85rem;
  color: #B0906A;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pkg-v4-features li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
}

.pkg-v4 .btn-amber { width: 100%; justify-content: center; border-radius: 10px; }

/* ── GALLERY ROW ── */
.gallery-row {
  padding: 100px 60px;
  background: var(--cream);
}

.gallery-row .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.gr-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
}

.gr-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.gr-item:nth-child(1) { grid-column: span 2; }
.gr-item:nth-child(4) { grid-column: span 2; }

.gr-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}
.gr-item:hover img { transform: scale(1.07); }

/* ── TESTIMONIALS ── */
.testi-4 {
  padding: 100px 60px;
  background: var(--dark);
}

.testi-4 .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.testi-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.testi-card-v4 {
  background: var(--dark-2);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--dark-3);
  position: relative;
  transition: border-color .3s;
}
.testi-card-v4:hover { border-color: rgba(212,87,10,.4); }

.testi-card-v4::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: rgba(212,87,10,.15);
  position: absolute;
  top: 10px; left: 20px;
  line-height: 1;
}

.testi-stars {
  color: var(--gold);
  font-size: .85rem;
  margin-bottom: 12px;
}

.testi-text {
  color: #B0906A;
  font-size: .88rem;
  line-height: 1.65;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: .9rem;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 700;
  color: var(--cream);
  font-size: .9rem;
}
.testi-loc { font-size: .75rem; color: #5A3A20; }

/* ── CTA FULL ── */
.cta-full {
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-full img.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.cta-full::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,10,0,.92) 0%, rgba(168,62,4,.6) 100%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 60px;
  max-width: 700px;
}

.cta-inner h2 {
  color: var(--cream);
  margin-bottom: 20px;
}

.cta-inner p {
  color: #D4A87A;
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER V4 ── */
.footer-v4 {
  background: var(--dark);
  border-top: 1px solid var(--dark-3);
  padding: 60px 60px 30px;
}

.footer-v4-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.1;
}

.footer-brand-name span { color: var(--amber-light); }

.footer-v4 p {
  color: #5A3A20;
  font-size: .85rem;
  line-height: 1.7;
}

.footer-v4 h5 {
  font-family: 'Outfit', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 16px;
}

.footer-v4 ul { list-style: none; }
.footer-v4 ul li { margin-bottom: 10px; }
.footer-v4 ul a {
  color: #5A3A20;
  font-size: .85rem;
  transition: color .25s;
}
.footer-v4 ul a:hover { color: var(--amber-glow); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: #5A3A20;
  font-size: .85rem;
}

.footer-contact-item .fc-icon {
  color: var(--amber);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--dark-3);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: .78rem;
  color: #3A2010;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: .78rem;
  color: #3A2010;
  transition: color .25s;
}
.footer-legal-links a:hover { color: var(--amber); }

/* ── COOKIE SIDE BANNER ── */
.cookie-side {
  position: fixed;
  bottom: 32px;
  left: calc(var(--sidebar-w) + 32px);
  max-width: 420px;
  background: var(--dark-2);
  border: 1px solid var(--dark-3);
  border-radius: var(--radius);
  padding: 28px;
  z-index: 9000;
  box-shadow: var(--shadow-lg);
  transform: translateY(0);
  opacity: 1;
  transition: all .5s;
}

.cookie-side.hidden {
  opacity: 0;
  transform: translateY(30px);
  pointer-events: none;
}

.cookie-side p {
  color: #B0906A;
  font-size: .85rem;
  margin-bottom: 16px;
}

.cookie-side a { color: var(--amber-light); text-decoration: underline; }

.cookie-side-btns {
  display: flex;
  gap: 10px;
}

.cookie-accept {
  flex: 1;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .25s;
}
.cookie-accept:hover { opacity: .85; }

.cookie-decline {
  flex: 1;
  background: none;
  border: 1px solid var(--dark-3);
  color: #7A5533;
  border-radius: 8px;
  padding: 10px;
  font-size: .85rem;
  cursor: pointer;
  transition: border-color .25s;
}
.cookie-decline:hover { border-color: #7A5533; }

/* ── PAGE HEADER ── */
.page-header {
  background: var(--dark-2);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: center;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(212,87,10,.03) 30px,
    rgba(212,87,10,.03) 31px
  );
}

.page-header-inner { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: #5A3A20;
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--amber-light); }
.breadcrumb span { color: #3A2010; }

.page-header h1 { color: var(--cream); margin-bottom: 12px; }
.page-header p  { color: #7A5533; max-width: 540px; }

/* ── ACTIVITIES PAGE ── */
.acts-section {
  padding: 80px 60px;
  background: var(--cream);
}

.acts-section:nth-child(even) {
  background: var(--dark);
}

.act-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 80px;
}

.act-band:last-child { margin-bottom: 0; }

.act-band.reverse { direction: rtl; }
.act-band.reverse > * { direction: ltr; }

.act-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.act-img img { width: 100%; height: 380px; object-fit: cover; display: block; }

.act-content h3 { margin-bottom: 14px; }
.acts-section:nth-child(even) .act-content h3 { color: var(--cream); }
.act-content p { color: var(--text-muted); margin-bottom: 16px; }
.acts-section:nth-child(even) .act-content p { color: #7A5533; }

.act-detail-list {
  list-style: none;
}
.act-detail-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(212,87,10,.15);
  font-size: .88rem;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
}
.acts-section:nth-child(even) .act-detail-list li { color: #7A5533; border-color: rgba(212,87,10,.1); }
.act-detail-list li::before { content: '◆'; color: var(--amber); font-size: .6rem; margin-top: 3px; flex-shrink: 0; }

/* ── HORARIOS PAGE ── */
.horarios-section {
  padding: 80px 60px;
  background: var(--cream);
}

.horarios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.horario-card {
  background: var(--dark);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--dark-3);
}

.horario-card-head {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  padding: 24px 28px;
}

.horario-card-head h3 {
  color: #fff;
  font-size: 1.4rem;
}

.horario-card-body { padding: 28px; }

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--dark-3);
  font-size: .9rem;
}
.schedule-row:last-child { border-bottom: none; }

.schedule-day { color: #B0906A; font-weight: 500; }
.schedule-time { color: var(--amber-glow); font-weight: 700; }

.horarios-note {
  background: var(--dark-2);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 32px;
  border-left: 4px solid var(--amber);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.horarios-note p { color: #7A5533; font-size: .9rem; }
.horarios-note strong { color: var(--amber-light); }

/* ── PACKAGES PAGE ── */
.paquetes-section {
  padding: 80px 60px;
  background: var(--cream);
}

.paquetes-section:nth-child(even) {
  background: var(--dark);
}

.paquetes-section .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.paquetes-section:nth-child(even) .section-header h2 { color: var(--cream); }
.paquetes-section:nth-child(even) .section-header p  { color: #7A5533; }

.entradas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.entrada-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  border: 1px solid var(--dark-3);
  transition: border-color .3s, transform .3s;
}
.entrada-card:hover { border-color: var(--amber); transform: translateY(-4px); }

.entrada-icon { font-size: 2.2rem; margin-bottom: 12px; }
.entrada-card h4 { color: var(--cream); margin-bottom: 8px; font-size: 1rem; font-family: 'Outfit', sans-serif; }
.entrada-card p { color: #5A3A20; font-size: .82rem; margin-bottom: 20px; }

.entrada-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--amber-glow);
  line-height: 1;
}

.entrada-price small { font-size: 1rem; color: #7A5533; }

.bday-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.bday-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid rgba(212,87,10,.15);
  transition: transform .35s;
}
.bday-card:hover { transform: translateY(-6px); }
.bday-card.star { border-color: var(--amber); }

.bday-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.bday-card-body { padding: 24px; }

.bday-card-body h3 { color: var(--cream); margin-bottom: 8px; font-size: 1.3rem; }
.bday-card-body p  { color: #5A3A20; font-size: .82rem; margin-bottom: 16px; }

.bday-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber-glow);
  margin-bottom: 4px;
}

.bday-inc { font-size: .78rem; color: #5A3A20; margin-bottom: 16px; }

.bday-features { list-style: none; }
.bday-features li {
  font-size: .82rem;
  color: #7A5533;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  display: flex; gap: 8px; align-items: flex-start;
}
.bday-features li::before { content: '●'; color: var(--amber); font-size: .5rem; margin-top: 5px; flex-shrink: 0; }

/* ── CONTACTO PAGE ── */
.contacto-section {
  padding: 80px 60px;
  background: var(--cream);
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--dark-3);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.ci-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}

.ci-content h4 {
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  margin-bottom: 4px;
}

.ci-content p, .ci-content a {
  color: #7A5533;
  font-size: .88rem;
}

.ci-content a:hover { color: var(--amber-light); }

.contact-form {
  background: var(--dark-2);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--dark-3);
}

.contact-form h3 {
  color: var(--cream);
  margin-bottom: 28px;
  font-size: 1.7rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: #B0906A;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.form-control {
  width: 100%;
  background: var(--dark);
  border: 1px solid var(--dark-3);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  transition: border-color .25s;
  outline: none;
}

.form-control::placeholder { color: #3A2010; }
.form-control:focus { border-color: var(--amber); }

textarea.form-control { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .5px;
  transition: opacity .25s;
  margin-top: 8px;
}
.btn-submit:hover { opacity: .85; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h4 {
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.form-success p { color: #7A5533; font-size: .9rem; }

/* ── LEGAL PAGES ── */
.legal-section {
  padding: 72px 80px;
  background: var(--cream);
  width: 100%;
}

.legal-wrap {
  max-width: 820px;
  margin: 0 auto;
}

/* Дата обновления */
.legal-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,87,10,.08);
  border: 1px solid rgba(212,87,10,.25);
  border-radius: 50px;
  padding: 7px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 36px;
}

/* H2 — главный заголовок */
.legal-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Intro-абзац */
.legal-section > .legal-wrap > p:first-of-type,
.legal-section .legal-intro {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(212,87,10,.15);
}

/* Разделители — блок на каждый раздел */
.legal-block {
  margin-bottom: 0;
}

/* H3 — заголовки разделов */
.legal-section h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 28px 0 12px;
  border-top: 1px solid rgba(212,87,10,.12);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-section h3::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 16px;
  background: linear-gradient(180deg, var(--amber), var(--gold));
  border-radius: 2px;
  flex-shrink: 0;
}

/* Параграфы */
.legal-section p {
  font-family: 'Outfit', sans-serif;
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 10px 0 16px;
}

.legal-section strong {
  color: var(--dark);
  font-weight: 700;
}

/* Списки */
.legal-section ul {
  list-style: none;
  margin: 10px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-section ul li {
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding: 10px 14px 10px 40px;
  background: rgba(212,87,10,.04);
  border-radius: 8px;
  border-left: 3px solid rgba(212,87,10,.25);
  position: relative;
}

.legal-section ul li::before {
  content: '◆';
  position: absolute;
  left: 14px;
  top: 11px;
  color: var(--amber);
  font-size: .55rem;
}

/* Последний блок — контакт */
.legal-contact-box {
  margin-top: 40px;
  background: var(--dark);
  border-radius: var(--radius);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-contact-box .lcb-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--amber), var(--gold));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.legal-contact-box p {
  margin: 0;
  color: #B0906A;
  font-size: .88rem;
}

.legal-contact-box a {
  color: var(--amber-glow);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .legal-section { padding: 48px 20px; }
}

/* ── FADE ANIMATION ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── UTILITIES ── */
.text-amber  { color: var(--amber-light); }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mt-60 { margin-top: 60px; }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .testi-4-grid { grid-template-columns: repeat(2, 1fr); }
  .entradas-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-v4-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-v4-grid { grid-template-columns: repeat(2, 1fr); }
  .fa-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  :root { --sidebar-w: 220px; }
  .featured-acts, .about-big, .pkg-row, .gallery-row, .testi-4,
  .cta-inner, .footer-v4, .horarios-section, .paquetes-section,
  .contacto-section, .acts-section, .legal-section { padding-left: 40px; padding-right: 40px; }
  .hero-left { padding: 60px 40px; }
  .about-big { grid-template-columns: 1fr; }
  .about-img-wrap { max-height: 380px; }
  .about-img-wrap img { height: 380px; }
  .about-badge-float { right: 20px; }
}

@media (max-width: 900px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; padding-top: 64px; }
  .mobile-topbar { display: flex; }
  .cookie-side { left: 20px; right: 20px; max-width: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 340px; }
  .hero-left { padding: 80px 32px 60px; min-height: auto; }
  .fa-grid { grid-template-columns: 1fr; }
  .fa-large { grid-row: span 1; min-height: 360px; }
  .fa-stack { min-height: 240px; }
  .contacto-grid { grid-template-columns: 1fr; gap: 40px; }
  .bday-grid { grid-template-columns: 1fr; }
  .act-band { grid-template-columns: 1fr; }
  .act-band.reverse { direction: ltr; }
}

@media (max-width: 768px) {
  .featured-acts, .about-big, .pkg-row, .gallery-row, .testi-4,
  .horarios-section, .paquetes-section, .contacto-section,
  .acts-section, .legal-section, .page-header { padding: 60px 20px; }
  .footer-v4 { padding: 48px 20px 24px; }
  .footer-v4-grid { grid-template-columns: 1fr; gap: 32px; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .pkg-v4-grid { grid-template-columns: 1fr; }
  .entradas-grid { grid-template-columns: 1fr 1fr; }
  .testi-4-grid { grid-template-columns: 1fr; }
  .gr-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gr-item:nth-child(1), .gr-item:nth-child(4) { grid-column: span 1; }
  .gr-item { min-height: 180px; }
  .horarios-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .hero-left { padding: 60px 20px 48px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .entradas-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-inner { padding: 60px 20px; }
}
