:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #9b7b2e;
  --cream: #f5f0e8;
  --dark: #0e0c09;
  --dark-mid: #1a1710;
  --dark-warm: #2a2318;
  --text: #3a3228;
  --text-light: #7a6e60;
  --white: #ffffff;
  --border: rgba(201, 168, 76, 0.2);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.1);
  --radius: 4px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.img-placeholder {
  background: linear-gradient(135deg, #2a2318 0%, #1a1710 60%, #2a2010 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  color: var(--gold);
  text-align: center;
  padding: 0;
  font-size: 0.75rem;
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  width: 100%;
  height: 100%;
}
.img-placeholder.tall {
  min-height: 480px;
}
.img-placeholder.full {
  min-height: 500px;
}
.img-placeholder span {
  opacity: 0.8;
}
.img-placeholder small {
  display: block;
  color: rgba(201, 168, 76, 0.55);
  margin-top: 8px;
  font-size: 0.65rem;
  max-width: 340px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 32px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.btn-primary:hover::after {
  transform: translateX(0);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.btn-primary.large {
  padding: 18px 48px;
  font-size: 0.9rem;
}

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
  padding: 14px 32px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.section-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-label.light {
  color: var(--gold-light);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title.light {
  color: var(--white);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 640px;
  margin-bottom: 48px;
  font-weight: 400;
  line-height: 1.8;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    background 0.4s ease,
    box-shadow 0.4s ease;
  padding: 0;
}
.navbar.scrolled {
  background: rgba(14, 12, 9, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  font-size: 1.3rem;
  color: var(--gold);
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-main {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1;
}
.logo-sub {
  font-size: 0.58rem;
  color: rgba(201, 168, 76, 0.8);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.btn-book {
  background: var(--gold);
  color: var(--dark);
  padding: 10px 24px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition);
}
.btn-book:hover {
  background: var(--gold-light);
}

.burger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(14, 12, 9, 0.98);
  padding: 16px 40px;
}
.mobile-menu a {
  color: rgba(255, 255, 255, 0.8);
  padding: 12px 0;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.mobile-menu .btn-book {
  margin-top: 16px;
  text-align: center;
}
.mobile-menu.open {
  display: flex;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg .hero-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0800, #1a1200, #0e0900);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-align: center;
  padding: 40px;
  font-size: 0.8rem;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 140px 40px 80px;
  text-align: left;
  animation: fadeUp 1s ease both;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.hero-eyebrow i {
  margin-right: 8px;
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero-scroll i {
  font-size: 0.9rem;
}

.hero-badges {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 10px 16px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 500;
}
.badge i {
  color: var(--gold);
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}
.about-img-main {
  grid-column: 1/3;
}
.about-img-small {
  display: contents;
}
.about-img-small .img-placeholder {
  min-height: 200px;
}

.about-text {
}
.about-desc {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0 36px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat {
}
.stat-num {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 6px;
  display: block;
}

.booking {
  padding: 80px 0;
  background: var(--dark-mid);
}
.booking-inner {
  text-align: center;
}
.booking-form {
  margin-top: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.form-group label i {
  margin-right: 6px;
}
.form-group input,
.form-group select {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 12px 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.1);
}
.form-group select option {
  background: var(--dark);
}
.btn-booking {
  background: var(--gold);
  color: var(--dark);
  padding: 16px 48px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-booking:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-booking i {
  margin-left: 10px;
}

.rooms {
  padding: 100px 0;
  background: var(--cream);
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.room-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}
.room-card.featured {
  border: 2px solid var(--gold);
}
.room-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}
.room-img .img-placeholder {
  height: 100%;
  min-height: unset;
}
.room-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--gold);
  padding: 6px 14px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.room-tag.highlight {
  background: var(--gold);
  color: var(--dark);
}
.room-info {
  padding: 28px;
}
.room-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.room-info p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}
.room-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}
.room-features li {
  font-size: 0.72rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 7px;
}
.room-features i {
  color: var(--gold);
  width: 14px;
}
.btn-room {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 24px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-room:hover {
  background: var(--gold);
  color: var(--dark);
}

.amenities {
  padding: 0;
}
.amenities-bg {
  background: var(--dark-warm);
  padding: 100px 0;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.amenity-card {
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(201, 168, 76, 0.08);
}
.amenity-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
}
.amenity-img {
  height: 200px;
  overflow: hidden;
}
.amenity-img .img-placeholder {
  height: 100%;
  min-height: unset;
}
.amenity-body {
  padding: 28px;
}
.amenity-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.amenity-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 10px;
}
.amenity-body p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 18px;
}
.amenity-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.amenity-link i {
  margin-left: 6px;
  transition: transform 0.2s;
}
.amenity-link:hover i {
  transform: translateX(4px);
}

.casino-card {
  border-color: rgba(201, 168, 76, 0.25);
}

.dining {
  padding: 100px 0;
  background: var(--white);
}
.dining-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 48px;
}
.dining-card {
  padding: 36px 24px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.dining-card:last-child {
  border-right: none;
}
.dining-card:hover {
  background: var(--cream);
}
.dining-num {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
  margin-bottom: 16px;
}
.dining-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.dining-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--dark);
}
.dining-card p {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.dining-tag {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--gold-dark);
  padding: 4px 12px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.testimonials {
  padding: 100px 0;
  background: var(--cream);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testi-card {
  background: var(--white);
  padding: 40px;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-card);
}
.testi-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  gap: 4px;
}
.testi-card p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testi-author {
  display: flex;
  flex-direction: column;
}
.testi-author strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}
.testi-author span {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
}

.cta-banner {
  position: relative;
  padding: 120px 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg .img-placeholder.full {
  height: 100%;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5));
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
}

.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
}
.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-logo i {
  font-size: 1.5rem;
  color: var(--gold);
}
.footer-logo-main {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
}
.footer-logo-sub {
  display: block;
  font-size: 0.65rem;
  color: rgba(201, 168, 76, 0.7);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-desc {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-contact-info p {
  font-size: 0.82rem;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.footer-contact-info i {
  color: var(--gold);
  width: 14px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-col h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}
.footer-col ul a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-awards {
  margin-top: 32px;
}
.footer-awards h4 {
  margin-bottom: 14px;
}
.awards-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.award-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}
.award-badge i {
  color: var(--gold);
}

.footer-middle {
  padding: 32px 0;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}
.footer-newsletter {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter-text {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 280px;
}
.newsletter-text i {
  font-size: 1.6rem;
  color: var(--gold);
}
.newsletter-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.newsletter-text p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}
.newsletter-form {
  display: flex;
  gap: 0;
  flex: 1;
  min-width: 280px;
}
.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--border);
  border-right: none;
  color: var(--white);
  padding: 12px 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  outline: none;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.newsletter-form input:focus {
  border-color: var(--gold);
}
.newsletter-form button {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 12px 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover {
  background: var(--gold-light);
}
.newsletter-form button i {
  margin-left: 6px;
}

.footer-bottom {
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom-inner > p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-links a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}
.footer-legal-links a:hover {
  color: var(--gold);
}
.footer-disclaimer {
  font-size: 0.68rem !important;
  color: rgba(255, 255, 255, 0.3) !important;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
  margin-top: 4px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(14, 12, 9, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  padding: 20px 40px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  min-width: 300px;
}
.cookie-text i {
  font-size: 1.4rem;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.cookie-text strong {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  margin-bottom: 4px;
}
.cookie-text p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}
.cookie-settings {
  width: 100%;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin: 8px 0;
}
.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}
.toggle {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}
.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transition: 0.3s;
  border-radius: 20px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background: white;
  transition: 0.3s;
  border-radius: 50%;
}
input:checked + .slider {
  background: var(--gold);
}
input:checked + .slider:before {
  transform: translateX(16px);
}
input:disabled + .slider {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-cookie-settings {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.7);
  padding: 9px 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-settings:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-cookie-reject {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.55);
  padding: 9px 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-reject:hover {
  border-color: rgba(255, 80, 80, 0.5);
  color: rgba(255, 80, 80, 0.8);
}
.btn-cookie-accept {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 9px 22px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-accept:hover {
  background: var(--gold-light);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.2s ease;
}
.modal-inner {
  background: var(--white);
  padding: 48px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: scaleIn 0.3s ease;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-light);
}
.modal-icon {
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
}
.modal-inner h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.modal-inner p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 12px;
  line-height: 1.6;
}
.modal-ref {
  font-weight: 700;
  color: var(--gold) !important;
  font-size: 1rem !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.page-hero {
  padding: 160px 0 80px;
  background: var(--dark-warm);
  text-align: center;
  position: relative;
}
.page-hero .section-label {
  justify-content: center;
  display: flex;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.inner-section {
  padding: 80px 0;
}
.inner-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 16px;
  color: var(--dark);
}
.inner-section h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark);
  margin-top: 32px;
}
.inner-section p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 16px;
}
.inner-section ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.inner-section ul li {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
}
.prose-content {
  max-width: 820px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info-side {
}
.contact-info-side h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 20px;
}
.contact-info-side p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-left: 3px solid var(--gold);
}
.contact-item i {
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 2px;
}
.contact-item h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 0.88rem;
  color: var(--text);
  margin: 0;
}
.contact-form {
  background: var(--white);
  padding: 40px;
  box-shadow: var(--shadow-card);
}
.contact-form h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin-bottom: 28px;
}
.cf-group {
  margin-bottom: 20px;
}
.cf-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.cf-group input,
.cf-group textarea,
.cf-group select {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 12px 16px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: var(--transition);
}
.cf-group input:focus,
.cf-group textarea:focus,
.cf-group select:focus {
  border-color: var(--gold);
}
.cf-group textarea {
  resize: vertical;
  min-height: 120px;
}
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/4;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dining-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .dining-card:nth-child(3) {
    border-right: none;
  }
}
@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rooms-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rooms-grid .room-card:nth-child(3) {
    grid-column: 1/3;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  .dining-row {
    grid-template-columns: 1fr 1fr;
  }
  .dining-card {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
}
@media (max-width: 700px) {
  .nav-links,
  .btn-book {
    display: none;
  }
  .burger {
    display: block;
    margin-left: auto;
  }
  .rooms-grid {
    grid-template-columns: 1fr;
  }
  .rooms-grid .room-card:nth-child(3) {
    grid-column: auto;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .dining-row {
    grid-template-columns: 1fr;
  }
  .hero-badges {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/3;
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-newsletter {
    flex-direction: column;
  }
  .nav-inner {
    padding: 16px 24px;
  }
  .cookie-banner {
    padding: 16px 20px;
  }
  .cf-row {
    grid-template-columns: 1fr;
  }
}
