/* ============================================
   R3 Luxury Travel -Design System & Styles
   ============================================ */

/* --- CSS Variables --- */
:root {
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --gold: #b89a6a;
  --gold-light: #d4b483;
  --gold-dark: #9a7f52;
  --white: #f5f3ef;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --gray-dark: #333333;
  --muted: #5a5a5a;
  --line: rgba(184, 154, 106, 0.25);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;
  --max-width: 1200px;
  --nav-height: 80px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 300;
}


a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(52px, 6vw, 82px); }
h2 { font-size: clamp(38px, 4.5vw, 58px); }
h3 { font-size: 26px; letter-spacing: 0.03em; }

p {
  color: rgba(245, 243, 239, 0.78);
  line-height: 1.8;
  font-size: 15px;
  letter-spacing: 0.04em;
  font-weight: 300;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Utility --- */
.gold-text { color: var(--gold); }
.text-center { text-align: center; }

.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

.gold-divider-center {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 24px auto;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--gold);
  margin-bottom: 40px;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.section-subtitle::before {
  display: none;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 154, 106, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 40px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
  background: transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.nav-logo img {
  height: 40px;
  width: auto;
  transition: opacity var(--transition-fast);
}

.nav-logo img:hover {
  opacity: 0.8;
}

/* Text-based logo (mockup style) */
.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--white);
  text-decoration: none;
}

.nav-logo-text span {
  color: var(--gold);
}

/* Nav CTA link */
.nav-cta {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: opacity 0.3s;
}

.nav-cta:hover { opacity: 0.65; }

/* Nav links as list */
.nav-links li {
  list-style: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0 0 0 auto;
  padding: 0;
}

.nav-links a {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.9);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a.active {
  color: var(--gold-light);
}

/* Floating Social Bar - Bottom Left */
.floating-socials {
  position: fixed;
  bottom: 36px;
  right: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 900;
}

.floating-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: var(--gold);
  border: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.floating-socials a:hover {
  background: var(--gold-light);
  transform: scale(1.05);
}

.floating-socials svg {
  width: 20px;
  height: 20px;
  stroke: var(--black);
  stroke-width: 1.5;
  fill: none;
}

.floating-socials a:hover svg {
  stroke: var(--black);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 0;
  transform-origin: center;
}

.hamburger span:nth-child(1) { width: 26px; }
.hamburger span:nth-child(2) { width: 20px; margin-left: auto; }
.hamburger span:nth-child(3) { width: 26px; }

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
  background: var(--gold);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
  background: var(--gold);
}

/* Mobile Nav -Full-Screen Luxury Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(160deg, #0A0A0A 0%, #1A1A1A 40%, #0A0A0A 100%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              visibility 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-nav::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(184, 154, 106, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-logo {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.5s ease 0.15s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
  z-index: 1;
}

.mobile-nav.open .mobile-nav-logo {
  opacity: 1;
  transform: scale(1);
}

.mobile-nav-divider {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 36px;
  opacity: 0;
  transform: scaleX(0);
  transition: opacity 0.4s ease 0.25s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.25s;
}

.mobile-nav.open .mobile-nav-divider {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.04em;
  padding: 8px 24px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s ease;
}

.mobile-nav.open a:nth-of-type(1) { transition-delay: 0.2s; }
.mobile-nav.open a:nth-of-type(2) { transition-delay: 0.26s; }
.mobile-nav.open a:nth-of-type(3) { transition-delay: 0.32s; }
.mobile-nav.open a:nth-of-type(4) { transition-delay: 0.38s; }
.mobile-nav.open a:nth-of-type(5) { transition-delay: 0.44s; }

.mobile-nav.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease, left 0.3s ease;
}

.mobile-nav a:hover::after,
.mobile-nav a.active::after {
  width: 40px;
  left: calc(50% - 20px);
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold);
}

.mobile-nav-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(184, 154, 106, 0.15);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s;
}

.mobile-nav.open .mobile-nav-contact {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-contact a {
  font-family: var(--font-body) !important;
  font-size: 0.85rem !important;
  color: var(--gray-light) !important;
  letter-spacing: 0.02em !important;
  padding: 4px 12px !important;
  opacity: 1 !important;
  transform: none !important;
}

.mobile-nav-contact a::after {
  display: none !important;
}

.mobile-nav-contact a:hover {
  color: var(--gold) !important;
}

.mobile-nav-socials {
  display: flex;
  gap: 16px;
  margin-top: 14px;
  opacity: 0;
  transition: opacity 0.4s ease 0.6s;
}

.mobile-nav.open .mobile-nav-socials {
  opacity: 1;
}

.mobile-nav-socials a {
  width: 38px !important;
  height: 38px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(184, 154, 106, 0.3) !important;
  border-radius: 0 !important;
  padding: 0 !important;
  font-size: 0 !important;
  opacity: 1 !important;
  transform: none !important;
  transition: border-color 0.3s ease, background 0.3s ease !important;
}

.mobile-nav-socials a::after {
  display: none !important;
}

.mobile-nav-socials a:hover {
  border-color: var(--gold) !important;
  background: rgba(184, 154, 106, 0.1) !important;
}

.mobile-nav-socials svg {
  width: 18px;
  height: 18px;
  stroke: var(--gray-light);
  stroke-width: 1.5;
  fill: none;
  transition: stroke 0.3s ease;
}

.mobile-nav-socials a:hover svg {
  stroke: var(--gold);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Hero Slideshow */
.hero-slide {
  opacity: 0;
  transition: opacity 2s ease-in-out !important;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.hero-slide.fading-out {
  opacity: 0;
  z-index: 1;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.45) 0%,
    rgba(10, 10, 10, 0.3) 40%,
    rgba(10, 10, 10, 0.75) 100%
  ) !important;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 32px;
  animation: fadeInDown 1s ease 0.2s both;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 16px;
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-subtitle {
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 300;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero .btn {
  animation: fadeInUp 1s ease 0.8s both;
}

/* Hero left-aligned variant (mockup style) */
.hero-content--left {
  text-align: left;
  max-width: 580px;
  position: absolute;
  bottom: 88px;
  left: 56px;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: fadeInUp 1s ease 0.3s both;
}

.hero-eyebrow::before {
  display: none;
}

.hero-heading {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(52px, 6vw, 82px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.45);
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-heading em {
  font-style: italic;
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-sub {
  color: rgba(245,243,239,0.85);
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  margin-bottom: 52px;
  max-width: 420px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.6), 0 1px 3px rgba(0,0,0,0.5);
  animation: fadeInUp 1s ease 0.5s both;
}

.hero-sub--large {
  font-size: 17px;
  max-width: 540px;
  line-height: 1.7;
  color: rgba(245,243,239,0.85);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  transition: background 0.3s, opacity 0.3s;
}

.btn-primary:hover { background: var(--gold-light); }

.btn-ghost {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.72);
  text-decoration: none;
  transition: color 0.3s;
}

.btn-ghost:hover { color: var(--white); }

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeInUp 1s ease 1s both;
}

.scroll-indicator .mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(184, 154, 106, 0.5);
  border-radius: 0;
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-indicator .wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 0;
  margin-top: 8px;
  animation: scrollWheel 2s ease infinite;
}

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

/* Page Hero (inner pages) */
.page-hero {
  position: relative;
  height: 35vh;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-content h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 12px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.5);
}

.page-hero-content p,
.page-hero-content .svc-eyebrow {
  text-shadow: 0 1px 12px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.4);
}

.page-hero-content .gold-divider-center {
  margin: 16px auto;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 50px 0;
}

.section-dark {
  background: var(--black);
}

.section-charcoal {
  background: var(--charcoal);
}

/* --- About Teaser (Home) --- */
.about-teaser {
  padding: 60px 0;
}

.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-teaser-text h2 {
  margin-bottom: 8px;
}

.about-teaser-text p {
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.about-teaser-image {
  position: relative;
  border-radius: 0;
  overflow: hidden;
}

.about-teaser-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-teaser-image:hover img {
  transform: scale(1.05);
}

.about-teaser-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  pointer-events: none;
}

/* --- Services Grid (Home) --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  margin-bottom: 50px;
}

.service-card {
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  background: rgba(184, 154, 106, 0.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  color: var(--gold);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--white);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--gray);
}

/* --- Destinations (Home) --- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.dest-card {
  position: relative;
  height: 450px;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
}

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

.dest-card:hover img {
  transform: scale(1.1);
}

.dest-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 20px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
  transition: all var(--transition);
}

.dest-card:hover .dest-card-overlay {
  padding-bottom: 40px;
}

.dest-card h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.dest-card span {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- Stats --- */
.stats-section {
  padding: 60px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(184, 154, 106, 0.15);
  border-bottom: 1px solid rgba(184, 154, 106, 0.15);
}

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 20px 40px;
  position: relative;
  transition: all var(--transition);
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: rgba(184, 154, 106, 0.25);
}

.stat-item:hover {
  transform: translateY(-2px);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold);
  margin-bottom: 4px;
  display: block;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  padding: 60px 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.cta-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.7);
  z-index: 1;
}

.cta-banner .container {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: var(--gray-light);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
  padding: 50px 0;
}

.about-text-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text-block h2 {
  margin-bottom: 8px;
}

.about-text-block p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

/* Values / Pillars */
.values-section {
  padding: 50px 0;
  background: var(--charcoal);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.value-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
  transition: all var(--transition);
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--gold);
}

.value-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray);
}

/* Image Gallery Strip */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 0;
}

.gallery-strip-item {
  position: relative;
  height: 300px;
  overflow: hidden;
}

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

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

/* ============================================
   DESTINATIONS PAGE
   ============================================ */
.destination-section {
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.destination-section:last-of-type {
  border-bottom: none;
}

.dest-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dest-row.reverse {
  direction: rtl;
}

.dest-row.reverse > * {
  direction: ltr;
}

.dest-image {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  height: 500px;
}

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

.dest-image:hover img {
  transform: scale(1.05);
}

.dest-text .section-subtitle {
  margin-bottom: 8px;
}

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

.dest-text p {
  font-size: 1.05rem;
  line-height: 1.9;
}

/* ============================================
   SERVICES PAGE (detailed)
   ============================================ */
.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.service-detail-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 50px 40px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: top;
}

.service-detail-card:hover::before {
  transform: scaleY(1);
}

.service-detail-card .service-icon {
  margin: 0 0 24px 0;
}

.service-detail-card h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  color: var(--white);
}

.service-detail-card p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: 50px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form > p {
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea {
  height: 160px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0;
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition-fast);
}

.contact-card-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  color: var(--gold);
}

.contact-card-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-card h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-card p,
.contact-card a {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.6;
}

.contact-card a:hover {
  color: var(--gold);
}

.map-container {
  margin-top: 80px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  filter: grayscale(0.8) brightness(0.6) contrast(1.2);
  transition: filter var(--transition);
}

.map-container:hover iframe {
  filter: grayscale(0.3) brightness(0.8) contrast(1.1);
}

/* Full-Width Map */
.map-fullwidth {
  width: 100%;
  overflow: hidden;
}

.map-fullwidth iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
  filter: grayscale(0.7) brightness(0.65) contrast(1.2);
  transition: filter var(--transition);
}

.map-fullwidth:hover iframe {
  filter: grayscale(0.2) brightness(0.85) contrast(1.1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
  border-top: 1px solid rgba(184, 154, 106, 0.1);
  padding: 50px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

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

.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 20px;
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.25rem;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  color: var(--gray);
  padding: 6px 0;
  transition: color var(--transition-fast);
}

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

.footer-contact p,
.footer-contact a {
  font-size: 0.9rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

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

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  border-color: var(--gold);
  background: rgba(184, 154, 106, 0.1);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: var(--gray);
  transition: fill var(--transition-fast);
}

.social-links a:hover svg {
  fill: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(184, 154, 106, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ============================================
   MARQUEE BAR
   ============================================ */
.marquee-wrap {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 14px 0;
  background: rgba(184,154,106,0.04);
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-shrink: 0;
}

.marquee-item::after {
  content: '\00B7';
  color: var(--gold);
  opacity: 0.5;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   POSITIONING SECTION
   ============================================ */
.positioning {
  padding: 120px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-label::before {
  display: none;
}

.positioning-right p {
  color: rgba(245,243,239,0.75);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.positioning-right p strong {
  color: var(--white);
  font-weight: 400;
}

.positioning-subtle {
  color: rgba(184,154,106,0.5) !important;
  font-size: 11px !important;
}

.proof-block {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.proof-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  border: 1px solid var(--line);
  background: rgba(184,154,106,0.03);
}

.proof-dot {
  width: 5px;
  height: 5px;
  border-radius: 0;
  background: var(--gold);
  flex-shrink: 0;
}

.proof-text {
  font-size: 11px;
  line-height: 1.6;
  color: rgba(245,243,239,0.55);
  letter-spacing: 0.06em;
}

.proof-text strong {
  display: block;
  color: var(--white);
  font-weight: 300;
  margin-bottom: 3px;
}

/* ============================================
   SERVICES GRID (Mockup Style)
   ============================================ */
.services-section {
  padding: 100px 56px;
  border-bottom: 1px solid var(--line);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
}

.services-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card-new {
  background: var(--black);
  padding: 28px 24px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  display: flex;
  flex-direction: column;
  min-height: 200px;
}

.service-icon-new {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  color: var(--gold);
  stroke: currentColor;
  fill: none;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.4s ease;
}

.service-card-new:hover .service-icon-new {
  transform: translateY(-2px);
}

.service-card-new::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card-new:hover::before { transform: scaleX(1); }
.service-card-new:hover { background: rgba(184,154,106,0.05); }

.service-num {
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.16em;
  margin-bottom: 48px;
  opacity: 0.65;
}

.service-title-new {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  color: var(--white);
}

.service-desc-new {
  font-size: 12.5px;
  color: rgba(245,243,239,0.65);
  line-height: 1.7;
  letter-spacing: 0.03em;
  margin-bottom: 0;
  flex: 1;
}

.service-link-new {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s;
}

.service-card-new:hover .service-link-new { gap: 16px; }

.service-link-new::after {
  content: '\2192';
  font-size: 12px;
}

/* ============================================
   GLOBAL SCALE SECTION
   ============================================ */
.global-section {
  padding: 100px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.global-visual {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.global-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%) brightness(0.7);
}

.global-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(10,10,10,0.6) 100%);
}

.global-tag {
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 13px;
  font-style: italic;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

.cities-list {
  margin-top: 48px;
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.city-item {
  flex: 1;
  padding: 20px 0 20px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.city-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  color: var(--white);
}

.city-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================
   STATUS LAYER
   ============================================ */
.status-section {
  padding: 88px 56px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.status-section::before {
  content: '';
  position: absolute;
  top: 0; left: 56px; right: 56px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.status-text {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  color: rgba(245,243,239,0.5);
  letter-spacing: 0.04em;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.status-text strong {
  color: var(--white);
  font-style: normal;
  font-weight: 300;
}

/* ============================================
   PRIVATE LINE CTA SECTION
   ============================================ */
.private-line-section {
  padding: 60px 56px 100px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.private-line-inner {
  max-width: 600px;
  margin: 0 auto;
}

.private-line-inner .section-label {
  justify-content: center;
}

.private-line-inner h2 {
  margin-bottom: 28px;
}

.private-line-inner p {
  color: rgba(245,243,239,0.7);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.06em;
  margin-bottom: 52px;
}

.private-line-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* ============================================
   WORLD MAP (Animated SVG)
   ============================================ */
.global-map-section {
  padding: 80px 0;
}

.global-map-section h2 {
  margin-bottom: 48px;
}

.world-map-wrap {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  animation: mapFloat 8s ease-in-out infinite;
}

.world-map-img {
  width: 100%;
  height: auto;
  filter: invert(1) sepia(1) saturate(0.4) hue-rotate(5deg) brightness(0.55) opacity(0.35);
  transition: filter 1s ease;
}

.world-map-wrap:hover .world-map-img {
  filter: invert(1) sepia(1) saturate(0.5) hue-rotate(5deg) brightness(0.65) opacity(0.45);
}

.world-map-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-dot {
  opacity: 0;
  animation: dotAppear 0.6s ease forwards;
}

.map-dot-pulse {
  animation: dotAppear 0.6s ease forwards, dotGlow 3s ease-in-out infinite;
}

@keyframes dotAppear {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes dotGlow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.map-dot-ring {
  opacity: 0;
  animation: ringPulse 3.5s ease-in-out infinite;
}

@keyframes ringPulse {
  0% { r: 3; opacity: 0.5; }
  50% { r: 12; opacity: 0; }
  100% { r: 3; opacity: 0.5; }
}

.map-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawLine 3s ease forwards;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes mapFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 768px) {
  .global-map-section {
    padding: 48px 0;
  }
  .world-map-wrap {
    padding: 0 12px;
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 80px 0 40px;
}

.testimonials-section h2 {
  margin-bottom: 56px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.testimonial-card {
  border: 1px solid var(--line);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--transition-fast);
}

.testimonial-card:hover {
  border-color: var(--gold);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
}

.testimonial-stars svg {
  width: 14px;
  height: 14px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(245, 243, 239, 0.8);
  letter-spacing: 0.03em;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: auto;
}

.testimonial-name {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.testimonial-location {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.testimonial-source {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 243, 239, 0.4);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-section {
    padding: 48px 20px;
  }
}

/* ============================================
   FOOTER (Mockup Style)
   ============================================ */
.footer-new {
  border-top: 1px solid var(--line);
  padding: 48px 56px;
}

.footer-new-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-new-logo {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--white);
}

.footer-new-logo span { color: var(--gold); }

.footer-new-links {
  display: flex;
  gap: 36px;
}

.footer-new-links a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.5);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-new-legal {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(245,243,239,0.35);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.fade-in-left {
  transform: translateX(-40px);
}

.animate-on-scroll.fade-in-right {
  transform: translateX(40px);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* --- Enhanced Card Hover Effects --- */
.service-card:hover {
  border-color: rgba(184, 154, 106, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(184, 154, 106, 0.08);
}

.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 0;
  transition: border-color var(--transition);
  z-index: 2;
  pointer-events: none;
}

.dest-card:hover::after {
  border-color: rgba(184, 154, 106, 0.4);
}

.dest-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(184, 154, 106, 0.1);
}

.value-card:hover {
  border-color: rgba(184, 154, 106, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(184, 154, 106, 0.06);
}

.service-detail-card:hover {
  border-color: rgba(184, 154, 106, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 30px rgba(184, 154, 106, 0.06);
}

.contact-card:hover {
  border-color: rgba(184, 154, 106, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* --- Gallery Hover Overlay --- */
.gallery-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(184, 154, 106, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-strip-item:hover::after {
  opacity: 1;
}

/* --- Button Shine Effect --- */
.btn-gold {
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}

.btn-gold:hover::after {
  left: 120%;
}

/* --- Parallax Hero --- */
.hero-image,
.cta-banner-bg {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* --- Back to Top Button (removed) ---
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  border-radius: 0;
  background: rgba(26, 26, 26, 0.85);
  border: 1px solid rgba(184, 154, 106, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  z-index: 900;
}

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

.back-to-top:hover {
  background: rgba(184, 154, 106, 0.15);
  border-color: var(--gold);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  stroke-width: 2;
  fill: none;
  transition: stroke 0.3s ease;
}

.back-to-top:hover svg {
  stroke: var(--gold);
}
*/

/* ============================================
   LUXURY SHOWCASE (Home)
   ============================================ */
.showcase-section {
  padding: 60px 0;
  background: var(--black);
  overflow: hidden;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 16px;
  margin-top: 60px;
}

.showcase-item {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
}

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

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

.showcase-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background 0.4s ease;
}

.showcase-item:hover .showcase-item-overlay {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(184, 154, 106, 0.08) 50%, transparent 100%);
}

.showcase-item h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 4px;
  transform: translateY(6px);
  transition: transform 0.3s ease;
}

.showcase-item:hover h3 {
  transform: translateY(0);
}

.showcase-item span {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}

.showcase-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

/* Tall items spanning 2 rows */
.showcase-item.tall {
  grid-row: span 2;
}

/* Wide items spanning 2 columns */
.showcase-item.wide {
  grid-column: span 2;
}

/* Gold border glow on hover */
.showcase-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 0;
  transition: border-color 0.4s ease;
  pointer-events: none;
  z-index: 2;
}

.showcase-item:hover::after {
  border-color: rgba(184, 154, 106, 0.4);
}

/* ============================================
   ABOUT PAGE -Image-Text Rows
   ============================================ */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
}

.about-row.reverse {
  direction: rtl;
}

.about-row.reverse > * {
  direction: ltr;
}

.about-row-image {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  height: 480px;
}

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

.about-row-image:hover img {
  transform: scale(1.04);
}

.about-row-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(184, 154, 106, 0.15);
  border-radius: 0;
  pointer-events: none;
}

.about-row-text .section-subtitle {
  display: block;
  margin-bottom: 8px;
}

.about-row-text h2 {
  margin-bottom: 8px;
}

.about-row-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.about-row-text .btn {
  margin-top: 16px;
}

/* Highlight quote inside about text */
.about-highlight {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
  line-height: 1.7;
}

/* ============================================
   SERVICES PAGE -Image Cards
   ============================================ */
.service-visual-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition);
}

.service-visual-card:hover {
  border-color: rgba(184, 154, 106, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(184, 154, 106, 0.06);
}

.service-visual-card .service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-visual-card .service-img-wrap {
  overflow: hidden;
  position: relative;
}

.service-visual-card .service-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, var(--charcoal), transparent);
  pointer-events: none;
}

.service-visual-card .service-body {
  padding: 28px 32px 36px;
}

.service-visual-card .service-body h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--white);
}

.service-visual-card .service-body p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
}

.service-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 60px;
}

/* Full-width lifestyle banner (parallax-ready) */
.lifestyle-banner {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.lifestyle-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.lifestyle-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.3) 50%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.lifestyle-banner-text {
  max-width: 500px;
}

.lifestyle-banner-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.lifestyle-banner-text p {
  font-size: 1.1rem;
  color: var(--gray-light);
  margin-bottom: 32px;
}

/* ============================================
   RESPONSIVE -New sections
   ============================================ */
@media (max-width: 1024px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 240px 240px 240px;
  }
  .showcase-item.tall {
    grid-row: span 1;
  }
  .service-visual-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .showcase-item {
    height: 220px;
  }
  .showcase-item.tall {
    grid-row: span 1;
  }
  .showcase-item.wide {
    grid-column: span 1;
  }
  .about-row,
  .about-row.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    direction: ltr;
  }
  .about-row-image {
    height: 300px;
  }
  .lifestyle-banner {
    height: 350px;
  }
  .lifestyle-banner-overlay {
    padding: 0 24px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.4) 60%, transparent 100%);
    align-items: flex-end;
    padding-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .showcase-item {
    height: 200px;
  }
}

/* Staggered animation delay for service cards */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dest-card:nth-child(4),
  .dest-card:nth-child(5) {
    grid-column: span 1;
  }

  .stats-grid {
    flex-wrap: wrap;
    gap: 0;
  }

  .stat-item {
    padding: 16px 30px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-detailed-grid {
    grid-template-columns: 1fr;
  }

  /* New sections responsive - 1024px */
  .services-grid-new {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-card-new {
    min-height: 200px;
    padding: 24px 20px;
  }

  .positioning {
    padding: 80px 40px;
    gap: 60px;
  }

  .services-section {
    padding: 80px 40px;
  }

  .global-section {
    padding: 80px 40px;
    gap: 60px;
  }

  .private-line-section {
    padding: 80px 40px;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  section {
    padding: 48px 20px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  /* Mobile: show only WhatsApp float button */
  .floating-socials {
    flex-direction: row;
    bottom: 24px;
    right: 20px;
  }

  .floating-socials a {
    width: 52px;
    height: 52px;
  }

  .floating-socials a:first-child {
    display: none;
  }

  .floating-socials svg {
    width: 22px;
    height: 22px;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile nav link touch targets */
  .mobile-nav a {
    padding: 14px 24px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav-contact a {
    min-height: 44px !important;
    padding: 10px 12px !important;
  }

  .mobile-nav-socials a {
    width: 44px !important;
    height: 44px !important;
  }

  .hero-logo {
    width: 80px;
  }

  /* Hero font caps for mobile */
  .hero-content--left {
    bottom: 60px;
    left: 20px;
    right: 20px;
    max-width: 100%;
  }

  .hero-heading {
    font-size: clamp(28px, 8vw, 32px);
  }

  .hero-sub {
    margin-bottom: 36px;
    font-size: 13px;
  }

  h1 {
    font-size: 32px !important;
    max-font-size: 32px;
  }

  h2 {
    font-size: 24px !important;
  }

  .hero-actions {
    gap: 24px;
    flex-wrap: wrap;
  }

  /* Touch targets: all buttons/links min 44px */
  .btn, .btn-primary, .btn-ghost, .btn-outline,
  .svc-cta, .svc-cta-ghost {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .marquee-item {
    padding: 0 28px;
    gap: 28px;
  }

  .positioning {
    grid-template-columns: 1fr;
    padding: 48px 20px;
    gap: 40px;
  }

  .services-section {
    padding: 48px 20px;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 48px;
  }

  /* Service cards: single column on mobile */
  .services-grid-new {
    grid-template-columns: 1fr;
  }

  .service-card-new {
    min-height: 200px;
    padding: 32px 24px;
  }

  .service-card-new:last-child {
    grid-column: span 1;
  }

  .global-section {
    grid-template-columns: 1fr;
    padding: 48px 20px;
    gap: 40px;
  }

  .global-visual {
    height: 300px;
  }

  .cities-list {
    flex-wrap: wrap;
  }

  .city-item {
    flex: 1 1 45%;
  }

  .status-section {
    padding: 48px 20px;
  }

  .private-line-section {
    padding: 48px 20px;
  }

  .private-line-actions {
    flex-direction: column;
    gap: 20px;
  }

  .footer-new {
    padding: 36px 20px;
  }

  .footer-new-inner {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-new-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .about-teaser-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-teaser-image {
    order: -1;
  }

  .about-teaser-image img {
    height: 350px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .dest-card {
    height: 260px;
  }

  .stats-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
  }

  .stat-item {
    width: 50%;
    padding: 14px 20px;
  }

  .stat-item:not(:last-child)::after {
    display: none;
  }

  .dest-row,
  .dest-row.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    direction: ltr;
  }

  .dest-image {
    height: 350px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero {
    height: 40vh;
    min-height: 300px;
  }

  /* Footer links touch targets */
  .footer-links a,
  .footer-contact a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .stat-item {
    width: 50%;
    padding: 12px 16px;
  }

  .hero-tagline {
    font-size: 2rem;
  }

  .btn {
    padding: 14px 30px;
    font-size: 0.8rem;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip-item {
    height: 220px;
  }

  .services-grid-new {
    grid-template-columns: 1fr;
  }

  .service-card-new:last-child {
    grid-column: span 1;
  }

  .cities-list {
    flex-direction: column;
  }

  .city-item {
    flex: 1 1 100%;
  }

  .hero-heading {
    font-size: clamp(32px, 10vw, 42px);
  }
}

/* ============================================
   SERVICES PAGE v2 — Block Layout
   ============================================ */
.svc-hero {
  padding: 240px 56px 120px;
  border-bottom: 1px solid var(--line);
  min-height: 700px;
}

.svc-hero-inner {
  max-width: 640px;
}

.svc-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

.svc-eyebrow::before {
  display: none;
}

.svc-hero h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(48px, 5.5vw, 72px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.45);
}

.svc-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.svc-hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: rgba(245,243,239,0.85);
  letter-spacing: 0.03em;
  line-height: 1.7;
  text-shadow: 0 1px 12px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.4);
}

/* Service blocks */
.svc-block {
  border-top: 1px solid var(--line);
}

.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  padding: 40px 0;
  align-items: center;
}

.svc-row--text-left .svc-text { order: 1; }
.svc-row--text-left .svc-image { order: 2; }
.svc-row--img-left .svc-image { order: 1; }
.svc-row--img-left .svc-text { order: 2; }

.svc-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  color: var(--gold);
  opacity: 0.7;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.svc-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 12px;
}

.svc-headline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 22px;
  color: var(--gold-light);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.svc-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: rgba(245,243,239,0.72);
  line-height: 1.75;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}

.svc-items {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 24px;
}

.svc-items li {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(245,243,239,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-items li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.svc-proof {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  color: rgba(184,154,106,0.65);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.svc-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  padding: 12px 28px;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}

.svc-cta:hover {
  background: var(--gold-light);
}

.svc-cta-ghost {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.72);
  padding: 12px 28px;
  border: 1px solid rgba(245,243,239,0.25);
  transition: color 0.3s, border-color 0.3s;
  cursor: pointer;
}

.svc-cta-ghost:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.svc-image {
  height: 480px;
  overflow: hidden;
}

.svc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%) brightness(0.82);
  transition: filter 0.4s ease, transform 0.6s ease;
}

.svc-image:hover img {
  filter: grayscale(0%) brightness(0.95);
  transform: scale(1.03);
}

/* Closing CTA block (shared between services + about) */
.svc-closing {
  padding: 72px 56px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.svc-closing .svc-eyebrow {
  justify-content: center;
}

.svc-closing h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(36px, 4vw, 52px);
  margin-bottom: 20px;
}

.svc-closing h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.svc-closing-body {
  font-family: var(--font-body);
  font-size: 15px;
  color: rgba(245,243,239,0.7);
  line-height: 1.9;
  letter-spacing: 0.04em;
  margin-bottom: 48px;
}

.svc-closing-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* Services page responsive */
@media (max-width: 1024px) {
  .svc-hero { padding: 120px 40px 60px; }
  .svc-row { gap: 36px; padding: 20px 0; }
  .svc-image { height: 380px; }
  .svc-closing { padding: 56px 40px; }
}

@media (max-width: 768px) {
  .svc-hero { padding: 100px 20px 48px; }
  .svc-hero h1 { font-size: 32px !important; }
  .svc-row {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 16px 0;
  }
  .svc-row--text-left .svc-text,
  .svc-row--text-left .svc-image,
  .svc-row--img-left .svc-image,
  .svc-row--img-left .svc-text {
    order: unset;
  }
  .svc-image { height: 280px; }
  .svc-title { font-size: 24px !important; }
  .svc-headline { font-size: 18px; }
  .svc-closing {
    padding: 48px 20px;
  }
  .svc-closing h2 { font-size: 24px !important; }
  .svc-closing-ctas {
    flex-direction: column;
    gap: 16px;
  }
  .svc-closing-ctas .svc-cta,
  .svc-closing-ctas .svc-cta-ghost {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   ABOUT PAGE v2
   ============================================ */
.abt-hero {
  padding: 240px 56px 120px;
  border-bottom: 1px solid var(--line);
  min-height: 700px;
}

.abt-hero-inner {
  max-width: 640px;
}

.abt-hero h1 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(48px, 5vw, 72px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.abt-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.abt-hero-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: rgba(245,243,239,0.75);
  line-height: 1.75;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.abt-hero-support {
  font-family: var(--font-body);
  font-size: 14px;
  font-style: italic;
  color: rgba(184,154,106,0.75);
  letter-spacing: 0.04em;
}

/* Pillars */
.abt-pillars {
  padding: 100px 56px;
  border-bottom: 1px solid var(--line);
}

.abt-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.abt-pillar {
  padding: 40px 36px;
  border: 1px solid var(--line);
  margin-right: -1px;
  margin-bottom: -1px;
}

.abt-pillar-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.abt-pillar-body {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 22px;
  color: var(--white);
  line-height: 1.5;
}

/* Gallery section */
.abt-gallery-section {
  padding: 100px 56px;
  border-bottom: 1px solid var(--line);
}

.abt-gallery-header {
  margin-bottom: 48px;
}

.abt-gallery-header h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--white);
  margin-bottom: 20px;
}

.abt-locations {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.7);
}

.abt-loc-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
}

.abt-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(184,154,106,0.25);
}

.abt-gallery-item {
  height: 320px;
  overflow: hidden;
  position: relative;
}

.abt-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%) brightness(0.8);
  transition: filter 0.4s ease, transform 0.6s ease;
}

.abt-gallery-item:hover img {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.04);
}

/* About — Commitment section (full-width image + text overlay) */
.abt-commitment {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.abt-commitment-img {
  position: absolute;
  inset: 0;
}

.abt-commitment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.5);
}

.abt-commitment-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.3) 100%);
}

.abt-commitment-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
  padding: 80px 56px;
}

.abt-commitment-content h2 {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 28px;
}

.abt-commitment-content h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.abt-commitment-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: rgba(245,243,239,0.75);
  line-height: 1.8;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.abt-commitment-quote {
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.6;
  margin-top: 28px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}

/* About page responsive */
@media (max-width: 1024px) {
  .abt-hero { padding: 80px 40px 60px; }
  .abt-pillars { padding: 80px 40px; }
  .abt-gallery-section { padding: 80px 40px; }
  .abt-gallery { grid-template-columns: repeat(2, 1fr); }
  .abt-gallery-item { height: 260px; }
}

@media (max-width: 768px) {
  .abt-hero { padding: 48px 20px 40px; }
  .abt-hero h1 { font-size: 32px !important; }
  .abt-pillars { padding: 48px 20px; }
  .abt-pillars-grid { grid-template-columns: 1fr; }
  .abt-pillar { padding: 28px 20px; }
  .abt-pillar-body { font-size: 18px; }
  .abt-gallery-section { padding: 48px 20px; }
  .abt-gallery-header h2 { font-size: 24px !important; }
  .abt-gallery { grid-template-columns: 1fr 1fr; }
  .abt-gallery-item { height: 220px; }
  .abt-locations { flex-wrap: wrap; gap: 10px; }
  .abt-commitment { min-height: 420px; }
  .abt-commitment-content { padding: 48px 20px; max-width: 100%; }
  .abt-commitment-overlay {
    background: linear-gradient(to right, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.8) 100%);
  }
}

@media (max-width: 480px) {
  .abt-gallery { grid-template-columns: 1fr; }
  .abt-gallery-item { height: 240px; }
}

/* ============================================
   CONTACT PAGE v2
   ============================================ */
.contact-main {
  padding: 60px 56px;
  border-bottom: 1px solid var(--line);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}

.contact-form-wrap {
  border: 1px solid var(--line);
  padding: 40px;
}

.ct-field {
  margin-bottom: 20px;
}

.ct-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.ct-field input,
.ct-field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  padding: 14px 16px;
  letter-spacing: 0.03em;
  transition: border-color 0.3s;
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: rgba(245,243,239,0.35);
}

.ct-field input:focus,
.ct-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.ct-field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.ct-info-block {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.ct-info-block:first-child {
  padding-top: 0;
}

.ct-info-link {
  display: block;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 20px;
  color: var(--white);
  line-height: 1.5;
  margin-top: 8px;
  transition: color 0.3s;
}

.ct-info-link:hover {
  color: var(--gold);
}

.ct-info-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(245,243,239,0.55);
  margin-top: 6px;
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .contact-main { padding: 48px 40px; }
  .contact-layout { gap: 48px; }
}

@media (max-width: 768px) {
  .contact-main { padding: 48px 20px; }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-wrap { padding: 28px 20px; }
  .ct-field input,
  .ct-field textarea {
    min-height: 44px;
    font-size: 16px; /* Prevents iOS zoom on focus */
  }
  .ct-info-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .contact-form-wrap { padding: 20px 16px; }
}

/* ============================================
   LIFESTYLE GALLERY (Home — replaces inline styles)
   ============================================ */
.gallery-grid {
  display: grid;
  gap: 2px;
  background: var(--charcoal);
}

.gallery-grid--4 { grid-template-columns: repeat(4, 1fr); }
.gallery-grid--3 { grid-template-columns: repeat(3, 1fr); }

.gallery-cell {
  overflow: hidden;
  position: relative;
  height: 420px;
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-cell:hover img {
  transform: scale(1.06);
}

@media (max-width: 768px) {
  .gallery-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-cell { height: 280px; }
}

@media (max-width: 480px) {
  .gallery-grid--4,
  .gallery-grid--3 { grid-template-columns: 1fr; }
  .gallery-cell { height: 240px; }
}

/* ============================================
   FEATURE BANNER (Home — full-width image w/ text)
   ============================================ */
.feature-banner {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.feature-banner img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  filter: brightness(0.45);
}

.feature-banner-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.feature-banner-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.feature-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.feature-banner p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  color: rgba(245,243,239,0.8);
  max-width: 500px;
  margin: 0 auto;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
  .feature-banner { min-height: 280px; }
  .feature-banner img { height: 280px; }
}

/* ============================================
   DESTINATION CARDS (Home)
   ============================================ */
.dest-preview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.dest-preview-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.dest-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.75);
  transition: filter 0.5s, transform 0.5s;
}

.dest-preview-card:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}

.dest-preview-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.dest-preview-label p {
  font-family: var(--font-heading);
  font-size: 22px;
  color: #fff;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .dest-preview-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .dest-preview-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .dest-preview-grid { grid-template-columns: 1fr; }
}

/* ============================================
   OCEAN BANNER (full-bleed text-over-image)
   ============================================ */
.ocean-banner {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

.ocean-banner img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  filter: brightness(0.5);
}

.ocean-banner-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ocean-banner-text p {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .ocean-banner { min-height: 300px; }
  .ocean-banner img { height: 300px; }
}

/* ============================================
   SMALL MOBILE — 390px and below
   ============================================ */
@media (max-width: 390px) {
  section {
    padding: 40px 16px;
  }

  h1 {
    font-size: 28px !important;
  }

  h2 {
    font-size: 22px !important;
  }

  .hero-heading {
    font-size: 28px !important;
  }

  .svc-hero { padding: 40px 16px 28px; }
  .svc-hero h1 { font-size: 28px !important; }
  .svc-title { font-size: 22px !important; }
  .svc-headline { font-size: 16px; }
  .svc-body { font-size: 14px; }
  .svc-closing { padding: 40px 16px; }

  .abt-hero { padding: 40px 16px 32px; }
  .abt-hero h1 { font-size: 28px !important; }
  .abt-pillars { padding: 40px 16px; }
  .abt-pillar { padding: 24px 16px; }
  .abt-pillar-body { font-size: 16px; }
  .abt-gallery-section { padding: 40px 16px; }

  .contact-main { padding: 40px 16px; }
  .contact-form-wrap { padding: 16px 12px; }

  .services-section { padding: 40px 16px; }
  .positioning { padding: 40px 16px; }
  .private-line-section { padding: 40px 16px; }
  .status-section { padding: 40px 16px; }

  .floating-socials {
    bottom: 20px;
    right: 16px;
  }

  .floating-socials a {
    width: 48px;
    height: 48px;
  }

  .footer-grid {
    gap: 24px;
  }
}
