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

:root {
  --bg-dark: #0A0A0A;
  --bg-light: #F8F6F2;
  --text-dark: #2B2B2B;
  --text-light: #F8F6F2;
  --text-muted: #6B6560;
  --gold: #C9A46A;
  --gold-hover: #B08848;
  --border-color: rgba(201, 164, 106, 0.15);
  --font-sans: 'Inter', -apple-system, Helvetica, Arial, sans-serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.font-display {
  font-family: var(--font-serif);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.15;
  color: var(--bg-dark);
}

p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
  margin-bottom: 24px;
}

.lead-p {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  color: var(--bg-dark);
  font-weight: 300;
  margin-bottom: 28px;
}

/* Animations */
@keyframes heroReveal {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.25;
    transform-origin: top;
    transform: scaleY(0.25);
  }
  60% {
    opacity: 1;
    transform-origin: top;
    transform: scaleY(1);
  }
}

@keyframes mapPulse {
  0%, 100% {
    r: 4px;
    opacity: 0.9;
  }
  50% {
    r: 8px;
    opacity: 0.35;
  }
}

/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-38px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(38px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.in-view, .reveal-left.in-view, .reveal-right.in-view {
  opacity: 1;
  transform: translate(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
.reveal-d6 { transition-delay: 0.65s; }

/* Navigation Bar */
nav.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  padding: clamp(10px, 2.5vh, 22px) 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease, padding 0.5s ease;
}

nav.nav-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5vw;
  right: 5vw;
  height: 1px;
  background: transparent;
  transition: background 0.5s ease;
}

nav.nav-bar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: clamp(8px, 1.5vh, 14px) 5vw;
}

nav.nav-bar.scrolled::after {
  background: var(--border-color);
}

nav.nav-bar .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

nav.nav-bar .header-logo {
  height: clamp(110px, 12vw, 130px);
  width: auto;
  transition: height 0.4s ease;
}

nav.nav-bar.scrolled .header-logo {
  height: clamp(80px, 9vw, 95px);
}

.nav-links-container {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-item-wrapper {
  position: relative;
}

.nav-link {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  padding: 10px 0;
  z-index: 320;
}

.nav-bar.light-theme .nav-link {
  color: var(--text-dark);
}

.nav-bar.scrolled .nav-link {
  color: var(--text-light) !important;
}

.nav-link:after {
  content: "";
  background: var(--gold);
  width: 0;
  height: 1px;
  transition: width 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: absolute;
  bottom: 0px;
  left: 0;
}

.nav-link:hover:after,
.nav-item-wrapper:hover .nav-link:after {
  width: 100%;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid var(--border-color);
  min-width: 180px;
  width: max-content;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 310;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  padding: 12px 0;
  transform: translateY(10px);
}

.nav-item-wrapper:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 10px 24px;
  color: rgba(248, 246, 242, 0.8);
  font-family: var(--font-sans);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: color 0.3s ease, background 0.3s ease;
}

.dropdown-link:hover {
  color: var(--gold);
  background: rgba(201, 164, 106, 0.05);
}

/* Mobile Menu Button */
.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-light);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-bar.light-theme .menu-btn span {
  background: var(--text-dark);
}

.nav-bar.scrolled .menu-btn span {
  background: var(--text-light) !important;
}

.menu-btn.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-btn.open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
  z-index: 200;
  background: var(--bg-dark);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 140px 10vw 60px;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  position: fixed;
  inset: 0;
  overflow-y: auto;
}

.mobile-nav-overlay.closed {
  opacity: 0;
  visibility: hidden;
}

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

.mobile-nav-item {
  color: var(--text-light);
  letter-spacing: -0.01em;
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  font-weight: 300;
  line-height: 1.25;
  text-decoration: none;
  transition: color 0.3s;
  margin-bottom: 8px;
}

.mobile-nav-item:hover {
  color: var(--gold);
}

.mobile-sub-menu {
  margin-left: 20px;
  margin-bottom: 20px;
  border-left: 1px solid var(--border-color);
  padding-left: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-sub-item {
  color: rgba(248, 246, 242, 0.6);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
}

.mobile-sub-item:hover {
  color: var(--gold);
}

/* Hero Section */
.hero-section {
  position: relative;
  background: var(--bg-dark);
  width: 100%;
  height: 100vh;
  min-height: 750px;
  overflow: hidden;
  padding-left: 7vw;
  padding-right: 7vw;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 50%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.45) 55%, rgba(10, 10, 10, 0.2) 100%);
}

.hero-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7vw;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.hero-content-container {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-top: clamp(65px, 8vh, 85px);
  padding-bottom: clamp(30px, 6vh, 60px);
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.hero-label {
  color: var(--gold);
  margin-bottom: clamp(10px, 1.5vh, 16px);
  animation: 1.1s cubic-bezier(.16, 1, .3, 1) 0.25s both heroReveal;
}

.hero-title {
  font-size: clamp(1.95rem, 5vw, 6.5rem);
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0 0 clamp(10px, 2vh, 18px);
  max-width: 1100px;
  animation: 1.1s cubic-bezier(.16, 1, .3, 1) 0.5s both heroReveal;
}

.hero-title em {
  font-style: italic;
  color: rgba(248, 246, 242, 0.78);
}

.hero-sub {
  max-width: 950px;
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  line-height: 1.8;
  color: rgba(248, 246, 242, 0.88);
  margin-bottom: clamp(32px, 5vh, 48px);
  font-weight: 300;
  animation: 1.1s cubic-bezier(.16, 1, .3, 1) 0.75s both heroReveal;
}

.hero-cta {
  display: flex;
  gap: clamp(12px, 3vw, 20px);
  flex-wrap: wrap;
  animation: 1.1s cubic-bezier(.16, 1, .3, 1) 0.95s both heroReveal;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  right: 5vw;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  color: rgba(248, 246, 242, 0.4);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  writing-mode: vertical-lr;
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: var(--gold);
  opacity: 0.55;
  animation: 2.8s ease-in-out infinite scrollPulse;
}

.location-item {
  background: var(--bg-light);
  padding: 24px 20px;
  text-align: center;
  flex: 1;
  border-top: 2px solid transparent;
}

.location-item.primary {
  border-top: 2px solid var(--gold);
}

.location-hq {
  font-size: 0.65rem;
  color: var(--gold);
  margin-top: 6px;
  letter-spacing: 0.1em;
  font-family: var(--font-sans);
  text-transform: uppercase;
}

/* Inner Page Hero (Shorter) */
.inner-hero {
  height: 65vh;
  min-height: 520px;
}

/* Button Components */
.btn-gold {
  color: #0A0A0A;
  background: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  padding: 13px 40px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
  display: inline-block;
}

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

.btn-outline-white {
  color: var(--text-light);
  background: transparent;
  border: 1px solid rgba(248, 246, 242, 0.38);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 13px 40px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.btn-outline-white:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-dark {
  color: var(--text-dark);
  background: transparent;
  border: 1px solid var(--text-dark);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 13px 40px;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease;
  display: inline-block;
}

.btn-outline-dark:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Section Rhythm */
section {
  padding: clamp(80px, 10vw, 140px) 7vw;
}

section.bg-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

section.bg-light {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.section-label {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}

.section-title em {
  font-style: italic;
}

.section-title-light {
  color: var(--text-light);
}

.section-title-dark {
  color: var(--text-dark);
}

/* Grid layout for columns */
.split-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(40px, 6vw, 100px);
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
}

.left-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 24px;
}

.left-col p:last-child {
  margin-bottom: 48px;
}

.feature-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.feature-item-title {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  font-family: var(--font-sans);
}

.feature-item-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Service Summary Tiles */
.services-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-summary-tile {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 164, 106, 0.12);
  padding: clamp(32px, 4vw, 48px);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  text-decoration: none;
}

.service-summary-tile:hover {
  border-color: var(--gold);
  background: rgba(201, 164, 106, 0.03);
  transform: translateY(-5px);
}

.service-summary-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 4.5rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.08;
  user-select: none;
  line-height: 1;
  font-family: var(--font-serif);
}

.service-summary-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  font-family: var(--font-sans);
}

.service-summary-heading {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 300;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-summary-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(248, 246, 242, 0.65);
}

/* Feature image container with framing borders */
.framed-image-container {
  position: relative;
  height: 100%;
}

.img-zoom {
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.img-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.img-zoom:hover img {
  transform: scale(1.055);
}

.framed-image-container:after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  pointer-events: none;
}

.framed-image-container:before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border-left: 1px solid var(--gold);
  border-top: 1px solid var(--gold);
  pointer-events: none;
}

/* Feature Checklist (e.g. ESG, Strategic Rationale) */
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.checklist-icon {
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: bold;
}

.checklist-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Values Grid (Strategic Rationale) */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 56px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-card {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.value-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 12px;
}

.value-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Checklist Grid */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 36px;
  margin-bottom: 36px;
  max-width: 780px;
}

@media (min-width: 576px) {
  .checklist-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ESG Grid (Ethics & ESG Page) */
.esg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

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

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

.esg-card {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.esg-num {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.esg-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: rgba(248, 246, 242, 0.85);
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 0;
}

/* Team Grid */
.team-grid {
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
  display: grid;
}

.team-member-card {
  text-align: left;
}

.team-image-wrapper {
  aspect-ratio: 3/4;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}

.team-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-member-card:hover .team-image-wrapper img {
  transform: scale(1.05);
}

.team-image-wrapper:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.3) 0%, transparent 60%);
  pointer-events: none;
}

.team-member-role {
  color: var(--gold);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: var(--font-sans);
  font-weight: 600;
}

.team-member-name {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.team-member-bio {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 1000px;
  margin: 0;
  text-align: left;
}

/* Map Section */
.map-scroll-container {
  width: 100%;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.map-svg-element {
  width: 100%;
  height: auto;
  display: block;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(130px, 1fr));
  gap: 1px;
  background: rgba(201, 164, 106, 0.15);
  margin-top: 3px;
  overflow-x: auto;
  scrollbar-width: none;
}

.locations-grid::-webkit-scrollbar {
  display: none;
}


.location-country {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--bg-dark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.location-city {
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 600;
}

/* Contact Page elements */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(48px, 8vw, 120px);
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.contact-info-block {
  border-left: 1px solid var(--gold);
  padding-left: 20px;
  margin-top: 36px;
}

.contact-info-title {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: var(--font-sans);
}

.contact-info-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.contact-info-email {
  font-size: 0.82rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 400;
}

/* Luxury Form Inputs */
.luxury-form {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.luxury-input-group {
  position: relative;
}

.luxury-label {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #A09990;
  margin-bottom: 6px;
  font-family: var(--font-sans);
  font-weight: 600;
}

.luxury-input, .luxury-select, .luxury-textarea {
  color: var(--text-dark);
  background: transparent;
  border: none;
  border-bottom: 1px solid #D4d0cb;
  outline: none;
  width: 100%;
  padding: 14px 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 300;
  transition: border-color 0.35s ease;
  border-radius: 0;
}

.luxury-textarea {
  resize: vertical;
  min-height: 100px;
}

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

.luxury-input::placeholder, .luxury-textarea::placeholder {
  color: #A09990;
  font-weight: 300;
}

/* Footer Section */
footer.global-footer {
  background-color: var(--bg-dark);
  color: rgba(248, 246, 242, 0.4);
  padding: 60px 7vw 30px;
  border-top: 1px solid var(--border-color);
  font-family: var(--font-sans);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-logo img {
  height: 48px;
  width: auto;
  opacity: 0.85;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-link {
  color: rgba(248, 246, 242, 0.6);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-divider {
  height: 1px;
  background: var(--border-color);
  margin-bottom: 30px;
}

.footer-regulatory {
  font-size: 0.72rem;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 24px;
  color: rgba(248, 246, 242, 0.45);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  color: rgba(248, 246, 242, 0.3);
}

/* Back-to-Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.85);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 290;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold);
  color: #0A0A0A;
  border-color: var(--gold);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Feature strip styling for text lines */
.feature-strip-text {
  text-align: center;
  background: rgba(10, 10, 10, 0.02);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 30px 5vw;
}

.feature-strip-text-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-strip-text-item {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  color: var(--bg-dark);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hidden-mobile {
    display: none !important;
  }
  .hero-section {
    aspect-ratio: auto;
    height: 100vh;
    min-height: 600px;
  }
}

@media (min-width: 1025px) {
  .show-mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .mobile-nav-overlay {
    padding-top: 120px;
  }
  
  .hero-section {
    height: 100vh;
  }
  
  .hero-content-container {
    text-align: center;
    align-items: center;
    padding-top: 170px !important;
    padding-bottom: 40px !important;
  }
  
  .hero-cta {
    justify-content: center;
    width: 100%;
  }
  
  .btn-gold, .btn-outline-white, .btn-outline-dark {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
  }
  
  .framed-image-container {
    margin-top: 30px;
  }
  
  .framed-image-container:before, .framed-image-container:after {
    display: none;
  }
}
