/* =============================================
   MAJESTIC MIRAGE — BOUTIQUE HOTEL WEBSITE
   Color Palette:
   Pewter:    #e2e6e7
   Champagne: #e4d4c8
   Brown:     #d0b49f
   Black:     #201a1e
   ============================================= */

:root {
  --pewter: #e2e6e7;
  --champagne: #e4d4c8;
  --brown: #d0b49f;
  --ink: #201a1e;
  --ink-60: rgba(32,26,30,0.6);
  --ink-30: rgba(32,26,30,0.3);
  --ink-10: rgba(32,26,30,0.1);
  --white: #ffffff;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --transition: 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

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

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

body {
  background: var(--pewter);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: var(--font-body); }

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

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 48px;
  transition: var(--transition);
  gap: 16px;
}

.nav-left {
  flex-shrink: 0;
}

.nav-right {
  flex-shrink: 0;
}

.nav.scrolled .nav-inner,
.nav-inner.solid {
  background: var(--pewter);
  padding: 20px 48px;
  box-shadow: 0 1px 0 var(--ink-10);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.nav-logo .logo-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  color: currentColor;
  transition: var(--transition);
}

.nav-logo .logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.nav-logo .logo-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.95;
}

.nav-logo .logo-text small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 2px;
  font-weight: 300;
}

.nav.scrolled .nav-logo { color: var(--ink); }

.nav-center {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 1;
  min-width: 0;
}

.nav-center .nav-link {
  white-space: nowrap;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover { color: white; }
.nav-link.active { color: white; }

.nav.scrolled .nav-link { color: var(--ink-60); }
.nav.scrolled .nav-link:hover,
.nav.scrolled .nav-link.active { color: var(--ink); }

.btn-book {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 26px;
  border: 1px solid rgba(255,255,255,0.6);
  color: white;
  transition: var(--transition);
}

.btn-book:hover { background: white; color: var(--ink); }

.nav.scrolled .btn-book { border-color: var(--ink); color: var(--ink); }
.nav.scrolled .btn-book:hover { background: var(--ink); color: white; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: white;
  transition: var(--transition);
}

.nav.scrolled .nav-toggle span { background: var(--ink); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--pewter);
  padding: 24px 48px 32px;
  border-top: 1px solid var(--ink-10);
}

.nav-mobile a {
  font-size: 1.1rem;
  font-family: var(--font-display);
  padding: 12px 0;
  border-bottom: 1px solid var(--ink-10);
  color: var(--ink);
  transition: var(--transition);
}

.nav-mobile a:hover { padding-left: 8px; }

.nav-mobile .mobile-book {
  margin-top: 16px;
  display: inline-block;
  text-align: center;
  background: var(--ink);
  color: white;
  padding: 14px 32px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  border: none;
}

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

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(32,26,30,0.75) 0%, rgba(32,26,30,0.25) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 100px;
  max-width: 800px;
  animation: fadeUp 1.2s ease 0.3s both;
}

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

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 20px;

}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: white;
  margin-bottom: 20px;

}

.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--champagne);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */

.page-hero {
  position: relative;
  height: 70vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-top: 80px;
}

.page-hero img {
  position: absolute;
  inset: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(32,26,30,0.7) 0%, rgba(32,26,30,0.2) 60%, transparent 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px 80px;
  animation: fadeUp 1s ease 0.2s both;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  color: white;
  margin-bottom: 16px;
}

.page-hero-title em {
  font-style: italic;
  color: var(--champagne);
}

.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: white;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--brown);
  color: var(--ink);
}

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: white;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 1px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}

.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.1); }

.btn-outlined {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 1px solid var(--ink);
  transition: var(--transition);
}

.btn-outlined:hover { background: var(--ink); color: white; }

/* ============================================
   BOOKING BAR
   ============================================ */

.booking-bar {
  background: var(--ink);
  padding: 0;
  position: relative;
  z-index: 10;
}

.booking-inner {
  display: flex;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
}

.booking-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 32px;
  gap: 6px;
}

.booking-field label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 400;
}

.booking-field select,
.booking-field input {
  background: transparent;
  border: none;
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  cursor: pointer;
  outline: none;
  width: 100%;
}

.booking-field select option { background: var(--ink); color: white; }

.booking-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  margin: 16px 0;
}

.btn-book-now {
  background: var(--brown);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 48px;
  min-width: 180px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-book-now:hover { background: var(--champagne); }

/* ============================================
   SECTION HELPERS
   ============================================ */

.section-label {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 16px;
}

.section-label.light { color: var(--champagne); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--ink);
}

.section-title em { font-style: italic; }

.section-link {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink-30);
  padding-bottom: 2px;
  transition: var(--transition);
}

.section-link:hover { border-color: var(--ink); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 80px 80px 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-header.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 64px;
}

.section-subtitle {
  color: var(--ink-60);
  font-size: 2rem;
  max-width: 500px;
  margin-top: 12px;
}

/* ============================================
   INTRO SECTION
   ============================================ */

.intro-section {
  padding: 110px 80px;
  background: var(--champagne);
}

.intro-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.intro-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
  margin-top: 4px;
}

.intro-heading em { font-style: italic; }

.intro-body {
  font-size: 1.1rem;
  color: var(--ink-60);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
}

/* ============================================
   DESTINATIONS GRID
   ============================================ */

.destinations {
  background: var(--pewter);
  padding-bottom: 100px;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
  padding: 0 80px;
}

.dest-card {
  position: relative;
  overflow: hidden;
  display: block;
}

.dest-card img {
  height: 100%;
  min-height: 320px;
  transition: transform 0.7s ease;
}

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

.dest-large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.dest-large img { min-height: 660px; }

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(32,26,30,0.6) 0%, transparent 50%);
}

.dest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dest-city {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: white;
  line-height: 1;
}

.dest-neighbourhood {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne);
  opacity: 0.8;
}

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

.rooms-feature {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 0;
  padding: 110px 80px;
  background: var(--pewter);
}

.rooms-text {
  padding-right: 80px;
}

.rooms-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
  margin-top: 4px;
}

.rooms-heading em { font-style: italic; }

.rooms-body {
  font-size: 1rem;
  color: var(--ink-60);
  line-height: 1.8;
  margin-bottom: 36px;
}

.rooms-visual {
  position: relative;
  height: 600px;
}

.rooms-main-img {
  width: 88%;
  height: 100%;
  object-fit: cover;
}

.rooms-accent-img {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 42%;
  height: 260px;
  object-fit: cover;
  border: 6px solid var(--pewter);
}

/* ============================================
   ROOFTOP SECTION
   ============================================ */

.rooftop-section {
  position: relative;
  height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.rooftop-bg {
  position: absolute;
  inset: 0;
}

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

.rooftop-overlay {
  position: absolute;
  inset: 0;
  background: rgba(32,26,30,0.55);
}

.rooftop-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 680px;
}

.rooftop-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: white;
  margin-bottom: 20px;
  margin-top: 4px;
}

.rooftop-title em { font-style: italic; color: var(--champagne); }

.rooftop-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.8;
}

/* ============================================
   EXPERIENCE STRIP
   ============================================ */

.experience-strip {
  background: var(--ink);
  padding: 80px;
}

.strip-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 48px;
}

.strip-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.strip-item {
  position: relative;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.strip-item[data-num]::before {
  content: attr(data-num);
  position: absolute;
  top: -14px;
  left: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--brown);
  font-style: italic;
}

.strip-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: white;
  margin-bottom: 14px;
  line-height: 1.2;
}

.strip-item p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ============================================
   SPLIT SECTION
   ============================================ */

.split-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 600px;
}

.split-img {
  overflow: hidden;
}

.split-img img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.split-section:hover .split-img img { transform: scale(1.03); }

.split-content {
  background: var(--champagne);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}

.split-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 4px;
}

.split-heading em { font-style: italic; }

.split-body {
  font-size: 1rem;
  color: var(--ink-60);
  line-height: 1.8;
  margin-bottom: 36px;
}

/* ============================================
   OFFERS
   ============================================ */

.offers-section {
  background: var(--pewter);
  padding: 0 0 100px;
}

.offers-header {
  padding: 80px 80px 48px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 80px;
}

.offer-card {
  background: white;
  overflow: hidden;
}

.offer-card img {
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.offer-content {
  padding: 28px 32px 32px;
}

.offer-tag {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown);
  display: block;
  margin-bottom: 10px;
}

.offer-content h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.offer-content p {
  font-size: 0.9rem;
  color: var(--ink-60);
  line-height: 1.7;
  margin-bottom: 20px;
}

.offer-link {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink-30);
  padding-bottom: 2px;
  transition: var(--transition);
  display: inline-block;
}

.offer-link:hover { border-color: var(--ink); }

/* ============================================
   LOYALTY BANNER
   ============================================ */

.loyalty-banner {
  background: var(--brown);
  padding: 72px 80px;
}

.loyalty-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  flex-wrap: wrap;
}

.loyalty-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}

.loyalty-text p {
  font-size: 1rem;
  color: rgba(32,26,30,0.7);
  max-width: 560px;
  line-height: 1.7;
}

.loyalty-banner .btn-primary { background: var(--ink); }
.loyalty-banner .btn-primary:hover { background: white; color: var(--ink); }

/* ============================================
   JOURNAL
   ============================================ */

.journal-section {
  background: var(--pewter);
  padding-bottom: 100px;
}

.journal-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 80px 80px 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.journal-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  padding: 0 80px;
}

.journal-card {
  display: block;
  overflow: hidden;
  background: white;
  transition: var(--transition);
}

.journal-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px var(--ink-10); }

.journal-featured {
  grid-row: 1 / 3;
}

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

.journal-featured img { height: 480px; }
.journal-card:hover img { transform: scale(1.04); }

.journal-info {
  padding: 24px 28px 28px;
}

.journal-cat {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown);
  display: block;
  margin-bottom: 10px;
}

.journal-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 12px;
}

.journal-featured .journal-info h3 { font-size: 1.8rem; }

.journal-date {
  font-size: 0.72rem;
  color: var(--ink-60);
  letter-spacing: 0.08em;
}

/* ============================================
   VISUAL GRID
   ============================================ */

.visual-grid-section {
  background: var(--pewter);
  padding: 0 0 100px;
}

.visual-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
  text-align: center;
  padding: 0 0 32px;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  padding: 0 80px;
}

.vg-item {
  overflow: hidden;
  aspect-ratio: 1;
}

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

.vg-item:hover img { transform: scale(1.08); }

/* ============================================
   HOTEL LISTINGS (Hotels page)
   ============================================ */

.hotel-listings {
  background: var(--pewter);
  padding: 80px 0 100px;
}

.hotel-entry {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
  border-top: 1px solid var(--ink-10);
}

.hotel-entry.reversed {
  grid-template-columns: 1fr 1.1fr;
}

.hotel-entry.reversed .hotel-entry-img { order: 2; }
.hotel-entry.reversed .hotel-entry-info { order: 1; }

.hotel-entry-img {
  overflow: hidden;
  height: 560px;
}

.hotel-entry-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.hotel-entry:hover .hotel-entry-img img { transform: scale(1.04); }

.hotel-entry-info {
  padding: 60px 80px;
  background: var(--champagne);
}

.hotel-entry.reversed .hotel-entry-info { background: white; }

.hotel-city-tag {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
}

.hotel-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 3.5vw, 3rem);
  font-weight: 300;
  margin-bottom: 6px;
}

.hotel-neighbourhood {
  font-size: 0.82rem;
  color: var(--ink-60);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  font-style: italic;
}

.hotel-desc {
  font-size: 0.98rem;
  color: var(--ink-60);
  line-height: 1.8;
  margin-bottom: 28px;
}

.hotel-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hotel-features span {
  font-size: 0.69rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--brown);
  color: black;
}

.hotel-entry-actions {
  display: flex;
  gap: 16px;
}

/* ============================================
   ROOM TYPES
   ============================================ */

.room-types-section {
  background: var(--pewter);
  padding-bottom: 100px;
}

.room-types-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0 80px;
}

.room-type-card {
  background: white;
  overflow: hidden;
}

.room-type-card img {
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.room-type-info {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.room-type-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
}

.room-type-size {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown);
}

.room-type-info p {
  font-size: 0.88rem;
  color: var(--ink-60);
  line-height: 1.7;
  margin: 4px 0;
}

.room-price {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  margin-top: 4px;
}

/* ============================================
   DINING PAGE
   ============================================ */

.dining-listings {
  background: var(--pewter);
  padding: 80px 0 100px;
}

.dining-feature {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  margin-bottom: 80px;
}

.dining-feature-img {
  height: 620px;
  overflow: hidden;
}

.dining-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.dining-feature:hover .dining-feature-img img { transform: scale(1.04); }

.dining-feature-text {
  background: var(--champagne);
  padding: 60px 72px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dining-location-tag {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  display: block;
  margin-bottom: 12px;
}

.dining-restaurant-name {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 6px;
}

.dining-type {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--ink-60);
  margin-bottom: 20px;
  font-style: italic;
}

.dining-desc {
  font-size: 0.98rem;
  color: var(--ink-60);
  line-height: 1.8;
  margin-bottom: 24px;
}

.dining-hours {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.dining-hours span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-60);
  padding: 6px 12px;
  border: 1px solid var(--ink-20, rgba(32,26,30,0.2));
}

.dining-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0 80px;
}

.dining-card {
  background: white;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
}

.dining-card img {
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.dining-card-info {
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dining-card-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
}

.dining-card-info p {
  font-size: 0.88rem;
  color: var(--ink-60);
  line-height: 1.7;
  flex: 1;
}

/* ============================================
   PRIVATE DINING SPLIT
   ============================================ */

.private-dining {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  margin-top: 80px;
}

.private-dining-img {
  overflow: hidden;
}

.private-dining-img img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.private-dining-text {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}

.private-dining-text .section-label { color: var(--brown); }

.private-dining-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: white;
  margin: 4px 0 20px;
}

.private-dining-heading em { font-style: italic; color: var(--champagne); }

.private-dining-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 36px;
}

.private-dining-text .btn-outlined {
  color: white;
  border-color: rgba(255,255,255,0.5);
  align-self: flex-start;
}

.private-dining-text .btn-outlined:hover { background: white; color: var(--ink); }

/* ============================================
   EXPERIENCES PAGE
   ============================================ */

.exp-grid-section {
  background: var(--pewter);
  padding: 80px 80px 100px;
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.exp-category-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--ink-10);
}

.exp-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.exp-card {
  background: white;
  overflow: hidden;
}

.exp-card img {
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.exp-card-body {
  padding: 28px 32px 36px;
}

.exp-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.exp-card-body p {
  font-size: 0.95rem;
  color: var(--ink-60);
  line-height: 1.75;
  margin-bottom: 20px;
}

.exp-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.exp-meta span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: var(--pewter);
  color: var(--ink-60);
}

/* ============================================
   EVENTS
   ============================================ */

.events-section {
  background: var(--champagne);
  padding: 0 0 80px;
}

.events-list {
  padding: 0 80px;
}

.event-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--ink-10);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.event-day {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
}

.event-month {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown);
  margin-top: 4px;
}

.event-location {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown);
  display: block;
  margin-bottom: 8px;
}

.event-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.event-info p {
  font-size: 0.9rem;
  color: var(--ink-60);
  line-height: 1.6;
  max-width: 580px;
}

.event-link {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--ink);
  color: var(--ink);
  white-space: nowrap;
  transition: var(--transition);
}

.event-link:hover { background: var(--ink); color: white; }

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

.manifesto-section {
  background: var(--ink);
  padding: 100px 80px;
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: white;
  line-height: 1.4;
  display: block;
  margin-bottom: 28px;
}

.manifesto-attr {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
}

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  padding: 100px 80px;
  background: var(--champagne);
}

.story-text {
  padding-right: 80px;
}

.story-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  margin: 4px 0 24px;
}

.story-heading em { font-style: italic; }

.story-text p {
  font-size: 0.98rem;
  color: var(--ink-60);
  line-height: 1.8;
  margin-bottom: 18px;
}

.story-visual {
  height: 520px;
  overflow: hidden;
}

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

.values-section {
  background: var(--pewter);
  padding-bottom: 100px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ink-10);
  padding: 0 80px;
}

.value-item {
  background: var(--pewter);
  padding: 48px 40px;
  position: relative;
}

.value-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--black);
  display: block;
  margin-bottom: 16px;
  font-style: italic;
}

.value-item h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 14px;
}

.value-item p {
  font-size: 0.98rem;
  color: var(--black);
  line-height: 1.75;
}

.friends-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  background: var(--pewter);
}

.friends-img {
  overflow: hidden;
}

.friends-img img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.friends-text {
  background: var(--brown);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
}

.friends-text .section-label { color: var(--ink); opacity: 0.6; }

.friends-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
  margin: 4px 0 20px;
}

.friends-heading em { font-style: italic; }

.friends-text p {
  font-size: 0.98rem;
  color: rgba(32,26,30,0.7);
  line-height: 1.8;
  margin-bottom: 14px;
}

.friends-text .btn-primary { margin-top: 20px; align-self: flex-start; }

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

.footer {
  background: var(--ink);
  color: white;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: 80px 80px 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.footer-logo .logo-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  color: var(--brown);
}

.footer-logo .logo-mark svg { width: 100%; height: 100%; display: block; }

.footer-logo .logo-text { display: inline-flex; flex-direction: column; line-height: 0.95; }

.footer-logo .logo-text small {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-top: 3px;
  font-weight: 300;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-size: 0.79rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-col a {
  display: block;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: var(--transition);
}

.footer-col a:hover { color: white; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 80px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom span {
  font-size: 0.89rem;
  color: rgba(255,255,255,0.35);
}

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

.footer-legal a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}

.footer-legal a:hover { color: white; }

/* ============================================
   ANIMATIONS & SCROLL REVEALS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1200px) {
  .strip-items { grid-template-columns: repeat(2, 1fr); }
  .room-types-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  html { font-size: 16px; }

  .nav-center, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile.open { display: flex; }

  .nav-inner { padding: 20px 28px; }

  .hero-content,
  .page-hero-content { padding: 0 28px 60px; }

  .hero-scroll { display: none; }

  .booking-inner {
    flex-direction: column;
    padding: 0;
  }

  .booking-field { padding: 16px 28px; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .booking-divider { display: none; }
  .btn-book-now { padding: 20px 28px; }

  .intro-section { padding: 72px 28px; }
  .section-header { padding: 60px 28px 36px; }

  .dest-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 28px;
  }

  .dest-large { grid-column: 1 / 3; }
  .dest-large img { min-height: 380px; }

  .rooms-feature {
    grid-template-columns: 1fr;
    padding: 72px 28px;
    gap: 48px;
  }

  .rooms-text { padding-right: 0; }
  .rooms-visual { height: 400px; }
  .rooms-accent-img { display: none; }

  .rooftop-section { height: auto; padding: 100px 28px; }
  .rooftop-content { padding: 0; }

  .experience-strip { padding: 60px 28px; }
  .strip-items { grid-template-columns: 1fr 1fr; gap: 28px; }

  .split-section { grid-template-columns: 1fr; }
  .split-content { padding: 48px 28px; }

  .offers-grid {
    grid-template-columns: 1fr;
    padding: 0 28px;
  }

  .offers-header { padding: 60px 28px 36px; }

  .loyalty-banner { padding: 60px 28px; }
  .loyalty-inner { flex-direction: column; align-items: flex-start; }

  .journal-header { padding: 60px 28px 36px; }
  .journal-grid {
    grid-template-columns: 1fr;
    padding: 0 28px;
  }

  .journal-featured { grid-row: auto; }
  .journal-featured img { height: 320px; }

  .visual-grid { grid-template-columns: repeat(3, 1fr); padding: 0 28px; }

  .hotel-listings { padding: 48px 0 80px; }
  .hotel-entry { grid-template-columns: 1fr; }
  .hotel-entry.reversed .hotel-entry-img { order: 0; }
  .hotel-entry.reversed .hotel-entry-info { order: 0; }
  .hotel-entry-img { height: 320px; }
  .hotel-entry-info { padding: 40px 28px; }

  .room-types-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 28px;
  }

  .dining-feature { grid-template-columns: 1fr; }
  .dining-feature-img { height: 360px; }
  .dining-feature-text { padding: 40px 28px; height: auto; }
  .dining-grid { grid-template-columns: 1fr; padding: 0 28px; }
  .dining-card { grid-template-columns: 1fr; }
  .dining-card img { min-height: 220px; height: 220px; }

  .private-dining { grid-template-columns: 1fr; }
  .private-dining-text { padding: 48px 28px; }

  .exp-grid-section { padding: 60px 28px 80px; }
  .exp-cards { grid-template-columns: 1fr; }

  .events-list { padding: 0 28px; }
  .event-item { grid-template-columns: 60px 1fr; gap: 24px; }
  .event-link { display: none; }

  .manifesto-section { padding: 72px 28px; }

  .story-section {
    grid-template-columns: 1fr;
    padding: 72px 28px;
    gap: 40px;
  }

  .story-text { padding-right: 0; }
  .story-visual { height: 360px; }

  .values-section { padding-bottom: 72px; }
  .values-grid { grid-template-columns: 1fr; padding: 0 28px; }

  .friends-section { grid-template-columns: 1fr; }
  .friends-img { height: 360px; }
  .friends-text { padding: 48px 28px; }

  .footer-top { grid-template-columns: 1fr; padding: 60px 28px 48px; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-bottom { padding: 20px 28px; flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 560px) {
  .hero-actions { flex-direction: column; }
  .strip-items { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .dest-large { grid-column: 1; }
  .room-types-grid { grid-template-columns: 1fr; }
  .visual-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: 1fr; }
}

/* ============================================
   FAQ SECTION (home page)
   ============================================ */

.faq-section {
  padding: 140px 80px 160px;
  background: var(--pewter);
  position: relative;
}

.faq-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

.faq-heading-block { position: sticky; top: 140px; }

.faq-heading-block .section-label { margin-bottom: 24px; }

.faq-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--ink);
}

.faq-title em { font-style: italic; color: var(--brown); }

.faq-intro {
  font-size: 1rem;
  color: var(--ink-60);
  line-height: 1.75;
  max-width: 340px;
}

.faq-list { display: flex; flex-direction: column; }

.faq-item {
  border-top: 1px solid var(--ink-10);
  padding: 0;
}

.faq-item:last-child { border-bottom: 1px solid var(--ink-10); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.005em;
  color: var(--ink);
  cursor: pointer;
  transition: var(--transition);
}

.faq-q:hover { color: var(--brown); }

.faq-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--ink-30);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--transition);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--ink);
  transition: var(--transition);
}

.faq-icon::before { width: 10px; height: 1px; }
.faq-icon::after { width: 1px; height: 10px; }

.faq-item.open .faq-icon { background: var(--ink); border-color: var(--ink); }
.faq-item.open .faq-icon::before { background: white; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), padding 0.4s ease;
}

.faq-item.open .faq-a {
  max-height: 480px;
  padding-bottom: 28px;
}

.faq-a p {
  font-size: 0.95rem;
  color: var(--ink-60);
  line-height: 1.8;
  max-width: 620px;
}

.faq-a p + p { margin-top: 12px; }

.faq-cta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.faq-cta span {
  font-size: 0.95rem;
  color: var(--ink-60);
}

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

.contact-section {
  padding: 140px 80px 140px;
  background: var(--pewter);
}

.contact-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 100px;
  align-items: start;
}

.contact-heading-col .section-label { margin-bottom: 24px; }

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--ink);
}

.contact-title em { font-style: italic; color: var(--brown); }

.contact-lede {
  font-size: 1.05rem;
  color: var(--ink-60);
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 380px;
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-top: 1px solid var(--ink-10);
  padding-top: 36px;
}

.contact-direct-item label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 10px;
  font-weight: 400;
}

.contact-direct-item p,
.contact-direct-item a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: 0.005em;
  display: block;
}

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

.contact-form-wrap {
  background: white;
  padding: 64px 56px;
  border-radius: 4px;
  box-shadow: 0 30px 80px -40px rgba(32,26,30,0.18);
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.contact-form-sub {
  font-size: 0.92rem;
  color: var(--ink-60);
  margin-bottom: 36px;
}

.contact-form { display: grid; gap: 22px; }

.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

.contact-field { display: flex; flex-direction: column; }

.contact-field label {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-60);
  margin-bottom: 8px;
  font-weight: 400;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink-30);
  padding: 10px 0 12px;
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.contact-field textarea {
  min-height: 110px;
  resize: vertical;
  line-height: 1.6;
}

.contact-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23201a1e' opacity='.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 22px;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus { border-bottom-color: var(--ink); }

.contact-submit {
  margin-top: 16px;
  justify-self: start;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 16px 38px;
  background: var(--ink);
  color: white;
  transition: var(--transition);
  border: 1px solid var(--ink);
  cursor: pointer;
}

.contact-submit:hover { background: var(--brown); border-color: var(--brown); color: var(--ink); }

.contact-locations {
  padding: 120px 80px;
  background: white;
}

.contact-locations-grid {
  max-width: 1240px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px;
}

.contact-loc {
  border-top: 1px solid var(--ink-10);
  padding-top: 24px;
}

.contact-loc h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 14px;
}

.contact-loc p,
.contact-loc a {
  font-size: 0.88rem;
  color: var(--ink-60);
  line-height: 1.7;
  display: block;
}

.contact-loc a:hover { color: var(--ink); }

.contact-loc .loc-line { margin-bottom: 10px; }

/* ============================================
   WHY-STAY (BENEFITS) PAGE
   ============================================ */

.benefits-intro {
  padding: 140px 80px 80px;
  text-align: center;
  background: var(--pewter);
}

.benefits-intro-inner { max-width: 760px; margin: 0 auto; }

.benefits-intro .section-label { margin-bottom: 28px; }

.benefits-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.benefits-heading em { font-style: italic; color: var(--brown); }

.benefits-intro p {
  font-size: 1.05rem;
  color: var(--ink-60);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

.benefits-grid-section { padding: 60px 80px 120px; background: var(--pewter); }

.benefits-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ink-10);
  border: 1px solid var(--ink-10);
}

.benefit-card {
  background: var(--pewter);
  padding: 56px 48px;
  transition: var(--transition);
  position: relative;
}

.benefit-card:hover { background: white; }

.benefit-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--brown);
  display: block;
  margin-bottom: 20px;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin-bottom: 18px;
  line-height: 1.15;
}

.benefit-card p {
  font-size: 0.95rem;
  color: var(--ink-60);
  line-height: 1.8;
}

.direct-banner {
  padding: 120px 80px;
  background: var(--ink);
  color: white;
  text-align: center;
}

.direct-inner { max-width: 720px; margin: 0 auto; }

.direct-banner .section-label { color: var(--brown); margin-bottom: 24px; }

.direct-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.1;
}

.direct-banner h2 em { font-style: italic; color: var(--brown); }

.direct-banner p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
  line-height: 1.7;
}

.direct-perks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  text-align: left;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 56px;
}

.direct-perk small {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown);
  display: block;
  margin-bottom: 14px;
}

.direct-perk h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.direct-perk p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.6;
}

/* ============================================
   MEETINGS & EVENTS PAGE
   ============================================ */

.meetings-intro {
  padding: 140px 80px 100px;
  background: var(--pewter);
}

.meetings-intro-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.meetings-text .section-label { margin-bottom: 24px; }

.meetings-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.meetings-heading em { font-style: italic; color: var(--brown); }

.meetings-text p {
  font-size: 1rem;
  color: var(--ink-60);
  line-height: 1.8;
  margin-bottom: 16px;
}

.meetings-visual {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}

.spaces-section { padding: 120px 80px; background: white; }

.spaces-grid {
  max-width: 1240px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.space-card { display: flex; flex-direction: column; }

.space-card .space-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 20px;
}

.space-card .space-img img { transition: transform 0.7s ease; }

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

.space-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 12px;
}

.space-meta span:nth-child(2)::before {
  content: '·';
  margin-right: 12px;
  color: var(--ink-30);
}

.space-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}

.space-card p {
  font-size: 0.92rem;
  color: var(--ink-60);
  line-height: 1.7;
  margin-bottom: 18px;
}

.space-capacity {
  display: flex;
  gap: 28px;
  padding-top: 14px;
  border-top: 1px solid var(--ink-10);
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--ink);
}

.space-capacity strong { font-weight: 400; color: var(--brown); margin-right: 6px; }

.event-types-section {
  padding: 120px 80px;
  background: var(--pewter);
}

.event-types-grid {
  max-width: 1100px;
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 72px;
}

.event-type {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.event-type-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--brown);
  line-height: 1;
  flex: 0 0 auto;
}

.event-type h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.005em;
}

.event-type p {
  font-size: 0.95rem;
  color: var(--ink-60);
  line-height: 1.75;
}

.meetings-cta {
  padding: 140px 80px;
  background: white;
  text-align: center;
}

.meetings-cta-inner { max-width: 680px; margin: 0 auto; }

.meetings-cta .section-label { margin-bottom: 28px; }

.meetings-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.1;
}

.meetings-cta h2 em { font-style: italic; color: var(--brown); }

.meetings-cta p {
  font-size: 1.02rem;
  color: var(--ink-60);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ============================================
   RESPONSIVE FOR NEW SECTIONS
   ============================================ */

@media (max-width: 1100px) {
  .faq-inner { grid-template-columns: 1fr; gap: 56px; }
  .faq-heading-block { position: static; }
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
  .meetings-intro-inner { grid-template-columns: 1fr; gap: 56px; }
  .spaces-grid { grid-template-columns: repeat(2, 1fr); }
  .direct-perks { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

@media (max-width: 900px) {
  .nav-logo { font-size: 1.25rem; }
  .nav-logo .logo-mark { width: 28px; height: 28px; flex-basis: 28px; }
  .nav-logo .logo-text small { font-size: 0.48rem; letter-spacing: 0.28em; }
}

@media (max-width: 760px) {
  .faq-section { padding: 90px 24px 110px; }
  .contact-section { padding: 100px 24px 90px; }
  .contact-locations { padding: 80px 24px; }
  .contact-form-wrap { padding: 36px 24px; }
  .contact-row { grid-template-columns: 1fr; }
  .benefits-intro { padding: 110px 24px 60px; }
  .benefits-grid-section { padding: 40px 24px 90px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .meetings-intro { padding: 110px 24px 70px; }
  .spaces-section { padding: 80px 24px; }
  .spaces-grid { grid-template-columns: 1fr; gap: 48px; }
  .event-types-section { padding: 80px 24px; }
  .event-types-grid { grid-template-columns: 1fr; gap: 40px; }
  .meetings-cta { padding: 90px 24px; }
  .direct-banner { padding: 80px 24px; }
  .direct-perks { grid-template-columns: 1fr; padding-top: 40px; margin-top: 40px; }
  .contact-form-wrap { box-shadow: 0 12px 32px -16px rgba(32,26,30,0.15); }
  .faq-q { font-size: 1.1rem; padding: 20px 0; }
}

/* ============================================
   ENQUIRY SUCCESS MODAL
   ============================================ */
.enquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.enquiry-modal.is-open {
  display: flex;
  animation: enquiryFadeIn 0.25s ease both;
}
.enquiry-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(32, 26, 30, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  cursor: pointer;
}
.enquiry-modal-card {
  position: relative;
  background: white;
  border-radius: 4px;
  padding: 56px 48px 44px;
  width: 100%;
  max-width: 440px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(32, 26, 30, 0.25);
  animation: enquiryRise 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.enquiry-tick {
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
}
.enquiry-tick svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}
.enquiry-tick-circle {
  fill: #2faa6b;
  stroke: #2faa6b;
  stroke-width: 2;
  transform-origin: 50% 50%;
  animation: enquiryPop 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) 0.05s both;
}
.enquiry-tick-check {
  fill: none;
  stroke: white;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: enquiryDraw 0.45s ease-out 0.35s forwards;
}
.enquiry-modal-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.enquiry-modal-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-60);
  margin: 0 0 28px;
  line-height: 1.5;
}
.enquiry-modal-close {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.enquiry-modal-close:hover {
  background: var(--brown);
  border-color: var(--brown);
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(208, 180, 159, 0.35);
}
.enquiry-modal-close:active {
  transform: translateY(0);
}

@keyframes enquiryFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes enquiryRise {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes enquiryPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); }
}
@keyframes enquiryDraw {
  to { stroke-dashoffset: 0; }
}

@media (max-width: 600px) {
  .enquiry-modal-card { padding: 44px 28px 32px; }
  .enquiry-modal-title { font-size: 1.7rem; }
  .enquiry-tick { width: 72px; height: 72px; }
}

/* ============================================
   LANGUAGE TOGGLE
   ============================================ */

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color var(--transition);
}

.nav.scrolled .lang-toggle,
.nav-inner.solid .lang-toggle {
  border-color: var(--ink-30);
}

.lang-toggle button {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  color: rgba(255,255,255,0.65);
  background: transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  line-height: 1;
}

.nav.scrolled .lang-toggle button,
.nav-inner.solid .lang-toggle button {
  color: var(--ink-60);
}

.lang-toggle button.active {
  background: rgba(255,255,255,0.22);
  color: #fff;
}

.nav.scrolled .lang-toggle button.active,
.nav-inner.solid .lang-toggle button.active {
  background: var(--ink);
  color: var(--pewter);
}

.lang-toggle button:hover:not(.active) {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.nav.scrolled .lang-toggle button:hover:not(.active),
.nav-inner.solid .lang-toggle button:hover:not(.active) {
  background: var(--ink-10);
  color: var(--ink);
}

.lang-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.nav.scrolled .lang-divider,
.nav-inner.solid .lang-divider {
  background: var(--ink-30);
}

/* Mobile nav lang toggle */
.nav-mobile .lang-toggle {
  margin: 8px 0 0 0;
  border-color: var(--ink-30);
  align-self: flex-start;
}
.nav-mobile .lang-toggle button {
  color: var(--ink-60);
}
.nav-mobile .lang-toggle button.active {
  background: var(--ink);
  color: var(--pewter);
}
.nav-mobile .lang-toggle button:hover:not(.active) {
  background: var(--ink-10);
  color: var(--ink);
}
.nav-mobile .lang-divider {
  background: var(--ink-30);
}
