@import url("https://fonts.googleapis.com/css2?family=Charis+SIL:ital,wght@0,400;0,700;1,400;1,700&display=swap");

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #ffffff;
  --text: #000000;
  --text-muted: #000000;
  --border: #d4af37;
  --accent: #d4af37;
  --accent-strong: #d4af37;
  --gold: #d4af37;
  --gold-soft: #ffffff;
  --btn-yellow: #d4af37;
  --btn-yellow-hover: #d4af37;
  --btn-yellow-border: #d4af37;
  --btn-text: #000000;
  --success: #d4af37;
  --warn: #d4af37;
  --danger: #d4af37;

}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Charis SIL", serif;
  color: var(--text);
  background: var(--bg);
}

button,
input,
select,
textarea {
  font-family: inherit;
}

a {
  color: inherit;
}

.photo-preview {
  cursor: zoom-in;
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px 92px;
  background: rgba(0, 0, 0, 0.91);
}

.photo-lightbox.is-open {
  display: flex;
}

.photo-lightbox-image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 144px);
  object-fit: contain;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.photo-lightbox-nav,
.photo-lightbox-close {
  position: absolute;
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.photo-lightbox-nav {
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 2.5rem;
  line-height: 1;
  transform: translateY(-50%);
}

.photo-lightbox-prev { left: 24px; }
.photo-lightbox-next { right: 24px; }

.photo-lightbox-close {
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.photo-lightbox-nav:hover,
.photo-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.32);
}

.photo-lightbox-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .photo-lightbox { padding: 64px 56px; }
  .photo-lightbox-nav { width: 42px; height: 42px; font-size: 2rem; }
  .photo-lightbox-prev { left: 8px; }
  .photo-lightbox-next { right: 8px; }
  .photo-lightbox-close { top: 10px; right: 10px; }
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.main-content {
  flex: 1;
  padding-bottom: 56px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(8px);
  background: linear-gradient(90deg, #FDE897 3%, #f9ce34 27%, #EFBF04 49%, #FBCC13 74%, #FDE897 100%);
  border-bottom: 1px solid #B58E21;
}

.nav-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
  min-width: 0;
  overflow-x: auto;
}

.brand {
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin: auto 0;
}

.navbar .brand,
.navbar .brand:link,
.navbar .brand:visited,
.navbar .brand:hover,
.navbar .brand:active {
  text-decoration: none !important;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
  justify-content: flex-end;
  overflow-x: auto;
  white-space: nowrap;
}

.nav-links a {
  text-decoration: none;
  color: #000000;
  background: #f7d16b;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
  min-width: 72px;
}

@media (max-width: 760px) {
  .nav-links {
    gap: 6px;
  }

  .nav-links a {
    padding: 6px 10px;
    font-size: 0.72rem;
    min-width: 0;
  }
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #000000;
  background: #f9e69f;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.nav-links a:active {
  transform: translateY(0);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
}

.nav-links a:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
}

.navbar-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  align-items: center;
  justify-content: center;
}

.navbar-toggle .toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px 0;
  background: #000;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-links.open {
  max-height: 420px;
  opacity: 1;
  visibility: visible;
}

.footer {
  border-top: 1px solid #B58E21;
  background: linear-gradient(90deg, #FDE897 3%, #f9ce34 27%, #EFBF04 49%, #FBCC13 74%, #FDE897 100%);
}

.footer-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #000000;
  font-size: 0.95rem;
}

.footer-inner p {
  margin: 3px 0;
}

.footer-contact {
  font-style: normal;
  text-align: right;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.hero {
  padding: 96px 0 82px;
}

.hero .container {
  padding: 64px 52px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: url('/static/images/gallery1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.12;
  font-family: "Charis SIL", serif;
}

.hero p,
.hero .home-hero-description {
  max-width: 760px;
  margin: 18px auto 0;
  color: #ffffff !important;
  font-size: 1.04rem;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn-primary {
  color: #000000;
  background: linear-gradient(90deg, #E1B84F 0%, #D6A826 100%);
  border-color: #B58E21;
  box-shadow: 0 10px 30px rgba(214, 168, 38, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(90deg, #FFD95B 0%, #E1B84F 100%);
  transform: translateY(-1px);
}

.btn-outline {
  margin-left: 10px;
  color: #000000;
  background: linear-gradient(90deg, #E1B84F 0%, #D6A826 100%);
  border-color: #B58E21;
  box-shadow: 0 10px 30px rgba(214, 168, 38, 0.2);
}

.btn-outline:hover {
  background: linear-gradient(90deg, #FFD95B 0%, #E1B84F 100%);
  color: #000000;
  transform: translateY(-1px);
}

.card-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .nav-inner {
    min-height: 80px;
  }

  .hero .container {
    padding: 28px 20px;
  }

  .hero {
    padding: 48px 0;
  }

  .home-section-spacious {
    padding: 48px 0;
  }
}

@media (min-width: 1400px) {
  .container {
    width: min(1280px, calc(100% - 48px));
  }

  .media-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.card h3 {
  margin: 0 0 10px;
}

.card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  align-items: stretch;
}

/* Make every grid row the same height so cards align perfectly */
.media-grid {
  grid-auto-rows: 1fr;
}

/* For listing pages (venues, decor) use larger cards to fill empty space */
.media-grid.listing-grid-spaced {
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 24px;
}

.media-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: 0.2s ease;
  min-height: 320px;
}

/* Allow cards to shrink in constrained layouts and avoid image overflow */
.media-card {
  min-height: 0;
}

.media-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  flex: 1 1 auto;
}

/* Ensure the image itself doesn't add extra rounding or spacing */
.media-card img {
  border-radius: 0;
  vertical-align: middle;
}

.media-info {
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.media-info h4 {
  margin: 0 0 8px 0;
  font-size: 1.06rem;
}

.media-info span {
  display: block;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.booking-section {
  width: min(760px, calc(100% - 32px));
  margin: 84px auto 0;
}

.booking-header {
  text-align: center;
  margin-bottom: 22px;
}

.booking-header h1 {
  margin: 0;
  font-family: "Charis SIL", serif;
  font-size: clamp(1.75rem, 4.2vw, 2.45rem);
}

.booking-header p {
  margin-top: 10px;
  color: var(--text-muted);
}

.form-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.premium-form {
  background: var(--surface);
}

.selected-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.selected-summary > div {
  background: #ffffff;
  border: 1px solid #d4af37;
  border-radius: 12px;
  padding: 12px 14px;
}

.selected-summary span {
  display: block;
  color: var(--text-muted);
  font-size: 0.84rem;
  margin-bottom: 5px;
}

.selected-summary strong {
  color: #000000;
}

.input-group {
  position: relative;
  margin-top: 14px;
}

.input-group input {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  border: 1px solid #d4af37;
  background: #ffffff;
  color: #000000;
  padding: 22px 14px 8px;
  font-size: 0.96rem;
  outline: none;
}

.input-group input:focus {
  border-color: var(--btn-yellow-border);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.28);
}

.input-group label {
  position: absolute;
  left: 14px;
  top: 8px;
  color: #000000;
  font-size: 0.75rem;
  pointer-events: none;
}

.submit-btn {
  width: 100%;
  margin-top: 20px;
  min-height: 50px;
  border: 0;
  cursor: pointer;
}

.fade-up {
  animation: fadeUp 0.7s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.admin-header,
.stats-grid,
.tabs,
.table-card {
  width: min(1200px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

.admin-header {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.admin-header h1 {
  margin: 0;
  font-size: 1.5rem;
}

.admin-header p {
  margin: 4px 0 0;
  color: var(--text-muted);
}

.logout-btn {
  display: inline-block;
  color: var(--btn-text);
  text-decoration: none;
  background: transparent;
  background-image: none;
  border: 1px solid var(--btn-yellow-border);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  transition: 0.2s ease;
}

.logout-btn:hover {
  background: transparent;
}

.stats-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.stat-card h2 {
  margin: 0;
  font-size: 1.8rem;
  color: #000000;
}

.stat-card span {
  color: var(--text-muted);
}

.stat-card.purple {
  border-left: 4px solid #d4af37;
}

.stat-card.gold-alt {
  border-left: 4px solid #d4af37;
}

.stat-card.green {
  border-left: 4px solid #d4af37;
}

.stat-card.orange {
  border-left: 4px solid #d4af37;
}

.tabs {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tab {
  border: 1px solid var(--btn-yellow-border);
  background: transparent;
  background-image: none;
  color: var(--btn-text);
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: 0.2s ease;
}

.tab.active {
  border-color: var(--btn-yellow-border);
  color: var(--btn-text);
  background: transparent;
}

.tab:hover {
  background: transparent;
}

.table-card {
  margin-top: 20px;
  margin-bottom: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
  overflow-x: auto;
  box-shadow: var(--shadow-sm);
}

.table-card h2 {
  margin-top: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  border-bottom: 1px solid var(--border);
  text-align: left;
  padding: 12px 8px;
  vertical-align: top;
}

th {
  color: #000000;
  font-weight: 600;
}

small {
  color: var(--text-muted);
}

.badge {
  display: inline-block;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid var(--border);
}

.badge.pending {
  background: #ffffff;
  color: #000000;
  border-color: #d4af37;
}

.badge.approved {
  background: #ffffff;
  color: #000000;
  border-color: #d4af37;
}

.badge.rejected {
  background: #ffffff;
  color: #000000;
  border-color: #d4af37;
}

.details-btn {
  border: 1px solid var(--btn-yellow-border);
  background: transparent;
  background-image: none;
  color: var(--btn-text);
  border-radius: 8px;
  padding: 7px 10px;
  cursor: pointer;
  transition: 0.2s ease;
}

.details-btn:hover {
  background: transparent;
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  background: rgba(0, 0, 0, 0.35);
  padding: 16px;
}

.modal.open {
  display: grid;
}

.modal-content {
  width: min(720px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.close-modal {
  border: 1px solid var(--btn-yellow-border);
  background: transparent;
  background-image: none;
  color: var(--btn-text);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  transition: 0.2s ease;
}

.close-modal:hover {
  background: transparent;
}

.modal-body {
  padding: 16px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.info-grid label {
  display: block;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.modal textarea {
  width: 100%;
  margin-top: 12px;
  min-height: 84px;
  resize: vertical;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: #000000;
}

.modal-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.modal-actions .approve,
.modal-actions .reject {
  border: none;
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  padding: 9px 14px;
  cursor: pointer;
  transition: 0.2s ease;
}

.modal-actions .approve {
  background: transparent;
  background-image: none;
}

.modal-actions .reject {
  background: transparent;
  background-image: none;
}

.modal-actions .approve:hover,
.modal-actions .reject:hover {
  background: transparent;
}

.home-text-center {
  text-align: center;
}

.home-hero-actions {
  margin-top: 40px;
}

.home-section-spacious {
  padding: 80px 0;
}

.home-section-bottom {
  padding-bottom: 60px;
}

.home-section-bottom-lg {
  padding-bottom: 80px;
}

.home-centered-content {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.home-title-lg {
  margin: 0;
  font-family: "Charis SIL", serif;
  font-size: clamp(2rem, 4.5vw, 2.7rem);
}

.home-title-md {
  margin: 0;
  font-family: "Charis SIL", serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
}

.home-about-text {
  margin-top: 20px;
  color: var(--text-muted);
  line-height: 1.8;
}

.home-gallery-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-top: 12px;
}

.home-gallery-note {
  text-align: center;
  margin-top: 20px;
  color: var(--text-muted);
}

.home-contact-box {
  margin-top: 40px;
}

.home-contact-intro {
  color: var(--text-muted);
  margin-bottom: 20px;
  text-align: center;
}

.listing-section-top {
  padding: 60px 0 24px;
}

.listing-section-bottom {
  padding: 20px 0 60px;
}

.listing-subtitle {
  text-align: center;
  color: var(--text-muted);
}

.listing-grid-spaced {
  margin-top: 36px;
}

.venue-detail-card {
  margin: 28px auto;
  max-width: 900px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.eyebrow {
  margin: 0 0 10px;
  color: #8d6812;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.palace-next-section {
  padding: 8px 0 28px;
}

.palace-next-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 34px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(120deg, #fff9e6, #ffffff);
}

.palace-next-card h2,
.palace-next-card p {
  margin: 0;
}

.palace-next-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.aknk-hero {
  min-height: 590px;
  display: flex;
  align-items: end;
  padding: 82px 0;
  color: #fff;
  background: linear-gradient(90deg, rgba(17, 20, 12, 0.82), rgba(17, 20, 12, 0.18)), url('/static/images/AKNK%20Image.jpg') center / cover;
}

.aknk-hero-content { max-width: 760px; }
.hero-logo {
  display: block;
  width: 88px;
  height: 88px;
  margin: 0 0 14px;
  object-fit: contain;
}

.hero-logo--wdc {
  width: 210px;
  height: 64px;
  object-fit: cover;
  filter: invert(1);
}

.aknk-hero .eyebrow { color: #f6dc85; }
.aknk-hero h1 { margin: 0; font-size: clamp(3.5rem, 9vw, 7.4rem); line-height: .82; letter-spacing: -.06em; }
.aknk-hero h1 em { color: #f4ce56; font-weight: 400; }
.aknk-hero-content > p:not(.eyebrow) { max-width: 570px; margin: 27px 0; font-size: 1.12rem; line-height: 1.75; }
.aknk-hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.aknk-text-link { color: #fff; font-weight: 700; text-decoration: none; }
.aknk-text-link span { margin-left: 5px; color: #f4ce56; }

.aknk-moments { display: grid; grid-template-columns: .92fr 1.08fr; gap: 80px; padding: 96px 0; align-items: start; }
.aknk-moments h2, .aknk-gallery-heading h2 { margin: 0; font-size: clamp(2.1rem, 4vw, 3.5rem); line-height: 1.04; }
.aknk-moments-list { border-top: 1px solid #d9bc65; }
.aknk-moments-list article { display: grid; grid-template-columns: 48px 1fr; gap: 12px; padding: 25px 0; border-bottom: 1px solid #d9bc65; }
.aknk-moments-list span { color: #95711c; font-size: .8rem; font-weight: 700; letter-spacing: .1em; }
.aknk-moments-list h3 { margin: 0 0 8px; font-size: 1.25rem; }
.aknk-moments-list p { margin: 0; line-height: 1.65; }

.aknk-gallery-section { padding: 0 0 88px; }
.aknk-gallery-heading { margin-bottom: 30px; }
.aknk-gallery-tableau { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: repeat(2, 230px); gap: 16px; }
.aknk-gallery-tableau article { overflow: hidden; }
.aknk-gallery-tableau article:first-child { grid-row: span 2; }
.aknk-gallery-tableau img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .45s ease; }
.aknk-gallery-tableau article:hover img { transform: scale(1.045); }

.wdc-decor-hero {
  min-height: 570px;
  display: flex;
  align-items: end;
  padding: 82px 0;
  color: #fff;
  background: linear-gradient(90deg, rgba(25, 20, 8, .86), rgba(25, 20, 8, .18)), url('/static/images/download3.jpg') center / cover;
}

.wdc-decor-hero-content { max-width: 780px; }
.wdc-decor-hero .eyebrow { color: #f4ce56; }
.wdc-decor-hero h1 { margin: 0; font-size: clamp(3rem, 7vw, 6.2rem); line-height: .9; letter-spacing: -.045em; }
.wdc-decor-hero h1 em { color: #f4ce56; font-weight: 400; }
.wdc-decor-hero-content > p:not(.eyebrow) { max-width: 575px; margin: 25px 0 30px; font-size: 1.1rem; line-height: 1.75; }

.wdc-decor-story { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; padding: 94px 0; align-items: end; }
.wdc-decor-story h2, .wdc-decor-gallery-heading h2, .wdc-decor-cta h2 { margin: 0; font-size: clamp(2.1rem, 4vw, 3.5rem); line-height: 1.04; }
.wdc-decor-story-copy p { margin: 0 0 24px; line-height: 1.8; }
.wdc-text-link { color: #8d6812; font-weight: 700; text-decoration: none; }
.wdc-text-link span { margin-left: 7px; }

.wdc-decor-elements { padding: 80px 0; color: #fff; background: #1b160b; }
.wdc-decor-elements .eyebrow { color: #f4ce56; }
.wdc-decor-elements-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(244, 206, 86, .45); border-left: 1px solid rgba(244, 206, 86, .45); }
.wdc-decor-elements-grid article { min-height: 250px; padding: 30px; border-right: 1px solid rgba(244, 206, 86, .45); border-bottom: 1px solid rgba(244, 206, 86, .45); }
.wdc-decor-elements-grid span { color: #f4ce56; font-size: .8rem; font-weight: 700; letter-spacing: .12em; }
.wdc-decor-elements-grid h3 { margin: 54px 0 10px; font-size: 1.4rem; }
.wdc-decor-elements-grid p { margin: 0; color: #e9dfc8; line-height: 1.7; }

.wdc-decor-gallery { padding: 88px 0; }
.wdc-decor-gallery-heading { margin-bottom: 30px; }
.wdc-decor-mosaic { display: grid; grid-template-columns: 1fr 1.2fr; grid-template-rows: repeat(2, 235px); gap: 16px; }
.wdc-decor-mosaic img { width: 100%; height: 100%; display: block; object-fit: cover; }
.wdc-decor-feature { grid-row: span 2; }

.wdc-decor-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-bottom: 84px; padding: 44px; background: linear-gradient(120deg, #fff8dc, #fff); border: 1px solid #d4af37; }
.wdc-decor-cta .btn-primary { background: linear-gradient(90deg, #e1b84f, #d6a826); border-color: #b58e21; color: #000; }
.wdc-decor-cta .btn-primary:hover { background: linear-gradient(90deg, #ffd95b, #e1b84f); }

.nimai-hero {
  min-height: 530px;
  display: flex;
  align-items: end;
  padding: 70px 0;
  color: #fff;
  background: linear-gradient(90deg, rgba(13, 11, 7, 0.82), rgba(13, 11, 7, 0.24)), url('/static/images/gallery1.jpg') center / cover;
}

.nimai-hero-content {
  max-width: 760px;
}

.nimai-hero .eyebrow {
  color: #f8dc81;
}

.nimai-hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
}

.nimai-hero h1 em {
  color: #f4ce56;
  font-weight: 400;
}

.nimai-lead {
  max-width: 570px;
  margin: 25px 0 30px;
  font-size: 1.12rem;
  line-height: 1.7;
}

.nimai-story {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 94px 0;
}

.nimai-story h2,
.nimai-gallery-heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.03;
}

.nimai-story-copy > p:last-child {
  max-width: 520px;
  line-height: 1.8;
}

.nimai-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #d9bc65;
  border-left: 1px solid #d9bc65;
}

.nimai-facts div {
  min-height: 142px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  border-right: 1px solid #d9bc65;
  border-bottom: 1px solid #d9bc65;
}

.nimai-facts strong { font-size: 1.32rem; }
.nimai-facts span { margin-top: 7px; color: var(--text-muted); font-size: 0.9rem; }

.nimai-gallery-section { padding: 0 0 80px; }
.nimai-gallery-heading { margin-bottom: 30px; }

.nimai-mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: repeat(2, 220px);
  gap: 16px;
}

.nimai-mosaic img { width: 100%; height: 100%; object-fit: cover; }
.nimai-mosaic-tall { grid-row: span 2; }

.company-details-section {
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  padding: 80px 0;
  background: linear-gradient(125deg, #1b160b 0%, #34260a 58%, #766025 100%);
  border-top: 1px solid #e2c66f;
  border-bottom: 1px solid #e2c66f;
}

.company-details-section::before,
.company-details-section::after {
  position: absolute;
  content: "";
  width: 360px;
  height: 360px;
  border: 1px solid rgba(244, 206, 86, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.company-details-section::before {
  top: -210px;
  right: 7%;
}

.company-details-section::after {
  bottom: -250px;
  left: -90px;
  width: 460px;
  height: 460px;
}

.company-details-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.company-details-intro h2,
.services-section > h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.company-details-intro {
  color: #fffaf0;
}

.company-details-intro .eyebrow {
  color: #f4ce56;
}

.company-details-intro > p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 28px;
  line-height: 1.8;
}

.company-details-card {
  padding: 32px;
  border: 1px solid rgba(244, 206, 86, 0.7);
  border-radius: 2px;
  background: rgba(255, 253, 246, 0.96);
  box-shadow: 18px 18px 0 rgba(0, 0, 0, 0.18);
}

.company-details-card h3 { margin-top: 0; font-size: 1.5rem; }
.company-details-card dl { margin: 0; }
.company-details-card dl > div { padding: 16px 0; border-top: 1px solid #eee0b6; }
.company-details-card dl > div:first-child { border-top: 0; padding-top: 0; }
.company-details-card dt { margin-bottom: 6px; color: #8d6812; font-size: 0.78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.company-details-card dd { margin: 0; line-height: 1.6; }
.company-details-card a { color: inherit; }

.venue-map-section {
  padding: 84px 0;
}

.venue-map-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  align-items: start;
}

.venue-map-copy h2 {
  margin: 0 0 20px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.03;
}

.venue-map-copy p {
  margin: 0 0 24px;
  max-width: 620px;
  line-height: 1.75;
}

.venue-map-copy dl {
  margin: 0;
}

.venue-map-copy dt {
  margin-bottom: 8px;
  color: #8d6812;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.venue-map-copy dd {
  margin: 0 0 18px;
  line-height: 1.7;
}

.venue-map-frame iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 24px 46px rgba(0, 0, 0, .12);
}

.site-intro-video {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-intro-video__inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.site-intro-video video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}

.site-intro-video.hide {
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}


.video-skip-button:hover {
  background: #fff;
}

@media (max-width: 760px) {
  .video-overlay-inner {
    width: 100%;
    padding: 0 16px;
  }
  .video-skip-button {
    top: 12px;
    right: 12px;
    padding: 0.8rem 1.1rem;
  }
}

@media (max-width: 880px) {
  .venue-map-grid {
    grid-template-columns: 1fr;
  }
}

.company-details-intro .btn-primary {
  border-color: #f4ce56;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
}

.services-section { padding: 84px 0; }
.company-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.company-services-grid article { padding: 26px; border-top: 3px solid #d4af37; background: #fffdf7; }
.company-services-grid h3 { margin: 0 0 10px; }
.company-services-grid p { margin: 0; line-height: 1.7; }

.success-section {
  padding: 120px 0;
  max-width: 760px;
}

.success-form-box {
  margin-top: 24px;
}

.success-note {
  margin-top: 18px;
  text-align: center;
}

.success-actions {
  text-align: center;
  margin-top: 24px;
}

.booking-section-top {
  padding-top: 120px;
}

.confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 700px) {
  .hero {
    padding: 80px 0 64px;
  }

  .hero .container {
    padding: 38px 20px;
    border-radius: 20px;
  }

  .nav-inner {
    padding: 8px 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: nowrap;
    min-width: 0;
    overflow-x: auto;
  }

  .brand img {
    width: 44px;
    height: 44px;
    transform: none;
  }

  .nav-links {
    width: auto;
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
    gap: 4px;
    justify-content: flex-end;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links::-webkit-scrollbar {
    height: 6px;
  }

  .nav-links::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.18);
    border-radius: 999px;
  }

  .nav-links a {
    flex: 0 0 auto;
    min-width: 72px;
    padding: 6px 8px;
    border-radius: 999px;
    background: #f7d16b;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: #f9e69f;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  }

  .nav-links a:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
  }

  .nav-links a:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.85);
    outline-offset: 4px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 14px 0;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 10px;
  }

  .card-grid,
  .media-grid,
  .selected-summary,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .palace-next-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 25px;
  }

  .nimai-hero {
    min-height: 460px;
    padding: 54px 0;
  }

  .aknk-hero {
    min-height: 500px;
    padding: 60px 0;
  }

  .wdc-decor-hero {
    min-height: 490px;
    padding: 60px 0;
  }

  .wdc-decor-story {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 64px 0;
  }

  .wdc-decor-elements-grid {
    grid-template-columns: 1fr;
  }

  .wdc-decor-elements-grid article {
    min-height: 0;
  }

  .wdc-decor-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .wdc-decor-mosaic img,
  .wdc-decor-feature {
    height: 260px;
    grid-row: auto;
  }

  .wdc-decor-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px;
  }

  .aknk-moments {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 64px 0;
  }

  .aknk-gallery-tableau {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .aknk-gallery-tableau article,
  .aknk-gallery-tableau article:first-child {
    height: 260px;
    grid-row: auto;
  }

  .nimai-story {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 64px 0;
  }

  .nimai-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .nimai-mosaic img,
  .nimai-mosaic-tall {
    height: 260px;
    grid-row: auto;
  }

  .company-details-grid,
  .company-services-grid {
    grid-template-columns: 1fr;
  }

  .company-details-section,
  .services-section {
    padding: 60px 0;
  }

  .company-details-card {
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.18);
  }

  .footer-contact {
    text-align: center;
  }

  .booking-section {
    margin-top: 72px;
  }

  .confirm-actions {
    flex-direction: column;
  }

  .admin-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
