:root {
  --bg-deep: #0c0a09;
  --bg-card: #1a1714;
  --bg-card-hover: #231f1a;
  --bg-warm: #151210;
  --gold: #c9a96e;
  --gold-soft: #d4b483;
  --rose: #b4838d;
  --text-primary: #f5f0e8;
  --text-secondary: #a69e94;
  --text-muted: #6b6560;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

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

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, #1f1510 0%, var(--bg-deep) 70%),
              radial-gradient(ellipse at 70% 30%, #1a1020 0%, transparent 60%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(201, 169, 110, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 800px;
  z-index: 1;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}

.hero-lede {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 1.5rem;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== SERVICES ===== */
.services {
  padding: 8rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.services-header {
  margin-bottom: 4rem;
}

.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.services-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 480px;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(201, 169, 110, 0.18);
}

.service-card--large {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== PACKAGES ===== */
.packages {
  padding: 6rem 2rem 8rem;
  background: var(--bg-warm);
  text-align: center;
}

.packages h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 3rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: left;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 169, 110, 0.2);
}

.package-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #1f1a12 0%, var(--bg-card) 100%);
  position: relative;
}

.package-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.package-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  margin: 0.75rem 0 1.5rem;
  color: var(--text-primary);
}

.package-card ul {
  list-style: none;
  padding: 0;
}

.package-card li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-left: 1.2rem;
  position: relative;
}

.package-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  transform: translateY(-50%);
}

.package-card li:last-child {
  border-bottom: none;
}

/* ===== PROCESS ===== */
.process {
  padding: 8rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.process h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  margin-bottom: 4rem;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.process-step {
  flex: 1;
  padding: 0 1.5rem;
}

.step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  display: block;
  margin-bottom: 1rem;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.process-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
  margin-top: 2.2rem;
  flex-shrink: 0;
}

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 2rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 110, 0.06) 0%, transparent 60%);
}

.closing-content {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.closing p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.closing-tagline {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold-soft);
  margin-top: 2rem;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.footer-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.footer-email {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card--large {
    grid-row: auto;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .process-connector {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    margin-top: 0;
  }

  .process-step {
    padding: 0;
    max-width: 320px;
  }

  .hero {
    min-height: 90vh;
    padding: 4rem 1.5rem;
  }

  .services {
    padding: 5rem 1.5rem;
  }

  .packages {
    padding: 5rem 1.5rem;
  }

  .process {
    padding: 5rem 1.5rem;
  }

  .closing {
    padding: 5rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }

  .package-card {
    padding: 2rem 1.5rem;
  }
}

/* ===== NAVIGATION ===== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-nav.nav--scrolled {
  background: rgba(12, 10, 9, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.inner-page .site-nav {
  background: rgba(12, 10, 9, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--gold);
  color: #0c0a09;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.nav-mobile-menu.open {
  display: flex;
}

.nav-mobile-link {
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
}

.nav-mobile-cta {
  margin-top: 0.75rem;
  text-align: center;
  padding: 0.8rem;
  background: var(--gold);
  color: #0c0a09;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* Offset hero for fixed nav */
.hero {
  padding-top: calc(68px + 2rem);
}

/* ===== SHARED BUTTONS ===== */
.btn-gold {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: #0c0a09;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-gold:hover {
  background: var(--gold-soft);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--text-primary);
}

.btn-secondary {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: var(--bg-card);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s ease;
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
}

.btn-outline {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(201,169,110,0.4);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.06);
}

/* ===== HERO ACTIONS ===== */
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* ===== PACKAGE BOOK BUTTON ===== */
.pkg-book-btn {
  display: block;
  margin-top: 1.75rem;
  padding: 0.7rem 1.2rem;
  text-align: center;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 6px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.pkg-book-btn:hover {
  background: rgba(201,169,110,0.07);
  border-color: var(--gold);
}

.pkg-book-btn--featured {
  background: var(--gold);
  color: #0c0a09;
  border-color: var(--gold);
}

.pkg-book-btn--featured:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

/* ===== CLOSING ACTIONS ===== */
.closing-actions {
  margin-top: 2.5rem;
}

/* ===== INNER PAGE BASE ===== */
.inner-page {
  padding-top: 68px;
}

/* ===== PAGE HEADER (shared by booking + gallery) ===== */
.booking-hero,
.gallery-hero {
  text-align: center;
  padding: 5rem 2rem 3rem;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 110, 0.07) 0%, transparent 60%);
}

.page-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.booking-hero h1,
.gallery-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.booking-hero h1 em,
.gallery-hero h1 em {
  font-style: italic;
  color: var(--gold-soft);
}

.page-lede {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== BOOKING FORM ===== */
.booking-form-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 2rem 6rem;
}

.form-error {
  background: rgba(180, 60, 60, 0.15);
  border: 1px solid rgba(180, 60, 60, 0.35);
  color: #f08080;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-section-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
  outline: none;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,169,110,0.5);
  background: var(--bg-card-hover);
}

.form-group select option {
  background: #1a1714;
}

/* Package selector on booking form */
.package-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pkg-option input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.pkg-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  position: relative;
}

.pkg-option:hover .pkg-card,
.pkg-option.selected .pkg-card {
  border-color: var(--gold);
  background: rgba(201,169,110,0.05);
}

.pkg-card--featured {
  border-color: rgba(201,169,110,0.4);
}

.pkg-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0c0a09;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.pkg-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
}

.pkg-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
}

.pkg-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 0.25rem;
}

.form-submit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.btn-submit {
  padding: 1rem 3rem;
  background: var(--gold);
  color: #0c0a09;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-submit:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== CONFIRMATION PAGE ===== */
.confirmation-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.confirmation-content {
  text-align: center;
  max-width: 520px;
}

.confirmation-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 auto 2rem;
}

.confirmation-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.confirmation-content h1 em {
  font-style: italic;
  color: var(--gold-soft);
}

.confirmation-lede {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.confirmation-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.confirmation-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== GALLERY PAGE ===== */
.gallery-page {
  min-height: 100vh;
}

.gallery-filters {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0 2rem 2.5rem;
}

.filter-btn {
  padding: 0.55rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(201,169,110,0.1);
  border-color: rgba(201,169,110,0.4);
  color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gallery-thumb {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.1);
}

.gallery-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(12,10,9,0.4);
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-thumb::after {
  opacity: 1;
}

/* Decorative gallery placeholder tiles — distinct color palettes */
.gallery-thumb--1  { background: linear-gradient(135deg, #2d1a0e 0%, #5c2d1a 40%, #8b4513 70%, #c9703a 100%); }
.gallery-thumb--2  { background: linear-gradient(135deg, #1a0d1f 0%, #3d1654 40%, #7b2d8b 70%, #b04fcc 100%); }
.gallery-thumb--3  { background: linear-gradient(135deg, #0d1a1a 0%, #164040 40%, #1a6b6b 70%, #2ab5b5 100%); }
.gallery-thumb--4  { background: linear-gradient(135deg, #1a1700 0%, #3d3800 40%, #7a6f00 70%, #c9a600 100%); }
.gallery-thumb--5  { background: linear-gradient(135deg, #1a0014 0%, #450038 40%, #800060 70%, #cc0099 100%); }
.gallery-thumb--6  { background: linear-gradient(135deg, #001a0d 0%, #004024 40%, #006b3d 70%, #00b566 100%); }
.gallery-thumb--7  { background: linear-gradient(135deg, #1a0a0a 0%, #4a1515 40%, #8b2020 70%, #d44040 100%); }
.gallery-thumb--8  { background: linear-gradient(135deg, #0a0d1a 0%, #192040 40%, #2b3a70 70%, #4060c0 100%); }
.gallery-thumb--9  { background: linear-gradient(135deg, #1a1005 0%, #402a10 40%, #6b4520 70%, #a06030 100%); }
.gallery-thumb--10 { background: linear-gradient(135deg, #18001a 0%, #3f0042 40%, #750080 70%, #c400d0 100%); }
.gallery-thumb--11 { background: linear-gradient(135deg, #001518 0%, #003840 40%, #006070 70%, #00a0c0 100%); }
.gallery-thumb--12 { background: linear-gradient(135deg, #0f1a10 0%, #254028 40%, #3d7040 70%, #60c060 100%); }

/* Decorative bokeh circles layered on each tile */
.gallery-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 35%, rgba(255,255,255,0.18) 0%, transparent 35%),
    radial-gradient(circle at 75% 65%, rgba(255,255,255,0.12) 0%, transparent 30%),
    radial-gradient(circle at 50% 20%, rgba(201,169,110,0.15) 0%, transparent 25%);
  pointer-events: none;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(12,10,9,0.85) 0%, transparent 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 1;
}

.gallery-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,110,0.12);
  border: 1px solid rgba(201,169,110,0.25);
  padding: 3px 9px;
  border-radius: 12px;
}

.gallery-pkg {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
}

.gallery-caption {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.gallery-cta {
  text-align: center;
  padding: 4rem 2rem 6rem;
  background: radial-gradient(ellipse at 50% 0%, rgba(201, 169, 110, 0.06) 0%, transparent 60%);
}

.gallery-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
}

/* ===== ADMIN STYLES ===== */
.admin-page {
  background: #0a0908;
  min-height: 100vh;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(12,10,9,0.98);
  position: sticky;
  top: 0;
  z-index: 10;
}

.admin-back {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.admin-back:hover {
  color: var(--text-primary);
}

.admin-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.25);
  padding: 3px 10px;
  border-radius: 12px;
}

.admin-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}

.admin-title-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.admin-title-row h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
}

.admin-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.admin-filters {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.admin-filters a {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  transition: all 0.2s ease;
}

.admin-filters a:hover,
.admin-filters a.active {
  background: rgba(201,169,110,0.1);
  border-color: rgba(201,169,110,0.35);
  color: var(--gold);
}

.admin-empty {
  color: var(--text-muted);
  font-size: 1rem;
  padding: 3rem 0;
  text-align: center;
}

.admin-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.admin-table thead th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-warm);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.admin-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s ease;
}

.admin-table tbody tr:last-child {
  border-bottom: none;
}

.admin-table tbody tr:hover {
  background: rgba(255,255,255,0.02);
}

.admin-table td {
  padding: 0.9rem 1rem;
  color: var(--text-secondary);
  vertical-align: middle;
}

.admin-id {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.admin-email {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.admin-occasion {
  text-transform: capitalize;
}

.admin-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.admin-pkg {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 10px;
}

.admin-pkg--essentials { background: rgba(100,180,100,0.12); color: #80d080; }
.admin-pkg--signature  { background: rgba(201,169,110,0.12); color: var(--gold); }
.admin-pkg--grand      { background: rgba(180,131,141,0.12); color: var(--rose); }

.status-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 10px;
}

.status--pending   { background: rgba(201,169,110,0.12); color: var(--gold); }
.status--confirmed { background: rgba(80,160,220,0.12);  color: #60b0e0; }
.status--completed { background: rgba(100,200,100,0.12); color: #70d070; }
.status--cancelled { background: rgba(200,80,80,0.12);   color: #e08080; }

.admin-view-btn {
  font-size: 0.82rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.admin-view-btn:hover {
  text-decoration: underline;
}

/* Admin detail */
.admin-detail h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.admin-saved-banner {
  background: rgba(100,200,100,0.12);
  border: 1px solid rgba(100,200,100,0.3);
  color: #70d070;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.detail-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 1.5rem;
}

.detail-card--full {
  grid-column: 1 / -1;
}

.detail-card-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.detail-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem 1.5rem;
  font-size: 0.88rem;
}

.detail-list dt {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.detail-list dd {
  color: var(--text-primary);
}

.detail-list a {
  color: var(--gold);
}

.detail-notes {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.admin-update-form {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.detail-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== RESPONSIVE (inner pages) ===== */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .package-selector {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .booking-form-wrap {
    padding: 1.5rem 1rem 4rem;
  }
}