/* ============================================================
   ROYAL UTSAV MANDAP — Premium Redesign
   Palette: Deep Plum, Champagne Gold, Ivory, Warm White
   Type: Cormorant Garamond (display) + DM Sans (body)
   ============================================================ */

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

:root {
  --plum:        #2d0a1f;
  --plum-mid:    #4a1433;
  --plum-light:  #6b2447;
  --gold:        #c9993a;
  --gold-light:  #e0b96a;
  --gold-pale:   #f5e8c7;
  --ivory:       #faf6ef;
  --white:       #ffffff;
  --ink:         #1a0d12;
  --muted:       #7a5e6b;
  --border:      #e8d8c4;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --radius-xl:   40px;
  --shadow-sm:   0 4px 20px rgba(45,10,31,.10);
  --shadow-md:   0 12px 48px rgba(45,10,31,.16);
  --shadow-lg:   0 24px 80px rgba(45,10,31,.22);
  --transition:  .32s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; line-height: 1.1; }

/* ---- Layout ---- */
.container { width: min(1180px, 92%); margin: 0 auto; }
.section { padding: 96px 0; }
.section--alt { background: var(--white); }
.section--dark { background: var(--plum); color: var(--ivory); }

/* ---- Topbar ---- */
.topbar {
  background: var(--plum);
  color: #ddc8a0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,153,58,.25);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar a { color: var(--gold-light); transition: color var(--transition); }
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 24px; }
.topbar-icon { display: inline-flex; align-items: center; gap: 6px; }
.topbar-icon svg { opacity: .7; flex-shrink: 0; }

/* ---- Navbar ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,246,239,.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: .01em;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.brand span {
  font-size: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  letter-spacing: .01em;
}
.nav a:hover, .nav a.active {
  color: var(--plum);
  background: var(--gold-pale);
}
.nav-cta {
  background: var(--plum) !important;
  color: var(--white) !important;
  padding: 9px 20px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  letter-spacing: .02em;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  background: var(--plum-light) !important;
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  background: var(--plum);
  color: var(--white);
}
.btn:hover {
  background: var(--plum-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-primary {
  background: var(--plum);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--plum-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold);
  color: var(--plum);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,153,58,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--plum);
  border: 1.5px solid var(--plum);
}
.btn-outline-dark:hover {
  background: var(--plum);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- Badge ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,153,58,.18);
  color: var(--gold-light);
  border: 1px solid rgba(201,153,58,.35);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---- HERO ---- */
.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--plum);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/470207246_122181669926138132_2556890139368532662_n.jpeg') center / cover no-repeat;
  opacity: .28;
  animation: slowzoom 18s ease-in-out infinite alternate;
  transform-origin: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45,10,31,.92) 0%,
    rgba(45,10,31,.65) 55%,
    rgba(45,10,31,.30) 100%
  );
}
.hero-ornament {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--ivory));
  z-index: 2;
}
.hero .container {
  position: relative;
  z-index: 3;
  padding-top: 40px;
  padding-bottom: 120px;
  max-width: 820px;
}
.hero-eyebrow { margin-bottom: 28px; }
.hero h1 {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  color: var(--white);
  line-height: .96;
  letter-spacing: -.02em;
  margin-bottom: 6px;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}
.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255,255,255,.72);
  max-width: 580px;
  line-height: 1.65;
  margin: 24px 0 40px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.15);
  flex-wrap: wrap;
}
.hero-stat {}
.hero-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat span {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

/* ---- Section Header ---- */
.sec-header { margin-bottom: 56px; }
.sec-header .eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.sec-header h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  color: var(--plum);
  letter-spacing: -.02em;
}
.sec-header h2 em { font-style: italic; color: var(--plum-light); }
.sec-header p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 620px;
  margin-top: 16px;
}
.sec-header.center { text-align: center; }
.sec-header.center p { margin: 16px auto 0; }
.sec-header--light h2 { color: var(--ivory); }
.sec-header--light p { color: rgba(255,255,255,.65); }
.sec-header--light .eyebrow { color: var(--gold-light); }

/* ---- Grid ---- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---- Facility Cards ---- */
.fac-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.fac-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.fac-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.fac-card:hover::after { transform: scaleX(1); }
.fac-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--gold-pale);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.fac-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 8px;
}
.fac-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ---- Split Section ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: url('../images/hall.svg') center / cover no-repeat;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.split-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--gold-pale);
  z-index: -1;
}
.split-content h2 {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 400;
  color: var(--plum);
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.split-content h2 em { font-style: italic; }
.split-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.split-list {
  list-style: none;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.split-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}
.split-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 2px solid var(--gold);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23c9993a' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ---- Event Type Cards ---- */
.event-card {
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.event-card .event-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  font-weight: 300;
  color: var(--gold-pale);
  line-height: .9;
  position: absolute;
  top: 16px;
  right: 24px;
  letter-spacing: -.04em;
  pointer-events: none;
}
.event-card h3 {
  font-size: 26px;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 10px;
}
.event-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.event-card-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin-bottom: 18px;
  display: block;
  box-shadow: var(--shadow-sm);
}
.fac-banner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 56px;
  position: relative;
}
.fac-banner img { width: 100%; height: auto; display: block; }
.fac-banner-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 56px;
}
.fac-banner-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 400;
  color: var(--white);
  max-width: 480px;
  line-height: 1.2;
}
.fac-banner-text h3 em { font-style: italic; color: var(--gold-light); }

/* ---- Package Cards ---- */
.pkg-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--transition);
}
.pkg-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pkg-card.featured {
  background: var(--plum);
  border-color: var(--plum);
  color: var(--ivory);
}
.pkg-card .pkg-badge {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--plum);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  width: fit-content;
}
.pkg-card.featured .pkg-badge {
  background: rgba(201,153,58,.2);
  color: var(--gold-light);
  border: 1px solid rgba(201,153,58,.3);
}
.pkg-card .pkg-title {
  font-size: 28px;
  font-weight: 500;
  color: var(--plum);
}
.pkg-card.featured .pkg-title { color: var(--white); }
.pkg-card .pkg-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.pkg-card.featured .pkg-price { color: var(--gold-light); }
.pkg-card .pkg-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.pkg-card.featured .pkg-desc { color: rgba(255,255,255,.65); }
.pkg-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pkg-features li {
  font-size: 14px;
  color: var(--ink);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.pkg-card.featured .pkg-features li {
  color: rgba(255,255,255,.8);
  border-bottom-color: rgba(255,255,255,.12);
}
.pkg-features li::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}
.pkg-card.featured .pkg-features li::before { color: var(--gold-light); }

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-grid .item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gold-pale);
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-grid .item:first-child { grid-row: span 2; aspect-ratio: unset; }
.gallery-grid .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-grid .item:hover img { transform: scale(1.06); }
.gallery-grid .item a {
  display: block;
  height: 100%;
}
.gallery-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-placeholder svg { opacity: .2; }

/* ---- Booking Form ---- */
.booking-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.booking-wrap .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--ivory);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,153,58,.12);
  background: var(--white);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a5e6b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 12px; padding-right: 38px; }

/* Legacy .form support */
.form input, .form select, .form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--ivory);
  transition: border-color var(--transition);
  margin-bottom: 14px;
  display: block;
  appearance: none;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,153,58,.12);
  background: var(--white);
}
.form textarea { min-height: 110px; }
.form { background: var(--white); border-radius: var(--radius-xl); padding: 36px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.testimonial-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--plum);
  line-height: 1.6;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--plum);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 15px; color: var(--ink); }
.testimonial-event { font-size: 13px; color: var(--muted); }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(201,153,58,.1);
  pointer-events: none;
}
.cta-banner h2 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -.02em;
}
.cta-banner h2 em { color: var(--gold-light); font-style: italic; }
.cta-banner p { color: rgba(255,255,255,.65); font-size: 16px; margin-top: 8px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; flex-shrink: 0; }

/* ---- Contact ---- */
.contact-info {
  background: var(--plum);
  border-radius: var(--radius-xl);
  padding: 44px;
  color: var(--ivory);
}
.contact-info h3 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(201,153,58,.18);
  border: 1px solid rgba(201,153,58,.25);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-item-label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: 2px; }
.contact-item-val { font-size: 15px; font-weight: 500; color: var(--ivory); }
.map-wrap { border-radius: var(--radius-xl); overflow: hidden; margin-top: 24px; }
.map-wrap iframe { width: 100%; height: 300px; border: 0; display: block; }

/* ---- Page Hero ---- */
.page-hero {
  padding: 88px 0 72px;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-mid) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/470207246_122181669926138132_2556890139368532662_n.jpeg') center / cover no-repeat;
  opacity: .08;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
  display: block;
}
.page-hero h1 {
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  font-weight: 300;
  line-height: 1.7;
}

/* ---- Footer ---- */
.footer {
  background: var(--ink);
  color: var(--ivory);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand h2 {
  font-size: 26px;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 4px;
}
.footer-brand .tagline {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  padding: 6px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--ivory); }
.footer-col p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-bottom a { color: var(--gold); }

/* ---- WhatsApp ---- */
.whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  z-index: 200;
  box-shadow: 0 6px 28px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 36px rgba(37,211,102,.5);
}
.whatsapp svg { flex-shrink: 0; }

/* ---- Alert ---- */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: #e8faf0;
  color: #146c2e;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 500;
  border-left: 3px solid #25a244;
}
.alert.alert-error { background: #fff0f0; color: #c0392b; border-left-color: #e74c3c; }

/* ---- Admin ---- */
.admin-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.sidebar {
  background: var(--ink);
  color: var(--ivory);
  padding: 28px 20px;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.sidebar h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--ivory);
  padding: 0 8px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 16px;
}
.sidebar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 8px 20px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.sidebar-user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--plum);
  display: grid;
  place-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}
.sidebar-user-name { font-size: 14px; font-weight: 600; color: var(--ivory); line-height: 1.3; }
.sidebar-user-role { font-size: 11px; color: var(--gold-light); text-transform: capitalize; }
.sidebar-section {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  padding: 16px 14px 6px;
}
.sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
  margin-bottom: 2px;
}
.sidebar a:hover, .sidebar a.active {
  background: rgba(255,255,255,.1);
  color: var(--ivory);
}
.admin-main {
  padding: 36px;
  background: #f5f0eb;
}
.admin-main h1 {
  font-size: 32px;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 24px;
}
.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--gold-pale);
  color: var(--plum);
}
.table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink);
}
.table tr:last-child td { border-bottom: none; }
.table tr:hover td { background: rgba(250,246,239,.6); }
.price { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 600; color: var(--plum); line-height: 1; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 14px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }

/* Admin form layout */
.form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  margin-top: 14px;
}
.form label:first-of-type { margin-top: 0; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
.form-actions { margin-top: 22px; display: flex; gap: 10px; }
.form-hint { font-size: 12px; color: var(--muted); margin-top: 4px; }

/* Panel header with title + action button */
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.panel-header h1 { margin-bottom: 0; }

/* Small buttons for table rows */
.btn-sm {
  padding: 7px 16px;
  font-size: 13px;
  border-radius: 999px;
}
.btn-danger { background: #c0392b; color: var(--white); }
.btn-danger:hover { background: #a93226; }
.btn-ghost { background: transparent; color: var(--plum); border: 1.5px solid var(--border); }
.btn-ghost:hover { background: var(--gold-pale); border-color: var(--gold-pale); transform: none; box-shadow: none; }
.row-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* Status pills */
.pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}
.pill-active, .pill-confirmed { background: #e8faf0; color: #146c2e; }
.pill-suspended, .pill-cancelled { background: #fff0f0; color: #c0392b; }
.pill-new { background: var(--gold-pale); color: var(--plum); }
.pill-contacted { background: #eef3fc; color: #2d5fa3; }
.pill-super_admin { background: var(--plum); color: var(--gold-light); }
.pill-admin { background: var(--gold-pale); color: var(--plum); }
.pill-editor { background: #f0eef3; color: #5b4a6b; }

.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: var(--muted);
  font-size: 14px;
}
.table-wrap { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.table-wrap .table { box-shadow: none; border-radius: 0; }
.thumb { width: 64px; height: 48px; object-fit: cover; border-radius: 8px; display: block; }
.modal-confirm-note { font-size: 12px; color: var(--muted); }

/* ---- Animations ---- */
@keyframes slowzoom { to { transform: scale(1.1); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--ivory); padding: 16px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); }
  .nav.open { display: flex; }
  .menu-toggle { display: flex; }
  .hero { min-height: 88vh; }
  .hero h1 { font-size: 52px; }
  .hero .container { padding-bottom: 80px; }
  .hero-stats { gap: 24px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-img { aspect-ratio: 16/9; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .item:first-child { grid-row: span 1; aspect-ratio: 4/3; }
  .cta-banner { padding: 40px 28px; flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .page-hero { padding: 64px 0 48px; }
  .page-hero h1 { font-size: 40px; }
  .admin-layout { grid-template-columns: 1fr; }
  .sidebar { position: relative; height: auto; }
  .topbar .container { flex-direction: column; gap: 6px; text-align: center; }
  .booking-wrap .form-row { grid-template-columns: 1fr; }
  .booking-wrap { padding: 24px; }
  .section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { justify-content: center; }
}
