/* ================================================================
   BAGUS EVENT & CATERING — Main Site Styles
   Design language mirrors bagusevent-order.css
   ================================================================ */

:root {
  --brand:       #2500b7;
  --brand-dark:  #1a007d;
  --brand-deep:  #0f004d;
  --brand-light: #4a28d4;
  --brand-pale:  #ede9ff;
  --brand-faint: #f7f5ff;
  --accent:      #7c3aed;
  --accent-lt:   #a78bfa;
  --gold:        #f59e0b;
  --gold-lt:     #fbbf24;
  --text:        #1e0070;
  --text-muted:  #6b5bb8;
  --border:      #c4b5fd;
  --border-lt:   #ddd6fe;
  --gray50:      #f8f7ff;
  --nav-h:       90px;
}

*  { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'DM Sans', sans-serif; background: var(--gray50); color: var(--text); font-size: 15px; line-height: 1.6; }
img  { display: block; }
a    { text-decoration: none; }

/* ── NAV ─────────────────────────────────────────────────────── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
}
#main-nav.scrolled {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 100%);
  box-shadow: 0 2px 24px rgba(37,0,183,.35);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.nav-brand img { width: 88px; height: 88px; object-fit: contain; }
.nav-brand-text { font-family: 'Playfair Display', serif; font-size: 16px; line-height: 1.2; color: #fff; }
.nav-brand-text small { display: block; font-family: 'DM Sans', sans-serif; font-size: 10px; color: var(--gold-lt); font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase; }
.nav-links { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-links a {
  display: block; padding: 8px 16px; color: rgba(255,255,255,.82);
  font-size: 12px; font-weight: 600; letter-spacing: .7px; text-transform: uppercase;
  border-radius: 6px; transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.12); }
.nav-links .btn-nav {
  padding: 8px 20px; background: var(--gold); color: var(--brand-deep) !important;
  border-radius: 20px; font-weight: 700;
  transition: background .2s, transform .2s !important;
}
.nav-links .btn-nav:hover { background: var(--gold-lt); transform: translateY(-1px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: linear-gradient(160deg, var(--brand-dark) 0%, var(--brand) 100%);
    box-shadow: 0 12px 40px rgba(0,0,0,.4);
    padding: 6px 0 12px; gap: 0;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links li:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-links a {
    padding: 13px 28px; width: 100%; border-radius: 0;
    font-size: 11px; letter-spacing: 1.5px;
  }
  .nav-links a.active { background: rgba(255,255,255,.08); border-left: 3px solid var(--gold); padding-left: 25px; }
  .nav-links a:hover { background: rgba(255,255,255,.1); }
  .nav-links li:last-child { padding: 10px 20px 4px; border-bottom: none; }
  .nav-links .btn-nav {
    display: block; text-align: center; border-radius: 8px;
    padding: 12px 20px; background: var(--gold); color: var(--brand-deep) !important;
  }
  .nav-links .btn-nav:hover { background: var(--gold-lt); transform: none; }
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(15,0,77,.52) 0%, rgba(15,0,77,.25) 45%, rgba(15,0,77,.72) 100%);
}
.hero-caption {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 24px; padding-top: var(--nav-h);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold-lt); font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 22px; font-weight: 500;
}
.hero-badge::before, .hero-badge::after {
  content: '✦'; font-size: 8px; opacity: .75;
}
.hero-caption h1 { font-family: 'Playfair Display', serif; font-size: clamp(38px, 6.5vw, 76px); color: #fff; line-height: 1.08; margin-bottom: 4px; }
.hero-caption h1 span { color: var(--gold-lt); }
.hero-div { width: 64px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold-lt), transparent); margin: 22px auto; }
.hero-caption p { color: rgba(255,255,255,.8); font-size: 17px; margin-bottom: 36px; max-width: 480px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.btn-gold {
  display: inline-block; padding: 15px 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: var(--brand-deep); font-weight: 700; font-size: 14px; letter-spacing: .6px;
  text-transform: uppercase; border-radius: 8px;
  box-shadow: 0 4px 18px rgba(245,158,11,.38);
  transition: transform .2s, box-shadow .2s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,158,11,.48); }
.btn-ghost {
  display: inline-block; padding: 15px 38px;
  border: 2px solid rgba(255,255,255,.55); color: #fff;
  font-weight: 600; font-size: 14px; letter-spacing: .6px;
  text-transform: uppercase; border-radius: 8px;
  transition: background .2s, border-color .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.hero-nav { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 14px; }
.hero-prev, .hero-next {
  width: 36px; height: 36px; border: 2px solid rgba(255,255,255,.45); border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff; font-size: 20px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.hero-prev:hover, .hero-next:hover { background: rgba(255,255,255,.25); border-color: #fff; }
.hero-dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(255,255,255,.4); cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.dot.active { background: var(--gold-lt); transform: scale(1.35); }

/* ── PAGE BANNER (inner pages) ───────────────────────────────── */
.page-banner {
  position: relative; height: 380px; overflow: hidden;
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 65%, var(--accent) 100%);
  margin-top: var(--nav-h);
}
.page-banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); }
.page-banner-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.15); }
.page-banner-content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 24px; }
.page-banner-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(36px, 5vw, 60px); color: #fff; line-height: 1.1; }
.page-banner-content h1 span { color: var(--gold-lt); }
.page-banner-content p { color: rgba(255,255,255,.75); font-size: 16px; margin-top: 8px; }

/* ── ABOUT PAGE ──────────────────────────────────────────────── */
.about-section { display: grid; grid-template-columns: 120px 1fr; gap: 0 60px; padding: 56px 0; border-bottom: 1px solid var(--border-lt); align-items: start; }
.about-section:last-child { border-bottom: none; padding-bottom: 0; }
.about-section-num { font-family: 'Playfair Display', serif; font-size: 80px; font-weight: 700; color: var(--border-lt); line-height: 1; text-align: right; padding-top: 2px; }
.about-section-body { padding-top: 6px; }
.about-section-body h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: var(--brand); margin-bottom: 20px; }
.about-section-body p { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 14px; }
.about-section-body ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.about-section-body ul li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-muted); font-size: 15px; line-height: 1.6; }
.about-section-body ul li::before { content: '✦'; color: var(--gold); font-size: 10px; flex-shrink: 0; margin-top: 5px; }
@media (max-width: 640px) { .about-section { grid-template-columns: 1fr; gap: 4px; padding: 36px 0; } .about-section-num { font-size: 52px; text-align: left; } }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 4px; }
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr 1fr; } }
.why-item { display: flex; align-items: flex-start; gap: 10px; background: var(--brand-faint); border-radius: 10px; padding: 12px 14px; height: 100%; box-sizing: border-box; }
.why-item i { color: var(--brand); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.why-item span { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ── GALLERY PAGE ────────────────────────────────────────────── */
.gallery-tabs-wrap { background: #fff; border-bottom: 1px solid var(--border-lt); position: sticky; top: var(--nav-h); z-index: 100; }
.gallery-tabs { display: flex; max-width: 1100px; margin: 0 auto; padding: 0 28px; gap: 4px; }
.gtab { padding: 18px 28px; border: none; background: none; cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: .6px; color: var(--text-muted); border-bottom: 3px solid transparent; transition: color .2s, border-color .2s; }
.gtab:hover { color: var(--brand); }
.gtab.active { color: var(--brand); border-bottom-color: var(--brand); }
.gallery-section-head { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.gallery-section-head h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--brand); white-space: nowrap; }
.gallery-section-line { flex: 1; height: 1px; background: var(--border-lt); }

/* ── GENERAL ADVICE ──────────────────────────────────────────── */
.advice-block { background: #fff; border: 1px solid var(--border-lt); border-radius: 14px; padding: 28px; margin-bottom: 20px; box-shadow: 0 2px 12px rgba(37,0,183,.04); }
.advice-block h3 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--brand); margin-bottom: 14px; display: flex; align-items: center; gap: 14px; }
.advice-block h3 small { font-family: 'DM Sans', sans-serif; font-size: 13px; color: var(--text-muted); font-weight: 400; }
.advice-num { display: inline-flex; width: 32px; height: 32px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 14px; font-weight: 700; align-items: center; justify-content: center; flex-shrink: 0; font-family: 'DM Sans', sans-serif; }
.advice-block p { color: var(--text-muted); font-size: 14px; line-height: 1.7; }
.advice-block ul { list-style: none; padding: 0; margin-top: 8px; }
.advice-block ul li { padding: 5px 0 5px 20px; position: relative; color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.advice-block ul li::before { content: '✦'; position: absolute; left: 0; color: var(--gold); font-size: 10px; top: 7px; }

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.notice { background: #fffbeb; border: 1px solid #fde68a; border-left: 4px solid var(--gold); border-radius: 8px; padding: 14px 18px; font-size: 14px; color: #78350f; line-height: 1.5; }
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 48px; }
@media (max-width: 900px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card { background: #fff; border: 1px solid var(--border-lt); border-radius: 14px; padding: 28px 20px; text-align: center; box-shadow: 0 2px 14px rgba(37,0,183,.05); }
.contact-card-icon { width: 56px; height: 56px; border-radius: 50%; background: var(--brand-pale); color: var(--brand); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 22px; }
.contact-card h4 { font-family: 'Playfair Display', serif; font-size: 16px; color: var(--brand); margin-bottom: 10px; }
.contact-card p { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.contact-card a { color: var(--brand); font-weight: 500; }
.contact-card a:hover { color: var(--accent); }
.map-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 768px) { .map-grid { grid-template-columns: 1fr; } }
.map-img img { width: 100%; border-radius: 12px; box-shadow: 0 4px 20px rgba(37,0,183,.1); }
.map-embed { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(37,0,183,.1); }
.map-embed iframe { display: block; }

/* ── ENQUIRY FORM ────────────────────────────────────────────── */
.enquiry-form { background: #fff; border: 1px solid var(--border-lt); border-radius: 14px; padding: 36px; box-shadow: 0 4px 24px rgba(37,0,183,.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; margin-bottom: 0; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border-lt); border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--text); background: var(--brand-faint); transition: border-color .18s, box-shadow .18s; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(37,0,183,.1); background: #fff; }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group:not(.form-row .form-group) { margin-bottom: 18px; }
.req { color: var(--red, #dc2626); }
.form-submit { margin-top: 8px; padding: 14px 36px; background: linear-gradient(135deg, var(--brand-dark), var(--brand)); color: #fff; border: none; border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 16px rgba(37,0,183,.25); }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,0,183,.35); }
.form-success { background: #f0fdf4; border: 1px solid #86efac; border-radius: 8px; padding: 14px 18px; color: #15803d; font-size: 14px; margin-bottom: 24px; }

/* ── SHARED SECTION ──────────────────────────────────────────── */
.section { padding: 80px 0; }
.section-dark { background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 65%, var(--accent) 100%); position: relative; overflow: hidden; }
.section-dark::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E"); }
.section-pale { background: var(--brand-faint); }
.section-pattern {
  background-color: #fff;
  background-image:
    radial-gradient(circle, var(--border-lt) 1px, transparent 1px);
  background-size: 20px 20px;
}
.section-occasions {
  background-color: var(--brand-faint);
  background-image:
    radial-gradient(circle, var(--border-lt) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; position: relative; }
.section-head { text-align: center; margin-bottom: 52px; }
.section-head h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 42px); color: var(--brand); }
.section-head-lt h2 { color: #fff; }
.section-head p { color: var(--text-muted); margin-top: 10px; font-size: 15px; }
.section-head-lt p { color: rgba(255,255,255,.65); }
.hdiv { width: 60px; height: 2px; background: linear-gradient(90deg, transparent, var(--gold-lt), transparent); margin: 16px auto 0; }

/* ── WHO WE ARE ──────────────────────────────────────────────── */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
@media (max-width: 768px) { .who-grid { grid-template-columns: 1fr; } .who-image { order: -1; } }
.who-point {
  display: flex; gap: 16px; margin-bottom: 16px;
  background: var(--brand-faint); border: 1px solid var(--border-lt);
  border-radius: 12px; padding: 18px 20px;
  box-shadow: 0 2px 10px rgba(37,0,183,.05);
}
.who-point:last-child { margin-bottom: 0; }
.who-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; font-size: 18px; }
.who-point p { color: var(--text-muted); font-size: 14px; line-height: 1.65; margin: auto 0; }
.who-image img { width: 100%; border-radius: 14px; box-shadow: 0 24px 64px rgba(0,0,0,.35); }

/* ── WHY CHOOSE US ───────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
@media (max-width: 900px) { .features-grid { grid-template-columns: repeat(2,1fr); } }
.feature-card {
  background: #fff; border: 1px solid var(--border-lt); border-radius: 14px;
  padding: 30px 20px; text-align: center;
  box-shadow: 0 2px 14px rgba(37,0,183,.05);
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(37,0,183,.13); border-color: var(--border); }
.feature-card img { width: 64px; height: 64px; object-fit: contain; margin: 0 auto 16px; }
.feature-card h4 { font-size: 12px; font-weight: 700; color: var(--text); line-height: 1.4; text-transform: uppercase; letter-spacing: .5px; }

/* ── OCCASIONS ───────────────────────────────────────────────── */
.occasions-row { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }
.occasion-card {
  background: #fff; border: 1px solid var(--border-lt); border-radius: 14px;
  padding: 32px 28px; text-align: center; min-width: 150px;
  box-shadow: 0 2px 14px rgba(37,0,183,.05);
  transition: transform .22s, box-shadow .22s;
}
.occasion-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(37,0,183,.12); }
.occasion-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--brand-pale); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 28px;
  transition: background .22s, color .22s;
}
.occasion-card:hover .occasion-icon { background: var(--brand); color: #fff; }
.occasion-card h4 { font-size: 12px; font-weight: 700; color: var(--brand); text-transform: uppercase; letter-spacing: .6px; }

/* ── PAST EXPERIENCES ────────────────────────────────────────── */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-bottom: 32px; }
.filter-btn {
  padding: 7px 20px; border: 1.5px solid var(--border-lt); border-radius: 20px;
  background: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px;
  color: var(--text-muted); transition: all .18s;
}
.filter-btn.active, .filter-btn:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-pale); }
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 580px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }
.gallery-item { border-radius: 8px; overflow: hidden; cursor: pointer; position: relative; aspect-ratio: 4/3; background: var(--brand-pale); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .32s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0; background: rgba(37,0,183,.48); opacity: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 28px; transition: opacity .25s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gitem-hidden { display: none; }
.load-more-wrap { text-align: center; margin: 8px 0 48px; }
.load-more-btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 28px; border: 1.5px solid var(--brand); border-radius: 8px; background: #fff; color: var(--brand); font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; transition: background .2s, color .2s; }
.load-more-btn:hover { background: var(--brand); color: #fff; }
.load-more-count { font-weight: 400; opacity: .75; }

/* ── LIGHTBOX ────────────────────────────────────────────────── */
#lightbox {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92);
  z-index: 9999; align-items: center; justify-content: center; cursor: pointer;
}
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 8px; box-shadow: 0 24px 80px rgba(0,0,0,.6); pointer-events: none; }
#lightbox-close {
  position: absolute; top: 18px; right: 18px;
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1); color: #fff; font-size: 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
#lightbox-close:hover { background: rgba(255,255,255,.25); }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer { background: var(--brand-deep); color: rgba(255,255,255,.55); padding: 56px 0 32px; font-size: 13px; line-height: 1.8; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; margin-bottom: 44px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.footer-brand img { width: 52px; opacity: .9; }
.footer-brand-name { font-family: 'Playfair Display', serif; font-size: 18px; color: #fff; line-height: 1.2; }
.footer-brand-name small { display: block; font-family: 'DM Sans', sans-serif; font-size: 11px; color: var(--gold-lt); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 400; }
footer h4 { font-family: 'Playfair Display', serif; font-size: 15px; color: #fff; margin-bottom: 16px; }
footer a { color: rgba(255,255,255,.55); transition: color .2s; }
footer a:hover { color: var(--gold-lt); }
footer li { margin-bottom: 8px; }
footer ul { list-style: none; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin-bottom: 24px; }
.footer-bottom { text-align: center; font-size: 12px; color: rgba(255,255,255,.35); }
.footer-bottom strong { color: var(--gold-lt); }
.reg-badge { display: inline-block; border: 1px solid rgba(255,255,255,.15); color: var(--accent-lt); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 4px 14px; border-radius: 12px; margin-top: 12px; }
