/* ═══════════════════════════════════════
   CSS VARIABLES & RESET
   ═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --burgundy: #473334;
  --burgundy-deep: #2e1f20;
  --gold: #b79373;
  --gold-light: #d4b896;
  --gold-pale: #f0e4d4;
  --cream: #faf6f1;
  --warm-white: #fdfcfa;
  --stone: #e8dfd5;
  --text: #222222;
  --text-light: #55555e;
  --text-muted: #8a8a8a;
  --shadow-soft: 0 4px 30px rgba(71, 51, 52, 0.08);
  --shadow-lift: 0 12px 40px rgba(71, 51, 52, 0.12);
  --shadow-deep: 0 20px 60px rgba(71, 51, 52, 0.18);
  --radius: 2px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ═══════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════ */
.font-display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  margin-right: 12px;
  vertical-align: middle;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--burgundy);
  margin-bottom: 1.2rem;
}

/* ═══════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════
   NOISE TEXTURE OVERLAY
   ═══════════════════════════════════════ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* ═══════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════ */
.top-bar {
  background: var(--burgundy-deep);
  color: rgba(255,255,255,0.8);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.5rem 0;
  position: relative;
  z-index: 100;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-bar-left a {
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--transition);
}

.top-bar-left a:hover { color: var(--gold-light); }

.top-bar-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.top-bar-right a {
  color: rgba(255,255,255,0.6);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}

.top-bar-right a:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════ */
.header {
  background: var(--warm-white);
  position: sticky;
  top: 0;
  z-index: 90;
  transition: box-shadow var(--transition), background var(--transition);
}

.header.scrolled {
  background: rgba(253, 252, 250, 0.97);
  box-shadow: 0 1px 20px rgba(71, 51, 52, 0.06);
  backdrop-filter: blur(10px);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.logo img {
  height: 52px;
  width: auto;
  transition: height var(--transition);
}

.header.scrolled .logo img { height: 42px; }

.nav-menu {
  display: flex;
  gap: 0;
  align-items: center;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
  display: block;
  padding: 1rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  transition: color var(--transition);
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0.6rem;
  left: 0.85rem;
  right: 0.85rem;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.nav-menu > li:hover > a { color: var(--burgundy); }
.nav-menu > li:hover > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-menu > li.active > a { color: var(--burgundy); }
.nav-menu > li.active > a::after { transform: scaleX(1); }

/* Dropdown */
.has-dropdown > a span.arrow {
  display: inline-block;
  width: 0; height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid currentColor;
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: var(--warm-white);
  box-shadow: var(--shadow-lift);
  border-top: 2px solid var(--gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.3s ease;
  z-index: 50;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 0.7rem 1.2rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid var(--stone);
  transition: all var(--transition);
}

.dropdown a:hover {
  background: var(--cream);
  color: var(--burgundy);
  padding-left: 1.5rem;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 101;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  transition: all 0.3s ease;
  display: block;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════
   CONTAINER
   ═══════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ═══════════════════════════════════════
   PAGE HERO (internal pages)
   ═══════════════════════════════════════ */
.page-hero {
  background: var(--burgundy-deep);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(183,147,115,0.15), transparent 70%);
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 0.5rem;
  position: relative;
}

.page-hero p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  position: relative;
}

/* ═══════════════════════════════════════
   PAGE CONTENT
   ═══════════════════════════════════════ */
.page-content {
  padding: 4rem 0 5rem;
}

.page-content p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.page-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2rem;
  color: var(--burgundy);
  margin: 2.5rem 0 1rem;
}

.page-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--burgundy);
  margin: 2rem 0 0.8rem;
}

.content-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.content-cols.reverse { direction: rtl; }
.content-cols.reverse > * { direction: ltr; }

.content-img {
  border-radius: var(--radius);
  overflow: hidden;
}

.content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* ═══════════════════════════════════════
   MENU TABLE
   ═══════════════════════════════════════ */
.menu-category {
  margin: 3rem 0;
}

.menu-category h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2rem;
  color: var(--burgundy);
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 1.5rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--stone);
}

.menu-item-info { flex: 1; padding-right: 1rem; }

.menu-item-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 300;
  margin-top: 0.2rem;
}

.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

.menu-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 1rem;
  padding: 1rem;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}

/* ═══════════════════════════════════════
   MENU CARDS (menus page)
   ═══════════════════════════════════════ */
.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
}

.menu-card {
  background: var(--warm-white);
  border: 1px solid var(--stone);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
}

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

.menu-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.menu-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  margin: 1rem 0;
}

.menu-card .price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.menu-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin: 3rem 0;
}

.contact-info-block h3 {
  margin-top: 0;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: var(--text-light);
}

.contact-detail svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-form .form-group {
  margin-bottom: 1.2rem;
}

.contact-form label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--stone);
  background: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: var(--text);
  transition: border-color var(--transition);
  border-radius: var(--radius);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form textarea { min-height: 140px; resize: vertical; }

.btn-primary {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: var(--burgundy);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
  background: var(--gold);
}

/* ═══════════════════════════════════════
   GALLERY PAGE
   ═══════════════════════════════════════ */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 2rem 0;
}

.gallery-page-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-page-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

/* ═══════════════════════════════════════
   ACCOMMODATION PAGE
   ═══════════════════════════════════════ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-light);
  padding: 0.6rem 0;
}

.amenity svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

.apt-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.apt-card {
  background: var(--cream);
  padding: 2rem;
  border: 1px solid var(--stone);
  text-align: center;
}

.apt-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
}

.apt-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.apt-card .capacity {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.8rem;
}

/* ═══════════════════════════════════════
   HERO SLIDER (home only)
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 85vh;
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active img { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(46,31,32,0.15) 0%, rgba(46,31,32,0.05) 40%, rgba(46,31,32,0.45) 100%);
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem 0;
  text-align: center;
  z-index: 2;
}

.hero-content h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

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

.hero-content p {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.hero-dot {
  width: 32px;
  height: 3px;
  background: rgba(255,255,255,0.35);
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
}

.hero-dot.active {
  background: var(--gold-light);
  width: 48px;
}

/* ═══════════════════════════════════════
   WELCOME / CARDS / GALLERY / ACCOM / FOOTER (home)
   ═══════════════════════════════════════ */
.welcome { padding: 6rem 0; text-align: center; background: var(--warm-white); position: relative; }
.welcome::before { content: '13'; position: absolute; font-family: 'Cormorant Garamond', serif; font-size: 18rem; font-weight: 300; color: var(--gold); opacity: 0.04; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; line-height: 1; }
.welcome .section-title { margin-bottom: 0.8rem; }
.welcome-text { max-width: 580px; margin: 0 auto; font-size: 1rem; color: var(--text-light); line-height: 1.85; font-weight: 300; }
.welcome-divider { width: 50px; height: 1px; background: var(--gold); margin: 2rem auto 0; }

.restaurant-section { padding: 5rem 0 6rem; background: var(--cream); position: relative; }
.restaurant-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, var(--stone), transparent); }

.section-header { text-align: center; margin-bottom: 3.5rem; }

.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flip-card { perspective: 1000px; height: 320px; cursor: pointer; display: block; }
.flip-card-inner { position: relative; width: 100%; height: 100%; transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); transform-style: preserve-3d; }
.flip-card:hover .flip-card-inner { transform: rotateY(180deg); }
.flip-card-front, .flip-card-back { position: absolute; inset: 0; backface-visibility: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.flip-card-front { background: var(--warm-white); box-shadow: var(--shadow-soft); border: 1px solid var(--stone); }
.flip-card-front .card-icon { width: 56px; height: 56px; margin-bottom: 1.5rem; color: var(--gold); }
.flip-card-front h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 400; color: var(--burgundy); margin-bottom: 0.5rem; }
.flip-card-front .card-hint { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.flip-card-back { background: var(--burgundy); color: #fff; transform: rotateY(180deg); }
.flip-card-back h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 400; margin-bottom: 0.8rem; }
.flip-card-back p { font-size: 0.82rem; font-weight: 300; line-height: 1.7; opacity: 0.85; margin-bottom: 1.5rem; }
.flip-card-back .card-btn { display: inline-block; padding: 0.6rem 1.8rem; border: 1px solid var(--gold-light); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); transition: all var(--transition); }
.flip-card-back .card-btn:hover { background: var(--gold-light); color: var(--burgundy); }

.gallery-section { padding: 6rem 0; background: var(--warm-white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.gallery-item { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition-slow); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(71, 51, 52, 0.4) 0%, transparent 50%); opacity: 0; transition: opacity var(--transition); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { opacity: 1; }

.accommodations { padding: 6rem 0; background: var(--cream); }
.accommodations .section-header { margin-bottom: 3rem; }
.accom-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.accom-card { position: relative; height: 400px; overflow: hidden; display: flex; align-items: flex-end; cursor: pointer; }
.accom-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform var(--transition-slow); }
.accom-card:hover .accom-card-bg { transform: scale(1.05); }
.accom-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(46, 31, 32, 0.75) 0%, rgba(46, 31, 32, 0.1) 60%); z-index: 1; transition: all var(--transition); }
.accom-card:hover::before { background: linear-gradient(to top, rgba(46, 31, 32, 0.85) 0%, rgba(46, 31, 32, 0.2) 60%); }
.accom-card-content { position: relative; z-index: 2; padding: 2.5rem; width: 100%; transform: translateY(10px); transition: transform var(--transition); }
.accom-card:hover .accom-card-content { transform: translateY(0); }
.accom-card-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 400; color: #fff; margin-bottom: 0.5rem; }
.accom-card-content p { font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-bottom: 1.2rem; font-weight: 300; opacity: 0; transform: translateY(10px); transition: all var(--transition); }
.accom-card:hover .accom-card-content p { opacity: 1; transform: translateY(0); }
.accom-card-content .accom-btn { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-light); transition: gap var(--transition); }
.accom-card:hover .accom-btn { gap: 0.8rem; }
.accom-btn svg { width: 16px; height: 16px; transition: transform var(--transition); }
.accom-card:hover .accom-btn svg { transform: translateX(4px); }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer { background: var(--burgundy-deep); color: rgba(255,255,255,0.7); padding: 4.5rem 0 0; position: relative; }
.footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(to right, var(--gold), var(--gold-light), var(--gold)); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1.3fr; gap: 2.5rem; }
.footer-col h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 400; color: #fff; margin-bottom: 1.2rem; letter-spacing: 0.02em; }
.footer-logo { margin-bottom: 1.2rem; }
.footer-logo img { height: 45px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.6rem; font-size: 0.82rem; line-height: 1.6; }
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 4px; color: var(--gold); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-links a { display: block; font-size: 0.82rem; padding: 0.25rem 0; color: rgba(255,255,255,0.6); transition: all var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 0.3rem; }
.footer-schedule p { font-size: 0.82rem; line-height: 1.65; }
.footer-schedule strong { color: rgba(255,255,255,0.9); font-weight: 500; }
.footer-map { border-radius: var(--radius); overflow: hidden; height: 100%; min-height: 200px; }
.footer-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(0.95); }

.bottom-bar { margin-top: 3rem; padding: 1.2rem 0; border-top: 1px solid rgba(255,255,255,0.08); }
.bottom-bar .container { display: flex; justify-content: space-between; align-items: center; }
.bottom-bar p { font-size: 0.72rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); }
.bottom-social { display: flex; gap: 0.6rem; }
.bottom-social a { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.5); transition: all var(--transition); }
.bottom-social a:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(183, 147, 115, 0.08); }
.bottom-social svg { width: 14px; height: 14px; }

.back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px; background: var(--burgundy); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all var(--transition); z-index: 80; box-shadow: 0 4px 15px rgba(71, 51, 52, 0.3); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); transform: translateY(-3px); }
.back-to-top svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
  .footer-map { min-height: 250px; }
  .menu-cards { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .top-bar-left { display: none; }
  .top-bar-right { margin-left: auto; }
  .nav-toggle { display: flex; }
  .nav-menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--warm-white); flex-direction: column; padding: 5rem 2rem 2rem; box-shadow: -10px 0 40px rgba(0,0,0,0.1); transition: right 0.4s ease; z-index: 100; align-items: flex-start; }
  .nav-menu.open { right: 0; }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a { padding: 0.8rem 0; border-bottom: 1px solid var(--stone); }
  .nav-menu > li > a::after { display: none; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border-top: none; padding-left: 1rem; }
  .dropdown a { border-bottom-color: rgba(0,0,0,0.05); padding: 0.5rem 0; }
  .hero { height: 60vh; min-height: 400px; }
  .welcome { padding: 4rem 0; }
  .welcome::before { font-size: 10rem; }
  .restaurant-section { padding: 4rem 0; }
  .cards-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .flip-card { height: 260px; }
  .gallery-grid, .gallery-page-grid { grid-template-columns: 1fr 1fr; }
  .accom-grid { grid-template-columns: 1fr; }
  .accom-card { height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-grid .footer-col:first-child { grid-column: 1 / -1; }
  .footer-grid .footer-col:last-child { grid-column: 1 / -1; }
  .bottom-bar .container { flex-direction: column; gap: 1rem; text-align: center; }
  .content-cols { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .menu-cards { grid-template-columns: 1fr; }
  .apt-cards { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .gallery-grid, .gallery-page-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .footer-col:first-child { grid-column: auto; }
  .footer-grid .footer-col:last-child { grid-column: auto; }
  .amenities-grid { grid-template-columns: 1fr; }
}
