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

:root {
  --navy: #0F172A;
  --navy-dark: #0A1020;
  --gold: #D4AF37;
  --gold-light: rgba(212,175,55,0.12);
  --gold-border: rgba(212,175,55,0.25);
  --white: #ffffff;
  --off-white: #F8F7F4;
  --text-muted: #64748B;
  --text-faint: #94A3B8;
  --border: #e5e7eb;
  --serif: 'Sora', 'Inter', system-ui, sans-serif;
  --sans: 'Inter', system-ui, sans-serif;
  --blue-deep: #0B1E3D;
  --teal: #1B4B4F;
  --teal-light: rgba(27,75,79,0.12);
  --teal-border: rgba(27,75,79,0.28);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--sans);
  background: var(--off-white);
  color: var(--navy);
  font-size: 15px;
  line-height: 1.6;
}

/* ── UTILITIES ── */
.serif { font-family: var(--serif); }
.gold-text { color: var(--gold); }
.label-tag {
  display: block;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}
.divider-gold { width: 40px; height: 2px; background: var(--gold); margin: 12px 0 20px; }
.divider-gold.center { margin: 12px auto 20px; }

/* ── IMAGE OVERLAYS ── */
/* Used on photo containers to ensure text readability over images */
.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,16,32,0.75) 0%, rgba(10,16,32,0.2) 60%, transparent 100%);
  z-index: 1;
}
.img-overlay-dark {
  position: absolute;
  inset: 0;
  background: rgba(10,16,32,0.38);
  z-index: 1;
}
.img-overlay-navy {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,16,32,0.82) 0%, rgba(10,16,32,0.55) 100%);
  z-index: 1;
}

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 2px;
  font-family: var(--sans);
  transition: opacity 0.2s;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}
.btn-gold:hover { opacity: 0.88; }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.65);
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 2px;
  font-family: var(--sans);
  transition: background 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

.btn-dark {
  background: var(--navy);
  color: var(--gold);
  border: none;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  border-radius: 2px;
  font-family: var(--sans);
  transition: opacity 0.2s;
}
.btn-dark:hover { opacity: 0.85; }

.btn-full { width: 100%; }
.btn-sm { padding: 9px 20px; font-size: 12px; }
.btn-no-wrap { white-space: nowrap; flex-shrink: 0; }
.mt-12 { margin-top: 12px; }
.mt-6 { margin-top: 6px; }
.mb-10 { margin-bottom: 10px; }

input, textarea {
  font-family: var(--sans);
  font-size: 13px;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 10px 12px;
  background: var(--white);
  color: var(--navy);
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
input:focus, textarea:focus { border-color: var(--gold); }
textarea { resize: none; height: 120px; }

/* ── NAV ── */
nav {
  background: var(--navy);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-item {
  position: relative;
}

.nav-dropdown-toggle {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 12.5px;
  letter-spacing: 0.5px;
  font-family: var(--sans);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
  color: var(--gold);
  outline: none;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: rgba(15,23,42,0.98);
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  box-shadow: 0 18px 40px rgba(15,23,42,0.22);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 30;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu,
.nav-item.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

@media (min-width: 901px) {
  .services-dropdown:hover .dropdown-menu,
  .services-dropdown:focus-within .dropdown-menu,
  .services-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
}

.dropdown-menu a {
  display: block;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  padding: 10px 16px;
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(212,175,55,0.08);
  color: var(--gold);
  outline: none;
}

/* Footer logo layout */
.footer-logo { display: flex; align-items: center; gap: 14px; }
.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Footer contact and powered-by */
.footer-contact { display: block; margin-top: 10px; color: var(--text-faint); font-size: 13px; }
.powered-by { margin-left: 18px; font-size: 13px; color: var(--navy); }

@media (max-width: 800px) {
  .nav-logo-img { height: 36px; }
  .footer-logo-img { height: 40px; }
  .footer-contact { font-size: 12px; }
}

/* Mobile navigation */
.nav-toggle { display: none; background: transparent; border: none; color: var(--white); font-size: 20px; }
.nav-toggle-icon { font-size: 20px; }

@media (max-width: 900px) {
  nav { padding: 0 18px; }
  .nav-links {
    position: absolute;
    top: 64px;
    right: 0;
    left: 0;
    background: var(--navy);
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 18px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links a,
  .nav-dropdown-toggle {
    display: block;
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.03);
    text-align: left;
  }
  .nav-item {
    width: 100%;
  }
  .nav-dropdown-toggle {
    color: rgba(255,255,255,0.7);
    font-size: 12.5px;
  }
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    min-width: 0;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 8px 12px;
  }
  .nav-item.open .dropdown-menu {
    display: block;
  }
  .dropdown-menu a {
    border-bottom: none;
    padding: 10px 0;
    color: rgba(255,255,255,0.7);
  }
  .nav-toggle { display: block; }
  .nav-links .btn-gold { margin: 12px 0; }

  /* Sections padding for smaller screens */
  .section { padding: 36px 18px; }
  .hero { height: auto; padding: 48px 18px; }
  .hero-content { padding: 0 16px; max-width: 100%; }
  .hero h1 { font-size: 28px; }
  .booking-widget-inner { flex-direction: column; gap: 12px; }
  .about-grid { grid-template-columns: 1fr; gap: 24px; }
}
.nav-logo-text .hotel-name {
  font-family: var(--serif);
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1.5px;
  line-height: 1;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .hotel-sub {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 500;
  margin-top: 2px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 30px;
}
@media (min-width: 901px) {
  .nav-links {
    display: flex;
  }
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 12.5px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 620px;
  background: var(--navy);
  overflow: visible !important;
  display: block;
  padding: 120px 0 32px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,16,32,0.92) 0%, rgba(15,42,26,0.78) 100%),
    url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?w=1600&q=80') center/cover no-repeat;
}

.hero-grid {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(212,175,55,0.2) 49px, rgba(212,175,55,0.2) 50px),
    repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(212,175,55,0.2) 49px, rgba(212,175,55,0.2) 50px);
  opacity: 0.18;
}

.hero-circle-1 {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 50%;
}
.hero-circle-2 {
  position: absolute;
  right: 120px;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 50%;
}

.hero-svg {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.22;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 72px;
  max-width: 860px;
  margin: 0 auto 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.35);
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 0;
  min-width: 190px;
  white-space: nowrap;
}

.hero h1 {
  font-family: var(--serif);
  color: var(--white);
  font-size: 44px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 18px;
  max-width: 720px;
}
.hero h1 em { color: var(--gold); font-style: normal; }

.hero p {
  color: rgba(255,255,255,0.6);
  font-size: 14.5px;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 34px;
}

.hero-ctas { display: flex; gap: 14px; justify-content: center; }

/* ── BOOKING WIDGET ── */
.booking-widget {
  position: relative !important;
  z-index: 10;
  padding: 0 48px;
  margin-top: 24px;
}
.booking-widget-inner {
  background: var(--navy);
  margin: 0;
  border-radius: 6px;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  border-top: 3px solid var(--gold);
  gap: 0;
  box-shadow: 0 20px 44px rgba(10,16,32,0.28);
}
.booking-field {
  flex: 1;
  padding: 0 22px 0 0;
  margin-right: 22px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.booking-field:last-of-type { border-right: none; margin-right: 0; padding-right: 0; }
.booking-field-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 7px;
  font-weight: 500;
}
.booking-field-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
}
.booking-field-value i {
  font-size: 15px;
  color: var(--navy);
  background: var(--gold);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── SECTIONS ── */
.section { padding: 72px 72px; }
.section-white { background: var(--white); }
.section-off { background: var(--off-white); }
.section-navy { background: var(--navy); }
.section-dark { background: var(--navy-dark); }

.home-services-preview {
  background: linear-gradient(180deg, rgba(250,249,245,1) 0%, rgba(244,241,233,1) 100%);
  padding: 72px 72px 18px;
  margin-top: 0;
  border-top: 1px solid rgba(9,16,34,0.06);
}

.services-shell {
  max-width: 1280px;
  margin: 0 auto;
  background: rgba(255,255,255,0.66);
  border: 1px solid rgba(14,24,39,0.08);
  border-radius: 20px;
  padding: 42px 38px;
  box-shadow: 0 16px 38px rgba(15,23,42,0.06);
}

.services-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.services-intro h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: var(--navy);
  margin: 10px 0 12px;
}

.services-intro p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.service-card {
  width: 100%;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(248,250,252,1) 100%);
  border: 1px solid rgba(15,23,42,0.08);
  border-top: 3px solid var(--gold);
  border-radius: 14px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(15,23,42,0.06);
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15,23,42,0.1);
}

.service-card.service-featured {
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(254,249,236,1) 100%);
}
.service-card.service-teal { border-top-color: var(--teal); }

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,175,55,0.14);
  color: var(--navy);
  margin-bottom: 18px;
}

.service-icon i {
  font-size: 24px;
  color: var(--gold);
}

.service-icon.icon-teal { background: var(--teal-light); }
.service-icon.icon-teal i { color: var(--teal); }

.service-meta { margin-bottom: 8px; }

.service-kicker {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.service-kicker.kicker-teal { color: var(--teal); }

.service-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
  color: var(--navy);
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 16px 0;
  display: block;
}

.service-card .btn-gold {
  margin-top: auto;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-card li {
  color: var(--navy);
  font-size: 12.5px;
  line-height: 1.6;
  position: relative;
  padding-left: 16px;
}

.service-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.service-card.service-teal li::before { color: var(--teal); }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.25;
}
.section-header h2.light { color: var(--white); }
.section-header p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 500px;
  margin: 12px auto 0;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text h2 {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 8px;
}
.about-text p { color: var(--text-muted); font-size: 14px; line-height: 1.8; margin-bottom: 16px; }
.about-image-wrap { position: relative; }
.about-image-box {
  height: 340px;
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.about-image-label {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(212,175,55,0.1);
  padding: 18px;
  border-top: 1px solid rgba(212,175,55,0.3);
  text-align: center;
}
.about-image-label .title { font-family: var(--serif); color: var(--gold); font-size: 16px; }
.about-image-label .sub { color: rgba(255,255,255,0.45); font-size: 10px; letter-spacing: 1.5px; margin-top: 4px; }
.about-deco-1 {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 88px;
  height: 88px;
  border: 2px solid var(--gold);
  border-radius: 2px;
  z-index: 0;
}
.about-deco-2 {
  position: absolute;
  top: 322px;
  left: -18px;
  width: 64px;
  height: 64px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  z-index: 0;
}
.about-why-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 22px 24px;
  margin: 24px 0;
}
.about-why-box h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 14px;
}
.why-mini-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.why-mini-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.why-mini-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(212,175,55,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-mini-icon i { font-size: 15px; color: var(--gold); }
.why-mini-item p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-muted);
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.stat-card {
  padding: 18px;
  border-radius: 2px;
  text-align: center;
}
.stat-card.dark { background: var(--navy); }
.stat-card.light { background: var(--off-white); border: 1px solid var(--border); }
.stat-card .number {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
}
.stat-card.dark .number { color: var(--gold); }
.stat-card.light .number { color: var(--navy); }
.stat-card .label { font-size: 11px; letter-spacing: 1px; margin-top: 4px; }
.stat-card.dark .label { color: rgba(255,255,255,0.6); }
.stat-card.light .label { color: var(--text-muted); }

/* ── ROOMS ── */
.rooms-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.home-services-preview .rooms-grid {
  margin-top: 8px;
}
.room-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.room-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(15,23,42,0.1); }
.room-card.featured { border: 2px solid var(--gold); }
.room-card-img {
  height: 200px;
  min-height: 200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.room-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 3px 12px;
  border-radius: 1px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  z-index: 2;
}
.badge-gold { background: var(--gold); color: var(--navy); }
.badge-navy { background: var(--navy); color: var(--gold); border: 1px solid var(--gold); }
.badge-teal { background: var(--teal); color: #fff; }
.featured-banner {
  background: var(--gold);
  padding: 5px;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 2px;
}
.room-body { padding: 22px; }
.room-body h3 { font-family: var(--serif); font-size: 19px; font-weight: 500; margin-bottom: 6px; }
.room-price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 16px; }
.room-price .amount { color: var(--gold); font-size: 21px; font-weight: 600; }
.room-price .per { color: var(--text-faint); font-size: 12px; }
.room-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.room-tag { background: #F1F5F9; padding: 4px 11px; border-radius: 2px; font-size: 11px; color: var(--text-muted); }
.room-tag.gold-tag { background: #FEF9EC; color: #92681A; }
.room-tag.teal-tag { background: #EAF2F2; color: var(--teal); }

/* ── CONFERENCE ── */
.conf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.conf-image {
  height: 360px;
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.conf-image-label {
  position: relative;
  z-index: 2;
  width: 100%;
  background: rgba(212,175,55,0.1);
  padding: 18px;
  border-top: 1px solid rgba(212,175,55,0.3);
  text-align: center;
}
.conf-image-label span { font-family: var(--serif); color: var(--gold); font-size: 15px; }
.conf-text h2 { font-family: var(--serif); font-size: 34px; font-weight: 500; color: var(--white); line-height: 1.3; margin-bottom: 8px; }
.conf-text p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.8; margin-bottom: 28px; }
.conf-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 30px; }
.conf-feature {
  border: 1px solid var(--gold-border);
  padding: 18px;
  border-radius: 2px;
}
.conf-feature i { font-size: 22px; color: var(--gold); margin-bottom: 10px; display: block; }
.conf-feature .title { color: var(--white); font-size: 13px; font-weight: 500; }
.conf-feature .sub { color: rgba(255,255,255,0.45); font-size: 12px; margin-top: 3px; }

/* ── DINING ── */
.dining-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.dining-card {
  background: var(--off-white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.dining-card-img {
  height: 150px;
  min-height: 150px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.dining-body { padding: 18px; }
.dining-body .eyebrow { color: var(--gold); font-size: 10px; letter-spacing: 2px; margin-bottom: 6px; }
.dining-body h3 { font-family: var(--serif); font-size: 15px; font-weight: 500; margin-bottom: 7px; }
.dining-body p { color: var(--text-faint); font-size: 12px; line-height: 1.6; }
.dining-cta {
  background: var(--navy);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 28px;
  text-align: center;
  min-height: 100%;
}
.dining-cta i { font-size: 34px; color: var(--gold); margin-bottom: 14px; }
.dining-cta h3 { font-family: var(--serif); color: var(--white); font-size: 16px; font-weight: 500; margin-bottom: 10px; line-height: 1.4; }
.dining-cta p { color: rgba(255,255,255,0.45); font-size: 12px; line-height: 1.6; margin-bottom: 18px; }

/* ── WHY CHOOSE US ── */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.why-card {
  background: var(--white);
  padding: 26px;
  border-radius: 4px;
  border: 1px solid var(--border);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.why-card:hover { border-color: var(--gold); }
.why-card.dark { background: var(--navy); border-color: transparent; }
.why-icon {
  width: 46px;
  height: 46px;
  background: #FEF9EC;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-card.dark .why-icon { background: rgba(212,175,55,0.12); }
.why-icon i { font-size: 21px; color: var(--gold); }
.why-card h3 { font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.why-card p { font-size: 12px; color: var(--text-faint); line-height: 1.6; }
.why-card.dark h3 { color: var(--white); }
.why-card.dark p { color: rgba(255,255,255,0.45); }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testimonial {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--gold-border);
  padding: 30px;
  border-radius: 4px;
}
.testimonial.featured { background: rgba(212,175,55,0.08); border-color: rgba(212,175,55,0.4); }
.testimonial-quote {
  color: var(--gold);
  font-size: 44px;
  line-height: 1;
  font-family: Georgia,serif;
  opacity: 0.5;
  margin-bottom: 14px;
}
.testimonial.featured .testimonial-quote { opacity: 0.65; }
.testimonial p { color: rgba(255,255,255,0.72); font-size: 13px; line-height: 1.8; margin-bottom: 22px; font-style: italic; }
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
}
.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
}
.testimonial-name { color: var(--white); font-size: 13px; font-weight: 500; }
.testimonial-loc { color: var(--gold); font-size: 11px; }
.testimonial-stars { margin-left: auto; display: flex; gap: 2px; }
.testimonial-stars i { font-size: 12px; color: var(--gold); }
.slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.dot { height: 3px; border-radius: 2px; }
.dot.active { width: 26px; background: var(--gold); }
.dot.inactive { width: 9px; background: rgba(212,175,55,0.3); }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-template-rows: 150px 150px;
  gap: 12px;
}
.gallery-item {
  border-radius: 4px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-width: 0;
  width: 100%;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 8px 28px rgba(15,23,42,0.18); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-label {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 8px;
  background: rgba(212,175,55,0.1);
  border-top: 1px solid rgba(212,175,55,0.25);
}
.gallery-label span { color: var(--gold); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }

/* ── LOCATION & CONTACT ── */
.loc-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-map-full {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 56px;
}
.contact-map-full .loc-map {
  height: 210px;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  margin-bottom: 0;
}
.loc-map {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
}
.loc-map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.05) contrast(0.9) opacity(0.95);
  z-index: 0;
}
.loc-map-grid {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,transparent,transparent 29px,rgba(15,23,42,0.06) 29px,rgba(15,23,42,0.06) 30px),
              repeating-linear-gradient(90deg,transparent,transparent 29px,rgba(15,23,42,0.06) 29px,rgba(15,23,42,0.06) 30px);
}
.loc-map-content { position: relative; z-index: 2; text-align: center; }
.loc-map-content i { font-size: 44px; color: var(--gold); }
.loc-map-content .map-title { color: var(--navy); font-size: 12px; letter-spacing: 2px; font-weight: 500; margin-top: 8px; }
.loc-map-content .map-sub { color: var(--text-faint); font-size: 11px; margin-top: 4px; }
.loc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.loc-stat {
  background: var(--off-white);
  padding: 15px 18px;
  border-radius: 2px;
  border-left: 3px solid var(--gold);
}
.loc-stat .stat-label { font-size: 10px; letter-spacing: 1px; color: var(--text-faint); text-transform: uppercase; }
.loc-stat .stat-val { font-size: 14px; font-weight: 500; color: var(--navy); margin-top: 3px; }
.contact-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.contact-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--off-white);
  padding: 15px 18px;
  border-radius: 4px;
  border: 2px solid var(--gold);
}
.contact-item i { font-size: 19px; color: var(--gold); }
.contact-item .item-label { font-size: 10px; letter-spacing: 1px; color: var(--text-faint); text-transform: uppercase; }
.contact-item .item-val { font-size: 13px; font-weight: 500; color: var(--navy); margin-top: 2px; }
.contact-form { background: var(--off-white); padding: 22px; border-radius: 4px; border: 2px solid var(--gold); }
.contact-form h3 { font-size: 13px; font-weight: 500; margin-bottom: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }

/* ── FOOTER ── */
footer {
  background: linear-gradient(135deg, #0A1020 0%, #0F172A 100%);
  border-top: 2px solid var(--gold);
}

.footer-main {
  padding: 72px 72px 60px;
  display: grid;
  grid-template-columns: 2.5fr 1.2fr 1.2fr;
  gap: 80px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.footer-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-logo > div {
  display: flex;
  flex-direction: column;
}

.footer-logo .hotel-name {
  font-family: var(--serif);
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.1;
}

.footer-logo .hotel-sub {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: 3.5px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 4px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.footer-contact-item {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.social-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(212,175,55,0.4);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(212,175,55,0.05);
}

.social-btn:hover {
  background: rgba(212,175,55,0.15);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.social-btn i {
  font-size: 16px;
  color: rgba(212,175,55,0.8);
  transition: color 0.3s ease;
}

.social-btn:hover i {
  color: var(--gold);
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  font-weight: 600;
  font-family: var(--serif);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  margin-bottom: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.2px;
  line-height: 1.6;
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-bottom {
  padding: 28px 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(0,0,0,0.2);
}

.footer-bottom span {
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  letter-spacing: 0.3px;
}

.powered-by {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.2px;
}

.powered-by strong {
  color: var(--gold);
  font-weight: 600;
}

.footer-legal {
  display: flex;
  gap: 32px;
}

.footer-legal a {
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.2px;
}

.footer-legal a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 48px 24px 40px;
  }
  
  .footer-logo {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 16px; }
  .section { padding: 52px 24px; }
  .hero-content { padding: 0 32px; }
  .hero h1 { font-size: 32px; }
  .booking-widget-inner {
    margin: 0 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .booking-field {
    border-right: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-grid, .conf-grid, .loc-contact-grid { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .dining-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.large { grid-column: span 2; grid-row: span 1; height: 200px; }
  .gallery-item { height: 160px; }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 40px 24px; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero { height: auto; min-height: 560px; padding-bottom: 220px; }
  .hero-content {
    position: relative;
    z-index: 5;
    padding: 0 12px;
    max-width: 100%;
    align-items: center;
    text-align: center;
  }
  .hero h1 { font-size: 26px; }
  .hero p { max-width: 100%; }
  .hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 260px;
    gap: 12px;
  }
  .hero-ctas a,
  .hero-ctas button {
    display: block;
    width: 100%;
    text-align: center;
  }
  .services-grid { grid-template-columns: 1fr; }
  .hero-circle-1, .hero-circle-2, .hero-svg { display: none; }
  .rooms-grid, .dining-grid, .why-grid, .conf-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item, .gallery-item.large { grid-column: span 1; grid-row: span 1; height: 180px; min-height: 180px; }
  .room-card, .dining-card, .why-card { width: 100%; max-width: 100%; }
  .room-card-img, .dining-card-img { height: 220px; min-height: 220px; }
  .footer-main { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
