/* ============================================================
   HA Links LLC — Luxe Layer
   Fiora-inspired warmth & polish · HA Links B2B identity
   (Not a hotel clone — no booking UI, no hospitality copy)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&display=swap");

:root {
  --hal-luxe-gold: #c8956c;
  --hal-luxe-gold-light: #dbb896;
  --hal-luxe-gold-deep: #a67c2e;
  --hal-luxe-black: #0a0a0a;
  --hal-luxe-cream: #faf7f2;
  --hal-luxe-utility-h: 38px;
  --hal-luxe-header-h: 76px;
  --hal-luxe-top-offset: calc(
    var(--hal-luxe-utility-h) + var(--hal-luxe-header-h)
  );
}

/* ---- Utility bar (corporate — dark, not hotel gold strip) ---- */
.hal-utility-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background: var(--hal-luxe-black);
  border-bottom: 1px solid rgba(200, 149, 108, 0.2);
  height: var(--hal-luxe-utility-h);
  overflow: hidden;
}
.hal-utility-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(12px, 4vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}
.hal-utility-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hal-luxe-gold-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 1;
  min-width: 0;
}
.hal-utility-tagline i {
  color: var(--hal-luxe-gold);
  font-size: 10px;
  flex-shrink: 0;
}
.hal-utility-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.hal-utility-contacts a,
.hal-utility-contacts a:link,
.hal-utility-contacts a:visited,
.hal-utility-contacts a:hover,
.hal-utility-contacts a:focus {
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition:
    color 0.25s ease,
    opacity 0.25s ease;
  white-space: nowrap;
}
.hal-utility-contacts a .span-label {
  min-width: 0;
  color: inherit;
}
.hal-utility-contacts a:hover,
.hal-utility-contacts a:focus {
  color: var(--hal-luxe-gold-light) !important;
  opacity: 1;
}
.hal-utility-contacts a i {
  color: var(--hal-luxe-gold-light) !important;
  font-size: 12px;
  flex-shrink: 0;
}

/* ---- Header offset & transparent-over-hero ---- */
body.hal-luxe .ve-header {
  top: var(--hal-luxe-utility-h) !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}
body.hal-luxe .ve-header::before,
body.hal-luxe .ve-header::after {
  display: none !important;
}
body.hal-luxe .ve-header.scrolled {
  background: rgba(10, 10, 10, 0.96) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2) !important;
  border-bottom-color: rgba(200, 149, 108, 0.25) !important;
}
body.hal-luxe .ve-nav ul li a {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 13px !important;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
}
body.hal-luxe .ve-nav ul li a:hover {
  color: var(--hal-luxe-gold-light) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}
body.hal-luxe .ve-header.scrolled .ve-nav ul li a {
  color: rgba(255, 255, 255, 0.9) !important;
}
body.hal-luxe .ve-toggler {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

/* Inner pages — solid header */
body.hal-luxe.hal-inner .ve-header {
  background: var(--hal-luxe-black) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15) !important;
}

/* ---- Cinematic hero (B2B split — not hotel welcome) ---- */
body.hal-luxe .ve-hero-luxe {
  min-height: calc(100vh - var(--hal-luxe-utility-h));
  padding-top: var(--hal-luxe-header-h) !important;
  padding-bottom: 72px;
  display: flex !important;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background-position: center center !important;
  background-size: cover !important;
}
body.hal-luxe .ve-hero-luxe::before {
  background: linear-gradient(
    105deg,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.78) 45%,
    rgba(10, 10, 10, 0.35) 70%,
    rgba(10, 10, 10, 0.15) 100%
  ) !important;
}
body.hal-luxe .ve-hero-luxe .ve-hero-left {
  flex: 0 0 58%;
  padding: clamp(48px, 8vw, 96px) 48px clamp(48px, 6vw, 80px)
    clamp(24px, 5vw, 80px);
}
body.hal-luxe .ve-hero-luxe .ve-hero-left h1 {
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(2.5rem, 5vw, 3.75rem) !important;
  font-weight: 600 !important;
  color: #fff !important;
  letter-spacing: -0.01em;
}
body.hal-luxe .ve-hero-luxe .ve-hero-left h1 .ve-highlight {
  color: var(--hal-luxe-gold-light) !important;
  -webkit-text-fill-color: var(--hal-luxe-gold-light) !important;
  background: none !important;
}
body.hal-luxe .ve-hero-luxe .ve-hero-left p {
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 1.05rem;
  max-width: 540px;
}
body.hal-luxe .ve-hero-luxe .hal-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 22px;
  font-family: "Playfair Display", Georgia, serif !important;
  font-style: italic;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 500;
  color: var(--hal-luxe-gold-light) !important;
  letter-spacing: 0.03em;
}
/* body.hal-luxe .ve-hero-luxe .hal-hero-eyebrow-line {
  flex-shrink: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--hal-luxe-gold) 0%,
    rgba(200, 149, 108, 0.15) 100%
  );
} */
body.hal-luxe .ve-hero-luxe .ve-stat strong {
  color: var(--hal-luxe-gold-light) !important;
}
body.hal-luxe .ve-hero-luxe .ve-stat span {
  color: rgba(255, 255, 255, 0.55) !important;
}
body.hal-luxe .ve-hero-luxe .ve-stat-divider {
  background: rgba(255, 255, 255, 0.15) !important;
}
body.hal-luxe .ve-hero-luxe .ve-btn-ghost {
  border-color: rgba(255, 255, 255, 0.45) !important;
  color: #fff !important;
}
body.hal-luxe .ve-hero-luxe .ve-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--hal-luxe-gold) !important;
  color: var(--hal-luxe-gold-light) !important;
}
body.hal-luxe .ve-hero-luxe .ve-float-card {
  background: rgba(10, 10, 10, 0.55) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(200, 149, 108, 0.35) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35) !important;
}
body.hal-luxe .ve-hero-luxe .ve-float-card strong {
  color: #fff !important;
}
body.hal-luxe .ve-hero-luxe .ve-float-card span {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Hero bottom strip — single CTA, not a booking form */
.hal-hero-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  background: linear-gradient(
    90deg,
    var(--hal-luxe-gold-deep) 0%,
    var(--hal-luxe-gold) 50%,
    var(--hal-luxe-gold-deep) 100%
  );
  padding: 18px clamp(24px, 5vw, 48px);
}
.hal-hero-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.hal-hero-strip p {
  margin: 0;
  color: #fff;
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hal-hero-strip p strong {
  font-weight: 700;
}
.hal-hero-strip .hal-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.hal-hero-strip .hal-strip-btn:hover {
  background: #fff;
  color: var(--hal-luxe-gold-deep);
}

/* ---- Section headings — one elegant accent, not triple Fiora stack ---- */
body.hal-luxe .ve-section-header .ve-section-tag,
body.hal-luxe .ve-whyus-content .ve-section-tag {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-style: italic !important;
  font-size: clamp(1rem, 2vw, 1.25rem) !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  color: var(--hal-luxe-gold) !important;
  margin-bottom: 10px !important;
}
body.hal-luxe .ve-section-header h2,
body.hal-luxe .ve-whyus-content h2 {
  font-family: "Playfair Display", Georgia, serif !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em;
}
body.hal-luxe .ve-section-header::after {
  background: var(--hal-luxe-gold) !important;
  width: 48px !important;
  height: 2px !important;
}

/* ---- Trust bar ---- */
body.hal-luxe .ve-trust-bar {
  background: var(--hal-luxe-black) !important;
  border-top: 1px solid rgba(200, 149, 108, 0.2) !important;
  border-bottom: none !important;
  padding: 20px 0 !important;
}
body.hal-luxe .ve-trust-bar::before {
  display: none !important;
}
body.hal-luxe .ve-trust-inner span {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 12px !important;
  letter-spacing: 0.05em;
}
body.hal-luxe .ve-trust-inner span i {
  color: var(--hal-luxe-gold) !important;
}

/* ---- Premium cards ---- */
body.hal-luxe .ve-service-card,
body.hal-luxe .ve-feature-box,
body.hal-luxe .ve-insight-card {
  border-radius: 4px !important;
  border-color: rgba(200, 149, 108, 0.12) !important;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease !important;
}
body.hal-luxe .ve-service-card:hover,
body.hal-luxe .ve-feature-box:hover,
body.hal-luxe .ve-insight-card:hover {
  border-color: rgba(200, 149, 108, 0.4) !important;
  box-shadow: 0 16px 48px rgba(200, 149, 108, 0.12) !important;
}
body.hal-luxe .ve-service-icon {
  background: linear-gradient(
    135deg,
    rgba(200, 149, 108, 0.18) 0%,
    rgba(200, 149, 108, 0.06) 100%
  ) !important;
  color: var(--hal-luxe-gold-deep) !important;
}
body.hal-luxe .ve-service-card:hover .ve-service-icon {
  background: var(--hal-gradient-btn) !important;
  color: #fff !important;
}

/* ---- Why us image ---- */
body.hal-luxe .ve-whyus-img-main {
  border-radius: 4px !important;
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.15) !important;
}
body.hal-luxe .ve-whyus-badge {
  border-radius: 4px !important;
}

/* ---- Counter section ---- */
body.hal-luxe .ve-counter-section {
  background: var(--hal-luxe-black) !important;
}

/* ---- Page hero (inner pages) ---- */
body.hal-luxe.hal-inner .ve-page-hero {
  padding-top: var(--hal-luxe-top-offset) !important;
}
body.hal-luxe .ve-page-hero-content h1 {
  font-family: "Playfair Display", Georgia, serif !important;
  font-weight: 600 !important;
}

/* ---- Footer refinement ---- */
body.hal-luxe .ve-footer {
  background: var(--hal-luxe-black) !important;
}
body.hal-luxe .ve-footer::before {
  background: var(--hal-luxe-gold) !important;
  height: 2px !important;
}

/* ---- Team photo placements — show full image, no crop ---- */
img.hal-team-photo,
img.ve-whyus-img-main.hal-team-photo {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  object-fit: contain !important;
  display: block;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.15);
}
body.hal-luxe .hal-team-hero {
  background-size: contain !important;
  background-position: center center !important;
  background-color: #0a0a0a !important;
  background-repeat: no-repeat !important;
  min-height: clamp(320px, 45vw, 520px) !important;
}
body.hal-luxe .hal-team-hero .ve-page-hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.75) 0%,
    rgba(10, 10, 10, 0.55) 50%,
    rgba(10, 10, 10, 0.8) 100%
  ) !important;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .hal-utility-tagline {
    display: none;
  }
  .hal-utility-inner {
    justify-content: center;
  }
  body.hal-luxe .ve-hero-luxe {
    flex-direction: column !important;
    min-height: auto;
  }
  body.hal-luxe .ve-hero-luxe .ve-hero-left {
    flex: 1 1 auto;
  }
  body.hal-luxe .ve-hero-luxe .ve-hero-right {
    min-height: 280px;
  }
  .hal-hero-strip-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .hal-utility-inner {
    padding: 0 8px;
    gap: 6px;
  }
  .hal-utility-contacts {
    gap: 10px;
    justify-content: center;
    max-width: 100%;
  }
  .hal-utility-contacts a,
  .hal-utility-contacts a:link,
  .hal-utility-contacts a:visited {
    font-size: 10px;
    gap: 5px;
    letter-spacing: -0.01em;
  }
  .hal-utility-contacts a i {
    font-size: 11px;
  }
  :root {
    --hal-luxe-header-h: 68px;
  }
}

@media (max-width: 360px) {
  :root {
    --hal-luxe-utility-h: 50px;
  }
  .hal-utility-contacts {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
  .hal-utility-bar {
    height: auto;
    min-height: var(--hal-luxe-utility-h);
  }
  .hal-utility-inner {
    padding: 5px 8px;
  }
}
