/* ====================== Reset & Base ====================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #12111f;
  color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
svg { display: inline-block; vertical-align: middle; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: Georgia, 'Times New Roman', serif; font-weight: 600; }

/* ====================== Design tokens ====================== */
:root {
  --bg-dark: #12111f;
  --bg-cream: #faf7f0;
  --bg-card-dark: #1c1b2e;
  --bg-section-grad: linear-gradient(142deg, #12111f 0%, #1c1b2e 50%, #252638 100%);
  --text-dark: #1e1c2a;
  --text-muted: #7a7890;
  --gold: #c9993a;
  --gold-light: #f5e0a0;
  --gold-grad: linear-gradient(90deg, #9a7020 0%, #c9993a 50%, #f5e0a0 100%);
  --gold-grad-135: linear-gradient(135deg, #9a7020 0%, #c9993a 50%, #f5e0a0 100%);
  --border-gold: rgba(201, 153, 58, 0.3);
  --border-gold-light: rgba(201, 153, 58, 0.2);
  --container: 1180px;
}

/* ====================== Layout ====================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

/* ====================== Header ====================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 110px;
  background: rgba(18, 17, 31, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 153, 58, 0.15);
  z-index: 100;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img { height: 100px; width: auto; }
.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 40px;
}
.main-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #fff;
  padding: 8px 0;
  transition: color .4s, text-shadow .4s;
}
.main-nav a.active { color: var(--gold-light); text-shadow: 0 0 20px rgba(201,153,58,0.5); }
.main-nav a:hover { color: var(--gold-light); text-shadow: 0 0 20px rgba(201,153,58,0.5); }
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transition: width .4s ease;
}
.main-nav a.active::after { width: 100%; background: linear-gradient(90deg, transparent, var(--gold-light), transparent); }
.main-nav a:hover::after { width: 100%; }
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.icon-btn {
  width: 34px; height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  border-radius: 4px;
}
.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(110deg, #9a7020 0%, #c9993a 25%, #f5e0a0 50%, #c9993a 75%, #9a7020 100%);
  background-size: 200% 100%;
  color: var(--bg-dark);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 6px;
  transition: transform .2s, box-shadow .2s;
  animation: goldShimmer 4s ease-in-out infinite;
}
.btn-book:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(201,153,58,.35); }
@keyframes goldShimmer {
  0% { background-position: 100% 0; }
  50% { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}
@keyframes rotateClockwise {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
.menu-toggle { display: none; }

/* ====================== Hero (Homepage) ====================== */
.hero {
  position: relative;
  min-height: 720px;
  margin-top: 110px;
  background: var(--bg-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,11,24,0.95) 0%, rgba(12,11,24,0.6) 50%, rgba(12,11,24,0.2) 100%);
}
.hero-corner {
  position: absolute;
  width: 40px; height: 40px;
  border-color: var(--gold);
  border-style: solid;
}
.hero-corner.top-left { top: 110px; left: 24px; border-width: 1.6px 0 0 1.6px; }
.hero-corner.bottom-left { bottom: 80px; left: 24px; border-width: 0 0 1.6px 1.6px; }
.hero-content {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 112px 56px 80px;
  display: grid;
  grid-template-columns: 1fr 384px;
  gap: 76px;
  align-items: start;
}
.hero-text { max-width: 640px; }
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.eyebrow-line {
  width: 32px; height: 2px;
  background: var(--gold-grad);
}
.hero h1 {
  margin-top: 24px;
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 90px;
  color: #fff;
  font-weight: 600;
}
.hero h1 .accent {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.hero-subline {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 8px rgba(201,153,58,0.7);
}
.diamond.outline { background: transparent; border: 0.8px solid var(--gold); box-shadow: none; }
.diamond.lg { width: 12px; height: 12px; box-shadow: 0 0 8px rgba(201,153,58,0.5); }
.subline-line { width: 48px; height: 2px; background: linear-gradient(90deg, var(--gold) 0%, transparent 100%); }
.hero-desc {
  margin-top: 32px;
  max-width: 448px;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 26px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
}
.stat .stat-num {
  font-family: Georgia, serif;
  font-size: 36px;
  line-height: 40px;
  color: var(--gold-light);
  font-weight: 600;
}
.stat .stat-label {
  margin-top: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Quick Booking */
.booking-card {
  background: rgba(12,11,24,0.6);
  border: 0.8px solid var(--border-gold);
  border-radius: 4px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.booking-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}
.booking-card h3 {
  font-size: 24px;
  color: var(--gold-light);
  line-height: 32px;
}
.booking-card .helper {
  margin-top: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 17.875px;
}
.booking-form {
  margin-top: 24px;
  display: grid;
  gap: 16px;
}
.field-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: rgba(201,153,58,0.8);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.field-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 0.8px solid rgba(201,153,58,0.2);
  border-radius: 4px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  height: 45.6px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
select.field-input {
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23c9993a'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
  background-color: rgba(255,255,255,0.05);
}
select.field-input option {
  background: #1e1c2a;
  color: #fff;
  padding: 10px 16px;
}
select.field-input:focus option:checked {
  background: var(--gold);
  color: var(--bg-dark);
}
.dark-form-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.dark-form-input,
select.dark-form-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 0.8px solid rgba(201,153,58,0.2);
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  height: 45.6px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
select.dark-form-input {
  padding-right: 40px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23c9993a'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
select.dark-form-input option {
  background: #1e1c2a;
  color: #fff;
  padding: 10px 16px;
}
select.dark-form-input:focus,
.dark-form-input:focus {
  outline: none;
  border-color: var(--gold);
}
input[type="date"] {
  color-scheme: dark;
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 0.8px solid rgba(201,153,58,0.2);
  border-radius: 4px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.7) sepia(1) saturate(5) hue-rotate(5deg);
  cursor: pointer;
}
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button { display: none; }
.field-input::placeholder { color: rgba(255,255,255,0.4); }
.field-input:focus { outline: none; border-color: var(--gold); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  background: linear-gradient(110deg, #9a7020 0%, #c9993a 25%, #f5e0a0 50%, #c9993a 75%, #9a7020 100%);
  background-size: 200% 100%;
  color: var(--bg-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: transform .2s, box-shadow .2s;
  animation: goldShimmer 4s ease-in-out infinite;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(201,153,58,.35); }

/* ====================== Section heading ====================== */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 64px;
}
.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.section-head .eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.section-head h2 {
  margin-top: 12px;
  font-size: 36px;
  line-height: 40px;
  color: var(--text-dark);
}
.dark .section-head h2,
.section-dark .section-head h2 { color: #fff; }
.section-head .deco {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
.deco-line {
  width: 64px; height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 100%);
}
.deco-line.r { background: linear-gradient(270deg, transparent 0%, var(--gold) 100%); }
.section-head .desc {
  margin-top: 24px;
  max-width: 576px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 22.75px;
}
.dark .section-head .desc,
.section-dark .section-head .desc { color: rgba(255,255,255,0.5); }
.section-head.center .desc { max-width: 640px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 0.8px solid var(--gold);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--gold); color: var(--bg-dark); }
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 0.8px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s;
}
.btn-outline-light:hover { background: var(--gold); color: var(--bg-dark); border-color: var(--gold); }
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(110deg, #9a7020 0%, #c9993a 25%, #f5e0a0 50%, #c9993a 75%, #9a7020 100%);
  background-size: 200% 100%;
  color: var(--bg-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 4px 7px rgba(201,153,58,0.3);
  white-space: nowrap;
  transition: transform .2s;
  animation: goldShimmer 4s ease-in-out infinite;
}
.btn-gold:hover { transform: translateY(-1px); }

/* ====================== Gallery ====================== */
.section-light { background: var(--bg-cream); color: var(--text-dark); padding: 112px 0; }
.section-dark { background: var(--bg-section-grad); color: #fff; padding: 112px 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  transition: transform .3s ease, box-shadow .3s ease;
}
.gallery-card:hover { transform: translateY(-4px); box-shadow: 0 20px 35px -10px rgba(0,0,0,0.2); }
.gallery-card .thumb {
  height: 300px;
  overflow: hidden;
}
.gallery-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-card:hover .thumb img { transform: scale(1.05); }
.gallery-card .body { padding: 20px; }
.gallery-card h3 {
  font-size: 18px;
  line-height: 28px;
  color: var(--text-dark);
}
.gallery-card .meta {
  margin-top: 6px;
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ====================== Rooms & Suites ====================== */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.room-card {
  position: relative;
  height: 500px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
  isolation: isolate;
}
.room-card .thumb {
  position: absolute; inset: 0;
}
.room-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.room-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,17,31,0.95) 0%, rgba(18,17,31,0.4) 50%, rgba(18,17,31,0.05) 100%);
}
.room-badge {
  position: absolute;
  top: 20px; right: 20px;
  z-index: 2;
  padding: 6px 16px;
  background: linear-gradient(110deg, #9a7020 0%, #c9993a 25%, #f5e0a0 50%, #c9993a 75%, #9a7020 100%);
  background-size: 200% 100%;
  color: var(--bg-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 100px;
  box-shadow: 0 4px 7px rgba(201,153,58,0.4);
  animation: goldShimmer 4s ease-in-out infinite;
}
.room-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 32px;
}
.room-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9.5px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2.375px;
  text-transform: uppercase;
}
.room-cat::before { content: ''; display: block; width: 20px; height: 1px; background: var(--gold); }
.room-info h3 {
  margin-top: 8px;
  font-size: 30px;
  line-height: 36px;
  color: #fff;
  letter-spacing: 0.75px;
}
.room-meta {
  margin-top: 12px;
  display: flex;
  gap: 16px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
.room-meta span { display: flex; align-items: center; gap: 6px; }
.room-icon { width: 12px; height: 12px; opacity: 0.8; }
.room-price {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.room-price-text {
  font-size: 9.5px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.95px;
  text-transform: uppercase;
}
.room-price-amt {
  margin-top: 4px;
  font-size: 24px;
  line-height: 30px;
  color: var(--gold-light);
  font-family: Georgia, serif;
  font-weight: 600;
}
.btn-book-sm {
  padding: 10px 18px;
  background: linear-gradient(110deg, #9a7020 0%, #c9993a 25%, #f5e0a0 50%, #c9993a 75%, #9a7020 100%);
  background-size: 200% 100%;
  color: var(--bg-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  animation: goldShimmer 4s ease-in-out infinite;
}
.room-divider {
  margin-top: 20px;
  height: 1px;
  background: rgba(201,153,58,0.2);
}
.room-highlights {
  margin-top: 16px;
}
.room-highlights-title {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.room-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
}
.room-highlights-grid span { display: flex; align-items: center; gap: 6px; }

/* ====================== Why Choose Us (cards) ====================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.why-card {
  position: relative;
  background: #fff;
  border: 0.8px solid var(--border-gold-light);
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  height: 284px;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}
.why-icon {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-grad-135);
  border-radius: 50%;
  filter: drop-shadow(0 6px 12px rgba(201,153,58,0.3));
}
.why-icon img, .why-icon svg { width: 24px; height: 24px; }
.why-card h3 {
  font-size: 20px;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  line-height: 28px;
  margin-bottom: 16px;
}
.why-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 19.5px;
}
.why-card.dark {
  background: rgba(255,255,255,0.04);
  border-color: var(--border-gold-light);
}
.why-card.dark h3 { color: #fff; }
.why-card.dark p { color: rgba(255,255,255,0.6); }

/* Blog date pill */
.blog-card .thumb { position: relative; }
.blog-date-pill {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  padding: 6px 14px;
  background: linear-gradient(110deg, #9a7020 0%, #c9993a 25%, #f5e0a0 50%, #c9993a 75%, #9a7020 100%);
  background-size: 200% 100%;
  color: var(--bg-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 100px;
  box-shadow: 0 4px 7px rgba(0,0,0,0.2);
  animation: goldShimmer 4s ease-in-out infinite;
}

/* ====================== About ====================== */
.about-content {
  padding: 112px 0;
  background: var(--bg-cream);
  color: var(--text-dark);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 448px 1fr;
    gap: 92px;
  }
}
.about-visual {
  position: relative;
  width: 100%;
  max-width: 448px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 0.8px solid var(--border-gold-light);
  left: 50%;
  top: 50%;
  animation: rotateClockwise 60s linear infinite;
}
.ring.r1 { width: 91.96%; height: 91.96%; }
.ring.r2 { width: 69.20%; height: 69.20%; border-color: rgba(201,153,58,0.3); border-style: dashed; animation-direction: reverse; animation-duration: 50s; }
.ring.r3 { width: 41.52%; height: 41.52%; border-color: rgba(201,153,58,0.5); animation-duration: 40s; }
.about-center-disc {
  position: absolute;
  width: 24.11%; height: 24.11%;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--gold-grad-135);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark);
  text-align: center;
  box-shadow: 0 8px 24px rgba(201,153,58,0.4);
}
.about-center-disc .ico { font-size: 24px; }
.about-center-disc span { font-size: 11px; font-weight: 700; letter-spacing: 1px; margin-top: 6px; text-transform: uppercase; }
.about-feature-pin {
  position: absolute;
  width: 58px;
  text-align: center;
}
.about-feature-pin .ico-circ {
  width: 48px; height: 48px;
  margin: 0 auto;
  background: rgba(201,153,58,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.about-feature-pin .l1 { font-size: 11px; color: var(--text-dark); font-weight: 700; margin-top: 6px; }
.about-feature-pin .l2 { font-size: 10px; color: var(--text-muted); margin-top: 2px; }
.pin-top { top: -16px; left: 50%; transform: translateX(-50%); }
.pin-bl { bottom: 32px; left: 32px; }
.pin-br { bottom: 32px; right: 32px; }
.about-text { padding-top: 32px; }
.about-text h2 { font-family: Georgia, serif; font-size: 36px; line-height: 1.2; color: var(--text-dark); margin-bottom: 24px; }
.about-text h2 .accent { color: var(--gold); font-style: italic; }
.about-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-features li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-dark); }
.about-features .check { color: var(--gold); font-size: 16px; }

/* ====================== CTA Box ====================== */
.cta-box {
  background: var(--bg-dark);
  border-radius: 8px;
  padding: 80px 64px;
  text-align: center;
  border: 1px solid rgba(201,153,58,0.15);
  max-width: 800px;
  margin: 0 auto;
}
.cta-box .eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.cta-box h2 {
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 48px;
  color: #fff;
  margin-top: 16px;
  margin-bottom: 20px;
}
.cta-box h2 .accent {
  color: var(--gold-light);
  font-style: italic;
}
.cta-box p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  max-width: 540px;
  margin: 0 auto;
  line-height: 24px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}
.dining-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dining-images {
  position: relative;
  height: 480px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.dining-images img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}
.dining-images .span2 { grid-row: span 2; }
.dining-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--gold);
  color: var(--bg-dark);
  padding: 12px 16px;
  border-radius: 4px;
  text-align: center;
  z-index: 2;
}
.dining-badge .num { font-family: Georgia, serif; font-size: 26px; line-height: 30px; }
.dining-badge .lbl { font-size: 9px; letter-spacing: 1px; text-transform: uppercase; }
.dining-features { display: grid; gap: 24px; margin-top: 32px; }
.dining-feature { display: flex; gap: 16px; }
.dining-feature .feature-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,153,58,0.1);
  border-radius: 50%;
  color: var(--gold);
}
.dining-feature h4 {
  font-size: 18px;
  color: #fff;
  margin-bottom: 8px;
}
.dining-feature p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 20px; }

/* ====================== Events & Weddings ====================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.event-card {
  position: relative;
  height: 400px;
  border-radius: 6px;
  overflow: hidden;
  isolation: isolate;
}
.event-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.event-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18,17,31,0.95) 0%, rgba(18,17,31,0.3) 60%, rgba(18,17,31,0) 100%);
}
.event-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  z-index: 2;
}
.event-cat {
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.event-info h3 {
  font-size: 24px;
  color: #fff;
  line-height: 32px;
  margin-bottom: 12px;
}
.event-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gold-light);
}

/* ====================== Location ====================== */
.location-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.location-map {
  position: relative;
  height: 460px;
  background: linear-gradient(135deg, #1c1b2e, #252638);
  border-radius: 8px;
  overflow: hidden;
  border: 0.8px solid rgba(201,153,58,0.2);
}
.location-map .pin {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.location-map .pin-circle {
  width: 80px; height: 80px;
  margin: 0 auto;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(201,153,58,0.2), 0 0 0 16px rgba(201,153,58,0.1);
  color: var(--bg-dark);
}
.location-map .pin-info {
  margin-top: 16px;
  background: rgba(12,11,24,0.85);
  border: 0.8px solid var(--border-gold);
  padding: 16px 24px;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  display: inline-block;
}
.location-list { display: grid; gap: 16px; margin-top: 24px; }
.location-item {
  background: rgba(255,255,255,0.04);
  border: 0.8px solid var(--border-gold-light);
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.location-item .left { display: flex; align-items: center; gap: 16px; }
.location-item .icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,153,58,0.15);
  border-radius: 50%;
  color: var(--gold);
  flex-shrink: 0;
}
.location-item h4 { font-size: 16px; color: #fff; line-height: 24px; }
.location-item p { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.location-time {
  background: var(--gold);
  color: var(--bg-dark);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}

/* ====================== Instagram ====================== */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.insta-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  background: #1c1b2e;
}
.insta-card img { width: 100%; height: 100%; object-fit: cover; }
.insta-card::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(18,17,31,0.4);
  opacity: 0;
  transition: opacity .25s;
}
.insta-card:hover::after { opacity: 1; }
.insta-handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 0.8px solid var(--gold);
  border-radius: 100px;
  color: var(--gold);
  font-size: 14px;
  margin-top: 16px;
}

/* ====================== CTA Card ====================== */
.cta-card {
  background: var(--bg-dark);
  border-radius: 8px;
  padding: 80px 64px;
  text-align: center;
  border: 1px solid rgba(201,153,58,0.15);
}
.cta-card .eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 16px;
}
.cta-card h2 {
  font-family: Georgia, serif;
  font-size: 42px;
  line-height: 48px;
  color: #fff;
  margin-bottom: 20px;
}
.cta-card h2 .accent { color: var(--gold-light); font-style: italic; }
.cta-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  max-width: 540px;
  line-height: 24px;
  margin: 0 auto 32px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ====================== FAQ ====================== */
.faq-wrap {
  display: grid;
  grid-template-columns: 415px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-side .stat-row {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}
.faq-stat {
  background: rgba(255,255,255,0.04);
  border: 0.8px solid var(--border-gold-light);
  padding: 16px 24px;
  border-radius: 6px;
  text-align: center;
}
.faq-stat .num { font-family: Georgia, serif; font-size: 28px; color: var(--gold-light); }
.faq-stat .lbl { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,0.03);
  border: 0.8px solid var(--border-gold-light);
  border-radius: 6px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 18px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  color: #fff;
  font-family: Georgia, serif;
  font-weight: 600;
}
.faq-q .toggle {
  width: 24px; height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,153,58,0.15);
  border-radius: 50%;
  color: var(--gold);
  transition: transform .25s;
}
.faq-item.open .faq-q .toggle { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-a { max-height: 240px; }
.faq-a-inner {
  padding: 0 24px 18px;
  font-size: 14px;
  line-height: 23px;
  color: rgba(255,255,255,0.6);
}

/* ====================== Trusted By ====================== */
.trusted {
  padding: 56px 0;
  background: var(--bg-dark);
  border-top: 0.8px solid rgba(255,255,255,0.05);
  border-bottom: 0.8px solid rgba(255,255,255,0.05);
  text-align: center;
}
.trusted-head { margin-bottom: 32px; }
.trusted-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 56px;
  justify-content: center;
}
.trusted-label {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
}
.trusted-sub {
  display: block;
  margin-top: 10px;
  font-family: Georgia, serif;
  font-size: 28px;
  color: #fff;
  font-weight: 600;
}
.trusted-name {
  font-family: Georgia, serif;
  font-size: 22px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  transition: color .25s;
}
.trusted-name:hover { color: var(--gold-light); }

/* ====================== Footer ====================== */
.site-footer {
  background: var(--bg-dark);
  padding: 80px 0 32px;
  border-top: 0.8px solid rgba(255,255,255,0.06);
}
.footer-top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.footer-logo { margin-bottom: 56px; }
.footer-logo img { width: 180px; height: auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-col p, .footer-col li {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 22px;
}
.footer-col h4 {
  font-size: 18px;
  color: #fff;
  padding-bottom: 13px;
  margin-bottom: 24px;
  border-bottom: 0.8px solid var(--border-gold);
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color .2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-info {
  display: grid;
  gap: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.footer-info li { display: flex; gap: 12px; align-items: flex-start; }
.footer-info li .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.social-row {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}
.social-link {
  width: 36px; height: 36px;
  border: 0.8px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background .2s, color .2s;
}
.social-link:hover { background: var(--gold); color: var(--bg-dark); }
.newsletter-form {
  margin-top: 8px;
  display: flex;
  border: 0.8px solid var(--border-gold);
  border-radius: 6px;
  overflow: hidden;
  height: 45.6px;
}
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: none;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  padding: 0 20px;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.footer-bottom {
  max-width: var(--container);
  margin: 48px auto 0;
  padding: 24px 24px 0;
  border-top: 0.8px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom .links { display: flex; gap: 24px; }
.footer-bottom a:hover { color: var(--gold); }

/* ====================== Page Hero (about/blog/contact) ====================== */
.page-hero {
  position: relative;
  margin-top: 110px;
  padding: 128px 0 96px;
  background: var(--bg-dark);
  overflow: hidden;
  text-align: center;
  border-bottom: 0.8px solid rgba(201,153,58,0.1);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,153,58,0.08), transparent 60%);
}
.page-hero .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}
.page-hero h1 {
  margin-top: 16px;
  font-size: 60px;
  line-height: 1;
  color: #fff;
  font-family: Georgia, serif;
}
.page-hero h1 .accent { color: var(--gold-light); font-style: italic; }
.page-hero .deco {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.page-hero .desc {
  margin: 32px auto 0;
  max-width: 672px;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 26px;
}

/* ====================== Blog grid ====================== */
.blog-section {
  padding: 112px 0;
  background: var(--bg-cream);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.blog-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0,0,0,0.07);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 28px rgba(0,0,0,0.12); }
.blog-card .thumb {
  height: 240px;
  overflow: hidden;
}
.blog-card .thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.blog-card:hover .thumb img { transform: scale(1.05); }
.blog-card .body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.blog-card h3 {
  margin-top: 12px;
  font-size: 22px;
  line-height: 28px;
  color: var(--text-dark);
  min-height: 56px;
}
.blog-card p {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 22.75px;
  flex: 1;
}
.read-more {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.read-more::after {
  content: '→';
  display: inline-block;
  transition: transform .2s;
}
.blog-card:hover .read-more::after { transform: translateX(4px); }
.pagination {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.pagination a, .pagination > span {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0.8px solid var(--border-gold-light);
  border-radius: 4px;
  font-size: 13px;
  color: var(--text-dark);
  transition: background .2s;
}
.pagination .active { color: var(--gold); border-color: var(--gold); background: transparent; }
.pagination .dots { border: none; color: var(--text-muted); width: auto; padding: 0 8px; }
.pagination a:hover { background: rgba(201,153,58,0.1); }

/* ====================== Contact ====================== */
.contact-section {
  padding: 112px 0;
  background: var(--bg-cream);
  color: var(--text-dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-text h2 {
  font-size: 36px;
  color: var(--text-dark);
  line-height: 44px;
  margin-bottom: 16px;
}
.contact-text h2 .accent { color: var(--gold); font-style: italic; }
.contact-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 22.75px;
  margin-bottom: 32px;
}
.contact-info { display: grid; gap: 24px; }
.contact-info li { display: flex; gap: 16px; align-items: flex-start; }
.contact-info .icon-circ {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.contact-info h4 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.contact-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 20px;
  margin: 0;
}
.contact-form-wrap {
  background: #fff;
  border-radius: 6px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.contact-form-wrap h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.contact-form { display: grid; gap: 20px; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-cream);
  border: 0.8px solid #e6dfd0;
  border-radius: 4px;
  font-size: 14px;
  color: var(--text-dark);
}
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%231e1c2a'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
  height: 45.6px;
}
.contact-form select option {
  background: #faf7f0;
  color: var(--text-dark);
  padding: 10px 16px;
}
.contact-form select:focus option:checked {
  background: var(--gold);
  color: var(--bg-dark);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form button {
  background: var(--bg-dark);
  color: #fff;
  padding: 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s;
}
.contact-form button:hover { background: var(--gold); color: var(--bg-dark); }

/* ====================== Responsive ====================== */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 24px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-content { grid-template-columns: 1fr; gap: 64px; padding: 112px 24px 64px; }
  .booking-card { max-width: 384px; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-visual { margin: 0 auto; }
  .faq-wrap { grid-template-columns: 1fr; gap: 48px; }
  .location-wrap { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 800px) {
  .hero h1 { font-size: 48px; line-height: 60px; }
  .page-hero h1 { font-size: 44px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head h2 { font-size: 30px; line-height: 36px; }
  .gallery-grid, .rooms-grid, .events-grid, .blog-grid { grid-template-columns: 1fr 1fr; }
  .dining-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .logo img { height: 80px; }
  .header-inner { padding: 0 16px; }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    color: #fff;
    flex-shrink: 0;
  }
  .main-nav {
    position: fixed;
    top: 110px; left: 0; right: 0;
    background: rgba(18,17,31,0.98);
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    gap: 0;
    border-top: 0.8px solid rgba(201,153,58,0.15);
    transform: translateY(-150%);
    transition: transform .3s;
    display: flex;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    z-index: 99;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { 
    padding: 16px 24px; 
    width: 100%; 
    border-bottom: 1px solid rgba(255,255,255,0.05); 
    text-align: left;
    white-space: nowrap;
  }
  .main-nav a::after { display: none; }
  .header-right .icon-btn { display: none; }
  .btn-book { padding: 8px 14px; font-size: 11px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 38px; line-height: 50px; }
  .page-hero { padding: 96px 0 64px; }
  .page-hero h1 { font-size: 36px; }
  .gallery-grid, .rooms-grid, .events-grid, .blog-grid, .why-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .container { padding: 0 16px; }
  .header-inner { padding: 0 16px; }
  .logo img { height: 60px; }
  .field-row { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
  .trusted-row { gap: 24px; }
}

/* Gallery Page Extras */
.video-container {
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}
.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a2e 100%);
}
.video-placeholder h3 {
  font-family: 'Tinos', serif;
  font-size: 24px;
  color: #fff;
  margin: 20px 0 8px;
}
.video-placeholder p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}
.gallery-item.hidden { display: none; }
