:root {
  --color-navy-950: #020c16;
  --color-navy-900: #031427;
  --color-ivory: #f7f4ee;
  --color-gold: #c9974d;
  --color-gold-light: #e3bb72;

  --header-height: 108px;

  --transition-fast: 180ms ease;
  --transition-normal: 280ms ease;
}

/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 320px;

  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;

  background: var(--color-ivory);

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;

  padding: 10px 16px;

  color: #000;
  background: #fff;

  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: 3px;
}

/* =========================================================
   NORMAL PAGE CONTAINER
========================================================= */

.container {
  width: min(calc(100% - 48px), 1480px);
  margin-inline: auto;
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: relative;
  z-index: 1000;

  width: 100%;
  height: var(--header-height);

  background: var(--color-navy-900);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  overflow: hidden;
}

.site-header .container {
  width: 100%;
  max-width: none;
  height: 100%;

  margin: 0;
  padding: 0 22px;
}

.header-inner {
  position: relative;

  width: 100%;
  height: 100%;
}

/* =========================================================
   LOGO
========================================================= */

.site-brand {
  position: absolute;

  left: 34px;
  top: 50%;

  transform: translateY(-50%);

  width: 330px;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  overflow: hidden;
}

.site-logo {
  width: 305px;
  height: auto;

  max-width: 305px;
  max-height: 88px;

  object-fit: contain;
  object-position: left center;

  margin: 0;

  transform: none;
}

.site-brand:hover .site-logo {
  opacity: 0.97;
}

/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.desktop-nav {
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  display: flex;
  align-items: center;
  justify-content: center;

  gap: clamp(28px, 2.4vw, 46px);

  white-space: nowrap;
}

.desktop-nav a {
  position: relative;

  padding: 14px 0;

  color: rgba(255, 255, 255, 0.94);

  font-size: 15px;
  font-weight: 400;

  transition: color var(--transition-fast);
}

.desktop-nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 6px;

  width: 0;
  height: 1px;

  background: var(--color-gold-light);

  transition: width var(--transition-normal);
}

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

.desktop-nav a:hover::after {
  width: 100%;
}

/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
  position: absolute;

  right: 0;
  top: 50%;

  transform: translateY(-50%);

  display: flex;
  align-items: center;

  gap: 14px;
}

/* =========================================================
   CONTACT BUTTON
========================================================= */

.contact-button {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 27px;

  color: #111;

  background:
    linear-gradient(
      135deg,
      #e5bd75 0%,
      #ca974a 100%
    );

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 5px;

  font-size: 15px;
  font-weight: 550;

  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);

  transition:
    transform var(--transition-fast),
    filter var(--transition-fast);
}

.contact-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

/* =========================================================
   LANGUAGE
========================================================= */

.language-dropdown {
  position: relative;
}

.language-button {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 0 15px;

  color: rgba(255, 255, 255, 0.95);

  background: rgba(255, 255, 255, 0.025);

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
}

.language-button:hover {
  background: rgba(255, 255, 255, 0.055);
}

.language-icon {
  font-size: 16px;
}

.language-arrow {
  color: var(--color-gold-light);
  font-size: 11px;
}

.language-menu {
  position: absolute;

  top: calc(100% + 9px);
  right: 0;

  width: 165px;

  padding: 7px;

  background: rgba(3, 20, 39, 0.985);

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.language-menu button {
  width: 100%;

  display: block;

  padding: 11px 12px;

  color: rgba(255, 255, 255, 0.93);
  background: transparent;

  border: 0;
  border-radius: 4px;

  text-align: left;
}

.language-menu button:hover {
  color: var(--color-gold-light);
  background: rgba(255, 255, 255, 0.06);
}

/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu-button {
  display: none;

  width: 46px;
  height: 46px;

  align-items: center;
  justify-content: center;
  flex-direction: column;

  gap: 5px;

  padding: 0;

  background: transparent;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
}

.mobile-menu-button span {
  width: 20px;
  height: 1px;

  background: #fff;
}

.mobile-nav {
  position: absolute;

  top: 100%;
  left: 0;

  width: 100%;

  padding: 16px 20px 24px;

  background: rgba(3, 20, 39, 0.99);

  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.27);
}

.mobile-nav a {
  display: block;

  padding: 14px 0;

  color: rgba(255, 255, 255, 0.95);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  font-size: 16px;
}

.mobile-nav a:last-child {
  color: var(--color-gold-light);
  border-bottom: 0;
}

/* =========================================================
   GLOBAL BUTTONS
========================================================= */

.primary-button,
.secondary-button {
  min-height: 58px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 15px;

  padding: 0 27px;

  border-radius: 5px;

  font-size: 16px;
  font-weight: 500;

  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast);
}

.primary-button {
  color: #141414;

  background:
    linear-gradient(
      135deg,
      #e3bb73,
      #c89245
    );

  border: 1px solid rgba(255, 255, 255, 0.18);

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.primary-button:hover {
  transform: translateY(-2px);
}

.secondary-button {
  color: var(--color-gold-light);

  background: rgba(3, 15, 27, 0.32);

  border: 1px solid rgba(204, 151, 73, 0.82);
}

.secondary-button:hover {
  transform: translateY(-2px);
}

.button-arrow {
  font-size: 20px;
}

.play-circle {
  width: 27px;
  height: 27px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: white;

  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;

  font-size: 10px;
}

/* =========================================================
   MID DESKTOP
========================================================= */

@media (max-width: 1450px) {
  .site-brand {
    left: 28px;
    width: 290px;
  }

  .site-logo {
    width: 270px;
    max-width: 270px;
    max-height: 82px;
  }

  .desktop-nav {
    gap: 26px;
  }

  .desktop-nav a {
    font-size: 14px;
  }
}

/* =========================================================
   SMALL DESKTOP
========================================================= */

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .contact-button {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {
  :root {
    --header-height: 92px;
  }

  .site-brand {
    left: 18px;
    width: 255px;
  }

  .site-logo {
    width: 235px;
    max-width: 235px;
    max-height: 72px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
  :root {
    --header-height: 82px;
  }

  .site-brand {
    left: 10px;
    width: 205px;
  }

  .site-logo {
    width: 190px;
    max-width: 190px;
    max-height: 62px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-button {
    min-height: 43px;
    padding-inline: 10px;
  }

  .language-icon {
    display: none;
  }

  .mobile-menu-button {
    width: 43px;
    height: 43px;
  }

  .primary-button,
  .secondary-button {
    min-height: 55px;
    padding-inline: 21px;
    font-size: 15px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {
  .site-brand {
    left: 8px;
    width: 175px;
  }

  .site-logo {
    width: 162px;
    max-width: 162px;
    max-height: 54px;
  }

  .language-arrow {
    display: none;
  }
}
/* =========================================================
   AURENGIS — LANGUAGE DROPDOWN FIX
   Allows language and mobile menus to extend outside header
   while keeping the logo contained.
========================================================= */

.site-header {
  overflow: visible !important;
}

.site-brand {
  overflow: hidden !important;
}

.header-actions {
  z-index: 5000 !important;
}

.language-dropdown {
  position: relative !important;
  z-index: 6000 !important;
}

.language-menu {
  position: absolute !important;
  z-index: 9999 !important;

  top: calc(100% + 10px) !important;
  right: 0 !important;

  visibility: visible;
}

.mobile-nav {
  z-index: 9000 !important;
}
