/* ========================================
   CSS VARIABLES & RESET
   ======================================== */
:root {
  --deep-terracotta: #8B3A2F;
  --warm-terracotta: #B85C38;
  --soft-salmon: #D4857F;
  --warm-cream: #F5E6D3;
  --natural-oak: #C4956A;
  --red-marble: #A0422E;
  --olive-green: #8B9A6B;
  --signal-red: #C24B3B;
  --ivory: #FAF6F0;
  --terrazzo: #F0E0D0;
  --dark-text: #2C1810;
  --body-text: #4A3228;
  --light-text: #8A7068;

  --font-display: 'DM Serif Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;

  --section-pad: clamp(80px, 12vw, 160px);
  --side-pad: clamp(20px, 5vw, 80px);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--ivory);
  overflow-x: hidden;
}

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

/* ========================================
   UTILITY & ANIMATION
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.23, 1, 0.32, 1), transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

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

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s;
}

.nav.scrolled {
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(20px);
  padding: 14px var(--side-pad);
  box-shadow: 0 1px 0 rgba(139, 58, 47, 0.08);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
}

.nav-logo-img {
  height: 40px; width: auto;
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
}
.nav.scrolled .nav-logo-img { filter: none; }

.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-links { display: flex; gap: 28px; list-style: none; }

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(250, 246, 240, 0.85);
  transition: color 0.3s;
  text-transform: uppercase;
}

.nav.scrolled .nav-links a { color: var(--body-text); }
.nav-links a:hover { color: var(--warm-terracotta); }

.lang-switcher {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 3px;
  transition: background 0.4s;
}

.nav.scrolled .lang-switcher { background: rgba(184, 92, 56, 0.08); }

.lang-btn {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 16px;
  color: rgba(250, 246, 240, 0.7);
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.nav.scrolled .lang-btn { color: var(--light-text); }
.lang-btn.active { background: var(--warm-terracotta); color: var(--ivory) !important; }

.nav-book-btn {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1.5px solid rgba(250,246,240,0.5);
  border-radius: 0;
  color: var(--ivory);
  transition: all 0.35s;
}

.nav.scrolled .nav-book-btn { border-color: var(--warm-terracotta); color: var(--warm-terracotta); }
.nav-book-btn:hover { background: var(--warm-terracotta); border-color: var(--warm-terracotta); color: var(--ivory) !important; }

/* Mobile menu */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ivory); transition: all 0.3s; }
.nav.scrolled .nav-toggle span { background: var(--deep-terracotta); }

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--deep-terracotta);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 120% 80% at 30% 70%, rgba(184,92,56,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 100% 100% at 80% 20%, rgba(160,66,46,0.4) 0%, transparent 50%),
    linear-gradient(175deg, #6B2A22 0%, #8B3A2F 30%, #A0422E 60%, #8B3A2F 100%);
}

.hero-arches {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='160' viewBox='0 0 120 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 160 L60 60 C60 26.86 86.86 0 120 0 L120 160z' fill='none' stroke='%23FAF6F0' stroke-width='1'/%3E%3Cpath d='M60 160 L60 60 C60 26.86 33.14 0 0 0 L0 160z' fill='none' stroke='%23FAF6F0' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 120px 160px;
}

.hero-arch-frame {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80vw);
  height: 80px;
  background: var(--ivory);
  border-radius: 300px 300px 0 0;
  z-index: 2;
}

.hero-content { position: relative; z-index: 3; text-align: center; padding: 0 var(--side-pad); margin-top: -40px; }

.hero-logo {
  max-width: min(500px, 70vw); height: auto; margin: 0 auto 32px; display: block;
  opacity: 0; animation: logoIn 1.2s 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.1));
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 110px);
  color: var(--ivory); line-height: 0.95; margin-bottom: 8px;
  opacity: 0; animation: titleIn 1.2s 0.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

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

.hero-subtitle-line {
  font-family: var(--font-body); font-size: clamp(10px, 1.4vw, 14px);
  letter-spacing: clamp(6px, 1.2vw, 14px); text-transform: uppercase;
  color: rgba(250, 246, 240, 0.6); font-weight: 500; margin-bottom: 48px;
  opacity: 0; animation: titleIn 1.2s 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-tagline {
  font-family: var(--font-accent); font-size: clamp(18px, 2.5vw, 28px);
  font-style: italic; color: var(--soft-salmon); font-weight: 400; margin-bottom: 48px;
  opacity: 0; animation: titleIn 1.2s 0.7s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--ivory); border: 1.5px solid rgba(250, 246, 240, 0.4); padding: 16px 40px;
  transition: all 0.4s; opacity: 0; animation: titleIn 1s 0.9s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-cta:hover { background: var(--ivory); color: var(--deep-terracotta); border-color: var(--ivory); }

.hero-scroll {
  position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: titleIn 1s 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero-scroll span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: rgba(250, 246, 240, 0.4); font-weight: 500; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(250, 246, 240, 0.4), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ========================================
   INTRO / ABOUT
   ======================================== */
.intro { padding: var(--section-pad) var(--side-pad); text-align: center; max-width: 900px; margin: 0 auto; }

.section-eyebrow {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--warm-terracotta); font-weight: 600; margin-bottom: 24px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
}
.section-eyebrow::before, .section-eyebrow::after { content: ''; width: 30px; height: 1px; background: var(--warm-terracotta); opacity: 0.4; }

.section-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 56px); color: var(--dark-text); line-height: 1.15; margin-bottom: 32px; }

.intro-text { font-family: var(--font-accent); font-size: clamp(18px, 2.2vw, 24px); line-height: 1.7; color: var(--body-text); font-weight: 400; }

.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px; border-top: 1px solid rgba(184, 92, 56, 0.15); border-bottom: 1px solid rgba(184, 92, 56, 0.15); }
.stat-item { padding: 32px 16px; text-align: center; border-right: 1px solid rgba(184, 92, 56, 0.1); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: clamp(28px, 4vw, 42px); color: var(--warm-terracotta); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--light-text); font-weight: 500; }

/* ========================================
   ROOMS SECTION
   ======================================== */
.rooms { padding: var(--section-pad) 0; background: var(--warm-cream); position: relative; }
.rooms-header { text-align: center; padding: 0 var(--side-pad); margin-bottom: 64px; }
.rooms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; padding: 0 var(--side-pad); }

.room-card { position: relative; background: var(--ivory); overflow: hidden; cursor: pointer; }
.room-visual { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.room-visual-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1); }
.room-card:hover .room-visual-bg { transform: scale(1.05); }
.room-visual-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 24px; background: linear-gradient(to top, rgba(44, 24, 16, 0.7) 0%, transparent 100%); display: flex; align-items: flex-end; justify-content: space-between; }
.room-visual-overlay .room-size { font-family: var(--font-body); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.9); font-weight: 600; }


.room-info { padding: 28px 28px 32px; }
.room-type { font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 26px); color: var(--dark-text); margin-bottom: 6px; }
.room-best-for { font-size: 12px; color: var(--warm-terracotta); font-weight: 500; letter-spacing: 0.5px; margin-bottom: 16px; }
.room-features { display: flex; flex-wrap: wrap; gap: 8px; }
.room-feature-tag { font-size: 11px; padding: 5px 12px; background: var(--warm-cream); border-radius: 2px; color: var(--body-text); font-weight: 500; letter-spacing: 0.3px; }
.room-card:hover .room-feature-tag { background: rgba(184, 92, 56, 0.08); }

/* ========================================
   DESIGN SIGNATURES
   ======================================== */
.signatures { padding: var(--section-pad) var(--side-pad); background: var(--deep-terracotta); color: var(--ivory); position: relative; overflow: hidden; }
.signatures::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(184,92,56,0.3) 0%, transparent 70%); }
.signatures .section-eyebrow { color: var(--soft-salmon); }
.signatures .section-eyebrow::before, .signatures .section-eyebrow::after { background: var(--soft-salmon); }
.signatures .section-title { color: var(--ivory); }

.sig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 64px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.sig-item { text-align: center; padding: 40px 24px; border: 1px solid rgba(250, 246, 240, 0.1); border-radius: 0; transition: border-color 0.4s; position: relative; }
.sig-item:hover { border-color: rgba(250, 246, 240, 0.25); }
.sig-icon { font-size: 40px; margin-bottom: 20px; display: block; }
.sig-name { font-family: var(--font-display); font-size: 20px; margin-bottom: 12px; color: var(--warm-cream); }
.sig-desc { font-size: 14px; line-height: 1.6; color: rgba(250, 246, 240, 0.6); font-weight: 300; }

/* ========================================
   FACILITIES
   ======================================== */
.facilities { padding: var(--section-pad) var(--side-pad); background: var(--ivory); }
.facilities-header { text-align: center; margin-bottom: 64px; }
.fac-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.fac-card { padding: 36px 28px; background: var(--warm-cream); border-left: 3px solid var(--warm-terracotta); transition: transform 0.3s, box-shadow 0.3s; }
.fac-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(139, 58, 47, 0.08); }
.fac-icon { font-size: 28px; margin-bottom: 16px; }
.fac-name { font-family: var(--font-display); font-size: 18px; color: var(--dark-text); margin-bottom: 8px; }
.fac-desc { font-size: 14px; line-height: 1.6; color: var(--light-text); font-weight: 300; }

/* ========================================
   LOCATION
   ======================================== */
.location { padding: var(--section-pad) 0; background: var(--warm-cream); }
.location-header { text-align: center; padding: 0 var(--side-pad); margin-bottom: 48px; }
.location-content { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 1400px; margin: 0 auto; overflow: hidden; }
.location-map { aspect-ratio: 1; min-height: 450px; background: var(--terrazzo); }
.location-map iframe { width: 100%; height: 100%; border: none; filter: saturate(0.7) contrast(1.1); }
.location-details { padding: clamp(32px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; background: var(--deep-terracotta); color: var(--ivory); }
.location-address { font-family: var(--font-accent); font-size: clamp(22px, 3vw, 32px); line-height: 1.4; margin-bottom: 40px; font-weight: 400; }
.nearby-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.nearby-item { display: flex; align-items: center; gap: 16px; font-size: 15px; font-weight: 300; color: rgba(250, 246, 240, 0.8); }
.nearby-item .distance { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 1px; background: rgba(250, 246, 240, 0.12); padding: 4px 12px; border-radius: 2px; min-width: 70px; text-align: center; color: var(--soft-salmon); }

/* ========================================
   BLOG: BANGKOK SPARKS
   ======================================== */
.blog { padding: var(--section-pad) var(--side-pad); background: var(--ivory); }
.blog-header { text-align: center; margin-bottom: 64px; }
.blog-title-styled { position: relative; display: inline-block; }
.spark-dot { color: var(--signal-red); font-size: 1.2em; }
.blog-subtitle { font-family: var(--font-accent); font-size: clamp(16px, 2vw, 20px); color: var(--light-text); font-style: italic; margin-top: 12px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1200px; margin: 0 auto; }
.blog-card { background: var(--warm-cream); overflow: hidden; transition: transform 0.4s, box-shadow 0.4s; cursor: pointer; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(139, 58, 47, 0.12); }
.blog-card-image { aspect-ratio: 16/9; position: relative; display: flex; align-items: flex-end; padding: 16px; }
.blog-card-category { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: var(--ivory); background: rgba(0,0,0,0.25); backdrop-filter: blur(8px); padding: 5px 14px; border-radius: 2px; }
.blog-card-content { padding: 24px; }
.blog-card-title { font-family: var(--font-display); font-size: clamp(17px, 2vw, 20px); color: var(--dark-text); line-height: 1.35; margin-bottom: 12px; }
.blog-card-title a { color: inherit; transition: color 0.3s; }
.blog-card-title a:hover { color: var(--warm-terracotta); }
.blog-card-excerpt { font-size: 14px; line-height: 1.6; color: var(--light-text); font-weight: 300; margin-bottom: 16px; }
.blog-card-date { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--warm-terracotta); font-weight: 600; }

/* ========================================
   BOOKING / OTA
   ======================================== */
.booking { padding: var(--section-pad) var(--side-pad); background: var(--ivory); text-align: center; }
.booking-header { margin-bottom: 48px; }
.booking-desc { font-family: var(--font-accent); font-size: clamp(16px, 2vw, 20px); color: var(--body-text); max-width: 600px; margin: 0 auto 48px; line-height: 1.6; }
.ota-grid { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 48px; }
.ota-btn { display: flex; align-items: center; gap: 10px; padding: 16px 32px; border: 1.5px solid rgba(184, 92, 56, 0.2); font-size: 14px; font-weight: 600; color: var(--body-text); letter-spacing: 0.5px; transition: all 0.35s; }
.ota-btn:hover { border-color: var(--warm-terracotta); background: var(--warm-terracotta); color: var(--ivory); }
.ota-btn .ota-icon { font-size: 20px; }
.book-direct-box { max-width: 680px; margin: 0 auto; padding: 48px; background: var(--warm-cream); position: relative; }
.book-direct-box::before { content: ''; position: absolute; top: -1px; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: var(--warm-terracotta); }
.book-direct-title { font-family: var(--font-display); font-size: 24px; color: var(--dark-text); margin-bottom: 12px; }
.book-direct-text { font-size: 14px; color: var(--light-text); margin-bottom: 24px; line-height: 1.6; }
.booking-widget-placeholder { padding: 20px; border: 2px dashed rgba(184, 92, 56, 0.2); border-radius: 4px; font-size: 13px; color: var(--light-text); letter-spacing: 0.5px; }
.booking-widget-placeholder code { display: block; margin-top: 8px; font-size: 11px; color: var(--warm-terracotta); }

/* ========================================
   CONTACT
   ======================================== */
.contact { padding: var(--section-pad) var(--side-pad); background: var(--warm-cream); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 80px); max-width: 1100px; margin: 0 auto; }
.contact-info-side { padding-top: 20px; }
.contact-details { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-detail-icon { font-size: 20px; margin-top: 2px; }
.contact-detail-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--warm-terracotta); font-weight: 600; margin-bottom: 4px; }
.contact-detail-value { font-size: 15px; color: var(--body-text); line-height: 1.5; }
.contact-form-side { background: var(--ivory); padding: clamp(32px, 4vw, 48px); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--light-text); font-weight: 600; margin-bottom: 8px; }
.form-input, .form-textarea { width: 100%; padding: 14px 16px; border: 1px solid rgba(184, 92, 56, 0.15); background: transparent; font-family: var(--font-body); font-size: 15px; color: var(--dark-text); transition: border-color 0.3s; outline: none; border-radius: 0; }
.form-input:focus, .form-textarea:focus { border-color: var(--warm-terracotta); }
.form-textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 16px; background: var(--warm-terracotta); color: var(--ivory); font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.3s; margin-top: 8px; }
.form-submit:hover { background: var(--deep-terracotta); }

/* ========================================
   FOOTER
   ======================================== */
.footer { background: #1E0E09; color: rgba(250, 246, 240, 0.5); padding: 64px var(--side-pad) 32px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand .wordmark { font-family: var(--font-display); font-size: 24px; color: var(--ivory); margin-bottom: 4px; }
.footer-brand .subtitle { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--warm-terracotta); font-weight: 500; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 300px; font-weight: 300; }
.footer-col-title { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--ivory); font-weight: 600; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; font-weight: 300; transition: color 0.3s; }
.footer-links a:hover { color: var(--warm-terracotta); }
.footer-bottom { border-top: 1px solid rgba(250, 246, 240, 0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; font-weight: 300; }
.footer-social { display: flex; gap: 16px; }
.footer-social a { font-size: 18px; transition: opacity 0.3s; }
.footer-social a:hover { opacity: 0.7; }

/* ========================================
   BLOG PAGE STYLES
   ======================================== */
.blog-page { padding: 140px var(--side-pad) var(--section-pad); max-width: 1200px; margin: 0 auto; }
.blog-page-header { text-align: center; margin-bottom: 64px; }
.blog-page .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

/* Single post */
.single-post-wrap { padding: 140px var(--side-pad) var(--section-pad); max-width: 800px; margin: 0 auto; }
.single-post-header { text-align: center; margin-bottom: 48px; }
.single-post-category { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--warm-terracotta); font-weight: 600; margin-bottom: 16px; }
.single-post-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 48px); color: var(--dark-text); line-height: 1.2; margin-bottom: 16px; }
.single-post-meta { font-size: 13px; color: var(--light-text); }
.single-post-featured { margin-bottom: 48px; border-radius: 0; overflow: hidden; }
.single-post-featured img { width: 100%; height: auto; }
.single-post-content { font-family: var(--font-accent); font-size: 19px; line-height: 1.8; color: var(--body-text); }
.single-post-content p { margin-bottom: 24px; }
.single-post-content h2 { font-family: var(--font-display); font-size: 28px; color: var(--dark-text); margin: 48px 0 20px; }
.single-post-content h3 { font-family: var(--font-display); font-size: 22px; color: var(--dark-text); margin: 36px 0 16px; }
.single-post-content img { margin: 32px 0; }
.single-post-content blockquote { border-left: 3px solid var(--warm-terracotta); padding: 16px 24px; margin: 32px 0; font-style: italic; color: var(--light-text); background: var(--warm-cream); }
.single-post-content ul, .single-post-content ol { margin: 16px 0 24px 24px; }
.single-post-content li { margin-bottom: 8px; }

/* Back link */
.back-to-blog { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--warm-terracotta); margin-bottom: 40px; transition: opacity 0.3s; }
.back-to-blog:hover { opacity: 0.7; }

/* Page template */
.page-wrap { padding: 140px var(--side-pad) var(--section-pad); max-width: 800px; margin: 0 auto; }
.page-title { font-family: var(--font-display); font-size: clamp(32px, 5vw, 48px); color: var(--dark-text); line-height: 1.2; margin-bottom: 32px; text-align: center; }
.page-content { font-family: var(--font-accent); font-size: 19px; line-height: 1.8; color: var(--body-text); }
.page-content p { margin-bottom: 24px; }

/* ========================================
   HIDDEN LANG CONTENT
   ======================================== */
[data-lang] { display: none !important; }
[data-lang].active { display: block !important; }
span[data-lang].active { display: inline !important; }
li[data-lang].active { display: flex !important; }
a.lang-content[data-lang].active { display: inline-flex !important; }
.room-features span[data-lang].active { display: inline !important; }
.nearby-list li[data-lang].active { display: flex !important; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .sig-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-book-btn { display: none; }
  .nav-toggle { display: flex; }

  .nav-mobile {
    position: fixed; inset: 0; background: var(--deep-terracotta); z-index: 999;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
    opacity: 0; pointer-events: none; transition: opacity 0.4s;
  }
  .nav-mobile.open { opacity: 1; pointer-events: all; }
  .nav-mobile a { font-family: var(--font-display); font-size: 28px; color: var(--ivory); }

  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: 1fr; }
  .sig-grid { grid-template-columns: 1fr; gap: 24px; }
  .fac-grid { grid-template-columns: 1fr; }
  .location-content { grid-template-columns: 1fr; }
  .location-map { min-height: 300px; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .ota-grid { flex-direction: column; align-items: center; }
  .ota-btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-arch-frame { width: 90vw; height: 50px; }
  .hero-scroll { display: none; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-page .blog-grid { grid-template-columns: 1fr; }
}

/* WordPress-specific overrides */
.wp-block-image img { max-width: 100%; height: auto; }
.aligncenter { text-align: center; }
.alignleft { float: left; margin-right: 24px; margin-bottom: 16px; }
.alignright { float: right; margin-left: 24px; margin-bottom: 16px; }
.wp-caption { max-width: 100%; }
.screen-reader-text { clip: rect(1px, 1px, 1px, 1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }

/* Room Gallery Slider */
.room-gallery { position: relative; width: 100%; aspect-ratio: 4/3; overflow: hidden; }
@supports not (aspect-ratio: 4/3) { .room-gallery { padding-top: 75%; } }
.room-gallery-track { display: flex; transition: transform 0.4s ease; height: 100%; width: 100%; }
@supports not (aspect-ratio: 4/3) { .room-gallery-track { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } }
.room-gallery-slide { flex: 0 0 100%; width: 100%; height: 100%; background-size: cover; background-position: center; }
.room-gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.85); border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 16px; color: var(--deep-terracotta); z-index: 2; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.room-card:hover .room-gallery-nav { opacity: 1; }
.room-gallery-nav.prev { left: 12px; }
.room-gallery-nav.next { right: 12px; }
.room-gallery-nav:hover { background: #fff; }
.room-gallery-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.room-gallery-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.5); border: none; cursor: pointer; padding: 0; transition: background 0.3s, transform 0.3s; }
.room-gallery-dot.active { background: #fff; transform: scale(1.3); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
