/* ================================================================
   KASHVI INTERNATIONAL — Design System  (kashvi.css)
   This file was missing — add it to assets/css/
   ================================================================ */

/* ── Design Tokens ───────────────────────────────────────────── */
:root {
  --gold:        #c9a96e;
  --gold-light:  #e8d5a3;
  --gold-dark:   #9a7340;
  --cream:       #faf7f2;
  --off-white:   #f5f1eb;
  --dark:        #0d0d0d;
  --dark-2:      #141414;
  --dark-3:      #1e1e1e;
  --charcoal:    #2c2c2c;
  --kv-text:     #1a1a1a;
  --kv-muted:    #6b6b6b;
  --kv-light:    #9a9a9a;
  --kv-border:   rgba(0,0,0,.08);
  --gold-border: rgba(201,169,110,.25);
  --shadow-sm:   0 2px 16px rgba(0,0,0,.06);
  --shadow-md:   0 8px 40px rgba(0,0,0,.10);
  --shadow-lg:   0 20px 60px rgba(0,0,0,.15);
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Josefin Sans', sans-serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --ease:        cubic-bezier(.4,0,.2,1);
  --trans:       .35s cubic-bezier(.4,0,.2,1);
}

/* ── Base reset (scoped so it doesn't fight main.css) ─────────── */
body { -webkit-font-smoothing: antialiased; }
img  { display: block; max-width: 100%; }

/* ── Typography helpers ──────────────────────────────────────── */
.kv-eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: .63rem;
  font-weight: 500;
  letter-spacing: .48em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.kv-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -.01em;
  color: var(--kv-text);
  margin-bottom: 0;
}
.kv-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--kv-text);
  margin-bottom: 0;
}
.kv-h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.8vw, 2.3rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--kv-text);
  margin-bottom: 0;
}
.kv-h1.light, .kv-h2.light, .kv-h3.light { color: #fff; }
.kv-lead {
  font-family: var(--font-body);
  font-size: .97rem;
  line-height: 1.82;
  color: var(--kv-muted);
  font-weight: 300;
}

/* ── Gold divider ─────────────────────────────────────────────── */
.kv-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
}
.kv-divider::before,
.kv-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}
.kv-divider-dot {
  width: 6px; height: 6px;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Section wrappers ─────────────────────────────────────────── */
.kv-section      { padding: clamp(56px,7.5vw,116px) 0; }
.kv-section-sm   { padding: clamp(36px,5vw,72px) 0; }
.kv-section-dark { background: var(--dark-2); }
.kv-section-cream{ background: var(--cream); }
.kv-section-title{ margin-bottom: clamp(36px,5vw,64px); }
.kv-section-title.centered { text-align: center; }
.kv-section-title.centered .kv-divider { justify-content: center; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn-kv-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #fff !important;
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: 15px 34px;
  border: 1px solid var(--gold);
  cursor: pointer;
  text-decoration: none !important;
  transition: background var(--trans), border-color var(--trans);
  line-height: 1;
}
.btn-kv-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

.btn-kv-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: 14px 33px;
  cursor: pointer;
  text-decoration: none !important;
  transition: background var(--trans), color var(--trans);
  line-height: 1;
}
.btn-kv-outline:hover { background: var(--gold); color: #fff !important; }
.btn-kv-outline.light {
  color: rgba(255,255,255,.85) !important;
  border-color: rgba(255,255,255,.45);
}
.btn-kv-outline.light:hover {
  background: #fff;
  color: var(--dark) !important;
  border-color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   NAVBAR  (overrides the old Grandoria header completely)
   ══════════════════════════════════════════════════════════════ */
#kv-header {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 1000;
}

/* ── Topbar ── */
.kv-topbar {
  background: #0d1f1a;
  padding: 7px 0;
  font-family: var(--font-sans);
  font-size: .63rem;
  letter-spacing: .08em;
  border-bottom: 1px solid rgba(201,169,110,.12);
}
.kv-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.kv-topbar-left { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.kv-topbar-left a {
  color: rgba(255,255,255,.52);
  text-decoration: none;
  transition: color .2s;
  display: flex; align-items: center; gap: 5px;
}
.kv-topbar-left a:hover { color: var(--gold); }
.kv-topbar-left .sep { color: rgba(255,255,255,.2); }
.kv-topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Property switcher */
.property-switcher { display: flex; gap: 3px; }
.ps-item {
  font-family: var(--font-sans);
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  padding: 4px 9px;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: .2s;
  text-decoration: none !important;
  display: flex; align-items: center; gap: 5px;
}
.ps-item:hover,
.ps-item.active {
  color: var(--gold) !important;
  border-color: rgba(201,169,110,.32);
  background: rgba(201,169,110,.07);
}

.kv-socials { display: flex; gap: 11px; }
.kv-socials a {
  color: rgba(255,255,255,.3);
  font-size: .85rem;
  text-decoration: none;
  transition: color .2s;
}
.kv-socials a:hover { color: var(--gold); }

/* ── Main nav bar ── */
.kv-nav {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: box-shadow .3s;
  padding: 0;
  /* Reset any Grandoria header styles */
  position: relative !important;
  top: auto !important;
}
.kv-nav.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.08); }
.kv-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

/* Logo */
.kv-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  padding: 13px 0;
  text-decoration: none !important;
}
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: #0d1f1a;
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: .52rem;
  letter-spacing: .44em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

/* Nav links */
.kv-navlinks {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
}
.kv-navlinks li { margin: 0; padding: 0; }
.kv-navlinks li a {
  display: block;
  font-family: var(--font-sans);
  font-size: .66rem;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--kv-muted) !important;
  padding: 22px 15px;
  text-decoration: none !important;
  position: relative;
  transition: color .25s;
  white-space: nowrap;
  background: none !important;
}
.kv-navlinks li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 15px; right: 15px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s ease;
}
.kv-navlinks li a:hover,
.kv-navlinks li a.active {
  color: #0d1f1a !important;
}
.kv-navlinks li a:hover::after,
.kv-navlinks li a.active::after { transform: scaleX(1); }

/* Book Now btn */
.kv-book-btn {
  background: var(--gold);
  color: #fff !important;
  font-family: var(--font-sans);
  font-size: .6rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  padding: 11px 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none !important;
  transition: background .25s;
  white-space: nowrap;
  margin-left: 16px;
  flex-shrink: 0;
}
.kv-book-btn:hover { background: var(--gold-dark); }

/* Hamburger */
.kv-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: 10px;
}
.kv-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: #0d1f1a;
  transition: .3s;
}
.kv-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.kv-hamburger.active span:nth-child(2) { opacity: 0; }
.kv-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Page body offset for fixed header ── */
body.hotel-site main,
body.hotel-site > section:first-of-type,
.kv-hero,
.kvk-hero,
.mall-hero,
.kv-page-title {
  /* JS sets this dynamically, but provide safe fallback */
  padding-top: 90px;
}
/* welcome.php has its own full-screen layout, no offset needed */
body.welcome-page { overflow: hidden; }

/* ══════════════════════════════════════════════════════════════
   HERO — Hotel index page
   ══════════════════════════════════════════════════════════════ */
.kv-hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 0 !important; /* hero is the bg, offset handled differently */
}
.kv-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.48);
  animation: kvKen 12s ease-in-out infinite alternate;
}
@keyframes kvKen {
  from { transform: scale(1.04); }
  to   { transform: scale(1.00) translateX(-1%); }
}
.kv-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.22) 65%, transparent 100%);
}
.kv-hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}
.kv-hero-content .kv-eyebrow { color: var(--gold-light); }
.kv-hero-content .kv-h1 { color: #fff; margin-bottom: 18px; }
.kv-hero-content .kv-lead { color: rgba(255,255,255,.68); margin-bottom: 34px; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Quick booking bar */
.hero-booking-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-top: 3px solid var(--gold);
}
.hero-booking-bar .container {
  display: flex;
  align-items: stretch;
  min-height: 76px;
}
.hbb-field {
  flex: 1;
  padding: 14px 22px;
  border-right: 1px solid rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hbb-field:last-of-type { border-right: none; }
.hbb-label {
  font-family: var(--font-sans);
  font-size: .55rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 5px;
}
.hbb-field input,
.hbb-field select {
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--kv-text);
  background: transparent;
  width: 100%;
  padding: 0;
}
.hbb-btn {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 0 34px;
  font-family: var(--font-sans);
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.hbb-btn:hover { background: var(--gold-dark); }

/* ══════════════════════════════════════════════════════════════
   ABOUT STRIP (dark bar under hero)
   ══════════════════════════════════════════════════════════════ */
.kv-about-strip {
  background: #0d1f1a;
  padding: 24px 0;
  border-bottom: 1px solid rgba(201,169,110,.12);
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.strip-item:last-child { border-right: none; }
.strip-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.05rem;
}
.strip-label {
  font-family: var(--font-sans);
  font-size: .57rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-bottom: 3px;
}
.strip-value {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════════════════════ */
.kv-stats-bar {
  background: #0d1f1a;
  padding: 36px 0;
  border-top: 1px solid rgba(201,169,110,.12);
  border-bottom: 1px solid rgba(201,169,110,.12);
}
.stat-kv { text-align: center; padding: 0 18px; }
.stat-kv-num {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem,3.5vw,3rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-kv-label {
  font-family: var(--font-sans);
  font-size: .56rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
  margin-top: 6px;
  display: block;
}

/* ══════════════════════════════════════════════════════════════
   ROOM CARDS
   ══════════════════════════════════════════════════════════════ */
.room-card-kv {
  border: 1px solid var(--kv-border);
  overflow: hidden;
  transition: var(--trans);
  background: #fff;
}
.room-card-kv:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.room-card-kv:hover .room-img-kv { transform: scale(1.05); }

.room-img-wrap { overflow: hidden; position: relative; height: 255px; }
.room-img-kv { width: 100%; height: 100%; object-fit: cover; transition: transform .75s var(--ease); }

.room-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-sans);
  font-size: .56rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.room-price-badge {
  position: absolute; bottom: 14px; right: 14px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 7px 14px;
  text-align: right;
}
.room-price-badge .amount {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  color: var(--gold-light);
}
.room-price-badge .per-night {
  font-size: .57rem;
  color: rgba(255,255,255,.48);
  letter-spacing: .18em;
  display: block;
}
.room-body-kv { padding: 22px; }
.room-name-kv {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--kv-text);
}
.room-meta { display: flex; gap: 14px; margin-bottom: 12px; flex-wrap: wrap; }
.room-meta span {
  font-family: var(--font-sans);
  font-size: .6rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--kv-muted);
  display: flex; align-items: center; gap: 5px;
}
.room-meta i { color: var(--gold); }
.room-desc-kv { font-size: .86rem; color: var(--kv-muted); line-height: 1.7; margin-bottom: 18px; }
.room-amenities { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 20px; }
.amenity-tag {
  font-family: var(--font-sans);
  font-size: .56rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--kv-muted);
  border: 1px solid var(--kv-border);
  padding: 4px 9px;
}
.room-footer-kv {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--kv-border);
}

/* ══════════════════════════════════════════════════════════════
   GALLERY GRID
   ══════════════════════════════════════════════════════════════ */
.kv-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  grid-auto-rows: 200px;
  gap: 10px;
}
.kv-gallery-grid .gi { overflow: hidden; cursor: pointer; position: relative; }
.kv-gallery-grid .gi:nth-child(1)  { grid-column: span 5; grid-row: span 2; }
.kv-gallery-grid .gi:nth-child(2)  { grid-column: span 4; }
.kv-gallery-grid .gi:nth-child(3)  { grid-column: span 3; }
.kv-gallery-grid .gi:nth-child(4)  { grid-column: span 4; }
.kv-gallery-grid .gi:nth-child(5)  { grid-column: span 3; }
.kv-gallery-grid .gi:nth-child(n+6){ grid-column: span 4; }
.gi img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease); }
.gi:hover img { transform: scale(1.07); }
.gi-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.38);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.gi:hover .gi-overlay { opacity: 1; }
.gi-overlay i { color: #fff; font-size: 1.4rem; }

/* ══════════════════════════════════════════════════════════════
   RESTAURANT / KV'S KITCHEN PAGE
   ══════════════════════════════════════════════════════════════ */
.kvk-hero {
  position: relative;
  height: 70vh; min-height: 480px;
  display: flex; align-items: flex-end;
  overflow: hidden;
  padding-top: 0 !important;
}
.kvk-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.44);
  animation: kvKen 10s ease-in-out infinite alternate;
}
.kvk-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.2) 65%, transparent 100%);
}
.kvk-hero-content { position: relative; z-index: 2; padding: 52px 0; }

/* Table cards */
.table-card {
  background: #fff;
  border: 1px solid var(--kv-border);
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.table-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.table-card-img { height: 175px; overflow: hidden; }
.table-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.table-card:hover .table-card-img img { transform: scale(1.06); }
.table-card-body { padding: 18px; }
.table-card-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 5px;
  color: var(--kv-text);
}
.table-card-section {
  font-family: var(--font-sans);
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 9px;
}
.table-cap {
  font-size: .8rem;
  color: var(--kv-muted);
  display: flex; align-items: center; gap: 5px;
}
.table-avail-badge {
  position: absolute; top: 10px; right: 10px;
  font-family: var(--font-sans);
  font-size: .56rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 4px 11px;
}
.avail-yes { background: rgba(25,135,84,.88);  color: #fff; }
.avail-no  { background: rgba(220,53,69,.88);   color: #fff; }

/* Reservation form section */
.kv-reserve-wrap {
  background: #0d1f1a;
  padding: clamp(50px,7vw,96px) 0;
}
.kv-form-panel {
  background: #fff;
  padding: clamp(28px,4vw,52px);
}
.kv-form-label {
  font-family: var(--font-sans);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--kv-muted);
  margin-bottom: 7px;
  display: block;
}
.kv-form-control {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,.12);
  border-radius: 0;
  padding: 9px 0;
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--kv-text);
  background: transparent;
  outline: none;
  transition: border-color .25s;
  appearance: none;
}
.kv-form-control:focus { border-color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   PAGE TITLE BAR
   ══════════════════════════════════════════════════════════════ */
.kv-page-title {
  padding: clamp(95px,11vw,150px) 0 clamp(36px,5vw,64px);
  background: #0d1f1a;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,169,110,.12);
}
.kv-page-title::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,169,110,.07) 0%, transparent 60%);
}
.kv-page-title .kv-h2 { color: #fff; position: relative; }
.kv-breadcrumbs {
  font-family: var(--font-sans);
  font-size: .58rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  margin-top: 12px;
  position: relative;
}
.kv-breadcrumbs a { color: var(--gold); text-decoration: none; }
.kv-breadcrumbs .sep { margin: 0 10px; }

/* ══════════════════════════════════════════════════════════════
   TESTIMONIAL
   ══════════════════════════════════════════════════════════════ */
.kv-testimonial {
  background: var(--cream);
  padding: clamp(56px,8vw,104px) 0;
  text-align: center;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem,2.4vw,1.9rem);
  font-weight: 300;
  font-style: italic;
  color: var(--kv-text);
  line-height: 1.65;
  max-width: 740px;
  margin: 0 auto 22px;
}
.testimonial-stars { color: var(--gold); font-size: .95rem; margin-bottom: 18px; }
.testimonial-attr {
  font-family: var(--font-sans);
  font-size: .6rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.kv-footer {
  background: #0d1f1a;
  color: rgba(255,255,255,.55);
}
.kv-footer-top {
  padding: clamp(46px,7vw,86px) 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: .07em;
  margin-bottom: 14px;
}
.footer-logo span { color: var(--gold); }
.footer-about {
  font-size: .84rem;
  line-height: 1.8;
  max-width: 295px;
  margin-bottom: 20px;
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 34px; height: 34px;
  border: 1px solid rgba(201,169,110,.22);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.42);
  font-size: .88rem;
  text-decoration: none;
  transition: .25s;
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-heading {
  font-family: var(--font-sans);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-size: .83rem;
  color: rgba(255,255,255,.42);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-contact .fc-item {
  display: flex; gap: 11px; margin-bottom: 11px; font-size: .83rem;
}
.footer-contact .fc-item i { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact .fc-item a { color: rgba(255,255,255,.42); text-decoration: none; }
.footer-contact .fc-item a:hover { color: var(--gold); }
.kv-footer-bottom {
  padding: 18px 0;
  font-family: var(--font-sans);
  font-size: .6rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.22);
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: space-between;
  align-items: center;
}
.kv-footer-bottom a {
  color: rgba(255,255,255,.32);
  text-decoration: none;
  transition: color .2s;
}
.kv-footer-bottom a:hover { color: var(--gold); }

/* ── Back to top ── */
.kv-back-top {
  position: fixed;
  bottom: 26px; right: 26px;
  width: 42px; height: 42px;
  background: var(--gold);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  text-decoration: none;
  opacity: 0; visibility: hidden;
  transition: .3s;
  z-index: 999;
}
.kv-back-top.show { opacity: 1; visibility: visible; }
.kv-back-top:hover { background: var(--gold-dark); color: #fff; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  .kv-topbar { display: none; }

  .kv-nav .container {
    flex-wrap: wrap;
    padding: 10px 16px;
    position: relative;
  }

  /* Mobile nav dropdown */
  .kv-navlinks {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    border-top: 2px solid var(--gold);
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    z-index: 200;
    padding: 8px 0;
  }
  .kv-navlinks.open { display: flex; }
  .kv-navlinks li a { padding: 11px 24px; font-size: .72rem; }
  .kv-navlinks li a::after { display: none; }

  .kv-hamburger { display: flex; }
  .kv-book-btn  { margin-left: auto; margin-right: 8px; font-size: .58rem; padding: 9px 14px; }
  .kv-logo      { padding: 10px 0; }
  .logo-main    { font-size: 1.3rem; }

  .kv-gallery-grid .gi:nth-child(n) { grid-column: span 6; grid-row: span 1; }

  .hero-booking-bar .container { flex-wrap: wrap; }
  .hbb-field {
    flex: 1 1 42%;
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,.07);
    padding: 12px 16px;
  }
  .hbb-btn { width: 100%; padding: 16px; justify-content: center; }

  .strip-item { padding: 0 14px; }
}

@media (max-width: 576px) {
  .kv-gallery-grid .gi:nth-child(n) { grid-column: span 12; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-kv-primary, .btn-kv-outline { width: 100%; justify-content: center; }
  .kv-h1 { font-size: 2.2rem; }
  .kv-h2 { font-size: 1.7rem; }
}
