/* ========================================
   ARCHE @ KCPCH — Global Styles
   ======================================== */

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

:root {
  --black: #0A0A0A;
  --charcoal: #1A1A2E;
  --navy: #16213E;
  --ink: #2D2D3A;
  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --sage: #7A9E7E;
  --cream: #F9F7F4;
  --white: #FFFFFF;
  --muted: #8A8A9A;
  --border: rgba(255,255,255,0.1);
  --border-dark: rgba(0,0,0,0.08);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --nav-h: 72px;
  --section-pad: 120px;
  --section-pad-sm: 72px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ----------------------------------------
   NAVIGATION
   ---------------------------------------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: rgba(22, 33, 62, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav.scrolled {
  background: rgba(22, 33, 62, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-img-wrap {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.nav-logo-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.35s ease;
}

.nav-logo-img-light { opacity: 1; }
.nav-logo-img-dark  { opacity: 0; }

.nav.nav-on-light .nav-logo-img-light { opacity: 0; }
.nav.nav-on-light .nav-logo-img-dark  { opacity: 1; }

.nav-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-logo-sub {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--black) !important;
  background: var(--gold) !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  transition: opacity 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.9 !important;
  transform: translateY(-1px);
  background: var(--gold) !important;
}

.nav-login-btn {
  margin-right: 12px;
  white-space: nowrap;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(22, 33, 62, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1001;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  padding: 12px 40px;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--gold); }

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: rgba(255,255,255,0.5);
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  line-height: 1;
}

/* ----------------------------------------
   BUTTONS
   ---------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all 0.25s var(--ease-out);
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease-out);
}

.btn:hover svg { transform: translateX(3px); }

/* ----------------------------------------
   TYPOGRAPHY
   ---------------------------------------- */

.display-xl {
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
}

.display-lg {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.display-md {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.display-sm {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-lg {
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 400;
  line-height: 1.75;
  color: var(--muted);
}

.body-md {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--muted);
}

/* ----------------------------------------
   LAYOUT
   ---------------------------------------- */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-sm {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: var(--section-pad) 0;
}

.section-sm {
  padding: var(--section-pad-sm) 0;
}

/* ----------------------------------------
   SECTION: DARK BG
   ---------------------------------------- */

.bg-dark {
  background: var(--charcoal);
  color: var(--white);
}

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

.bg-cream {
  background: var(--cream);
}

/* ----------------------------------------
   TAG/PILL
   ---------------------------------------- */

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(201, 169, 110, 0.12);
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.25);
}

/* ----------------------------------------
   CARDS
   ---------------------------------------- */

.card {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* ----------------------------------------
   DIVIDERS
   ---------------------------------------- */

.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 24px 0;
}

.divider-center {
  margin: 24px auto;
}

/* ----------------------------------------
   FORM ELEMENTS
   ---------------------------------------- */

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-sans);
  font-size: 15px;
  padding: 14px 18px;
  border: 1.5px solid var(--border-dark);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

/* ----------------------------------------
   FOOTER
   ---------------------------------------- */

.footer {
  background: var(--charcoal);
  color: var(--white);
  padding: 72px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold), var(--gold-light), transparent);
  z-index: 2;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  will-change: transform;
  animation: footer-orb-float 16s ease-in-out infinite;
}

.footer-orb-1 {
  width: 360px; height: 360px;
  top: -120px; left: -80px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0.35;
  animation-duration: 18s;
}

.footer-orb-2 {
  width: 300px; height: 300px;
  bottom: -100px; right: -60px;
  background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
  opacity: 0.28;
  animation-duration: 20s;
  animation-delay: -6s;
}

.footer-orb-3 {
  width: 240px; height: 240px;
  top: 30%; right: 15%;
  background: radial-gradient(circle, var(--cream) 0%, transparent 70%);
  opacity: 0.12;
  animation-duration: 14s;
  animation-delay: -3s;
}

@keyframes footer-orb-float {
  0%   { transform: translate(0, 0) scale(1); }
  25%  { transform: translate(40px, -30px) scale(1.15); }
  50%  { transform: translate(-25px, -20px) scale(0.9); }
  75%  { transform: translate(-40px, 30px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .footer-orb { animation: none; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
  position: relative;
}

.footer-grid::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,0.1);
  transform: translateX(-50%);
}

.footer-brand .nav-logo {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand .nav-logo-img-wrap {
  width: 72px;
  height: 72px;
}

.footer-brand .nav-logo-text {
  line-height: 1.3;
}

.footer-brand .nav-logo-title {
  font-size: 18px;
}

.footer-brand .nav-logo-sub {
  font-size: 11px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--black);
}

.footer-newsletter h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}

.footer-newsletter p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 340px;
}

.footer-newsletter-form {
  display: flex;
  gap: 10px;
  margin: 16px 0 10px;
  max-width: 380px;
}

.footer-newsletter-form input {
  flex: 1;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 12px 16px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.footer-newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter-form input:focus { border-color: var(--gold); }

.footer-newsletter-form button {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 8px;
  border: none;
  background: var(--gold);
  color: var(--black);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, opacity 0.2s;
}

.footer-newsletter-form button:hover { transform: translateY(-1px); }
.footer-newsletter-form button:disabled { opacity: 0.7; cursor: default; transform: none; }

.footer-newsletter-note {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}

.footer-bottom .footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  transition: opacity 0.2s;
  opacity: 0.7;
}

.footer-bottom .footer-credit:hover {
  opacity: 1;
}

.footer-credit-logo {
  height: 24px;
  width: auto;
  display: block;
}

/* ----------------------------------------
   PAGE HERO (inner pages)
   ---------------------------------------- */

.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero .eyebrow { margin-bottom: 16px; display: block; }

.page-hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.page-hero p {
  color: rgba(255,255,255,0.6);
  max-width: 560px;
}

.page-hero.has-header-image {
  background-size: cover;
  background-position: center 0%;
  background-attachment: fixed;
}

@media (max-width: 768px) {
  .page-hero.has-header-image {
    background-attachment: scroll;
  }
}

.page-hero.has-header-image::before {
  background: linear-gradient(180deg, rgba(26,26,46,0.55) 0%, rgba(26,26,46,0.88) 100%);
}

.page-hero .hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 19px;
  max-width: 640px;
  position: relative;
}

/* ----------------------------------------
   NAV DROPDOWN
   ---------------------------------------- */

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: flex !important;
  align-items: center;
  gap: 5px;
}

.nav-dropdown-toggle::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  opacity: 0.55;
  transition: transform 0.2s, margin-top 0.2s;
  flex-shrink: 0;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 200px;
  padding-top: 10px; /* bridges gap so mouse movement doesn't break hover */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s 0.18s, transform 0.2s 0.18s var(--ease-out); /* delay before hiding */
  z-index: 100;
}

.nav-dropdown-menu-inner {
  background: rgba(16, 24, 50, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 6px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.15s 0s, transform 0.15s 0s var(--ease-out); /* show immediately */
}

.nav-links .nav-dropdown-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  white-space: nowrap;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  font-weight: 500;
}

.nav-links .nav-dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

.nav-links .nav-dropdown-menu a.active {
  color: var(--gold);
  background: transparent;
}

/* Mobile sub-links */
.mobile-menu-sub {
  font-size: 18px !important;
  color: rgba(255,255,255,0.45) !important;
  padding: 5px 40px !important;
  font-weight: 500 !important;
}

.mobile-menu-sub:hover {
  color: var(--gold) !important;
}

/* Mobile "About" row + collapsible submenu */
.mobile-menu-about {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.mobile-menu-about a { padding-right: 8px; }

.mobile-submenu-toggle {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.mobile-submenu-toggle:hover { color: var(--gold); }

.mobile-submenu-toggle svg { transition: transform 0.25s ease; }

.mobile-submenu-toggle.open { color: var(--gold); }

.mobile-submenu-toggle.open svg { transform: rotate(180deg); }

.mobile-submenu {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  width: 100%;
}

.mobile-submenu.open { grid-template-rows: 1fr; }

.mobile-submenu-inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ----------------------------------------
   LANGUAGE SWITCHER
   ---------------------------------------- */

/* Desktop nav language toggle */
.nav-lang-group {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.12);
  flex-shrink: 0;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  padding: 7px 13px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  font-family: var(--font-sans);
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.lang-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.25);
}

.lang-btn.active {
  color: var(--gold);
  border-color: rgba(201,169,110,0.45);
  background: rgba(201,169,110,0.1);
}

.lang-flag {
  width: 17px;
  height: 12px;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2);
  filter: grayscale(65%) opacity(0.65);
  transition: filter 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.lang-btn:hover .lang-flag {
  filter: grayscale(0%) opacity(0.9);
}

.lang-btn.active .lang-flag {
  filter: grayscale(0%) opacity(1);
  box-shadow: 0 0 0 1px rgba(201,169,110,0.6);
}

/* Mobile overlay — matches mobile-menu a exactly */
.mobile-menu .lang-btn {
  font-size: 28px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  padding: 12px 40px;
  letter-spacing: -0.02em;
  border-radius: 0;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  text-align: center;
}

.mobile-menu .lang-flag {
  width: 26px;
  height: 19px;
}

.mobile-menu .lang-btn:hover {
  color: var(--gold);
  background: transparent;
  border-color: transparent;
}

.mobile-menu .lang-btn.active {
  color: var(--gold);
  background: transparent;
  border-color: transparent;
}

/* Thin rule above language buttons in mobile menu */
.mobile-menu-lang-sep {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 8px auto 4px;
}

.mobile-menu-login {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--black) !important;
  background: var(--gold);
  padding: 10px 28px !important;
  border-radius: 100px;
  margin-top: 4px;
}

.mobile-menu-login:hover { color: var(--black) !important; opacity: 0.9; }

/* Hidden on mobile — hamburger menu handles it */
@media (max-width: 768px) {
  .nav-lang-group { display: none; }
}

/* ----------------------------------------
   ANIMATIONS
   ---------------------------------------- */

.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ----------------------------------------
   UTILITIES
   ---------------------------------------- */

.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }

.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }
.mt-16 { margin-top: 64px; }

.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-12 { margin-bottom: 48px; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ----------------------------------------
   RESPONSIVE
   ---------------------------------------- */

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

  .page-hero {
    min-height: 480px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 72px;
    --section-pad-sm: 48px;
  }

  .page-hero {
    min-height: 420px;
    padding: calc(var(--nav-h) + 56px) 0 56px;
  }

  .nav { padding: 0 20px; }

  .container, .container-sm {
    padding: 0 20px;
  }

  .nav-links { display: none; }

  .nav-hamburger { display: flex; }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .footer-grid::before {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 22px;
    font-size: 13px;
  }

  .footer-newsletter-form {
    flex-direction: column;
  }
}
