/* Fonts are optional; keep stylesheet self-contained for reliable rendering. */

:root {
  --bg: #f5efe6;
  --dark: #2d2322;
  --gold: #b89a61;
  --text: #1f1b19;
  --muted: rgba(31, 27, 25, 0.75);
}
* { box-sizing: border-box; }

/* OPTIMIZED IMAGE QUALITY - Balanced quality and performance */
img, video {
  /* Good quality rendering without heavy overhead */
  image-rendering: -webkit-optimize-contrast;
  -ms-interpolation-mode: bicubic;
  /* Basic GPU acceleration */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}
.topbar {
  position: relative;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, rgba(28, 22, 19, 0.97), rgba(47, 36, 30, 0.97));
  border-bottom: 1px solid rgba(210, 167, 55, 0.35);
  padding: 0.75rem 1.6rem;
  gap: 1.5rem;
}
.logo { 
  display: flex; 
  align-items: center; 
  flex-shrink: 0;
}
.logo img {
  display: block;
  width: 160px;
  height: 96px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,.35));
  /* Logo needs smooth rendering, override global crisp-edges */
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
  -ms-interpolation-mode: bicubic;
}
.nav { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 1.2rem; 
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav a {
  color: #f3e7cb;
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: .05em;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.nav a:hover {
  color: #d2a737;
}
.book-btn {
  background: #d2a737;
  color: #151515 !important;
  padding: .62rem 1rem;
  border-radius: 5px;
  border: 1px solid #b88d21;
  transition: all 0.3s ease;
}
.book-btn:hover {
  background: #e0b54a;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(210, 167, 55, 0.3);
}

/* Header Contact Section */
.header-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  background: rgba(210, 167, 55, 0.15);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(210, 167, 55, 0.3);
  transition: all 0.3s ease;
}
.header-contact:hover {
  background: rgba(210, 167, 55, 0.25);
  border-color: rgba(210, 167, 55, 0.5);
}
.header-phone-icon {
  color: #d2a737;
  flex-shrink: 0;
}
.header-phone {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.2;
}
.phone-label {
  color: #c9b896;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.phone-number {
  color: #f3e7cb;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}
.header-phone:hover .phone-number {
  color: #d2a737;
}

/* Responsive Header */
@media (max-width: 1200px) {
  .nav {
    gap: 0.9rem;
  }
  .nav a {
    font-size: 0.82rem;
  }
}

@media (max-width: 920px) {
  .topbar {
    flex-wrap: wrap;
    padding: 0.6rem 1rem;
    gap: 1rem;
  }
  .logo img {
    width: 130px;
    height: 78px;
  }
  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 0.7rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(210, 167, 55, 0.2);
  }
  .nav a {
    font-size: 0.75rem;
  }
  .header-contact {
    order: 2;
    margin-left: auto;
  }
}

@media (max-width: 600px) {
  .topbar {
    padding: 0.5rem 0.8rem;
  }
  .logo img {
    width: 110px;
    height: 66px;
  }
  .nav {
    gap: 0.5rem;
  }
  .nav a {
    font-size: 0.7rem;
    padding: 0.3rem 0;
  }
  .book-btn {
    padding: 0.45rem 0.7rem !important;
    font-size: 0.7rem !important;
  }
  .header-contact {
    padding: 0.5rem 0.8rem;
  }
  .phone-label {
    font-size: 0.65rem;
  }
  .phone-number {
    font-size: 0.85rem;
  }
  .header-phone-icon {
    width: 16px;
    height: 16px;
  }
}

.hero {
  min-height: 70vh;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 4rem 7vw;
  overflow: hidden;
}
.hero-overlay { position: absolute; inset: 0; background: transparent; z-index: 1; }
.hero-slider {
  position: absolute; inset: 0; z-index: 0;
  /* If no media is loaded, we use a premium gradient instead of external images. */
  background: radial-gradient(900px 500px at 20% 30%, rgba(184,154,97,.65), transparent 55%),
    linear-gradient(120deg, #2d2322 0%, #1f1616 50%, #3a2a27 100%);
  /* Preserve original quality - no interpolation */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-image { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  object-position: center;
  display: block;
  /* Balanced quality - good appearance without heavy processing */
  image-rendering: -webkit-optimize-contrast;
  -ms-interpolation-mode: bicubic;
  /* Efficient GPU acceleration */
  transform: translateZ(0);
  will-change: auto;
}
.carousel-dots {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.carousel-dots button {
  width: 12px; height: 12px; border-radius: 50%;
  border: 1px solid #fff; background: transparent; padding: 0;
}
.carousel-dots button.active { background: var(--gold); border-color: var(--gold); }
/* Removed heroZoom animation to prevent image quality degradation from scaling */
/* @keyframes heroZoom { from { transform: scale(1);} to { transform: scale(1.08);} } */
h1, h2, h3, h4 { font-family: "Playfair Display", Georgia, "Times New Roman", serif; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); margin: .2rem 0 1rem; }
.container { max-width: 1180px; margin: 2rem auto; padding: 0 1rem; }
.content {
  background: #fff;
  border: 1px solid #e8ddd0;
  margin-bottom: 1.4rem;
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(34,28,21,.06);
}
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.cards article {
  background: linear-gradient(160deg, #fff, #f4eee4);
  padding: 1rem;
  border-left: 4px solid var(--gold);
  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease;
}
.cards article:hover { transform: translateY(-6px); box-shadow: 0 10px 20px rgba(0,0,0,.1); }
.room-slider {
  margin-top: .8rem;
  min-height: 170px;
  border-radius: 4px;
  overflow: hidden;
}
.room-slider img { width: 100%; height: 190px; object-fit: cover; display: block; }
.room-dots {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.room-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  padding: 0;
}
.room-dots button.active {
  background: #fff;
}
.gallery-grid { display: grid; gap: .9rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.gallery-item { position: relative; min-height: 220px; overflow: hidden; border-radius: 3px; }
.gallery-item img, .gallery-item video { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item span {
  position: absolute; left: 0; right: 0; bottom: 0; background: rgba(34,24,20,.8); color: #fff; padding: .6rem; font-size: .9rem;
}
.feature-list { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: .8rem; padding: 0; list-style: none; }
.feature-list li { background: #f8f2e8; padding: .8rem; border-left: 3px solid var(--gold); }
.form { display: grid; gap: .7rem; }
.form.inline { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
input, textarea, button, select {
  width: 100%; padding: .7rem; border: 1px solid #d3c4af; background: #fff; font: inherit;
}
button { background: var(--dark); color: #fff; cursor: pointer; }

.btn-dark {
  background: var(--dark);
  color: #fff;
  border: 1px solid rgba(255,255,255,.06);
  padding: .65rem 1rem;
  border-radius: 8px;
  cursor: pointer;
}

.btn-inline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  padding: .35rem .6rem;
  border-radius: 999px;
  cursor: pointer;
}

.admin-message {
  margin: .8rem 0 0;
  color: #2c2321;
  font-weight: 500;
}
.footer {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem;
  background: #070707; color: #f3f3f3; padding: 2.1rem 1.2rem;
}
.footer img { width: 120px; background: #fff; padding: 6px; }
.footer a { color: #f3f3f3; text-decoration: none; }
.map-link { display: block; }
.footer .map-thumb {
  width: 100%;
  max-width: 100%;
  height: 200px;
  object-fit: cover;
  border: 0;
  border-radius: 6px;
  background: #0f0f10;
  padding: 0;
}
.newsletter { display: grid; grid-template-columns: 1fr auto; gap: .5rem; margin-bottom: .6rem; }
.socials { display: flex; gap: .6rem; margin-top: .6rem; }
.socials a {
  width: 36px; height: 36px; 
  border: 1px solid #d2a737;
  background: transparent;
  display: grid; place-items: center; 
  border-radius: 50%;
  transition: all 0.3s ease;
  color: #f3f3f3;
}
.socials a:hover {
  background: #d2a737;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(210, 167, 55, 0.3);
}
.socials a svg {
  width: 18px;
  height: 18px;
}
.social-feed-preview {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.4rem;
}
.social-feed-preview img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 1px solid #333;
}
.social-feed-preview img:hover {
  transform: scale(1.05);
  border-color: #d2a737;
}
.feed-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: #999;
  font-size: 0.85rem;
  padding: 1rem 0;
}
.copyright-bar {
  text-align: center;
  background: #d1a83d;
  color: #111;
  font-weight: 700;
  letter-spacing: .03em;
  padding: .9rem 1rem;
  font-size: .86rem;
}
.reveal { opacity: 0; transform: translateY(20px); transition: all .6s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px);} to { opacity: 1; transform: none;} }

/* About body layout */
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: center;
}
.about-media {
  min-height: 260px;
}

/* Single media renderer */
figure.single-media {
  margin: 0;
  height: 100%;
}
.single-media img,
.single-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.single-media figcaption {
  margin-top: .6rem;
  color: var(--muted);
  font-size: .98rem;
  text-align: center;
}

/* Admin pages */
.admin-dashboard-page {
  margin-top: 1.5rem;
}
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.admin-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.admin-brand img { width: 64px; height: 64px; object-fit: contain; background: #fff; border-radius: 6px; }
.admin-title { margin: 0; font-size: 1.4rem; }
.admin-subtitle { margin: .1rem 0 0; color: var(--muted); }

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 1rem;
}
.tab-btn {
  background: transparent;
  border: 1px solid rgba(45, 35, 32, 0.18);
  border-radius: 999px;
  padding: .6rem .9rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
}
.tab-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}

.admin-panel { margin-top: .2rem; }
.admin-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-dashboard-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1rem;
}
.admin-upload h4 { margin-top: 0; }
.admin-media-list h4 { margin-top: 0; }
.admin-enquiry-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.admin-enquiry-columns > section {
  display: grid;
  gap: .7rem;
  align-content: start;
}
.admin-enquiry-col-title {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.admin-empty-note {
  color: var(--muted);
}
.admin-enquiry-item textarea { resize: vertical; }
.admin-enquiry-actions { margin-top: .6rem; }
.admin-enquiry-actions .btn-dark:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.admin-toast {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 1200;
  background: #2e7d32;
  color: #fff;
  padding: .7rem 1rem;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
  transform: translateY(-10px);
  opacity: 0;
  transition: all .25s ease;
  font-weight: 600;
}
.admin-toast.error {
  background: #b3261e;
}
.admin-toast.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 920px) {
  .about-layout { grid-template-columns: 1fr; }
  .admin-dashboard-grid { grid-template-columns: 1fr; }
  .admin-enquiry-columns { grid-template-columns: 1fr; }
  .logo img { width: 128px; height: 80px; }
}

.center-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.3rem);
  color: #11192a;
  font-style: italic;
}

.center-subtitle {
  text-align: center;
  color: #4d4d4d;
  margin-top: -.2rem;
  margin-bottom: 1.3rem;
}

.section-kicker {
  color: #8d7643;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 600;
}

.home-intro-card {
  background: #e8dfe1;
}

.home-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: 14px;
}

.home-intro-text {
  background: #f7f6f7;
  padding: 2rem 2.2rem;
}

.home-intro-text h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-style: italic;
  margin: .35rem 0 .8rem;
  color: #11192a;
}

.home-intro-text p {
  color: #3f3f3f;
  line-height: 1.7;
}

.home-intro-media {
  min-height: 360px;
  background: #ece7ea;
}

.home-intro-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.home-gold-btn {
  display: inline-block;
  background: #d2a737;
  color: #111 !important;
  text-decoration: none;
  font-weight: 700;
  padding: .6rem 1.1rem;
  border-radius: 10px;
  border: 1px solid #b98e1f;
}

.home-rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 1.2rem;
}

.home-room-card h3 {
  margin: .8rem 0 .35rem;
  text-transform: uppercase;
  color: #121212;
}

.home-room-card p {
  margin: 0;
  color: #444;
  line-height: 1.5;
}

.home-room-card .room-slider {
  min-height: 190px;
}

.home-more-wrap {
  text-align: center;
  margin-top: 1.2rem;
}

.facilities-band {
  background: #f2e8ea;
}

.facilities-marquee {
  overflow: hidden;
  width: 100%;
  margin-top: .6rem;
}

.facilities-track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  min-width: 200%;
  animation: facilitiesScroll 24s linear infinite;
}

.facility-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.facility-item span {
  font-size: 1.8rem;
}

.facility-item p {
  margin: .35rem 0 0;
  font-size: .92rem;
  color: #2b2b2b;
  text-align: center;
}

@keyframes facilitiesScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.home-contact-block {
  background: #f5f3f4;
}

.home-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
}

.home-contact-image {
  min-height: 420px;
  height: 420px;
  overflow: hidden;
}

.home-contact-image.room-slider {
  margin-top: 0;
  min-height: 420px;
  height: 420px;
}

.home-contact-image.room-slider img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.home-contact-form-wrap {
  padding: 2.1rem;
  background: #f2f2f2;
}

.home-contact-form-wrap h2 {
  margin-top: 0;
  color: #121212;
}

.home-contact-form-wrap input,
.home-contact-form-wrap textarea {
  border: none;
  border-bottom: 1px solid #c8c8c8;
  background: transparent;
}

.home-contact-form-wrap button {
  width: auto;
  min-width: 140px;
  border-radius: 8px;
  justify-self: start;
  background: #111;
}

@media (max-width: 920px) {
  .home-intro-grid,
  .home-contact-grid,
  .home-rooms-grid {
    grid-template-columns: 1fr;
  }
}

/* About page redesign */
.about-hero-card,
.about-story-card,
.about-highlight-band,
.about-stats,
.events-hero-card,
.events-categories,
.events-experience {
  border-color: #e7dfd4;
}

.about-hero-grid,
.events-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
}

.about-hero-image,
.events-hero-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.about-hero-copy,
.events-hero-copy {
  padding: 2rem;
  background: #f4f3f4;
}

.about-hero-copy h2,
.events-hero-copy h2 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-style: italic;
  color: #101b2f;
}

.about-city-list {
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}

.about-story-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
  margin-bottom: 1rem;
}

.about-story-head h3,
.about-highlight-band p,
.about-stats-lead h3,
.events-categories h3,
.events-experience h3 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-style: italic;
  color: #11192a;
}

.about-story-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: .8rem;
}

.about-story-gallery img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
}

.about-highlight-band {
  background: #d4b349;
}

.about-highlight-band p {
  font-size: clamp(1.1rem, 2.5vw, 1.8rem);
  text-align: center;
  color: #1a1a1a;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 1rem;
  align-items: center;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}

.about-stats-grid div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-stats-grid strong {
  font-size: 2.2rem;
  line-height: 1;
}

.about-stats-grid span {
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Events page redesign */
.events-categories h3,
.events-experience h3,
.events-categories p,
.events-experience p {
  text-align: center;
}

.events-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  justify-content: center;
}

.events-tags span {
  border: 1px solid #cfcfcf;
  border-radius: 999px;
  padding: .45rem .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.events-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: .8rem;
}

.events-grid article {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.events-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.events-grid span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: .6rem;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: .07em;
  background: linear-gradient(to top, rgba(0, 0, 0, .66), rgba(0, 0, 0, 0));
}

@media (max-width: 920px) {
  .about-hero-grid,
  .events-hero-grid,
  .about-story-head,
  .about-stats {
    grid-template-columns: 1fr;
  }
  .about-story-gallery,
  .events-grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
}

/* Rooms page redesign */
.rooms-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 14px;
}

.rooms-hero-copy {
  background: #f5f3f4;
  padding: 2rem;
}

.rooms-hero-copy h2 {
  margin-top: 0;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-style: italic;
  color: #11192a;
}

.rooms-hero-copy p {
  line-height: 1.8;
  color: #3f3f3f;
}

.rooms-hero-image {
  min-height: 380px;
  height: 380px;
  overflow: hidden;
}

.rooms-hero-static {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.rooms-amenities h3,
.rooms-cards h3 {
  text-align: center;
  margin-top: 0;
}

.rooms-amenities-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: .8rem;
}

.rooms-amenities-grid li {
  background: #f8f1e5;
  border-left: 4px solid #d2a737;
  padding: .75rem .9rem;
  line-height: 1.4;
}

.rooms-type-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 1rem;
}

.room-type-card {
  border: 1px solid #e8ddd0;
  padding: 1rem;
  background: #fff;
}

.room-type-card h4 {
  margin: .8rem 0 .3rem;
  text-transform: uppercase;
}

.room-type-card p {
  margin: 0 0 .4rem;
  font-weight: 600;
}

.room-type-card ul {
  margin: 0;
  padding-left: 1rem;
  line-height: 1.5;
}

.room-type-card .room-slider {
  min-height: 200px;
}

.facilities-hero-card {
  background: #f5f3f4;
}

.facilities-icons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 1rem;
}

.facilities-icons-grid article {
  background: #fff;
  border: 1px solid #eadfcd;
  padding: 1rem;
  text-align: center;
}

.facilities-icons-grid span {
  font-size: 2rem;
}

.facilities-icons-grid h4 {
  margin: .45rem 0 .35rem;
  font-size: 1.1rem;
}

.facilities-icons-grid p {
  margin: 0;
  color: #4a4a4a;
  line-height: 1.45;
}

.facilities-gallery-band {
  background: #fff;
}

.facilities-feature-band {
  background: #f7f4ef;
}

.facilities-feature-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 1rem;
}

.facility-feature-card {
  border: 1px solid #e8ddd0;
  background: #fff;
  overflow: hidden;
}

.facility-feature-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.facility-feature-card div {
  padding: .9rem 1rem 1rem;
}

.facility-feature-card h4 {
  margin: 0 0 .45rem;
  text-transform: uppercase;
}

.facility-feature-card p {
  margin: 0;
  color: #484848;
  line-height: 1.6;
}

.facilities-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: .9rem;
}

.facilities-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.careers-card {
  background: #f8f6f7;
}

.careers-hero-card {
  background: #f3eef0;
}

.careers-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
}

.careers-hero-image {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.careers-hero-copy {
  background: #f9f9fa;
  padding: 2rem;
}

.careers-hero-copy h2 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #11192a;
  font-style: italic;
}

.careers-hero-copy p {
  color: #444;
  line-height: 1.75;
}

.careers-benefits-card {
  background: #fff;
}

.careers-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 1rem;
}

.careers-benefits-grid article {
  border: 1px solid #eadfcd;
  background: #fbf6ee;
  padding: 1rem;
}

.careers-benefits-grid h4 {
  margin: 0 0 .45rem;
  text-transform: uppercase;
}

.careers-benefits-grid p {
  margin: 0;
  color: #4a4a4a;
  line-height: 1.5;
}

.careers-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1rem;
}

.careers-copy h2 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-style: italic;
  color: #11192a;
}

.careers-copy h3 {
  margin-bottom: .45rem;
}

.careers-copy ul {
  margin-top: 0;
  line-height: 1.6;
}

.careers-note {
  color: #5a5a5a;
}

.careers-form-wrap {
  background: #fff;
  border: 1px solid #e8ddd0;
  padding: 1rem;
}

.careers-form-wrap h3 {
  margin-top: 0;
}

.careers-form-wrap input,
.careers-form-wrap textarea {
  background: #fff;
  color: #1f1b19;
  border: 1px solid #d8d0c4;
}

.careers-contact-card p {
  margin: .45rem 0;
}

/* Contact page redesign */
.contact-page-card {
  background: #f6f3f0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 1rem;
  align-items: stretch;
}

.contact-page-info {
  background: #fff;
  border: 1px solid #e8ddd0;
  padding: 1.4rem;
}

.contact-page-info h2 {
  margin-top: .3rem;
  margin-bottom: .7rem;
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: italic;
  color: #11192a;
}

.contact-info-list {
  display: grid;
  gap: .7rem;
  margin: 1rem 0 1.1rem;
}

.contact-info-list article {
  background: #f7f3ec;
  border-left: 4px solid #d2a737;
  padding: .8rem .9rem;
}

.contact-info-list h4 {
  margin: 0 0 .25rem;
  text-transform: uppercase;
}

.contact-info-list p {
  margin: .2rem 0;
  color: #3e3e3e;
}

.contact-page-form-wrap {
  background: #fff;
  border: 1px solid #e8ddd0;
  padding: 1.2rem;
}

.contact-page-form-wrap h3 {
  margin-top: 0;
}

.contact-map-section {
  background: #fff;
}

.contact-map-section h3 {
  margin-top: 0;
}

.contact-map-link {
  display: block;
}

.contact-map-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 1px solid #ddd2c2;
  border-radius: 6px;
  display: block;
}

@media (max-width: 920px) {
  .rooms-hero-grid,
  .rooms-type-grid,
  .rooms-amenities-grid {
    grid-template-columns: 1fr;
  }
  .facilities-icons-grid,
  .facilities-feature-grid,
  .facilities-gallery,
  .careers-grid,
  .careers-benefits-grid,
  .careers-hero-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
}

/* Gallery page redesign */
.gallery-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
}

.gallery-hero-copy {
  background: #f5f3f4;
  padding: 2rem;
}

.gallery-hero-copy h2 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-style: italic;
  color: #11192a;
}

.gallery-hero-copy p {
  color: #3f3f3f;
  line-height: 1.75;
}

.gallery-hero-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.gallery-enhanced {
  grid-template-columns: repeat(4, minmax(160px, 1fr));
}

.gallery-enhanced .gallery-item {
  min-height: 240px;
}

.gallery-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 1rem;
}

.gallery-highlight-card {
  border: 1px solid #e8ddd0;
  background: #fff;
}

.gallery-highlight-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-highlight-card div {
  padding: .9rem;
}

.gallery-highlight-card h4 {
  margin: 0 0 .35rem;
  text-transform: uppercase;
}

.gallery-highlight-card p {
  margin: 0;
  color: #4a4a4a;
}

@media (max-width: 920px) {
  .gallery-hero-grid,
  .gallery-highlights,
  .gallery-enhanced {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   HOME ROOM CARDS — clickable with real images
   ============================================ */

.home-room-link {
  text-decoration: none;
  color: inherit;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8ddd0;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-room-link:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(34, 28, 21, 0.13);
}

.home-room-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.home-room-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.home-room-link:hover .home-room-img {
  transform: scale(1.06);
}

.home-room-overlay-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(210, 167, 55, 0.92);
  color: #111;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.home-room-link:hover .home-room-overlay-btn {
  opacity: 1;
  transform: translateY(0);
}

.home-room-text {
  padding: 1rem 1.1rem 1.2rem;
}

.home-room-text h3 {
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  color: #121212;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.home-room-text p {
  margin: 0 0 0.6rem;
  color: #555;
  line-height: 1.5;
  font-size: 0.9rem;
}

.home-room-price {
  display: inline-block;
  color: #b89a61;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
}

/* ============================================
   ROOMS PAGE — clickable type cards
   ============================================ */

.room-type-link {
  text-decoration: none;
  color: inherit;
  display: block;
  border: 1px solid #e8ddd0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.room-type-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 32px rgba(34, 28, 21, 0.12);
}

.room-type-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.room-type-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.room-type-link:hover .room-type-img {
  transform: scale(1.05);
}

.room-type-view-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(210, 167, 55, 0.92);
  color: #111;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.room-type-link:hover .room-type-view-btn {
  opacity: 1;
  transform: translateY(0);
}

.room-type-link h4 {
  margin: 0.9rem 1rem 0.2rem;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #11192a;
}

.room-type-price {
  margin: 0 1rem 0.5rem !important;
  color: #b89a61 !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
}

.room-type-label {
  margin: 0 1rem 0.3rem !important;
  font-weight: 600 !important;
  color: #2d2322 !important;
  font-size: 0.88rem !important;
}

.room-type-link ul {
  margin: 0 1rem 1.2rem !important;
  padding-left: 1.1rem;
  line-height: 1.6;
  color: #4a4a4a;
  font-size: 0.88rem;
}

/* Home contact section — static image */
.home-contact-static-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

/* ============================================
   GALLERY SHOWCASE GRID
   ============================================ */

.gallery-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
  margin-top: 1.5rem;
}

.gallery-showcase-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-showcase-item.gallery-showcase-large {
  /* no span — uniform grid */
}

.gallery-showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-showcase-item:hover img {
  transform: scale(1.07);
}

.gallery-showcase-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem 1.3rem;
  background: linear-gradient(to top, rgba(10, 8, 6, 0.72) 0%, rgba(10, 8, 6, 0) 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-showcase-item:hover .gallery-showcase-label {
  opacity: 1;
}

.gallery-showcase-tag {
  display: inline-block;
  background: #d2a737;
  color: #111;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
  width: fit-content;
}

.gallery-showcase-label p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1.4;
}

@media (max-width: 760px) {
  .gallery-showcase {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-showcase-item.gallery-showcase-large {
    grid-column: span 1;
  }
}

/* ============================================
   GALLERY — Category tabs & event cards
   ============================================ */

.gallery-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1.2rem 0 1.8rem;
  justify-content: center;
}

.gallery-cat-btn {
  background: transparent;
  border: 1px solid #d3c4af;
  border-radius: 999px;
  padding: .5rem 1.1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .85rem;
  color: #2d2322;
  transition: background .2s, color .2s;
}

.gallery-cat-btn.active,
.gallery-cat-btn:hover {
  background: #2d2322;
  color: #fff;
  border-color: #2d2322;
}

.gallery-events-grid {
  margin-top: .5rem;
}

.gallery-event-card {
  border: 1px solid #e8ddd0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 2rem;
}

.gallery-event-cover {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #2d2322;
}

.gallery-event-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-event-no-cover {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2d2322, #b89a61);
}

.gallery-event-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #d2a737;
  color: #111;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .8rem;
  border-radius: 999px;
}

.gallery-event-info {
  padding: 1.2rem 1.4rem .8rem;
}

.gallery-event-info h4 {
  margin: 0 0 .4rem;
  font-size: 1.3rem;
  font-family: "Playfair Display", Georgia, serif;
  color: #11192a;
}

.gallery-event-info p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.gallery-event-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: .8rem;
  padding: .8rem 1.4rem 1.4rem;
}

.gallery-event-photo {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
}

.gallery-event-photo img,
.gallery-event-photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.gallery-event-photo:hover img {
  transform: scale(1.05);
}

.gallery-event-photo span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: .8rem;
  padding: .4rem .6rem;
}

/* ============================================
   CAREERS — Job openings & application form
   ============================================ */

.careers-openings-card {
  background: #f9f5ef;
}

.careers-openings-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.careers-job-card {
  background: #fff;
  border: 1px solid #e8ddd0;
  border-left: 4px solid #d2a737;
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
  transition: box-shadow .2s;
}

.careers-job-card:hover {
  box-shadow: 0 6px 20px rgba(34,28,21,.09);
}

.careers-job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: .7rem;
}

.careers-job-title {
  margin: 0 0 .3rem;
  font-size: 1.1rem;
  font-family: "Playfair Display", Georgia, serif;
  color: #11192a;
  text-transform: uppercase;
  letter-spacing: .03em;
}

.careers-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  font-size: .85rem;
  color: #666;
}

.careers-job-type {
  background: #f0e8d8;
  color: #7a5c1e;
  font-weight: 700;
  padding: .2rem .6rem;
  border-radius: 999px;
  font-size: .78rem;
}

.careers-apply-btn {
  background: linear-gradient(135deg, #d2a737, #b88d21);
  color: #111;
  border: none;
  padding: .6rem 1.4rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: .88rem;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
  width: auto;
  display: inline-block;
}

.careers-apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(210,167,55,.35);
}

.careers-job-desc {
  color: #444;
  line-height: 1.65;
  margin: 0 0 .6rem;
  font-size: .93rem;
}

.careers-job-req {
  background: #faf7f2;
  border-left: 3px solid #d2a737;
  padding: .7rem .9rem;
  border-radius: 4px;
  font-size: .88rem;
}

.careers-job-req strong {
  display: block;
  margin-bottom: .3rem;
  color: #2d2322;
}

.careers-job-req p {
  margin: 0;
  color: #555;
  line-height: 1.55;
}

.careers-no-jobs {
  text-align: center;
  color: #888;
  padding: 2rem;
}

.careers-resume-label {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-size: .9rem;
  font-weight: 600;
  color: #2d2322;
}

.careers-resume-label em {
  font-weight: 400;
  color: #888;
  font-style: normal;
}

.careers-resume-input {
  border: 2px dashed #d3c4af !important;
  background: #faf7f2 !important;
  padding: .8rem !important;
  border-radius: 6px;
  cursor: pointer;
}

.careers-resume-input:hover {
  border-color: #b89a61 !important;
}

@media (max-width: 700px) {
  .careers-job-header {
    flex-direction: column;
  }
  .careers-apply-btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   GALLERY — Attractive Event Cards Grid
   ============================================ */

.ge-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.4rem;
  margin-top: .5rem;
}

.ge-card {
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8ddd0;
  box-shadow: 0 4px 16px rgba(34,28,21,.06);
  transition: transform .28s ease, box-shadow .28s ease;
  display: block;
}

.ge-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 40px rgba(34,28,21,.14);
}

.ge-card-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #2d2322;
}

.ge-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.ge-card:hover .ge-card-img-wrap img {
  transform: scale(1.07);
}

.ge-card-no-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2d2322 0%, #b89a61 100%);
}

.ge-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #d2a737;
  color: #111;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .28rem .75rem;
  border-radius: 999px;
  z-index: 2;
}

.ge-card-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,8,6,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 2;
}

.ge-card:hover .ge-card-hover-overlay {
  opacity: 1;
}

.ge-card-view-btn {
  background: rgba(210,167,55,.92);
  color: #111;
  font-weight: 700;
  font-size: .88rem;
  padding: .65rem 1.4rem;
  border-radius: 999px;
  letter-spacing: .04em;
  transform: translateY(8px);
  transition: transform .3s ease;
}

.ge-card:hover .ge-card-view-btn {
  transform: translateY(0);
}

.ge-card-body {
  padding: 1.1rem 1.3rem 1.3rem;
}

.ge-card-title {
  margin: 0 0 .25rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  color: #11192a;
  font-style: italic;
}

.ge-card-parent {
  margin: 0 0 .4rem;
  font-size: .82rem;
  color: #b89a61;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.ge-card-desc {
  margin: 0 0 .6rem;
  font-size: .88rem;
  color: #666;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ge-card-count {
  font-size: .82rem;
  color: #999;
  font-weight: 500;
}

@media (max-width: 640px) {
  .ge-cards-grid {
    grid-template-columns: 1fr;
  }
}
