/* ============================================================
   THIEN Y — HUE CITADEL · Final Aesthetic
   Black palette derived from version 2 (Imperial Grace)
   Layout & typography based on version 1 with v3 hero accents
   ============================================================ */

:root {
  /* Core palette — dark ground, gold light, warm text */
  --bg:           #0c0a08;
  --surface:      #151209;
  --surface-2:    #1c1710;
  --card:         #1c1710;
  --text:         #e2d4bc;
  --text-soft:    #c8b896;
  --muted:        #9a8d78;
  --muted-2:      #7a6e5c;
  --gold:         #c8a44a;
  --gold-light:   #e6cc80;
  --gold-pale:    #f5e6c0;
  --gold-dark:    #8e6e2a;
  --red-imperial: #7a1e1e;
  --white:        #f5ede0;
  --line:         rgba(200, 164, 74, 0.18);
  --line-soft:    rgba(200, 164, 74, 0.08);

  /* Typography */
  --serif-display: 'DM Serif Display', 'Cormorant Garamond', Georgia, serif;
  --serif:         'Cormorant Garamond', Georgia, serif;
  --accent:        'Italiana', 'Cormorant Garamond', serif;
  --sans:          'Jost', 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: all 0.3s ease; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }

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

.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.66rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.eyebrow.with-rule::before {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 14px;
  margin-bottom: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--serif-display);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.1;
  color: var(--white);
}

.display-1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
}
.display-2 { font-size: clamp(2rem, 4.2vw, 3.6rem); }
.display-3 { font-size: clamp(1.5rem, 3vw, 2.4rem); }
.italic-accent { font-family: var(--accent); font-style: normal; letter-spacing: 0.04em; color: var(--gold-light); }

p { font-size: 1rem; color: var(--muted); }
.lead {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  font-weight: 300;
  line-height: 1.55;
  color: var(--text);
  letter-spacing: 0.005em;
}

.divider {
  display: flex; align-items: center; gap: 18px; justify-content: center;
  margin: 32px 0;
}
.divider .line { flex: 0 0 60px; height: 1px; background: var(--gold); opacity: 0.55; }
.divider .ornament { font-size: 0.85rem; color: var(--gold); font-family: var(--serif); letter-spacing: 0.4em; }

.gold-line {
  width: 48px; height: 1px; background: var(--gold);
  margin: 1.4rem 0; opacity: 0.7;
}

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

.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 32px; }
section { position: relative; }
.section-pad { padding: clamp(80px, 12vw, 140px) 0; }
.section-pad-sm { padding: clamp(60px, 8vw, 100px) 0; }

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

.btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 30px;
  font-family: var(--sans);
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  border: 1px solid; cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
  background: transparent;
}
.btn-gold {
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold); color: var(--bg); letter-spacing: 0.32em; }
.btn-light {
  color: var(--white);
  border-color: var(--white);
}
.btn-light:hover { background: var(--white); color: var(--bg); }
.btn .arrow { display: inline-block; transition: transform 0.4s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.text-link {
  font-family: var(--sans);
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 4px;
  display: inline-block;
}
.text-link:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 36px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.5s ease;
  background: linear-gradient(to bottom, rgba(12,10,8,0.7) 0%, rgba(12,10,8,0) 100%);
}
.site-header.solid,
.site-header.scrolled {
  background: rgba(12, 10, 8, 0.96);
  backdrop-filter: blur(14px);
  padding: 12px 36px;
  border-bottom: 1px solid var(--line);
}

/* TOP-LEFT BRAND: PNG logo from v2 (colorful swirl + calligraphic Thiên Ý)
   plus a small italic subtitle line below. If the hotlinked PNG fails,
   a graceful CSS fallback reproduces the spirit (gold swirl + script text). */
.brand {
  display: flex; flex-direction: column;
  z-index: 102;
  text-decoration: none;
  line-height: 1;
  align-items: flex-start;
  gap: 6px;
}
.brand-row {
  display: inline-flex;
  align-items: center;
}
.brand-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.08);
  display: block;
}
.brand-fallback {
  display: none;            /* shown only when image errors via onerror */
  align-items: center;
  gap: 10px;
  height: 44px;
  line-height: 1;
}
.brand-swirl {
  width: 30px;
  height: 30px;
  display: inline-block;
  flex-shrink: 0;
}
.brand-name {
  font-family: 'Italiana', 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: var(--gold-pale);
  line-height: 1;
}
.brand .sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--gold);
  opacity: 0.85;
  padding-left: 2px;
}

.header-cta { display: flex; gap: 18px; align-items: center; }

.lang-switch {
  font-family: var(--sans);
  font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  display: flex; gap: 8px; align-items: center;
  padding-right: 18px;
  border-right: 1px solid var(--line);
}
.lang-switch a { opacity: 0.5; }
.lang-switch a.active { opacity: 1; color: var(--gold); }
.lang-switch a:hover { color: var(--gold-light); opacity: 1; }

.book-link {
  font-family: var(--sans);
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--gold);
  padding: 10px 22px;
  border: 1px solid var(--gold);
  transition: all 0.4s ease;
}
.book-link:hover { background: var(--gold); color: var(--bg); }

.nav-toggle {
  display: flex; align-items: center; gap: 14px;
  background: none; border: none; cursor: pointer;
  font-family: var(--sans);
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--text);
  padding: 12px 4px; z-index: 102;
}
.nav-toggle:hover { color: var(--gold); }
.nav-toggle .lines { display: inline-flex; flex-direction: column; gap: 4px; width: 24px; }
.nav-toggle .lines span { height: 1px; background: currentColor; transition: transform 0.4s ease; }
.nav-toggle .lines span:first-child { width: 100%; }
.nav-toggle .lines span:last-child { width: 60%; align-self: flex-end; }
body.menu-open .nav-toggle { color: var(--gold-light); }
body.menu-open .nav-toggle .lines span:first-child {
  transform: translateY(2.5px) rotate(45deg) scaleX(0.85);
}
body.menu-open .nav-toggle .lines span:last-child {
  width: 100%;
  transform: translateY(-2.5px) rotate(-45deg) scaleX(0.85);
}

/* ============================================================
   FULL-SCREEN MENU
   ============================================================ */

.full-menu {
  position: fixed; inset: 0;
  background: var(--bg);
  color: var(--text);
  z-index: 101;
  opacity: 0; pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  display: grid; grid-template-columns: 1fr 1.6fr;
  overflow-y: auto;
}
body.menu-open .full-menu { opacity: 1; pointer-events: all; }

/* The decorative menu image — clickable, returns to home */
.full-menu .menu-image {
  position: relative;
  background-size: cover; background-position: center;
  background-image: url('https://thienyhue.com/wp-content/uploads/2026/02/0L4A01762-1-scaled.jpg');
  cursor: pointer;
  border: none;
  display: block;
}
.full-menu .menu-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(12,10,8,0.55), rgba(12,10,8,0.85));
  transition: background 0.5s ease;
}
.full-menu .menu-image:hover::after {
  background: linear-gradient(135deg, rgba(12,10,8,0.4), rgba(12,10,8,0.7));
}
.full-menu .menu-image-caption {
  position: absolute; bottom: 60px; left: 60px; right: 60px;
  z-index: 2;
  display: flex; flex-direction: column; gap: 14px;
}
.full-menu .menu-image-caption .badge {
  font-family: var(--sans);
  font-size: 0.62rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold);
}
.full-menu .menu-image-caption .title {
  font-family: var(--serif-display);
  font-size: 2.2rem;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.full-menu .menu-image-caption .return {
  font-family: var(--sans);
  font-size: 0.65rem; letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-soft);
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 6px;
}
.full-menu .menu-image-caption .return::before {
  content: '←'; color: var(--gold); font-size: 0.9rem;
}

.full-menu .menu-content {
  padding: 130px 70px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-content: start;
  overflow-y: auto;
}
.menu-column { display: flex; flex-direction: column; gap: 30px; }

.menu-section h5 {
  font-family: var(--sans);
  font-size: 0.62rem; letter-spacing: 0.42em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: center; gap: 14px;
}
.menu-section h5::before {
  content: ''; width: 24px; height: 1px; background: var(--gold);
}
.menu-section ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.menu-section ul a {
  font-family: var(--serif-display);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 400;
  color: var(--text-soft);
  letter-spacing: -0.005em;
  display: inline-flex; align-items: center; gap: 14px;
  padding: 5px 0;
  transition: all 0.3s ease;
  position: relative;
}
.menu-section ul a::before {
  content: '→';
  font-size: 0.78rem; color: var(--gold);
  opacity: 0; transform: translateX(-10px);
  transition: all 0.4s ease;
}
.menu-section ul a:hover { color: var(--gold-light); padding-left: 18px; }
.menu-section ul a:hover::before { opacity: 1; transform: translateX(0); }
.menu-section ul a.active { color: var(--gold-light); }

.menu-section ul a.sub {
  font-size: 0.95rem; color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
  padding-left: 18px;
}
.menu-section ul a.sub::before { display: none; }
.menu-section ul a.sub:hover { color: var(--gold); padding-left: 28px; }

.menu-meta {
  grid-column: 1 / -1;
  margin-top: 30px; padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 50px;
  font-size: 0.85rem; color: var(--muted);
  font-family: var(--serif);
}
.menu-meta a { color: var(--text-soft); border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.menu-meta a:hover { color: var(--gold); border-color: var(--gold); }
.menu-meta .label {
  font-family: var(--sans); font-size: 0.62rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-dark); display: block; margin-bottom: 6px;
}

/* ============================================================
   HERO  (HOME)
   ============================================================ */

.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  overflow: hidden;
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
}
.hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(12,10,8,0.5) 0%, rgba(12,10,8,0.15) 35%, rgba(12,10,8,0.4) 70%, rgba(12,10,8,0.92) 100%);
  z-index: 1;
}
.hero-center {
  position: relative; z-index: 2;
  width: 100%; max-width: 800px;
  padding: 0 32px;
  text-align: center;
  animation: heroReveal 1.6s 0.4s ease both;
}
@keyframes heroReveal { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.hero-ornament {
  font-size: 0.85rem; color: var(--gold);
  letter-spacing: 0.5em;
  margin-bottom: 1.2rem;
  display: block; opacity: 0.75;
}
.hero-title {
  font-family: 'Cinzel', var(--serif-display);
  font-size: clamp(2.8rem, 7.5vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.32em;
  color: var(--gold-pale);
  line-height: 1.05;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 50px rgba(0,0,0,0.55);
  text-indent: 0.32em; /* visually centre the optical balance */
}
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.4rem);
  color: rgba(232,201,122,0.85);
  letter-spacing: 0.14em;
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto; margin-right: auto;
}
.hero-divider {
  width: 120px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 2.5rem;
}
.hero-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.95rem 2.4rem;
  text-decoration: none;
  transition: all 0.4s;
}
.hero-cta:hover { background: var(--gold); color: var(--bg); }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  color: var(--text-soft);
  font-size: 0.62rem; letter-spacing: 0.4em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  opacity: 0.75;
}
.scroll-cue .dot {
  width: 1px; height: 50px; background: rgba(232,201,122,0.3);
  position: relative; overflow: hidden;
}
.scroll-cue .dot::after {
  content: ''; position: absolute; top: -50%; left: 0;
  width: 100%; height: 50%; background: var(--gold);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine { 0% { top: -50%; } 100% { top: 100%; } }

/* GLOBAL AUDIO CONTROL — discreet, collapsible, dimmable (v3 style)
   Fixed-position, controls every video on the page. Sits left of the
   floating Zalo chat button. */
.audio-control {
  position: fixed; bottom: 30px; right: 100px;
  z-index: 51;
  display: flex; align-items: center;
  opacity: 0.4;
  transition: opacity 0.5s ease;
}
.audio-control:hover { opacity: 1; }
.volume-slider-wrap {
  width: 0; overflow: hidden; opacity: 0;
  transition: width 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease, padding 0.4s ease;
  display: flex; align-items: center;
  background: rgba(12,10,8,0.78);
  border: 1px solid var(--line);
  border-right: none;
  backdrop-filter: blur(8px);
  height: 38px;
}
.audio-control:hover .volume-slider-wrap { width: 110px; opacity: 1; padding: 0 14px; }
.volume-slider-wrap input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 84px; height: 2px;
  background: rgba(200, 164, 74, 0.32);
  outline: none; cursor: pointer;
  position: relative;
}
.volume-slider-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer; margin-top: -4px;
  transition: transform 0.2s ease;
}
.volume-slider-wrap input[type="range"]:hover::-webkit-slider-thumb { transform: scale(1.4); }
.volume-slider-wrap input[type="range"]::-webkit-slider-runnable-track { height: 2px; }
.volume-slider-wrap input[type="range"]::-moz-range-thumb {
  width: 10px; height: 10px; background: var(--gold);
  border-radius: 50%; border: none; cursor: pointer;
}

.sound-btn {
  width: 38px; height: 38px;
  background: rgba(12,10,8,0.78);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  padding: 0;
}
.sound-btn:hover { background: rgba(200, 164, 74, 0.15); border-color: var(--gold); }
.sound-btn svg {
  width: 16px; height: 16px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}

@media (max-width: 768px) {
  .audio-control { bottom: 14px; right: 14px; opacity: 0.6; }
}

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

.page-hero {
  position: relative;
  height: 65vh; min-height: 500px;
  overflow: hidden;
  color: var(--text);
  display: flex; align-items: flex-end;
  padding-bottom: 60px;
}
.page-hero img,
.page-hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(12,10,8,0.5) 0%, rgba(12,10,8,0.15) 30%, rgba(12,10,8,0.85) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 36px;
}
.page-hero h1 {
  font-family: var(--serif-display);
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
  line-height: 1; letter-spacing: -0.01em;
}
.page-hero .breadcrumb {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
}
.page-hero .breadcrumb a { color: var(--text-soft); opacity: 0.85; }
.page-hero .breadcrumb a:hover { color: var(--gold); opacity: 1; }
.page-hero .breadcrumb .sep { opacity: 0.4; }

/* ============================================================
   INTRO BLOCK (Page 2 — A dwelling born…)
   ============================================================ */

.intro-block {
  background: var(--surface);
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
}
.intro-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  max-width: 1240px; margin: 0 auto; padding: 0 36px;
}
.intro-image-wrap {
  position: relative;
}
.intro-image-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}
.intro-image-wrap::before {
  content: '';
  position: absolute;
  top: -16px; right: -16px;
  width: 100%; height: 100%;
  border: 1px solid var(--gold);
  z-index: -1;
}
.intro-image-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 14px;
  text-align: right;
  letter-spacing: 0.06em;
}
.intro-content h2 {
  margin-top: 18px;
}
.intro-content p {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 18px;
}
.intro-content em { color: var(--gold-light); font-style: italic; }
.intro-content .gold-bar {
  display: flex; align-items: center; gap: 12px; margin: 30px 0;
}
.intro-content .gold-bar .bar { flex: 1; height: 1px; background: var(--gold); opacity: 0.5; }
.intro-content .gold-bar .diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }

@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-image-wrap img { height: 420px; }
}

/* ============================================================
   VILLAS (Page 3 — three cards)
   ============================================================ */

.villas-section {
  background: var(--bg);
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
}
.villa-intro {
  text-align: center; margin-bottom: 80px;
  max-width: 760px; margin-left: auto; margin-right: auto;
  padding: 0 32px;
}
.villa-intro h2 { margin: 18px 0 28px; }

.villa-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
}
.villa-card {
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  height: 600px;
  background: var(--surface);
}
.villa-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.villa-card:hover img { transform: scale(1.06); }
.villa-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,6,3,0.95) 0%, rgba(8,6,3,0.1) 60%);
  transition: opacity 0.6s ease;
}
.villa-card:hover::after { opacity: 0.8; }

.villa-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px 32px;
  z-index: 2;
}
.villa-meta .num {
  font-family: var(--accent);
  font-size: 0.85rem; color: var(--gold-light);
  letter-spacing: 0.32em; text-transform: uppercase;
  display: block; margin-bottom: 8px;
}
.villa-meta h3 {
  font-family: var(--serif-display);
  font-size: 2rem; color: var(--white);
  font-weight: 400;
  margin-bottom: 6px;
}
.villa-meta .tagline {
  font-family: var(--accent);
  font-size: 0.9rem; color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.villa-card .more {
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-light);
  display: inline-flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}
.villa-card:hover .more { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   TESTIMONIAL (Page 4 — Laurent quote)
   ============================================================ */

.testimonial-block {
  background: var(--surface);
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
  position: relative;
}
.testimonial-inner {
  max-width: 860px; margin: 0 auto;
  padding: 0 36px;
}
.testimonial-stars {
  color: var(--gold);
  letter-spacing: 0.4em;
  font-size: 0.85rem;
  margin-bottom: 30px;
  opacity: 0.85;
}
.testimonial-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 30px;
}
.testimonial-quote::before { content: '"'; color: var(--gold); margin-right: 6px; }
.testimonial-quote::after  { content: '"'; color: var(--gold); margin-left: 6px; }
.testimonial-attr {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   SPLIT SECTION (Lake / Manor / generic split)
   ============================================================ */

.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; align-items: stretch;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-text {
  padding: 6rem 4.5rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--surface);
}
.split-text h2 { margin: 14px 0 0; }
.split-text p {
  font-family: var(--serif);
  font-size: 1.1rem; line-height: 1.7;
  color: var(--text-soft);
  margin-top: 22px;
  max-width: 540px;
}
.split-text .opening-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.62rem; letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bg); background: var(--gold);
  padding: 6px 14px;
  margin-top: 26px;
  align-self: flex-start;
}

.split-media {
  position: relative; overflow: hidden;
  min-height: 540px;
}
.split-media img,
.split-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.split-media:hover img,
.split-media:hover video { transform: scale(1.04); }

@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .split-text { padding: 3rem 1.5rem; }
  .split-media { min-height: 360px; }
}

/* ============================================================
   "A WORLD WITHIN" — 3-card grid (Page 7)
   ============================================================ */

.world-section {
  background: var(--bg);
  padding: clamp(80px, 12vw, 140px) 0;
}
.world-intro {
  text-align: center; margin-bottom: 60px;
  max-width: 720px; margin-left: auto; margin-right: auto;
  padding: 0 32px;
}
.world-intro h2 { margin: 18px 0 0; }

.world-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
}
.world-card {
  position: relative; overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  display: block;
}
.world-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s ease;
}
.world-card:hover img { transform: scale(1.06); }
.world-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,6,3,0.92) 0%, rgba(8,6,3,0.1) 60%);
}
.world-card .card-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px 28px;
  z-index: 2;
}
.world-card .card-overlay .label {
  font-family: var(--sans);
  font-size: 0.62rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px;
}
.world-card .card-overlay .card-title {
  font-family: var(--serif-display);
  font-size: 1.7rem; color: var(--white);
  margin-bottom: 8px;
}
.world-card .card-overlay .card-sub {
  font-family: var(--serif);
  font-size: 0.95rem; color: var(--muted);
  margin-bottom: 14px;
}
.world-card .card-overlay .card-cta {
  font-family: var(--sans);
  font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-light);
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 4px;
  display: inline-block;
}
.world-card:hover .card-overlay .card-cta { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   PLAN YOUR STAY (Page 8)
   ============================================================ */

.plan-block {
  background: var(--surface);
  padding: clamp(80px, 12vw, 140px) 0;
  text-align: center;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.plan-block .container-narrow { padding: 0 36px; }
.plan-block h2 { margin: 22px 0 24px; }
.plan-block .actions {
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
  margin-top: 40px;
}

/* ============================================================
   SECTION DIVIDER ORNAMENTS
   ============================================================ */

.section-ornament {
  text-align: center;
  padding: 28px 0;
  color: var(--gold);
  letter-spacing: 0.5em;
  font-size: 0.7rem;
  opacity: 0.4;
}

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

.rooms-intro {
  text-align: center;
  max-width: 760px; margin: 0 auto 80px;
  padding-top: 80px;
}
.rooms-intro h2 { margin: 20px 0 24px; }

.rooms-villa-group { margin-bottom: 80px; }
.house-header {
  display: flex; align-items: center; gap: 20px;
  max-width: 1320px; margin: 0 auto 40px;
  padding: 0 32px;
}
.house-badge {
  width: 68px; height: 68px;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(200, 164, 74, 0.08);
}
.house-badge svg { width: 36px; height: 36px; }
.house-name {
  display: flex; flex-direction: column;
}
.house-name .main {
  font-family: var(--serif-display);
  font-size: 1.7rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.house-name .sub {
  font-family: var(--accent);
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.18em;
  margin-top: 2px;
}

.room-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px;
  max-width: 1320px; margin: 0 auto;
  padding: 0 32px;
}
.room-card {
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.5s ease;
  display: flex; flex-direction: column;
  position: relative;
}
.room-card:hover { border-color: var(--gold); transform: translateY(-3px); }

.room-card-gallery {
  position: relative;
  width: 100%; height: 320px;
  overflow: hidden;
  background: var(--bg);
}
.room-card-gallery .slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.room-card-gallery .slide.active { opacity: 1; }
.room-card-gallery .slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.room-card-gallery .dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px;
  z-index: 2;
}
.room-card-gallery .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(245, 230, 192, 0.4);
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}
.room-card-gallery .dot.active { background: var(--gold); }
.room-card-gallery:hover .arrow-btn { opacity: 1; }
.room-card-gallery .arrow-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  background: rgba(12,10,8,0.6);
  border: 1px solid var(--gold);
  color: var(--gold);
  cursor: pointer; opacity: 0;
  transition: opacity 0.3s, background 0.3s;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  font-size: 0.9rem;
}
.room-card-gallery .arrow-btn:hover { background: var(--gold); color: var(--bg); }
.room-card-gallery .arrow-btn.prev { left: 12px; }
.room-card-gallery .arrow-btn.next { right: 12px; }

.room-body {
  padding: 30px 28px; flex: 1;
  display: flex; flex-direction: column;
}
.room-num {
  font-family: var(--accent);
  font-size: 0.85rem; letter-spacing: 0.28em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 12px;
}
.room-card h3 {
  font-family: var(--serif-display);
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: var(--white);
}
.room-card p {
  font-family: var(--serif);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  flex: 1;
}
.room-card .room-link {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-light);
  display: inline-flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: all 0.4s ease;
}
.room-card .room-link:hover { color: var(--gold); border-color: var(--gold); }

/* ============================================================
   DINING / EXPERIENCES
   ============================================================ */

.dining-section {
  background: var(--bg);
  padding: clamp(80px, 12vw, 140px) 0;
}
.dining-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
  max-width: 1320px; margin: 0 auto;
  padding: 0 32px;
}

.dining-services {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 4px; margin-top: 70px;
  max-width: 1320px; margin-left: auto; margin-right: auto;
  padding: 0 32px;
}
.service-block {
  padding: 50px 36px;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: all 0.5s ease;
}
.service-block:hover { border-color: var(--gold); background: var(--surface-2); }
.service-block .num {
  font-family: var(--accent);
  font-size: 1rem; color: var(--gold);
  letter-spacing: 0.18em; display: block; margin-bottom: 16px;
}
.service-block h3 {
  font-family: var(--serif-display);
  font-size: 1.4rem; margin-bottom: 14px;
}
.service-block p {
  font-family: var(--serif);
  font-size: 1rem; line-height: 1.6;
  color: var(--muted);
}

.imperial-cuisine {
  background: var(--surface);
  padding: clamp(80px, 12vw, 140px) 0;
}
.imperial-cuisine .grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 70px; align-items: center;
  max-width: 1320px; margin: 0 auto;
  padding: 0 32px;
}
.cuisine-images {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.cuisine-images img { width: 100%; height: 320px; object-fit: cover; }

@media (max-width: 1024px) {
  .dining-grid, .imperial-cuisine .grid { grid-template-columns: 1fr; gap: 36px; }
  .dining-services { grid-template-columns: 1fr; }
}

/* ============================================================
   EXPERIENCES list (numbered)
   ============================================================ */

.exp-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  max-width: 1320px; margin: 0 auto;
  padding: 0 32px;
}
.exp-list {
  display: flex; flex-direction: column;
}
.exp-item {
  display: grid; grid-template-columns: 80px 1fr;
  padding: 2.4rem 0;
  border-bottom: 1px solid var(--line);
  gap: 1.6rem; align-items: start;
}
.exp-num {
  font-family: var(--serif-display);
  font-size: 2.6rem; font-weight: 400;
  color: var(--gold-dark); line-height: 1;
  opacity: 0.6;
}
.exp-title {
  font-family: var(--serif-display);
  font-size: 1.3rem; font-weight: 400;
  color: var(--white); margin-bottom: 8px;
}
.exp-desc {
  font-family: var(--serif);
  font-size: 1rem; color: var(--muted);
  line-height: 1.65;
}
@media (max-width: 1024px) {
  .exp-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ============================================================
   FULL-WIDTH VIDEO
   ============================================================ */

.video-full {
  position: relative; width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: var(--bg);
}
.video-full video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.video-full::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(8,6,3,0.25);
  pointer-events: none;
}

/* ============================================================
   COMING-SOON MOSAIC
   ============================================================ */

.coming-mosaic {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 4px; margin-top: 70px;
  padding: 0 32px;
  max-width: 1400px; margin-left: auto; margin-right: auto;
}
.coming-mosaic .m-item { overflow: hidden; height: 200px; }
.coming-mosaic .m-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
  filter: brightness(0.9);
}
.coming-mosaic .m-item:hover img { transform: scale(1.06); filter: brightness(1); }

@media (max-width: 1024px) { .coming-mosaic { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .coming-mosaic { grid-template-columns: 1fr 1fr; } }

/* GALLERY STRIP — horizontal slide-on-hover (from v3)
   Used under the Lake / Manor sections on the Coming Soon page. */
.gallery-strip {
  display: flex;
  gap: 3px;
  height: 360px;
  margin: 60px auto 0;
  max-width: 1400px;
  padding: 0 32px;
  width: 100%;
  box-sizing: border-box;
}
.gallery-strip-item {
  flex: 1;
  overflow: hidden;
  transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: var(--surface);
}
.gallery-strip-item:hover { flex: 2.5; }
.gallery-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease, filter 0.6s ease;
  filter: brightness(0.85);
}
.gallery-strip-item:hover img { transform: scale(1.04); filter: brightness(1); }

@media (max-width: 768px) {
  .gallery-strip { height: 220px; padding: 0 16px; }
}

/* ============================================================
   PHILOSOPHY / EDITORIAL
   ============================================================ */

.editorial { background: var(--surface); }
.editorial-content {
  font-family: var(--serif);
  font-size: 1.15rem; line-height: 1.75;
  color: var(--text-soft);
  text-align: left;
  margin-top: 40px;
}
.editorial-content p {
  margin-bottom: 22px;
  font-family: var(--serif);
}
.editorial-content p.lead-para:first-letter {
  font-family: var(--serif-display);
  font-size: 4.2rem; float: left;
  line-height: 0.85; margin: 6px 12px 0 0;
  color: var(--gold);
}
.editorial-content em { color: var(--gold-light); font-style: italic; }

/* Inspiration page — chapter cards */
.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  max-width: 1320px; margin: 0 auto;
  padding: 0 32px;
}
.inspiration-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  padding: 50px 44px;
  position: relative;
  transition: all 0.5s ease;
}
.inspiration-card:hover { background: var(--surface-2); border-color: var(--gold); }
.inspiration-card .num {
  font-family: var(--accent);
  font-size: 0.85rem; color: var(--gold);
  letter-spacing: 0.32em; text-transform: uppercase;
  display: block; margin-bottom: 14px;
}
.inspiration-card h3 {
  font-family: var(--serif-display);
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 22px;
  line-height: 1.15;
}
.inspiration-card p {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-soft);
}
.inspiration-card p + p { margin-top: 14px; }
.inspiration-card em { color: var(--gold); font-style: italic; }
@media (max-width: 1024px) { .inspiration-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ART AT THIEN Y — bento grid
   ============================================================ */

.art-section {
  background: var(--bg);
  padding: clamp(80px, 12vw, 140px) 0;
}
.art-intro {
  text-align: center;
  max-width: 760px; margin: 0 auto 60px;
  padding: 0 32px;
}
.art-intro h2 { margin: 18px 0 22px; }

.art-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  max-width: 1400px; margin: 0 auto;
  padding: 0 32px;
}
.art-tile {
  position: relative; overflow: hidden;
  cursor: pointer;
  background: var(--surface);
}
.art-tile.h1 { aspect-ratio: 1 / 1; }
.art-tile.h-tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.art-tile.h-wide { grid-column: span 2; aspect-ratio: 2 / 1; }

.art-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease, filter 0.6s ease;
  filter: brightness(0.85);
}
.art-tile:hover img { transform: scale(1.05); filter: brightness(1); }
.art-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,6,3,0.85) 0%, rgba(8,6,3,0.05) 50%);
  pointer-events: none;
}
.art-tile .label {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  font-family: var(--accent);
  font-size: 1rem; color: var(--gold-light);
  letter-spacing: 0.04em;
  z-index: 2;
  font-style: italic;
}

@media (max-width: 1024px) {
  .art-bento { grid-template-columns: repeat(2, 1fr); }
  .art-tile.h-wide { grid-column: span 2; }
  .art-tile.h-tall { grid-row: auto; aspect-ratio: 1 / 1; }
}
@media (max-width: 600px) {
  .art-bento { grid-template-columns: 1fr; }
  .art-tile.h-wide { grid-column: auto; aspect-ratio: 4 / 3; }
}

/* ============================================================
   LOCATIONS PAGE
   ============================================================ */

.locations-block {
  padding: clamp(80px, 12vw, 140px) 0;
  background: var(--bg);
}
.locations-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1320px; margin: 0 auto;
  padding: 0 32px;
}
.locations-map {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--gold-dark);
  padding: 24px;
}
.locations-map .map-img {
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
  background: #1a1308;
}
.locations-map .corner-mark {
  position: absolute;
  width: 22px; height: 22px;
  border: 1px solid var(--gold);
}
.locations-map .corner-mark.tl { top: -4px; left: -4px; border-right: none; border-bottom: none; }
.locations-map .corner-mark.tr { top: -4px; right: -4px; border-left: none; border-bottom: none; }
.locations-map .corner-mark.bl { bottom: -4px; left: -4px; border-right: none; border-top: none; }
.locations-map .corner-mark.br { bottom: -4px; right: -4px; border-left: none; border-top: none; }

.locations-info { display: flex; flex-direction: column; gap: 28px; }
.locations-info h2 { margin: 16px 0 18px; }
.locations-info .address-heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: 0.005em;
  color: var(--gold-pale);
  margin: 16px 0 18px;
}
.locations-info .lead { color: var(--text-soft); }
.locations-info-block {
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.locations-info-block h4 {
  font-family: var(--sans);
  font-size: 0.66rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 10px;
}
.locations-info-block p,
.locations-info-block a {
  font-family: var(--serif);
  font-size: 1.08rem; color: var(--text);
  line-height: 1.65;
}
.locations-info-block a { border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.locations-info-block a:hover { color: var(--gold); border-color: var(--gold); }

.locations-iframe {
  width: 100%; height: 480px;
  border: none;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.7) contrast(0.92);
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .locations-grid { grid-template-columns: 1fr; gap: 40px; }
  .locations-map .map-img { height: 380px; }
}

/* ============================================================
   LIFESTYLE PAGE
   ============================================================ */

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 1400px; margin: 0 auto;
  padding: 0 32px;
}
.lifestyle-card {
  position: relative;
  background: var(--surface);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: all 0.5s ease;
  border: 1px solid var(--line-soft);
}
.lifestyle-card:hover { border-color: var(--gold); }
.lifestyle-card .img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}
.lifestyle-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s ease;
}
.lifestyle-card:hover .img-wrap img { transform: scale(1.05); }
.lifestyle-card .body {
  padding: 30px 28px;
  flex: 1;
  display: flex; flex-direction: column;
}
.lifestyle-card .label {
  font-family: var(--accent);
  font-size: 0.85rem; color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.lifestyle-card h3 {
  font-family: var(--serif-display);
  font-size: 1.45rem;
  margin-bottom: 14px;
}
.lifestyle-card p {
  font-family: var(--serif);
  font-size: 1rem; line-height: 1.6;
  color: var(--muted);
  flex: 1;
}
.lifestyle-card .cta {
  margin-top: 22px;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 4px;
  align-self: flex-start;
}
.lifestyle-card:hover .cta { color: var(--gold); border-color: var(--gold); }

@media (max-width: 1024px) { .lifestyle-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .lifestyle-grid { grid-template-columns: 1fr; } }

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

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1240px; margin: 0 auto;
  padding: 0 36px;
}
.about-hero-grid img.about-logo-large {
  width: 60%;
  margin: 0 auto;
  display: block;
  filter: brightness(1.2);
}
.about-logos {
  display: flex; align-items: center; gap: 30px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.about-logos img {
  height: 50px; object-fit: contain;
  filter: brightness(0.9) sepia(0.3);
  opacity: 0.8;
  transition: opacity 0.3s, filter 0.3s;
}
.about-logos img:hover { opacity: 1; filter: brightness(1.1); }
.about-logos a { display: inline-block; }

.about-properties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  max-width: 1320px; margin: 0 auto;
  padding: 0 32px;
}
.about-property {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: all 0.4s ease;
}
.about-property:hover { border-color: var(--gold); }
.about-property img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.about-property .body { padding: 24px 22px; }
.about-property h3 {
  font-family: var(--serif-display);
  font-size: 1.4rem;
  margin: 4px 0 6px;
  color: var(--white);
}
.about-property .sub {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--muted);
}
.about-property .badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.6rem; letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: var(--gold);
  color: var(--bg);
  margin-bottom: 8px;
}
.about-property .badge.live { background: var(--green-imperial, #1A3A2A); color: var(--gold-light); border: 1px solid var(--gold-dark); }

@media (max-width: 1024px) { .about-properties { grid-template-columns: 1fr; } .about-hero-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ============================================================
   VILLA DETAIL PAGE (single villa)
   ============================================================ */

.villa-detail {
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
}
.villa-detail.alt { background: var(--surface); }
.villa-feature-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1240px; margin: 0 auto 80px;
  padding: 0 36px;
}
.villa-feature-grid.reverse { grid-template-columns: 1fr 1.2fr; }
.villa-feature-grid.reverse .img-wrap { order: 2; }
.villa-feature-grid.reverse .text-wrap { order: 1; }
.img-wrap { position: relative; overflow: hidden; }
.img-wrap img { width: 100%; transition: transform 1.6s ease; }
.img-wrap video { width: 100%; }
.text-wrap p {
  font-family: var(--serif);
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 18px;
}
.text-wrap p em {
  font-style: italic; color: var(--gold-light); font-weight: 400;
}

.gallery-trio {
  display: grid; grid-template-columns: 1fr 1.2fr 1fr;
  gap: 14px;
  max-width: 1320px; margin: 60px auto;
  padding: 0 32px;
}
.gallery-trio .gal-item { overflow: hidden; height: 460px; }
.gallery-trio .gal-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s ease;
}
.gallery-trio .gal-item:hover img { transform: scale(1.04); }
.gallery-trio .gal-item:nth-child(2) { height: 540px; align-self: center; }
.gallery-trio .gal-item:nth-child(1) { margin-top: 60px; }
.gallery-trio .gal-item:nth-child(3) { margin-top: 30px; }

.villa-quote {
  text-align: center;
  max-width: 780px;
  margin: 70px auto;
  padding: 0 36px;
}
.villa-quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.85rem);
  line-height: 1.5;
  color: var(--gold-light);
  font-weight: 300;
}
.villa-quote .ornament-line {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 26px;
}
.villa-quote .ornament-line span { width: 30px; height: 1px; background: var(--gold); }
.villa-quote .ornament-line .diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); }

.villa-cta { text-align: center; margin-top: 60px; }

.feature-video {
  width: 100%; margin: 60px auto;
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 9;
  max-width: 1320px;
  padding: 0;
}
.feature-video video { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 1024px) {
  .villa-feature-grid, .villa-feature-grid.reverse { grid-template-columns: 1fr; gap: 30px; }
  .villa-feature-grid.reverse .img-wrap, .villa-feature-grid.reverse .text-wrap { order: unset; }
  .gallery-trio { grid-template-columns: 1fr; }
  .gallery-trio .gal-item, .gallery-trio .gal-item:nth-child(2) { height: 380px; align-self: stretch; }
  .gallery-trio .gal-item:nth-child(1), .gallery-trio .gal-item:nth-child(3) { margin-top: 0; }
}

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

.contact-section {
  background: var(--bg);
  padding: clamp(80px, 12vw, 140px) 0;
  position: relative;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 60px;
  max-width: 1320px; margin-left: auto; margin-right: auto;
  padding: 0 32px;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-item h4 {
  font-family: var(--sans);
  font-size: 0.66rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 12px;
}
.contact-info-item p {
  font-family: var(--serif);
  font-size: 1.12rem; color: var(--text);
  line-height: 1.65;
  margin-bottom: 6px;
}
.contact-info-item a {
  color: var(--text); border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;
}
.contact-info-item a:hover { color: var(--gold); border-color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--serif);
  font-size: 1.02rem; font-weight: 300;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.3s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--muted-2); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--gold); }
.contact-form select { appearance: none; cursor: pointer; }
.contact-form select option { background: var(--surface); color: var(--text); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form button {
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 0.7rem; font-weight: 400;
  letter-spacing: 0.32em; text-transform: uppercase;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.4s;
  align-self: flex-start;
}
.contact-form button:hover { background: var(--gold); color: var(--bg); }

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}

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

.site-footer {
  background: #050403;
  color: var(--text);
  padding: 70px 0 32px;
  position: relative;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  padding: 0 32px 50px;
  border-bottom: 1px solid var(--line-soft);
  max-width: 1400px; margin: 0 auto;
}
.footer-brand .name {
  font-family: var(--serif-display);
  font-size: 1.7rem;
  color: var(--gold-light);
  margin-bottom: 4px;
  letter-spacing: 0.06em;
}
.footer-brand .sub {
  font-family: var(--accent);
  font-size: 0.95rem;
  color: var(--gold-dark);
  margin-bottom: 22px;
}
.footer-brand p {
  font-family: var(--serif);
  font-size: 1rem; line-height: 1.6;
  color: var(--muted);
  max-width: 380px;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.62rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  font-weight: 500; margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-family: var(--serif);
  font-size: 1rem; color: var(--muted);
}
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  padding: 32px 32px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px;
  font-size: 0.72rem; letter-spacing: 0.16em;
  color: var(--muted-2);
  max-width: 1400px; margin: 0 auto;
}

@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ============================================================
   FLOATING ZALO
   ============================================================ */

.floating-chat {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 50;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--bg);
  font-family: var(--sans);
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: all 0.3s ease;
  text-decoration: none;
}
.floating-chat:hover { transform: translateY(-4px); background: var(--gold-light); }
.floating-chat::before {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 1px solid var(--gold);
  opacity: 0.3;
  animation: pulseRing 2.4s ease-in-out infinite;
}
@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.15); opacity: 0; }
}

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

.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

.reveal-stagger > * {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.24s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.36s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 0.48s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 0.6s; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE — small screens
   ============================================================ */

@media (max-width: 900px) {
  .villa-grid, .world-grid { grid-template-columns: 1fr; }
  .room-grid { grid-template-columns: 1fr; }
  .full-menu { grid-template-columns: 1fr; }
  .full-menu .menu-image { display: none; }
  .full-menu .menu-content { padding: 100px 28px 50px; grid-template-columns: 1fr; gap: 40px; }
  .site-header { padding: 14px 20px; }
  .site-header.solid, .site-header.scrolled { padding: 10px 20px; }
  .lang-switch, .book-link { display: none; }
  .brand-logo-img { height: 36px; }
  .brand .sub { font-size: 0.62rem; letter-spacing: 0.1em; }
}

/* ============================================================
   2026-05-04 — Mobile/visibility fixes (post-staging review)
   These rules override earlier definitions; intentionally placed
   at end of file so cascade applies them last.
   ============================================================ */

/* --- Sound control: more visible at rest on all screens --- */
.audio-control {
  opacity: 0.85;            /* was 0.4 — readable at rest, fully visible on hover */
}
.audio-control:hover { opacity: 1; }

.sound-btn {
  background: rgba(12, 10, 8, 0.92);  /* darker pill so the gold icon reads against any backdrop */
  border-color: rgba(200, 164, 74, 0.55);
}
.sound-btn svg {
  stroke-width: 2;          /* was 1.5 — thicker icon strokes for legibility */
}

/* --- Mobile: stack sound above Zalo so they don't collide --- */
@media (max-width: 768px) {
  .audio-control {
    opacity: 0.95;          /* override the older 0.6 rule */
    bottom: 100px;          /* sits above the Zalo bubble (which is bottom: 28px, height: 58px) */
    right: 28px;            /* same right alignment as Zalo for a clean stack */
  }
  /* Volume slider would push horizontally and look odd stacked — hide it on touch devices */
  .volume-slider-wrap { display: none; }
}

/* --- Intro section: prevent decorative frame & image from overflowing on narrow viewports --- */
.intro-block { overflow-x: clip; }    /* contain any 16px frame overhang inside the section */
.intro-image-wrap {
  display: block;
  max-width: 100%;
  margin-right: 16px;       /* leave room for the gold frame's 16px right offset, so nothing is cropped or shifted */
}
.intro-image-wrap img {
  display: block;
  max-width: 100%;
  height: auto;             /* let the image scale; the fixed 580px height was breaking proportions on small frames */
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .intro-image-wrap {
    margin-right: 16px;
    margin-left: 0;
  }
  .intro-image-wrap img {
    aspect-ratio: 3 / 2;    /* friendlier proportion when image is full width on tablet/phone */
    height: auto;
  }
}
@media (max-width: 640px) {
  .intro-grid { padding: 0 20px; }   /* tighter side gutter on phone */
  .intro-image-wrap { margin-right: 12px; }
  .intro-image-wrap::before { top: -10px; right: -10px; }  /* smaller frame offset on phone */
}


/* ============================================================================
   Date picker visibility fix — dark theme (append to end of styles.css)
   ============================================================================ */

/* Custom calendar icon, gold, on the right of the date field */
.contact-form input[type="date"] {
    position: relative;
    cursor: pointer;
    padding-right: 40px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23c9a86b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='4' width='18' height='18' rx='2' ry='2'/><line x1='16' y1='2' x2='16' y2='6'/><line x1='8' y1='2' x2='8' y2='6'/><line x1='3' y1='10' x2='21' y2='10'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px 18px;
}

/* Make dd/mm/yyyy placeholder text readable */
.contact-form input[type="date"]::-webkit-datetime-edit-text,
.contact-form input[type="date"]::-webkit-datetime-edit-day-field,
.contact-form input[type="date"]::-webkit-datetime-edit-month-field,
.contact-form input[type="date"]::-webkit-datetime-edit-year-field {
    color: var(--text);
    opacity: 0.55;
}
.contact-form input[type="date"]:valid::-webkit-datetime-edit-day-field,
.contact-form input[type="date"]:valid::-webkit-datetime-edit-month-field,
.contact-form input[type="date"]:valid::-webkit-datetime-edit-year-field {
    opacity: 1;
}

/* Make the entire field clickable to open picker (not just the small icon) */
.contact-form input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    cursor: pointer;
    color: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
}
/* ============================================================================
   Mobile header — restore EN/VI switch + RESERVE button alongside hamburger
   Append to end of styles.css. Overrides earlier display:none on these elements.
   ============================================================================ */

@media (max-width: 900px) {
  /* Show language switch + reserve button — overriding earlier display:none */
  .lang-switch,
  .book-link {
    display: flex !important;
    align-items: center;
  }

  /* Compact lang switch on phones */
  .lang-switch {
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    gap: 6px;
    padding-right: 10px;
    border-right: 1px solid var(--line);
  }

  /* Compact reserve button on phones */
  .book-link {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    padding: 7px 12px;
  }

  /* Tighten header gaps so all four elements fit on narrow screens */
  .site-header {
    gap: 10px;
  }
  .site-header > * + * {
    margin-left: 0;
  }
}

/* On very small phones (under 380px), shorten "RESERVE" → "BOOK" via JS-free trick:
   we hide the long word and show a shorter label using ::before. Falls back
   gracefully on browsers without ::before support. */
@media (max-width: 380px) {
  .lang-switch {
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    padding-right: 8px;
  }
  .book-link {
    font-size: 0.55rem;
    letter-spacing: 0.14em;
    padding: 6px 10px;
  }
}
