/* ============================================================
   VILLA AMIDA  ·  style.css
   Airy · Minimal · High-end magazine feel
   Inspired by thaiestategroup.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=DM+Sans:wght@300;400&display=swap');

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

:root {
  --white:   #FFFFFF;
  --off:     #F8F6F2;
  --light:   #F0EDE7;
  --border:  #E8E4DC;
  --charcoal:#1A1A1A;
  --mid:     #555555;
  --muted:   #888888;
  --gold:    #B8935A;
  --gold-lt: #D4AE78;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
  --ease:  cubic-bezier(0.25, 1, 0.5, 1);
  --pad:   clamp(40px, 7vw, 100px);
}

html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--white); color: var(--charcoal); font-family: var(--sans); font-weight: 300; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── TYPOGRAPHY ── */
.serif { font-family: var(--serif); }

h1, h2, h3 { font-family: var(--serif); font-weight: 300; line-height: 1.08; }

.display {
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 300;
}
.display em { font-style: italic; color: var(--gold); }

.h1 { font-size: clamp(2.2rem, 4vw, 4.5rem); }
.h1 em { font-style: italic; color: var(--gold); }

.h2 { font-size: clamp(1.8rem, 3vw, 3.2rem); }
.h2 em { font-style: italic; color: var(--gold); }

.h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

.body-text {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--mid);
  font-weight: 300;
}

.body-text + .body-text { margin-top: 16px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 15px 30px;
  transition: all 0.22s;
  cursor: pointer;
  border: none;
}

.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: #333; }

.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-lt); }

.btn-outline { border: 1px solid var(--charcoal); color: var(--charcoal); background: none; }
.btn-outline:hover { background: var(--charcoal); color: var(--white); }

.btn-outline-gold { border: 1px solid var(--gold); color: var(--gold); background: none; }
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

/* ── DIVIDER ── */
.rule { display: block; width: 36px; height: 1px; background: var(--gold); margin: 24px 0; }

/* ── SCROLL REVEAL ── */
.rv { opacity: 0; transform: translateY(20px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.rv.on { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px var(--pad);
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.solid {
  background: var(--white);
  padding: 16px var(--pad);
  border-bottom-color: var(--border);
}
.nav-logo img {
  height: 36px;
  transition: filter 0.3s, opacity 0.3s;
  /* On transparent nav over dark hero: show white logo */
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.nav.solid .nav-logo img {
  filter: none;
  opacity: 1;
}
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 400;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s;
}
.nav.solid .nav-links a { color: var(--mid); }
.nav-links a:hover, .nav.solid .nav-links a:hover { color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang-wrap { position: relative; }
.nav-lang {
  font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 400;
  color: rgba(255,255,255,0.5); background: none;
  border: 1px solid rgba(255,255,255,0.25); padding: 6px 12px;
  cursor: pointer; transition: all 0.2s;
}
.nav.solid .nav-lang { color: var(--muted); border-color: var(--border); }
.nav-lang:hover { border-color: var(--gold); color: var(--gold); }
.lang-drop {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--white); min-width: 150px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  display: none; z-index: 300;
}
.lang-drop.open { display: block; }
.lang-drop a {
  display: block; padding: 10px 16px;
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mid); transition: color 0.2s, background 0.2s;
}
.lang-drop a:hover { color: var(--gold); background: var(--off); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 1px; background: var(--white); transition: background 0.3s; }
.nav.solid .nav-toggle span { background: var(--charcoal); }

.mob-nav {
  display: none; position: fixed; inset: 0; background: var(--white); z-index: 199;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mob-nav.open { display: flex; }
.mob-nav a { font-family: var(--serif); font-size: 2.8rem; font-weight: 300; font-style: italic; color: var(--charcoal); transition: color 0.2s; }
.mob-nav a:hover { color: var(--gold); }
.mob-close { position: absolute; top: 24px; right: var(--pad); background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--muted); }
.mob-langs { display: flex; gap: 20px; margin-top: 8px; }
.mob-langs a { font-family: var(--sans) !important; font-size: 0.68rem !important; letter-spacing: 0.2em; color: var(--muted) !important; font-style: normal !important; transition: color 0.2s; }
.mob-langs a:hover { color: var(--gold) !important; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh; min-height: 680px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 100px var(--pad) 60px;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  animation: slowzoom 14s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
@keyframes slowzoom { from { transform: scale(1.06); } to { transform: scale(1); } }
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.72) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 900px; animation: fadein 1s 0.3s both; }
@keyframes fadein { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero-location { font-size: 0.66rem; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 22px; display: block; }
.hero h1 { color: var(--white); margin-bottom: 12px; }
.hero-tagline { font-family: var(--serif); font-style: italic; font-size: clamp(1rem, 2vw, 1.45rem); color: rgba(255,255,255,0.65); margin-bottom: 30px; font-weight: 300; letter-spacing: 0.04em; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 28px; flex-wrap: wrap;
}
.hero-stat { flex: 1; min-width: 110px; padding-right: 28px; }
.hero-stat-n { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--white); line-height: 1; margin-bottom: 5px; }
.hero-stat-l { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.85); line-height: 1.5; }
.hero-stat + .hero-stat { border-left: 1px solid rgba(255,255,255,0.75); padding-left: 28px; }

/* ════════════════════════════════════════
   INTRO STRIP  (white, below hero)
════════════════════════════════════════ */
.intro-strip {
  background: var(--white);
  padding: 72px var(--pad);
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1px; border-bottom: 1px solid var(--border);
}
.intro-item { padding: 32px 40px; text-align: center; }
.intro-icon { font-size: 1.4rem; margin-bottom: 12px; display: block; color: var(--gold); }
.intro-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 300; color: var(--charcoal); margin-bottom: 6px; }
.intro-desc { font-size: 0.82rem; line-height: 1.7; color: var(--muted); }

/* ════════════════════════════════════════
   ABOUT  (off-white, 2 col)
════════════════════════════════════════ */
.about {
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
}
.about-copy {
  padding: 100px var(--pad);
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--border);
}
.about-copy .body-text { max-width: 460px; }
.about-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.about-img { overflow: hidden; min-height: 520px; }
.about-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.about:hover .about-img img { transform: scale(1.03); }

/* ════════════════════════════════════════
   SEASON STRIP  (off-white bg, 2 cards)
════════════════════════════════════════ */
.season-strip { background: var(--off); padding: 80px var(--pad); }
.season-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 48px; }
.season-card { padding: 48px 44px; background: var(--white); }
.season-card.dark { background: var(--charcoal); }
.season-card-icon { font-size: 1.6rem; margin-bottom: 20px; display: block; }
.season-card h3 { font-family: var(--serif); font-weight: 300; font-size: clamp(1.4rem, 2vw, 1.9rem); margin-bottom: 14px; color: var(--charcoal); line-height: 1.15; }
.season-card h3 em { font-style: italic; color: var(--gold); }
.season-card.dark h3 { color: var(--off); }
.season-card.dark h3 em { color: var(--gold-lt); }
.season-card p { font-size: 0.95rem; line-height: 1.85; color: var(--mid); }
.season-card.dark p { color: rgba(240,237,231,0.55); }

/* ════════════════════════════════════════
   BALINESE  (white, 2 col)
════════════════════════════════════════ */
.balinese { background: var(--white); padding: 100px var(--pad); border-top: 1px solid var(--border); }
.balinese-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.balinese-intro .body-text { max-width: 420px; margin-top: 12px; }
.balinese-intro .body-text + .body-text { margin-top: 14px; }
.bali-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--border); }
.bali-card { padding: 28px 26px; border-bottom: 1px solid var(--border); border-right: 1px solid var(--border); transition: background 0.2s; }
.bali-card:nth-child(2n) { border-right: none; }
.bali-card:nth-child(3), .bali-card:nth-child(4) { border-bottom: none; }
.bali-card:hover { background: var(--off); }
.bali-icon { font-size: 1.1rem; margin-bottom: 10px; display: block; }
.bali-title { font-family: var(--serif); font-size: 1.05rem; font-weight: 300; color: var(--charcoal); margin-bottom: 8px; line-height: 1.2; }
.bali-body { font-size: 0.84rem; line-height: 1.75; color: var(--muted); }

/* ════════════════════════════════════════
   DAY TIMELINE  (charcoal bg, vertical)
════════════════════════════════════════ */
.day { background: var(--charcoal); padding: 100px var(--pad); }
.day-header { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 64px; }
.day-header .h2 { color: var(--off); }
.day-header .h2 em { color: var(--gold-lt); }
.day-intro-text { font-size: 0.95rem; line-height: 1.85; color: rgba(240,237,231,0.45); max-width: 360px; align-self: end; }

/* Vertical timeline */
.day-timeline { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; }
.day-tl-item { display: grid; grid-template-columns: 28px 1fr; gap: 28px; }
.day-tl-marker { display: flex; flex-direction: column; align-items: center; padding-top: 4px; }
.day-tl-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.day-tl-line { width: 1px; flex: 1; background: rgba(184,147,90,0.25); margin-top: 8px; min-height: 48px; }
.day-tl-item:last-child .day-tl-line { display: none; }
.day-tl-content { padding-bottom: 48px; }
.day-tl-item:last-child .day-tl-content { padding-bottom: 0; }
.day-time { font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.day-title { font-family: var(--serif); font-size: 1.35rem; font-weight: 300; color: var(--off); line-height: 1.2; margin-bottom: 10px; }
.day-title em { font-style: italic; color: var(--gold-lt); }
.day-desc { font-size: 0.9rem; line-height: 1.8; color: rgba(240,237,231,0.5); }

/* ════════════════════════════════════════
   WHY  (off-white, cards)
════════════════════════════════════════ */
.why { background: var(--off); padding: 100px var(--pad); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 56px; }
.why-card { background: var(--white); padding: 40px 34px; transition: transform 0.25s var(--ease), box-shadow 0.25s; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.07); }
.why-icon { font-size: 1.3rem; margin-bottom: 16px; display: block; }
.why-title { font-family: var(--serif); font-size: 1.35rem; font-weight: 300; color: var(--charcoal); margin-bottom: 10px; line-height: 1.2; }
.why-title em { font-style: italic; color: var(--gold); }
.why-body { font-size: 0.88rem; line-height: 1.8; color: var(--muted); }

/* ════════════════════════════════════════
   GALLERY  (white bg, 10-image grid)
════════════════════════════════════════ */
.gallery { background: var(--white); padding: 100px var(--pad); border-top: 1px solid var(--border); }
.gallery-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; }
.gallery-link { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); transition: color 0.2s; display: flex; align-items: center; gap: 8px; }
.gallery-link:hover { color: var(--gold); }

/* 2-column mosaic — alternates tall/short for rhythm */
.gallery-10 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.gallery-10 .g-item { position: relative; overflow: hidden; cursor: pointer; background: var(--light); }
/* Alternating heights — odd items taller */
.gallery-10 .g-item:nth-child(odd)  { height: 380px; }
.gallery-10 .g-item:nth-child(even) { height: 280px; }
.gallery-10 .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.gallery-10 .g-item:hover img { transform: scale(1.04); }
.gallery-10 .g-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.gallery-10 .g-item:hover .g-overlay { background: rgba(0,0,0,0.18); }
.gallery-10 .g-plus { font-size: 1.5rem; color: white; opacity: 0; transition: opacity 0.3s; }
.gallery-10 .g-item:hover .g-plus { opacity: 1; }
.gallery-10 .g-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 16px; background: linear-gradient(transparent, rgba(0,0,0,0.45)); font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.75); }

/* ════════════════════════════════════════
   AMENITIES  (white, clean list)
════════════════════════════════════════ */
.amenities { background: var(--white); padding: 100px var(--pad); border-top: 1px solid var(--border); }
.amenities-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.amenities-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
.am-group { }
.am-group-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 300; color: var(--charcoal); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.am-group-title em { font-style: italic; color: var(--gold); }
.am-list { display: flex; flex-direction: column; }
.am-item { display: flex; align-items: flex-start; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--border); }
.am-item:last-child { border-bottom: none; }
.am-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 9px; }
.am-text { }
.am-name { font-size: 0.9rem; color: var(--charcoal); line-height: 1.4; }
.am-note { font-size: 0.76rem; color: var(--muted); margin-top: 2px; }

/* ════════════════════════════════════════
   AREA  (off-white, 4 col)
════════════════════════════════════════ */
.area { background: var(--off); padding: 100px var(--pad); }
.area-cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 56px; }
.area-cat { background: var(--white); padding: 36px 28px; }
.area-cat-label { font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; display: block; }
.area-place { padding: 11px 0; border-bottom: 1px solid var(--border); }
.area-place:last-child { border-bottom: none; }
.area-place-row { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.area-place-name { font-size: 0.9rem; color: var(--charcoal); line-height: 1.3; }
.area-place-dist { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); white-space: nowrap; flex-shrink: 0; }
.area-place-desc { font-size: 0.76rem; color: var(--muted); line-height: 1.5; margin-top: 3px; }

/* ════════════════════════════════════════
   BOOKING  (white, 2 col)
════════════════════════════════════════ */
.booking { background: var(--white); padding: 100px var(--pad); border-top: 1px solid var(--border); }
.booking-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.ota-stack { display: flex; flex-direction: column; gap: 8px; margin-top: 32px; }
.ota-row {
  display: flex; align-items: center; gap: 20px;
  padding: 18px 22px; border: 1px solid var(--border);
  text-decoration: none; transition: all 0.2s; color: var(--charcoal);
}
.ota-row:hover { border-color: var(--gold); background: var(--off); }
.ota-row img { height: 26px; max-width: 120px; object-fit: contain; flex-shrink: 0; }
.ota-name { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); flex: 1; }
.ota-arrow { font-size: 0.9rem; color: var(--gold); opacity: 0.5; transition: opacity 0.2s, transform 0.2s; }
.ota-row:hover .ota-arrow { opacity: 1; transform: translateX(3px); }

.direct-panel { background: var(--gold); padding: 44px 40px; }
.direct-label { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 14px; display: block; }
.direct-title { font-family: var(--serif); font-size: clamp(1.6rem, 2.4vw, 2.4rem); font-weight: 300; font-style: italic; color: var(--white); line-height: 1.1; margin-bottom: 8px; }
.direct-sub { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 28px; }

.contact-form { display: flex; flex-direction: column; gap: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.form-field input, .form-field select, .form-field textarea {
  background: rgba(255,255,255,0.92); border: 1px solid rgba(255,255,255,0.3);
  padding: 12px 14px; font-family: var(--sans); font-size: 0.88rem;
  color: var(--charcoal); outline: none; transition: border-color 0.2s;
  width: 100%; font-weight: 300;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--charcoal); background: var(--white); }
.form-field textarea { resize: vertical; min-height: 80px; }
.form-field select { appearance: none; cursor: pointer; }
.form-submit {
  background: var(--charcoal); color: var(--white);
  font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  border: none; padding: 15px; cursor: pointer; transition: opacity 0.2s; width: 100%; margin-top: 4px;
}
.form-submit:hover { opacity: 0.8; }
.form-note { font-size: 0.7rem; color: rgba(255,255,255,0.5); margin-top: 6px; }

.direct-links { margin-top: 22px; border-top: 1px solid rgba(255,255,255,0.2); padding-top: 18px; display: flex; flex-direction: column; gap: 0; }
.direct-link { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.15); font-size: 0.85rem; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.direct-link:last-child { border-bottom: none; }
.direct-link:hover { color: var(--white); }
.wa-big { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 16px; background: rgba(0,0,0,0.25); color: var(--white); font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 15px; text-decoration: none; transition: background 0.2s; }
.wa-big:hover { background: rgba(0,0,0,0.4); }

/* ════════════════════════════════════════
   VR TEASER  (off-white)
════════════════════════════════════════ */
.vr-teaser { background: var(--off); padding: 80px var(--pad); border-top: 1px solid var(--border); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.vr-label { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 14px; }
.vr-title { font-family: var(--serif); font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 300; font-style: italic; color: var(--charcoal); line-height: 1.2; margin-bottom: 12px; }
.vr-sub { font-size: 0.9rem; line-height: 1.8; color: var(--muted); margin-bottom: 28px; }
.vr-preview { background: var(--white); border: 1px solid var(--border); overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.06); }
.vr-bar { background: var(--charcoal); padding: 14px 18px; display: flex; align-items: center; gap: 10px; }
.vr-dot { width: 7px; height: 7px; background: #4caf80; border-radius: 50%; animation: vdot 2.5s infinite; }
@keyframes vdot { 0%,100%{opacity:0.5} 50%{opacity:1} }
.vr-bar-name { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.vr-msgs { padding: 18px; display: flex; flex-direction: column; gap: 10px; }
.vr-brow { display: flex; }
.vr-brow.b { justify-content: flex-start; }
.vr-brow.u { justify-content: flex-end; }
.vr-bub { padding: 10px 14px; font-size: 0.83rem; line-height: 1.6; max-width: 80%; }
.vr-bub.b { background: var(--off); color: var(--charcoal); border: 1px solid var(--border); border-radius: 2px 12px 12px 12px; }
.vr-bub.u { background: var(--gold); color: var(--white); border-radius: 12px 2px 12px 12px; }
.vr-input-fake { padding: 12px 16px; border-top: 1px solid var(--border); display: flex; gap: 10px; align-items: center; }
.vr-input-fake span:first-child { flex: 1; font-size: 0.8rem; color: var(--muted); font-style: italic; }
.vr-send-fake { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }

/* ════════════════════════════════════════
   SOCIAL  (charcoal)
════════════════════════════════════════ */
.social { background: var(--charcoal); padding: 56px var(--pad); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.social-left { }
.social-label { font-size: 0.62rem; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.3); display: block; margin-bottom: 8px; }
.social-title { font-family: var(--serif); font-style: italic; font-size: 1.5rem; font-weight: 300; color: var(--off); }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link { display: flex; align-items: center; gap: 10px; padding: 13px 20px; border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.55); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; transition: all 0.2s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ════════════════════════════════════════
   FOOTER  (charcoal, minimal)
════════════════════════════════════════ */
footer { background: var(--charcoal); padding: 32px var(--pad); border-top: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-logo img { height: 28px; filter: brightness(0) invert(1); opacity: 0.3; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.62rem; color: rgba(255,255,255,0.18); letter-spacing: 0.08em; }

/* ════════════════════════════════════════
   LIGHTBOX
════════════════════════════════════════ */
.lb { position: fixed; inset: 0; z-index: 500; background: rgba(10,10,10,0.96); display: none; align-items: center; justify-content: center; padding: 5vw; }
.lb.open { display: flex; }
.lb-inner { position: relative; max-width: 1100px; width: 100%; }
.lb-img { width: 100%; max-height: 85vh; object-fit: contain; display: block; }
.lb-cap { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); text-align: center; margin-top: 14px; }
.lb-close, .lb-prev, .lb-next { position: fixed; background: none; border: none; color: rgba(255,255,255,0.4); cursor: pointer; font-size: 1.3rem; transition: color 0.2s; z-index: 501; }
.lb-close { top: 24px; right: 28px; }
.lb-prev { left: 16px; top: 50%; transform: translateY(-50%); padding: 16px 14px; background: rgba(255,255,255,0.08); }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); padding: 16px 14px; background: rgba(255,255,255,0.08); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: var(--white); }

/* ════════════════════════════════════════
   STICKY MOBILE CTA
════════════════════════════════════════ */
.mob-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 150; background: var(--gold); }
.mob-cta a { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--white); font-weight: 400; }

/* ════════════════════════════════════════
   GALLERY PAGE  (separate page)
════════════════════════════════════════ */
.gal-page { min-height: 100svh; background: var(--charcoal); }
.gal-header { padding: 110px var(--pad) 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.gal-header .h1 { color: var(--off); margin-top: 14px; }
.gal-tabs { display: flex; background: var(--charcoal); border-bottom: 1px solid rgba(255,255,255,0.08); }
.gal-tab { flex: 1; padding: 18px; text-align: center; font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.3); cursor: pointer; border: none; background: none; border-bottom: 2px solid transparent; transition: all 0.2s; }
.gal-tab.active { color: var(--gold); border-bottom-color: var(--gold); }
.gal-tab:hover { color: rgba(255,255,255,0.65); }
.gal-panel { display: none; }
.gal-panel.active { display: block; }
.gal-grid { display: flex; flex-direction: column; gap: 4px; padding: 4px; }
.gal-item { position: relative; overflow: hidden; cursor: pointer; }
.gal-item img { width: 100%; display: block; object-fit: cover; transition: transform 0.8s var(--ease); }
.gal-item:hover img { transform: scale(1.03); }
.gal-over { position: absolute; inset: 0; background: rgba(0,0,0,0); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; opacity: 0; transition: all 0.3s; }
.gal-item:hover .gal-over { background: rgba(0,0,0,0.2); opacity: 1; }
.gal-cap { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 20px; background: linear-gradient(transparent, rgba(0,0,0,0.5)); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
@media(min-width:800px) { .gal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; } .gal-item.wide { grid-column: 1/3; } }
.facts-section { background: var(--white); padding: 80px var(--pad); }
.facts-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-bottom: 56px; }
.facts-stat { background: var(--off); padding: 28px 24px; text-align: center; }
.facts-stat-n { font-family: var(--serif); font-size: 2.4rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.facts-stat-l { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.facts-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.facts-col-title { font-family: var(--serif); font-style: italic; font-size: 1.25rem; font-weight: 300; color: var(--charcoal); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.facts-list { display: flex; flex-direction: column; gap: 8px; }
.facts-list li { font-size: 0.88rem; color: var(--mid); list-style: none; display: flex; gap: 10px; align-items: baseline; }
.facts-list li::before { content: '·'; color: var(--gold); flex-shrink: 0; }

/* ════════════════════════════════════════
   MINIBAR PAGE
════════════════════════════════════════ */
.order-page { min-height: 100svh; background: var(--white); padding: 100px var(--pad) 120px; }
.order-head { text-align: center; margin-bottom: 60px; }
.order-head .h1 { margin-top: 12px; }
.order-head-sub { font-size: 0.9rem; color: var(--muted); max-width: 460px; margin: 14px auto 0; line-height: 1.8; }
.order-cats { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 48px; }
.order-cat-title { font-family: var(--serif); font-style: italic; font-size: 1.4rem; font-weight: 300; color: var(--charcoal); padding-bottom: 14px; border-bottom: 1px solid var(--border); margin-bottom: 0; }
.order-items { display: flex; flex-direction: column; }
.order-item { display: flex; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
.order-item:last-child { border-bottom: none; }
.order-item-info { flex: 1; }
.order-item-name { font-size: 0.92rem; color: var(--charcoal); margin-bottom: 3px; }
.order-item-price { font-size: 0.74rem; color: var(--gold); }
.qty { display: flex; align-items: center; border: 1px solid var(--border); flex-shrink: 0; }
.qty-btn { width: 36px; height: 36px; background: none; border: none; color: var(--mid); font-size: 1.1rem; cursor: pointer; transition: background 0.15s; }
.qty-btn:hover { background: var(--off); }
.qty-val { width: 36px; text-align: center; font-size: 0.9rem; color: var(--charcoal); }
.order-summary { max-width: 700px; margin: 48px auto 0; background: var(--off); border: 1px solid var(--border); padding: 32px 36px; }
.order-summary-title { font-family: var(--serif); font-style: italic; font-size: 1.25rem; font-weight: 300; color: var(--charcoal); margin-bottom: 16px; }
.order-summary-list { font-size: 0.85rem; color: var(--mid); margin-bottom: 20px; min-height: 22px; line-height: 1.8; }
.order-summary-empty { color: var(--muted); font-style: italic; }
.order-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.order-field label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.order-field input { background: var(--white); border: 1px solid var(--border); padding: 11px 13px; font-family: var(--sans); font-size: 0.88rem; color: var(--charcoal); outline: none; transition: border-color 0.2s; width: 100%; }
.order-field input:focus { border-color: var(--gold); }
.order-send { width: 100%; background: var(--charcoal); color: var(--white); border: none; padding: 16px; font-family: var(--sans); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; margin-top: 6px; }
.order-send:hover { background: #333; }
.order-send-note { font-size: 0.7rem; color: var(--muted); text-align: center; margin-top: 10px; }

/* ════════════════════════════════════════
   VR PAGE
════════════════════════════════════════ */
.vr-page { min-height: 100svh; background: var(--white); display: flex; flex-direction: column; align-items: center; }
.vr-topbar { width: 100%; background: var(--charcoal); padding: 14px var(--pad); display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(255,255,255,0.08); }
.vr-topbar-left { display: flex; align-items: center; gap: 12px; }
.vr-avatar { width: 38px; height: 38px; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
.vr-info-name { font-size: 0.85rem; color: rgba(255,255,255,0.85); font-weight: 400; margin-bottom: 2px; }
.vr-info-status { display: flex; align-items: center; gap: 5px; font-size: 0.62rem; color: rgba(255,255,255,0.38); }
.vr-status-dot { width: 5px; height: 5px; background: #4caf80; border-radius: 50%; animation: vdot 2.5s infinite; }
.vr-topbar-logo img { height: 26px; filter: brightness(0) invert(1); opacity: 0.35; }
.vr-chat-wrap { width: 100%; max-width: 680px; flex: 1; display: flex; flex-direction: column; }
.vr-welcome-card { margin: 24px 16px 8px; background: var(--off); border: 1px solid var(--border); padding: 22px 24px; text-align: center; }
.vr-welcome-card h2 { font-family: var(--serif); font-style: italic; font-size: 1.3rem; font-weight: 300; color: var(--charcoal); margin-bottom: 8px; }
.vr-welcome-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.7; }
.vr-topics { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 12px; }
.vr-topic { font-size: 0.58rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(184,147,90,0.3); padding: 5px 10px; }
.vr-messages { flex: 1; padding: 12px 16px; display: flex; flex-direction: column; gap: 8px; overflow-y: auto; min-height: 340px; }
.vr-messages::-webkit-scrollbar { width: 2px; }
.vr-messages::-webkit-scrollbar-thumb { background: var(--border); }
.msg-r { display: flex; }
.msg-r.bot { justify-content: flex-start; }
.msg-r.usr { justify-content: flex-end; }
.msg-b { max-width: 78%; padding: 11px 15px; font-size: 0.86rem; line-height: 1.65; word-break: break-word; }
.msg-b.bot { background: var(--off); color: var(--charcoal); border: 1px solid var(--border); border-radius: 2px 12px 12px 12px; }
.msg-b.usr { background: var(--gold); color: var(--white); border-radius: 12px 2px 12px 12px; }
.msg-time { font-size: 0.56rem; color: var(--muted); margin-top: 4px; }
.msg-b.usr .msg-time { color: rgba(255,255,255,0.6); text-align: right; }
.typing-wrap { display: flex; gap: 4px; align-items: center; padding: 12px 14px; background: var(--off); border: 1px solid var(--border); border-radius: 2px 12px 12px 12px; width: fit-content; }
.typing-wrap span { width: 5px; height: 5px; background: var(--muted); border-radius: 50%; animation: tdot 1.2s infinite; }
.typing-wrap span:nth-child(2){animation-delay:.2s} .typing-wrap span:nth-child(3){animation-delay:.4s}
@keyframes tdot{0%,60%,100%{opacity:.25;transform:scale(1)}30%{opacity:1;transform:scale(1.3)}}
.vr-quick-btns { padding: 6px 16px 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.vr-q { font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.06em; color: var(--mid); border: 1px solid var(--border); background: var(--white); padding: 8px 14px; border-radius: 20px; cursor: pointer; transition: all 0.18s; }
.vr-q:hover { border-color: var(--gold); color: var(--gold); }
.vr-handoff { margin: 6px 16px 0; padding: 14px 18px; background: var(--off); border: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.vr-handoff p { font-size: 0.76rem; color: var(--mid); }
.vr-handoff strong { color: var(--charcoal); font-weight: 400; }
.vr-handoff-btn { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; background: var(--gold); color: var(--white); padding: 9px 16px; transition: background 0.2s; white-space: nowrap; }
.vr-handoff-btn:hover { background: var(--gold-lt); }
.vr-input-row { display: flex; background: var(--white); border-top: 1px solid var(--border); padding: 10px 14px; gap: 10px; align-items: center; position: sticky; bottom: 0; }
.vr-txt { flex: 1; background: var(--off); border: 1px solid var(--border); border-radius: 22px; padding: 11px 18px; font-family: var(--sans); font-size: 0.88rem; color: var(--charcoal); outline: none; transition: border-color 0.2s; }
.vr-txt::placeholder { color: var(--muted); }
.vr-txt:focus { border-color: var(--gold); }
.vr-send-btn { width: 42px; height: 42px; background: var(--gold); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.95rem; transition: background 0.2s; flex-shrink: 0; }
.vr-send-btn:hover { background: var(--gold-lt); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media(max-width:1024px) { .area-cats { grid-template-columns: 1fr 1fr; } .facts-stats { grid-template-columns: 1fr 1fr; } }
@media(max-width:900px) {
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .intro-strip { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-copy { border-right: none; border-bottom: 1px solid var(--border); padding: 64px var(--pad); order: 2; }
  .about-img { min-height: 280px; order: 1; }
  .season-grid { grid-template-columns: 1fr; }
  .balinese { padding: 72px var(--pad); }
  .balinese-inner { grid-template-columns: 1fr; gap: 40px; }
  .bali-grid { grid-template-columns: 1fr 1fr; }
  .day { padding: 72px var(--pad); }
  .day-header { grid-template-columns: 1fr; gap: 20px; }
  .day-timeline { max-width: 100%; }
  .gallery-10 { grid-template-columns: 1fr 1fr; }
  .gallery-10 .g-item:nth-child(odd)  { height: 260px; }
  .gallery-10 .g-item:nth-child(even) { height: 200px; }
  .why-grid { grid-template-columns: 1fr; gap: 2px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 200px 200px; }
  .ga { grid-column: 1/3; grid-row: 1; } .gb { grid-column: 1; grid-row: 2; } .gc { grid-column: 2; grid-row: 2; } .gd { grid-column: 1; grid-row: 3; } .ge { grid-column: 2; grid-row: 3; }
  .amenities-layout { grid-template-columns: 1fr; gap: 40px; }
  .amenities-cats { grid-template-columns: 1fr 1fr; }
  .area-cats { grid-template-columns: 1fr 1fr; }
  .booking-layout { grid-template-columns: 1fr; gap: 48px; }
  .vr-teaser { grid-template-columns: 1fr; gap: 40px; }
  .social { flex-direction: column; align-items: flex-start; }
  footer { flex-direction: column; align-items: flex-start; }
  .mob-cta { display: block; }
  body { padding-bottom: 52px; }
  .facts-cols { grid-template-columns: 1fr; gap: 36px; }
}
@media(max-width:600px) {
  /* ── Hero mobile: prevent overflow into nav ── */
  .hero { padding: 80px 20px 28px; min-height: 100svh; justify-content: flex-end; }
  .hero-content { width: 100%; }
  .display { font-size: clamp(2rem, 10vw, 2.8rem); }
  .hero h1 { margin-bottom: 8px; }
  .hero-location { margin-bottom: 10px; }
  .hero-tagline { font-size: 0.9rem; margin-bottom: 12px; }
  .hero-desc { display: none; }
  .hero-actions { flex-direction: column; gap: 8px; margin-bottom: 20px; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 13px 20px; }
  /* Stats: 2x2 grid */
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.2);
  }
  .hero-stat { flex: unset; min-width: unset; padding: 12px 14px; }
  .hero-stat + .hero-stat { border-left: none; padding-left: 14px; border-top: none; padding-top: 12px; }
  .hero-stat:nth-child(1),
  .hero-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.15); }
  .hero-stat:nth-child(1),
  .hero-stat:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.15); }
  .hero-stat-n { font-size: 1.5rem; }
  .hero-stat-l { font-size: 0.55rem; }
  /* Other mobile */
  .bali-grid { grid-template-columns: 1fr; }
  .bali-card:nth-child(2n) { border-right: 1px solid var(--border); }
  .bali-card:nth-child(3) { border-bottom: 1px solid var(--border); }
  .day-grid { grid-template-columns: 1fr; }
  .gallery-10 { grid-template-columns: 1fr; }
  .gallery-10 .g-item:nth-child(odd),
  .gallery-10 .g-item:nth-child(even) { height: 260px; }
  .day-tl-item { grid-template-columns: 20px 1fr; gap: 18px; }
  .amenities-cats { grid-template-columns: 1fr; }
  .area-cats { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .facts-stats { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════
   GALLERY SPLIT — images left, video right
════════════════════════════════════════ */
.gallery-split {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 30px;
  align-items: start;
}
.gallery-split-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.gallery-split-images .g-item {
  height: 164px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--light);
  display: block;
}
.gallery-split-images .g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.gallery-split-images .g-item:hover img { transform: scale(1.06); }
.gallery-split-images .g-item .g-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.gallery-split-images .g-item:hover .g-overlay { background: rgba(0,0,0,0.18); }
.gallery-split-images .g-plus { font-size: 1.4rem; color: #fff; opacity: 0; transition: opacity 0.3s; }
.gallery-split-images .g-item:hover .g-plus { opacity: 1; }
.gallery-split-images .g-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 8px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  font-size: 0.56rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* Vertical phone video */
.gallery-split-video {
  position: sticky;
  top: 80px;
}
.gallery-video-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 16;
  width: 100%;
}
.gallery-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-video-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 18px 14px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

@media (max-width: 900px) {
  .gallery-split {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .gallery-split-images {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-split-images .g-item { height: 130px; }
  .gallery-split-video {
    position: static;
    max-width: 260px;
    margin: 6px auto 0;
  }
}
@media (max-width: 600px) {
  .gallery-split-images { grid-template-columns: repeat(3, 1fr); }
  .gallery-split-images .g-item { height: 110px; }
  .gallery-split-video { max-width: 220px; }
}