@charset "UTF-8";
/* ============================================
   DESIGN TOKENS – GLOBAL VARIABLES
============================================ */
/* ===== TYPOGRAPHY ===== */
/* ===== COLORS ===== */
/* ===== SPACING, PADDING, RADII ===== */
/* ===== SHADOWS & Z-INDEX ===== */
/* ===== BREAKPOINTS & CONTAINERS ===== */
/* ===== TRANSITIONS & FOCUS ===== */
/* ============================================
   ✅ CSS VARIABLES EXPORT
============================================ */
:root {
  --color-primary: #0a2438;
  --color-primary-light: rgb(16.7272727273, 60.2181818182, 93.6727272727);
  --color-primary-dark: rgb(9, 32.4, 50.4);
  --color-accent: #2c9ab7;
  --color-accent-light: rgb(61.0764317181, 177.6425110132, 208.3735682819);
  --color-success: #28a745;
  --color-warning: #ffc107;
  --color-danger: #dc3545;
  --color-info: #17a2b8;
  --color-light: #ffffff;
  --color-dark: #000000;
  --color-muted: rgba(10, 36, 56, 0.65);
  --color-overlay-dark: rgba(0, 0, 0, 0.65);
  --color-overlay-light: rgba(255, 255, 255, 0.4);
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  --pad-xs: 12px;
  --pad-sm: 20px;
  --pad-md: 40px;
  --pad-lg: 60px;
  --pad-xl: 80px;
  --pad-section: clamp(40px, 6vw, 80px);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 6px 16px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-extra-soft: 0 2px 8px rgba(0, 0, 0, 0.05);
  --z-base: 1;
  --z-header: 1000;
  --z-dropdown: 1100;
  --z-modal: 1200;
  --z-overlay: 1300;
  --transition-default: all 0.3s ease;
  --transition-fast: all 0.15s ease-in-out;
  --transition-slow: all 0.5s ease;
  --line-height-base: 1.5;
  --line-height-heading: 1.2;
  --line-height-tight: 1.1;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.625rem;
  --font-size-fluid: clamp(1rem, 1.2vw + 0.5rem, 1.25rem);
  /* Expose fonts */
  --font-body: Quasimoda, Helvetica Neue, system-ui, sans-serif;
  --font-headings: Tenso, Helvetica Neue, system-ui, sans-serif;
  --font-display: Arno Pro Display, Georgia, serif;
  /* Font weights */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;
  /* Semantic defaults */
  --color-text: #0a2438;
  --color-bg: #ffffff;
}

/* ===== LEGACY ALIASES ===== */
/* ============================================================
   BREAKPOINT SYSTEM – Safe for Sass 1.70+
============================================================ */
/* ============================================================
   CONTAINERS & SECTIONS
============================================================ */
/* ============================================================
   FLEX & GRID HELPERS
============================================================ */
/* ============================================================
   UTILITY MIXINS – Warning-Free
============================================================ */
/* ============================================================
   HERO & ANIMATIONS
============================================================ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
/* ============================================================
   MOBILE OPTIMIZATION
============================================================ */
/* ============================================
   FLEX HELPERS (Optimized & Self-Contained)
============================================ */
.flex {
  display: flex;
}

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

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.flex-nowrap {
  display: flex;
  flex-wrap: nowrap;
}

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

.justify-center {
  justify-content: center;
}

.space-between {
  justify-content: space-between;
}

.full-width {
  width: 100%;
}

/* ============================================
   SPACING UTILITIES (Generated Dynamically)
============================================ */
.gap-xs {
  gap: 4px;
}

.mb-xs {
  margin-bottom: 4px;
}

.mt-xs {
  margin-top: 4px;
}

@media (max-width: 576px) {
  .mb-sm-xs {
    margin-bottom: 4px;
  }
  .mt-sm-xs {
    margin-top: 4px;
  }
}
.gap-sm {
  gap: 8px;
}

.mb-sm {
  margin-bottom: 8px;
}

.mt-sm {
  margin-top: 8px;
}

@media (max-width: 576px) {
  .mb-sm-sm {
    margin-bottom: 8px;
  }
  .mt-sm-sm {
    margin-top: 8px;
  }
}
.gap-md {
  gap: 16px;
}

.mb-md {
  margin-bottom: 16px;
}

.mt-md {
  margin-top: 16px;
}

@media (max-width: 576px) {
  .mb-sm-md {
    margin-bottom: 16px;
  }
  .mt-sm-md {
    margin-top: 16px;
  }
}
.gap-lg {
  gap: 24px;
}

.mb-lg {
  margin-bottom: 24px;
}

.mt-lg {
  margin-top: 24px;
}

@media (max-width: 576px) {
  .mb-sm-lg {
    margin-bottom: 24px;
  }
  .mt-sm-lg {
    margin-top: 24px;
  }
}
.gap-xl {
  gap: 32px;
}

.mb-xl {
  margin-bottom: 32px;
}

.mt-xl {
  margin-top: 32px;
}

@media (max-width: 576px) {
  .mb-sm-xl {
    margin-bottom: 32px;
  }
  .mt-sm-xl {
    margin-top: 32px;
  }
}
.gap-xxl {
  gap: 48px;
}

.mb-xxl {
  margin-bottom: 48px;
}

.mt-xxl {
  margin-top: 48px;
}

@media (max-width: 576px) {
  .mb-sm-xxl {
    margin-bottom: 48px;
  }
  .mt-sm-xxl {
    margin-top: 48px;
  }
}
/* ============================================
   RESPONSIVE EMBED: VIDEO WRAPPER
============================================ */
.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
}
@supports not (aspect-ratio: 16/9) {
  .video-wrapper::before {
    content: "";
    display: block;
    padding-top: 56.25%;
  }
  .video-wrapper iframe, .video-wrapper video {
    position: absolute;
    inset: 0;
  }
}
.video-wrapper iframe, .video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  -webkit-transform: translateZ(0);
  -webkit-backface-visibility: hidden;
}
@media (max-width: 576px) {
  .video-wrapper {
    border-radius: 4px;
  }
}

/* ============================================
   NAVIGATION STATES (Enhanced for Mobile UX)
============================================ */
.hamburger {
  transition: transform 0.3s ease;
  transform-origin: center;
}
.hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.mobile-nav.is-open {
  display: block;
  opacity: 1;
  visibility: visible;
}

body.nav-open {
  overflow: hidden;
}

/*==================================================
=                GLOBAL CSS VARIABLES              =
==================================================*/
:root {
  /* === Typography === */
  --font-body: Quasimoda, Helvetica Neue, system-ui, sans-serif;
  --font-headings: Tenso, Helvetica Neue, system-ui, sans-serif;
  --font-display: Arno Pro Display, Georgia, serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.625rem;
  --font-size-fluid: clamp(1rem, 1.2vw + 0.5rem, 1.25rem);
  --line-height-base: 1.5;
  --line-height-heading: 1.2;
  --line-height-tight: 1.1;
  /* === Spacing & Layout === */
  --gap-xs: 4px;
  --gap-sm: 8px;
  --gap-md: 16px;
  --gap-lg: 24px;
  --gap-xl: 32px;
  --gap-xxl: 48px;
  --pad-xs: 12px;
  --pad-sm: 20px;
  --pad-md: 40px;
  --pad-lg: 60px;
  --pad-xl: 80px;
  --pad-section: clamp(40px, 6vw, 80px);
  --section-pad: clamp(40px, 6vw, 80px);
  /* === Colors === */
  --color-primary: #0a2438;
  --color-primary-light: rgb(16.7272727273, 60.2181818182, 93.6727272727);
  --color-primary-dark: rgb(9, 32.4, 50.4);
  --color-accent: #2c9ab7;
  --color-accent-light: rgb(61.0764317181, 177.6425110132, 208.3735682819);
  --color-success: #28a745;
  --color-warning: #ffc107;
  --color-danger: #dc3545;
  --color-info: #17a2b8;
  --color-light: #ffffff;
  --color-dark: #000000;
  --color-muted: rgba(10, 36, 56, 0.65);
  --color-overlay-dark: rgba(0, 0, 0, 0.65);
  --color-overlay-light: rgba(255, 255, 255, 0.4);
  /* === Radius & Shadows === */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 6px 16px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 8px 24px rgba(0, 0, 0, 0.15);
  --shadow-extra-soft: 0 2px 8px rgba(0, 0, 0, 0.05);
  /* === Z-Index & Transitions === */
  --z-base: 1;
  --z-header: 1000;
  --z-dropdown: 1100;
  --z-modal: 1200;
  --z-overlay: 1300;
  --transition-default: all 0.3s ease;
  --transition-fast: all 0.15s ease-in-out;
  --transition-slow: all 0.5s ease;
  /* === Opacity Levels === */
  --opacity-0: 0;
  --opacity-25: 0.25;
  --opacity-50: 0.5;
  --opacity-75: 0.75;
  --opacity-100: 1;
}

/*==================================================
=         SAFARI-SPECIFIC OPTIMIZATION             =
==================================================*/
@supports (-webkit-touch-callout: none) {
  img, video {
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
  }
  img {
    image-rendering: -webkit-optimize-contrast;
  }
  video {
    object-fit: cover;
    background: var(--color-dark);
    will-change: transform;
  }
  /* === Safari Flex Alignment Fix === */
  .container-centered,
  .section-centered {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-box-align: center;
    -webkit-box-pack: center;
  }
  html, body {
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
  }
  .container, .section-wrapper {
    min-height: -webkit-fill-available;
  }
  /* === Optional Blur Effect === */
  .has-blur {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }
  /* === Scrollbar Styling === */
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  ::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-full);
  }
  ::-webkit-scrollbar-track {
    background: transparent;
  }
}
/* ============================================================
   GLOBAL RESETS & BASE STYLES – Optimized for Modern UX
============================================================ */
/* ✅ Box-Sizing & Mobile Tap Fix */
*, *::before, *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* ============================================================
   ROOT VARIABLES (Theme Hook)
============================================================ */
:root {
  --theme-bg: #ffffff;
  --theme-text: #000000;
  --theme-accent: #2c9ab7;
}

/* ============================================================
   HTML BASE STYLES
============================================================ */
html {
  font-family: Quasimoda, Helvetica Neue, system-ui, sans-serif;
  font-size: 100%;
  line-height: 1.5;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ============================================================
   BODY BASE STYLES
============================================================ */
body {
  margin: 0;
  padding: 0;
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1rem);
  line-height: 1.5;
  color: var(--theme-text);
  background-color: var(--theme-bg);
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ✅ Lock Scroll When Navigation is Open */
body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  touch-action: none;
  overscroll-behavior: none;
}

/* ============================================================
   DARK MODE SUPPORT
============================================================ */
@media (prefers-color-scheme: dark) {
  body[data-theme=dark] {
    --theme-bg: #000000;
    --theme-text: #ffffff;
  }
}
/* ============================================================
   SAFARI / iOS OPTIMIZATIONS
============================================================ */
@supports (-webkit-touch-callout: none) {
  img, video {
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
  }
  img {
    image-rendering: -webkit-optimize-contrast;
  }
  video {
    object-fit: cover;
  }
  /* ✅ Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }
  ::-webkit-scrollbar-track {
    background: transparent;
  }
  ::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 9999px;
  }
  body[data-theme=dark] ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
  }
}
/* ============================================================
   UI MISC ENHANCEMENTS
============================================================ */
::selection {
  background: var(--theme-accent);
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover, a:focus-visible {
  color: var(--theme-accent);
}

/* ✅ Focus Accessibility */
:focus-visible {
  outline: 2px solid var(--theme-accent);
  outline-offset: 3px;
}

/* ============================================================
   BASE CONTAINER – Fluid by Default
============================================================ */
.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
  min-height: 100%;
  max-width: var(--container-max, 100%); /* ✅ Allow override */
}
@media (max-width: 576px) {
  .container {
    padding-inline: var(--space-md);
  }
}

/* ============================================================
   MAX-WIDTH MODIFIERS (Generated from $containers)
============================================================ */
.container[data-size=sm] {
  max-width: 640px;
}

.container[data-size=md] {
  max-width: 768px;
}

.container[data-size=lg] {
  max-width: 1024px;
}

.container[data-size=xl] {
  max-width: 1280px;
}

.container[data-size=xxl] {
  max-width: 1400px;
}

/* ============================================================
   CONTAINER VARIANTS
============================================================ */
.container-narrow {
  width: 100%;
  max-width: 56.25rem;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
  text-align: center;
}
@media (max-width: 576px) {
  .container-narrow {
    max-width: 95%;
    padding-inline: var(--space-md);
  }
}

.container-full {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Centered Content */
.container-centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  text-align: center;
  gap: var(--space-sm);
}
.container-centered > * {
  margin-inline: auto;
}

/* ============================================================
   ALIGNMENT MODIFIERS
============================================================ */
.container[data-align=left] {
  text-align: left;
  align-items: flex-start;
}

.container[data-align=center] {
  text-align: center;
  align-items: center;
}

.container[data-align=right] {
  text-align: right;
  align-items: flex-end;
}

/* ============================================================
   GRID SUPPORT (Modern Utility)
============================================================ */
.container-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--grid-gap, var(--space-md)); /* ✅ Configurable gap */
}
@media (min-width: 768px) {
  .container-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

/* ============================================
   SITE HEADER (Sticky + Mobile-First + Safari Ready)
============================================ */
.site-header {
  /* ============================================
     HAMBURGER TOGGLE (Accessible + Smooth)
  ============================================= */
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(64px, 10vw, 84px);
  z-index: 1000;
  background: #0a2438;
  color: #ffffff;
  padding-top: env(safe-area-inset-top, 0);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  will-change: background, transform, box-shadow;
}
.site-header.is-scrolled {
  background: rgba(10, 36, 56, 0.95);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
@supports (backdrop-filter: blur(6px)) {
  .site-header.is-scrolled {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
}
.site-header .header-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  height: 100%;
  padding-inline: var(--space-md);
}
@media (min-width: 1024px) {
  .site-header .header-inner {
    padding-inline: clamp(32px, 5vw, 72px);
  }
}
@media (min-width: 1440px) {
  .site-header .header-inner {
    max-width: 100rem;
    margin-inline: auto;
  }
}
.site-header .logo img {
  max-height: clamp(40px, 6vw, 56px);
  width: auto;
  image-rendering: -webkit-optimize-contrast;
  -webkit-transform: translateZ(0);
}
.site-header .nav-toggle {
  position: relative;
  z-index: 1100;
  width: clamp(28px, 5vw, 36px);
  height: clamp(20px, 4vw, 28px);
  padding: var(--space-sm);
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.site-header .nav-toggle span, .site-header .nav-toggle::before, .site-header .nav-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  border-radius: 1px;
}
.site-header .nav-toggle span {
  top: 50%;
  transform: translateY(-50%);
}
.site-header .nav-toggle::before {
  top: 0;
}
.site-header .nav-toggle::after {
  bottom: 0;
}
.site-header .nav-toggle.is-active span {
  opacity: 0;
}
.site-header .nav-toggle.is-active::before {
  transform: rotate(45deg) translateY(10px);
}
.site-header .nav-toggle.is-active::after {
  transform: rotate(-45deg) translateY(-10px);
}

/* ============================================
   MAIN NAVIGATION (Mobile Menu with Blur)
============================================ */
.main-nav {
  position: fixed;
  top: clamp(64px, 10vw, 84px);
  left: 0;
  width: 100%;
  height: calc(100dvh - clamp(64px, 10vw, 84px));
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-md);
  background: rgba(10, 36, 56, 0.9);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  will-change: opacity, transform, backdrop-filter;
}
@supports (backdrop-filter: blur(12px)) {
  .main-nav {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}
.main-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.main-nav .nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  list-style: none;
  padding: 0;
  margin: 0;
}
.main-nav .nav-list a {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: clamp(1rem, 3.5vw, 1.125rem);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.main-nav .nav-list a:hover, .main-nav .nav-list a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
  outline: none;
}

/* ============================================================
   FOOTER MODULE – Optimized, Mobile-First, and Accessible
============================================================ */
.footer {
  background: #0a2438;
  color: #ffffff;
  padding: clamp(24px, 6vw, 40px) 4vw clamp(12px, 4vw, 20px);
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  text-align: center;
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  /* ===== Dark Theme Modifier ===== */
  /* ========================================================
     GRID LAYOUT
  ======================================================== */
  /* ========================================================
     FOOTER COLUMN
  ======================================================== */
  /* ========================================================
     FOOTER LOGO
  ======================================================== */
  /* ========================================================
     FOOTER BOTTOM
  ======================================================== */
}
.footer.footer-dark {
  background: #000000;
}
.footer.footer-dark a {
  color: rgba(255, 255, 255, 0.7);
}
.footer.footer-dark a:hover {
  color: #2c9ab7;
}
.footer .footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  max-width: 1400px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .footer .footer-inner {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }
}
.footer .footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding-inline: 4px;
  margin-bottom: 16px;
  opacity: 0.95;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.footer .footer-column:hover {
  opacity: 1;
  transform: translateY(-2px);
}
@media (max-width: 576px) {
  .footer .footer-column {
    align-items: center;
    text-align: center;
  }
}
.footer .footer-column h4 {
  font-size: clamp(0.95rem, 2.5vw, 1rem);
  font-weight: 600;
  margin-bottom: 4px;
}
.footer .footer-column p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 17.5rem;
  margin-bottom: 4px;
}
.footer .footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer .footer-column ul li a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.25s ease, transform 0.25s ease;
}
.footer .footer-column ul li a svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
  transition: fill 0.25s ease;
}
.footer .footer-column ul li a:hover {
  color: #2c9ab7;
  transform: translateX(3px);
}
.footer .footer-column ul li a:focus-visible {
  outline: 2px solid #2c9ab7;
  outline-offset: 3px;
}
.footer .footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.footer .footer-logo a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.footer .footer-logo a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.footer .footer-logo a:focus-visible {
  outline: 2px solid #2c9ab7;
  outline-offset: 3px;
}
.footer .footer-logo img {
  width: clamp(120px, 12vw, 160px);
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}
.footer .footer-logo img:hover {
  transform: scale(1.08);
}
.footer .footer-logo p {
  max-width: 20rem;
  margin-top: 4px;
  font-size: clamp(0.8rem, 2.5vw, 0.9rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}
.footer .footer-bottom {
  margin-top: 16px;
  padding-top: 8px;
  font-size: clamp(0.75rem, 2.2vw, 0.85rem);
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* ============================================================
   SECTIONS – Wrappers, Layout & CTA Styles
   ✅ Unified spacing, consistent padding, and mobile perfection
============================================================ */
/* ================================
   1. Section Wrappers
================================ */
.section-wrapper {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

.section-wrapper-wide {
  width: 100%;
  margin-inline: auto;
  padding-inline: 5vw;
}

.section-wrapper-narrow {
  width: 100%;
  max-width: 768px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 40px);
}

/* Modifier: remove side padding */
.section-pad-none {
  padding-inline: 0 !important;
}

/* ================================
   2. Section Blocks
================================ */
.section-block {
  padding-block: clamp(40px, 6vw, 80px);
}
.section-block:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .section-block {
    padding-block: clamp(32px, 5vw, 60px);
  }
}
.section-block.cta-border {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 16px;
}
@media (max-width: 576px) {
  .section-block.cta-border {
    padding-top: clamp(24px, 5vw, 40px);
  }
}

/* ================================
   3. Section Stack
================================ */
.section-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 576px) {
  .section-stack {
    gap: 8px;
    align-items: center;
    text-align: center; /* ✅ ensures mobile text centers */
  }
}

/* ================================
   4. Centering Utilities
================================ */
.section-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.mx-auto {
  margin-inline: auto;
}

/* ================================
   5. CTA Section
================================ */
.cta-section {
  background: #ffffff;
  padding-block: clamp(64px, 8vw, 96px);
  text-align: center;
  /* Dark Variant */
}
.cta-section.cta-dark {
  background: #0a2438;
  color: #ffffff;
}
.cta-section.cta-dark .section-header {
  color: #ffffff;
}
.cta-section.cta-dark .cta-subhead {
  color: rgba(255, 255, 255, 0.85);
}
.cta-section .section-header {
  font-size: clamp(1.8rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #0a2438;
  margin-bottom: 8px;
  text-wrap: balance;
}
.cta-section .cta-subhead {
  font-size: clamp(1rem, 3.5vw, 1.25rem);
  color: rgba(10, 36, 56, 0.85);
  max-width: 40rem;
  margin: 0 auto 16px;
  line-height: 1.6;
}
.cta-section .button--primary {
  font-size: clamp(1rem, 3.5vw, 1.125rem);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cta-section .button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* ============================================================
   UNIVERSAL BUTTON STYLES – Sass 1.70+ Safe
============================================================ */
/* ============================================================
   VARIANTS – Uses &{} to avoid mixed-decls warnings
============================================================ */
/* ============================================================
   SIZE & BLOCK MODIFIERS
============================================================ */
/* ============================================================
   IMPLEMENTATION CLASSES
============================================================ */
.button {
  display: inline-block;
  font-family: "Quasimoda", "Helvetica Neue", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.9em 2em;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: #0a2438;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  background-clip: padding-box;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.button:hover:not(:disabled) {
  transform: translateY(-1px);
}
.button:focus-visible {
  outline: 2px solid rgba(10, 36, 56, 0.5);
  outline-offset: 3px;
}
.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 576px) {
  .button {
    font-size: 0.9rem;
    padding: 0.8em 1.6em;
    letter-spacing: 0.5px;
  }
}

.button--primary {
  display: inline-block;
  font-family: "Quasimoda", "Helvetica Neue", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.9em 2em;
  border: none;
  border-radius: 4px;
  background: #0a2438;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  background-clip: padding-box;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.button--primary:hover:not(:disabled) {
  transform: translateY(-1px);
}
.button--primary:focus-visible {
  outline: 2px solid rgba(10, 36, 56, 0.5);
  outline-offset: 3px;
}
.button--primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 576px) {
  .button--primary {
    font-size: 0.9rem;
    padding: 0.8em 1.6em;
    letter-spacing: 0.5px;
  }
}
.button--primary:hover:not(:disabled), .button--primary:focus-visible {
  background: #ffffff;
  color: #0a2438;
  box-shadow: var(--shadow-card-hover);
}

.button--solid {
  display: inline-block;
  font-family: "Quasimoda", "Helvetica Neue", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.9em 2em;
  border: none;
  border-radius: 4px;
  background: #2c9ab7;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  background-clip: padding-box;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.button--solid:hover:not(:disabled) {
  transform: translateY(-1px);
}
.button--solid:focus-visible {
  outline: 2px solid rgba(10, 36, 56, 0.5);
  outline-offset: 3px;
}
.button--solid:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 576px) {
  .button--solid {
    font-size: 0.9rem;
    padding: 0.8em 1.6em;
    letter-spacing: 0.5px;
  }
}
.button--solid:hover:not(:disabled), .button--solid:focus-visible {
  background: rgb(36.0916299559, 126.3207048458, 150.1083700441);
}

.button--outline {
  display: inline-block;
  font-family: "Quasimoda", "Helvetica Neue", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.9em 2em;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: #0a2438;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  background-clip: padding-box;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.button--outline:hover:not(:disabled) {
  transform: translateY(-1px);
}
.button--outline:focus-visible {
  outline: 2px solid rgba(10, 36, 56, 0.5);
  outline-offset: 3px;
}
.button--outline:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 576px) {
  .button--outline {
    font-size: 0.9rem;
    padding: 0.8em 1.6em;
    letter-spacing: 0.5px;
  }
}
.button--outline {
  border: 2px solid #0a2438;
}
.button--outline:hover:not(:disabled), .button--outline:focus-visible {
  background: #0a2438;
  color: #ffffff;
}

.button--market {
  display: inline-block;
  font-family: "Quasimoda", "Helvetica Neue", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.9em 2em;
  border: none;
  border-radius: 9999px;
  background: var(--color-light);
  color: var(--color-dark);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  background-clip: padding-box;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.button--market:hover:not(:disabled) {
  transform: translateY(-1px);
}
.button--market:focus-visible {
  outline: 2px solid rgba(10, 36, 56, 0.5);
  outline-offset: 3px;
}
.button--market:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 576px) {
  .button--market {
    font-size: 0.9rem;
    padding: 0.8em 1.6em;
    letter-spacing: 0.5px;
  }
}
.button--market {
  width: 100%;
  text-transform: none;
  letter-spacing: 0.3px;
  box-shadow: var(--shadow-extra-soft);
}
.button--market:hover:not(:disabled) {
  background: var(--color-primary);
  color: var(--color-light);
  box-shadow: var(--shadow-card-hover);
}
.button--market:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}
@media (max-width: 576px) {
  .button--market {
    font-size: 0.9rem;
  }
}

.footer_banner .button {
  display: inline-block;
  font-family: "Quasimoda", "Helvetica Neue", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.9em 2em;
  border: none;
  border-radius: 4px;
  background: #ffffff;
  color: #0a2438;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  background-clip: padding-box;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.footer_banner .button:hover:not(:disabled) {
  transform: translateY(-1px);
}
.footer_banner .button:focus-visible {
  outline: 2px solid rgba(10, 36, 56, 0.5);
  outline-offset: 3px;
}
.footer_banner .button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 576px) {
  .footer_banner .button {
    font-size: 0.9rem;
    padding: 0.8em 1.6em;
    letter-spacing: 0.5px;
  }
}
.footer_banner .button {
  font-size: 1rem;
  padding: 12px 28px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.footer_banner .button:hover:not(:disabled), .footer_banner .button:focus-visible {
  background: #e5e5e5;
}

.button--small {
  font-size: 0.85rem;
  padding: 0.6em 1.4em;
}

.button--large {
  font-size: 1.05rem;
  padding: 1em 2.5em;
}

.button--block {
  display: block;
  width: 100%;
}

/*==================================================
  Cards & Image Containers – Optimized & Safari Ready
==================================================*/
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  padding: 20px;
}
.cards img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  background: #f5f5f5; /* ✅ fallback if image fails */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 8px;
  transition: transform var(--transition-default, 0.3s ease), box-shadow var(--transition-default, 0.3s ease);
  -webkit-transform: translateZ(0); /* ✅ Safari GPU boost */
  backface-visibility: hidden;
}
.cards img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/*==================================================
  Mobile Tweaks (Using respond-max mixin)
==================================================*/
@media (max-width: 576px) {
  .cards {
    gap: 8px;
    padding: 12px;
  }
  .cards img {
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
}
/* ============================================================
   GLOBAL FORM STYLING
   ✅ Unified styles for all forms and questionnaires
============================================================ */
form,
.questionnaire-form {
  max-width: 1000px;
  width: 100%;
  margin-inline: auto;
  font-family: "Quasimoda", "Helvetica Neue", system-ui, sans-serif;
  /* ===== Form Group ===== */
  /* ===== Submit Buttons ===== */
}
form .form-group,
.questionnaire-form .form-group {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: left;
  /* ===== Inputs & Textareas ===== */
}
form .form-group label,
.questionnaire-form .form-group label {
  display: block;
  font-weight: 700;
  font-size: clamp(1rem, 2.8vw, 1.125rem);
  line-height: 1.6;
  margin-bottom: 8px;
  color: #0a2438;
}
form .form-group input[type=text],
form .form-group input[type=email],
form .form-group input[type=tel],
form .form-group input[type=password],
form .form-group select,
form .form-group textarea,
.questionnaire-form .form-group input[type=text],
.questionnaire-form .form-group input[type=email],
.questionnaire-form .form-group input[type=tel],
.questionnaire-form .form-group input[type=password],
.questionnaire-form .form-group select,
.questionnaire-form .form-group textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 20px;
  border: 1px solid rgb(2.2727272727, 8.1818181818, 12.7272727273);
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  resize: vertical;
  transition: border-color var(--transition-default), box-shadow var(--transition-default);
}
form .form-group input[type=text]:focus-visible,
form .form-group input[type=email]:focus-visible,
form .form-group input[type=tel]:focus-visible,
form .form-group input[type=password]:focus-visible,
form .form-group select:focus-visible,
form .form-group textarea:focus-visible,
.questionnaire-form .form-group input[type=text]:focus-visible,
.questionnaire-form .form-group input[type=email]:focus-visible,
.questionnaire-form .form-group input[type=tel]:focus-visible,
.questionnaire-form .form-group input[type=password]:focus-visible,
.questionnaire-form .form-group select:focus-visible,
.questionnaire-form .form-group textarea:focus-visible {
  outline: 2px solid #2c9ab7;
  border-color: #2c9ab7;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
form .form-group textarea,
.questionnaire-form .form-group textarea {
  min-height: 200px;
}
form button[type=submit],
form input[type=submit],
.questionnaire-form button[type=submit],
.questionnaire-form input[type=submit] {
  display: inline-block;
  font-family: "Quasimoda", "Helvetica Neue", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.9em 2em;
  border: none;
  border-radius: 4px;
  background: #0a2438;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  background-clip: padding-box;
  -webkit-appearance: none;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 1rem;
  margin-top: 8px;
  transition: transform 0.2s ease;
}
form button[type=submit]:hover:not(:disabled),
form input[type=submit]:hover:not(:disabled),
.questionnaire-form button[type=submit]:hover:not(:disabled),
.questionnaire-form input[type=submit]:hover:not(:disabled) {
  transform: translateY(-1px);
}
form button[type=submit]:focus-visible,
form input[type=submit]:focus-visible,
.questionnaire-form button[type=submit]:focus-visible,
.questionnaire-form input[type=submit]:focus-visible {
  outline: 2px solid rgba(10, 36, 56, 0.5);
  outline-offset: 3px;
}
form button[type=submit]:disabled,
form input[type=submit]:disabled,
.questionnaire-form button[type=submit]:disabled,
.questionnaire-form input[type=submit]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
@media (max-width: 576px) {
  form button[type=submit],
  form input[type=submit],
  .questionnaire-form button[type=submit],
  .questionnaire-form input[type=submit] {
    font-size: 0.9rem;
    padding: 0.8em 1.6em;
    letter-spacing: 0.5px;
  }
}
form button[type=submit]:hover:not(:disabled), form button[type=submit]:focus-visible,
form input[type=submit]:hover:not(:disabled),
form input[type=submit]:focus-visible,
.questionnaire-form button[type=submit]:hover:not(:disabled),
.questionnaire-form button[type=submit]:focus-visible,
.questionnaire-form input[type=submit]:hover:not(:disabled),
.questionnaire-form input[type=submit]:focus-visible {
  background: #ffffff;
  color: #0a2438;
  box-shadow: var(--shadow-card-hover);
}
form button[type=submit]:hover,
form input[type=submit]:hover,
.questionnaire-form button[type=submit]:hover,
.questionnaire-form input[type=submit]:hover {
  transform: scale(1.03);
}
form button[type=submit]:focus-visible,
form input[type=submit]:focus-visible,
.questionnaire-form button[type=submit]:focus-visible,
.questionnaire-form input[type=submit]:focus-visible {
  box-shadow: 0 0 0 3px rgba(44, 154, 183, 0.4);
}

/* ============================================================
   CONTACT FORM – Dark Background Variant
============================================================ */
form.contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin-inline: auto;
}
form.contact .form-group label {
  color: #ffffff;
}
form.contact .form-group input,
form.contact .form-group textarea {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #000000;
}
form.contact .form-group input:focus-visible,
form.contact .form-group textarea:focus-visible {
  background: #fff;
  outline: 2px solid #2c9ab7;
}

/* ============================================================
   CONTACT FORM WRAPPER – Light Card Variant
============================================================ */
.contact-form {
  background: #ffffff;
  padding: var(--section-pad);
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.contact-form h2, .contact-form p, .contact-form label {
  color: #000000 !important;
}
.contact-form input,
.contact-form textarea {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.15);
}
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid #2c9ab7;
}

/* ============================================================
   MOBILE OPTIMIZATION
============================================================ */
@media (max-width: 576px) {
  form,
  .questionnaire-form {
    padding-inline: 16px;
  }
  form .form-group label,
  .questionnaire-form .form-group label {
    font-size: 0.95rem;
  }
  form .form-group input,
  form .form-group select,
  form .form-group textarea,
  .questionnaire-form .form-group input,
  .questionnaire-form .form-group select,
  .questionnaire-form .form-group textarea {
    font-size: 1rem;
    padding: 16px;
    border-radius: 4px;
  }
  form .form-group textarea,
  .questionnaire-form .form-group textarea {
    min-height: 160px;
  }
  form button[type=submit],
  form input[type=submit],
  .questionnaire-form button[type=submit],
  .questionnaire-form input[type=submit] {
    width: 100%;
    font-size: 1rem;
    padding: 14px;
  }
}
@media (max-width: 480px) {
  form,
  .questionnaire-form {
    padding-inline: 8px;
  }
  form button[type=submit],
  form input[type=submit],
  .questionnaire-form button[type=submit],
  .questionnaire-form input[type=submit] {
    font-size: 0.95rem;
    padding: 12px;
  }
}
/* ============================================================
   ACCESSIBILITY: REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
  form button,
  input[type=submit] {
    transition: none;
  }
}
/* ============================================
   VIDEO WRAPPER (Responsive & Edge-to-Edge)
============================================ */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 24px auto;
  overflow: hidden;
  border-radius: 8px;
  background: #000000;
  aspect-ratio: 16/9;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  background: #000000;
}
@supports not (aspect-ratio: 16/9) {
  .video-wrapper::before {
    content: "";
    display: block;
    padding-top: 56.25%;
  }
  .video-wrapper iframe, .video-wrapper video {
    position: absolute;
    inset: 0;
  }
}
@media (max-width: 768px) {
  .video-wrapper {
    max-width: 90vw;
  }
}
@media (max-width: 576px) {
  .video-wrapper {
    max-width: 100%;
    margin-inline: 16px;
    border-radius: 4px;
  }
}
@media (max-width: 480px) {
  .video-wrapper {
    margin-inline: 8px;
    border-radius: 4px;
  }
}

/* ============================================
   VIDEO THUMB (Lightbox Trigger)
============================================ */
.video-thumb {
  position: relative;
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 32px auto;
  cursor: pointer;
}
.video-thumb img {
  display: block;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: filter 0.3s ease;
}
.video-thumb:hover img {
  filter: brightness(0.85);
}
.video-thumb .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(2rem, 5vw, 3rem);
  color: #ffffff;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 50%;
  padding: 0.6em 0.75em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.video-thumb .play-button:hover {
  background: rgba(0, 0, 0, 0.85);
  transform: translate(-50%, -50%) scale(1.05);
}
@media (max-width: 576px) {
  .video-thumb {
    margin-inline: 16px;
  }
  .video-thumb img {
    border-radius: 8px;
  }
}
@media (max-width: 480px) {
  .video-thumb {
    margin-inline: 8px;
  }
  .video-thumb .play-button {
    font-size: 1.8rem;
    padding: 0.4em 0.5em;
  }
}

/* ============================================
   MODAL LIGHTBOX VIDEO
============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal.active {
  opacity: 1;
  pointer-events: auto;
}
.modal .modal-content {
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16/9;
  background: #000000;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.modal .modal-content iframe, .modal .modal-content video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 576px) {
  .modal .modal-content {
    border-radius: 4px;
  }
}
@media (max-width: 480px) {
  .modal {
    padding: 8px;
  }
  .modal .modal-content {
    max-width: 100%;
    border-radius: 4px;
  }
}

/* ============================================
   INLINE LISTING VIDEO CARD
============================================ */
.listing-video {
  width: 100%;
  border-radius: 16px;
  background: #000000;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
@media (max-width: 576px) {
  .listing-video {
    border-radius: 8px;
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .listing-video {
    border-radius: 4px;
  }
}

/* ============================================
   GRACEFUL LOADING / FALLBACK
============================================ */
video[loading],
video:not([src]) {
  display: block;
  background: #000000;
}

/* ============================================
   HERO SECTION (Clean, Light Overlay)
============================================ */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  width: 100%;
  min-height: 40vh;
  text-align: center;
  color: #ffffff;
  background: #0a2438 no-repeat center/cover;
  z-index: 1;
  transform: translateZ(0);
  backface-visibility: hidden;
  /* Spacing */
  --header-height: clamp(64px, 10vw, 84px);
  --hero-pad-y: clamp(80px, 18vw, 200px);
  padding-block: var(--hero-pad-y);
  padding-top: calc(var(--hero-pad-y) + var(--header-height));
  /* ✅ Subtle Overlay */
}
@media (max-width: 768px) {
  .hero {
    --hero-pad-y: clamp(70px, 16vw, 160px);
  }
}
@media (max-width: 576px) {
  .hero {
    --hero-pad-y: clamp(60px, 14vw, 140px);
  }
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.25));
  z-index: -1;
  pointer-events: none;
}

/* ============================================
   FULL-WIDTH VARIANT
============================================ */
.hero-full {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* ============================================
   HERO TYPOGRAPHY
============================================ */
.hero_header,
.hero_header_blue {
  font-family: "Arno Pro Display", "Georgia", serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 6vw, 2.6rem);
  letter-spacing: 1.5px;
  line-height: 1.2;
  text-align: center;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.45); /* lighter shadow */
}

.hero_header {
  color: #ffffff;
}

.hero_header_blue {
  color: #0a2438;
}

.tagline {
  font-family: "Quasimoda", "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 8px auto 16px;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* ============================================================
   MARKET INSIGHTS MODULE – Final Production Version
============================================================ */
.market-insights {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-block: 24px;
  /* ===== Section Header ===== */
  /* ===== Insight Card ===== */
  /* ===== Table Wrapper ===== */
  /* ===== Styled Table ===== */
  /* ===== Price Grid ===== */
}
.market-insights .container-narrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 0; /* ✅ no extra container padding */
}
.market-insights .section-header-block {
  margin-bottom: 24px;
}
.market-insights .section-header-block h2 {
  font-family: "Tenso", "Helvetica Neue", system-ui, sans-serif;
  color: #0a2438;
  font-size: clamp(1.6rem, 3vw, 2rem);
}
.market-insights .section-header-block p {
  color: rgba(10, 36, 56, 0.65);
  font-size: clamp(1rem, 1.2vw, 1.05rem);
  line-height: 1.5;
  max-width: 90%;
  margin-inline: auto;
}
.market-insights .insight-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 720px;
  margin: 0 auto 24px;
  padding: 8px 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.market-insights .insight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
.market-insights .insight-card .insight-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.market-insights .insight-card .insight-title {
  font-family: "Tenso", "Helvetica Neue", system-ui, sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: #0a2438;
  margin-bottom: 4px;
}
.market-insights .insight-card .insight-text {
  color: rgba(10, 36, 56, 0.65);
  font-size: 1.125rem;
  margin-bottom: 8px;
  max-width: 90%;
}
.market-insights .table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin: 0;
  padding: 0;
}
.market-insights .styled-table {
  width: 100%;
  table-layout: auto;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 8px;
  text-align: center;
}
.market-insights .styled-table th, .market-insights .styled-table td {
  padding: 0.75rem 0.75rem;
  font-size: 0.95rem;
  white-space: nowrap;
}
.market-insights .styled-table th {
  background: #0a2438;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.market-insights .styled-table td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.market-insights .styled-table td:first-child {
  font-weight: 600;
  color: #0a2438;
}
.market-insights .styled-table tr:nth-child(even) td {
  background: rgba(44, 154, 183, 0.03);
}
.market-insights .styled-table tr:hover td {
  background: rgba(44, 154, 183, 0.08);
}
.market-insights .price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
  margin-bottom: 24px;
}
.market-insights .price-grid p {
  background: #ffffff;
  border-radius: 8px;
  padding: 0.6rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 0.95rem;
  color: rgba(10, 36, 56, 0.65);
}
.market-insights .price-grid p strong {
  color: #0a2438;
}
.market-insights .insight-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 8px 16px;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 1rem;
  color: #0a2438;
  line-height: 1.5;
}
.market-insights .market-commentary blockquote {
  font-size: 1.1rem;
  color: rgba(10, 36, 56, 0.65);
  border-left: 4px solid #2c9ab7;
  padding: 8px 16px;
  margin: 16px auto;
  max-width: 650px;
  background: rgba(44, 154, 183, 0.05);
  border-radius: 8px;
}
.market-insights .market-cta p {
  font-size: 1rem;
}
.market-insights .market-cta .button--primary {
  margin-top: 8px;
}

/* ============================================================
   RESPONSIVE OPTIMIZATION
============================================================ */
@media (max-width: 576px) {
  .market-insights {
    padding-inline: 0;
  }
  .market-insights .insight-card {
    max-width: 100%;
    border-radius: 0;
    padding: 4px;
  }
  .market-insights .table-wrapper {
    border-radius: 0;
    padding: 0;
  }
  .market-insights .styled-table {
    width: 100%;
    min-width: 100%;
    font-size: 0.85rem;
  }
  .market-insights .styled-table th, .market-insights .styled-table td {
    padding: 0.6rem 0.5rem;
  }
  .market-insights .price-grid {
    grid-template-columns: 1fr 1fr;
  }
  .market-insights .insight-item {
    font-size: 0.95rem;
  }
}
/* =======================================
   AGENT DIRECTORY – MASTER WRAPPER
======================================= */
#agent-directory {
  /* Responsive Grid */
}
#agent-directory .section-wrapper {
  max-width: 1400px;
  margin-inline: auto;
  animation: fadeIn 0.7s ease-in;
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  padding-block: 60px;
  padding-inline: 20px;
}
@media (max-width: 576px) {
  #agent-directory .section-wrapper {
    padding-block: 40px;
    padding-inline: 20px;
  }
}
#agent-directory .section-header {
  text-align: center;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: #0a2438;
  letter-spacing: -0.5px;
}
#agent-directory .insight-box {
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(10, 36, 56, 0.75);
  max-width: 720px;
  margin: 0 auto 24px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
#agent-directory .agent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  padding-inline: var(--container-pad-desktop);
  -webkit-transform: translateZ(0);
}
@media (max-width: 768px) {
  #agent-directory .agent-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    padding-inline: var(--container-pad-tablet);
  }
}
@media (max-width: 576px) {
  #agent-directory .agent-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-inline: var(--container-pad-mobile);
  }
}

/* =======================================
   AGENT CARD
======================================= */
.agent-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 40px 2rem;
  min-height: 520px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  opacity: 0;
  transform: translateY(10px) translateZ(0);
  animation: fadeUp 0.5s ease forwards;
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease;
}
.agent-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-card-hover);
}
.agent-card:focus-within {
  outline: 2px solid #2c9ab7;
  outline-offset: 4px;
}
.agent-card .stretched-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  text-indent: -9999px;
}
@media (max-width: 576px) {
  .agent-card {
    width: 100%;
    max-width: 96%;
    padding: 20px;
    min-height: unset;
    border-radius: 8px;
  }
}

/* Animation Delay */
.agent-card:nth-child(1) {
  animation-delay: 0.1s;
}

.agent-card:nth-child(2) {
  animation-delay: 0.2s;
}

.agent-card:nth-child(3) {
  animation-delay: 0.3s;
}

.agent-card:nth-child(4) {
  animation-delay: 0.4s;
}

.agent-card:nth-child(5) {
  animation-delay: 0.5s;
}

.agent-card:nth-child(6) {
  animation-delay: 0.6s;
}

.agent-card:nth-child(7) {
  animation-delay: 0.7s;
}

.agent-card:nth-child(8) {
  animation-delay: 0.8s;
}

.agent-card:nth-child(9) {
  animation-delay: 0.9s;
}

.agent-card:nth-child(10) {
  animation-delay: 1s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* =======================================
   AGENT CONTENT
======================================= */
.agent-photo {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  margin-inline: auto;
  margin-bottom: 16px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}
.agent-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  .agent-photo {
    max-width: 150px;
    margin-bottom: 8px;
  }
}

.agent-name {
  font-family: "Tenso", "Helvetica Neue", system-ui, sans-serif;
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 600;
  color: #0a2438;
  margin-bottom: 8px;
}

.agent-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(10, 36, 56, 0.65);
  margin-bottom: 16px;
}

.agent-contact {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.agent-contact a {
  color: #0a2438;
  text-decoration: underline;
}
.agent-contact a:hover {
  text-decoration: none;
}

.agent-profile__bio {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(10, 36, 56, 0.85);
  max-width: 640px;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* CTA Button */
.agent-profile__cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  background: #2c9ab7;
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}
.agent-profile__cta:hover {
  background: rgb(36.0916299559, 126.3207048458, 150.1083700441);
  transform: scale(1.02);
}

/* =======================================
   AVATAR STRIP – SCROLLABLE
======================================= */
#agentImageGrid.agent-grid {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 16px;
  padding: 40px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
#agentImageGrid.agent-grid::-webkit-scrollbar {
  display: none;
}
#agentImageGrid.agent-grid::before, #agentImageGrid.agent-grid::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  pointer-events: none;
  z-index: 2;
}
#agentImageGrid.agent-grid::before {
  left: 0;
  background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
#agentImageGrid.agent-grid::after {
  right: 0;
  background: linear-gradient(to left, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}
#agentImageGrid.agent-grid .agent-photo-only {
  flex: 0 0 auto;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease;
}
#agentImageGrid.agent-grid .agent-photo-only:hover {
  transform: scale(1.04);
}
#agentImageGrid.agent-grid .agent-photo-only .agent-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
@media (max-width: 480px) {
  #agentImageGrid.agent-grid .agent-photo-only .agent-photo {
    width: 130px;
    height: 130px;
  }
}

/* =======================================
   ACCESSIBILITY: REDUCED MOTION
======================================= */
@media (prefers-reduced-motion: reduce) {
  .agent-card, .agent-photo, .agent-profile__cta {
    transition: none;
  }
  .agent-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
/*=============================================
=           Horizontal Gallery Layout         =
=============================================*/
.gallery-section {
  width: 100%;
  margin-top: 16px;
  padding-inline: var(--container-pad-mobile);
}
@media (max-width: 576px) {
  .gallery-section {
    margin-top: 8px;
  }
}
@media (min-width: 768px) {
  .gallery-section {
    padding-inline: var(--container-pad-tablet);
  }
}
@media (min-width: 1280px) {
  .gallery-section {
    padding-inline: var(--container-pad-desktop);
  }
}

.gallery-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  /* ---------- Track ---------- */
  /* ---------- Carousel Buttons ---------- */
}
.gallery-carousel .carousel-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-block: 8px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 8px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  /* ---------- Gallery Item ---------- */
}
.gallery-carousel .carousel-track::-webkit-scrollbar {
  display: none;
}
.gallery-carousel .carousel-track .gallery-item {
  flex: 0 0 auto;
  max-width: 280px;
  scroll-snap-align: start;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  background: #ffffff;
  overflow: hidden;
  transition: transform var(--transition-default);
}
.gallery-carousel .carousel-track .gallery-item:hover {
  transform: scale(1.03);
}
@media (max-width: 576px) {
  .gallery-carousel .carousel-track .gallery-item {
    max-width: 220px;
  }
}
.gallery-carousel .carousel-track .gallery-item img.gallery-thumb {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: inherit;
  -webkit-transform: translateZ(0);
  transition: transform var(--transition-default);
}
.gallery-carousel .carousel-track .gallery-item img.gallery-thumb:hover {
  transform: scale(1.05);
}
@media (max-width: 576px) {
  .gallery-carousel .carousel-track .gallery-item img.gallery-thumb {
    max-height: 160px;
  }
}
.gallery-carousel .carousel-btn {
  background: rgba(10, 36, 56, 0.85);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  padding: 0.5rem 0.65rem;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 1300;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: background var(--transition-default), transform 0.2s ease;
}
.gallery-carousel .carousel-btn:hover, .gallery-carousel .carousel-btn:focus-visible {
  background: #0a2438;
  transform: scale(1.05);
  outline: none;
}
@media (min-width: 768px) {
  .gallery-carousel .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .gallery-carousel .carousel-btn.left {
    left: 0;
  }
  .gallery-carousel .carousel-btn.right {
    right: 0;
  }
}
@media (max-width: 576px) {
  .gallery-carousel .carousel-btn {
    position: static;
    margin-block: 4px;
    transform: none;
    align-self: center;
  }
}

/* ============================================
   LISTS – Optimized for Market Insights & UI
============================================ */
/* ===== Base UL/OL Styles ===== */
ul,
ol {
  margin: 0;
  padding-left: 16px;
  line-height: 1.6;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  color: #000000;
}
ul li,
ol li {
  margin-bottom: 4px;
}

/* ===== Market List Grid ===== */
.market-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}
.market-list .market-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-left: 4px solid #2c9ab7;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 16px;
  font-size: var(--font-size-base);
  line-height: 1.5;
  transition: transform 0.25s ease, box-shadow 0.3s ease;
}
.market-list .market-item strong {
  color: #0a2438;
}
.market-list .market-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* ===== Inline List (Tags/Filters) ===== */
.inline-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  gap: 8px;
  padding: 0;
  margin: 16px auto;
}
.inline-list li {
  background: rgba(10, 36, 56, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 4px;
  padding: 6px 12px;
  font-size: 0.9rem;
  font-weight: var(--font-weight-medium);
  color: #0a2438;
}

/* ===== Badge ===== */
.badge {
  display: inline-block;
  background: #2c9ab7;
  color: #ffffff;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: var(--font-weight-semibold);
  line-height: 1.4;
  white-space: nowrap;
}

/* ===== Mobile Optimization ===== */
@media (max-width: 576px) {
  .market-list {
    grid-template-columns: 1fr;
  }
  .market-list .market-item {
    font-size: 0.95rem;
  }
  .inline-list {
    flex-direction: column;
    align-items: center;
  }
  .inline-list li {
    width: 100%;
    text-align: center;
  }
}
/* =====================================================================
   GLOBAL VARIABLES & MIXINS
===================================================================== */
/* =====================================================================
   GLOBAL RESET & BASE IMAGE HANDLING
===================================================================== */
img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  background: none;
  transition: filter 0.3s ease;
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
}
@supports (-webkit-touch-callout: none) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* LOGOS */
img.logo,
.footer-logo img,
.header-logo img {
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease, filter 0.3s ease;
}
img.logo:hover,
.footer-logo img:hover,
.header-logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

/* =====================================================================
   UTILITY CLASSES (Flex, Grid, Spacing, Overlay)
===================================================================== */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.full-width {
  width: 100%;
}

.space-between {
  justify-content: space-between;
}

.gap-xs {
  gap: 4px;
}

.mb-xs {
  margin-bottom: 4px;
}

.mt-xs {
  margin-top: 4px;
}

.gap-sm {
  gap: 8px;
}

.mb-sm {
  margin-bottom: 8px;
}

.mt-sm {
  margin-top: 8px;
}

.gap-md {
  gap: 16px;
}

.mb-md {
  margin-bottom: 16px;
}

.mt-md {
  margin-top: 16px;
}

.gap-lg {
  gap: 24px;
}

.mb-lg {
  margin-bottom: 24px;
}

.mt-lg {
  margin-top: 24px;
}

.gap-xl {
  gap: 32px;
}

.mb-xl {
  margin-bottom: 32px;
}

.mt-xl {
  margin-top: 32px;
}

.gap-xxl {
  gap: 48px;
}

.mb-xxl {
  margin-bottom: 48px;
}

.mt-xxl {
  margin-top: 48px;
}

/* Overlay Utility */
.overlay-dark {
  background: rgba(0, 0, 0, 0.5);
}

.overlay-light {
  background: rgba(255, 255, 255, 0.3);
}

/* =====================================================================
   BUTTONS
===================================================================== */
.button {
  display: inline-block;
  font-family: "Quasimoda", "Helvetica Neue", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.9em 2em;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: #0a2438;
  text-align: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.button:hover:not(:disabled) {
  transform: translateY(-1px);
}
.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.button--primary {
  display: inline-block;
  font-family: "Quasimoda", "Helvetica Neue", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.9em 2em;
  border: none;
  border-radius: 4px;
  background: #0a2438;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.button--primary:hover:not(:disabled) {
  transform: translateY(-1px);
}
.button--primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.button--solid {
  display: inline-block;
  font-family: "Quasimoda", "Helvetica Neue", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.9em 2em;
  border: none;
  border-radius: 4px;
  background: #2c9ab7;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.button--solid:hover:not(:disabled) {
  transform: translateY(-1px);
}
.button--solid:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.button--outline {
  display: inline-block;
  font-family: "Quasimoda", "Helvetica Neue", system-ui, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.9em 2em;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: #0a2438;
  text-align: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
  border: 2px solid #0a2438;
}
.button--outline:hover:not(:disabled) {
  transform: translateY(-1px);
}
.button--outline:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.button--large {
  font-size: 1.05rem;
  padding: 1em 2.5em;
}

.button--block {
  display: block;
  width: 100%;
}

/* =====================================================================
   HERO SECTION
===================================================================== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  width: 100%;
  text-align: center;
  color: #ffffff;
  background: #0a2438 no-repeat center/cover;
  --header-height: clamp(64px, 10vw, 84px);
  --hero-pad-y: clamp(80px, 18vw, 200px);
  padding-block: var(--hero-pad-y);
  padding-top: calc(var(--hero-pad-y) + var(--header-height));
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.65));
  z-index: -1;
}

.hero_header {
  font-family: "Arno Pro Display", "Georgia", serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.5rem, 6vw, 2.6rem);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.tagline {
  font-family: "Quasimoda", "Helvetica Neue", system-ui, sans-serif;
  font-weight: 300;
  font-size: clamp(0.9rem, 2.2vw, 1.1rem);
  max-width: 680px;
  margin: 8px auto 16px;
  color: rgba(255, 255, 255, 0.9);
}

/* =====================================================================
   FEATURED LISTINGS
===================================================================== */
#featured-listings {
  padding-block: var(--pad-lg);
  background: #ffffff;
  text-align: center;
}
#featured-listings .section-header {
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #0a2438;
  margin-bottom: var(--space-lg);
}
#featured-listings .featured-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  padding-inline: var(--space-md);
}

.featured-listing-block {
  background: var(--color-light);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.featured-listing-block:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-card-hover);
}
.featured-listing-block .listing-media img, .featured-listing-block .listing-media video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.featured-listing-block .listing-media img {
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  transition: transform 0.4s ease;
}
.featured-listing-block .listing-media:hover img {
  transform: scale(1.05);
}
.featured-listing-block .listing-info {
  padding: var(--space-md);
  text-align: center;
  max-width: 90%;
  margin-inline: auto;
}
.featured-listing-block .listing-info .badge-featured {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--color-light);
  padding: 0.35em 0.9em;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  display: inline-block;
}
.featured-listing-block .listing-info .listing-tagline {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 600;
  color: var(--color-primary);
}
.featured-listing-block .listing-info .listing-details {
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: var(--space-sm);
}
.featured-listing-block .listing-info .listing-summary {
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.5;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}

/* =====================================================================
   VIDEO WRAPPER (Shared)
===================================================================== */
.video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  border-radius: var(--radius-md);
  background: #000;
  overflow: hidden;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =======================================
   AUDIO PLAYER – WRAPPER
======================================= */
#audio-player {
  max-width: 1024px;
  margin-inline: auto;
  text-align: center;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 40px;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeInUp 0.6s ease forwards;
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  padding-block: 60px;
  padding-inline: 20px;
}
@media (max-width: 576px) {
  #audio-player {
    padding-block: 40px;
    padding-inline: 20px;
  }
}
@media (max-width: 576px) {
  #audio-player {
    padding: 20px;
    border-radius: 8px;
  }
}
@media (max-width: 480px) {
  #audio-player {
    padding: 12px;
    border-radius: 4px;
  }
}

/* =======================================
   HEADER & LABELS
======================================= */
.audio-header {
  font-family: "Tenso", "Helvetica Neue", system-ui, sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #0a2438;
  margin-bottom: 8px;
}

.audio-subtitle {
  font-size: 1rem;
  color: rgba(10, 36, 56, 0.7);
  margin-bottom: 16px;
  line-height: 1.5;
}

/* =======================================
   AUDIO CONTROLS
======================================= */
.audio-controls {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  gap: 16px;
  margin-bottom: 16px;
}
.audio-controls button {
  background: #2c9ab7;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  will-change: background, transform;
}
.audio-controls button:hover {
  background: rgb(36.0916299559, 126.3207048458, 150.1083700441);
  transform: scale(1.05);
}
.audio-controls button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(44, 154, 183, 0.4);
}
@media (max-width: 576px) {
  .audio-controls {
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .audio-controls {
    gap: 4px;
  }
}

/* =======================================
   PROGRESS BAR
======================================= */
.audio-progress {
  width: 100%;
  height: 6px;
  border-radius: 4px;
  background: rgba(10, 36, 56, 0.1);
  overflow: hidden;
  margin-bottom: 8px;
  position: relative;
}
.audio-progress .progress-bar {
  height: 100%;
  width: 0%;
  background: #2c9ab7;
  transition: width 0.3s ease;
  will-change: width;
}

/* =======================================
   TIMESTAMP
======================================= */
.audio-time {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(10, 36, 56, 0.7);
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

/* =======================================
   WAVEFORM VISUALIZATION
======================================= */
.audio-waveform {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2px;
  height: 40px;
  margin: 8px auto;
}
.audio-waveform span {
  display: block;
  width: 3px;
  background: #2c9ab7;
  border-radius: 4px;
  animation: audioWave 1s infinite ease-in-out;
  will-change: height;
}
.audio-waveform span:nth-child(2) {
  animation-delay: 0.2s;
}
.audio-waveform span:nth-child(3) {
  animation-delay: 0.4s;
}
.audio-waveform span:nth-child(4) {
  animation-delay: 0.6s;
}
.audio-waveform span:nth-child(5) {
  animation-delay: 0.8s;
}
@media (max-width: 480px) {
  .audio-waveform {
    height: 30px;
  }
}

/* =======================================
   ANIMATIONS
======================================= */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes audioWave {
  0%, 100% {
    height: 6px;
  }
  50% {
    height: 30px;
  }
}
/* =======================================
   ACCESSIBILITY: REDUCED MOTION
======================================= */
@media (prefers-reduced-motion: reduce) {
  #audio-player, .audio-controls button, .audio-waveform span {
    animation: none;
    transition: none;
  }
}
/* ============================================================
   MARKET TABLES – Optimized, Responsive, Accessible
============================================================ */
.market-table-wrapper {
  width: 100%;
  margin: 16px auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  /* Scrollbar Styling */
}
.market-table-wrapper::-webkit-scrollbar {
  height: 6px;
}
.market-table-wrapper::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 9999px;
}
.market-table-wrapper::-webkit-scrollbar-track {
  background: transparent;
}

.market-table {
  width: 100%;
  min-width: 360px;
  margin-inline: auto;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  color: #000000;
  text-align: center;
  overflow: hidden;
  /* Zebra Striping */
  /* Hover Highlight */
  /* Highlight First Column */
}
.market-table th,
.market-table td {
  padding: 12px 16px;
  line-height: 1.5;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.25s ease;
}
.market-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-md);
  background: #0a2438;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.market-table td {
  font-size: var(--font-size-base);
  background: #ffffff;
}
.market-table tr:last-child td {
  border-bottom: none;
}
.market-table tbody tr:nth-child(odd) td {
  background: rgba(0, 0, 0, 0.015);
}
.market-table tbody tr:hover td {
  background: rgba(44, 154, 183, 0.05);
}
.market-table tbody td:first-child {
  font-weight: var(--font-weight-medium);
  color: #0a2438;
  text-align: left;
  padding-left: 20px;
}

/* ============================================================
   ✅ Mobile Optimization – Scaling & Stacked Mode
============================================================ */
@media (max-width: 768px) {
  .market-table {
    font-size: 0.95rem;
  }
  .market-table th, .market-table td {
    padding: 10px 12px;
  }
}
@media (max-width: 576px) {
  .market-table {
    font-size: 0.9rem;
  }
  .market-table th, .market-table td {
    padding: 8px 10px;
  }
  /* Stacked Layout */
  .market-table.stacked {
    border: 0;
  }
  .market-table.stacked thead {
    display: none;
  }
  .market-table.stacked tr {
    display: block;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  .market-table.stacked td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none !important;
    padding: 8px 12px;
    font-size: 0.9rem;
    background: #ffffff;
    text-align: left;
  }
  .market-table.stacked td:before {
    content: attr(data-label);
    font-weight: var(--font-weight-semibold);
    color: #0a2438;
  }
}
/* ============================================================
   ✅ Dark Mode Support
============================================================ */
@media (prefers-color-scheme: dark) {
  .market-table {
    background: #111;
    color: #fff;
    box-shadow: none;
  }
  .market-table th {
    background: rgb(9, 32.4, 50.4);
    color: #fff;
  }
  .market-table td {
    background: #222;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .market-table tbody tr:nth-child(odd) td {
    background: #1a1a1a;
  }
  .market-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.05);
  }
}
/* ============================================
   IMAGES – Optimized, Responsive & Transparent-Safe
============================================ */
/* ===== Base Image ===== */
img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  background: none;
  transition: filter 0.3s ease;
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
}

/* ===== Transparent Logo Special Handling ===== */
img.logo,
.footer-logo img,
.header-logo img {
  background: transparent;
  border-radius: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
  transition: transform 0.3s ease, filter 0.3s ease;
}
img.logo:hover,
.footer-logo img:hover,
.header-logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}

/* ===== Responsive Images ===== */
.image-responsive {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* ===== Image Hover Effects ===== */
.image-hover {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.image-hover:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-card-hover);
}

/* ===== Figure with Caption ===== */
.figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: var(--space-md) auto;
  text-align: center;
}
.figure img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  margin-bottom: var(--space-xs);
}
.figure figcaption {
  font-size: var(--font-size-sm);
  color: var(--color-muted);
  line-height: 1.4;
}

/* ===== Rounded Variant ===== */
.image-circle {
  border-radius: 50%;
  object-fit: cover;
}

/* ===== Hero & Banner Images ===== */
.hero-image {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: cover;
  border-radius: 0;
  background: var(--color-dark);
}

/* ===== Overlay Variant ===== */
.image-overlay {
  position: relative;
}
.image-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  border-radius: inherit;
  pointer-events: none;
}

/* ===== Aspect Ratio Utilities ===== */
.image-16-9 {
  aspect-ratio: 16/9;
  object-fit: cover;
}

.image-1-1 {
  aspect-ratio: 1/1;
  object-fit: cover;
}

.image-4-3 {
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ===== Safari Optimizations ===== */
@supports (-webkit-touch-callout: none) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
/* ===== Mobile Tweaks ===== */
@media (max-width: 576px) {
  .image-hover {
    border-radius: var(--radius-md);
  }
  .figure {
    margin: var(--space-sm) auto;
  }
}
/* ============================================================
   MARKET PAGES – Refined Layout, Animations & Depth
   ✅ Uses global tokens for a cohesive, polished experience
============================================================ */
/* ================================
   1. Page Wrapper
================================ */
.market-page {
  background: var(--color-light);
  animation: fadeIn 0.6s ease-in-out both;
  /* Main Title */
  /* Sub Tagline */
}
.market-page h1.section-header {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05);
  animation: fadeUp 0.6s ease-out both;
}
.market-page h2.tagline {
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  font-weight: var(--font-weight-normal);
  color: var(--color-muted);
  line-height: 1.4;
  max-width: 40rem;
  margin-inline: auto;
  opacity: 0.9;
  animation: fadeIn 1s ease-in 0.2s both;
}

/* ================================
   2. Market Image
================================ */
.market-image {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: var(--space-md) auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.market-image:hover {
  transform: scale(1.025);
  box-shadow: var(--shadow-card-hover);
}
@media (max-width: 576px) {
  .market-image {
    border-radius: var(--radius-md);
  }
}

/* ================================
   3. Market Insights
================================ */
.market-insights {
  background: var(--color-light);
  padding: clamp(32px, 6vw, 48px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  margin-top: var(--space-lg);
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.6s ease-in-out 0.3s both;
  /* Gradient Accent */
  /* Stats List */
}
.market-insights::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 154, 183, 0.05), rgba(10, 36, 56, 0.02));
  pointer-events: none;
  opacity: 0.8;
}
.market-insights .market-report {
  font-size: clamp(1rem, 2vw, 1.05rem);
  line-height: 1.6;
  color: var(--color-dark);
  position: relative;
  z-index: 1;
}
.market-insights .market-report strong {
  color: var(--color-primary);
}
.market-insights .market-stats {
  list-style: none;
  margin: var(--space-md) 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
.market-insights .market-stats li {
  font-weight: 500;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.market-insights .market-stats li:last-child {
  border-bottom: none;
}

/* ================================
   4. CTA Blocks
================================ */
.market-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-sm);
  padding-block: clamp(32px, 5vw, 48px);
  animation: fadeIn 0.6s ease-in-out both;
}
.market-cta.cta-border {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.market-cta .button {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.market-cta .button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

/* ================================
   5. Seller Section
================================ */
.market-seller {
  background: rgba(10, 36, 56, 0.03);
  padding: clamp(32px, 5vw, 48px);
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-extra-soft);
  animation: fadeUp 0.7s ease-in-out 0.4s both;
}
.market-seller h2.section-header {
  margin-bottom: var(--space-sm);
}
.market-seller p {
  max-width: 40rem;
  margin-inline: auto;
  line-height: 1.6;
  color: var(--color-dark);
  opacity: 0.9;
}

/* ================================
   6. New Construction Section
================================ */
.market-new-construction {
  padding: clamp(32px, 5vw, 48px);
  text-align: center;
  animation: fadeUp 0.7s ease-in-out 0.5s both;
}
.market-new-construction p {
  max-width: 42rem;
  margin-inline: auto;
  line-height: 1.6;
  color: var(--color-dark);
}

/*# sourceMappingURL=style.css.map */
