/* =================================================================== */
/* ==                  1. ROOT VARIABLES & GLOBALS                  == */
/* =================================================================== */
:root {
  /* --- Colors --- */
  --color-text-dark: #000000;
  --color-text-light: #f0f0f0;
  --color-text-body: #333333;
  --color-text-subtle: #555555;
  --color-text-link: #926c00;
  --color-text-quote: #1d1d1f;
  --color-text-disabled: #aaa;

  --color-bg-white: #ffffff;
  --color-bg-light: #f0f0f0;
  --color-bg-medium: #f3f6f6;
  --color-bg-dark: #0e0e0e;
  --color-bg-dark-accent: #0d1117;
  --color-bg-top-bar: #e4e4e4;
  --color-bg-toolkit: #7fc5de;
  --color-bg-arrow-nav: #e8e8ed;
  --color-bg-arrow-nav-dark: #2a2a2e;

  --color-primary-gold: #926c00;
  --color-primary-gold-hover: #a17a00;
  --color-secondary-gold: #ffd60a;
  --color-secondary-gold-hover: #ffab3c;

  /* --- Typography --- */
  --font-primary: 'Inter', sans-serif;
  --font-size-small: 1rem;
  --font-size-base: 16pt;
  --font-size-mid: 19pt;
  --font-size-ML: 30pt;
  --font-size-large: 37pt;
  --line-height-base: 1.6;

  /* --- Sizing & Spacing --- */
  --space-xxs: 0.5rem;   /* 8px */
  --space-xs: 0.75rem;   /* 12px */
  --space-sm: 0.8125rem; /* 13px */
  --space-md: 1.25rem;   /* 20px */
  --space-lg: 2.5rem;    /* 40px */
  --space-xl: 3.75rem;   /* 60px */
  --space-xxl: 5rem;     /* 80px */

  /* --- Borders & Shadows --- */
  --radius-pill: 999px;
  --radius-lg: 3.75rem;   /* 60px */
  --radius-md: 1.875rem;  /* 30px */
  --radius-sm: 1.25rem;   /* 20px */
  --radius-xs: 0.625rem;  /* 10px */
  --shadow-card: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.07);
  --shadow-card-hover: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.12);

  /* --- Layout --- */
  --container-width-xl: 120rem;    /* 1920px */
  --container-width-lg: 1400px;    /* 1680px */
  --container-width-md: 78.75rem;  /* 1260px */
  --container-width-sm: 56.25rem;  /* 900px */
}

body {
  margin: 0;
  font-family: var(--font-primary);
  background-color: var(--color-bg-white);
  color: var(--color-text-body);
  overflow-x: hidden;
}

/* --- Utility Classes --- */
.bg-cover-center {
  background-size: cover;
  background-position: center;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.desktop-only {
  display: flex;
}
.mobile-only {
  display: none;
}

/* =================================================================== */
/* ==                 2. HEADER, NAVBAR & MEGA MENU                 == */
/* =================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  height: 44px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: height 0.4s ease;
}
.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.8);
  transition: background-color 0.4s ease, border-color 0.3s ease;
}
.site-header.menu-active {
  height: 450px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.site-header.menu-active::before {
  background-color: #ffffff;
}
.navbar-container {
  width: 100%;
  max-width: 1600px;
  height: 44px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.logo-icon svg {
  width: 20px;
  height: 20px;
  color: #1d1d1f;
}
.nav-links ul {
  display: flex;
  gap: clamp(1rem, 2.2vw, 32px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
}
.mega-menu {
  width: 100%;
  height: calc(100% - 44px);
  position: absolute;
  top: 44px;
  left: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease 0.1s;
}
.site-header.menu-active .mega-menu {
  opacity: 1;
  pointer-events: auto;
}
.mega-menu-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}
.mega-menu-content {
  display: none;
}
.mega-menu-content.is-active {
  display: flex;
  gap: 60px;
  justify-content: flex-start;
}
.mega-menu-column {
  width: 250px;
}
.mega-menu-column h4 {
  font-size: 13px;
  font-weight: 600;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 20px 0;
}
.mega-menu-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mega-menu-column li {
  margin-bottom: 16px;
}
.mega-menu-column ul a,
.mega-menu-column .text-mega-link {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    transition: color 0.2s ease;
}
.mega-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.mega-menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* =================================================================== */
/* ==                 3. SHARED COMPONENT STYLES                  == */
/* =================================================================== */

/* --- Page Header --- */
.page-header {
  max-width: 1400px;
  padding: var(--space-md);
  margin: 0 auto;
}
.page-header-container {
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.page-title {
  font-size: var(--font-size-large);
  font-weight: 600;
  margin: 0;
  color: var(--color-text-dark);
}
.page-slogan {
  font-size: 1.6rem; /* 30px */
  font-weight: 400;
  margin: 0;
  color: var(--color-text-dark);
}

/* --- Hero --- */
.hero-section {
  padding: 2rem 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image {
  width: 1680px;
  height: 850px;
  border-radius: var(--radius-lg);
}
.top-bar-background {
  height: 44px;
  background-color: var(--color-bg-top-bar);
}

/* --- Buttons --- */
.button-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem; /* 44px */
  padding: 0;
  box-sizing: border-box;
  border: 1px solid;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 1rem; /* Unified from 16px and 16pt */
  font-weight: 400;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}
.btn.btn-solid-gold {
  width: 8.4375rem; /* 135px */
  background-color: var(--color-primary-gold);
  border-color: var(--color-primary-gold);
  color: var(--color-bg-white);
}
.btn.btn-solid-gold:hover {
  background-color: var(--color-primary-gold-hover);
  border-color: var(--color-primary-gold-hover);
}
.btn.btn-outline-gold {
  width: 8.4375rem; /* 135px */
  border-color: var(--color-primary-gold);
  color: var(--color-primary-gold);
}
.btn.btn-outline-gold:hover {
  background-color: var(--color-primary-gold);
  color: var(--color-bg-white);
}
.btn.btn-outline-white {
  width: 11.0625rem; /* 177px */
  border-color: var(--color-secondary-gold);
  color: var(--color-secondary-gold);
}
.btn.btn-outline-white:hover {
  background-color: var(--color-secondary-gold);
  color: var(--color-bg-dark);
}
/* Specific button style for navbar contact */
.nav-contact .btn {
  width: auto;
  height: 32px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 400;
}
.realistic-glass-button {
  display: inline-block;
  padding: 0.75rem 1.875rem;
  text-decoration: none;
  border-radius: var(--radius-pill);
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.2), inset 0 -2px 4px rgba(0, 0, 0, 0.15);
  color: var(--color-bg-white);
  font-size: 1.25rem;
  font-weight: 300;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.realistic-glass-button:hover {
  transform: translateY(0px) scale(1.05);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.3), inset 0 -2px 4px rgba(0, 0, 0, 0.1), 0 0.625rem 1.25rem rgba(0, 0, 0, 0.1);
}
.realistic-glass-button:active {
  transform: translateY(0px) scale(1.02);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.3), inset 0 -1px 2px rgba(0, 0, 0, 0.2);
}
.realistic-glass-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.3;
}

/* --- Arrow Navigation --- */
.carousel-arrow-nav {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-xs);
  margin-top: 1.5rem;
}
.arrow-button {
  width: 2.375rem; /* 38px */
  height: 2.375rem;
  border-radius: 50%;
  background-color: var(--color-bg-arrow-nav);
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, opacity 0.3s ease;
}
.arrow-button:hover {
  background-color: #f0f0f4;
}
.arrow-button svg {
  width: 1.875rem; /* 30px */
  height: 1.875rem;
  stroke: #6e6e6e;
}
.arrow-button.disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

/* =================================================================== */
/* ==                     4. LIGHTBOX & MODALS                      == */
/* =================================================================== */
.linkedin-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s 0.3s;
}
.linkedin-lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, visibility 0s;
}
.lightbox-content-wrapper {
  display: flex;
  width: 95%;
  height: 90%;
  max-width: 1600px;
  position: relative;
  background-color: #000;
}
.lightbox-viewer-wrapper {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-image-viewer {
  width: 100%;
  height: 100%;
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.lightbox-image-viewer::-webkit-scrollbar {
  display: none;
}
.lightbox-video-container {
  width: 100%;
  height: 100%;
  display: none;
}
.lightbox-video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.lightbox-image-track {
  display: flex;
  height: 100%;
  position: relative;
}
.lightbox-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  scroll-snap-align: center;
}
.lightbox-slide .lightbox-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}
.lightbox-sidebar {
  flex: 0 0 360px;
  background-color: #fff;
  overflow-y: auto;
  display: none;
}
.lightbox-sidebar:not(:empty) {
  display: flex;
  flex-direction: column;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  width: 44px;
  height: 44px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background-color 0.2s, opacity 0.2s;
}
.lightbox-nav:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
.lightbox-nav.prev { left: 15px; }
.lightbox-nav.next { right: 15px; }
.lightbox-nav.disabled {
  opacity: 0.2;
  cursor: not-allowed;
  pointer-events: none;
}
.lightbox-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 2.5em;
  font-weight: bold;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1010;
  line-height: 1;
  padding: 0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* =================================================================== */
/* ==                   5. FOOTER & FINAL NAV                       == */
/* =================================================================== */
.final-nav-section {
  background-color: #ffff;
  padding: var(--space-xl) var(--space-lg);
  margin-bottom: var(--space-sm);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.final-nav-container {
  max-width: 1560px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  gap: var(--space-xxl);
}
.final-nav-column h3 {
  font-size: var(--font-size-small);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-text-dark);
  margin: 0 0 var(--space-md) 0;
}
.final-nav-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}
.final-nav-column a {
  font-size: var(--font-size-mid);
  font-weight: 600;
  color: var(--color-text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer {
  background-color: rgb(245, 245, 247);
  color: #1d1d1f;
  padding: 30px 0 30px 0;
  box-sizing: border-box;
  margin-top: 3rem;
}
.footer-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.footer-legal-notice {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.footer-legal-notice p {
  max-width: 100%;
  margin: 0 0 1em 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
  color: #555555;
  text-align: left;
}
.footer-legal-notice p:last-child {
  margin-bottom: 0;
}
.footer-columns {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 60px;
  padding-bottom: 10px;
}
.footer-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000000;
  margin: 0 0 16px 0;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 13px;
}
.footer-links a {
  font-size: 13px;
  font-weight: 400;
  color: #555555;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #000000;
}
.footer-bottom-bar {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 30px;
  margin-top: 30px;
}
.footer-bottom-bar p {
  margin: 0;
  font-size: 13px;
  color: #555555;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* =================================================================== */
/* ==               6. SKELETON / LOADING STYLES                    == */
/* =================================================================== */
@keyframes placeholder-shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
body.is-loading .page-content {
  opacity: 1;
  transition: none;
}
body.is-loading .hero-image {
  visibility: hidden;
}
body.is-loading .page-title,
body.is-loading .page-slogan {
  animation: placeholder-shimmer 2s linear infinite;
  background-color: #e0e0e0;
  background-image: linear-gradient(to right, #e0e0e0 0%, #f0f0f0 40%, #e0e0e0 80%, #e0e0e0 100%);
  background-repeat: no-repeat;
  background-size: 2000px 100%;
  color: transparent !important;
  border-radius: var(--radius-xs);
}
body.is-loading .page-title {
  height: 65px;
  width: 270px;
}
body.is-loading .page-slogan {
  height: 36px;
  width: 325px;
}
body.is-loading .hero-image-wrapper {
  animation: placeholder-shimmer 2s linear infinite;
  background-color: #e0e0e0;
  background-image: linear-gradient(to right, #e0e0e0 0%, #f0f0f0 40%, #e0e0e0 80%, #e0e0e0 100%);
  background-repeat: no-repeat;
  background-size: 2000px 100%;
  border-radius: var(--radius-lg);
  width: 1920px;
  height: 1260px;
}

/* =================================================================== */
/* ==                 7. MOBILE & RESPONSIVE STYLES                 == */
/* =================================================================== */

/* --- Mobile Menu Panel (Hidden on Desktop) --- */
.mobile-menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
}
.mobile-menu-panel.is-open {
  transform: translateY(0);
}
.mobile-menu-header {
  height: 44px;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  z-index: 10;
}
.mobile-menu-back-btn {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu-back-btn .chevron {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-left: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
}
.mobile-menu-content-wrapper {
  position: relative;
  flex-grow: 1;
  overflow-y: auto;
  padding-top: 44px;
  overflow-x: hidden;
}
.mobile-menu-list {
  padding: 1rem 2rem;
  box-sizing: border-box;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}
#mobile-menu-main {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-list.submenu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
  visibility: hidden;
  padding-top: 60px;
}
.mobile-menu-list.submenu.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
}
.mobile-menu-panel.submenu-is-active #mobile-menu-main {
  opacity: 0;
  transform: translateX(-30px);
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu-panel.submenu-is-active .mobile-menu-back-btn {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu-list > ul > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  font-size: 20pt;
  font-weight: 600;
  color: #1d1d1f;
  text-decoration: none;
}
.mobile-menu-list a[data-submenu-target] .chevron {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #888;
  border-bottom: 2px solid #888;
  transform: rotate(-45deg);
}
.submenu h4 {
  font-size: 13px;
  font-weight: 600;
  color: #86868b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 20px 0 16px 0;
}
.submenu ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 20px;
}
.submenu a {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-dark);
  padding: 8px 0;
  text-decoration: none;
  display: block;
}
.submenu ul ~ ul a,
.submenu ul ~ h4 + ul a {
  font-size: 1.3rem;
  font-weight: 400;
}
.submenu a strong {
  font-weight: 600;
}

/* --- Breakpoint: 1440px --- */
@media (max-width: 1440px) {
  .hero-image {
    width: 965px;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
  }
  .page-header {
    max-width: 965px;
  }
  .page-title, .page-slogan {
    margin: 0;
  }
  .final-nav-container {
    max-width: 935px;
  }
  .final-nav-column h3 {
    font-size: 0.75rem;
  }
  .final-nav-column a {
    font-size: var(--font-size-small);
  }
  .footer-container {
    max-width: 935px;
    padding: 0;
  }
  .footer-legal-notice p {
    font-size: 0.75rem;
  }
  .footer-columns {
    display: grid;
    padding: 0;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
  }

  /* Skeleton Styles */
  body.is-loading .hero-image-wrapper {
    width: 100%;
    max-width: 935px;
    height: auto;
    aspect-ratio: 1680 / 850;
  }
  body.is-loading .page-title {
    height: 52px;
    width: 220px;
  }
  body.is-loading .page-slogan {
    height: 29px;
    width: 260px;
  }
}

/* --- Breakpoint: 1069px --- */
@media (max-width: 1069px) {
  .hero-image {
    width: 775px;
  }
  .page-header {
    max-width: 775px;
  }
  /* Footer styles are the same as 1440px, already defined */
}

/* --- Breakpoint: 892px --- */
@media (max-width: 892px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: flex;
  }
  .nav-links {
    display: none;
  }
  .navbar-container {
    justify-content: space-between;
    max-width: none;
    width: 100%;
    padding: 0;
  }
  .site-header.mobile-menu-open .logo-icon,
  .site-header.mobile-menu-open #mobile-contact-icon {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .nav-contact {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1002;
  }
  .nav-icon-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s ease;
  }
  .nav-icon-btn:hover {
    opacity: 1;
  }
  #mobile-contact-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"></path><circle cx="12" cy="7" r="4"></circle></svg>');
    background-size: 20px;
    background-position: center;
    background-repeat: no-repeat;
  }
  #mobile-menu-trigger {
    position: relative;
    background-color: transparent;
  }
  #mobile-menu-trigger span {
    display: block;
    width: 18px;
    height: 2px;
    background-color: #333;
    position: absolute;
    left: 50%;
    transform-origin: center;
    transition: transform 0.3s ease, top 0.3s ease;
  }
  #mobile-menu-trigger span:first-child {
    top: 15px;
    transform: translateX(-50%) rotate(0deg);
  }
  #mobile-menu-trigger span:last-child {
    top: 21px;
    transform: translateX(-50%) rotate(0deg);
  }
  .site-header.mobile-menu-open #mobile-menu-trigger span:first-child {
    top: 18px;
    transform: translateX(-50%) rotate(45deg);
  }
  .site-header.mobile-menu-open #mobile-menu-trigger span:last-child {
    top: 18px;
    transform: translateX(-50%) rotate(-45deg);
  }

  /* Footer */
  .site-footer {
    margin-top: 1rem;
  }
  .footer-container {
    max-width: 700px;
    padding: 0 20px;
  }
  .footer-legal-notice {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  .footer-columns {
    padding: 0;
  }
  .footer-bottom-bar {
    padding-top: 2rem;
    margin-top: 2rem;
  }
  .footer-bottom-bar p {
    gap: 0.5rem;
  }
}

/* --- Breakpoint: 832px --- */
@media (max-width: 832px) {
  .page-header {
    max-width: 700px;
    margin: 0 auto;
    padding: 1rem 0 1rem 0;
  }
  .hero-image {
    width: 620px;
  }
  .hero-section {
    padding: 0 0 2rem 0;
  }
  .page-title {
    font-size: 2rem;
  }
  .page-slogan {
    font-size: 1.4rem;
  }
  body.is-loading .hero-image-wrapper {
    display: none;
  }
}

/* --- Breakpoint: 734px --- */
@media (max-width: 734px) {
  .page-header {
    max-width: 360px;
  }
  .page-header-container {
    flex-direction: column;
    text-align: center;
  }
  .page-title, .page-slogan {
    margin: 0 auto;
  }
  .hero-image {
    display: none;
  }
  .final-nav-container {
    flex-direction: column;
    gap: var(--space-xl);
    padding: 0;
  }
  .final-nav-column a {
    font-size: 1.4rem;
    font-weight: 400;
  }
  .lightbox-sidebar:not(:empty) {
    display: none;
  }
  
  /* Skeleton */
  body.is-loading .page-title {
    height: 40px;
    width: 180px;
  }
  body.is-loading .page-slogan {
    height: 24px;
    width: 210px;
  }
}
