/* ============================================
   ALPINE KASHMIR LUXURY DESIGN SYSTEM
   Premium Kashmir Travel Experience
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap");

/* ============ CSS VARIABLES / DESIGN TOKENS ============ */
:root {
  /* Color Palette - Dal Lake Teal & Sand */
  --z-midnight: #051012;
  --z-forest-deep: #071518;
  --z-forest: #0a1d20;
  --z-forest-mid: #0e292e;
  --z-forest-light: #143c44;
  --z-gold: #a27b5c;
  --z-gold-light: #ba9273;
  --z-gold-pale: #dfd3c3;
  --z-ivory: #f4efe6;
  --z-ivory-warm: #dfd3c3;
  --z-white: #ffffff;
  --z-text-dark: #111a1c;
  --z-text-mid: #3e4d51;
  --z-text-muted: #7d8f94;
  --z-glass-bg: rgba(10, 29, 32, 0.65);
  --z-glass-border: rgba(162, 123, 92, 0.2);
  --z-glass-light: rgba(255, 255, 255, 0.06);
  --z-card-bg: #102124;
  --z-card-pill: #1e3539;
  --z-card-desc: #c5cfd2;

  /* Typography */
  --font-display: "Playfair Display", Georgia, serif;
  --font-editorial: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 7rem;
  --space-xxl: 10rem;

  /* Z-Index Architecture */
  --z-layer-base: 1;
  --z-layer-dropdown: 100;
  --z-layer-sidebar: 200;
  --z-layer-fixed: 500;
  --z-layer-nav: 999;
  --z-layer-fab: 1000;
  --z-layer-floating: 1001;
  --z-layer-announcement: 2001;
  --z-layer-modal: 20000;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.2s;
  --t-normal: 0.45s;
  --t-slow: 0.75s;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-xl: 0 40px 100px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 4px 30px rgba(201, 169, 110, 0.15);
}

/* ============ RESET ============ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
/* Custom scrollbar for modern browsers matching the elegant theme */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(182, 143, 64, 0.35); /* Subtle transparent gold */
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--z-gold);
}
body {
  font-family: var(--font-body);
  background: var(--z-ivory);
  color: var(--z-text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }
}
img {
  display: block;
  width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}
ul {
  list-style: none;
}
input,
select,
textarea {
  font-family: var(--font-body);
}

/* ============ TYPOGRAPHY ============ */
.t-display {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.t-editorial {
  font-family: var(--font-editorial);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.01em;
}
.t-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.t-gold {
  color: var(--z-gold);
}
.t-ivory {
  color: var(--z-ivory);
}
.t-muted {
  color: var(--z-text-muted);
}

/* ============ LAYOUT ============ */
.z-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.z-container--narrow {
  max-width: 920px;
}
.z-container--wide {
  max-width: 1600px;
}

/* ============ BUTTONS (Modern Luxury Design System) ============ */
.z-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.z-btn:active:not(:disabled) {
  transform: scale(0.97);
}
.z-btn:focus-visible {
  outline: 2px solid var(--z-gold);
  outline-offset: 4px;
}
.z-btn[disabled],
.z-btn.is-disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.z-btn.is-loading {
  color: transparent !important;
  pointer-events: none;
}
.z-btn.is-loading::after {
  content: "";
  position: absolute;
  width: 1.2em;
  height: 1.2em;
  border: 2px solid rgba(128, 128, 128, 0.3);
  border-top-color: rgba(128, 128, 128, 0.8);
  border-radius: 50%;
  animation: btn-spin 0.8s linear infinite;
  left: 50%;
  top: 50%;
  margin-top: -0.6em;
  margin-left: -0.6em;
}
@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}

/* SIZING */
.z-btn--sm {
  padding: 10px 24px;
  font-size: 0.7rem;
}
.z-btn {
  /* default / md */
  padding: 14px 32px;
  font-size: 0.8rem;
}
.z-btn--lg {
  padding: 18px 48px;
  font-size: 0.9rem;
}

/* VARIANTS */
.z-btn--primary,
.z-btn--gold {
  background: var(--z-gold);
  color: var(--z-midnight);
  box-shadow: 0 4px 14px rgba(201, 169, 110, 0.15);
}
.z-btn--primary:hover,
.z-btn--gold:hover {
  background: var(--z-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3);
}

.z-btn--secondary {
  background: var(--z-forest);
  color: var(--z-ivory);
  box-shadow: 0 4px 14px rgba(10, 15, 13, 0.15);
}
.z-btn--secondary:hover {
  background: var(--z-forest-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 15, 13, 0.3);
}

.z-btn--outline {
  background: transparent;
  color: var(--z-text-dark);
  border-color: rgba(10, 15, 13, 0.2);
}
.z-btn--outline:hover {
  border-color: var(--z-forest);
  color: var(--z-forest);
  background: rgba(10, 15, 13, 0.03);
}

.z-btn--outline-gold {
  background: transparent;
  color: var(--z-gold);
  border-color: rgba(201, 169, 110, 0.5);
}
.z-btn--outline-gold:hover {
  background: rgba(201, 169, 110, 0.08);
  border-color: var(--z-gold);
  color: var(--z-gold-light);
  transform: translateY(-2px);
}

.z-btn--outline-light {
  background: transparent;
  color: var(--z-ivory);
  border-color: rgba(247, 244, 239, 0.4);
}
.z-btn--outline-light:hover {
  background: rgba(247, 244, 239, 0.08);
  border-color: var(--z-ivory);
}

.z-btn--ghost {
  background: transparent;
  color: var(--z-text-dark);
}
.z-btn--ghost:hover {
  background: rgba(10, 15, 13, 0.04);
}

.z-btn--text {
  background: transparent;
  color: var(--z-text-dark);
  padding: 4px 0;
  border-radius: 0;
  border: none;
}
.z-btn--text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.z-btn--text:hover {
  background: transparent;
}
.z-btn--text:hover::after {
  width: 100%;
}

.z-btn--success {
  background: var(--z-forest-mid);
  color: var(--z-ivory);
}
.z-btn--success:hover {
  background: var(--z-forest-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 61, 49, 0.2);
}

.z-btn--danger {
  background: #7b241c;
  color: var(--z-ivory);
}
.z-btn--danger:hover {
  background: #922b21;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(123, 36, 28, 0.2);
}

.z-btn--icon {
  padding: 12px;
  border-radius: 50%;
  aspect-ratio: 1;
}

.z-btn--fab {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: var(--z-layer-modal, 9999);
  padding: 20px;
  border-radius: 50%;
  background: var(--z-ivory-warm);
  color: var(--z-forest);
  border: 1px solid rgba(201, 169, 110, 0.3);
  box-shadow: 0 10px 30px rgba(10, 15, 13, 0.4);
}
.z-btn--fab:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(10, 15, 13, 0.5);
  background: var(--z-forest-deep);
}

.z-btn--primary.is-loading::after,
.z-btn--outline-gold.is-loading::after {
  border-top-color: var(--z-midnight);
  border-color: rgba(10, 15, 13, 0.1);
}
.z-btn--secondary.is-loading::after,
.z-btn--success.is-loading::after,
.z-btn--danger.is-loading::after,
.z-btn--outline-light.is-loading::after {
  border-top-color: var(--z-ivory);
  border-color: rgba(255, 255, 255, 0.2);
}

/* ============ NAVBAR ============ */
/* ============ NAVBAR — GLASS MORPHISM 2.0 ============ */
.z-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-layer-nav, 999);
  width: calc(100% - 48px);
  max-width: 1200px;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 100px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.z-nav.transparent {
  background: rgba(10, 15, 13, 0.45);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(201, 169, 110, 0.18);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.z-nav.scrolled {
  background: rgba(8, 12, 10, 0.88);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(201, 169, 110, 0.14);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  height: 58px;
  top: 12px;
}

.z-nav__brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--z-gold);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.z-nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.z-nav__links a {
  font-family: "Inter", sans-serif;
  color: rgba(247, 244, 239, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
  padding: 4px 0;
}
.z-nav__links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1.5px;
  background: var(--z-gold);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.z-nav__links a:hover,
.z-nav__links a.active {
  color: var(--z-gold);
}
.z-nav__links a:hover::after,
.z-nav__links a.active::after {
  width: 100%;
}

.z-nav__cta {
  padding: 8px 20px !important;
  border-radius: 100px !important;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* ============ HERO ============ */
.z-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
}
body.has-announcement .z-hero {
  padding-top: 140px;
}

.z-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.z-hero.loaded .z-hero__bg {
  transform: scale(1);
}

.z-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(5, 16, 18, 0.35) 0%,
      rgba(5, 16, 18, 0.5) 50%,
      rgba(5, 16, 18, 0.75) 100%
    ),
    rgba(5, 16, 18, 0.2); /* Softer base overlay for brighter, more vibrant hero photography */
  z-index: 1;
}

.z-hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  margin: 0 auto;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
}
.z-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  color: var(--z-gold-pale);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  animation: fadeInUp 1s var(--ease-smooth) 0.3s forwards;
}

.z-hero__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--z-white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-smooth) 0.5s forwards;
  text-shadow: 0 4px 20px rgba(5, 16, 18, 0.4);
}
.z-hero__title em {
  font-style: italic;
  color: var(--z-gold-pale);
}

.z-hero__subtitle {
  font-family: var(--font-editorial);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(247, 244, 239, 0.85);
  margin-bottom: 48px;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-smooth) 0.7s forwards;
  text-shadow: 0 2px 10px rgba(5, 16, 18, 0.3);
}

.z-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s var(--ease-smooth) 0.9s forwards;
}

/* z-hero__search — see definition in ADDITIONAL STYLES section below */

/* Scroll Indicator */
.z-scroll-hint {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(247, 244, 239, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeIn 2s ease 2s both;
}
.z-scroll-hint__line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201, 169, 110, 0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ============ SECTIONS ============ */
.z-section {
  padding: var(--space-xl) 0;
}

/* Legacy dark/midnight kept for footer only */
.z-section--dark {
  background: var(--z-forest-deep);
  color: var(--z-ivory);
}
.z-section--midnight {
  background: var(--z-midnight);
  color: var(--z-ivory);
}

/* Primary light sections */
.z-section--ivory {
  background: var(--z-ivory);
  color: var(--z-text-dark);
}
.z-section--cream {
  background: var(--z-ivory-warm);
  color: var(--z-text-dark);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

/* Section text defaults on light backgrounds */
.z-section--ivory .z-section__title,
.z-section--cream .z-section__title {
  color: var(--z-forest);
}
.z-section--ivory .z-section__subtitle,
.z-section--cream .z-section__subtitle {
  color: var(--z-text-muted);
}

/* Legacy overrides (kept for any footer CTA still using dark) */
.z-section--dark .z-section__title,
.z-section--midnight .z-section__title {
  color: var(--z-ivory);
}
.z-section--dark .z-section__subtitle,
.z-section--midnight .z-section__subtitle {
  color: rgba(247, 244, 239, 0.55);
}

/* ============ SECTION TYPOGRAPHY DEFAULTS ============ */
.z-section__header {
  margin-bottom: 70px;
}
.z-section__eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--z-gold);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
}
.z-section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--z-forest);
}
.z-section__subtitle {
  font-family: var(--font-editorial);
  font-size: 1.2rem;
  color: var(--z-text-muted);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 300;
}

/* ============ DESTINATION EDITORIAL CARDS ============ */
.z-dest-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  overflow: hidden;
  position: relative;
}
.z-dest-item:nth-child(even) {
  direction: rtl;
}
.z-dest-item:nth-child(even) .z-dest-item__body {
  direction: ltr;
}
.z-dest-item:nth-child(even) .z-dest-item__image {
  direction: ltr;
}

.z-dest-item__image {
  position: relative;
  overflow: hidden;
}
.z-dest-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-smooth);
}
.z-dest-item:hover .z-dest-item__image img {
  transform: scale(1.06);
}

.z-dest-item__number {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  pointer-events: none;
}

.z-dest-item__body {
  background: var(--z-ivory-warm);
  padding: 70px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.z-dest-item__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: linear-gradient(to bottom, var(--z-gold), transparent);
  transition: height var(--t-slow) var(--ease-smooth);
}
.z-dest-item:hover .z-dest-item__body::before {
  height: 100%;
}

.z-dest-item__tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--z-forest);
  margin-bottom: 20px;
}
.z-dest-item__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 3.5vw, 3.8rem);
  font-weight: 900;
  color: var(--z-forest);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.z-dest-item__divider {
  width: 48px;
  height: 1px;
  background: var(--z-gold);
  opacity: 0.5;
  margin-bottom: 24px;
  transition: width var(--t-normal) var(--ease-smooth);
}
.z-dest-item:hover .z-dest-item__divider {
  width: 80px;
  opacity: 1;
}

.z-dest-item__desc {
  font-family: var(--font-editorial);
  font-size: 1.1rem;
  color: var(--z-text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}
.z-dest-item__meta {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
}
.z-dest-item__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.z-dest-item__meta-label {
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--z-forest);
  opacity: 0.8;
}
.z-dest-item__meta-value {
  font-family: var(--font-editorial);
  font-size: 1rem;
  color: var(--z-forest-deep);
  font-weight: 500;
}

/* ============ PACKAGE CARDS ============ */
.z-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.z-carousel-wrapper {
  position: relative;
  width: 100%;
}
.z-carousel-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 32px;
  padding: 20px 4px 40px 4px; /* padding for shadows */
  margin: -20px -4px -40px -4px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}
.z-carousel-grid::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.z-carousel-grid > .z-luxury-card {
  flex: 0 0 340px; /* Fixed width for carousel items */
  scroll-snap-align: center;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.z-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--z-forest);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.z-carousel-btn:hover {
  background: var(--z-forest);
  color: #fff;
  box-shadow: 0 15px 35px rgba(10, 29, 32, 0.25);
}
.z-carousel-btn--prev {
  left: -27px;
}
.z-carousel-btn--next {
  right: -27px;
}
.z-carousel-btn--prev:hover {
  transform: translateY(-50%) translateX(-4px) scale(1.08);
}
.z-carousel-btn--next:hover {
  transform: translateY(-50%) translateX(4px) scale(1.08);
}

@media (max-width: 1024px) {
  .z-carousel-btn {
    width: 44px;
    height: 44px;
  }
  .z-carousel-btn--prev {
    left: -10px;
  }
  .z-carousel-btn--next {
    right: -10px;
  }
}
@media (max-width: 768px) {
  .z-carousel-btn {
    width: 40px;
    height: 40px;
  }
  .z-carousel-btn svg {
    width: 20px;
    height: 20px;
  }
  .z-carousel-btn--prev {
    left: 8px;
  }
  .z-carousel-btn--next {
    right: 8px;
  }
}
.z-pkg-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--z-forest-deep);
}
.z-pkg-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}
.z-pkg-card__image {
  position: absolute;
  inset: 0;
  transition: transform var(--t-slow) var(--ease-smooth);
}
.z-pkg-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.z-pkg-card:hover .z-pkg-card__image {
  transform: scale(1.08);
}

.z-pkg-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 15, 13, 0.92) 0%,
    rgba(10, 15, 13, 0.3) 50%,
    transparent 100%
  );
  transition: background var(--t-normal) var(--ease-smooth);
}
.z-pkg-card:hover .z-pkg-card__overlay {
  background: linear-gradient(
    to top,
    rgba(10, 15, 13, 0.97) 0%,
    rgba(10, 15, 13, 0.5) 60%,
    rgba(10, 15, 13, 0.1) 100%
  );
}

.z-pkg-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px;
}
.z-pkg-card__badge {
  display: inline-block;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--z-gold);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.z-pkg-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--z-ivory);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.15;
}
.z-pkg-card__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.z-pkg-card__meta span {
  color: rgba(247, 244, 239, 0.6);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.z-pkg-card__price {
  font-family: var(--font-editorial);
  font-size: 1.5rem;
  color: var(--z-gold);
  margin-bottom: 20px;
}
.z-pkg-card__price span {
  font-size: 0.85rem;
  color: rgba(201, 169, 110, 0.6);
}

.z-pkg-card__cta {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-normal) var(--ease-smooth);
}
.z-pkg-card:hover .z-pkg-card__cta {
  max-height: 60px;
}

/* ============ TESTIMONIALS ============ */
.z-testimonials {
  background: var(--z-ivory-warm);
  padding: var(--space-xl) 0;
}
.z-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.z-testimonial {
  background: var(--z-white);
  padding: 44px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  transition: all var(--t-normal) var(--ease-smooth);
}
.z-testimonial:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(201, 169, 110, 0.2);
}
.z-testimonial::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 36px;
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--z-gold);
  opacity: 0.12;
  line-height: 1;
}
.z-testimonial__text {
  font-family: var(--font-editorial);
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--z-text-mid);
  margin-bottom: 28px;
  font-weight: 300;
}
.z-testimonial__author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.z-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--z-forest-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--z-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.z-testimonial__name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--z-text-dark);
  margin-bottom: 2px;
}
.z-testimonial__location {
  font-size: 0.75rem;
  color: var(--z-text-muted);
  letter-spacing: 0.05em;
}
.z-stars {
  color: var(--z-gold);
  font-size: 0.7rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

/* ============ EXPERIENCE STRIP ============ */
.z-experience-strip {
  background: var(--z-forest);
  padding: 50px 0;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}
.z-experience-strip .z-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.z-exp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 30px;
  border-right: 1px solid rgba(201, 169, 110, 0.1);
  transition: background var(--t-fast);
}
.z-exp-item:last-child {
  border-right: none;
}
.z-exp-item:hover {
  background: rgba(201, 169, 110, 0.05);
}
.z-exp-item__icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: var(--z-gold);
}
.z-exp-item__number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--z-ivory);
  line-height: 1;
  margin-bottom: 6px;
}
.z-exp-item__label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.45);
}

/* ============ STORYTELLING SECTION ============ */
.z-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  padding: var(--space-xl) 0;
}
.z-story__image-stack {
  position: relative;
  height: 600px;
}
.z-story__img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 78%;
  height: 85%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-xl);
}
.z-story__img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--z-ivory);
}
.z-story__badge {
  position: absolute;
  bottom: 20%;
  left: 30%;
  background: var(--z-forest);
  color: var(--z-ivory);
  padding: 20px 24px;
  border-radius: 4px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 169, 110, 0.15);
}
.z-story__badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--z-gold);
  display: block;
  line-height: 1;
}
.z-story__badge-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.6);
  margin-top: 4px;
}
.z-story__content {
  padding-right: 20px;
}
.z-story__steps {
  margin-top: 40px;
}
.z-story__step {
  display: flex;
  gap: 24px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.z-story__step:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.z-story__step-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--z-gold);
  opacity: 0.4;
  min-width: 40px;
  line-height: 1;
}
.z-story__step-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--z-text-dark);
  margin-bottom: 6px;
}
.z-story__step-desc {
  font-family: var(--font-editorial);
  color: var(--z-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============ GALLERY ============ */
.z-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  grid-auto-rows: 280px;
  gap: 4px;
}
.z-gallery__item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.z-gallery__item:nth-child(1) {
  grid-column: span 5;
  grid-row: span 2;
}
.z-gallery__item:nth-child(2) {
  grid-column: span 4;
}
.z-gallery__item:nth-child(3) {
  grid-column: span 3;
}
.z-gallery__item:nth-child(4) {
  grid-column: span 3;
}
.z-gallery__item:nth-child(5) {
  grid-column: span 4;
}
.z-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-smooth);
}
.z-gallery__item:hover img {
  transform: scale(1.08);
}
.z-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 13, 0);
  transition: background var(--t-normal);
}
.z-gallery__item:hover::after {
  background: rgba(10, 15, 13, 0.2);
}

/* ============ MARQUEE / TICKER ============ */
.z-marquee-wrap {
  overflow: hidden;
  background: var(--z-gold);
  padding: 16px 0;
  white-space: nowrap;
}
.z-marquee {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
.z-marquee span {
  font-family: var(--font-editorial);
  font-size: 1rem;
  color: var(--z-forest);
  padding: 0 32px;
  letter-spacing: 0.04em;
}
.z-marquee span::before {
  content: "◆";
  margin-right: 32px;
  font-size: 0.5rem;
  opacity: 0.5;
  vertical-align: middle;
}

/* ============ PORTAL LAYOUT ============ */
.z-portal {
  display: flex;
  min-height: 100vh;
  background: #f1f3f5;
}

.z-sidebar {
  width: 260px;
  background: var(--z-ivory-warm);
  display: flex;
  flex-direction: column;
  padding: 36px 0;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: var(--z-layer-dropdown, 100);
  border-right: 1px solid rgba(201, 169, 110, 0.15);
}
.z-sidebar__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--z-gold);
  padding: 0 32px;
  margin-bottom: 40px;
}
.z-sidebar__tagline {
  padding: 0 28px;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.25);
  margin-bottom: 36px;
}
.z-sidebar__section-label {
  padding: 0 28px;
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.25);
  margin: 20px 0 8px;
}
.z-sidebar__nav {
  flex: 1;
}
.z-sidebar__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 32px;
  color: var(--z-text-mid);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--t-fast);
  border-right: 3px solid transparent;
}
.z-sidebar__link:hover,
.z-sidebar__link.active {
  color: var(--z-forest);
  background: rgba(0, 0, 0, 0.03);
  border-right-color: var(--z-forest);
}
.z-sidebar__link-icon {
  font-size: 1rem;
  min-width: 22px;
  opacity: 0.7;
}
.z-sidebar__link.active .z-sidebar__link-icon {
  opacity: 1;
}

.z-sidebar__footer {
  padding: 24px 28px;
  border-top: 1px solid rgba(201, 169, 110, 0.08);
  margin-top: 20px;
}
.z-sidebar__user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.z-sidebar__user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--z-forest-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--z-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.z-sidebar__user-name {
  font-weight: 500;
  color: var(--z-ivory);
  font-size: 0.85rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.z-sidebar__user-role {
  font-size: 0.65rem;
  color: var(--z-gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.z-sidebar__logout {
  font-size: 0.75rem;
  color: rgba(247, 244, 239, 0.35);
  transition: color var(--t-fast);
  letter-spacing: 0.05em;
}
.z-sidebar__logout:hover {
  color: #ff6b6b;
}

.z-portal-main {
  flex: 1;
  margin-left: 260px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.z-portal-topbar {
  background: var(--z-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.z-portal-topbar__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--z-text-dark);
}
.z-portal-topbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.z-portal-body {
  padding: 40px;
  flex: 1;
}

/* Portal Stat Cards */
.z-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.z-stat-card {
  background: var(--z-white);
  border-radius: 6px;
  padding: 28px 32px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--t-normal) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.z-stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.z-stat-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--z-gold);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.z-stat-card:hover::after {
  opacity: 1;
}
.z-stat-card__icon {
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: var(--z-gold);
}
.z-stat-card__value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--z-text-dark);
  line-height: 1;
  margin-bottom: 8px;
}
.z-stat-card__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--z-text-muted);
}

/* Portal Table */
.z-table-card {
  background: var(--z-white);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.z-table-card__header {
  padding: 24px 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.z-table-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--z-text-dark);
}
.z-data-table {
  width: 100%;
  border-collapse: collapse;
}
.z-data-table th {
  background: #f8f9fa;
  padding: 13px 24px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--z-text-muted);
  text-align: left;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.z-data-table td {
  padding: 16px 24px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  color: var(--z-text-dark);
  transition: background var(--t-fast);
}
.z-data-table tr:hover td {
  background: #fafbfc;
}
.z-data-table tr:last-child td {
  border-bottom: none;
}

/* Badges */
.z-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 3px;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.z-badge--gold {
  background: rgba(201, 169, 110, 0.12);
  color: #a07c40;
}
.z-badge--green {
  background: rgba(34, 139, 74, 0.1);
  color: #1a6a36;
}
.z-badge--red {
  background: rgba(220, 38, 38, 0.1);
  color: #c82020;
}
.z-badge--blue {
  background: rgba(37, 99, 235, 0.1);
  color: #1d4ed8;
}
.z-badge--gray {
  background: rgba(0, 0, 0, 0.07);
  color: var(--z-text-muted);
}

/* ============ AUTH PAGES ============ */
.z-auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.z-auth-visual {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.z-auth-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 15, 13, 0.7),
    rgba(19, 45, 37, 0.5)
  );
}
.z-auth-visual__content {
  position: absolute;
  z-index: 2;
  bottom: 200px;
  left: 60px;
  right: 60px;
}
.z-auth-visual__quote {
  font-family: var(--font-editorial);
  font-size: 1.6rem;
  color: var(--z-ivory);
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 300;
  font-style: italic;
}
.z-auth-visual__attrib {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--z-gold);
}
.z-auth-visual__brand {
  position: absolute;
  z-index: 2;
  top: 40px;
  left: 60px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--z-gold);
}

.z-auth-form-side {
  background: var(--z-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}
.z-auth-form-inner {
  width: 100%;
  max-width: 420px;
}
.z-auth-form-inner h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--z-text-dark);
  margin-bottom: 10px;
}
.z-auth-form-inner p {
  color: var(--z-text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
  font-family: var(--font-editorial);
  font-size: 1.05rem;
}

/* Form fields */
.z-field {
  margin-bottom: 24px;
}
.z-field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--z-text-muted);
  margin-bottom: 10px;
  font-weight: 500;
}
.z-field input,
.z-field select,
.z-field textarea {
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  font-size: 1rem;
  font-family: var(--font-editorial);
  color: var(--z-text-dark);
  outline: none;
  transition: border-color var(--t-fast);
  border-radius: 0;
}
.z-field input:focus,
.z-field select:focus,
.z-field textarea:focus {
  border-bottom-color: var(--z-gold);
}
.z-field textarea {
  resize: vertical;
  min-height: 100px;
}

/* Alert */
.z-alert {
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-bottom: 24px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.z-alert--error {
  background: #fff0f0;
  color: #c62828;
  border-left: 3px solid #c62828;
}
.z-alert--success {
  background: #f0fdf4;
  color: #166534;
  border-left: 3px solid #166534;
}

/* ============ NEWSLETTER ============ */
.z-newsletter-section-wrapper {
  background: var(--z-forest);
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 50px;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.z-newsletter-section-wrapper h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 0 0 10px 0;
}
.z-newsletter-section-wrapper p {
  font-family: var(--font-editorial);
  opacity: 0.8;
  margin-bottom: 24px;
  max-width: 500px;
  font-size: 1.05rem;
}
.z-newsletter-form-container {
  display: flex;
  width: 100%;
  max-width: 500px;
  gap: 10px;
}
.z-newsletter-input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  min-width: 0;
}
.z-newsletter-btn {
  background: var(--z-gold);
  color: #fff;
  border: none;
  white-space: nowrap;
  padding: 15px 30px;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
}
@media (max-width: 768px) {
  .z-newsletter-section-wrapper {
    padding: 30px 20px;
  }
  .z-newsletter-section-wrapper h3 {
    font-size: 1.5rem;
  }
  .z-newsletter-form-container {
    flex-direction: column;
  }
  .z-newsletter-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============ FOOTER ============ */
.z-footer {
  background: var(--z-forest-deep);
  padding: 90px 0 0;
  color: var(--z-ivory);
}
.z-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}
.z-footer__brand {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--z-gold);
  margin-bottom: 16px;
}
.z-footer__tagline {
  font-family: var(--font-editorial);
  font-size: 1rem;
  color: rgba(247, 244, 239, 0.45);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 300px;
}
.z-footer__social {
  display: flex;
  gap: 14px;
}
.z-footer__social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247, 244, 239, 0.5);
  font-size: 0.9rem;
  transition: all var(--t-fast);
}
.z-footer__social a:hover {
  border-color: var(--z-gold);
  color: var(--z-gold);
  background: rgba(201, 169, 110, 0.08);
}
.z-footer__col-title {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--z-gold);
  margin-bottom: 24px;
}
.z-footer__col-links li {
  margin-bottom: 12px;
}
.z-footer__col-links a {
  color: rgba(247, 244, 239, 0.45);
  font-size: 0.88rem;
  transition: color var(--t-fast);
}
.z-footer__col-links a:hover {
  color: var(--z-ivory);
}
.z-footer__bottom {
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.z-footer__bottom p {
  font-size: 0.78rem;
  color: rgba(247, 244, 239, 0.25);
  letter-spacing: 0.04em;
}
.z-footer__bottom a {
  color: rgba(247, 244, 239, 0.25);
  font-size: 0.78rem;
  transition: color var(--t-fast);
}
.z-footer__bottom a:hover {
  color: var(--z-gold);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  50.01% {
    transform-origin: bottom;
  }
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

.z-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.8s var(--ease-smooth),
    transform 0.8s var(--ease-smooth);
}
.z-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ CONTACT PAGE ============ */
.z-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.z-contact-info {
  padding-top: 20px;
}
.z-contact-info__item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.z-contact-info__item:last-child {
  border-bottom: none;
}
.z-contact-info__icon {
  font-size: 1.3rem;
  color: var(--z-gold);
  min-width: 24px;
  margin-top: 2px;
}
.z-contact-info__label {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--z-text-muted);
  margin-bottom: 6px;
}
.z-contact-info__value {
  font-family: var(--font-editorial);
  font-size: 1.05rem;
  color: var(--z-text-dark);
  line-height: 1.6;
}
.z-contact-form-card {
  background: var(--z-white);
  padding: 56px;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* ============ UTILITIES ============ */
.text-center {
  text-align: center;
}
.text-gold {
  color: var(--z-gold);
}
.text-ivory {
  color: var(--z-ivory);
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.gap-sm {
  gap: 12px;
}
.gap-md {
  gap: 24px;
}
.mb-sm {
  margin-bottom: 16px;
}
.mb-md {
  margin-bottom: 32px;
}
.mb-lg {
  margin-bottom: 60px;
}
.pt-hero {
  padding-top: 160px;
}
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--z-gold);
  margin-bottom: 24px;
}
.gold-line--center {
  margin: 0 auto 24px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .z-packages-grid {
    grid-template-columns: 1fr 1fr;
  }
  .z-pkg-card:first-child {
    grid-row: auto;
    aspect-ratio: 3/4;
  }
  .z-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .z-nav {
    top: 12px;
    width: calc(100% - 32px);
    padding: 0 18px;
    height: 56px;
  }
  .z-nav__links {
    display: none;
  }
  .z-nav__hamburger {
    display: flex;
  }
}
@media (max-width: 900px) {
  :root {
    --space-xl: 5rem;
  }
  .z-dest-item {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .z-dest-item:nth-child(even) {
    direction: ltr;
  }
  .z-dest-item__image {
    height: 320px;
  }
  .z-dest-item__body {
    padding: 44px 36px;
  }
  .z-story {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .z-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .z-experience-strip .z-container {
    grid-template-columns: 1fr 1fr;
  }
  .z-exp-item {
    border-right: none;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
  }
  .z-auth-page {
    grid-template-columns: 1fr;
  }
  .z-auth-visual {
    display: none;
  }
  .z-stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .z-container {
    padding: 0 20px;
  }
  .z-hero__search {
    display: none;
  }
  .z-hero__title {
    font-size: 3rem;
  }
  .z-packages-grid {
    grid-template-columns: 1fr;
  }
  .z-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .z-gallery__item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    height: 220px;
  }
  .z-footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .z-footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .z-portal {
    flex-direction: column;
  }
  .z-sidebar {
    position: static;
    width: 100%;
  }
  .z-portal-main {
    margin-left: 0;
  }
  .z-stats-grid {
    grid-template-columns: 1fr;
  }
  .z-contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .z-contact-form-card {
    padding: 36px 24px;
  }
  .z-auth-form-side {
    padding: 40px 24px;
  }
}

/* ============================================
   ADDITIONAL STYLES (Hero Carousel, New Pages)
   ============================================ */

/* ---- MOBILE HAMBURGER ---- */
.z-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
  background: none;
  border: none;
}
.z-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--z-ivory);
  transition: all 0.3s ease;
  transform-origin: center;
}
.z-nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.z-nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.z-nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.z-mobile-menu {
  display: none;
  position: fixed;
  top: 84px;
  left: 16px;
  right: 16px;
  background: rgba(8, 12, 10, 0.96);
  backdrop-filter: blur(28px);
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: var(--z-layer-nav, 998);
  border: 1px solid rgba(201, 169, 110, 0.14);
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  transform: translateY(-12px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.z-mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.z-mobile-menu a {
  color: rgba(247, 244, 239, 0.75);
  padding: 12px 0;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(201, 169, 110, 0.06);
  transition: color 0.2s;
}
.z-mobile-menu a:hover {
  color: var(--z-gold);
}

@media (max-width: 1100px) {
  .z-nav__hamburger {
    display: flex;
  }
}
/* ---- HERO CAROUSEL ---- */
.z-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.z-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.z-carousel__slide.active {
  opacity: 1;
  z-index: 1;
}
.z-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.z-carousel__slide.active img {
  transform: scale(1);
}

.z-carousel__controls {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.z-carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(247, 244, 239, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.z-carousel__dot.active {
  width: 28px;
  border-radius: 3px;
  background: var(--z-gold);
}
.z-carousel__arrows {
  position: absolute;
  bottom: 110px;
  right: 50px;
  z-index: 10;
  display: flex;
  gap: 12px;
}
.z-carousel__arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(247, 244, 239, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--z-ivory);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  background: rgba(10, 15, 13, 0.3);
  backdrop-filter: blur(8px);
}
.z-carousel__arrow:hover {
  border-color: var(--z-gold);
  color: var(--z-gold);
  background: rgba(10, 15, 13, 0.6);
}

/* Slide counter */
.z-carousel__counter {
  position: absolute;
  bottom: 130px;
  left: 50px;
  z-index: 10;
  font-family: var(--font-editorial);
  font-size: 0.9rem;
  color: rgba(247, 244, 239, 0.5);
  letter-spacing: 0.06em;
}
.z-carousel__counter strong {
  color: var(--z-gold);
  font-weight: 400;
}

/* ---- FIXED HERO SEARCH / QUICK BOOK ---- */
.z-hero__search {
  position: absolute;
  bottom: 4px;
  width: min(92%, 1000px);
  z-index: 20;
  background: rgba(9, 14, 12, 0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 8px;
  padding: 18px 40px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(201, 169, 110, 0.05);
  opacity: 0;
  animation: fadeInUp 1s ease 1.1s forwards;
}
.z-hero__search-title {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--z-gold);
  margin-bottom: 20px;
  display: block;
}
.z-hero__search-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 24px;
  align-items: end;
}
.z-search-field {
  position: relative;
}
.z-search-field label {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.7);
  margin-bottom: 12px;
  font-weight: 500;
}
.z-search-field select,
.z-search-field input[type="date"],
.z-search-field input[type="text"],
.z-search-field input[type="number"] {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.22);
  padding: 10px 0;
  color: var(--z-ivory);
  font-size: 1.05rem;
  font-family: var(--font-editorial);
  outline: none;
  transition: border-color 0.2s;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.z-search-field select:focus,
.z-search-field input:focus {
  border-bottom-color: var(--z-gold);
}
.z-search-field select option {
  background: #0d1f1a;
  color: var(--z-ivory);
}

/* ---- HOTEL CARDS ---- */
.z-hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}
.z-hotel-card {
  background: var(--z-white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--t-normal) var(--ease-smooth);
}
.z-hotel-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.z-hotel-card__image {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.z-hotel-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) ease;
}
.z-hotel-card:hover .z-hotel-card__image img {
  transform: scale(1.07);
}
.z-hotel-card__stars {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(10, 15, 13, 0.75);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 3px;
  color: var(--z-gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
}
.z-hotel-card__body {
  padding: 28px 32px;
}
.z-hotel-card__dest {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--z-gold);
  margin-bottom: 10px;
  display: block;
}
.z-hotel-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--z-text-dark);
  line-height: 1.2;
}
.z-hotel-card__desc {
  font-family: var(--font-editorial);
  font-size: 0.95rem;
  color: var(--z-text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
}
.z-hotel-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.z-hotel-card__price {
  font-family: var(--font-editorial);
  font-size: 1.3rem;
  color: var(--z-forest);
  font-weight: 500;
}
.z-hotel-card__price span {
  font-size: 0.8rem;
  color: var(--z-text-muted);
}

/* ---- VEHICLE CARDS ---- */
.z-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.z-vehicle-card {
  background: var(--z-ivory-warm);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(201, 169, 110, 0.15);
  transition: all var(--t-normal) var(--ease-smooth);
}
.z-vehicle-card:hover {
  border-color: rgba(201, 169, 110, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.z-vehicle-card__image {
  height: 210px;
  overflow: hidden;
}
.z-vehicle-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--t-slow) ease;
}
.z-vehicle-card:hover .z-vehicle-card__image img {
  transform: scale(1.05);
  filter: brightness(0.95) saturate(1.1);
}
.z-vehicle-card__body {
  padding: 26px 30px;
}
.z-vehicle-card__type {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--z-forest);
  margin-bottom: 10px;
  display: block;
}
.z-vehicle-card__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--z-forest);
  margin-bottom: 16px;
}
.z-vehicle-card__specs {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.z-vehicle-card__spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--z-text-mid);
}
.z-vehicle-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
}
.z-vehicle-card__price {
  font-family: var(--font-editorial);
  font-size: 1.2rem;
  color: var(--z-gold);
}
.z-vehicle-card__price span {
  font-size: 0.78rem;
  color: var(--z-text-muted);
}

/* ---- GALLERY PAGE ---- */
.z-gallery-masonry {
  columns: 3;
  column-gap: 16px;
}
.z-gallery-masonry__item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}
.z-gallery-masonry__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--t-slow) ease;
}
.z-gallery-masonry__item:hover img {
  transform: scale(1.04);
}
.z-gallery-masonry__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 13, 0);
  transition: background 0.3s;
}
.z-gallery-masonry__item:hover::after {
  background: rgba(10, 15, 13, 0.15);
}

/* Lightbox */
.z-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-layer-modal, 9999);
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  gap: 0;
}
.z-lightbox.open {
  display: flex;
}
.z-lightbox__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 88vw;
}
.z-lightbox__img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
  transition:
    opacity 0.15s ease,
    transform 0.15s ease;
}
.z-lightbox__caption {
  margin-top: 14px;
  font-family: var(--font-editorial);
  font-size: 0.9rem;
  color: rgba(247, 244, 239, 0.55);
  letter-spacing: 0.05em;
  text-align: center;
}
.z-lightbox__counter {
  margin-top: 6px;
  font-size: 0.7rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(201, 169, 110, 0.5);
}
.z-lightbox__close {
  position: absolute;
  top: 22px;
  right: 28px;
  color: rgba(247, 244, 239, 0.55);
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  backdrop-filter: blur(8px);
}
.z-lightbox__close:hover {
  color: var(--z-gold);
  border-color: rgba(201, 169, 110, 0.4);
  background: rgba(201, 169, 110, 0.08);
}
.z-lightbox__nav {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: rgba(247, 244, 239, 0.7);
  font-size: 1.4rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin: 0 20px;
  z-index: 2;
}
.z-lightbox__nav:hover {
  background: rgba(201, 169, 110, 0.15);
  border-color: rgba(201, 169, 110, 0.45);
  color: var(--z-gold);
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .z-gallery-masonry {
    columns: 2;
  }
}

/* ---- FAQ ACCORDION ---- */
.z-faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.z-faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.z-faq-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.z-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--z-text-dark);
  transition: color 0.2s;
  user-select: none;
}
.z-faq-question:hover {
  color: var(--z-forest);
}
.z-faq-question.active {
  color: var(--z-forest);
}
.z-faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--z-text-muted);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.z-faq-question.active .z-faq-icon {
  background: var(--z-forest);
  color: var(--z-gold);
  border-color: transparent;
  transform: rotate(45deg);
}
.z-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.45s ease,
    padding 0.3s ease;
}
.z-faq-answer.open {
  max-height: 400px;
  padding-bottom: 24px;
}
.z-faq-answer p {
  font-family: var(--font-editorial);
  font-size: 1rem;
  color: var(--z-text-muted);
  line-height: 1.8;
}

/* ---- SERVICES GRID ---- */
.z-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.z-service-card {
  padding: 40px 36px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--z-white);
  transition: all var(--t-normal) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.z-service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--z-forest), var(--z-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-normal) ease;
}
.z-service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.z-service-card:hover::before {
  transform: scaleX(1);
}
.z-service-card__icon {
  font-size: 2rem;
  margin-bottom: 22px;
  color: var(--z-gold);
}
.z-service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--z-text-dark);
}
.z-service-card__desc {
  font-family: var(--font-editorial);
  font-size: 0.97rem;
  color: var(--z-text-muted);
  line-height: 1.8;
}

/* ---- ABOUT TIMELINE ---- */
.z-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.z-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--z-gold), transparent);
}
.z-timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
}
.z-timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--z-forest);
  border: 2px solid rgba(201, 169, 110, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--z-gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.z-timeline-body {
  padding-top: 12px;
  flex: 1;
}
.z-timeline-year {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--z-gold);
  margin-bottom: 8px;
}
.z-timeline-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--z-text-dark);
  margin-bottom: 10px;
}
.z-timeline-desc {
  font-family: var(--font-editorial);
  font-size: 0.97rem;
  color: var(--z-text-muted);
  line-height: 1.8;
}

/* ---- TEAM CARDS ---- */
.z-team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.z-team-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--z-white);
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--t-normal) ease;
}
.z-team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.z-team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--z-forest-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--z-gold);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 20px;
  border: 2px solid rgba(201, 169, 110, 0.2);
}
.z-team-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.z-team-card__role {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--z-gold);
  margin-bottom: 14px;
}
.z-team-card__bio {
  font-family: var(--font-editorial);
  font-size: 0.92rem;
  color: var(--z-text-muted);
  line-height: 1.7;
}

/* ---- NAV DROPDOWN ---- */
.z-nav-dropdown {
  position: relative;
}
.z-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 15, 13, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 4px;
  padding: 10px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  list-style: none;
  z-index: var(--z-layer-dropdown, 100);
}
.z-nav-dropdown:hover .z-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.z-dropdown-menu li {
  margin: 0;
}
.z-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--z-ivory);
  transition:
    background 0.2s,
    color 0.2s;
  text-transform: none;
  letter-spacing: normal;
}
.z-dropdown-menu a:hover {
  background: rgba(201, 169, 110, 0.1);
  color: var(--z-gold);
}

/* ============ RESPONSIVE UTILITY GRIDS ============ */
.z-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.z-grid-2-sidebar {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
.z-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.z-grid-2-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .z-grid-2,
  .z-grid-2-sidebar,
  .z-grid-2-services {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .z-grid-4 {
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
  }
}
@media (max-width: 500px) {
  .z-grid-4 {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* ============ LUXURY EDITORIAL CARDS ============ */
.z-luxury-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 28px;
  background: var(--z-card-bg);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  transition:
    box-shadow var(--t-normal) var(--ease-smooth),
    transform var(--t-normal) var(--ease-smooth);
  aspect-ratio: 4/6;
  display: flex;
  flex-direction: column;
  transform: translate3d(0, 0, 0);
}

.z-luxury-card:hover {
  box-shadow:
    0 25px 60px rgba(10, 29, 32, 0.35),
    0 0 20px rgba(162, 123, 92, 0.08);
  transform: translate3d(0, -6px, 0);
}

.z-luxury-card__img-container {
  position: absolute;
  top: -1px;
  left: -1px;
  width: calc(100% + 2px);
  height: calc(55% + 2px);
  z-index: 1;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  background: var(--z-card-bg);
  transform: translate3d(0, 0, 0);
}

.z-luxury-card__img-container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(16, 33, 36, 0) 50%,
    var(--z-card-bg) 100%
  );
  z-index: 2;
}

.z-luxury-card__img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.z-luxury-card:hover .z-luxury-card__img-container img {
  transform: scale(1.08) translate3d(0, 0, 0);
}

.z-luxury-card__bookmark {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  color: #ffffff;
  transition: background 0.3s ease;
}
.z-luxury-card__bookmark:hover {
  background: rgba(255, 255, 255, 0.3);
}

.z-luxury-card__content {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 0 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.z-luxury-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.z-luxury-card__title {
  font-family:
    -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: #ffffff;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.z-luxury-card:hover .z-luxury-card__title {
  color: var(--z-gold-pale);
}

.z-luxury-card__price-badge {
  background: var(--z-gold);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 999px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.z-luxury-card__desc {
  font-family:
    -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--z-card-desc);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.z-luxury-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.z-luxury-card__pill {
  background: var(--z-card-pill);
  color: #ffffff;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  font-weight: 500;
}

.z-luxury-card__cta {
  width: 100%;
  background: #ffffff;
  color: #000000;
  text-align: center;
  padding: 14px 0;
  border-radius: 999px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 12px;
  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}

.z-luxury-card:hover .z-luxury-card__cta {
  background: var(--z-gold);
  color: #ffffff;
}

/* Ensure mobile layout plays nicely */
@media (max-width: 768px) {
  .z-luxury-card {
    aspect-ratio: 4/5;
    border-radius: 24px;
  }
  .z-luxury-card__img-container {
    border-radius: 24px 24px 0 0;
  }
  .z-luxury-card__content {
    padding: 0 16px 16px 16px;
  }
  .z-luxury-card__title {
    font-size: 1.25rem;
  }
}
