/* ============================================================
   ELARIS – Main Stylesheet
   Fonts: Cormorant Garamond (serif headings) + Montserrat (sans body)
   Colors: #C59B27 gold | #1A1A1A dark | #F8F6F1 off-white | #2C2C2C charcoal
   ============================================================ */

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

:root {
  --gold: #C59B27;
  --gold-light: #D4AF50;
  --dark: #1A1A1A;
  --charcoal: #2C2C2C;
  --mid: #4A4A4A;
  --light: #F8F6F1;
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--dark); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(26,26,26,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 80px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
}
.nav-links {
  display: flex;
  gap: 40px;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}
.nav-links a.active::after, .nav-links a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: rgba(26,26,26,0.98);
  padding: 20px 24px 28px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0; }
.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.3s;
}
.mobile-menu ul li:last-child a { border-bottom: none; }
.mobile-menu ul li a:hover, .mobile-menu ul li a.active { color: var(--gold); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.btn-arrow { font-size: 14px; transition: transform 0.3s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }

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

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline-gold {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 12px 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); }
.btn.full-width { width: 100%; justify-content: center; }

/* ============================================================
   HERO – HOMEPAGE
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15,12,8,0.78) 0%,
    rgba(15,12,8,0.55) 50%,
    rgba(15,12,8,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  padding-top: 80px;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  letter-spacing: 1px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 3px;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollAnim 2s infinite;
}
@keyframes scrollAnim {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}
.scroll-indicator span {
  font-size: 9px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,0.6) 0%, rgba(10,10,10,0.5) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  width: 100%;
  padding-top: 80px;
  text-align: center;
}
.page-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.page-hero-content h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.page-hero-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 300;
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 48px;
}
.center-content { text-align: center; }
.section-label {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-label.gold { color: var(--gold); }
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 60px;
  color: var(--dark);
}

/* ============================================================
   STORY SECTION
   ============================================================ */
.story-section { background: var(--white); padding: 0; }
.story-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
}
.story-text h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--dark);
}
.story-text p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 16px;
  font-weight: 300;
}
.story-text .btn { margin-top: 16px; }

/* ============================================================
   PILLARS SECTION
   ============================================================ */
.pillars-section { background: var(--light); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 0;
}
.pillar-card {
  text-align: center;
  padding: 40px 32px;
  background: var(--white);
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pillar-card:hover {
  border-bottom-color: var(--gold);
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.pillar-number {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 8px;
}
.pillar-icon { margin-bottom: 16px; display: flex; justify-content: center; }
.pillar-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  color: var(--dark);
}
.pillar-card p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--mid);
  font-weight: 300;
}

/* ============================================================
   BANNER DIVIDER
   ============================================================ */
.banner-divider {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.banner-divider picture, .banner-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,12,8,0.35);
}

/* ============================================================
   SHAPING THE FUTURE
   ============================================================ */
.future-section {
  background: var(--dark);
  padding: 0;
}
.future-section .section-inner {
  padding: 100px 48px;
}
.future-icon { display: flex; justify-content: center; margin-bottom: 28px; }
.future-section h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 32px;
}
.future-text {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  max-width: 680px;
  margin: 0 auto 20px;
  line-height: 1.85;
  font-weight: 300;
}
.future-section .btn { margin-top: 40px; }

/* ============================================================
   ABOUT – FOUNDATION SPLIT
   ============================================================ */
.foundation-section { background: var(--white); padding: 0; }
.split-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 2px;
}
.split-text h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  color: var(--dark);
}
.split-text p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--mid);
  margin-bottom: 18px;
  font-weight: 300;
}

/* ============================================================
   ABOUT – LEADERSHIP
   ============================================================ */
.leadership-section { background: var(--light); }
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.leadership-left h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  color: var(--dark);
}
.leadership-left p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--mid);
  font-weight: 300;
}
.leadership-card {
  background: var(--white);
  padding: 32px;
  margin-bottom: 24px;
  border-left: 3px solid var(--gold);
  transition: box-shadow 0.3s;
}
.leadership-card:last-child { margin-bottom: 0; }
.leadership-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.leadership-card-icon { margin-bottom: 16px; }
.leadership-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: 0.3px;
}
.leadership-card p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--mid);
  font-weight: 300;
}

/* ============================================================
   ABOUT – WHERE WE EMERGE
   ============================================================ */
.emerge-section { background: var(--dark); }
.emerge-section .section-inner { padding: 100px 48px; }
.emerge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.emerge-text h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.emerge-text p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.68);
  margin-bottom: 18px;
  font-weight: 300;
}
.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.location-tag {
  padding: 8px 16px;
  border: 1px solid rgba(197,155,39,0.4);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  transition: all 0.3s;
}
.location-tag:hover { border-color: var(--gold); color: var(--gold); }
.location-tag.active { border-color: var(--gold); color: var(--gold); background: rgba(197,155,39,0.08); }
.location-tag small { font-size: 9px; letter-spacing: 1px; color: var(--gold); opacity: 0.8; }
.emerge-map img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 2px;
}

/* ============================================================
   CAREER – CULTURE
   ============================================================ */
.culture-section { background: var(--white); }
.culture-inner { padding: 100px 48px; }
.culture-icon { display: flex; justify-content: center; margin-bottom: 20px; }
.culture-section h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 32px;
  letter-spacing: 1px;
}
.culture-text {
  font-size: 15px;
  line-height: 1.85;
  color: var(--mid);
  max-width: 720px;
  margin: 0 auto 18px;
  font-weight: 300;
}

/* ============================================================
   CAREER – APPLICATION FORM
   ============================================================ */
.apply-section { background: var(--charcoal); }
.apply-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.apply-left h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.apply-left p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
  font-weight: 300;
}

/* Forms */
.form-group { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 10px 0;
  font-size: 14px;
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group textarea:focus { border-bottom-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* Contact form (white bg) */
.contact-form-wrap .form-group input,
.contact-form-wrap .form-group textarea {
  color: var(--dark);
  border-bottom-color: rgba(0,0,0,0.2);
}
.contact-form-wrap .form-group input::placeholder,
.contact-form-wrap .form-group textarea::placeholder { color: rgba(0,0,0,0.3); }
.contact-form-wrap .form-group input:focus,
.contact-form-wrap .form-group textarea:focus { border-bottom-color: var(--gold); }

/* File Upload */
.file-upload {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 10px 0;
}
.file-upload span {
  flex: 1;
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}
.browse-btn {
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 6px 14px;
  cursor: pointer;
  transition: all 0.3s;
}
.browse-btn:hover { background: var(--gold); color: var(--dark); }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(197,155,39,0.1);
  border: 1px solid rgba(197,155,39,0.3);
  color: var(--gold);
  font-size: 13px;
  font-weight: 400;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hub { background: var(--white); }
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-channels .section-label { margin-bottom: 36px; display: block; }
.channel-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  align-items: flex-start;
}
.channel-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.channel-text strong {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 6px;
}
.channel-text p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mid);
  font-weight: 300;
}
.channel-text a {
  color: var(--mid);
  transition: color 0.3s;
}
.channel-text a:hover { color: var(--gold); }

/* Map Section */
.map-section { background: var(--dark); }
.map-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
}
.map-pin-icon { margin-bottom: 16px; }
.map-info h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.map-info p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  font-weight: 300;
}
.map-image img {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  border-radius: 2px;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.06); }
.footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 48px 48px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.6fr;
  gap: 48px;
}
.footer-brand .footer-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.footer-logo-img {
  height: 90px;
  width: auto;
  display: block;
  flex-shrink: 0;
  mix-blend-mode: screen;
}
.footer-logo-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--white);
  line-height: 1;
}
.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
}
.footer-social {
  display: flex;
  gap: 14px;
}
.social-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s;
}
.social-icon:hover { border-color: var(--gold); color: var(--gold); }
.footer-links h4, .footer-contact h4 {
  font-size: 10px;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links ul li {
  margin-bottom: 12px;
}
.footer-links ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  transition: color 0.3s;
  letter-spacing: 0.3px;
}
.footer-links ul li a:hover { color: var(--gold); }
.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.6;
}
.footer-contact ul li a {
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-contact ul li a:hover { color: var(--gold); }
.footer-contact ul li svg { flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 48px 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   CHATBOT WIDGET
   ============================================================ */
.chatbot-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
}
.chatbot-toggle {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(197,155,39,0.4);
  transition: transform 0.3s, box-shadow 0.3s;
}
.chatbot-toggle:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(197,155,39,0.5); }
.chatbot-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  background: var(--white);
  box-shadow: 0 12px 48px rgba(0,0,0,0.2);
  border-radius: 4px;
  overflow: hidden;
  display: none;
  flex-direction: column;
}
.chatbot-panel.open { display: flex; }
.chatbot-header {
  background: var(--dark);
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.chatbot-avatar {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--dark);
}
.chatbot-header-info strong {
  display: block;
  font-size: 13px;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.chatbot-header-info span {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}
.chatbot-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.chatbot-close:hover { color: var(--white); }
.chatbot-quick-replies {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 16px;
  background: var(--light);
}
.quick-reply {
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.1);
  font-size: 12px;
  color: var(--dark);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
}
.quick-reply:hover { border-color: var(--gold); color: var(--gold); }
.chatbot-input-row {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 0 16px;
}
.chatbot-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 14px 0;
  font-size: 13px;
  font-family: var(--sans);
  color: var(--dark);
  background: transparent;
}
.chatbot-input::placeholder { color: rgba(0,0,0,0.3); }
.chatbot-send {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.chatbot-send:hover { background: var(--gold-light); }

/* ============================================================
   MOBILE VIDEO (homepage)
   ============================================================ */
.mobile-video-teaser {
  display: none;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.mobile-video-teaser video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE – TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .nav-inner { padding: 16px 32px; }
  .hero-content { padding: 0 32px; padding-top: 80px; }
  .section-inner { padding: 80px 32px; }
  .story-inner, .split-inner, .apply-inner, .contact-inner, .map-inner { padding: 80px 32px; gap: 48px; }
  .emerge-section .section-inner { padding: 80px 32px; }
  .footer-main { padding: 60px 32px 40px; grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { padding: 16px 32px 24px; }
  .pillars-grid { gap: 24px; }
  .leadership-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   RESPONSIVE – MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav-inner { padding: 14px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-logo-img { height: 56px; }
  .footer-logo-img { height: 60px; }
  .footer-logo-name { font-size: 20px; letter-spacing: 4px; }

  /* Hero */
  .hero-content { padding: 0 20px; padding-top: 80px; }
  .hero-title { font-size: clamp(36px, 10vw, 56px); }
  .hero-sub { font-size: 13px; }

  /* Page Hero */
  .page-hero { height: 56vh; min-height: 360px; }
  .page-hero-content { padding: 0 20px; padding-top: 70px; }
  .page-hero-content h1 { font-size: clamp(32px, 9vw, 52px); }

  /* Mobile video teaser – show on mobile */
  .mobile-video-teaser { display: block; }

  /* Sections */
  .section-inner { padding: 60px 20px; }
  .story-inner, .split-inner { grid-template-columns: 1fr; gap: 36px; padding: 60px 20px; }
  .story-image img, .split-image img { height: 260px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 20px; }
  .pillar-card { padding: 28px 20px; }
  .banner-divider { height: 220px; }
  .future-section .section-inner { padding: 60px 20px; }
  .emerge-section .section-inner { padding: 60px 20px; }
  .emerge-grid { grid-template-columns: 1fr; gap: 36px; }
  .leadership-grid { grid-template-columns: 1fr; gap: 36px; }
  .apply-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  .map-inner { grid-template-columns: 1fr; gap: 32px; padding: 60px 20px; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 36px; padding: 48px 20px 32px; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; padding: 16px 20px 24px; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 16px; }

  /* Chatbot */
  .chatbot-widget { bottom: 20px; right: 16px; }
  .chatbot-panel { width: 290px; right: -8px; }

  /* Location tags */
  .location-tags { justify-content: center; }
}
