:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-pale: #F5EDD6;
  --deep: #1A1208;
  --dark: #2C1F0A;
  --mid: #5C4A2A;
  --cream: #FAF6EE;
  --white: #FFFDF8;
  --thai-red: #9B1B30;
  --text: #3A2B10;
  --text-light: #7A6540;
  --border: rgba(201,168,76,0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Raleway', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }

/* Thai language — use Sarabun for all body text */
:lang(th) body,
:lang(th) .section-desc,
:lang(th) .hero-tagline,
:lang(th) .intro-band p,
:lang(th) .footer-about,
:lang(th) .why-item-desc,
:lang(th) .testimonial-text,
:lang(th) .amenity-desc,
:lang(th) .dish-desc {
  font-family: 'Sarabun', sans-serif;
}
:lang(th) .hero-title,
:lang(th) .section-title,
:lang(th) .room-card-name,
:lang(th) .why-item-title,
:lang(th) .footer-logo {
  font-family: 'Sarabun', sans-serif;
  font-weight: 600;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; padding: 0 4rem; height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s, box-shadow 0.5s;
}
nav.scrolled { background: rgba(26,18,8,0.97); box-shadow: 0 2px 40px rgba(0,0,0,0.3); }
.nav-logo { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.2rem; letter-spacing: 0.08em; text-decoration: none; line-height: 1.2; }
.nav-logo span { display: block; font-size: 0.55rem; letter-spacing: 0.35em; color: var(--gold-light); font-family: 'Raleway', sans-serif; font-weight: 400; text-transform: uppercase; margin-top: 2px; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-family: 'Raleway', sans-serif; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); text-decoration: none; transition: color 0.3s; }
.nav-links a:hover { color: var(--gold); }
.nav-book { background: var(--gold); color: var(--deep) !important; padding: 0.6rem 1.4rem !important; font-weight: 600 !important; letter-spacing: 0.15em !important; transition: background 0.3s !important; }
.nav-book:hover { background: var(--gold-light) !important; }
.nav-phone { font-size: 0.68rem !important; letter-spacing: 0.08em !important; color: rgba(232,213,163,0.7) !important; text-decoration: none; transition: color 0.3s; }
.nav-phone:hover { color: var(--gold) !important; }

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-btn {
  background: none; border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light); padding: 0.35rem 0.7rem;
  font-family: 'Raleway', sans-serif; font-size: 0.65rem;
  letter-spacing: 0.12em; cursor: pointer; display: flex;
  align-items: center; gap: 0.4rem; transition: border-color 0.3s, color 0.3s;
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-btn svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: rgba(26,18,8,0.98); border: 1px solid var(--border);
  min-width: 155px; opacity: 0; pointer-events: none;
  transform: translateY(-6px); transition: opacity 0.2s, transform 0.2s; z-index: 300;
}
.lang-switcher.open .lang-dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.lang-option {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.55rem 0.9rem; color: rgba(255,253,248,0.65);
  font-size: 0.72rem; cursor: pointer; transition: color 0.2s, background 0.2s;
  font-family: 'Raleway', sans-serif; letter-spacing: 0.05em;
}
.lang-option:hover, .lang-option.active { color: var(--gold); background: rgba(201,168,76,0.07); }
.lang-flag { font-size: 1rem; line-height: 1; }

/* ── HERO ── */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--deep); }
.hero-slides { position: absolute; inset: 0; }
.hero-photo { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.8s ease; }
.hero-photo.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(26,18,8,0.72) 0%, rgba(26,18,8,0.55) 50%, rgba(26,18,8,0.68) 100%);
}
.thai-pattern { position: absolute; inset: 0; opacity: 0.03; background-image: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%), repeating-linear-gradient(-45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 50%); background-size: 28px 28px; }
.hero-ornament-top { position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, transparent, var(--gold), var(--thai-red), var(--gold), transparent); }
.hero-content { position: relative; z-index: 2; text-align: center; padding: 2rem; animation: heroFade 1.6s ease both; }
@keyframes heroFade { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-eyebrow { font-family: 'Raleway', sans-serif; font-size: 0.65rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: flex; align-items: center; justify-content: center; gap: 1rem; }
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 40px; height: 1px; background: var(--gold); opacity: 0.6; }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 400; color: var(--white); line-height: 1.05; letter-spacing: 0.02em; margin-bottom: 0.3rem; }
.hero-title em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--gold-light); letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 2.5rem; font-weight: 300; }
.hero-tagline { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.25rem; color: rgba(255,253,248,0.75); max-width: 520px; margin: 0 auto 3rem; line-height: 1.7; }
.hero-ctas { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
.hero-stars { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.4rem; }
.star { color: var(--gold); font-size: 1rem; }
.hero-scroll { position: absolute; bottom: 5rem; right: 4rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(201,168,76,0.5); font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollPulse 2s ease infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ── BUTTONS ── */
.btn-primary { background: var(--gold); color: var(--deep); padding: 1rem 2.5rem; font-family: 'Raleway', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; display: inline-block; transition: all 0.3s; border: 1px solid var(--gold); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.4); }
.btn-secondary { background: transparent; color: var(--gold-light); padding: 1rem 2.5rem; font-family: 'Raleway', sans-serif; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; display: inline-block; border: 1px solid rgba(201,168,76,0.4); transition: all 0.3s; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ── COMMON ── */
section { padding: 7rem 4rem; }
.section-label { font-size: 0.6rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1.2rem; }
.section-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; color: var(--deep); line-height: 1.2; margin-bottom: 1.5rem; }
.section-title em { font-style: italic; color: var(--mid); }
.section-desc { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--text-light); line-height: 1.8; max-width: 560px; }
.ornament-divider { display: flex; align-items: center; gap: 1rem; margin: 1.5rem 0; }
.ornament-divider::before, .ornament-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.ornament-diamond { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); }

/* ── INTRO BAND ── */
.intro-band { background: var(--deep); padding: 4rem; text-align: center; position: relative; overflow: hidden; }
.intro-band::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.intro-band::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.intro-band p { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-style: italic; color: var(--gold-light); max-width: 800px; margin: 0 auto; line-height: 1.7; }
.intro-band strong { color: var(--gold); font-style: normal; font-weight: 500; }

/* ── PHOTO GALLERY STRIP ── */
.gallery-strip { overflow: hidden; background: var(--deep); padding: 0; display: flex; height: 280px; }
.gallery-item { flex: 1; min-width: 0; overflow: hidden; position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease, filter 0.4s ease; filter: brightness(0.75); }
.gallery-item:hover img { transform: scale(1.07); filter: brightness(1); }
.gallery-item-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 0.6rem 0.8rem; background: linear-gradient(to top, rgba(26,18,8,0.9), transparent); color: var(--gold-light); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0; transition: opacity 0.3s; font-family: 'Raleway', sans-serif; }
.gallery-item:hover .gallery-item-label { opacity: 1; }

/* ── STATS ── */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 5rem 0; }
.stat-item { text-align: center; padding: 2.5rem 1rem; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 400; color: var(--gold); display: block; line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-light); }

/* ── ABOUT PHOTO ── */
.about-photo-wrap { position: relative; }
.about-photo { width: 100%; height: 420px; object-fit: cover; display: block; }
.about-badge { position: absolute; top: -15px; right: -15px; width: 60px; height: 60px; background: var(--thai-red); display: flex; align-items: center; justify-content: center; }
.about-badge span { color: var(--white); font-family: 'Playfair Display', serif; font-size: 1rem; text-align: center; line-height: 1.1; }

/* ── ROOMS ── */
.rooms-section { background: var(--white); }
.rooms-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.room-card { position: relative; overflow: hidden; cursor: pointer; aspect-ratio: 3/4; background: var(--dark); }
.room-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.8s ease; }
.room-card:hover .room-card-bg { transform: scale(1.08); }
.room-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,6,2,0.92) 0%, rgba(10,6,2,0.3) 55%, transparent 100%); }
.room-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2rem; z-index: 2; transform: translateY(40px); transition: transform 0.5s ease; }
.room-card:hover .room-card-content { transform: translateY(0); }
.room-card-tag { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.room-card-name { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--white); margin-bottom: 0.5rem; }
.room-card-detail { font-size: 0.75rem; color: var(--gold-light); letter-spacing: 0.1em; opacity: 0; transition: opacity 0.4s 0.1s; }
.room-card:hover .room-card-detail { opacity: 1; }
.room-features { display: grid; grid-template-columns: repeat(5, 1fr); border: 1px solid var(--border); background: var(--gold-pale); }
.room-feature { padding: 1.2rem; text-align: center; border-right: 1px solid var(--border); }
.room-feature:last-child { border-right: none; }
.room-feature-icon { font-size: 1.2rem; margin-bottom: 0.3rem; }
.room-feature-label { font-size: 0.65rem; letter-spacing: 0.1em; color: var(--text-light); text-transform: uppercase; }

/* ── AMENITIES ── */
.amenities-section { background: linear-gradient(160deg, var(--cream) 0%, var(--white) 100%); }
.amenities-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: center; }
.amenities-visual { position: relative; height: 550px; }
.amen-card-big { position: absolute; top: 0; left: 0; width: 75%; height: 70%; overflow: hidden; }
.amen-card-small { position: absolute; bottom: 0; right: 0; width: 55%; height: 45%; overflow: hidden; border: 4px solid var(--cream); }
.amen-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.amen-label { position: absolute; bottom: 1rem; left: 1rem; background: rgba(26,18,8,0.8); padding: 0.4rem 0.8rem; }
.amen-label-title { font-family: 'Playfair Display', serif; font-style: italic; font-size: 0.9rem; color: rgba(255,255,255,0.9); }
.amen-label-sub { font-size: 0.55rem; letter-spacing: 0.25em; color: rgba(201,168,76,0.8); text-transform: uppercase; }
.amen-badge { position: absolute; top: -20px; right: 40%; background: var(--thai-red); color: var(--white); padding: 0.6rem 1.2rem; font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; font-family: 'Raleway', sans-serif; font-weight: 600; z-index: 3; }
.amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.amenity-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.2rem; border: 1px solid var(--border); transition: border-color 0.3s, background 0.3s; }
.amenity-item:hover { border-color: var(--gold); background: var(--gold-pale); }
.amenity-icon { width: 36px; height: 36px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.amenity-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.amenity-name { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; color: var(--text); margin-bottom: 0.2rem; }
.amenity-desc { font-size: 0.72rem; color: var(--text-light); line-height: 1.5; }

/* ── DINING ── */
.dining-section { background: var(--deep); color: var(--white); position: relative; overflow: hidden; }
.dining-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 60%), radial-gradient(ellipse at 20% 80%, rgba(155,27,48,0.05) 0%, transparent 50%); }
.dining-section .section-title { color: var(--white); }
.dining-section .section-desc { color: rgba(255,253,248,0.7); }
.dining-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; }
.dining-photo-wrap { border-radius: 0; overflow: hidden; }
.dining-photo { width: 100%; height: 420px; object-fit: cover; display: block; }
.dining-menu-item { padding: 1rem 0; border-bottom: 1px solid rgba(201,168,76,0.15); display: flex; justify-content: space-between; align-items: baseline; }
.dining-menu-item:last-child { border-bottom: none; }
.dish-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); margin-bottom: 0.2rem; }
.dish-desc { font-size: 0.7rem; color: rgba(255,253,248,0.5); font-style: italic; }
.dish-tag { font-size: 0.6rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; border: 1px solid rgba(201,168,76,0.3); padding: 0.2rem 0.5rem; white-space: nowrap; flex-shrink: 0; margin-left: 1rem; }
.dining-hours { margin-top: 2rem; padding: 1.2rem; border: 1px solid rgba(201,168,76,0.25); display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.dining-hour-item { text-align: center; }
.dining-hour-val { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); }
.dining-hour-label { font-size: 0.6rem; letter-spacing: 0.2em; color: rgba(255,253,248,0.4); text-transform: uppercase; }
.dining-sep { width: 1px; background: rgba(201,168,76,0.2); align-self: stretch; }

/* ── WHY STAY ── */
.why-section { background: var(--deep); padding: 6rem 4rem; position: relative; overflow: hidden; }
.why-section::before { content: ''; position: absolute; inset: 0; opacity: 0.03; background: repeating-linear-gradient(45deg, var(--gold) 0, var(--gold) 1px, transparent 0, transparent 30px); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(201,168,76,0.15); }
.why-item { background: var(--dark); padding: 2.5rem; text-align: center; }
.why-item.alt { background: rgba(201,168,76,0.07); border: 1px solid rgba(201,168,76,0.2); }
.why-item-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-item-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--gold); margin-bottom: 0.8rem; }
.why-item-desc { font-size: 0.82rem; color: rgba(255,253,248,0.55); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--cream); text-align: center; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.testimonial-card { background: var(--white); border: 1px solid var(--border); padding: 2rem; text-align: left; position: relative; }
.testimonial-card::before { content: '\201C'; font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--gold); opacity: 0.2; position: absolute; top: -10px; left: 1rem; line-height: 1; }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.testimonial-stars span { color: var(--gold); font-size: 0.85rem; }
.testimonial-text { font-family: 'Cormorant Garamond', serif; font-size: 1rem; line-height: 1.7; color: var(--text); margin-bottom: 1.2rem; font-style: italic; }
.testimonial-author { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); }
.testimonial-origin { font-size: 0.65rem; color: var(--gold); letter-spacing: 0.1em; margin-top: 2px; }

/* ── LOCATION ── */
.location-section { background: var(--white); }
.location-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.location-map-wrap { position: relative; }
.location-map-placeholder { background: var(--dark); height: 400px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.05) 1px, transparent 1px); background-size: 40px 40px; }
.map-pin { position: relative; z-index: 2; text-align: center; }
.map-pin-dot { width: 20px; height: 20px; background: var(--gold); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); margin: 0 auto 1rem; box-shadow: 0 0 0 6px rgba(201,168,76,0.2); }
.map-address { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; color: var(--gold-light); line-height: 1.6; font-style: italic; }
.nearby-list { margin-top: 2rem; }
.nearby-item { display: flex; justify-content: space-between; align-items: center; padding: 0.8rem 0; border-bottom: 1px solid var(--border); font-size: 0.8rem; }
.nearby-item:last-child { border-bottom: none; }
.nearby-name { color: var(--text); font-weight: 500; }
.nearby-dist { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 0.85rem; }
.address-box { margin-top: 2rem; padding: 1.2rem; background: var(--gold-pale); border-left: 3px solid var(--gold); }
.address-label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.4rem; }
.address-text { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--text); line-height: 1.6; }
.address-phone { margin-top: 0.8rem; font-size: 0.75rem; color: var(--text-light); }
.address-phone a { color: var(--text-light); text-decoration: none; }
.checkin-row { display: grid; grid-template-columns: 1fr 1fr; }
.checkin-item { padding: 1.2rem; text-align: center; }
.checkin-item:first-child { background: var(--deep); border-right: 1px solid rgba(201,168,76,0.1); }
.checkin-item:last-child { background: var(--dark); }
.checkin-time { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); margin-bottom: 0.2rem; }
.checkin-label { font-size: 0.6rem; letter-spacing: 0.2em; color: rgba(255,253,248,0.5); text-transform: uppercase; }

/* ── BOOKING BAND ── */
.booking-band { background: var(--gold); padding: 4rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.booking-band h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 400; color: var(--deep); margin-bottom: 0.5rem; }
.booking-band p { font-size: 0.85rem; color: var(--mid); letter-spacing: 0.05em; }
.booking-platforms { display: flex; gap: 1rem; flex-wrap: wrap; }
.platform-btn { background: var(--deep); color: var(--gold); padding: 0.9rem 1.8rem; font-family: 'Raleway', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none; display: inline-block; transition: all 0.3s; border: 1px solid var(--deep); }
.platform-btn:hover { background: transparent; color: var(--deep); border-color: var(--deep); }
.platform-btn.light { background: var(--white); color: var(--deep); border-color: var(--white); }
.platform-btn.light:hover { background: transparent; color: var(--deep); border-color: var(--deep); }

/* ── FOOTER ── */
footer { background: var(--deep); padding: 5rem 4rem 3rem; color: rgba(255,253,248,0.6); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(201,168,76,0.15); margin-bottom: 2rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); margin-bottom: 1rem; display: block; }
.footer-about { font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; line-height: 1.7; color: rgba(255,253,248,0.55); margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 1rem; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(201,168,76,0.3); display: flex; align-items: center; justify-content: center; color: var(--gold-light); font-size: 0.7rem; text-decoration: none; transition: all 0.3s; font-family: 'Raleway', sans-serif; font-weight: 600; }
.social-link:hover { background: var(--gold); color: var(--deep); border-color: var(--gold); }
.footer-heading { font-family: 'Raleway', sans-serif; font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.78rem; color: rgba(255,253,248,0.55); text-decoration: none; transition: color 0.3s; letter-spacing: 0.05em; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.7rem; color: rgba(255,253,248,0.3); flex-wrap: wrap; gap: 1rem; }
.footer-bottom a { color: rgba(255,253,248,0.45); text-decoration: none; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-bottom-links { display: flex; gap: 2rem; }
.aunimeda-link { color: rgba(201,168,76,0.5) !important; }
.aunimeda-link:hover { color: var(--gold) !important; }

/* ── WHATSAPP ── */
.wa-float { position: fixed; bottom: 2rem; right: 2rem; z-index: 999; background: #25D366; color: white; display: flex; align-items: center; gap: 0.6rem; padding: 0.75rem 1.2rem 0.75rem 0.9rem; border-radius: 50px; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); font-family: 'Raleway', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em; transition: transform 0.3s, box-shadow 0.3s; }
.wa-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-label { white-space: nowrap; }

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

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav { padding: 0 2rem; }
  section { padding: 5rem 2rem; }
  .why-section { padding: 5rem 2rem; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .rooms-header { grid-template-columns: 1fr; gap: 2rem; }
  .amenities-layout { grid-template-columns: 1fr; gap: 3rem; }
  .amenities-visual { height: 350px; }
  .dining-layout { grid-template-columns: 1fr; gap: 3rem; }
  .dining-photo { height: 300px; }
  .location-layout { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .booking-band { padding: 3rem 2rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .gallery-strip { height: 200px; }
  .room-features { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  section { padding: 4rem 1.5rem; }
  .why-section { padding: 4rem 1.5rem; }
  .hero-scroll { display: none; }
  .rooms-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .booking-band { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { flex-direction: column; gap: 0.8rem; align-items: center; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-strip { height: 160px; }
  .room-features { grid-template-columns: repeat(2, 1fr); }
  .about-photo { height: 280px; }
  .about-grid { grid-template-columns: 1fr !important; }
  .about-photo-wrap { order: -1; }
  .about-photo { height: 240px; }
}

/* ══════════════════════════════════════════════
   PREMIUM ANIMATIONS
══════════════════════════════════════════════ */

/* 1 — Gold shimmer on italic accents */
.hero-title em,
.section-title em {
  background: linear-gradient(90deg, var(--gold) 20%, #fff0a0 50%, var(--gold) 80%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 8s ease-in-out infinite;
}
.hero-title em {
  background-size: 250% 100%;
  animation: goldShimmer 7s 2s ease-in-out infinite;
}
@keyframes goldShimmer {
  0%   { background-position: 120% center; }
  100% { background-position: -120% center; }
}

/* 2 — Ornament lines draw from centre on reveal */
.reveal .ornament-divider::before,
.reveal .ornament-divider::after {
  transform: scaleX(0);
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.35s;
}
.reveal.visible .ornament-divider::before,
.reveal.visible .ornament-divider::after {
  transform: scaleX(1);
}
.hero-content .ornament-divider::before,
.hero-content .ornament-divider::after {
  animation: lineExpand 1s ease 1.5s both;
}
@keyframes lineExpand {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

/* 3 — Ornament diamond breathing glow */
.ornament-diamond {
  animation: diamondPulse 3.5s ease-in-out infinite;
}
@keyframes diamondPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
  50%       { box-shadow: 0 0 0 8px rgba(201,168,76,0.2); }
}

/* 4 — Room card diagonal shine on hover */
.room-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, transparent 33%, rgba(255,248,160,0.1) 50%, transparent 67%);
  transform: translateX(-110%);
  transition: transform 0.75s ease;
  z-index: 5;
  pointer-events: none;
}
.room-card:hover::after { transform: translateX(110%); }

/* 5 — Lotus petal floaters (created by JS) */
.lotus-petal {
  position: absolute;
  pointer-events: none;
  border-radius: 70% 0 70% 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.22), rgba(255,215,60,0.04));
  animation: petalDrift linear infinite;
  will-change: transform, opacity;
  z-index: 1;
}
@keyframes petalDrift {
  0%   { opacity: 0;   transform: translateY(0)    translateX(0)                  rotate(var(--rot, 0deg)); }
  8%   { opacity: 0.9; }
  90%  { opacity: 0.35; }
  100% { opacity: 0;   transform: translateY(-62vh) translateX(var(--drift, 15px)) rotate(calc(var(--rot, 0deg) + 220deg)); }
}

/* 6 — Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .lotus-petal { display: none; }
  .ornament-diamond { animation: none; }
  .hero-title em, .section-title em {
    background: none;
    -webkit-text-fill-color: var(--gold);
    animation: none;
  }
  .reveal .ornament-divider::before,
  .reveal .ornament-divider::after { transform: scaleX(1) !important; transition: none !important; }
  .hero-content .ornament-divider::before,
  .hero-content .ornament-divider::after { animation: none !important; transform: scaleX(1) !important; }
  .room-card::after { display: none; }
}
