/*
Theme Name:  HMS Hospitality
Theme URI:   https://example.com/hms-theme
Description: Luxuriöses Boutique-Hotel & Gastronomie Theme, perfekt abgestimmt auf das HMS Plugin und HMS Guest Portal. Elegantes Design in Navy & Gold.
Version:     1.0.0
Author:      HMS Dev
Text Domain: hms-theme
Tags:        hotel, restaurant, hospitality, one-page, full-width, custom-menu
*/

/* ═══════════════════════════════════════════════════════════════════════════
   DESIGN SYSTEM — HMS Hospitality Theme
   Ästhetik: Luxury Boutique Hotel · Navy & Champagne Gold · Playfair Display
═══════════════════════════════════════════════════════════════════════════ */

/* ── Fonts ──────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=DM+Mono:wght@400;500&display=swap');

/* ── CSS Variables ──────────────────────────────────────────────────────── */
:root {
  /* Core Palette */
  --navy:        #0f1f3d;
  --navy-mid:    #1e3a5f;
  --navy-light:  #2d5282;
  --gold:        #c9a84c;
  --gold-light:  #e2c97a;
  --gold-pale:   #f5ead8;
  --cream:       #faf7f2;
  --cream-dark:  #f0ebe0;
  --white:       #ffffff;
  --charcoal:    #2c2c2c;
  --gray-600:    #6b7280;
  --gray-300:    #d1d5db;
  --gray-100:    #f3f4f6;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', monospace;

  /* Spacing */
  --section-py:  100px;
  --container:   1200px;

  /* Effects */
  --shadow-sm:   0 2px 8px rgba(15,31,61,.08);
  --shadow-md:   0 8px 32px rgba(15,31,61,.12);
  --shadow-lg:   0 24px 64px rgba(15,31,61,.18);
  --gold-glow:   0 0 40px rgba(201,168,76,.25);

  /* Transitions */
  --ease:        cubic-bezier(.4,0,.2,1);
  --ease-out:    cubic-bezier(0,0,.2,1);
}

/* ── Reset & Base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }

/* ── Container ──────────────────────────────────────────────────────────── */
.hms-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) { .hms-container { padding: 0 20px; } }

/* ── Typography ─────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}
.display-headline {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-style: italic;
  letter-spacing: -.02em;
  line-height: 1.08;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
  margin-bottom: 12px;
  display: block;
}
.lead-text {
  font-size: 1.125rem;
  color: var(--gray-600);
  font-weight: 300;
  max-width: 600px;
}
p { margin-bottom: 1em; }

/* ── Gold Divider ───────────────────────────────────────────────────────── */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 16px 0 32px;
  border-radius: 2px;
}
.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: none;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s var(--ease);
  text-decoration: none;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,168,76,.4);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.5);
  color: var(--navy);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-mid); color: var(--white); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }

/* ── WP Core Alignment ──────────────────────────────────────────────────── */
.alignleft  { float: left; margin-right: 2em; margin-bottom: 1em; }
.alignright { float: right; margin-left: 2em; margin-bottom: 1em; }
.aligncenter{ display: block; margin: 0 auto 1em; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .85rem; color: var(--gray-600); margin-top: 6px; }

/* ════════════════════════════════════════════════════════════════════════════
   HEADER / NAVIGATION
════════════════════════════════════════════════════════════════════════════ */
#hms-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  transition: all .4s var(--ease);
}
#hms-header.transparent { background: transparent; }
#hms-header.scrolled {
  background: rgba(15,31,61,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(0,0,0,.3);
}
.hms-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 40px;
}
.hms-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
}
.hms-logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .06em;
  line-height: 1;
}
.hms-logo-tagline {
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 3px;
}
.hms-nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.hms-nav-menu li a {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color .2s;
  position: relative;
}
.hms-nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.hms-nav-menu li a:hover { color: var(--gold); }
.hms-nav-menu li a:hover::after { transform: scaleX(1); }
.hms-nav-cta { margin-left: 16px; }
.hms-nav-cta a {
  padding: 10px 22px;
  font-size: .75rem;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  border-radius: 2px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all .25s;
}
.hms-nav-cta a:hover { background: var(--gold); color: var(--navy) !important; }
.hms-nav-cta a::after { display: none !important; }

/* Mobile hamburger */
.hms-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hms-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s var(--ease);
}
.hms-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hms-hamburger.active span:nth-child(2) { opacity: 0; }
.hms-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .hms-hamburger { display: flex; }
  .hms-nav-menu {
    display: none;
    position: fixed;
    inset: 80px 0 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }
  .hms-nav-menu.open { display: flex; }
  .hms-nav-menu li a { font-size: 1.1rem; }
}

/* ════════════════════════════════════════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════════════════════════════════════════ */
#hms-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hms-hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom right, rgba(15,31,61,.75) 0%, rgba(15,31,61,.45) 60%, rgba(15,31,61,.8) 100%), var(--hero-bg, none);
  background-size: cover;
  background-position: center;
}
/* Decorative grain overlay */
.hms-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.04'/%3E%3C/svg%3E");
  opacity: .5;
}
.hms-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hms-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .7rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 28px;
}
.hms-hero-eyebrow::before, .hms-hero-eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}
.hms-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.025em;
  margin-bottom: 24px;
}
.hms-hero-headline em { color: var(--gold-light); font-style: italic; }
.hms-hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  font-weight: 300;
  margin-bottom: 44px;
  max-width: 520px;
  line-height: 1.7;
}
.hms-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll indicator */
.hms-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2.5s ease-in-out infinite;
}
.hms-scroll-hint::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(201,168,76,.6), transparent);
  display: block;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* Booking bar */
.hms-booking-bar {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  z-index: 10;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
}
.hms-booking-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.hms-booking-field {
  flex: 1;
  padding: 20px 28px;
  border-right: 1px solid var(--gray-300);
}
.hms-booking-field:last-of-type { border-right: none; }
.hms-booking-label {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.hms-booking-input {
  width: 100%;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--navy);
  font-weight: 500;
  cursor: pointer;
  outline: none;
}
.hms-booking-input::placeholder { color: var(--charcoal); }
.hms-booking-btn {
  padding: 28px 40px;
  background: var(--navy);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .25s;
  white-space: nowrap;
  font-family: var(--font-body);
  flex-shrink: 0;
}
.hms-booking-btn:hover { background: var(--gold); color: var(--navy); }
@media (max-width: 768px) {
  .hms-booking-bar-inner { flex-direction: column; }
  .hms-booking-field { border-right: none; border-bottom: 1px solid var(--gray-300); width: 100%; }
  .hms-booking-btn { width: 100%; padding: 18px; }
}

/* ════════════════════════════════════════════════════════════════════════════
   SECTIONS — Common
════════════════════════════════════════════════════════════════════════════ */
section { padding: var(--section-py) 0; }

/* ── About / Welcome ──────────────────────────────────────────────────────── */
#hms-about {
  background: var(--cream);
  overflow: hidden;
}
.hms-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .hms-about-grid { grid-template-columns: 1fr; gap: 48px; } }
.hms-about-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.hms-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hms-about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  text-align: center;
  font-family: var(--font-display);
}
.hms-about-img-badge .badge-num { font-size: 2rem; font-weight: 700; line-height: 1; }
.hms-about-img-badge .badge-label { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; }
.hms-about-quote {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 24px 0;
  line-height: 1.5;
}
.hms-features-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.hms-feature-mini {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.hms-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.hms-feature-mini h4 { font-size: .9rem; margin-bottom: 2px; color: var(--navy); }
.hms-feature-mini p { font-size: .8rem; color: var(--gray-600); margin: 0; }

/* ── Rooms / Suites ──────────────────────────────────────────────────────── */
#hms-rooms {
  background: var(--navy);
  color: var(--white);
}
#hms-rooms .section-title { color: var(--white); }
.hms-rooms-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; flex-wrap: wrap; gap: 24px; }
.hms-rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) { .hms-rooms-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .hms-rooms-grid { grid-template-columns: 1fr; } }
.hms-room-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  cursor: pointer;
}
.hms-room-card:hover { transform: translateY(-8px); box-shadow: var(--gold-glow); }
.hms-room-card-img {
  aspect-ratio: 3/2;
  overflow: hidden;
  background: var(--navy-mid);
  position: relative;
}
.hms-room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.hms-room-card:hover .hms-room-card-img img { transform: scale(1.06); }
.hms-room-status {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 12px;
  border-radius: 2px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 2;
}
.room-status-free { background: rgba(46,204,113,.9); color: #fff; }
.room-status-occupied { background: rgba(231,76,60,.9); color: #fff; }
.room-status-reserved { background: rgba(201,168,76,.9); color: var(--navy); }
.hms-room-card-body { padding: 24px; background: rgba(255,255,255,.04); }
.hms-room-category { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 6px; }
.hms-room-name { font-family: var(--font-display); font-size: 1.2rem; color: var(--white); margin-bottom: 8px; }
.hms-room-meta { display: flex; gap: 20px; font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.hms-room-meta span { display: flex; align-items: center; gap: 5px; }
.hms-room-price { display: flex; align-items: baseline; gap: 4px; }
.hms-room-price-amount { font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.hms-room-price-unit { font-size: .75rem; color: rgba(255,255,255,.5); }
.hms-room-book-btn { width: 100%; margin-top: 16px; background: transparent; border: 1px solid rgba(201,168,76,.4); color: var(--gold); padding: 10px; font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; cursor: pointer; font-family: var(--font-body); transition: all .25s; }
.hms-room-book-btn:hover { background: var(--gold); color: var(--navy); }

/* ── Restaurant ──────────────────────────────────────────────────────────── */
#hms-restaurant {
  background: var(--cream);
  overflow: hidden;
}
.hms-restaurant-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .hms-restaurant-grid { grid-template-columns: 1fr; } }
.hms-menu-preview {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 2px;
}
.hms-menu-header {
  background: var(--navy);
  color: var(--white);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hms-menu-header h4 { font-family: var(--font-display); font-size: 1rem; color: var(--white); margin: 0; }
.hms-menu-header span { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.hms-menu-cat { padding: 16px 28px 0; }
.hms-menu-cat-title { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.hms-menu-item { display: flex; justify-content: space-between; align-items: baseline; padding: 8px 0; border-bottom: 1px dashed var(--gray-300); gap: 10px; }
.hms-menu-item:last-child { border: none; }
.hms-menu-item-name { font-size: .9rem; color: var(--charcoal); }
.hms-menu-item-name small { display: block; font-size: .75rem; color: var(--gray-600); font-weight: 300; }
.hms-menu-item-price { font-weight: 600; color: var(--navy); font-size: .9rem; white-space: nowrap; }
.hms-menu-footer { padding: 16px 28px; background: var(--cream-dark); text-align: center; font-size: .75rem; color: var(--gray-600); }

/* ── Digital Services ─────────────────────────────────────────────────────── */
#hms-digital {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#hms-digital::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  border-radius: 50%;
}
#hms-digital .section-title { color: var(--white); }
.hms-digital-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
@media (max-width: 900px) { .hms-digital-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .hms-digital-grid { grid-template-columns: 1fr; } }
.hms-digital-card {
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,.08);
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}
.hms-digital-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.hms-digital-card:hover { background: rgba(255,255,255,.04); transform: translateY(-4px); }
.hms-digital-card:hover::before { transform: scaleX(1); }
.hms-digital-num {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--gold);
  letter-spacing: .2em;
  margin-bottom: 20px;
  opacity: .8;
}
.hms-digital-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.hms-digital-card h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 10px; }
.hms-digital-card p { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.65; margin: 0; }

/* ── Testimonials ─────────────────────────────────────────────────────────── */
#hms-testimonials { background: var(--gold-pale); }
.hms-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
@media (max-width: 900px) { .hms-testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .hms-testimonials-grid { grid-template-columns: 1fr; } }
.hms-testimonial {
  background: var(--white);
  padding: 36px;
  border-top: 4px solid var(--gold);
  position: relative;
}
.hms-testimonial-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; margin-bottom: 16px; }
.hms-testimonial-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 20px;
}
.hms-testimonial-author { display: flex; gap: 14px; align-items: center; }
.hms-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  flex-shrink: 0;
}
.hms-testimonial-name { font-weight: 600; font-size: .9rem; color: var(--navy); }
.hms-testimonial-role { font-size: .75rem; color: var(--gray-600); }

/* ── CTA Banner ─────────────────────────────────────────────────────────── */
#hms-cta {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}
#hms-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(201,168,76,.03) 40px, rgba(201,168,76,.03) 80px);
}
.hms-cta-inner {
  position: relative;
  text-align: center;
}
.hms-cta-inner .section-title { color: var(--white); }
.hms-cta-inner .lead-text { color: rgba(255,255,255,.7); margin: 16px auto 40px; }
.hms-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact & Map ──────────────────────────────────────────────────────── */
#hms-contact { background: var(--cream); }
.hms-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .hms-contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.hms-contact-items { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.hms-contact-item { display: flex; gap: 20px; align-items: flex-start; }
.hms-contact-item-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hms-contact-item-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .16em; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.hms-contact-item-value { font-size: .95rem; color: var(--charcoal); font-weight: 400; }
.hms-map-placeholder {
  aspect-ratio: 4/3;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .9rem;
  border-radius: 2px;
  overflow: hidden;
}
.hms-map-placeholder iframe { width: 100%; height: 100%; border: none; }

/* ════════════════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════════════════ */
#hms-footer {
  background: #080f1f;
  color: rgba(255,255,255,.6);
  padding: 80px 0 0;
}
.hms-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (max-width: 1000px) { .hms-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .hms-footer-grid { grid-template-columns: 1fr; } }
.hms-footer-brand .hms-logo-name { font-size: 1.4rem; margin-bottom: 4px; }
.hms-footer-brand p { font-size: .85rem; margin-top: 16px; line-height: 1.7; max-width: 280px; }
.hms-footer-social { display: flex; gap: 12px; margin-top: 24px; }
.hms-footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  transition: all .25s;
  border-radius: 2px;
  color: rgba(255,255,255,.6);
}
.hms-footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.hms-footer-col h5 { font-family: var(--font-display); color: var(--white); font-size: .9rem; margin-bottom: 20px; }
.hms-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hms-footer-col ul li a { font-size: .825rem; color: rgba(255,255,255,.55); transition: color .2s; }
.hms-footer-col ul li a:hover { color: var(--gold); }
.hms-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 12px;
}
.hms-footer-bottom a { color: rgba(255,255,255,.35); }
.hms-footer-bottom a:hover { color: var(--gold); }

/* ════════════════════════════════════════════════════════════════════════════
   INNER PAGES — General
════════════════════════════════════════════════════════════════════════════ */
.hms-page-hero {
  background: var(--navy);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hms-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hms-page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem,5vw,3.5rem); color: var(--white); margin-bottom: 12px; }
.hms-page-hero .breadcrumb { font-size: .8rem; color: rgba(255,255,255,.5); letter-spacing: .1em; }
.hms-page-hero .breadcrumb a { color: var(--gold); }

.hms-page-content {
  padding: 80px 0 100px;
  background: var(--cream);
}
.hms-page-content .entry-content {
  max-width: 860px;
  margin: 0 auto;
}
.hms-page-content .entry-content h2 { font-size: 1.8rem; margin: 36px 0 14px; color: var(--navy); }
.hms-page-content .entry-content h3 { font-size: 1.3rem; margin: 28px 0 10px; }
.hms-page-content .entry-content p { color: var(--charcoal); font-size: 1rem; line-height: 1.8; margin-bottom: 1.2em; }
.hms-page-content .entry-content ul,
.hms-page-content .entry-content ol { padding-left: 24px; margin-bottom: 1em; }
.hms-page-content .entry-content li { margin-bottom: .5em; line-height: 1.7; }

/* ── Dashboard page override ──────────────────────────────────────────────── */
.page-template-page-dashboard .hms-page-content { background: var(--cream-dark); }

/* ── Sidebar ────────────────────────────────────────────────────────────── */
.hms-with-sidebar { display: grid; grid-template-columns: 1fr 320px; gap: 60px; align-items: start; }
@media (max-width: 900px) { .hms-with-sidebar { grid-template-columns: 1fr; } }
.hms-sidebar .widget { background: var(--white); padding: 28px; margin-bottom: 24px; border-top: 3px solid var(--gold); }
.hms-sidebar .widget-title { font-family: var(--font-display); font-size: 1rem; color: var(--navy); margin-bottom: 16px; }

/* ── Blog / Archive ───────────────────────────────────────────────────────── */
.hms-posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
@media (max-width: 900px) { .hms-posts-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .hms-posts-grid { grid-template-columns: 1fr; } }
.hms-post-card { background: var(--white); overflow: hidden; transition: transform .3s, box-shadow .3s; }
.hms-post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.hms-post-card-thumb { aspect-ratio: 3/2; overflow: hidden; background: var(--navy-mid); }
.hms-post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.hms-post-card:hover .hms-post-card-thumb img { transform: scale(1.05); }
.hms-post-card-body { padding: 24px; }
.hms-post-cat { font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; display: block; }
.hms-post-card-title { font-size: 1rem; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.hms-post-card-excerpt { font-size: .83rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 14px; }
.hms-post-card-meta { font-size: .73rem; color: var(--gray-600); display: flex; gap: 14px; }

/* ── Animations ─────────────────────────────────────────────────────────── */
[data-hms-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-hms-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-hms-reveal][data-delay="1"] { transition-delay: .1s; }
[data-hms-reveal][data-delay="2"] { transition-delay: .2s; }
[data-hms-reveal][data-delay="3"] { transition-delay: .3s; }
[data-hms-reveal][data-delay="4"] { transition-delay: .4s; }

/* ── WP Admin bar fix ───────────────────────────────────────────────────── */
.admin-bar #hms-header { top: 32px; }
@media (max-width: 782px) { .admin-bar #hms-header { top: 46px; } }

/* ── Accessibility ──────────────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.screen-reader-text { position: absolute; left: -9999px; }

/* ════════════════════════════════════════════════════════════════════════════
   ROOM BOOKING MODAL (theme-level)
════════════════════════════════════════════════════════════════════════════ */
.hms-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,15,31,.7);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}
.hms-modal-overlay.active { display: flex; }
.hms-modal-box {
  background: var(--white);
  border-radius: 4px;
  max-width: 500px;
  width: 100%;
  padding: 36px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
  animation: hms-modal-in .35s var(--ease-out);
}
@keyframes hms-modal-in { from { transform: translateY(20px); opacity: 0; } }
.hms-modal-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 18px;
  cursor: pointer;
  background: var(--gray-100);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  transition: all .2s;
}
.hms-modal-close-btn:hover { background: var(--navy); color: var(--white); }
.hms-modal-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-300);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--charcoal);
  transition: border-color .2s;
  background: var(--white);
}
.hms-modal-input:focus { border-color: var(--gold); outline: none; }

/* ── Dashboard page tweaks ───────────────────────────────────────────────── */
.hgp-dashboard { padding: 0; }

/* ── Pagination ──────────────────────────────────────────────────────────── */
.nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.page-numbers {
  padding: 8px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 3px;
  font-size: .875rem;
  color: var(--charcoal);
  transition: all .2s;
}
.page-numbers.current, .page-numbers:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── WordPress block/gallery fixes ──────────────────────────────────────── */
.wp-block-image img { border-radius: 2px; }
.wp-block-quote {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  margin: 24px 0;
}
.wp-block-separator { border-color: var(--gray-300); }
