/* ============================================
   MAKADAM HOTEL — Stylesheet
   Light & airy elegance · Cream-dominant
   ============================================ */

:root {
  --burgundy: #441416;
  --burgundy-light: #5e2025;
  --cream: #FFF0C5;
  --cream-soft: #FFF6DD;
  --cream-deep: #F2E2B0;
  --paper: #FBF6E8;
  --ink: #1c0708;
  --ink-soft: #4a2c2e;
  --line: rgba(68, 20, 22, 0.14);
  --line-soft: rgba(68, 20, 22, 0.08);

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body: 'Manrope', 'Helvetica Neue', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --max-width: 1320px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-pad: clamp(3rem, 6vw, 5.5rem);
  --radius: 2px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 300;
  font-size: 16px;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

/* Subtle grain overlay over the whole page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--burgundy);
}

h1 { font-size: clamp(3.5rem, 9vw, 7.5rem); font-weight: 300; }
h2 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h3 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-weight: 500;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--burgundy);
}

.italic-em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

section { position: relative; }

.section-pad { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.4rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--ease);
  background: transparent;
}

.nav.scrolled {
  background: rgba(251, 246, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.9rem var(--gutter);
  border-bottom: 1px solid var(--line-soft);
}

.nav-logo {
  height: 60px;
  width: auto;
  transition: all 0.5s var(--ease);
}

.nav.scrolled .nav-logo { height: 48px; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--burgundy);
  position: relative;
  padding: 0.25rem 0;
  transition: opacity 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--burgundy);
  transition: width 0.4s var(--ease);
}

.nav-links a:hover::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1.5rem; }

.lang-switch {
  position: relative;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--burgundy);
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--line);
  transition: all 0.3s;
  font-weight: 500;
}

.lang-current:hover { background: var(--burgundy); color: var(--cream); border-color: var(--burgundy); }

.lang-current svg { width: 10px; height: 10px; }

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.25s var(--ease);
  box-shadow: 0 10px 30px rgba(68, 20, 22, 0.08);
}

.lang-switch.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.7rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--burgundy);
  border-bottom: 1px solid var(--line-soft);
  transition: background 0.2s;
}

.lang-menu button:last-child { border-bottom: none; }
.lang-menu button:hover { background: var(--cream); }
.lang-menu button.active { background: var(--burgundy); color: var(--cream); }

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--burgundy);
  color: var(--cream);
  padding: 0.75rem 1.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  transition: all 0.35s var(--ease);
  border: 1px solid var(--burgundy);
  position: relative;
  overflow: hidden;
}

.btn-book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease);
  z-index: 0;
}

.btn-book:hover::before { transform: translateY(0); }
.btn-book:hover { color: var(--burgundy); }
.btn-book span { position: relative; z-index: 1; }

.btn-book svg { position: relative; z-index: 1; width: 14px; height: 14px; transition: transform 0.3s; }
.btn-book:hover svg { transform: translateX(3px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  padding: 0.75rem 1.4rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  background: transparent;
  transition: all 0.35s var(--ease);
}

.btn-outline:hover { background: var(--burgundy); color: var(--cream); }

.hamburger {
  display: none;
  width: 32px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--burgundy);
  transition: all 0.35s var(--ease);
}

.hamburger.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--paper);
  padding-top: 5rem;
  padding-bottom: 8rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 240, 197, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(68, 20, 22, 0.04) 0%, transparent 50%);
}

.hero-arch {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  max-width: 80vw;
  opacity: 0.05;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-inner-centered {
  display: block;
  text-align: center;
}

.hero-content { padding-top: 2rem; }

.hero-content-centered {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content-centered .eyebrow { justify-content: center; }

.hero-content-centered .hero-title {
  font-size: clamp(3.5rem, 11vw, 9rem);
  margin-bottom: 3rem;
}

.hero-content-centered .hero-actions { justify-content: center; }

.hero-content .eyebrow { margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 0.9s var(--ease) 0.2s forwards; }

.hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--burgundy);
  margin-bottom: 2rem;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line span {
  display: inline-block;
  transform: translateY(110%);
  animation: revealUp 1s var(--ease) forwards;
}

.hero-title .line:nth-child(1) span { animation-delay: 0.3s; }
.hero-title .line:nth-child(2) span { animation-delay: 0.45s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.6s; }

.hero-title em {
  font-style: italic;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.85s forwards;
}

.hero-actions .btn-book,
.hero-actions .btn-outline {
  padding: 1rem 1.8rem;
  font-size: 0.78rem;
}

.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream-soft);
  overflow: hidden;
  z-index: 3;
}

.marquee-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 4rem;
  font-weight: 400;
}

.marquee-track span::after {
  content: '✦';
  font-size: 0.8rem;
}

/* ============================================
   ABOUT
   ============================================ */

.about {
  background: var(--cream-soft);
  position: relative;
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-stack {
  position: relative;
  height: 580px;
}

.about-image-stack .img-exterior {
  position: absolute;
  inset: 0;
  background: url('assets/exterior/hotel-facade.jpg') center/cover;
}

.about-image-stack .img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 75%;
  background: url('assets/rooms/deluxe-queen/1.jpg') center/cover;
}

.about-image-stack .img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  background: url('assets/rooms/twin-single-terrace/1.jpg') center/cover;
  border: 10px solid var(--cream-soft);
}

.about-content .eyebrow { margin-bottom: 1.5rem; }
.about-content h2 { margin-bottom: 2rem; }
.about-content h2 em { font-style: italic; color: var(--burgundy-light); }

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.about-single-stat {
  display: inline-flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  padding-right: 3rem;
}

.about-single-stat strong {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--burgundy);
  line-height: 1;
  font-weight: 400;
}

.about-single-stat span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ============================================
   ROOMS
   ============================================ */

.rooms { background: var(--paper); }

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

.section-header .eyebrow { margin-bottom: 1.25rem; }
.section-header h2 { max-width: 800px; margin: 0 auto; }
.section-header h2 em { font-style: italic; }
.section-header p {
  max-width: 580px;
  margin: 1.25rem auto 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.room-index {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1rem;
  max-width: 880px;
  margin: 2.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.room-index a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--burgundy);
  padding: 0.4rem 1rem;
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
  background: transparent;
  letter-spacing: 0.005em;
  line-height: 1.3;
}

.room-index a em { font-style: italic; }

.room-index a:hover {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
  transform: translateY(-1px);
}

.rooms-amenities {
  max-width: 1000px;
  margin: 3rem auto 4rem;
  padding: 2rem 2.5rem;
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  text-align: center;
}

.rooms-amenities-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--burgundy);
  font-weight: 500;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
}

.rooms-amenities-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
}

.rooms-amenities-list span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: var(--paper);
}

.rooms-grid {
  display: grid;
  gap: 4rem;
}

.room-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: center;
  scroll-margin-top: 100px;
  transition: box-shadow 0.6s var(--ease);
}

.room-card.highlight-arrived {
  box-shadow: 0 0 0 8px rgba(68, 20, 22, 0.06), 0 30px 60px -20px rgba(68, 20, 22, 0.18);
}

.room-card:nth-child(even) {
  direction: rtl;
}

.room-card:nth-child(even) > * { direction: ltr; }

.room-gallery {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--cream-deep);
  overflow: hidden;
}

.room-gallery-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.room-gallery-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}

.room-gallery-slide.active { opacity: 1; }

.room-gallery-controls {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.room-gallery-btn {
  width: 42px;
  height: 42px;
  background: rgba(251, 246, 232, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--burgundy);
  transition: all 0.3s;
}

.room-gallery-btn:hover { background: var(--burgundy); color: var(--cream); }

.room-gallery-counter {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(68, 20, 22, 0.85);
  color: var(--cream);
  padding: 0.4rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  z-index: 3;
}

.room-info .room-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--burgundy);
  opacity: 0.6;
  margin-bottom: 1rem;
  display: block;
}

.room-info h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 2rem;
  font-weight: 400;
}

.room-info h3 em { font-style: italic; }

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.room-features span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

.room-share {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  padding: 0.5rem 0;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 0.3s var(--ease);
  background: none;
  border: none;
}

.room-share svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}

.room-share:hover {
  color: var(--burgundy);
}

.room-share:hover svg {
  transform: rotate(-10deg);
}

.room-share.copied {
  color: var(--burgundy);
}

.room-share.copied svg {
  transform: rotate(0);
}

/* ============================================
   WELLNESS
   ============================================ */

.wellness {
  background: var(--burgundy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.wellness::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 50%, rgba(255, 200, 130, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.wellness-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.wellness-content .eyebrow {
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.wellness-content .eyebrow::before { background: var(--cream); }

.wellness-content h2 {
  color: var(--cream);
  margin-bottom: 2rem;
  font-weight: 400;
}
.wellness-content h2 em {
  font-style: italic;
  color: var(--cream-deep);
}

.wellness-content p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 240, 197, 0.82);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.wellness-note {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.6rem 1.1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--cream);
  border: 1px solid rgba(255, 240, 197, 0.3);
  background: rgba(255, 240, 197, 0.05);
}

.wellness-image {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.wellness-image-frame {
  position: absolute;
  inset: 0;
  background: url('assets/wellness/massage.jpg') center/cover;
  filter: saturate(1.05);
}

/* ============================================
   LOCATION
   ============================================ */

.location { background: var(--cream-soft); }

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-content .eyebrow { margin-bottom: 1.5rem; }
.location-content h2 { margin-bottom: 1.5rem; }
.location-content > p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.attractions {
  list-style: none;
  border-top: 1px solid var(--line);
}

.attractions li {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  gap: 2rem;
  transition: padding 0.3s var(--ease);
}

.attractions li:hover { padding-left: 1rem; }

.attractions .name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--burgundy);
  font-weight: 400;
}

.attractions .distance {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
  font-weight: 500;
}

.location-map {
  height: 560px;
  position: relative;
  overflow: hidden;
}

.location-map-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) sepia(0.15);
  pointer-events: auto;
}

.location-map-overlay {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--paper);
  padding: 1.25rem 1.5rem;
  max-width: 280px;
  border-left: 3px solid var(--burgundy);
  text-decoration: none;
  display: block;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  z-index: 2;
}

.location-map-overlay:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(68, 20, 22, 0.12);
}

.location-map-overlay strong {
  font-family: var(--font-display);
  display: block;
  font-size: 1.15rem;
  color: var(--burgundy);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.location-map-overlay span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ============================================
   EXPERIENCE / QUOTE
   ============================================ */

.quote {
  background: var(--paper);
  text-align: center;
  padding: var(--section-pad) var(--gutter);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--burgundy);
  line-height: 1;
  opacity: 0.4;
  margin-bottom: 1rem;
}

.quote blockquote {
  max-width: 900px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  line-height: 1.35;
  color: var(--burgundy);
  font-weight: 400;
  font-style: italic;
}

.quote cite {
  display: block;
  margin-top: 2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ink-soft);
  font-weight: 500;
  font-style: normal;
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
  background: var(--burgundy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.contact .eyebrow { color: var(--cream); }
.contact .eyebrow::before { background: var(--cream); }
.contact h2 { color: var(--cream); margin-bottom: 2.5rem; }
.contact h2 em { font-style: italic; }

.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

.contact-content > p {
  color: rgba(255, 240, 197, 0.8);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 480px;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--cream);
  color: var(--burgundy);
  padding: 1.2rem 2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 600;
  transition: all 0.35s var(--ease);
}

.contact-cta:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }

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

.contact-block {
  border-top: 1px solid rgba(255, 240, 197, 0.2);
  padding-top: 1.5rem;
}

.contact-block-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(255, 240, 197, 0.6);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.contact-block-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  font-weight: 400;
  line-height: 1.4;
}

.contact-block-value a { transition: opacity 0.3s; }
.contact-block-value a:hover { opacity: 0.7; }

.contact-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.contact-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 240, 197, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all 0.3s var(--ease);
}

.contact-socials a:hover {
  background: var(--cream);
  color: var(--burgundy);
  border-color: var(--cream);
}

.contact-socials svg {
  width: 17px;
  height: 17px;
}

.contact-bottom {
  max-width: var(--max-width);
  margin: 4rem auto 0;
  padding: 2rem var(--gutter) 0;
  border-top: 1px solid rgba(255, 240, 197, 0.12);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: rgba(255, 240, 197, 0.45);
  letter-spacing: 0.05em;
}

.contact-bottom a {
  color: rgba(255, 240, 197, 0.55);
  transition: color 0.3s;
}

.contact-bottom a:hover {
  color: var(--cream);
}

/* When contact-bottom is on a cream-background page (per-room pages),
   use dark text on cream instead of cream text on burgundy */
body.single-room-page .contact-bottom {
  color: rgba(68, 20, 22, 0.55);
  border-top-color: var(--line);
  margin-top: 5rem;
}

body.single-room-page .contact-bottom a {
  color: rgba(68, 20, 22, 0.7);
}

body.single-room-page .contact-bottom a:hover {
  color: var(--burgundy);
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--ink);
  color: var(--cream);
  padding: 4rem var(--gutter) 2rem;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 240, 197, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.footer-logo { height: 64px; margin-bottom: 0.5rem; }

.footer-about p {
  color: rgba(255, 240, 197, 0.6);
  font-size: 0.92rem;
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto;
}

.footer-about,
.footer-col {
  text-align: center;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255, 240, 197, 0.5);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.footer-col li { margin: 0; }

.footer-col a {
  color: rgba(255, 240, 197, 0.75);
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--cream); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  justify-content: center;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 240, 197, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--cream);
  color: var(--burgundy);
  border-color: var(--cream);
}

.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255, 240, 197, 0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes revealUp {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SINGLE-ROOM PAGE
   ============================================ */

.single-room {
  padding-top: 7rem;
}

.single-room-back {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 3rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: var(--burgundy);
  transition: gap 0.3s var(--ease);
}

.single-room-back:hover { gap: 1.1rem; }

.single-room-back svg {
  width: 22px;
  height: 16px;
  flex-shrink: 0;
}

.single-room-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.single-room-header .room-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--burgundy);
  opacity: 0.6;
  display: block;
  margin-bottom: 0.75rem;
}

.single-room-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 400;
  color: var(--burgundy);
  line-height: 1.05;
  margin: 0;
}
.single-room-title em { font-style: italic; }

.single-room-card-stacked {
  margin-bottom: 2.5rem;
}

.single-room-card-stacked .room-gallery {
  width: 100%;
  height: clamp(380px, 60vh, 640px);
  position: relative;
}

.single-room-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 5rem;
}

.btn-book-large {
  padding: 1.1rem 2.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
}

.single-room-explore {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
  margin-top: 1rem;
}

.single-room-explore .eyebrow {
  margin-bottom: 1.75rem;
  justify-content: center;
}

@media (max-width: 1024px) {
  .single-room { padding-top: 5.5rem; }
  .single-room-card-stacked .room-gallery { height: 56vh; min-height: 320px; }
}

/* ============================================
   COOKIE BANNER
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 20px 60px rgba(68, 20, 22, 0.15);
  z-index: 9999;
  transform: translateY(calc(100% + 2rem));
  opacity: 0;
  pointer-events: none;
  transition: transform 0.55s var(--ease), opacity 0.4s;
  font-family: var(--font-body);
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: center;
}

.cookie-banner-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--burgundy);
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.cookie-banner-text p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.55;
  font-weight: 300;
}

.cookie-banner-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-accept,
.cookie-decline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  padding: 0.7rem 1.4rem;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  border: 1px solid var(--burgundy);
}

.cookie-accept {
  background: var(--burgundy);
  color: var(--cream);
}

.cookie-accept:hover {
  background: var(--burgundy-light);
  border-color: var(--burgundy-light);
}

.cookie-decline {
  background: transparent;
  color: var(--burgundy);
}

.cookie-decline:hover {
  background: var(--burgundy);
  color: var(--cream);
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 1.25rem;
  }
  .cookie-banner-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .cookie-banner-buttons {
    flex-direction: row;
  }
  .cookie-accept, .cookie-decline {
    flex: 1;
    text-align: center;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-inner { grid-template-columns: 1fr; gap: 4rem; }
  .wellness-inner { grid-template-columns: 1fr; gap: 3rem; }
  .room-card { grid-template-columns: 1fr; gap: 2rem; }
  .room-card:nth-child(even) { direction: ltr; }
  .location-inner { grid-template-columns: 1fr; gap: 3rem; }
  .location-map { height: 460px; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav { padding: 1rem var(--gutter); }
  .nav-logo { height: 48px; }
  .nav.scrolled .nav-logo { height: 40px; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--paper);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    z-index: 99;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; }

  .hamburger { display: flex; }
  .nav-right .btn-book { display: none; }

  .hero { min-height: auto; padding-top: 8rem; padding-bottom: 5rem; }
  .hero-marquee { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-book, .hero-actions .btn-outline { width: 100%; justify-content: center; }

  .about-image-stack { height: 420px; }
  .about-single-stat strong { font-size: 2.4rem; }

  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .attractions li { grid-template-columns: 1fr; gap: 0.25rem; }
  .attractions .distance { font-size: 0.7rem; }
}
