/* ============================================================
   HARBOUR HOTEL — hotelukharbor.com
   Design System: Burgundy / Gold / Ivory
   Fonts: Cormorant Garamond (headings) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* --- CSS Variables --- */
:root {
  --burgundy:       #7B1C2E;
  --burgundy-dark:  #560F1F;
  --burgundy-light: #9E3048;
  --gold:           #C9A84C;
  --gold-light:     #E2C47A;
  --gold-pale:      #F0DCAC;
  --ivory:          #FAF6EE;
  --cream:          #F3EBD8;
  --warm-white:     #FEFCF8;
  --charcoal:       #2C2520;
  --mid-grey:       #6B5E57;
  --light-grey:     #C4B8B0;
  --border:         rgba(201,168,76,0.25);
  --shadow-sm:      0 2px 12px rgba(44,37,32,0.08);
  --shadow-md:      0 8px 32px rgba(44,37,32,0.12);
  --shadow-lg:      0 20px 60px rgba(44,37,32,0.16);
  --transition:     all 0.35s cubic-bezier(0.4,0,0.2,1);
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      16px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  color: var(--charcoal);
  font-weight: 600;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.1rem; }

.subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--mid-grey);
  line-height: 1.8;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--wide { max-width: 1440px; }
.container--narrow { max-width: 860px; }

.section { padding: 6rem 0; }
.section--sm { padding: 4rem 0; }
.section--lg { padding: 9rem 0; }

.section-header { margin-bottom: 3.5rem; }
.section-header--center { text-align: center; }
.section-header .subtitle { margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 640px; margin: 0 auto; color: var(--mid-grey); }

/* --- Divider --- */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  margin: 1.25rem 0;
}
.divider--center { margin: 1.25rem auto; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  transition: var(--transition);
}

.site-header.scrolled .header-inner {
  background: var(--burgundy-dark);
  padding: 0.85rem 2.5rem;
  box-shadow: var(--shadow-md);
}

.site-header.top .header-inner {
  background: rgba(44,37,32,0.2);
  backdrop-filter: blur(8px);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(201,168,76,0.5);
  flex-shrink: 0;
}

.logo-icon img { width: 100%; height: 100%; object-fit: cover; }

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1;
  letter-spacing: 0.02em;
}

.logo-tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
}

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 0.25rem; }

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.85);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after,
.nav-link.active::after { left: 0.75rem; right: 0.75rem; }
.nav-link.active { color: var(--gold-light); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ivory);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 100vw);
  height: 100vh;
  background: var(--burgundy-dark);
  z-index: 950;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: var(--shadow-lg);
}

.mobile-nav.open { right: 0; }

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 940;
}

.mobile-nav-overlay.open { display: block; }

.mobile-nav-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  font-size: 1.5rem;
  color: var(--ivory);
  cursor: pointer;
  line-height: 1;
}

.mobile-nav a {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.8);
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: color 0.2s;
}

.mobile-nav a:hover { color: var(--gold-light); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform-origin: center;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.07); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(44,37,32,0.85) 0%,
    rgba(44,37,32,0.4) 50%,
    rgba(44,37,32,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem 5rem;
  max-width: 900px;
}

.hero-content .subtitle { color: var(--gold-light); margin-bottom: 1rem; }
.hero-content h1 {
  color: var(--ivory);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1.25rem;
}

.hero-content h1 em {
  font-style: normal;
  font-weight: 600;
  color: var(--gold-light);
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(250,246,238,0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; right: 2.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(250,246,238,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  cursor: pointer;
  z-index: 2;
}

.hero-scroll::before {
  content: '';
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(250,246,238,0.4));
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--ivory);
  border: 1px solid var(--burgundy);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  box-shadow: 0 4px 20px rgba(123,28,46,0.35);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(250,246,238,0.5);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--burgundy);
  border: 1px solid var(--burgundy);
}

.btn-ghost:hover {
  background: var(--burgundy);
  color: var(--ivory);
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--warm-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-img img { transform: scale(1.05); }

.card-body { padding: 1.75rem; }
.card-body .subtitle { margin-bottom: 0.5rem; }
.card-body h3 { margin-bottom: 0.75rem; }
.card-body p { color: var(--mid-grey); font-size: 0.95rem; }

/* --- Feature Card (icon + text) --- */
.feature-card {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--warm-white);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.feature-icon {
  width: 60px; height: 60px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-light);
}

.feature-card h4 { margin-bottom: 0.6rem; }
.feature-card p { font-size: 0.9rem; color: var(--mid-grey); }

/* ============================================================
   GRID SYSTEMS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* --- Split layout (text + image) --- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split--reverse .split-img { order: -1; }

.split-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.split-img img { width: 100%; height: 100%; object-fit: cover; }

.split-img::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* ============================================================
   IMAGE GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 0.75rem;
}

.gallery-item { border-radius: var(--radius-md); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 3; }
.gallery-item:nth-child(6) { grid-column: span 4; }
.gallery-item:nth-child(7) { grid-column: span 8; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,37,32,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  color: var(--ivory);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--burgundy-dark);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {}
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,246,238,0.55);
  margin-top: 0.4rem;
  display: block;
}

/* ============================================================
   QUOTE / PULLQUOTE
   ============================================================ */
.pullquote {
  background: var(--ivory);
  border-left: 4px solid var(--gold);
  padding: 2.5rem 3rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  position: relative;
  margin: 3rem 0;
}

.pullquote::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  color: var(--gold-pale);
  position: absolute;
  top: -0.5rem; left: 1rem;
  line-height: 1;
}

.pullquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--charcoal);
  position: relative;
  z-index: 1;
  margin-bottom: 1rem;
}

.pullquote cite {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ============================================================
   ACCORDION (FAQ style)
   ============================================================ */
.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
}

.accordion-header h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; }

.accordion-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.accordion-item.open .accordion-icon { transform: rotate(45deg); }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.accordion-body p {
  color: var(--mid-grey);
  font-size: 0.95rem;
  padding-bottom: 1.5rem;
  line-height: 1.75;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,37,32,0.8) 0%, rgba(44,37,32,0.3) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2.5rem 4rem;
}

.page-hero-content .subtitle { color: var(--gold-light); margin-bottom: 0.5rem; }
.page-hero-content h1 {
  color: var(--ivory);
  font-weight: 300;
  font-style: italic;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 0;
  font-size: 0.78rem;
  color: var(--mid-grey);
  letter-spacing: 0.05em;
}

.breadcrumb a { color: var(--burgundy); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--light-grey); }

/* ============================================================
   ROOMS CARD
   ============================================================ */
.room-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
  transition: var(--transition);
}

.room-card:nth-child(even) .room-img { order: 1; }
.room-card:nth-child(even) .room-info { order: -1; }

.room-img { position: relative; min-height: 360px; }
.room-img img { width: 100%; height: 100%; object-fit: cover; }

.room-badge {
  position: absolute;
  top: 1.25rem; left: 1.25rem;
  background: var(--burgundy);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-sm);
}

.room-info {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.room-info .subtitle { margin-bottom: 0.5rem; }
.room-info h3 { margin-bottom: 1rem; }
.room-info p { color: var(--mid-grey); margin-bottom: 1.75rem; }

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.amenity-tag {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: var(--cream);
  color: var(--charcoal);
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* ============================================================
   DINING
   ============================================================ */
.dining-card {
  background: var(--warm-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.dining-img {
  position: relative;
  height: 280px;
}

.dining-img img { width: 100%; height: 100%; object-fit: cover; }

.dining-tag {
  position: absolute;
  bottom: 1rem; left: 1.25rem;
  background: rgba(44,37,32,0.75);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-sm);
}

.dining-info { padding: 2rem; }
.dining-info h3 { margin-bottom: 0.5rem; }
.dining-info .hours { font-size: 0.8rem; color: var(--gold); margin-bottom: 0.75rem; letter-spacing: 0.05em; }
.dining-info p { color: var(--mid-grey); font-size: 0.92rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item { display: flex; gap: 1.25rem; align-items: flex-start; }

.contact-icon {
  width: 48px; height: 48px;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--burgundy);
  flex-shrink: 0;
}

.contact-item h5 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.contact-item p, .contact-item a {
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-item a:hover { color: var(--burgundy); }

/* Contact Form */
.contact-form {}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-grey);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--charcoal);
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--warm-white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-group textarea { resize: vertical; min-height: 130px; }

/* ============================================================
   MAP EMBED
   ============================================================ */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  height: 400px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--charcoal);
  border-top: 1px solid rgba(201,168,76,0.3);
  padding: 1.25rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  z-index: 9000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-text {
  font-size: 0.85rem;
  color: rgba(250,246,238,0.75);
  flex: 1;
  min-width: 240px;
}

.cookie-text a { color: var(--gold-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--charcoal);
  padding: 5rem 0 0;
  color: rgba(250,246,238,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.footer-brand .logo { margin-bottom: 1.25rem; }
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.75;
  max-width: 280px;
  color: rgba(250,246,238,0.55);
}

.footer-col h5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(250,246,238,0.55);
  padding: 0.3rem 0;
  transition: color 0.2s;
}

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

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  color: rgba(250,246,238,0.55);
  align-items: flex-start;
}

.footer-contact-item span { color: var(--gold); font-size: 0.9rem; }

.footer-bottom {
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(250,246,238,0.35);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(250,246,238,0.35);
  transition: color 0.2s;
}

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

/* Gambling warning in footer */
.footer-warning {
  background: rgba(123,28,46,0.12);
  border: 1px solid rgba(123,28,46,0.25);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1.25rem;
  margin-bottom: 2rem;
  font-size: 0.78rem;
  color: rgba(250,246,238,0.5);
  text-align: center;
}

/* ============================================================
   SECTIONS SPECIFIC
   ============================================================ */

/* Welcome section */
.welcome-section { background: var(--warm-white); }
.welcome-intro { font-size: 1.2rem; font-style: italic; color: var(--mid-grey); line-height: 1.85; }

/* Awards strip */
.awards-strip {
  background: var(--ivory);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.awards-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--mid-grey);
  letter-spacing: 0.05em;
}

.award-icon { font-size: 1.4rem; color: var(--gold); }

/* Highlight grid (index) */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.highlight-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.highlight-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.highlight-item:hover img { transform: scale(1.06); }

.highlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,37,32,0.75) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 2rem 1.75rem;
}

.highlight-text a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--ivory);
  font-weight: 600;
}

.highlight-text .arrow-icon {
  font-size: 1.1rem;
  color: var(--gold-light);
  transition: transform 0.3s;
}

.highlight-item:hover .arrow-icon { transform: translateX(4px); }

/* Concierge CTA strip */
.concierge-strip {
  background: var(--burgundy);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.concierge-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/concierge-desk.jpg') center/cover no-repeat;
  opacity: 0.12;
}

.concierge-strip .container { position: relative; z-index: 2; text-align: center; }
.concierge-strip h2 { color: var(--ivory); margin-bottom: 1rem; }
.concierge-strip p { color: rgba(250,246,238,0.7); max-width: 520px; margin: 0 auto 2.5rem; }

/* Spa cards */
.spa-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Entertainment / Gaming Lounge section */
.lounge-section { background: var(--charcoal); color: var(--ivory); }
.lounge-section .subtitle { color: var(--gold-light); }
.lounge-section h2 { color: var(--ivory); }
.lounge-section p { color: rgba(250,246,238,0.7); }
.lounge-section .divider { background: linear-gradient(90deg, var(--gold), var(--gold-pale)); }

.lounge-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.lounge-feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.lounge-feat-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.lounge-feat h5 { font-family: 'DM Sans', sans-serif; color: var(--ivory); margin-bottom: 0.25rem; }
.lounge-feat p { font-size: 0.85rem; color: rgba(250,246,238,0.55); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.legal-content h1 {
  font-style: italic;
  margin-bottom: 0.5rem;
}

.legal-content .meta {
  font-size: 0.8rem;
  color: var(--mid-grey);
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--burgundy);
}

.legal-content h3 {
  font-size: 1.15rem;
  margin: 1.75rem 0 0.5rem;
}

.legal-content p {
  color: var(--mid-grey);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  color: var(--mid-grey);
  font-size: 0.95rem;
  padding: 0.2rem 0;
}

.legal-content a { color: var(--burgundy); text-decoration: underline; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .split { gap: 3rem; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4rem 0; }
  .section--lg { padding: 5rem 0; }

  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .header-inner { padding: 1rem 1.25rem; }
  .site-header.scrolled .header-inner { padding: 0.75rem 1.25rem; }

  .hero-content { padding: 0 1.25rem 3.5rem; }
  .hero-content h1 { font-size: 2.2rem; }

  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse .split-img { order: 0; }
  .split--reverse .split-info { order: 0; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .room-card { grid-template-columns: 1fr; }
  .room-card:nth-child(even) .room-img { order: 0; }
  .room-card:nth-child(even) .room-info { order: 0; }
  .room-info { padding: 2rem; }
  .room-img { min-height: 260px; }

  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-item { aspect-ratio: 3/2; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .spa-features-grid { grid-template-columns: 1fr; }
  .lounge-features { grid-template-columns: 1fr; }

  .awards-inner { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .cookie-banner { flex-direction: column; gap: 1rem; padding: 1.25rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .page-hero { height: 45vh; }
  .hero { height: 100svh; }
}
