/* ==========================================================================
   INFINITY DEVELOPMENTS - LUXURY EDITORIAL LIGHT DESIGN SYSTEM
   Theme: Warm #f9f4ed Alabaster, Deep Midnight Navy & Royal Sapphire
   Typography: Plus Jakarta Sans (Unified Global Typography)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Plus+Jakarta+Sans:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,600&display=swap');

:root {
  /* Crisp Pure White Luxury Palette */
  --bg-white: #ffffff;
  --bg-primary: #ffffff;
  --bg-secondary: #ffffff;
  --bg-tertiary: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-glass-nav: rgba(255, 255, 255, 0.95);
  --bg-input: #ffffff;

  /* Infinity Brand & Logo Colors */
  --brand-navy: #031245;
  --brand-sapphire: #00479a;
  --brand-azure: #008ad2;
  --brand-cyan: #0284c7;
  --brand-sky: #0369a1;
  --brand-ice: #f0f9ff;

  --theme-gradient: linear-gradient(135deg, #00479a 0%, #008ad2 100%);
  --theme-gradient-light: linear-gradient(135deg, #031245 0%, #00479a 50%, #008ad2 100%);
  --theme-border-glow: 0 10px 30px rgba(0, 71, 154, 0.12);

  --border-hairline: rgba(3, 18, 69, 0.08);
  --border-theme: rgba(0, 138, 210, 0.28);
  --border-theme-subtle: rgba(0, 138, 210, 0.12);

  /* Luxury Heading & Body Typography */
  --font-editorial: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --text-pure: #031245;
  --text-secondary: #1e293b;
  --text-muted: #475569;
  --text-subtle: #64748b;
  --text-accent: #008ad2;

  /* Spacing */
  --container-max: 1440px;
  --container-narrow: 1120px;
  --section-padding: clamp(80px, 10vw, 140px);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions & Shadows */
  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.5s var(--ease-luxury);
  --transition-fast: 0.25s var(--ease-luxury);
  --shadow-luxury: 0 20px 50px rgba(3, 18, 69, 0.08);
  --shadow-card: 0 10px 35px rgba(3, 18, 69, 0.05);
}

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

html {
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-pure);
  color-scheme: light;
}

/* Lenis Smooth Scroller Styles */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-pure);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f1f6fc;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-azure);
}

/* Selection */
::selection {
  background: rgba(0, 138, 210, 0.2);
  color: var(--brand-navy);
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* ==========================================================================
   Typography Classes
   ========================================================================== */
.font-editorial {
  font-family: var(--font-editorial);
}

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

.font-sans {
  font-family: var(--font-sans);
}

.gradient-text {
  background: var(--theme-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-light {
  background: var(--theme-gradient-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Luxury Section Header */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--brand-azure);
  margin-bottom: 18px;
}

.section-tag::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--brand-azure);
}

.section-title {
  font-family: var(--font-editorial);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--brand-navy);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--brand-azure);
}

.section-subtitle {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  font-weight: 400;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

/* ==========================================================================
   Layout Containers
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.container-luxury-wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4.5vw, 70px);
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.section {
  padding: var(--section-padding) 0;
  position: relative;
  overflow: hidden;
}

.bg-secondary {
  background-color: var(--bg-secondary);
}

/* Subtle Architectural Grid Lines Overlay */
.architectural-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(3, 18, 69, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(3, 18, 69, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.8;
}

/* ==========================================================================
   Minimalist High-Fashion Header (MENU — INFINITY — CONTACT ✉)
   ========================================================================== */
.site-header-minimal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateY(0);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), background var(--transition-smooth), height var(--transition-smooth), box-shadow var(--transition-smooth);
}

.site-header-minimal.header-hidden {
  transform: translateY(-100%);
}

.site-header-minimal.scrolled {
  height: 66px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 30px rgba(3, 18, 69, 0.06);
}

.header-inner-wrap {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4.5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.header-bottom-hairline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(3, 18, 69, 0.06);
  pointer-events: none;
  transition: background var(--transition-smooth);
}

.site-header-minimal.scrolled .header-bottom-hairline {
  background: rgba(3, 18, 69, 0.1);
}

.header-scroll-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #00479a 0%, #008ad2 100%);
  pointer-events: none;
  z-index: 1002;
  transition: width 0.08s linear;
}

/* Left Menu Trigger Button (2 lines + MENU) */
.header-menu-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 0;
  color: var(--brand-navy);
  transition: all var(--transition-fast);
}

.menu-icon-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.menu-icon-lines .line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--brand-navy);
  transition: transform var(--transition-smooth), background-color var(--transition-fast), width var(--transition-fast);
}

.header-menu-trigger:hover .menu-icon-lines .line:first-child {
  width: 75%;
  background: var(--brand-azure);
}

.header-menu-trigger:hover .menu-icon-lines .line:last-child {
  width: 100%;
  background: var(--brand-azure);
}

.menu-label {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--brand-navy);
  transition: color var(--transition-fast);
}

.header-menu-trigger:hover .menu-label {
  color: var(--brand-azure);
}

/* Center Brand Logo (INFINITY) */
.header-brand-wordmark {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.header-brand-logo-img {
  height: clamp(32px, 3.2vw, 42px);
  width: auto;
  max-width: 180px;
  object-fit: contain;
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.header-brand-wordmark:hover .header-brand-logo-img {
  transform: scale(1.04);
}

.sidebar-brand-logo-img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-logo-img {
  height: clamp(34px, 3.8vw, 44px);
  width: auto;
  max-width: 190px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
  margin-bottom: 0;
}

/* Right Contact Action (LET'S TALK Underlined Style) */
.header-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  padding: 0 0 3px 0;
  background: transparent;
  color: var(--brand-navy);
  border: none;
  border-bottom: 1.5px solid var(--brand-navy);
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
  transition: all var(--transition-fast);
}

.contact-label {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-navy);
  transition: color var(--transition-fast);
  line-height: 1;
}

.header-btn-arrow {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  transition: transform var(--transition-fast), color var(--transition-fast);
  color: var(--brand-navy);
  flex-shrink: 0;
}

.header-contact-link:hover {
  border-bottom-color: var(--brand-azure);
}

.header-contact-link:hover .contact-label {
  color: var(--brand-azure);
}

.header-contact-link:hover .header-btn-arrow {
  color: var(--brand-azure);
  transform: translate(3px, -3px);
}

@media (max-width: 768px) {
  .header-contact-link {
    display: none !important;
  }
}

/* ==========================================================================
   Luxury Left Slide-in Sidebar Menu Drawer & Right Showcase
   ========================================================================== */
.luxury-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0.4s, opacity 0.4s var(--ease-luxury);
}

.luxury-menu-overlay.active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.menu-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 18, 69, 0.52);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.sidebar-menu-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Left Sidebar Panel in Default Brand Light Theme */
.sidebar-menu-panel {
  position: relative;
  width: min(480px, 92vw);
  height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 25px 0 70px rgba(3, 18, 69, 0.18);
  border-right: 1px solid var(--border-hairline);
  z-index: 2;
  overflow: hidden;
  pointer-events: auto;
}

.luxury-menu-overlay.active .sidebar-menu-panel {
  transform: translateX(0);
}

/* Sidebar Top Bar (Logo & Close Button) */
.sidebar-top-bar {
  position: relative;
  z-index: 2;
  padding: 24px clamp(24px, 4vw, 40px) 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-hairline);
  background: #ffffff;
}

.sidebar-brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(3, 18, 69, 0.08));
}

/* Close Button in Sidebar */
.sidebar-close-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 18, 69, 0.04);
  border: 1px solid var(--border-hairline);
  border-radius: 50%;
  font-size: 1.15rem;
  color: var(--brand-navy);
  cursor: pointer;
  transition: all 0.25s var(--ease-luxury);
}

.sidebar-close-btn:hover {
  transform: rotate(90deg);
  background: var(--brand-sapphire);
  color: #ffffff;
  border-color: var(--brand-sapphire);
}

/* Inner Scrollable Navigation Area */
.sidebar-inner-content {
  position: relative;
  z-index: 2;
  padding: clamp(24px, 4vw, 36px) clamp(24px, 4vw, 40px) 16px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sidebar-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-sans);
  font-size: clamp(0.96rem, 1.4vw, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  color: var(--brand-navy);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.25s, transform 0.25s;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}

.sidebar-nav-item:hover {
  color: var(--brand-sapphire);
  transform: translateX(4px);
}

/* Submenu Accordion Styles */
.submenu-toggle-icon {
  font-size: 0.72rem;
  color: var(--brand-cyan);
  transition: transform 0.3s var(--ease-luxury), color 0.25s;
}

.sidebar-menu-item-has-children.is-open .submenu-toggle-icon {
  transform: rotate(180deg);
  color: var(--brand-sapphire);
}

.sidebar-submenu-list {
  list-style: none;
  padding-left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 1.5px solid rgba(0, 138, 210, 0.25);
  margin-left: 4px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-luxury), opacity 0.3s var(--ease-luxury), margin 0.3s;
}

.sidebar-menu-item-has-children.is-open .sidebar-submenu-list {
  max-height: 300px;
  opacity: 1;
  margin-top: 4px;
  margin-bottom: 8px;
}

.sidebar-sub-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s, transform 0.2s;
}

.sidebar-sub-item:hover {
  color: var(--brand-sapphire);
  transform: translateX(4px);
}

.sub-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-cyan);
  opacity: 0.7;
}

.sub-badge {
  font-size: 0.65rem;
  padding: 2px 7px;
  background: rgba(0, 71, 154, 0.1);
  color: var(--brand-sapphire);
  border-radius: 10px;
  font-weight: 600;
  margin-left: 4px;
  text-transform: none;
  letter-spacing: 0.02em;
}

/* Bottom Social Icons Bar */
.sidebar-bottom-bar {
  position: relative;
  z-index: 2;
  padding: 18px clamp(24px, 4vw, 40px);
  border-top: 1px solid var(--border-hairline);
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sidebar-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--brand-navy);
  background: rgba(3, 18, 69, 0.05);
  border: 1px solid var(--border-hairline);
  transition: all 0.25s var(--ease-luxury);
}

.sidebar-social-links a:hover {
  background: var(--brand-sapphire);
  color: #ffffff;
  border-color: var(--brand-sapphire);
  transform: translateY(-2px);
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 71, 154, 0.4);
}

.btn-nav-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-nav-cta:hover::before {
  left: 100%;
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 8px;
  background: rgba(3, 18, 69, 0.04);
  border: 1px solid var(--border-hairline);
  color: var(--brand-navy);
}

.mobile-nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--brand-navy);
  transition: all var(--transition-fast);
}

/* ==========================================================================
   Pure Video Hero Banner (Cinematic Full-Bleed)
   ========================================================================== */
.hero-video-banner {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: 520px;
  overflow: hidden;
  background: #031245;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-video-hairline-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(3, 18, 69, 0.08) 0%,
      transparent 15%,
      transparent 85%,
      rgba(250, 251, 253, 0.4) 100%);
  border-bottom: 1px solid rgba(3, 18, 69, 0.08);
}

/* Hero Video Sound On / Off Toggle Button */
.hero-sound-toggle-btn {
  position: absolute;
  bottom: 34px;
  right: clamp(24px, 4vw, 60px);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: rgba(3, 18, 69, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s var(--ease-luxury);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-sound-toggle-btn:hover {
  background: rgba(0, 71, 154, 0.92);
  border-color: var(--brand-azure);
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 14px 35px rgba(0, 71, 154, 0.4);
}

.sound-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.hero-sound-toggle-btn .sound-icon-muted {
  display: inline-block;
  color: #cbd5e1;
  transition: color 0.25s ease;
}

.hero-sound-toggle-btn .sound-icon-playing {
  display: none;
  color: #38bdf8;
  transition: color 0.25s ease;
}

/* Sound Active / Unmuted State */
.hero-sound-toggle-btn.is-unmuted {
  background: rgba(0, 71, 154, 0.88);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 0 10px 30px rgba(0, 138, 210, 0.35);
}

.hero-sound-toggle-btn.is-unmuted .sound-icon-muted {
  display: none;
}

.hero-sound-toggle-btn.is-unmuted .sound-icon-playing {
  display: inline-block;
}

@media (max-width: 768px) {
  .hero-sound-toggle-btn {
    bottom: 24px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  .sound-icon-wrap {
    font-size: 1rem;
  }
}

/* ==========================================================================
   Landmark Credibility Metrics Strip (Under Video Banner)
   ========================================================================== */
.metrics-intro-strip {
  background: #ffffff;
  padding: clamp(44px, 5.5vw, 68px) 0;
  border-bottom: 1px solid rgba(3, 18, 69, 0.08);
  position: relative;
  z-index: 10;
}

/* Luxury Buttons */
.btn-luxury-primary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  background: var(--theme-gradient);
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 71, 154, 0.3);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.btn-luxury-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 71, 154, 0.45);
}

.btn-luxury-outline {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 34px;
  background: #ffffff;
  color: var(--brand-navy);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  border: 1px solid rgba(3, 18, 69, 0.15);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(3, 18, 69, 0.04);
  transition: all var(--transition-smooth);
}

.btn-luxury-outline:hover {
  background: var(--bg-secondary);
  border-color: var(--brand-azure);
  color: var(--brand-azure);
  transform: translateY(-3px);
}

/* Floating Metrics Strip */
.hero-metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  background: #ffffff;
  border: 1px solid rgba(3, 18, 69, 0.08);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-luxury);
  max-width: 1100px;
  margin: 0 auto;
}

.metric-card {
  text-align: center;
  padding: 0 14px;
  position: relative;
}

.metric-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border-hairline);
}

.metric-value {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 3.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  color: var(--brand-azure);
  margin-bottom: 6px;
  font-variant-numeric: normal;
  font-feature-settings: "lnum" 1;
}

.metric-label {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.metric-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   Featured Projects Section (Architectural 3-Column Split Showcase)
   Themed with Official Infinity Brand Logo Palette (Royal Navy Gradient,
   Azure Accents, Brilliant White Typography & Ambient Glows)
   ========================================================================== */
.featured-showcase-section,
#projects {
  background: linear-gradient(135deg, #031245 0%, #01205c 35%, #00479a 70%, #0077be 100%) !important;
  color: #ffffff;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(0, 138, 210, 0.28);
  border-bottom: 1px solid rgba(0, 138, 210, 0.28);
}

.featured-showcase-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 138, 210, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.featured-showcase-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 71, 154, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.featured-showcase-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 2;
}

/* 3-Column Editorial Grid matching Reference */
.featured-showcase-frame {
  display: grid;
  grid-template-columns: 1.15fr 1.45fr 0.95fr;
  gap: 0;
  align-items: stretch;
  min-height: clamp(620px, 82vh, 850px);
}

/* --- Left Column --- */
.featured-col-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(48px, 6vw, 84px) clamp(28px, 4vw, 64px);
}

.featured-project-tag {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  display: inline-block;
  line-height: 1;
}

.featured-project-headline {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 3.75vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: #ffffff;
  margin-bottom: 8px;
  max-width: 480px;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.featured-project-tagline {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-sky);
  margin-bottom: 12px;
  display: block;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.featured-project-desc {
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 1.05vw, 0.95rem);
  font-weight: 300;
  line-height: 1.68;
  color: #cbd5e1;
  margin-bottom: 26px;
  max-width: 450px;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.featured-meta-table {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.featured-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
  transition: transform 0.25s ease;
}

.featured-meta-key {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.2);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s var(--ease-luxury);
}

.feat-meta-svg {
  width: 16px;
  height: 16px;
  stroke: #38bdf8;
  color: #38bdf8;
  display: block;
  transition: all 0.25s ease;
}

.featured-meta-row:hover {
  transform: translateX(3px);
}

.featured-meta-row:hover .featured-meta-key {
  background: rgba(56, 189, 248, 0.16);
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 0 14px rgba(56, 189, 248, 0.25);
}

.featured-meta-row:hover .feat-meta-svg {
  stroke: #ffffff;
  transform: scale(1.08);
}

.featured-meta-val {
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* --- Center Column (Full-Height Flush Architectural Elevation) --- */
.featured-col-center {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.featured-image-canvas {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.featured-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease-luxury), opacity 0.4s ease;
}

.featured-image-canvas:hover .featured-hero-img {
  transform: scale(1.03);
}

/* --- Right Column --- */
.featured-col-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(48px, 6vw, 84px) clamp(28px, 4vw, 64px);
  position: relative;
}

.featured-index-display {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  font-variant-numeric: normal;
  font-feature-settings: "lnum" 1;
}

.featured-bignum-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  padding: 24px 0;
}

.featured-bignum-val {
  font-family: var(--font-sans);
  font-size: clamp(4.8rem, 7.5vw, 8.5rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: #ffffff;
  font-variant-numeric: normal;
  font-feature-settings: "lnum" 1;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.featured-bignum-label {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  color: #cbd5e1;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-right-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 24px;
}

.featured-nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.featured-arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.featured-arrow-btn:hover {
  background: var(--brand-azure);
  border-color: var(--brand-azure);
  color: #ffffff;
  transform: scale(1.08);
}

/* Responsive Grid Adjustments */
@media (max-width: 1100px) {
  .featured-showcase-frame {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .featured-col-center {
    height: 480px;
    min-height: 480px;
  }

  .featured-col-right {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .featured-bignum-wrap {
    padding: 0;
  }

  .featured-bignum-val {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
  }
}

@media (max-width: 768px) {
  .featured-col-center {
    height: 380px;
    min-height: 380px;
  }

  .featured-col-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .featured-right-bottom {
    width: 100%;
  }
}

/* ==========================================================================
   About Us Section (High-Fashion Editorial Split Architectural Layout)
   Themed with Pure White Canvas, Text Gradient on Headline & Black Typography
   ========================================================================== */
.about-editorial-section,
#about {
  background-color: #ffffff !important;
  background: #ffffff !important;
  color: #111827;
  padding: clamp(90px, 10vw, 150px) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(3, 18, 69, 0.06);
  border-bottom: 1px solid rgba(3, 18, 69, 0.06);
}

/* Subtle Luxury Architectural Drafting & Grid Background Lines */
.about-lines-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.about-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(3, 18, 69, 0.032) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(3, 18, 69, 0.032) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.85;
}

.about-diagonal-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(3, 18, 69, 0.06) 25%, rgba(0, 138, 210, 0.12) 65%, transparent 100%);
  pointer-events: none;
}

.about-diagonal-line.line-1 {
  width: 140%;
  top: 32%;
  left: -20%;
  transform: rotate(-16deg);
}

.about-diagonal-line.line-2 {
  width: 120%;
  bottom: 22%;
  left: -10%;
  transform: rotate(22deg);
}

.about-vertical-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(3, 18, 69, 0.05) 15%, rgba(3, 18, 69, 0.05) 85%, transparent 100%);
  pointer-events: none;
}

.about-vertical-line.line-left {
  left: clamp(24px, 4.5vw, 84px);
}

.about-vertical-line.line-center {
  left: clamp(340px, 32vw, 490px);
}

.about-vertical-line.line-right {
  right: clamp(24px, 4.5vw, 84px);
}

.about-editorial-container {
  width: 100%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4.5vw, 84px);
  position: relative;
  z-index: 2;
}

.about-grid-layout {
  display: grid;
  grid-template-columns: clamp(340px, 32vw, 490px) 1fr;
  gap: clamp(48px, 6.5vw, 110px);
  align-items: start;
}

.about-image-column {
  position: relative;
  width: 100%;
}

.about-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.about-landmark-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease-luxury);
}

.about-image-frame:hover .about-landmark-img {
  transform: scale(1.03);
}

.about-content-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 6px;
}

.about-row-split {
  display: grid;
  grid-template-columns: clamp(100px, 12vw, 150px) 1fr;
  gap: clamp(24px, 3.5vw, 54px);
  align-items: start;
}

.about-top-split {
  margin-bottom: clamp(60px, 7.5vw, 105px);
}

.about-split-left {
  display: flex;
  flex-direction: column;
}

.about-eyebrow-tag {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111827;
  padding-top: 8px;
  line-height: 1;
  display: inline-block;
}

.about-statement-headline {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 2.75vw, 3.1rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.015em;
  background: linear-gradient(135deg, #031245 0%, #00479a 50%, #008ad2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #031245;
  margin: 0;
}

.about-subtagline {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
  max-width: 150px;
}

.about-narrative-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 680px;
}

.about-paragraph {
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 1.02vw, 0.94rem);
  font-weight: 400;
  line-height: 1.74;
  color: #374151;
  margin: 0;
}

.about-cta-wrap {
  margin-top: 24px;
}

.about-learn-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  align-self: flex-start;
  padding: 0 0 5px 0;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #031245;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #031245;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s var(--ease-luxury);
}

.about-learn-more-btn .about-btn-arrow,
.about-learn-more-btn i {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  transition: transform 0.25s var(--ease-luxury);
  color: inherit;
}

.about-learn-more-btn:hover {
  border-bottom-color: var(--brand-azure);
  color: var(--brand-azure);
}

.about-learn-more-btn:hover .about-btn-arrow,
.about-learn-more-btn:hover i {
  transform: translate(3px, -3px);
  color: var(--brand-azure);
}

@media (max-width: 1100px) {
  .about-grid-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-frame {
    max-width: 100%;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 768px) {
  .about-row-split {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-top-split {
    margin-bottom: 36px;
  }
}

/* ==========================================================================
   Section: Luxury Real Estate CTA Banner (Live Without Limit Style)
   ========================================================================== */
.cta-banner-section {
  padding: clamp(60px, 7vw, 100px) 0 40px 0;
  background: #ffffff;
  position: relative;
}

.container-cta {
  width: 95%;
  max-width: 95%;
  margin: 0 auto;
  padding: 0;
}

.cta-banner-card {
  position: relative;
  border-radius: clamp(28px, 3.5vw, 44px);
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  box-shadow: 0 24px 60px rgba(3, 18, 69, 0.18);
}

.cta-banner-bg-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-banner-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-banner-card:hover .cta-banner-bg-img {
  transform: scale(1.03);
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(2, 11, 36, 0.85) 0%,
      rgba(3, 18, 69, 0.65) 45%,
      rgba(2, 11, 36, 0.4) 100%);
  z-index: 2;
}

.cta-banner-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: clamp(40px, 5vw, 70px) clamp(30px, 5vw, 75px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner-left {
  max-width: 620px;
}

.cta-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 12px;
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 16px 0;
}

.cta-banner-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.96rem, 1.25vw, 1.12rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.cta-banner-right {
  display: flex;
  align-items: center;
}

/* Luxury CTA Action Button */
.cta-luxury-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  color: #031245;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 100px;
  padding: 16px 22px 16px 34px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32);
  transition: all 0.35s var(--ease-luxury);
  white-space: nowrap;
}

.cta-btn-circle-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #031245;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s var(--ease-luxury);
  flex-shrink: 0;
}

.cta-luxury-action-btn:hover {
  background: #008ad2;
  color: #ffffff;
  border-color: #008ad2;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 20px 48px rgba(0, 138, 210, 0.5);
}

.cta-luxury-action-btn:hover .cta-btn-circle-icon {
  background: #ffffff;
  color: #008ad2;
  transform: translate(2px, -2px) rotate(45deg);
}

/* ==========================================================================
   Clean Editorial Footer (Minimalist High-Contrast Layout)
   ========================================================================== */
.site-footer-clean {
  background: #ffffff;
  color: #1e293b;
  padding-top: clamp(60px, 6.5vw, 84px);
  padding-bottom: 40px;
  border-top: 1px solid rgba(3, 18, 69, 0.08);
  position: relative;
}

.container-clean-footer {
  width: 100%;
  max-width: var(--container-max, 1380px);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.footer-clean-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.6fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.footer-clean-col {
  display: flex;
  flex-direction: column;
}

.footer-col-brand {
  padding-right: 20px;
}

.footer-clean-logo-link {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-clean-logo-img {
  height: clamp(34px, 3.5vw, 42px);
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.footer-clean-bio {
  font-family: var(--font-sans);
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.68;
  margin: 0 0 20px 0;
  max-width: 320px;
}

.footer-clean-heading {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #0f172a;
  margin: 0 0 20px 0;
}

.footer-clean-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-clean-nav a {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
}

.footer-clean-nav a:hover {
  color: var(--brand-azure, #008ad2);
  transform: translateX(2px);
}

.footer-clean-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social-clean-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-azure, #008ad2);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 138, 210, 0.25);
  transition: all 0.25s var(--ease-luxury);
}

.footer-social-clean-icon:hover {
  background: #031245;
  border-color: #031245;
  color: #ffffff;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 20px rgba(3, 18, 69, 0.35);
}

/* Headquarters Details */
.footer-col-hq {
  display: flex;
  flex-direction: column;
}

.footer-hq-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.6;
}

.footer-hq-icon {
  width: 18px;
  height: 18px;
  min-width: 18px;
  min-height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-hq-item a {
  color: #64748b;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-hq-item a:hover {
  color: var(--brand-azure, #008ad2);
}

.footer-hq-phones {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-phone-sep {
  color: #94a3b8;
  font-size: 0.85rem;
}

.footer-clean-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding-top: 36px;
  margin-top: clamp(48px, 5.5vw, 68px);
  border-top: 1px solid #f1f5f9;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  color: #64748b;
}

.footer-clean-copyright {
  margin: 0;
  color: #64748b;
  font-size: 0.86rem;
  text-align: center;
}

.footer-partner-link {
  color: #0f172a;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-partner-link:hover {
  color: var(--brand-azure, #008ad2);
}

.footer-clean-legal-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-clean-legal-item {
  color: #64748b;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast);
}

.footer-clean-legal-item:hover {
  color: #0f172a;
}

.footer-clean-legal-sep {
  color: #94a3b8;
}

/* Responsive Rules for CTA and Footer */
@media (max-width: 1024px) {
  .footer-clean-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }

  .footer-col-brand {
    grid-column: 1 / -1;
    padding-right: 0;
    max-width: 580px;
  }

  .footer-col-hq {
    grid-column: 1 / -1;
    max-width: 580px;
  }

  .cta-banner-inner {
    padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 48px);
  }

  .cta-banner-left {
    max-width: 60%;
  }

  .cta-banner-title {
    font-size: clamp(2.2rem, 3.8vw, 3rem);
  }
}

@media (max-width: 820px) {
  .cta-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .cta-banner-left {
    max-width: 100%;
  }

  .cta-banner-right {
    width: auto;
    align-self: flex-start;
  }

  .cta-luxury-action-btn {
    width: fit-content;
    padding: 12px 16px 12px 24px;
    font-size: 0.82rem;
    gap: 12px;
  }

  .cta-btn-circle-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 640px) {
  .cta-banner-section {
    padding: 40px 0 20px 0;
  }

  .container-cta {
    width: 95%;
    max-width: 95%;
  }

  .cta-banner-card {
    border-radius: 20px;
    min-height: auto;
  }

  .cta-banner-inner {
    padding: 28px 20px;
    gap: 20px;
  }

  .cta-banner-tag {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    margin-bottom: 8px;
  }

  .cta-banner-title {
    font-size: 1.85rem;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .cta-banner-subtitle {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .cta-banner-right {
    width: auto;
    align-self: flex-start;
  }

  .cta-luxury-action-btn {
    width: fit-content;
    padding: 10px 14px 10px 20px;
    font-size: 0.76rem;
    letter-spacing: 0.05em;
    gap: 10px;
  }

  .cta-btn-circle-icon {
    width: 32px;
    height: 32px;
  }

  .site-footer-clean {
    padding-top: 48px;
    padding-bottom: 30px;
  }

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

  .footer-clean-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding-top: 24px;
    margin-top: 36px;
  }

  .footer-clean-copyright {
    font-size: 0.8rem;
    line-height: 1.6;
    text-align: center;
  }

  .footer-clean-legal-links {
    font-size: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 8px;
  }
}

/* ==========================================================================
   WHY CHOOSE US / WHO WE ARE SECTION
   Leading the Way in Construction & Design
   ========================================================================== */
.who-we-are-section {
  position: relative;
  background-color: #fcfcfc;
  padding: clamp(56px, 6vw, 84px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(3, 18, 69, 0.06);
  border-bottom: 1px solid rgba(3, 18, 69, 0.06);
  width: 100%;
  box-sizing: border-box;
}

.who-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px);
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  overflow: hidden;
}

.who-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 4.5vw, 72px);
  align-items: center;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.who-sketch-col {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-width: 0;
  padding-left: 0;
  margin-left: 0;
  box-sizing: border-box;
}

.who-sketch-frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: none;
  border: none;
  background: transparent;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-sketch-img,
.who-sketch-video {
  width: 100%;
  height: auto;
  max-height: 560px;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.who-sketch-frame:hover .who-sketch-img,
.who-sketch-frame:hover .who-sketch-video {
  transform: scale(1.02);
}

.who-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 0;
  max-width: 100%;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.who-header-block {
  margin-bottom: 14px;
  width: 100%;
  max-width: 100%;
}

.who-eyebrow-tag {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111827;
  margin-bottom: 10px;
  display: inline-block;
  line-height: 1;
}

.who-title {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(1.85rem, 3.75vw, 3.1rem);
  font-weight: 500;
  line-height: 1.15;
  background: linear-gradient(135deg, #031245 0%, #00479a 50%, #008ad2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: #031245;
  letter-spacing: -0.015em;
  margin: 0;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.who-lead-text {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.05vw, 0.98rem);
  line-height: 1.76;
  color: #374151;
  font-weight: 400;
  margin: 0;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.who-hairline-divider {
  width: 100%;
  height: 1px;
  background: rgba(3, 18, 69, 0.08);
  margin: 18px 0 16px 0;
}

.who-carousel-wrapper {
  --who-gap: 36px;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.who-carousel-viewport {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  min-height: auto;
  box-sizing: border-box;
}

.who-carousel-track {
  display: flex;
  gap: var(--who-gap);
  width: max-content;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.who-carousel-track.no-transition {
  transition: none !important;
}

.who-carousel-card {
  box-sizing: border-box;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  min-height: auto;
}

.who-slide-title {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  font-weight: 700;
  color: #031245;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.3;
  min-height: auto;
  display: block;
}

.who-slide-text {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 0.92vw, 0.9rem);
  line-height: 1.58;
  color: #4b5563;
  margin: 0;
  font-weight: 400;
}

.who-carousel-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(3, 18, 69, 0.08);
}

.who-carousel-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.who-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(3, 18, 69, 0.15);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.who-dot.active {
  width: 22px;
  border-radius: 4px;
  background: var(--brand-azure);
}

.who-carousel-arrows {
  display: flex;
  align-items: center;
  gap: 8px;
}

.who-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(3, 18, 69, 0.03);
  border: 1px solid rgba(3, 18, 69, 0.15);
  color: #031245;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.25s ease;
}

.who-arrow-btn:hover {
  background: #031245;
  border-color: #031245;
  color: #ffffff;
  transform: scale(1.06);
}

/* ==========================================================================
   GENERATIONAL SPACES SECTION (100vh Society Amenities & Achievements Banner)
   ========================================================================== */
.gen-spaces-section {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background-color: #0b1120;
  box-sizing: border-box;
}

.gen-spaces-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.gen-spaces-section:hover .gen-spaces-bg {
  transform: scale(1.02);
}

.gen-spaces-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(3, 12, 34, 0.6) 0%,
      rgba(3, 12, 34, 0.2) 40%,
      rgba(3, 12, 34, 0.78) 100%);
  z-index: 2;
  pointer-events: none;
}

.gen-spaces-container {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(80px, 10vh, 120px) clamp(24px, 5vw, 72px) clamp(36px, 5vh, 56px);
  box-sizing: border-box;
}

.gen-headline-row {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-top: clamp(10px, 2vh, 24px);
}

.gen-headline-block {
  max-width: 1050px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gen-eyebrow-tag {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #38bdf8;
  display: inline-block;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.gen-statement-headline {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.75vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.75);
}

.gen-bottom-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 4vw, 56px);
  width: 100%;
  margin: auto 0 clamp(36px, 4.8vh, 56px) 0;
}

.gen-narrative-card {
  grid-column: 3 / span 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.gen-narrative-text {
  font-family: var(--font-sans);
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.94);
  margin: 0;
  text-align: left;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.75);
  font-weight: 400;
}

/* Integrated Achievements Bar inside 100vh banner */
.gen-achievements-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 4vw, 56px);
  width: 100%;
  padding: clamp(24px, 3vh, 36px) 0 0 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-left: none;
  border-right: none;
  border-bottom: none;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
}

.gen-achievement-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.gen-achievement-item .achievement-number {
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 3.8vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: normal;
  font-feature-settings: "lnum" 1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
}

.gen-achievement-item .achievement-label {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 0.98vw, 1.02rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.4;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65);
}

@media (max-width: 900px) {
  .gen-spaces-section {
    height: auto;
    min-height: 100vh;
    padding-top: 60px;
    padding-bottom: 40px;
  }

  .gen-headline-block {
    max-width: 100%;
  }

  .gen-bottom-row {
    display: block;
    margin: 32px 0 28px 0;
  }

  .gen-narrative-card {
    grid-column: auto;
    max-width: 100%;
  }

  .gen-achievements-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
    padding-top: 24px;
  }
}

@media (max-width: 480px) {
  .gen-achievements-bar {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    padding-top: 20px;
  }
}

/* ==========================================================================
   Comprehensive Multi-Device Responsive System (Desktop, Tablet, Mobile)
   ========================================================================== */

/* Large Tablets & Small Laptops (<= 1100px) */
@media (max-width: 1100px) {
  .about-grid-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-frame {
    max-width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 440px;
  }

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

  .who-sketch-col {
    justify-content: center;
    width: 100%;
  }

  .who-sketch-frame {
    max-height: none;
    border-radius: 14px;
    overflow: hidden;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .who-sketch-img,
  .who-sketch-video {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    object-position: center;
  }
}

/* Tablets (<= 1024px) */
@media (max-width: 1024px) {
  .site-header-minimal {
    height: 68px;
  }

  .site-header-minimal.scrolled {
    height: 62px;
  }

  .header-inner-wrap {
    padding: 0 clamp(16px, 4vw, 36px);
  }

  .who-container {
    padding-right: clamp(20px, 4vw, 40px);
    padding-left: clamp(20px, 4vw, 40px);
  }

  .featured-showcase-frame {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .featured-col-left {
    padding: clamp(36px, 5vw, 60px) clamp(24px, 4vw, 48px);
  }

  .featured-col-center {
    height: clamp(320px, 45vw, 460px);
    min-height: 320px;
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .featured-col-right {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 48px);
    border-top: none;
  }

  .featured-bignum-wrap {
    padding: 0;
  }

  .featured-bignum-val {
    font-size: clamp(3.6rem, 7vw, 5.8rem);
  }

  .hero-metrics-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .metric-card:nth-child(2)::after {
    display: none;
  }
}

/* Tablet Portrait & Large Phones (<= 868px) */
@media (max-width: 868px) {
  .about-editorial-section {
    padding: clamp(56px, 7vw, 90px) 0;
  }

  .about-top-split {
    margin-bottom: clamp(36px, 5vw, 60px);
  }

  .about-row-split {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .who-content-col {
    padding-right: 0;
  }
}

/* Medium & Small Phones (<= 768px) */
@media (max-width: 768px) {
  .site-header-minimal {
    height: 64px;
  }

  .site-header-minimal.scrolled {
    height: 58px;
  }

  .header-inner-wrap {
    padding: 0 16px;
  }

  .menu-icon-lines {
    width: 20px;
  }

  .menu-label {
    font-size: 0.8rem;
  }

  .header-brand-logo-img {
    height: 30px;
    max-width: 140px;
  }

  .header-contact-link {
    display: none !important;
  }

  .hero-sound-toggle-btn {
    bottom: 20px;
    right: 16px;
    width: 42px;
    height: 42px;
  }

  .sound-icon-wrap {
    font-size: 0.95rem;
  }

  .featured-col-center {
    height: clamp(260px, 48vw, 360px);
    min-height: 260px;
  }

  .featured-col-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .featured-right-bottom {
    width: 100%;
  }

  .featured-bignum-val {
    font-size: clamp(3.2rem, 12vw, 4.8rem);
  }

  .about-image-frame {
    aspect-ratio: 16 / 10;
    max-height: 320px;
  }

  .who-sketch-col {
    width: 100%;
    justify-content: center;
    padding: 0;
  }

  .who-sketch-frame {
    width: 100%;
    max-height: none;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .who-sketch-img,
  .who-sketch-video {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    object-position: center;
  }
}

/* Mobile Devices (<= 580px) */
@media (max-width: 580px) {
  .site-header-minimal {
    height: 60px;
  }

  .site-header-minimal.scrolled {
    height: 56px;
  }

  .menu-label {
    font-size: 0.74rem;
  }

  .contact-label {
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }

  .header-brand-logo-img {
    height: 26px;
    max-width: 120px;
  }

  .featured-project-headline {
    font-size: clamp(1.85rem, 6.5vw, 2.6rem);
  }

  .featured-meta-row {
    font-size: 0.84rem;
  }

  .sidebar-menu-panel {
    width: 90vw;
  }

  .sidebar-inner-content {
    padding: 20px 20px 14px;
  }

  .sidebar-nav-item {
    font-size: 0.96rem;
  }

  .who-title {
    font-size: clamp(1.65rem, 6.5vw, 2.2rem);
  }

  .who-lead-text {
    font-size: 0.88rem;
    line-height: 1.65;
  }
}

/* Compact Mobile Devices (<= 400px) */
@media (max-width: 400px) {
  .header-inner-wrap {
    padding: 0 12px;
  }

  .header-menu-trigger {
    gap: 6px;
  }

  .header-brand-logo-img {
    height: 24px;
    max-width: 105px;
  }

  .cta-banner-title {
    font-size: 1.65rem !important;
  }

  .cta-luxury-action-btn {
    padding: 10px 12px 10px 16px !important;
    font-size: 0.72rem !important;
  }
}

/* ==========================================================================
   Section: Buyers Guide — Clean Minimalist Experience (Light Greyish Theme)
   ========================================================================== */
.buyers-guide-section {
  background-color: #f4f5f838;
  color: #111111;
  padding: clamp(75px, 7.5vw, 110px) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(3, 18, 69, 0.06);
  border-bottom: 1px solid rgba(3, 18, 69, 0.06);
}

.buyers-guide-section .container-luxury-wide {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 0;
  padding-right: clamp(20px, 4vw, 70px);
  box-sizing: border-box;
}

/* 3-Column Editorial Panoramic Grid (Flush Left Image) */
.buyers-guide-editorial-grid {
  display: grid;
  grid-template-columns: 1.45fr minmax(190px, 240px) 1.25fr;
  column-gap: clamp(18px, 2.2vw, 36px);
  align-items: stretch;
  width: 100%;
}

/* Column 1: Horizontal Image Sticking to Left */
.guide-image-column {
  position: relative;
  display: flex;
  height: 100%;
  width: 100%;
}

.guide-image-frame {
  position: relative;
  width: 100%;
  height: clamp(380px, 32vw, 450px);
  aspect-ratio: 16 / 12;
  border-radius: 0;
  overflow: hidden;
  background: #dfdad0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.guide-active-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  will-change: transform, opacity;
}

.guide-active-image.slide-down-anim {
  animation: guideImageSlideDown 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes guideImageSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-70px) scale(1.04);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.guide-image-frame:hover .guide-active-image:not(.slide-down-anim) {
  transform: scale(1.025);
}

/* Column 2: Compact Step Navigation List (Sticking to Left) */
.guide-steps-nav-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 4px;
  width: 100%;
  max-width: 240px;
}

.tabs-cms_list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  width: 100%;
  max-width: 240px;
}

.tab {
  display: grid;
  grid-template-columns: 24px 1fr 14px;
  align-items: center;
  gap: 8px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: all 0.22s ease;
  user-select: none;
  color: #78716c;
}

.tab .tab_index {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.tab .tab_label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  transition: color 0.22s ease, font-weight 0.22s ease;
}

.tab .tab_dot {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.tab .tab_dot svg {
  width: 100%;
  height: 100%;
}

.tab:hover {
  color: #000000;
}

.tab.is-active,
.tab.active {
  color: #000000;
  border-bottom: 1.5px solid #000000;
}

.tab.is-active .tab_index,
.tab.is-active .tab_label,
.tab.active .tab_index,
.tab.active .tab_label {
  color: #000000;
  font-weight: 700;
}

.tab.is-active .tab_dot,
.tab.active .tab_dot {
  opacity: 1;
  transform: scale(1);
}

/* Column 3: High Editorial Display */
.guide-content-display-column {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  padding-top: 0;
  padding-left: clamp(16px, 2.5vw, 40px);
}

.guide-step-content {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  flex: 1;
}

.guide-step-content.active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.guide-editorial-title {
  font-family: var(--font-editorial), 'Playfair Display', serif;
  font-size: clamp(2.4rem, 3.4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #000000;
  margin: 0;
  padding-top: 0;
}

.guide-step-bottom-wrap {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 40px;
}

.guide-editorial-text {
  font-family: var(--font-sans);
  font-size: 0.96rem;
  line-height: 1.55;
  color: #1a1a1a;
  font-weight: 400;
  margin: 0;
  max-width: 420px;
}

.guide-cta-wrap {
  margin: 0;
  padding: 0;
}

.guide-talk-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 290px;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #000000;
  padding: 0 0 8px 0;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.guide-talk-btn .guide-talk-text {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #000000;
  transition: color 0.25s ease;
}

.guide-talk-btn .btn_dot {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  transition: transform 0.25s ease, color 0.25s ease;
}

.guide-talk-btn .btn_dot svg {
  width: 100%;
  height: 100%;
}

.guide-talk-btn:hover {
  border-bottom-color: var(--brand-azure, #034694);
}

.guide-talk-btn:hover .guide-talk-text,
.guide-talk-btn:hover .btn_dot {
  color: var(--brand-azure, #034694);
}

.guide-talk-btn:hover .btn_dot {
  transform: translateX(4px);
}

/* Responsive Breakpoints */
@media (max-width: 1100px) {
  .buyers-guide-section .container-luxury-wide {
    padding-left: clamp(20px, 4vw, 48px);
    padding-right: clamp(20px, 4vw, 48px);
  }

  .buyers-guide-editorial-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .guide-image-column {
    grid-column: 1 / -1;
    width: 100%;
  }

  .guide-image-frame {
    width: 100%;
    min-height: 320px;
    height: 380px;
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
  .buyers-guide-section {
    padding: clamp(48px, 6vw, 72px) 0;
  }

  .buyers-guide-section .container-luxury-wide {
    padding-left: clamp(20px, 5vw, 28px);
    padding-right: clamp(20px, 5vw, 28px);
  }

  .buyers-guide-editorial-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
  }

  .guide-image-frame {
    min-height: 220px;
    height: clamp(220px, 50vw, 300px);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .guide-steps-nav-column,
  .tabs-cms_list {
    width: 100%;
    max-width: 100%;
  }

  .tab {
    padding: 12px 2px;
  }

  .guide-content-display-column {
    padding-left: 0;
    padding-top: 8px;
    width: 100%;
  }

  .guide-editorial-title {
    font-size: clamp(1.8rem, 6.5vw, 2.4rem);
    line-height: 1.2;
  }

  .guide-step-bottom-wrap {
    padding-top: 20px;
    gap: 16px;
  }

  .guide-editorial-text {
    max-width: 100%;
    font-size: 0.92rem;
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  .buyers-guide-section .container-luxury-wide {
    padding-left: 18px;
    padding-right: 18px;
  }

  .guide-image-frame {
    min-height: 200px;
    height: 220px;
    border-radius: 12px;
  }

  .tab {
    padding: 10px 0;
  }

  .tab .tab_index,
  .tab .tab_label {
    font-size: 0.78rem;
  }

  .guide-editorial-title {
    font-size: 1.7rem;
  }
}