
/* ============================================================
   Hotel Krone — Main Stylesheet
   Design: Deep Navy + Warm Gold | Playfair Display + Inter
   ============================================================ */

/* ── 1. CSS Custom Properties ─────────────────────────────── */
:root {
  --navy:         #1A2535;
  --navy-deep:    #0D1620;
  --navy-mid:     #243347;
  --gold:         #C9A84C;
  --gold-hover:   #B8962E;
  --gold-light:   #F5E9C0;
  --gold-pale:    #FDF8ED;
  --cream:        #FAFAF8;
  --cream-dark:   #F0EBE1;
  --border:       #E8E2D5;
  --text:         #1A1A1A;
  --text-muted:   #6B7280;
  --text-light:   #9CA3AF;
  --white:        #FFFFFF;

  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-display:  'Cinzel', 'Trajan Pro', serif;
  --font-sans:     'Inter', system-ui, sans-serif;
  --font-elegant:  'Cormorant Garamond', 'Times New Roman', serif;

  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow-sm:    0 2px 8px rgba(26,37,53,0.06);
  --shadow:       0 4px 24px rgba(26,37,53,0.10);
  --shadow-lg:    0 12px 48px rgba(26,37,53,0.16);

  --container:    1200px;
  --container-wide: 1400px;
  --header-h:     80px;

  --transition:   all 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: all 0.15s ease;
}

/* ── 2. Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
a { color: inherit; text-decoration: none; transition: var(--transition-fast); }
ul, ol { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── Custom Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar              { width: 6px; height: 6px; }
::-webkit-scrollbar-track        { background: var(--navy-deep); }
::-webkit-scrollbar-thumb        { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover  { background: var(--gold-hover); }
/* Firefox */
html { scrollbar-width: thin; scrollbar-color: var(--gold) var(--navy-deep); }

/* ── 3. Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem);  font-weight: 400; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem);}
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.hk-tagline {
  font-family: var(--font-elegant);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.hk-section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ── 4. Layout Utilities ──────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }

.hk-section { padding: 100px 0; }
.hk-section-sm { padding: 60px 0; }
.hk-section-lg { padding: 130px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }

/* ── 5. SVG Icons ─────────────────────────────────────────── */
.hk-icon { display: inline-flex; align-items: center; justify-content: center; }
.hk-icon svg { width: 1em; height: 1em; flex-shrink: 0; }

/* Accessibility ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  z-index: 9999;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* ── 6. Header / Navigation ───────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

/* Transparent on homepage hero */
.site-header.hk-transparent {
  background: transparent;
}

/* Scrolled state: glassmorphism */
.site-header.hk-scrolled {
  background: rgba(13, 22, 32, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Solid on inner pages */
.site-header.hk-solid {
  background: var(--navy-deep);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.site-header .container-wide {
  width: 100%;
  max-width: var(--container);
  padding: 0 24px;
}

.hk-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo img { height: 50px; width: auto; }

.hk-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}

/* "HOTEL" label — Cinzel spaced caps */
.hk-logo-top {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
}

/* "Krone" — Cormorant italic, large */
.hk-logo-brand {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

/* Backwards compat — keep old classes working */
.hk-logo-name  { display: none; }
.hk-logo-tagline { display: none; }

/* Primary Menu */
.primary-nav { display: flex; align-items: center; }

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav ul li a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.3px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}

.primary-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: transform 0.25s ease;
}

.primary-nav ul li a:hover,
.primary-nav ul li.current-menu-item > a {
  color: var(--gold);
}

.primary-nav ul li a:hover::after,
.primary-nav ul li.current-menu-item > a::after {
  transform: translateX(-50%) scaleX(1);
}

/* Book Now button in nav */
.hk-nav-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: var(--navy-deep) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  transition: var(--transition) !important;
}

.hk-nav-book:hover { background: var(--white) !important; color: var(--navy) !important; }
.hk-nav-book::after { display: none !important; }

/* Nav right side */
.hk-nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Language switcher */
.hk-lang-switcher,
.hk-lang-fallback { display: flex; align-items: center; gap: 4px; }

.pll-switcher-widget a,
.hk-lang-fallback a {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 3px 7px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition-fast);
}

.pll-switcher-widget a:hover,
.hk-lang-fallback a:hover,
.hk-lang-active {
  color: var(--gold) !important;
  border-color: var(--gold);
}

/* Mobile Menu Toggle */
.hk-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  padding: 8px;
}

.hk-hamburger {
  display: block;
  width: 24px;
  position: relative;
  height: 18px;
}

.hk-hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hk-hamburger span:first-child { top: 0; }
.hk-hamburger span:nth-child(2) { top: 8px; }
.hk-hamburger span:last-child { top: 16px; }

.hk-menu-toggle.is-active .hk-hamburger span:first-child { transform: rotate(45deg) translate(5px, 6px); }
.hk-menu-toggle.is-active .hk-hamburger span:nth-child(2) { opacity: 0; }
.hk-menu-toggle.is-active .hk-hamburger span:last-child  { transform: rotate(-45deg) translate(5px, -6px); }

/* ── 7. Hero Section ──────────────────────────────────────── */
.hk-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}

.hk-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hk-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hk-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,22,32,0.75) 0%,
    rgba(13,22,32,0.45) 60%,
    rgba(13,22,32,0.3) 100%
  );
  z-index: 1;
}

.hk-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-left: 8vw;
}

.hk-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 30px;
  padding: 6px 18px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 28px;
}

.hk-hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: hkPulse 2s infinite;
}

@keyframes hkPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hk-hero h1 {
  font-family: var(--font-elegant);
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  letter-spacing: -0.5px;
}

.hk-hero-subtitle {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}

.hk-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hk-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
}

.hk-scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hk-scroll-mouse::before {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: hkScroll 2s infinite;
}

@keyframes hkScroll {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(10px); }
}

/* Booking bar embedded in hero */
.hk-hero-booking-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  transform: translateY(50%);
}

/* ── 8. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg { padding: 17px 38px; font-size: 15px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* ── 9. Section Titles ────────────────────────────────────── */
.hk-section-header { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.hk-section-header h2 { margin-bottom: 16px; }
.hk-section-header p { color: var(--text-muted); font-size: 1.05rem; }

.hk-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 16px auto;
}

/* ── 10. About Section ────────────────────────────────────── */
.hk-about {
  background: var(--white);
}

.hk-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hk-about-image {
  position: relative;
}

.hk-about-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.hk-about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.hk-about-badge .year {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}

.hk-about-badge .label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.hk-about-text h2 { margin-bottom: 16px; }
.hk-about-text p  { color: var(--text-muted); margin-bottom: 16px; }

.hk-about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.hk-about-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hk-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.hk-feature-icon .hk-icon svg { width: 16px; height: 16px; }

.hk-feature-text h5 {
  font-size: 14px;
  margin-bottom: 2px;
  color: var(--navy);
}

.hk-feature-text p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* ── 11. Rooms Grid ───────────────────────────────────────── */
.hk-rooms { background: var(--cream); }

.hk-rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.hk-room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.hk-room-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.hk-room-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.hk-room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.hk-room-card:hover .hk-room-card-img img {
  transform: scale(1.06);
}

.hk-room-price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--navy-deep);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.hk-room-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hk-room-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.hk-room-card-body p {
  color: var(--text-muted);
  font-size: 14px;
  flex: 1;
  margin-bottom: 16px;
}

.hk-room-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.hk-spec {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 10px;
}
.hk-spec .hk-icon svg { width: 12px; height: 12px; }

.hk-room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.hk-room-from {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hk-room-price {
  font-family: var(--font-elegant);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.hk-room-night { font-size: 12px; font-weight: 400; color: var(--text-muted); }

/* ── 12. Amenities ────────────────────────────────────────── */
.hk-amenities {
  background: var(--navy-deep);
  color: var(--white);
}

.hk-amenities .hk-section-header h2,
.hk-amenities .hk-section-header p { color: var(--white); }

.hk-amenities .hk-section-header p { color: rgba(255,255,255,0.65); }

.hk-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
}

.hk-amenity-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.hk-amenity-item:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.hk-amenity-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(201,168,76,0.18), rgba(201,168,76,0.04));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 26px;
  transition: var(--transition);
}
.hk-amenity-icon .hk-icon { font-size: 26px; }
.hk-amenity-icon .hk-icon svg { width: 26px; height: 26px; }
.hk-amenity-item:hover .hk-amenity-icon {
  background: rgba(201,168,76,0.25);
  border-color: var(--gold);
}

.hk-amenity-item h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.hk-amenity-item p {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  margin: 0;
}

/* ── 13. Restaurant Section ───────────────────────────────── */
.hk-restaurant { background: var(--white); }

.hk-restaurant-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hk-restaurant-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hk-restaurant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hk-restaurant-image:hover img { transform: scale(1.04); }

.hk-restaurant-text h2 { margin-bottom: 8px; }

.hk-restaurant-name {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.hk-restaurant-text p { color: var(--text-muted); margin-bottom: 16px; }

.hk-restaurant-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}

.hk-restaurant-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--navy);
}

.hk-restaurant-highlight::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}

.hk-restaurant-hours {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hk-restaurant-hours .hk-icon { color: var(--gold); flex-shrink: 0; }
.hk-restaurant-hours .hk-icon svg { width: 18px; height: 18px; }

/* ── 14. Gallery ──────────────────────────────────────────── */
.hk-gallery { background: var(--cream); }

.hk-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.hk-gallery-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
}

.hk-gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.hk-gallery-item:nth-child(6) { grid-column: span 2; }

.hk-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  min-height: 180px;
}

.hk-gallery-item:hover img { transform: scale(1.08); }

.hk-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,22,32,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.hk-gallery-overlay::after {
  content: '⊕';
  font-size: 32px;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}

.hk-gallery-item:hover .hk-gallery-overlay { background: rgba(13,22,32,0.4); }
.hk-gallery-item:hover .hk-gallery-overlay::after { opacity: 1; }

/* Lightbox */
.hk-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.hk-lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.hk-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.hk-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.15s;
  background: none;
  border: none;
  padding: 8px;
}

.hk-lightbox-close:hover { opacity: 1; }

.hk-lightbox-prev,
.hk-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: var(--white);
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.hk-lightbox-prev:hover,
.hk-lightbox-next:hover { background: rgba(255,255,255,0.2); }

.hk-lightbox-prev { left: 20px; }
.hk-lightbox-next { right: 20px; }

/* ── 15. Testimonials ─────────────────────────────────────── */
.hk-testimonials { background: var(--navy); }
.hk-testimonials .hk-section-tag { color: var(--gold); }
.hk-testimonials .hk-section-header h2 { color: var(--white); }

.hk-testimonials-slider {
  position: relative;
  overflow: hidden;
}

.hk-testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hk-testimonial-slide {
  flex: 0 0 100%;
  padding: 0 8px;
}

@media (min-width: 768px) {
  .hk-testimonial-slide { flex: 0 0 50%; }
}

@media (min-width: 1024px) {
  .hk-testimonial-slide { flex: 0 0 33.333%; }
}

.hk-testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  position: relative;
  transition: var(--transition);
}

.hk-testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(201,168,76,0.3);
}

.hk-testimonial-quote {
  font-size: 48px;
  color: var(--gold);
  font-family: var(--font-serif);
  line-height: 0.6;
  margin-bottom: 16px;
  opacity: 0.6;
}

.hk-testimonial-text {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}

.hk-testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hk-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hk-testimonial-meta h5 {
  color: var(--white);
  font-size: 14px;
  margin-bottom: 2px;
}

.hk-testimonial-meta span {
  color: rgba(255,255,255,0.4);
  font-size: 12px;
}

.hk-stars { display: block; margin-bottom: 8px; }
.hk-star-filled { color: var(--gold); }
.hk-star-empty  { color: rgba(255,255,255,0.2); }

/* Slider dots */
.hk-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.hk-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  padding: 0;
}

.hk-dot.is-active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ── 16. Stats Counter ────────────────────────────────────── */
.hk-stats { background: var(--cream-dark); }

.hk-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.hk-stat {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
}

.hk-stat:last-child { border-right: none; }
.hk-stat:hover { background: var(--navy); }

.hk-stat:hover .hk-stat-number,
.hk-stat:hover .hk-stat-suffix { color: var(--gold); }

.hk-stat:hover .hk-stat-label { color: rgba(255,255,255,0.7); }

.hk-stat-number {
  font-family: var(--font-elegant);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  transition: var(--transition);
  letter-spacing: -1px;
}

.hk-stat-suffix {
  font-size: 1.5rem;
  color: var(--gold);
  font-family: var(--font-serif);
  transition: var(--transition);
}

.hk-stat-label {
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-top: 10px;
  transition: var(--transition);
}

/* ── 17. CTA Banner ───────────────────────────────────────── */
.hk-cta {
  position: relative;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
}

.hk-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><path d="M30 0 L60 30 L30 60 L0 30Z" fill="none" stroke="rgba(201,168,76,0.08)" stroke-width="1"/></svg>') repeat;
  background-size: 60px;
  opacity: 0.5;
}

.hk-cta-content { position: relative; z-index: 1; }

.hk-cta h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: 16px;
}

.hk-cta-subtitle {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
}

/* ── 18. Booking Bar (Sticky) ─────────────────────────────── */
.hk-booking-bar {
  background: var(--white);
  box-shadow: 0 8px 32px rgba(26,37,53,0.15);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  border: 1px solid var(--border);
}

.hk-bb-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 120px;
}

.hk-bb-field label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.hk-bb-field input,
.hk-bb-field select {
  border: none;
  border-bottom: 2px solid var(--border);
  padding: 6px 0;
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  background: transparent;
  font-family: var(--font-sans);
  transition: border-color 0.2s;
  width: 100%;
}

.hk-bb-field input:focus,
.hk-bb-field select:focus {
  outline: none;
  border-color: var(--gold);
}

.hk-bb-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

.hk-bb-submit {
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.hk-bb-submit:hover {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
}

/* Floating booking bar */
.hk-booking-bar-float {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 900;
  width: calc(100% - 48px);
  max-width: 900px;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
}

.hk-booking-bar-float.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ── 19. Footer ───────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}

.hk-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.hk-footer-logo img { height: 50px; margin-bottom: 16px; }

.hk-footer-logo .hk-logo-top {
  font-family: var(--font-display);
  font-size: 8px;
  letter-spacing: 5px;
  color: var(--gold);
}

.hk-footer-logo .hk-logo-brand {
  font-family: var(--font-elegant);
  font-style: italic;
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.hk-footer-logo .hk-logo-name { display: none; }

.hk-footer-tagline {
  font-family: var(--font-elegant);
  font-style: italic;
  color: var(--gold);
  font-size: 0.9rem;
  margin: 4px 0 16px;
}

.hk-footer-desc {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.hk-social-links {
  display: flex;
  gap: 10px;
}

.hk-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
}

.hk-social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.hk-footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
}

.hk-footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hk-footer-nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
}

.hk-footer-nav a:hover { color: var(--gold); padding-left: 4px; }

.hk-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hk-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.hk-footer-contact-item .icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--gold);
  opacity: 0.8;
}
.hk-footer-contact-item .icon .hk-icon svg { width: 16px; height: 16px; }

.hk-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hk-footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.hk-footer-links {
  display: flex;
  gap: 20px;
}

.hk-footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color 0.15s;
}

.hk-footer-links a:hover { color: var(--gold); }

/* ── 20. Page Header (Inner Pages) ───────────────────────── */
.hk-page-header {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-mid));
  padding: 140px 0 60px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hk-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="rgba(201,168,76,0.15)"/></svg>') repeat;
  background-size: 60px;
}

.hk-page-header-content { position: relative; z-index: 1; }

.hk-page-header h1 { color: var(--white); margin-bottom: 12px; }
.hk-page-header p  { color: rgba(255,255,255,0.65); font-size: 1.1rem; }

/* ── 21. Single Room Page ─────────────────────────────────── */
.hk-room-single { padding-top: 0; }

.hk-room-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 8px;
  margin-bottom: 60px;
  border-radius: var(--radius);
  overflow: hidden;
}

.hk-room-gallery-main { grid-row: span 2; }
.hk-room-gallery-main img,
.hk-room-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.hk-room-gallery-main  { min-height: 420px; overflow: hidden; }
.hk-room-gallery-thumb { overflow: hidden; aspect-ratio: 16/9; }

.hk-room-gallery-main img:hover,
.hk-room-gallery-thumb img:hover { transform: scale(1.04); }

.hk-room-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.hk-room-main h1 { margin-bottom: 8px; }
.hk-room-main > p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 28px; }

.hk-room-specs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.hk-room-spec-item {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
  border: 1px solid var(--border);
}

.hk-room-spec-item .spec-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  color: var(--gold);
}
.hk-room-spec-item .spec-icon .hk-icon svg { width: 22px; height: 22px; }
.hk-room-spec-item .spec-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); }
.hk-room-spec-item .spec-value { font-size: 14px; font-weight: 700; color: var(--navy); margin-top: 2px; }

.hk-room-amenities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.hk-room-amenity {
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  color: var(--navy);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
  font-size: 13px;
  font-weight: 500;
}

/* Booking Sidebar */
.hk-booking-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.hk-booking-sidebar-header {
  background: var(--navy);
  padding: 24px;
  text-align: center;
  color: var(--white);
}

.hk-booking-sidebar-header .from { font-size: 12px; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }
.hk-booking-sidebar-header .price {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.hk-booking-sidebar-header .per { font-size: 13px; opacity: 0.7; }

.hk-booking-sidebar-body { padding: 24px; }

/* ── 22. Archive (Rooms List) ─────────────────────────────── */
.hk-archive-header { margin-bottom: 48px; }

/* ── 23. Blog ─────────────────────────────────────────────── */
.hk-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.hk-post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.hk-post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.hk-post-img { overflow: hidden; aspect-ratio: 16/9; }
.hk-post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.hk-post-card:hover .hk-post-img img { transform: scale(1.05); }

.hk-post-body { padding: 24px; }
.hk-post-date { font-size: 12px; color: var(--text-light); margin-bottom: 8px; }
.hk-post-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.hk-post-body p  { font-size: 14px; color: var(--text-muted); }

/* ── 24. 404 Page ─────────────────────────────────────────── */
.hk-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px;
}

.hk-404-number {
  font-family: var(--font-serif);
  font-size: 10rem;
  color: var(--gold);
  line-height: 0.9;
  opacity: 0.3;
  user-select: none;
}

/* ── 25. Breadcrumbs ──────────────────────────────────────── */
.hk-breadcrumbs {
  font-size: 13px;
  color: var(--text-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.hk-breadcrumbs a { color: var(--gold); }
.hk-breadcrumbs a:hover { text-decoration: underline; }

/* ── 26. Scroll Animations ────────────────────────────────── */
.hk-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hk-animate.hk-animated {
  opacity: 1;
  transform: translateY(0);
}

.hk-animate-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.hk-animate-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.7s ease, transform 0.7s ease; }

.hk-animate-left.hk-animated,
.hk-animate-right.hk-animated { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.hk-stagger-1 { transition-delay: 0.1s; }
.hk-stagger-2 { transition-delay: 0.2s; }
.hk-stagger-3 { transition-delay: 0.3s; }
.hk-stagger-4 { transition-delay: 0.4s; }
.hk-stagger-5 { transition-delay: 0.5s; }

/* ── 27. Page Content Styles ──────────────────────────────── */
.entry-content {
  max-width: 760px;
  margin: 0 auto;
}

.entry-content p,
.entry-content ul,
.entry-content ol { margin-bottom: 1.2em; }
.entry-content h2 { margin-top: 2em; margin-bottom: 0.6em; }
.entry-content h3 { margin-top: 1.6em; margin-bottom: 0.5em; }
.entry-content a  { color: var(--gold); }
.entry-content a:hover { text-decoration: underline; }
.entry-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  background: var(--gold-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  margin: 1.5em 0;
}

/* ── 28. Contact Page ─────────────────────────────────────── */
.hk-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.hk-contact-info h3 { margin-bottom: 24px; }

.hk-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.hk-contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.hk-contact-item-icon .hk-icon svg { width: 20px; height: 20px; }

.hk-contact-item-text h5 { color: var(--navy); margin-bottom: 4px; font-size: 14px; }
.hk-contact-item-text p  { font-size: 14px; color: var(--text-muted); margin: 0; }

.hk-map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 350px;
  margin-top: 32px;
}

.hk-map-embed iframe { width: 100%; height: 100%; border: none; }

/* Contact Form */
.hk-contact-form { display: flex; flex-direction: column; gap: 16px; }

.hk-form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.hk-contact-form input,
.hk-contact-form select,
.hk-contact-form textarea {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s;
}

.hk-contact-form input:focus,
.hk-contact-form select:focus,
.hk-contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.hk-contact-form textarea { resize: vertical; min-height: 140px; }

/* ── 29. Timeline (About Page) ────────────────────────────── */
.hk-timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}

.hk-timeline::before {
  content: '';
  position: absolute;
  left: 140px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--border) 100%);
}

.hk-timeline-item {
  display: grid;
  grid-template-columns: 120px 40px 1fr;
  gap: 0 20px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.hk-timeline-year {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold);
  text-align: right;
  padding-top: 4px;
}

.hk-timeline-dot {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
  margin: 4px auto 0;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.hk-timeline-content {
  padding-bottom: 20px;
}

.hk-timeline-content h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--navy);
}

.hk-timeline-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 600px) {
  .hk-timeline::before { left: 20px; }
  .hk-timeline-item { grid-template-columns: 30px 1fr; grid-template-rows: auto auto; }
  .hk-timeline-year { grid-column: 1 / -1; text-align: left; padding-left: 44px; }
  .hk-timeline-dot { grid-row: 2; }
  .hk-timeline-content { grid-row: 2; }
}

/* ── 30. Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hk-about-inner,
  .hk-restaurant-inner { grid-template-columns: 1fr; gap: 40px; }
  .hk-about-image { order: -1; }
  .hk-room-layout { grid-template-columns: 1fr; }
  .hk-room-gallery { grid-template-columns: 1fr; }
  .hk-room-gallery-main { min-height: 300px; }
  .hk-footer-grid { grid-template-columns: 1fr 1fr; }
  .hk-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hk-gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .hk-gallery-item:nth-child(6) { grid-column: span 1; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .site-header .container-wide,
  .site-header .container { padding: 0 20px; }
  .hk-section { padding: 70px 0; }
  .primary-nav { display: none; position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; background: var(--navy-deep); flex-direction: column; align-items: center; justify-content: center; }
  .primary-nav.is-open { display: flex; }
  .primary-nav ul { flex-direction: column; gap: 0; width: 100%; }
  .primary-nav ul li a { font-size: 1.3rem; padding: 16px 32px; color: var(--white); border-radius: 0; text-align: center; }
  .hk-menu-toggle { display: block; }
  .hk-booking-bar { flex-direction: column; gap: 12px; }
  .hk-booking-bar-float { display: none; }
  .hk-bb-sep { display: none; }
  .hk-hero-content { padding-left: 5vw; padding-right: 5vw; }
  .hk-hero h1 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hk-footer-grid { grid-template-columns: 1fr; }
  .hk-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hk-contact-grid { grid-template-columns: 1fr; }
  .hk-stats-grid { grid-template-columns: 1fr 1fr; border: none; gap: 1px; background: var(--border); }
  .hk-stat { border-right: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hk-hero-actions { flex-direction: column; }
  .hk-gallery-grid { grid-template-columns: 1fr; }
  .hk-gallery-item:nth-child(1),
  .hk-gallery-item:nth-child(6) { grid-column: span 1; }
}

/* ── 30. Print ────────────────────────────────────────────── */
@media print {
  .site-header, .hk-booking-bar-float, .site-footer, .hk-cta { display: none; }
  body { background: #fff; }
}

/* ── Booking widget inside sidebar ── */
.hk-booking-sidebar .hb-panel {
  padding: 20px;
  box-shadow: none;
  border: none;
  border-radius: 0;
}

.hk-booking-sidebar .hb-search-grid {
  grid-template-columns: 1fr;
  gap: 10px;
}

.hk-booking-sidebar .hb-field input,
.hk-booking-sidebar .hb-field select {
  padding: 8px 10px;
  font-size: 13px;
}

.hk-booking-sidebar .hb-panel-title {
  font-size: 18px;
  margin-bottom: 16px;
}