/* ==========================================================================
   COMPONENTS.CSS — Navbar, footer, buttons, cards, forms, modals, widgets
   Indies 365 Hôtel
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. NAVBAR
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  z-index: var(--z-fixed);
  /* transition:
    background-color 0.4s ease,
    box-shadow 0.4s ease,
    backdrop-filter 0.4s ease; */
}

/* Transparent state (on split hero — left panel is cream so navbar shows) */
.navbar.transparent {
  background-color: var(--off-white);
}

/* Scrolled/solid state */
.navbar.scrolled {
  background-color: var(--orange-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 8px rgba(27, 107, 114, 0.12);
}

/* Default — always cream */
.navbar {
  background-color: var(--orange-header);
}

.navbar-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand / Logo */
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.navbar-brand-text {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  transition: color var(--transition-base);
  letter-spacing: -0.01em;
}

.navbar.scrolled .navbar-brand-text {
  color: var(--white);
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-link {
  display: inline-block;
  padding: 0.5rem 0.875rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.875rem;
  right: 0.875rem;
  height: 2px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: var(--radius-full);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.navbar.scrolled .nav-link {
  color: var(--white);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
}

/* Book Now button in nav */
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.55rem 1.4rem;
  background: var(--orange);
  color: var(--white) !important;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background var(--transition-base),
    transform var(--transition-fast);
  white-space: nowrap;
  margin-left: 0.5rem;
}

.nav-btn:hover {
  background: var(--orange-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(244, 123, 32, 0.4);
}

.nav-btn::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: var(--z-fixed);
  position: relative;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition:
    transform 0.35s ease,
    opacity 0.35s ease,
    background 0.35s ease;
  transform-origin: center;
}

.navbar.scrolled .hamburger-line {
  background: var(--white); /* already white, kept for specificity */
}

.hamburger.is-open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: calc(var(--z-fixed) - 1);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   2. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Primary — orange filled */
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  border-radius: 3px;
  letter-spacing: 0.08em;
}

.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 123, 32, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Ghost — outline white (for use on teal/dark backgrounds) */
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  border-radius: 3px;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

/* Outline teal */
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
  border-radius: 3px;
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

/* Gold/teal variant — maps to teal */
.btn-gold {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  border-radius: 3px;
}

.btn-gold:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
}

/* Button sizes */
.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: var(--text-xs);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: var(--text-base);
}

/* Icon button */
.btn-icon {
  padding: 0.75rem;
  border-radius: var(--radius-full);
  width: 48px;
  height: 48px;
}

/* --------------------------------------------------------------------------
   3. ROOM CARDS — Heritage Frame Design
   -------------------------------------------------------------------------- */
.room-card {
  background: #fffcf2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 2px 16px rgba(27, 107, 114, 0.09),
    0 8px 28px rgba(27, 107, 114, 0.05);
  border: 1px solid rgba(27, 107, 114, 0.18);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Teal/orange top stripe */
.room-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--teal) 0%,
    var(--orange) 50%,
    var(--teal) 100%
  );
  z-index: 2;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 10px 40px rgba(27, 107, 114, 0.14),
    0 20px 60px rgba(27, 107, 114, 0.07);
  border-color: rgba(27, 107, 114, 0.4);
}

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

.room-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.room-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

/* Decorative teal/orange rule between image and body */
.room-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(27, 107, 114, 0.7),
    rgba(244, 123, 32, 0.9),
    rgba(27, 107, 114, 0.7),
    transparent
  );
}

.room-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #fffcf2;
}

/* Small diamond ornament below body top */
.room-card-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
  color: rgba(244, 123, 32, 0.5);
  font-size: 0.55rem;
  letter-spacing: 0.6em;
}

.room-card-ornament::before,
.room-card-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(27, 107, 114, 0.35));
}

.room-card-ornament::after {
  background: linear-gradient(90deg, rgba(27, 107, 114, 0.35), transparent);
}

.room-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 1.9vw, 1.65rem);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
  line-height: 1.25;
}

.room-card-desc {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1rem;
  flex: 1;
}

.room-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}

/* Teal outline tags */
.room-feature-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  background: transparent;
  border: 1px solid rgba(27, 107, 114, 0.35);
  border-radius: 2px;
  font-family: var(--font-accent);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 400;
  white-space: nowrap;
}

/* Footer — stacked layout: price row on top, button below */
.room-card-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0;
  margin-top: auto;
}

.room-card-footer .btn {
  align-self: flex-start;
  width: 100%;
  text-align: center;
  justify-content: center;
}

/* Price block — highlighted pill */
.room-price-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  background: var(--off-white);
  border: 1px solid rgba(27, 107, 114, 0.2);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.5rem;
}

.room-price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.room-price-item:first-child {
  border-right: 1px solid rgba(27, 107, 114, 0.2);
}

.room-price-label {
  font-size: 10px;
  font-family: var(--font-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  display: block;
  font-weight: 600;
}

.room-price {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
  line-height: 1.2;
}

.room-card.royal .room-price-block {
  background: rgba(244, 123, 32, 0.06);
  border-color: rgba(244, 123, 32, 0.35);
}

.room-card.royal .room-price {
  color: var(--orange-dark);
}

.room-card.royal .room-price-item:first-child {
  border-right-color: rgba(244, 123, 32, 0.25);
}

/* Royal Suite — elevated orange treatment */
.room-card.royal {
  border-color: rgba(244, 123, 32, 0.4);
  background: linear-gradient(160deg, #fffcf2 0%, #fff8ec 100%);
}

.room-card.royal::before {
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--orange),
    var(--orange-light),
    var(--orange),
    transparent
  );
}

.room-card.royal .room-card-title {
  color: var(--orange-dark);
}

/* --------------------------------------------------------------------------
   3b. DINING OVERVIEW STRIP
   -------------------------------------------------------------------------- */
.dining-overview-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  color: var(--white);
}

.dining-overview-label {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-light);
}

.dining-overview-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}

.dining-overview-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.dining-overview-dot {
  font-size: var(--text-xs);
  color: var(--orange-light);
  display: block;
  margin-bottom: 0.15rem;
}

.dining-overview-name {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 3vw, 1.35rem);
  color: var(--white);
  display: block;
  line-height: 1.2;
}

.dining-overview-type {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .dining-overview-strip {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    text-align: left;
    gap: 2.5rem;
  }

  .dining-overview-items {
    flex-direction: row;
    width: auto;
    gap: 2.5rem;
  }

  .dining-overview-item {
    align-items: center;
  }
}

/* --------------------------------------------------------------------------
   4. DINING CARDS — Heritage Style
   -------------------------------------------------------------------------- */
.dining-card {
  background: #fffcf2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 2px 16px rgba(27, 107, 114, 0.08),
    0 8px 28px rgba(27, 107, 114, 0.05);
  border: 1px solid rgba(27, 107, 114, 0.15);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
  position: relative;
}

.dining-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary),
    var(--gold-light),
    var(--primary),
    transparent
  );
  z-index: 2;
}

.dining-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 10px 40px rgba(27, 107, 114, 0.13),
    0 20px 56px rgba(27, 107, 114, 0.06);
  border-color: rgba(27, 107, 114, 0.35);
}

.dining-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.dining-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dining-card:hover .dining-card-img img {
  transform: scale(1.05);
}

.dining-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(244, 123, 32, 0.6),
    transparent
  );
}

.dining-card-body {
  padding: 1.75rem 2rem 2rem;
}

.dining-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 1.8vw, 1.65rem);
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.dining-card-desc {
  color: var(--gray-600);
  font-size: var(--text-sm);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.dining-hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  color: var(--primary);
  letter-spacing: 0.08em;
}

.dining-cuisines {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-top: 0.75rem;
}

.cuisine-tag {
  padding: 0.2rem 0.65rem;
  background: transparent;
  border: 1px solid rgba(27, 107, 114, 0.35);
  color: var(--teal);
  border-radius: 2px;
  font-family: var(--font-accent);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   5. EVENT / VENUE CARDS
   -------------------------------------------------------------------------- */
.event-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}

.event-card-img {
  position: absolute;
  inset: 0;
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.event-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.9) 0%,
    rgba(10, 10, 10, 0.5) 50%,
    rgba(10, 10, 10, 0.1) 100%
  );
  transition: background var(--transition-slow);
}

.event-card:hover .event-card-overlay {
  background: linear-gradient(
    to top,
    rgba(30, 11, 2, 0.92) 0%,
    rgba(30, 11, 2, 0.55) 50%,
    rgba(10, 10, 10, 0.1) 100%
  );
}

.event-card-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: var(--white);
  transition: transform var(--transition-base);
}

.event-card:hover .event-card-content {
  transform: translateY(-8px);
}

.event-card-eyebrow {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}

.event-card-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.event-card-desc {
  font-size: var(--text-sm);
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.event-capacity {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   6. GALLERY GRID & LIGHTBOX
   -------------------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--gray-200);
}

/* Varying row spans for masonry feel */
.gallery-item:nth-child(3n + 1) {
  grid-row: span 1;
}
.gallery-item:nth-child(3n + 2) {
  grid-row: span 2;
}
.gallery-item:nth-child(3n + 3) {
  grid-row: span 1;
}

.gallery-grid {
  grid-auto-rows: 200px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.75);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(244, 123, 32, 0.15);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transform: scale(0);
  transition: transform var(--transition-spring);
}

.gallery-item:hover .gallery-zoom-icon {
  transform: scale(1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: var(--white);
  font-size: var(--text-sm);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Gallery Filters */
.gallery-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.5rem;
  border: 2px solid var(--gray-300);
  border-radius: var(--radius-full);
  background: transparent;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition-base);
}

.filter-btn:hover {
  border-color: var(--primary);
  background: rgba(244, 123, 32, 0.1);
  color: var(--primary);
}

.filter-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition-base),
    visibility var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
  backdrop-filter: blur(4px);
}

.lightbox-close:hover {
  background: var(--primary);
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  border-radius: var(--radius-full);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base);
  backdrop-filter: blur(4px);
}

.lightbox-prev {
  left: 1.5rem;
}
.lightbox-next {
  right: 1.5rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
}

.lightbox-caption {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  text-align: center;
  max-width: 60ch;
}

/* --------------------------------------------------------------------------
   7. BOOKING WIDGET
   -------------------------------------------------------------------------- */
.booking-widget {
  background: var(--primary);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow-orange);
}

.booking-widget-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.booking-form-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 1rem;
  align-items: end;
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.booking-field label {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.booking-field input,
.booking-field select {
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: var(--text-sm);
  width: 100%;
  transition:
    border-color var(--transition-base),
    background var(--transition-base);
  backdrop-filter: blur(4px);
}

.booking-field input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.booking-field input:focus,
.booking-field select:focus {
  outline: none;
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.22);
}

.booking-field select option {
  background: var(--primary-dark);
  color: var(--white);
}

/* Color scheme for date inputs */
.booking-field input[type='date']::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.7);
}

.booking-submit-btn {
  padding: 0.875rem 2rem;
  background: var(--white);
  color: var(--primary);
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-base);
}

.booking-submit-btn:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Mobile floating booking bar */
.booking-float-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  padding: 1rem 1.5rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: var(--z-fixed);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.booking-float-bar .float-text {
  color: var(--white);
  font-weight: 600;
  font-size: var(--text-sm);
}

.booking-float-bar .float-text small {
  display: block;
  font-size: var(--text-xs);
  opacity: 0.8;
  font-weight: 400;
}

/* --------------------------------------------------------------------------
   8. FORMS (contact, event quote, newsletter)
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}

.form-label .required {
  color: var(--primary);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--black);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.12);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.12);
}

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

.form-error {
  display: block;
  font-size: var(--text-xs);
  color: #e53e3e;
  margin-top: 0.375rem;
}

.form-success {
  display: block;
  font-size: var(--text-xs);
  color: #38a169;
  margin-top: 0.375rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-select-wrap {
  position: relative;
}

.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 1.125rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--gray-500);
  pointer-events: none;
}

/* Honeypot */
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   9. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: var(--teal, #1b6b72);
  color: rgba(255, 255, 255, 0.88);
  padding-top: 4rem;
  border-top: 3px solid var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo-link img {
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition:
    background var(--transition-base),
    color var(--transition-base),
    transform var(--transition-fast);
}

.social-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-heading {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  transition:
    color var(--transition-base),
    padding-left var(--transition-base);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--orange-light, #f79548);
  padding-left: 4px;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

.footer-address a {
  transition: color var(--transition-base);
}

.footer-address a:hover {
  color: var(--gold-light);
}

.footer-newsletter-text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1rem;
}

.newsletter-form {
  position: relative;
  margin-bottom: 1.25rem;
}

.newsletter-input-wrap {
  display: flex;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: var(--text-sm);
  min-width: 0;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
  background: var(--gold);
  border: none;
  padding: 0.75rem 1.25rem;
  color: var(--white);
  font-size: var(--text-xl);
  cursor: pointer;
  transition: background var(--transition-base);
  flex-shrink: 0;
}

.newsletter-btn:hover {
  background: var(--orange-dark);
}

.book-direct-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(244, 123, 32, 0.15);
  border: 1px solid rgba(244, 123, 32, 0.35);
  border-radius: var(--radius-md);
  color: var(--orange-light);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--text-xs);
  transition: color var(--transition-base);
}

.footer-legal-link:hover {
  color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   10. FLOATING ELEMENTS
   -------------------------------------------------------------------------- */

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: var(--z-fixed);
  transition:
    transform var(--transition-spring),
    box-shadow var(--transition-base);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: var(--z-fixed);
  box-shadow: var(--shadow-orange);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition:
    opacity var(--transition-base),
    visibility var(--transition-base),
    transform var(--transition-spring),
    background var(--transition-base);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   11. COOKIE CONSENT BANNER
   -------------------------------------------------------------------------- */
.cookie-consent {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  max-width: 420px;
  background: var(--teal);
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  z-index: var(--z-modal);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: translateY(calc(100% + 2rem));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-consent.visible {
  transform: translateY(0);
}

.cookie-text {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.cookie-link {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-btn {
  flex: 1;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 1.5px solid transparent;
}

.cookie-accept {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.cookie-accept:hover {
  background: var(--primary-dark);
}

.cookie-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
}

.cookie-decline:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   12. MODAL (Booking Confirmation)
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition-base),
    visibility var(--transition-base);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  background: var(--gray-100);
  border: none;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-600);
  transition: all var(--transition-base);
}

.modal-close:hover {
  background: var(--primary);
  color: var(--white);
}

.modal-icon {
  width: 72px;
  height: 72px;
  background: rgba(244, 123, 32, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.modal-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--black);
  text-align: center;
  margin-bottom: 0.75rem;
}

.modal-subtitle {
  font-size: var(--text-sm);
  color: var(--gray-600);
  text-align: center;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.modal-details {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.modal-detail-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
}

.modal-detail-row dt {
  color: var(--gray-500);
}

.modal-detail-row dd {
  font-weight: 600;
  color: var(--black);
}

/* --------------------------------------------------------------------------
   13. PAGE HERO STYLES (inner pages)
   -------------------------------------------------------------------------- */
.page-hero-content {
  padding-top: calc(var(--navbar-height) + 4rem);
  padding-bottom: 4rem;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.page-hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.8);
  max-width: 50ch;
}

/* Breadcrumbs */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.breadcrumb-item {
  font-family: var(--font-accent);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb-item a:hover {
  color: var(--primary);
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: var(--text-xs);
}

.breadcrumb-item.current {
  color: var(--primary);
}

/* --------------------------------------------------------------------------
   14. CONTACT INFO CARDS
   -------------------------------------------------------------------------- */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}

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

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(27, 107, 114, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--primary);
  font-size: 1.5rem;
}

.contact-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.contact-card-text {
  font-size: var(--text-sm);
  color: var(--gray-600);
  line-height: 1.8;
}

.contact-card-text a {
  color: var(--primary);
  transition: color var(--transition-base);
}

.contact-card-text a:hover {
  color: var(--primary-dark);
}

/* --------------------------------------------------------------------------
   15. NOTIFICATION / ALERT
   -------------------------------------------------------------------------- */
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.alert-success {
  background: rgba(56, 161, 105, 0.1);
  border: 1px solid rgba(56, 161, 105, 0.3);
  color: #276749;
}

.alert-error {
  background: rgba(229, 62, 62, 0.1);
  border: 1px solid rgba(229, 62, 62, 0.3);
  color: #9b2c2c;
}

.alert-info {
  background: rgba(244, 123, 32, 0.08);
  border: 1px solid rgba(244, 123, 32, 0.25);
  color: var(--primary-dark);
}

/* --------------------------------------------------------------------------
   BATHROOM GALLERY — hover zoom on ensuite images
   -------------------------------------------------------------------------- */
#bathroom-gallery img:hover {
  transform: scale(1.06);
}

#bathroom-gallery > .container > div[style*='grid'] div:hover img {
  transform: scale(1.06);
}

/* --------------------------------------------------------------------------
   TOP INFO BAR — fixed at very top, navbar sits below it
   -------------------------------------------------------------------------- */
.top-info-bar {
  background: var(--teal, #1b6b72);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: calc(var(--z-fixed) + 2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  height: 36px; /* fixed height so navbar knows where to start */
}

/* Navbar pushed below info bar */
.navbar {
  top: 36px !important;
}

.top-info-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  gap: 1rem;
}

.top-info-left,
.top-info-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.top-info-link {
  text-decoration: none;
  transition: color 0.2s;
}

.top-info-link:hover {
  color: var(--orange, #f47b20);
}

.top-info-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.65rem;
  user-select: none;
}

.top-info-datetime {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
}

.top-info-socials {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.top-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.top-social-link:hover {
  color: var(--orange, #f47b20);
}

/* navbar top position is set by the info-bar rule above (.navbar { top: 36px !important; }) */

/* --------------------------------------------------------------------------
   NAVBAR — right side (phone + book button)
   -------------------------------------------------------------------------- */
.navbar-right {
  display: none; /* hidden on mobile, shown on desktop */
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.navbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.navbar-phone:hover {
  color: var(--orange);
}

.navbar-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.6rem 1.6rem;
  background: var(--teal);
  color: var(--white) !important;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
  white-space: nowrap;
}

.navbar-book-btn:hover {
  background: var(--orange-dark);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(244, 123, 32, 0.4);
}

/* --------------------------------------------------------------------------
   HERO — AWWWARDS SPLIT LAYOUT
   -------------------------------------------------------------------------- */
.hero-split {
  display: grid;
  grid-template-columns: 52% 48%;
  min-height: 100vh;
  position: relative;
  background: var(--off-white);
}

/* LEFT TEXT PANEL */
.hero-split-text {
  background: var(--off-white);
  display: flex;
  align-items: center;
  padding: calc(var(--navbar-height) + 36px + 4rem) 4.5rem 5rem 3.5rem;
  position: relative;
  z-index: 1;
  border-right: 1px solid rgba(27, 107, 114, 0.1);
}

.hero-split-inner {
  max-width: 580px;
  width: 100%;
}

/* Boutique-class eyebrow label — brand teal pill */
.hero-split-eyebrow {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  margin-bottom: 2rem;
}

/* Large editorial heading — Awwwards style */
.hero-split-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--teal);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-split-name {
  display: block;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: var(--orange);
  font-family: var(--font-heading);
  margin-top: 0.35rem;
}

.hero-split-num {
  font-style: normal;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--teal);
}

.hero-split-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin: 1.5rem 0 2.5rem;
  max-width: 440px;
}

.hero-split-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Outline teal variant */
.btn-outline-dark {
  background: transparent;
  color: var(--teal);
  border: 2px solid rgba(27, 107, 114, 0.4);
}

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

/* Hero badges strip */
.hero-split-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(27, 107, 114, 0.15);
}

.hero-split-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.hero-split-badge svg {
  color: var(--orange);
  flex-shrink: 0;
}

/* RIGHT IMAGE PANEL */
.hero-split-image {
  position: relative;
  overflow: hidden;
}

.hero-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 6s ease;
  animation: scaleimage 4s 1 normal;
}

.hero-split-image:hover img {
  transform: scale(1.04);
}

/* Floating badge card */
.hero-split-image-badge {
  position: absolute;
  bottom: 3rem;
  left: 0rem;
  background: var(--off-white);
  border-left: 4px solid var(--orange);
  padding: 1rem 1.75rem 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 12px 40px rgba(27, 107, 114, 0.2);
  z-index: 2;
}

.hero-split-image-badge-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.hero-split-image-badge-txt {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  line-height: 1.5;
}

/* Scroll indicator on hero */
.hero-split-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 26%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
  color: var(--teal);
  animation: bounceArrow 2.5s ease-in-out infinite;
}

.hero-split-scroll span {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-500);
}
